Created
May 30, 2017 17:35
-
-
Save delirious-lettuce/647e55ffa5f418cb1a69906630ca0cf6 to your computer and use it in GitHub Desktop.
Response to `https://stackoverflow.com/questions/44266178`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from time import sleep | |
from bs4 import BeautifulSoup | |
from selenium import webdriver | |
from selenium.common.exceptions import ElementNotVisibleException | |
def click_button_until_all_displayed(browser, button_id): | |
button = browser.find_element_by_id(button_id) | |
while True: | |
try: | |
button.click() | |
except ElementNotVisibleException: | |
break | |
sleep(1.2) | |
BASE_URL = 'https://www.unpri.org' | |
driver = webdriver.Chrome() | |
driver.get('{}/directory'.format(BASE_URL)) | |
for button_name in ('asset', 'invest', 'services'): | |
click_button_until_all_displayed(driver, 'see_all_{}'.format(button_name)) | |
with open('page_source.html', 'w') as f: | |
f.write(driver.page_source) | |
driver.close() | |
# Parse HTML for links | |
with open('page_source.html', 'r') as f: | |
soup = BeautifulSoup(f, 'lxml') | |
orgs = {} | |
for div in soup.find_all('div', class_="col-xs-8 col-md-9"): | |
org_name = div.h5.a.text.strip() | |
orgs[org_name] = '{}{}'.format(BASE_URL, div.h5.a['href']) | |
with open('organisations.json', 'w') as f: | |
json.dump(orgs, f, indent=2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"The J.W. McConnell Family Foundation": "https://www.unpri.org/organisation/148253", | |
"Nippon Life Insurance Company": "https://www.unpri.org/organisation/148226", | |
"Rockefeller Brothers Fund": "https://www.unpri.org/organisation/148079", | |
"Pensioenfonds PGB": "https://www.unpri.org/organisation/148083", | |
"Khazanah Nasional Berhad": "https://www.unpri.org/organisation/148040", | |
"Unipol Gruppo Finanziario S.p.A - UnipolSai Assicurazioni": "https://www.unpri.org/organisation/147974", | |
"Transport for London Pension Fund": "https://www.unpri.org/organisation/147976", | |
"Nieder\u00f6sterreichische Vorsorgekasse AG": "https://www.unpri.org/organisation/147963", | |
"ATP": "https://www.unpri.org/organisation/147954", | |
"UNIVERSIT\u00c9 DE MONTR\u00c9AL (FONDS DE DOTATION)": "https://www.unpri.org/organisation/147970", | |
"Sampension Administration A/S": "https://www.unpri.org/organisation/147966", | |
"PFA Pension": "https://www.unpri.org/organisation/147946", | |
"PKA": "https://www.unpri.org/organisation/147925", | |
"Brasilprev Seguros e Previd\u00eancia": "https://www.unpri.org/organisation/147927", | |
"University of Toronto Asset Management Corporation (re University of Toronto Endowment)": "https://www.unpri.org/organisation/147901", | |
"University of Toronto Asset Management Corporation (re University of Toronto Pension Plan)": "https://www.unpri.org/organisation/147891", | |
"Development Bank of Japan": "https://www.unpri.org/organisation/147873", | |
"Daido Life Insurance Company": "https://www.unpri.org/organisation/147797", | |
"MACIF": "https://www.unpri.org/organisation/147802", | |
"The University of Maryland Foundation, Inc": "https://www.unpri.org/organisation/147773", | |
"Ithmar Capital": "https://www.unpri.org/organisation/147737", | |
"Ahold Pensioenfonds": "https://www.unpri.org/organisation/147741", | |
"SEB Life and Pension": "https://www.unpri.org/organisation/147743", | |
"The Nobel Foundation": "https://www.unpri.org/organisation/147725", | |
"Juniata College": "https://www.unpri.org/organisation/147717", | |
"Stichting Pensioenfonds Blue Sky Group": "https://www.unpri.org/organisation/147705", | |
"Jeremy Coller Foundation": "https://www.unpri.org/organisation/147635", | |
"Bpf Bouw Stichting Bedrijfstakpensioenfonds voor de Bouwnijverheid": "https://www.unpri.org/organisation/147448", | |
"BNP Paribas Cardif": "https://www.unpri.org/organisation/147432", | |
"The Consolidated Retirement Fund for Local Government": "https://www.unpri.org/organisation/147421", | |
"Thompson Rivers University": "https://www.unpri.org/organisation/147417", | |
"Stichting Pensioenfonds van de ABN AMRO Bank N.V.": "https://www.unpri.org/organisation/147387", | |
"Natixis Assurances": "https://www.unpri.org/organisation/147330", | |
"Peninsula Participa\u00e7\u00f5es": "https://www.unpri.org/organisation/147349", | |
"Movestic Livf\u00f6rs\u00e4kring AB": "https://www.unpri.org/organisation/147337", | |
"World Resources Institute": "https://www.unpri.org/organisation/147251", | |
"Pension Fund Association": "https://www.unpri.org/organisation/147112", | |
"University of the Arts London": "https://www.unpri.org/organisation/147078", | |
"Northwestern University": "https://www.unpri.org/organisation/147041", | |
"Kent County Council Superannuation Fund": "https://www.unpri.org/organisation/147007", | |
"Alecta Pensionsforsakring": "https://www.unpri.org/organisation/146977", | |
"Fukoku Mutual Life Insurance Company": "https://www.unpri.org/organisation/146943", | |
"Humboldt State University Advancement Foundation": "https://www.unpri.org/organisation/146294", | |
"African Risk Capacity Insurance Company Limited": "https://www.unpri.org/organisation/146278", | |
"LA Retirement Fund": "https://www.unpri.org/organisation/144696", | |
"United Church of Canada Pension Plan": "https://www.unpri.org/organisation/143109", | |
"R\u00e9gime de retraite de la Conf\u00e9d\u00e9ration des syndicats nationaux (CSN)": "https://www.unpri.org/organisation/144575", | |
"Geroa Pentsioak EPSV": "https://www.unpri.org/organisation/142951", | |
"BVK": "https://www.unpri.org/organisation/142925", | |
"CCOO, FP": "https://www.unpri.org/organisation/144938", | |
"World Bank Group Retirement Benefit Plans": "https://www.unpri.org/organisation/143225", | |
"The Dai-ichi Life Insurance Company, Limited": "https://www.unpri.org/organisation/142595", | |
"Sophia School Corporation": "https://www.unpri.org/organisation/144515", | |
"United Nations Foundation": "https://www.unpri.org/organisation/145327", | |
"Ontario Pension Board (OPB)": "https://www.unpri.org/organisation/143080", | |
"BPL Pensioen": "https://www.unpri.org/organisation/142929", | |
"PeaceNexus Foundation": "https://www.unpri.org/organisation/144557", | |
"Barclays Bank UK Retirement Fund": "https://www.unpri.org/organisation/144014", | |
"GPIF": "https://www.unpri.org/organisation/141892", | |
"Challenger Limited": "https://www.unpri.org/organisation/144608", | |
"Sitra": "https://www.unpri.org/organisation/142092", | |
"Loreto Mutua, M.P.S.": "https://www.unpri.org/organisation/143297", | |
"Teachers' Retirement System of the City of New York": "https://www.unpri.org/organisation/143751", | |
"Paul Hamlyn Foundation": "https://www.unpri.org/organisation/145912", | |
"MS&AD Insurance Group Holdings, Inc.": "https://www.unpri.org/organisation/143473", | |
"Colleges of Applied Arts & Technology Pension Plan CAAT": "https://www.unpri.org/organisation/143070", | |
"Guardian Media Group": "https://www.unpri.org/organisation/143465", | |
"Canadian Union of Public Employees Employees' Pension Plan (CEPP)": "https://www.unpri.org/organisation/143373", | |
"Lancashire County Pension Fund": "https://www.unpri.org/organisation/143979", | |
"St. Bedrijfspensioenfonds voor de Koopvaardij": "https://www.unpri.org/organisation/143541", | |
"University of Victoria": "https://www.unpri.org/organisation/145959", | |
"Sun Life Assurance Company of Canada": "https://www.unpri.org/organisation/143087", | |
"QBE Insurance Group Limited": "https://www.unpri.org/organisation/144388", | |
"Skandia": "https://www.unpri.org/organisation/144467", | |
"Stichting Total Pensioenfonds Nederland": "https://www.unpri.org/organisation/145576", | |
"University of St. Andrews": "https://www.unpri.org/organisation/142984", | |
"Nordea Life & Pensions": "https://www.unpri.org/organisation/144589", | |
"Barmenia Versicherungen": "https://www.unpri.org/organisation/143155", | |
"Treehouse Investments, LLC": "https://www.unpri.org/organisation/144544", | |
"University of California": "https://www.unpri.org/organisation/144579", | |
"The United Church of Canada": "https://www.unpri.org/organisation/144602", | |
"Comic Relief": "https://www.unpri.org/organisation/144919", | |
"Public Sector Pension Investment Board": "https://www.unpri.org/organisation/142469", | |
"Pegaso - Fondo pensione complementare": "https://www.unpri.org/organisation/144511", | |
"Simon Fraser University": "https://www.unpri.org/organisation/142088", | |
"Salvepar": "https://www.unpri.org/organisation/145294", | |
"Co\u00f6peratie DELA": "https://www.unpri.org/organisation/143147", | |
"Greater Manchester Pension Fund": "https://www.unpri.org/organisation/144114", | |
"Ircantec": "https://www.unpri.org/organisation/145423", | |
"Brabantse Ontwikkelings Maatschappij": "https://www.unpri.org/organisation/145468", | |
"D\u00e9veloppement international Desjardins": "https://www.unpri.org/organisation/143217", | |
"Harvard University Endowment": "https://www.unpri.org/organisation/145981", | |
"Stichting Pensioenfonds KLM-Cabinepersoneel": "https://www.unpri.org/organisation/142656", | |
"Stichting Algemeen Pensioenfonds KLM": "https://www.unpri.org/organisation/142670", | |
"Bupa": "https://www.unpri.org/organisation/144641", | |
"Suva": "https://www.unpri.org/organisation/143209", | |
"UK Green Investment Bank plc": "https://www.unpri.org/organisation/143027", | |
"VERKA VK Kirchliche Vorsorge VVaG": "https://www.unpri.org/organisation/142654", | |
"Church Commissioners for England": "https://www.unpri.org/organisation/142710", | |
"Bpf HiBiN": "https://www.unpri.org/organisation/142727", | |
"Hannoversche Alterskasse VVaG": "https://www.unpri.org/organisation/144718", | |
"Good Super": "https://www.unpri.org/organisation/142830", | |
"Stichting Pensioenfonds voor Huisartsen": "https://www.unpri.org/organisation/143121", | |
"L\u00e4nsf\u00f6rs\u00e4kringar AB": "https://www.unpri.org/organisation/145838", | |
"Unilever Pension Funds (Univest Company)": "https://www.unpri.org/organisation/141996", | |
"Ratos AB": "https://www.unpri.org/organisation/143010", | |
"Enabling Microfinance AG": "https://www.unpri.org/organisation/144478", | |
"Transnet Retirement Fund": "https://www.unpri.org/organisation/144698", | |
"Superannuation Arrangements of the University of London (SAUL)": "https://www.unpri.org/organisation/144431", | |
"Steyler Bank GmbH": "https://www.unpri.org/organisation/141960", | |
"Esmee Fairbairn Foundation": "https://www.unpri.org/organisation/145773", | |
"Aviva Staff Pension Trustee Ltd": "https://www.unpri.org/organisation/144047", | |
"Fondo Pensione Gruppo Intesa Sanpaolo": "https://www.unpri.org/organisation/145780", | |
"Stichting Pensioenfonds Werk en (re)Integratie": "https://www.unpri.org/organisation/142507", | |
"City of Espoo": "https://www.unpri.org/organisation/145790", | |
"Pragma Patrim\u00f4nio": "https://www.unpri.org/organisation/145907", | |
"Sparkassen Pensionskasse AG": "https://www.unpri.org/organisation/142859", | |
"The Foundation for Social Entrepreneurs (T/a UnLtd)": "https://www.unpri.org/organisation/145870", | |
"Grameen Cr\u00e9dit Agricole Microfinance Foundation": "https://www.unpri.org/organisation/142146", | |
"The University of Edinburgh": "https://www.unpri.org/organisation/144745", | |
"Sunsuper": "https://www.unpri.org/organisation/142019", | |
"REPSOL II Fondo de Pensiones": "https://www.unpri.org/organisation/141924", | |
"AXA Group": "https://www.unpri.org/organisation/143829", | |
"AP6": "https://www.unpri.org/organisation/145944", | |
"University of Ottawa": "https://www.unpri.org/organisation/142806", | |
"Community Foundation of Ottawa": "https://www.unpri.org/organisation/143072", | |
"WPV": "https://www.unpri.org/organisation/142017", | |
"Evangelische Bank": "https://www.unpri.org/organisation/142138", | |
"Oxfam Novib": "https://www.unpri.org/organisation/142063", | |
"Lloyds Banking Group": "https://www.unpri.org/organisation/144084", | |
"Opplysningsvesenets fond": "https://www.unpri.org/organisation/142047", | |
"Swedfund International AB": "https://www.unpri.org/organisation/142509", | |
"Tokio Marine & Nichido Fire Insurance Co,.Ltd.": "https://www.unpri.org/organisation/142348", | |
"Zurich Insurance Group": "https://www.unpri.org/organisation/142618", | |
"Veritas Pension Insurance Company Ltd": "https://www.unpri.org/organisation/142808", | |
"MetallRente GmbH": "https://www.unpri.org/organisation/142838", | |
"Funda\u00e7\u00e3o Itau Unibanco": "https://www.unpri.org/organisation/142331", | |
"Nest Sammelstiftung": "https://www.unpri.org/organisation/141967", | |
"Old Mutual plc": "https://www.unpri.org/organisation/142159", | |
"Sanlam Limited": "https://www.unpri.org/organisation/142533", | |
"Sparda-Bank Muenchen eG": "https://www.unpri.org/organisation/142165", | |
"Deutsche Bundesstiftung Umwelt": "https://www.unpri.org/organisation/142086", | |
"SASRIA (SOC) Limited": "https://www.unpri.org/organisation/142263", | |
"HIVOS": "https://www.unpri.org/organisation/142057", | |
"ICCO": "https://www.unpri.org/organisation/142059", | |
"ING Groenbank N.V.": "https://www.unpri.org/organisation/142061", | |
"Government Institutions Pension Fund": "https://www.unpri.org/organisation/142729", | |
"Luxembourg Microfinance and Development Fund": "https://www.unpri.org/organisation/142055", | |
"Native Benefits Plan": "https://www.unpri.org/organisation/145830", | |
"ASR Nederland N.V.": "https://www.unpri.org/organisation/142298", | |
"Allianz SE": "https://www.unpri.org/organisation/144003", | |
"Stichting Pensioenfonds van De Nederlandsche Bank NV": "https://www.unpri.org/organisation/145852", | |
"Stichting Bewaarder Beleggingen Menzis": "https://www.unpri.org/organisation/142195", | |
"CNP Assurances": "https://www.unpri.org/organisation/145874", | |
"Fonds 1818": "https://www.unpri.org/organisation/145834", | |
"Fonds de solidarit\u00e9 FTQ": "https://www.unpri.org/organisation/145876", | |
"National Employment Savings Trust (NEST)": "https://www.unpri.org/organisation/142288", | |
"Ontario Teachers' Pension Plan": "https://www.unpri.org/organisation/143082", | |
"UAW Retiree Medical Benefits Trust": "https://www.unpri.org/organisation/145771", | |
"UFCW International Union Pension Plan for Employees": "https://www.unpri.org/organisation/142589", | |
"Varma Mutual Pension Insurance Company": "https://www.unpri.org/organisation/142606", | |
"SAS Trustee Corporation": "https://www.unpri.org/organisation/142765", | |
"Valtion El\u00e4kerahasto": "https://www.unpri.org/organisation/142666", | |
"West Midlands Pension Fund": "https://www.unpri.org/organisation/142695", | |
"Generali Group": "https://www.unpri.org/organisation/145603", | |
"Pension Fund City of Zurich (PKZH)": "https://www.unpri.org/organisation/142842", | |
"Healthcare of Ontario Pension Plan (HOOPP)": "https://www.unpri.org/organisation/142041", | |
"Alliance Trust PLC": "https://www.unpri.org/organisation/145940", | |
"Nederlandse Financierings-Maatschappij voor Ontwikkelingslanden N.V. (FMO)": "https://www.unpri.org/organisation/142169", | |
"FUNCESP": "https://www.unpri.org/organisation/142370", | |
"Bayerische Versorgungskammer": "https://www.unpri.org/organisation/145977", | |
"Secom Pension Fund": "https://www.unpri.org/organisation/142329", | |
"Fondaction CSN": "https://www.unpri.org/organisation/143052", | |
"International Finance Corporation (IFC)": "https://www.unpri.org/organisation/144021", | |
"Santander Empleados Pensiones, F.P.": "https://www.unpri.org/organisation/145046", | |
"Stichting Pensioenfonds UWV": "https://www.unpri.org/organisation/145151", | |
"Gestion F\u00c9RIQUE": "https://www.unpri.org/organisation/143060", | |
"Marks & Spencer Pension Scheme": "https://www.unpri.org/organisation/144282", | |
"Cometa Pension Fund": "https://www.unpri.org/organisation/144749", | |
"Etera Mutual Pension Insurance Company": "https://www.unpri.org/organisation/144809", | |
"Railways Pension Trustee Company Limited": "https://www.unpri.org/organisation/145588", | |
"VIESGO INFRAESTRUTURAS ENERGETICAS,S.L": "https://www.unpri.org/organisation/144979", | |
"Humanis": "https://www.unpri.org/organisation/144985", | |
"CFDT": "https://www.unpri.org/organisation/144981", | |
"Church of England Pensions Board": "https://www.unpri.org/organisation/145508", | |
"Rabobank Pensioenfonds": "https://www.unpri.org/organisation/144850", | |
"North East Scotland Pension Fund": "https://www.unpri.org/organisation/145630", | |
"BPF Schilders": "https://www.unpri.org/organisation/144959", | |
"Uniting Financial Services": "https://www.unpri.org/organisation/145528", | |
"Otago Community Trust": "https://www.unpri.org/organisation/142405", | |
"The Pensions Trust": "https://www.unpri.org/organisation/143674", | |
"OPSEU Pension Trust": "https://www.unpri.org/organisation/144854", | |
"Stichting Gemeenschappelijk Beleggingsfonds FNV": "https://www.unpri.org/organisation/143930", | |
"Shell Contributory Pension Fund": "https://www.unpri.org/organisation/144276", | |
"Media Super": "https://www.unpri.org/organisation/145094", | |
"Cr\u00e9dit Agricole Assurances": "https://www.unpri.org/organisation/145574", | |
"Energy Industries Superannuation Scheme (EISS)": "https://www.unpri.org/organisation/143123", | |
"HOSTPLUS": "https://www.unpri.org/organisation/144455", | |
"Royal Mail Pension Plan": "https://www.unpri.org/organisation/144288", | |
"Omega Overseas Investment Corporation": "https://www.unpri.org/organisation/145694", | |
"Stichting Pensioenfonds ING": "https://www.unpri.org/organisation/145667", | |
"R\u00e9gime de retraite de l'Universit\u00e9 du Qu\u00e9bec": "https://www.unpri.org/organisation/143115", | |
"AMF": "https://www.unpri.org/organisation/144401", | |
"UNISON Staff Pension Scheme": "https://www.unpri.org/organisation/144647", | |
"Landesbank Baden-W\u00fcrttemberg (LBBW)": "https://www.unpri.org/organisation/145745", | |
"The LankellyChase Foundation": "https://www.unpri.org/organisation/143481", | |
"Eskom Pension and Provident Fund": "https://www.unpri.org/organisation/144704", | |
"VidaCaixa": "https://www.unpri.org/organisation/145116", | |
"CDC Group plc": "https://www.unpri.org/organisation/144418", | |
"Joseph Rowntree Charitable Trust": "https://www.unpri.org/organisation/144860", | |
"Real Grandeza": "https://www.unpri.org/organisation/145753", | |
"R\u00e9gime de Retraite de l'Universit\u00e9 de Montr\u00e9al": "https://www.unpri.org/organisation/145734", | |
"Korea National Pension Service (NPS)": "https://www.unpri.org/organisation/144268", | |
"Stichting Philips Pensioenfonds": "https://www.unpri.org/organisation/142881", | |
"Australian Catholic Superannuation and Retirement Fund": "https://www.unpri.org/organisation/143252", | |
"The Forest Company": "https://www.unpri.org/organisation/143267", | |
"State Universities Retirement System of Illinois": "https://www.unpri.org/organisation/145135", | |
"AFL-CIO Reserve Fund": "https://www.unpri.org/organisation/145139", | |
"MAIF": "https://www.unpri.org/organisation/145012", | |
"Norwegian Government Pension Fund Norway (Norwegian Ministry of Finance and Folketrygdfondet)": "https://www.unpri.org/organisation/145014", | |
"VBV- Vorsorgekasse AG": "https://www.unpri.org/organisation/145036", | |
"CommInsure": "https://www.unpri.org/organisation/144923", | |
"Midat Cyclops FP": "https://www.unpri.org/organisation/144866", | |
"Kehati - The Indonesian Biodiversity Foundation": "https://www.unpri.org/organisation/143008", | |
"MP Investment Management A/S": "https://www.unpri.org/organisation/145042", | |
"Tasplan": "https://www.unpri.org/organisation/144927", | |
"Middletown Works Hourly and Salaried Union Retirees Health Care Fund": "https://www.unpri.org/organisation/144862", | |
"Vaekstfonden": "https://www.unpri.org/organisation/142871", | |
"Mistra": "https://www.unpri.org/organisation/144901", | |
"Los Angeles County Employees Retirement Association (LACERA)": "https://www.unpri.org/organisation/142391", | |
"Global Crop Diversity Trust": "https://www.unpri.org/organisation/144415", | |
"Pensions Caixa 30 FP": "https://www.unpri.org/organisation/143219", | |
"Stichting Shell Pensioenfonds": "https://www.unpri.org/organisation/144957", | |
"First State Superannuation Scheme": "https://www.unpri.org/organisation/144897", | |
"Keva": "https://www.unpri.org/organisation/143205", | |
"Soci\u00e9t\u00e9 d'assurance-vie inc. (SSQ)": "https://www.unpri.org/organisation/142875", | |
"Bpf AVH": "https://www.unpri.org/organisation/144743", | |
"Australian Capital Territory": "https://www.unpri.org/organisation/144730", | |
"BP Pension Fund": "https://www.unpri.org/organisation/143678", | |
"Elo Mutual Pension Insurance Company": "https://www.unpri.org/organisation/142427", | |
"Insurance Australia Group (IAG)": "https://www.unpri.org/organisation/142397", | |
"IAG & NRMA Superannuation pty Limited": "https://www.unpri.org/organisation/142399", | |
"Rata Foundation": "https://www.unpri.org/organisation/144351", | |
"Pensioenfonds Vervoer": "https://www.unpri.org/organisation/144349", | |
"Maryland State Retirement and Pension System": "https://www.unpri.org/organisation/144702", | |
"AP7": "https://www.unpri.org/organisation/144370", | |
"Pension Fund of Z\u00fcrcher Kantonalbank": "https://www.unpri.org/organisation/144128", | |
"Lothian Pension Fund": "https://www.unpri.org/organisation/144342", | |
"Mode Interieur Tapijt & Textiel (MITT)": "https://www.unpri.org/organisation/142387", | |
"Church Pension Fund": "https://www.unpri.org/organisation/142389", | |
"Accident Compensation Corporation": "https://www.unpri.org/organisation/143421", | |
"California State Teachers' Retirement System CalSTRS": "https://www.unpri.org/organisation/143997", | |
"Foundation North": "https://www.unpri.org/organisation/144700", | |
"BBVA Fondo de Empleo": "https://www.unpri.org/organisation/144831", | |
"Church of Sweden": "https://www.unpri.org/organisation/144825", | |
"Swedish Pensions Agency": "https://www.unpri.org/organisation/144681", | |
"Strathclyde Pension Fund": "https://www.unpri.org/organisation/144665", | |
"NGS Super Fund": "https://www.unpri.org/organisation/144673", | |
"Tradeka Corporation": "https://www.unpri.org/organisation/144653", | |
"Stichting Spoorwegpensioenfonds": "https://www.unpri.org/organisation/144675", | |
"SPOV": "https://www.unpri.org/organisation/144677", | |
"StatewideSuper": "https://www.unpri.org/organisation/143943", | |
"Pensioenfonds Metaal en Techniek": "https://www.unpri.org/organisation/143769", | |
"TWUSUPER": "https://www.unpri.org/organisation/143947", | |
"Achmea": "https://www.unpri.org/organisation/143729", | |
"Telstra Super Pty Ltd": "https://www.unpri.org/organisation/144227", | |
"Merseyside Pension Fund": "https://www.unpri.org/organisation/144300", | |
"KLP": "https://www.unpri.org/organisation/144157", | |
"AP4": "https://www.unpri.org/organisation/144108", | |
"Northern Ireland Local Government Officers' Superannuation Committee": "https://www.unpri.org/organisation/143672", | |
"LUCRF Super": "https://www.unpri.org/organisation/143755", | |
"ESSSuper": "https://www.unpri.org/organisation/143999", | |
"Victorian Funds Management Corporation": "https://www.unpri.org/organisation/144056", | |
"Pensioenfonds PNO Media": "https://www.unpri.org/organisation/144097", | |
"Local Government Superannuation Scheme": "https://www.unpri.org/organisation/144296", | |
"London Pensions Fund Authority (LPFA)": "https://www.unpri.org/organisation/144086", | |
"Sameinadi lifeyrissjodurinn (United Pension Fund)": "https://www.unpri.org/organisation/144259", | |
"Swiss Re Ltd": "https://www.unpri.org/organisation/143707", | |
"SEIU Pension Plans Master Trust": "https://www.unpri.org/organisation/143895", | |
"AustralianSuper": "https://www.unpri.org/organisation/143647", | |
"Forluz": "https://www.unpri.org/organisation/143725", | |
"UniSuper Management Pty Limited": "https://www.unpri.org/organisation/143981", | |
"Taiyo Life Insurance Company": "https://www.unpri.org/organisation/143945", | |
"FAELBA - Funda\u00e7\u00e3o COELBA de Previd\u00eancia Complementar": "https://www.unpri.org/organisation/143601", | |
"FASERN": "https://www.unpri.org/organisation/143761", | |
"Celpos": "https://www.unpri.org/organisation/143817", | |
"Economus": "https://www.unpri.org/organisation/143765", | |
"United Church Funds": "https://www.unpri.org/organisation/144280", | |
"Infraprev": "https://www.unpri.org/organisation/144118", | |
"Funcef": "https://www.unpri.org/organisation/144077", | |
"Trust Waikato": "https://www.unpri.org/organisation/143709", | |
"Pension Protection Fund": "https://www.unpri.org/organisation/144095", | |
"British Columbia Municipal Pension Plan": "https://www.unpri.org/organisation/143995", | |
"AP1": "https://www.unpri.org/organisation/144036", | |
"Valia": "https://www.unpri.org/organisation/143711", | |
"LSR": "https://www.unpri.org/organisation/144161", | |
"CBUS Superannuation Fund": "https://www.unpri.org/organisation/143611", | |
"CENTRUS- Funda\u00e7\u00e3o Banco Central de Previd\u00eancia Privada": "https://www.unpri.org/organisation/144069", | |
"CARE Super": "https://www.unpri.org/organisation/144167", | |
"Government Superannuation Fund Authority": "https://www.unpri.org/organisation/143825", | |
"Petros - Funda\u00e7\u00e3o Petrobras de Seguridade Social": "https://www.unpri.org/organisation/143989", | |
"CSC": "https://www.unpri.org/organisation/143592", | |
"Ilmarinen Mutual Pension Insurance Company": "https://www.unpri.org/organisation/143941", | |
"Vision Super": "https://www.unpri.org/organisation/144126", | |
"DNB": "https://www.unpri.org/organisation/143629", | |
"HESTA Super Fund": "https://www.unpri.org/organisation/144116", | |
"KfW Bankengruppe": "https://www.unpri.org/organisation/143977", | |
"AP3": "https://www.unpri.org/organisation/144006", | |
"Environment Agency Pension Fund": "https://www.unpri.org/organisation/143763", | |
"BBC Pension Trust Limited": "https://www.unpri.org/organisation/144082", | |
"Norwegian Government Pension Fund Global (Norwegian Ministry of Finance and Norges Bank Investment Management)": "https://www.unpri.org/organisation/145009", | |
"VicSuper": "https://www.unpri.org/organisation/143983", | |
"Lifeyrissjodur Verzlunarmanna (Pension Fund of Commerce)": "https://www.unpri.org/organisation/144024", | |
"Sompo Japan Nipponkoa Insurance Inc.": "https://www.unpri.org/organisation/144016", | |
"Caisse de d\u00e9p\u00f4t et placement du Qu\u00e9bec": "https://www.unpri.org/organisation/143576", | |
"Canada Pension Plan Investment Board": "https://www.unpri.org/organisation/143578", | |
"B\u00e2tirente": "https://www.unpri.org/organisation/143597", | |
"Caisse des d\u00e9p\u00f4ts et consignations - CDC": "https://www.unpri.org/organisation/143680", | |
"Christian Super": "https://www.unpri.org/organisation/143682", | |
"New York State Local Retirement System": "https://www.unpri.org/organisation/143721", | |
"Stichting Pensioenfonds ABP": "https://www.unpri.org/organisation/143737", | |
"Government Employees Pension Fund of South Africa": "https://www.unpri.org/organisation/143739", | |
"Storebrand Asset Management": "https://www.unpri.org/organisation/143747", | |
"Munich Re": "https://www.unpri.org/organisation/143771", | |
"New York City Employees Retirement System": "https://www.unpri.org/organisation/143774", | |
"California Public Employees' Retirement System CalPERS": "https://www.unpri.org/organisation/143815", | |
"Folksam": "https://www.unpri.org/organisation/143819", | |
"AP2": "https://www.unpri.org/organisation/143821", | |
"United Nations Joint Staff Pension Fund": "https://www.unpri.org/organisation/143903", | |
"Nathan Cummings Foundation": "https://www.unpri.org/organisation/143922", | |
"Stichting Pensioenfonds Zorg en Welzijn": "https://www.unpri.org/organisation/143928", | |
"Catholic Superannuation Fund": "https://www.unpri.org/organisation/143932", | |
"Wespath Investment Management (General Board of Pension and Health Benefits of the United Methodist Church)": "https://www.unpri.org/organisation/143937", | |
"New Zealand Superannuation Fund": "https://www.unpri.org/organisation/143987", | |
"Fonds de r\u00e9serve pour les retraites - FRR": "https://www.unpri.org/organisation/144075", | |
"ERAFP - French public service additional pension scheme": "https://www.unpri.org/organisation/144106", | |
"Ireland Strategic Investment Fund (ISIF)": "https://www.unpri.org/organisation/144130", | |
"Connecticut Retirement Plans and Trust Funds (CRPTF)": "https://www.unpri.org/organisation/144138", | |
"BT Pension Scheme": "https://www.unpri.org/organisation/144239", | |
"Universities Superannuation Scheme - USS": "https://www.unpri.org/organisation/144261", | |
"Pensionfund Metalektro (PME)": "https://www.unpri.org/organisation/144286", | |
"Kikkoman Corporation Pension Scheme": "https://www.unpri.org/organisation/144294", | |
"PREVI - Caixa de Previd\u00eancia dos Funcion\u00e1rios do Banco do Brasil": "https://www.unpri.org/organisation/144308", | |
"Case Kapitalf\u00f6rvaltning AB": "https://www.unpri.org/organisation/148279", | |
"LBBW Asset Management Investmentgesellschaft mbH": "https://www.unpri.org/organisation/148272", | |
"DESJARDINS GLOBAL ASSETS MANAGEMENT": "https://www.unpri.org/organisation/148274", | |
"Cape Ann Asset Management Limited": "https://www.unpri.org/organisation/148264", | |
"Element Partners": "https://www.unpri.org/organisation/148262", | |
"Nordkinn Asset Management AB": "https://www.unpri.org/organisation/148259", | |
"Gerdling Edlen Investment Management": "https://www.unpri.org/organisation/148255", | |
"JA Glynn & Co.": "https://www.unpri.org/organisation/148251", | |
"NXTP Partners LLC": "https://www.unpri.org/organisation/148249", | |
"Intermede Investment Partners Limited": "https://www.unpri.org/organisation/148232", | |
"Welkin Capital Management": "https://www.unpri.org/organisation/148230", | |
"AgIS Capital": "https://www.unpri.org/organisation/148218", | |
"Weberbank Actiengesellschaft": "https://www.unpri.org/organisation/148220", | |
"Albizia Capital Pte Ltd": "https://www.unpri.org/organisation/148222", | |
"Hartelt Fund Management": "https://www.unpri.org/organisation/148214", | |
"CAPITAL EXPORT": "https://www.unpri.org/organisation/148216", | |
"VanEck": "https://www.unpri.org/organisation/148200", | |
"SEAYA CAPITAL GESTION SGEIC, S.A.": "https://www.unpri.org/organisation/148202", | |
"Audley Mineral Resources Management LLP (Provisional Signatory)": "https://www.unpri.org/organisation/148194", | |
"Tembo Capital Management": "https://www.unpri.org/organisation/148196", | |
"RADIAL CAPITAL PARTNERS GmbH & Co. KG": "https://www.unpri.org/organisation/148198", | |
"TENDERCAPITAL Ltd": "https://www.unpri.org/organisation/148186", | |
"Quercus Assets Selection sarl": "https://www.unpri.org/organisation/148170", | |
"Pechel Industries": "https://www.unpri.org/organisation/148165", | |
"Proterra Partners": "https://www.unpri.org/organisation/148168", | |
"Energy Power Partners": "https://www.unpri.org/organisation/148159", | |
"China Asset Management Co., Ltd.": "https://www.unpri.org/organisation/148161", | |
"Value Square NV": "https://www.unpri.org/organisation/148150", | |
"QuayStreet Asset Management": "https://www.unpri.org/organisation/148155", | |
"iBionext": "https://www.unpri.org/organisation/148142", | |
"Nordic Credit Partners": "https://www.unpri.org/organisation/148144", | |
"Fidelity Investments": "https://www.unpri.org/organisation/148140", | |
"Alinda Capital Partners Ltd.": "https://www.unpri.org/organisation/148133", | |
"DuPont Capital Management": "https://www.unpri.org/organisation/148136", | |
"Delen Private Bank": "https://www.unpri.org/organisation/148124", | |
"Carlson Funds Enterprise": "https://www.unpri.org/organisation/148129", | |
"Community Capital Management, INC.": "https://www.unpri.org/organisation/148118", | |
"RGreen Invest": "https://www.unpri.org/organisation/148101", | |
"TD Asset Management (TDAM USA Inc.)": "https://www.unpri.org/organisation/148105", | |
"QQM Fund Management AB": "https://www.unpri.org/organisation/148107", | |
"DPI": "https://www.unpri.org/organisation/148093", | |
"Altera Vastgoed NV": "https://www.unpri.org/organisation/148095", | |
"Yarra Capital Management": "https://www.unpri.org/organisation/148088", | |
"Alda Asset Management": "https://www.unpri.org/organisation/148090", | |
"Orbis Investments": "https://www.unpri.org/organisation/148077", | |
"WaveCrest Wealth Management": "https://www.unpri.org/organisation/148081", | |
"IVO Capital Partners": "https://www.unpri.org/organisation/148086", | |
"PERIAL": "https://www.unpri.org/organisation/148073", | |
"Helliot Vermogensbeheer NV": "https://www.unpri.org/organisation/148058", | |
"ONE ELEVEN CAPITAL LLC (Provisional Signatory)": "https://www.unpri.org/organisation/148050", | |
"CI Investments Inc.": "https://www.unpri.org/organisation/148038", | |
"ARC Fiduciary (Provisional Signatory)": "https://www.unpri.org/organisation/148036", | |
"Galliard Capital Management, Inc.": "https://www.unpri.org/organisation/148027", | |
"CARN Capital": "https://www.unpri.org/organisation/148030", | |
"Invest in Visions": "https://www.unpri.org/organisation/148032", | |
"CATALYST INVESTMENT MANAGEMENT": "https://www.unpri.org/organisation/148034", | |
"Helios Investment Partners": "https://www.unpri.org/organisation/148021", | |
"Infranode": "https://www.unpri.org/organisation/148023", | |
"IndexHelsinki Osakeyhti\u00f6": "https://www.unpri.org/organisation/148010", | |
"Majedie Asset Management Limited": "https://www.unpri.org/organisation/148012", | |
"Angel Oak Capital (Angel Oak Capital Advisors, LLC and Angel Oak Canopy Partners, LLC)": "https://www.unpri.org/organisation/148014", | |
"Phatisa": "https://www.unpri.org/organisation/148016", | |
"InnovaFonds": "https://www.unpri.org/organisation/147996", | |
"CURLEW CAPITAL LTD": "https://www.unpri.org/organisation/147978", | |
"Nordic Equities Kapitalf\u00f6rvaltning": "https://www.unpri.org/organisation/147980", | |
"AUA Private Equity Partners": "https://www.unpri.org/organisation/147961", | |
"Whitehelm Capital Pty Ltd": "https://www.unpri.org/organisation/147968", | |
"Rivage Investment": "https://www.unpri.org/organisation/147972", | |
"Coeli Asset Management": "https://www.unpri.org/organisation/147921", | |
"AB Max Sievert": "https://www.unpri.org/organisation/147929", | |
"Grupo Ecoagro": "https://www.unpri.org/organisation/147931", | |
"Tiptree Asset Management Company, LLC": "https://www.unpri.org/organisation/147933", | |
"Pekin Singer Strauss (Appleseed Capital)": "https://www.unpri.org/organisation/147936", | |
"\u00cdslandsbanki hf. (V\u00cdB)": "https://www.unpri.org/organisation/147938", | |
"Greystone Managed Investments, Inc": "https://www.unpri.org/organisation/147914", | |
"Abris Capital Partners": "https://www.unpri.org/organisation/147905", | |
"SEVENTURE PARTNERS": "https://www.unpri.org/organisation/147897", | |
"PRIMARY CAPITAL PARTNERS LLP": "https://www.unpri.org/organisation/147883", | |
"GED PARTNERS, S.L.": "https://www.unpri.org/organisation/147885", | |
"Farm Venture": "https://www.unpri.org/organisation/147887", | |
"SCOR Investment Partners SE": "https://www.unpri.org/organisation/147889", | |
"DBJ Asset Management Co., Ltd.": "https://www.unpri.org/organisation/147871", | |
"Brandywine Global Investment Management, LLC": "https://www.unpri.org/organisation/147866", | |
"ThomasLloyd Group": "https://www.unpri.org/organisation/147853", | |
"The Ithaka Group": "https://www.unpri.org/organisation/147855", | |
"Colchester Global Investors Limited": "https://www.unpri.org/organisation/147858", | |
"B & Capital (Provisional Signatory)": "https://www.unpri.org/organisation/147844", | |
"IPSOL Capital": "https://www.unpri.org/organisation/147847", | |
"Obligo Holding": "https://www.unpri.org/organisation/147849", | |
"SwanCap Partners (SwanCap Investment Management S.A. and SwanCap Partners GmbH)": "https://www.unpri.org/organisation/147832", | |
"Livonia Partners": "https://www.unpri.org/organisation/147826", | |
"Formula Growth Limited": "https://www.unpri.org/organisation/147795", | |
"Lynx Asset Management AB": "https://www.unpri.org/organisation/147789", | |
"Vandaalen Swiss Value Partners": "https://www.unpri.org/organisation/147791", | |
"Sound Shore Management, Inc.": "https://www.unpri.org/organisation/147780", | |
"GreenSoil Investments": "https://www.unpri.org/organisation/147769", | |
"Tribe Impact Capital LLP (Provisional Signatory)": "https://www.unpri.org/organisation/147776", | |
"Solutions Fiducie (Provisional Signatory)": "https://www.unpri.org/organisation/147767", | |
"Fort Washington Investment Advisors, Inc": "https://www.unpri.org/organisation/147757", | |
"Herkules Capital": "https://www.unpri.org/organisation/147759", | |
"Primary Wave IP Investment Management": "https://www.unpri.org/organisation/147745", | |
"ACG Management": "https://www.unpri.org/organisation/147748", | |
"Discovery Americas": "https://www.unpri.org/organisation/147735", | |
"Ergon Capital Partners": "https://www.unpri.org/organisation/147727", | |
"Adelis Equity Partners": "https://www.unpri.org/organisation/147729", | |
"NorthPointe Capital, LLC": "https://www.unpri.org/organisation/147719", | |
"Pacific Road Capital": "https://www.unpri.org/organisation/147711", | |
"Resource Management Service, LLC": "https://www.unpri.org/organisation/147701", | |
"First Investments BV": "https://www.unpri.org/organisation/147707", | |
"MV Credit Partners LLP": "https://www.unpri.org/organisation/147685", | |
"AMBROSIA ASSET MANAGEMENT AB": "https://www.unpri.org/organisation/147683", | |
"Arrowstreet Capital, Limited Partnership": "https://www.unpri.org/organisation/147688", | |
"Causeway Capital Management LLC": "https://www.unpri.org/organisation/147690", | |
"GAMCO Investors, Inc.": "https://www.unpri.org/organisation/147692", | |
"AJO": "https://www.unpri.org/organisation/147654", | |
"Quilvest & Partners": "https://www.unpri.org/organisation/147656", | |
"Viarentis Limited": "https://www.unpri.org/organisation/147694", | |
"Chequers Capital": "https://www.unpri.org/organisation/147650", | |
"GQG Partners": "https://www.unpri.org/organisation/147652", | |
"Landmark Partners": "https://www.unpri.org/organisation/147637", | |
"The Wafra Group": "https://www.unpri.org/organisation/147640", | |
"Makena Capital Management": "https://www.unpri.org/organisation/147642", | |
"Richmond Global (Provisional Signatory)": "https://www.unpri.org/organisation/147626", | |
"NAZCA CAPITAL": "https://www.unpri.org/organisation/147628", | |
"BT Investment Management Limited": "https://www.unpri.org/organisation/147620", | |
"Cadence Investment Partners LLP": "https://www.unpri.org/organisation/147604", | |
"Oldfield Partners LLP": "https://www.unpri.org/organisation/147606", | |
"The Boston Company Asset Management, LLC": "https://www.unpri.org/organisation/147602", | |
"Helsinki Capital Partners Ltd": "https://www.unpri.org/organisation/147594", | |
"Brawn Capital Limited": "https://www.unpri.org/organisation/147982", | |
"Summa Equity": "https://www.unpri.org/organisation/147584", | |
"Troy Asset Management Limited": "https://www.unpri.org/organisation/147586", | |
"Swell Asset Management": "https://www.unpri.org/organisation/147567", | |
"ADRIGO ASSET MANAGEMENT": "https://www.unpri.org/organisation/147571", | |
"Tundra Fonder AB": "https://www.unpri.org/organisation/147574", | |
"Nmas1 Asset Management SGIIC S.A.U": "https://www.unpri.org/organisation/147550", | |
"UTI International Limited": "https://www.unpri.org/organisation/147547", | |
"Mondrian Investment Partners Limited": "https://www.unpri.org/organisation/147532", | |
"Area One Farms": "https://www.unpri.org/organisation/147530", | |
"Ant Capital Partners Co., Ltd": "https://www.unpri.org/organisation/147526", | |
"Figure 8 Investment Strategies": "https://www.unpri.org/organisation/147528", | |
"Growth Farms Australia": "https://www.unpri.org/organisation/147503", | |
"Niam AB": "https://www.unpri.org/organisation/147501", | |
"MacKay Shields": "https://www.unpri.org/organisation/147495", | |
"Convent Capital Management BV": "https://www.unpri.org/organisation/147480", | |
"VISIO Asset Management": "https://www.unpri.org/organisation/147466", | |
"Arctic Fund Management AS": "https://www.unpri.org/organisation/147469", | |
"SVG Capital": "https://www.unpri.org/organisation/147440", | |
"Sprucegrove Investment Management": "https://www.unpri.org/organisation/147444", | |
"GENUI": "https://www.unpri.org/organisation/147412", | |
"NextEnergy Capital": "https://www.unpri.org/organisation/147391", | |
"Northern Pacific Group": "https://www.unpri.org/organisation/147393", | |
"Northleaf Capital Partners": "https://www.unpri.org/organisation/147395", | |
"Alliance Trust Investments": "https://www.unpri.org/organisation/147389", | |
"Fair Oaks Capital": "https://www.unpri.org/organisation/147378", | |
"GoldenSet Capital Partners LLC": "https://www.unpri.org/organisation/147369", | |
"EMZ Partners": "https://www.unpri.org/organisation/147367", | |
"Andbank Wealth Management, SGIIC": "https://www.unpri.org/organisation/147359", | |
"All Weather Capital": "https://www.unpri.org/organisation/147353", | |
"Mediterrania Capital Partners": "https://www.unpri.org/organisation/147355", | |
"Snow Phipps Group, LLC": "https://www.unpri.org/organisation/147357", | |
"Integral Corporation": "https://www.unpri.org/organisation/147322", | |
"Brummer & Partners AB": "https://www.unpri.org/organisation/147320", | |
"Anda Asset Management": "https://www.unpri.org/organisation/147340", | |
"Wermuth Asset Management": "https://www.unpri.org/organisation/147347", | |
"Montana Capital Partners AG": "https://www.unpri.org/organisation/147304", | |
"Spiltan Fonder AB": "https://www.unpri.org/organisation/147332", | |
"Davy Asset Management": "https://www.unpri.org/organisation/147290", | |
"Wilshire Associates Incorporated": "https://www.unpri.org/organisation/147344", | |
"Grupo Fineco": "https://www.unpri.org/organisation/147282", | |
"TT International": "https://www.unpri.org/organisation/147325", | |
"Alma Capital Investment Management": "https://www.unpri.org/organisation/147328", | |
"Encourage Capital LLC": "https://www.unpri.org/organisation/147241", | |
"Solidar Fonder": "https://www.unpri.org/organisation/147243", | |
"Etho Capital": "https://www.unpri.org/organisation/147245", | |
"C Hoare & Co": "https://www.unpri.org/organisation/147247", | |
"IMPACT Partenaires": "https://www.unpri.org/organisation/147227", | |
"Bullion Management Group": "https://www.unpri.org/organisation/147223", | |
"Innova Capital": "https://www.unpri.org/organisation/147229", | |
"Volksbank Vorarlberg e. Gen.": "https://www.unpri.org/organisation/147207", | |
"KBC Asset Management NV": "https://www.unpri.org/organisation/147211", | |
"Meago (Pty)Ltd": "https://www.unpri.org/organisation/147201", | |
"CaixaBank Asset Management": "https://www.unpri.org/organisation/147205", | |
"Macrocapitales": "https://www.unpri.org/organisation/147166", | |
"Think ETF Asset Management": "https://www.unpri.org/organisation/147153", | |
"New Horizon Capital Co., Ltd.": "https://www.unpri.org/organisation/147183", | |
"Polaris Capital Group Co., Ltd.": "https://www.unpri.org/organisation/147179", | |
"Boussard & Gavaudan": "https://www.unpri.org/organisation/147123", | |
"Greencoat Capital": "https://www.unpri.org/organisation/147108", | |
"TRUSTUS Capital Management B.V": "https://www.unpri.org/organisation/147114", | |
"Oquendo Management Sarl": "https://www.unpri.org/organisation/147161", | |
"Adaxia Capital Partners": "https://www.unpri.org/organisation/147168", | |
"Pegasus Capital Advisors": "https://www.unpri.org/organisation/147081", | |
"Pathway Capital Management, LP": "https://www.unpri.org/organisation/147085", | |
"SP Global Capital (Provisional Signatory)": "https://www.unpri.org/organisation/147175", | |
"Gunn Agri Partners": "https://www.unpri.org/organisation/147043", | |
"BlueGem Capital Partners LLP": "https://www.unpri.org/organisation/147028", | |
"Quinbrook Infrastructure Partners": "https://www.unpri.org/organisation/147024", | |
"Altamar Capital Partners, S.L.": "https://www.unpri.org/organisation/147009", | |
"The Pensions Infrastructure Platform": "https://www.unpri.org/organisation/147013", | |
"123Venture": "https://www.unpri.org/organisation/147015", | |
"Nicola Wealth Management": "https://www.unpri.org/organisation/147019", | |
"IKB Deutsche Industriebank AG": "https://www.unpri.org/organisation/146987", | |
"HQ Trust GmbH": "https://www.unpri.org/organisation/146981", | |
"Barclays Asset Management Limited": "https://www.unpri.org/organisation/146983", | |
"Edmond de Rothschild Private Equity S.A. (EdR PE)": "https://www.unpri.org/organisation/146975", | |
"Kestrel Investment Partners": "https://www.unpri.org/organisation/146967", | |
"OSSIAM": "https://www.unpri.org/organisation/146971", | |
"Barrow, Hanley, Mewhinney & Strauss, LLC": "https://www.unpri.org/organisation/146973", | |
"DDJ Capital Management, LLC": "https://www.unpri.org/organisation/146961", | |
"Grosvenor Europe": "https://www.unpri.org/organisation/146963", | |
"International Farming Corporation": "https://www.unpri.org/organisation/146965", | |
"Connor, Clark & Lunn Private Capital Ltd.": "https://www.unpri.org/organisation/146956", | |
"Sentinel Asset Management, Inc.": "https://www.unpri.org/organisation/146933", | |
"Drakens Capital": "https://www.unpri.org/organisation/146937", | |
"Alpina Capital Partners LLP": "https://www.unpri.org/organisation/146306", | |
"Meiji Yasuda Asset Management Company Ltd.": "https://www.unpri.org/organisation/146307", | |
"American Timberlands Company": "https://www.unpri.org/organisation/146301", | |
"NS Partners": "https://www.unpri.org/organisation/146296", | |
"Aberforth Partners": "https://www.unpri.org/organisation/146284", | |
"BlueSky Investment Management, LLC": "https://www.unpri.org/organisation/146286", | |
"Lord Abbett": "https://www.unpri.org/organisation/146288", | |
"Highland Capital Management": "https://www.unpri.org/organisation/146273", | |
"Campbell Global": "https://www.unpri.org/organisation/146290", | |
"Thomson, Horstmann and Bryant": "https://www.unpri.org/organisation/146026", | |
"Legato Capital Management, LLC": "https://www.unpri.org/organisation/146028", | |
"Aurica Capital": "https://www.unpri.org/organisation/146019", | |
"Formuepleje": "https://www.unpri.org/organisation/146015", | |
"GreenWish Capital (Mauritius) Ltd": "https://www.unpri.org/organisation/142902", | |
"Ausbil Investment Management": "https://www.unpri.org/organisation/143363", | |
"Axiom Alternative Investments": "https://www.unpri.org/organisation/142906", | |
"Brandes Investment Partners": "https://www.unpri.org/organisation/142960", | |
"Cornerstone Real Estate Advisers": "https://www.unpri.org/organisation/143518", | |
"PT Batavia Prosperindo Aset Manajemen": "https://www.unpri.org/organisation/142911", | |
"Gramont Capital Ltd": "https://www.unpri.org/organisation/145248", | |
"GLC Asset Management Group": "https://www.unpri.org/organisation/143142", | |
"Western Asset Management Company": "https://www.unpri.org/organisation/143410", | |
"Oakley Capital Limited": "https://www.unpri.org/organisation/145147", | |
"Matthews International Capital (Matthews Asia)": "https://www.unpri.org/organisation/145161", | |
"Affirmative Investment Management": "https://www.unpri.org/organisation/145250", | |
"Fukoku Capital Management, Inc.": "https://www.unpri.org/organisation/143163", | |
"Absa Asset Management": "https://www.unpri.org/organisation/142819", | |
"Musa Group (Pty) Ltd": "https://www.unpri.org/organisation/143171", | |
"Enter Fonder AB": "https://www.unpri.org/organisation/145309", | |
"Ainda, Energia & Infraestructura (Provisional Signatory)": "https://www.unpri.org/organisation/145149", | |
"Ruffer LLP": "https://www.unpri.org/organisation/145296", | |
"The Minerals & Energy Group": "https://www.unpri.org/organisation/143232", | |
"Naxicap Partners": "https://www.unpri.org/organisation/143211", | |
"Advantage Partners": "https://www.unpri.org/organisation/142601", | |
"EARNEST Partners": "https://www.unpri.org/organisation/142965", | |
"Laaken Asset Management N.V.": "https://www.unpri.org/organisation/143165", | |
"Baker Gilmore & Associates": "https://www.unpri.org/organisation/145145", | |
"Aktie-Ansvar AB": "https://www.unpri.org/organisation/145159", | |
"Fulcrum Asset Management LLP": "https://www.unpri.org/organisation/143229", | |
"QMA": "https://www.unpri.org/organisation/144505", | |
"Zadig": "https://www.unpri.org/organisation/143167", | |
"Obsido Oy": "https://www.unpri.org/organisation/145246", | |
"METAFORM INVESTMENTS INC. (Provisional Signatory)": "https://www.unpri.org/organisation/142909", | |
"Atlantic Bridge Capital": "https://www.unpri.org/organisation/144624", | |
"AGF Investments Inc": "https://www.unpri.org/organisation/145311", | |
"Equilibrium": "https://www.unpri.org/organisation/141907", | |
"Vestathena": "https://www.unpri.org/organisation/143227", | |
"ClariVest Asset Management LLC": "https://www.unpri.org/organisation/143234", | |
"Dana Investment Advisors": "https://www.unpri.org/organisation/144555", | |
"Future Matters": "https://www.unpri.org/organisation/145165", | |
"Cicero Fonder AB": "https://www.unpri.org/organisation/145169", | |
"Mandarin Capital Management": "https://www.unpri.org/organisation/145465", | |
"Manulife Asset Management": "https://www.unpri.org/organisation/142933", | |
"Wise SGR": "https://www.unpri.org/organisation/142253", | |
"Aristotle Credit Partners, LLC": "https://www.unpri.org/organisation/143369", | |
"Ashburton Fund Managers (Pty) Ltd": "https://www.unpri.org/organisation/145261", | |
"Parquest Capital": "https://www.unpri.org/organisation/145189", | |
"Montagu Private Equity": "https://www.unpri.org/organisation/145272", | |
"Veritas Institutional GmbH": "https://www.unpri.org/organisation/145255", | |
"Cameron Hume Limited": "https://www.unpri.org/organisation/145290", | |
"Waterland Private Equity Investments": "https://www.unpri.org/organisation/143125", | |
"Integrated Asset Management Corp.": "https://www.unpri.org/organisation/145181", | |
"JAR Capital Limited": "https://www.unpri.org/organisation/145240", | |
"Ela\u00efs Capital": "https://www.unpri.org/organisation/145244", | |
"River Hollow Partners": "https://www.unpri.org/organisation/145286", | |
"RAM Active Investments SA": "https://www.unpri.org/organisation/145191", | |
"Norron Asset Management": "https://www.unpri.org/organisation/145252", | |
"Omni Partners LLP": "https://www.unpri.org/organisation/145257", | |
"Mint Asset Management": "https://www.unpri.org/organisation/145318", | |
"SKY Harbor Capital Management": "https://www.unpri.org/organisation/143435", | |
"Motion Equity Partners": "https://www.unpri.org/organisation/145284", | |
"Vision Capital LLP": "https://www.unpri.org/organisation/142731", | |
"Sonen Capital": "https://www.unpri.org/organisation/145844", | |
"Nomura Alternative Investment Management (Europe) Ltd": "https://www.unpri.org/organisation/143359", | |
"Caravel Management LLC": "https://www.unpri.org/organisation/143547", | |
"Synova Capital LLP": "https://www.unpri.org/organisation/145292", | |
"Los Angeles Capital": "https://www.unpri.org/organisation/142969", | |
"Capri Investment Group": "https://www.unpri.org/organisation/143442", | |
"Eurizon Capital SGR": "https://www.unpri.org/organisation/145596", | |
"FOURPOINTS Investment Managers": "https://www.unpri.org/organisation/145259", | |
"GAIA Fund Managers (Pty) Ltd (Provisional Signatory)": "https://www.unpri.org/organisation/145325", | |
"Paragon Partners": "https://www.unpri.org/organisation/143463", | |
"Portfolio Advisors, LLC": "https://www.unpri.org/organisation/142971", | |
"Greentech Capital Advisors, LLC": "https://www.unpri.org/organisation/142996", | |
"Extendam": "https://www.unpri.org/organisation/145373", | |
"RBC Global Asset Management": "https://www.unpri.org/organisation/143064", | |
"RAM ONE AB": "https://www.unpri.org/organisation/143404", | |
"Optimized Portfolio Management, OPM": "https://www.unpri.org/organisation/145282", | |
"Emso Asset Management Limited": "https://www.unpri.org/organisation/142975", | |
"Trecento": "https://www.unpri.org/organisation/142923", | |
"Macquarie Asset Management": "https://www.unpri.org/organisation/143272", | |
"Equator Capital Partners": "https://www.unpri.org/organisation/144542", | |
"AgCAP": "https://www.unpri.org/organisation/145321", | |
"Innovacom Gestion": "https://www.unpri.org/organisation/143182", | |
"Banco BTG Pactual S.A.": "https://www.unpri.org/organisation/142988", | |
"PCJ Investment Counsel Ltd": "https://www.unpri.org/organisation/143327", | |
"Gemway": "https://www.unpri.org/organisation/143433", | |
"Abac Solutions Manager S.\u00e0 r.l.": "https://www.unpri.org/organisation/143329", | |
"Kuramo Capital Management, LLC": "https://www.unpri.org/organisation/145371", | |
"Magni Global Asset Management": "https://www.unpri.org/organisation/144548", | |
"AIF Capital": "https://www.unpri.org/organisation/145902", | |
"PineBridge Investments": "https://www.unpri.org/organisation/142783", | |
"Trinitas Partners, LLC": "https://www.unpri.org/organisation/144639", | |
"Carnegie Fonder AB": "https://www.unpri.org/organisation/142931", | |
"Hudson Clean Energy Partners": "https://www.unpri.org/organisation/141942", | |
"ACA Innovative Investment Management Inc.": "https://www.unpri.org/organisation/142913", | |
"Roxbury Asset Management": "https://www.unpri.org/organisation/142915", | |
"Jamestown LP": "https://www.unpri.org/organisation/145439", | |
"Bankhaus Schelhammer & Schattera AG": "https://www.unpri.org/organisation/142927", | |
"City of London Investment Group PLC": "https://www.unpri.org/organisation/143499", | |
"OpCapita LLP": "https://www.unpri.org/organisation/145453", | |
"TVM Capital Healthcare Partners": "https://www.unpri.org/organisation/143388", | |
"Loomis, Sayles & Company, L.P.": "https://www.unpri.org/organisation/142844", | |
"Quaero Capital": "https://www.unpri.org/organisation/143347", | |
"Montpensier Finance": "https://www.unpri.org/organisation/142531", | |
"Eleva Capital LLP": "https://www.unpri.org/organisation/143365", | |
"MainFirst Holding AG": "https://www.unpri.org/organisation/143438", | |
"BlackFin Capital Partners": "https://www.unpri.org/organisation/143406", | |
"Schafer Cullen Capital Management": "https://www.unpri.org/organisation/143320", | |
"Vallis Capital Partners": "https://www.unpri.org/organisation/143399", | |
"Hartford Funds Management Company, LLC": "https://www.unpri.org/organisation/143341", | |
"Resonance Asset Management Limited": "https://www.unpri.org/organisation/143324", | |
"Goodyields Capital GmbH": "https://www.unpri.org/organisation/142998", | |
"Genstar Capital": "https://www.unpri.org/organisation/143451", | |
"Mirae Asset Global Investments (HK)": "https://www.unpri.org/organisation/143408", | |
"Eaton Vance Management": "https://www.unpri.org/organisation/143553", | |
"Jarislowsky Fraser Global Investment Management": "https://www.unpri.org/organisation/143105", | |
"Wells Capital Management": "https://www.unpri.org/organisation/143375", | |
"Fred Alger Management, Inc": "https://www.unpri.org/organisation/144507", | |
"Lupus alpha Asset Management AG": "https://www.unpri.org/organisation/143386", | |
"Charles Stanley PLC": "https://www.unpri.org/organisation/143556", | |
"Entropics Asset Management": "https://www.unpri.org/organisation/144573", | |
"EquityCompass Strategies": "https://www.unpri.org/organisation/143449", | |
"First Trust Advisors L.P.": "https://www.unpri.org/organisation/145435", | |
"Delta Alternative Management": "https://www.unpri.org/organisation/143459", | |
"Fisch Asset Management AG": "https://www.unpri.org/organisation/145437", | |
"Artemis Investment Management": "https://www.unpri.org/organisation/143355", | |
"Connor, Clark & Lunn": "https://www.unpri.org/organisation/143074", | |
"Neumeier Poma Investment Counsel, LLC": "https://www.unpri.org/organisation/143361", | |
"Dalton, Greiner, Hartman, Maher & Co., LLC (DGHM)": "https://www.unpri.org/organisation/143440", | |
"Infrastructure Capital Group": "https://www.unpri.org/organisation/143397", | |
"Baring Private Equity Partners Espa\u00f1a": "https://www.unpri.org/organisation/143455", | |
"L1 Capital Pty Ltd": "https://www.unpri.org/organisation/143357", | |
"Realza Capital S.G.E.I.C., S.A.": "https://www.unpri.org/organisation/143431", | |
"Ysios Capital": "https://www.unpri.org/organisation/143453", | |
"Eiffel Investment Group": "https://www.unpri.org/organisation/143477", | |
"Milestone Investisseurs": "https://www.unpri.org/organisation/145375", | |
"ACOFI Gestion": "https://www.unpri.org/organisation/143339", | |
"EnerCap Capital Partners": "https://www.unpri.org/organisation/143343", | |
"Swen Capital Partners": "https://www.unpri.org/organisation/143475", | |
"GHO Capital": "https://www.unpri.org/organisation/143429", | |
"Trium Capital LLP": "https://www.unpri.org/organisation/143461", | |
"AIM Capital Oy": "https://www.unpri.org/organisation/143367", | |
"PGIM Fixed Income": "https://www.unpri.org/organisation/143504", | |
"747 Capital": "https://www.unpri.org/organisation/143545", | |
"Crescit Asset Management AB": "https://www.unpri.org/organisation/143510", | |
"Euro Private Equity": "https://www.unpri.org/organisation/143530", | |
"Genus Capital Management": "https://www.unpri.org/organisation/144596", | |
"Abbott Capital": "https://www.unpri.org/organisation/144911", | |
"ERES GESTION": "https://www.unpri.org/organisation/145451", | |
"Wingate Asset Management": "https://www.unpri.org/organisation/143425", | |
"Procuritas Capital Investors": "https://www.unpri.org/organisation/143427", | |
"Corfina Capital": "https://www.unpri.org/organisation/144393", | |
"NCH Capital Inc.": "https://www.unpri.org/organisation/144395", | |
"The Hampshire Companies, LLC": "https://www.unpri.org/organisation/143508", | |
"CDC International Capital": "https://www.unpri.org/organisation/143512", | |
"Salt Funds Management": "https://www.unpri.org/organisation/143543", | |
"Capvis Equity Partners": "https://www.unpri.org/organisation/144585", | |
"Castik Capital S.\u00e0 r.l.": "https://www.unpri.org/organisation/143533", | |
"Golden Rock Capital": "https://www.unpri.org/organisation/143535", | |
"Lyxor Asset Management": "https://www.unpri.org/organisation/143549", | |
"Lazard Asset Management LLC": "https://www.unpri.org/organisation/143195", | |
"Edinburgh Partners Limited": "https://www.unpri.org/organisation/145331", | |
"Mvunonala Asset Managers": "https://www.unpri.org/organisation/144380", | |
"GAM Holding AG": "https://www.unpri.org/organisation/145353", | |
"Teslin Capital Management": "https://www.unpri.org/organisation/144378", | |
"Lazard Fr\u00e8res Gestion": "https://www.unpri.org/organisation/143314", | |
"Strategic Investment Group": "https://www.unpri.org/organisation/143514", | |
"Pareto Asset Management AS": "https://www.unpri.org/organisation/144390", | |
"Invimit SGR": "https://www.unpri.org/organisation/144550", | |
"Navigera AB": "https://www.unpri.org/organisation/145268", | |
"Rogge Global Partners": "https://www.unpri.org/organisation/142433", | |
"Bank of America Global Wealth and Investment Management": "https://www.unpri.org/organisation/144706", | |
"Turner Impact Capital, LLC": "https://www.unpri.org/organisation/144386", | |
"OHV": "https://www.unpri.org/organisation/144645", | |
"WaveStone Capital": "https://www.unpri.org/organisation/144622", | |
"Ohman": "https://www.unpri.org/organisation/144539", | |
"Bonnefield Financial": "https://www.unpri.org/organisation/145553", | |
"The Vanguard Group, Inc.": "https://www.unpri.org/organisation/141910", | |
"Equis Pte. Ltd": "https://www.unpri.org/organisation/144435", | |
"Longfellow Investment Management Co.": "https://www.unpri.org/organisation/144632", | |
"ARX Equity Partners": "https://www.unpri.org/organisation/144517", | |
"Bencis Capital Partners": "https://www.unpri.org/organisation/145265", | |
"Trusteam Finance": "https://www.unpri.org/organisation/145395", | |
"NorthStar Asset Management, Inc.": "https://www.unpri.org/organisation/142638", | |
"Green Century Capital Management, Inc.": "https://www.unpri.org/organisation/144899", | |
"CORDET": "https://www.unpri.org/organisation/144571", | |
"KEPLER-FONDS KAG": "https://www.unpri.org/organisation/145727", | |
"Life Sciences Partners (LSP)": "https://www.unpri.org/organisation/145367", | |
"RAISE": "https://www.unpri.org/organisation/145472", | |
"Sp-Fund Management Company Ltd": "https://www.unpri.org/organisation/144527", | |
"Columbia Management Investment Advisers, LLC": "https://www.unpri.org/organisation/144525", | |
"Savills Investment Management": "https://www.unpri.org/organisation/144529", | |
"Apis Partners LLP": "https://www.unpri.org/organisation/145338", | |
"Azimuth Capital Management": "https://www.unpri.org/organisation/144521", | |
"Misaki Capital Inc.": "https://www.unpri.org/organisation/144384", | |
"Brightwood Capital Advisors, LLC": "https://www.unpri.org/organisation/144382", | |
"Investinor AS": "https://www.unpri.org/organisation/144503", | |
"Avanath Capital Management, LLC": "https://www.unpri.org/organisation/144634", | |
"Basellandschaftliche Kantonalbank": "https://www.unpri.org/organisation/144501", | |
"Sustainable Growth Advisers, LP": "https://www.unpri.org/organisation/144630", | |
"Ownership Capital": "https://www.unpri.org/organisation/143312", | |
"DBL Partners": "https://www.unpri.org/organisation/142098", | |
"Tau Investment Management LLC (Provisional Signatory)": "https://www.unpri.org/organisation/141969", | |
"Cassia Investments": "https://www.unpri.org/organisation/144523", | |
"First Private Investment Management KAG mbH": "https://www.unpri.org/organisation/145365", | |
"Bank Julius Baer & Co. Ltd.": "https://www.unpri.org/organisation/144600", | |
"Coller Capital": "https://www.unpri.org/organisation/143111", | |
"Sustainable Insight Capital Management": "https://www.unpri.org/organisation/144482", | |
"ACG Capital": "https://www.unpri.org/organisation/144852", | |
"MU Investments Co. Ltd.": "https://www.unpri.org/organisation/144563", | |
"Westfield Capital Management": "https://www.unpri.org/organisation/144581", | |
"Northern Horizon Capital A/S": "https://www.unpri.org/organisation/144616", | |
"EDM": "https://www.unpri.org/organisation/144561", | |
"Mazi Capital": "https://www.unpri.org/organisation/144614", | |
"Pacific Agri Capital": "https://www.unpri.org/organisation/144610", | |
"Arabesque Asset Management Ltd": "https://www.unpri.org/organisation/144498", | |
"Mackenzie Investments": "https://www.unpri.org/organisation/144606", | |
"Greenland Financial Holdings Group": "https://www.unpri.org/organisation/145280", | |
"J-STAR Co., Ltd.": "https://www.unpri.org/organisation/145549", | |
"UFG Asset Management": "https://www.unpri.org/organisation/145385", | |
"Blue Harvest SA": "https://www.unpri.org/organisation/145409", | |
"GLG Partners LP": "https://www.unpri.org/organisation/145340", | |
"SEDCO Capital": "https://www.unpri.org/organisation/145382", | |
"Visio Capital Management": "https://www.unpri.org/organisation/145389", | |
"Varainhallinta Tresor Oy": "https://www.unpri.org/organisation/145449", | |
"IBS Capital Management B.V.": "https://www.unpri.org/organisation/145470", | |
"Tikehau Investment Management": "https://www.unpri.org/organisation/145303", | |
"Veritas Investment GmbH": "https://www.unpri.org/organisation/142817", | |
"Oak Hill Capital Partners": "https://www.unpri.org/organisation/143236", | |
"European Capital Debt Management Limited": "https://www.unpri.org/organisation/145305", | |
"FAME Investments AG": "https://www.unpri.org/organisation/145443", | |
"HC Asset Management Co., Ltd": "https://www.unpri.org/organisation/144722", | |
"Magnum Capital Industrial Partners": "https://www.unpri.org/organisation/145399", | |
"Logan Circle Partners, L.P.": "https://www.unpri.org/organisation/145380", | |
"CM-CIC Private Debt": "https://www.unpri.org/organisation/144577", | |
"Numeric Investors LLC": "https://www.unpri.org/organisation/145299", | |
"Markham Rae": "https://www.unpri.org/organisation/145323", | |
"Blue Sky Alternative Investments Limited": "https://www.unpri.org/organisation/145481", | |
"Main Capital": "https://www.unpri.org/organisation/143134", | |
"Lion Capital": "https://www.unpri.org/organisation/143192", | |
"Caja Ingenieros Gesti\u00f3n SGIIC, SAU": "https://www.unpri.org/organisation/145336", | |
"Investors Group": "https://www.unpri.org/organisation/142746", | |
"Palatine Private Equity LLP": "https://www.unpri.org/organisation/145592", | |
"Kartesia Advisor LLP": "https://www.unpri.org/organisation/145427", | |
"Fisher Investments": "https://www.unpri.org/organisation/142857", | |
"TH Real Estate": "https://www.unpri.org/organisation/145411", | |
"Pyrford International": "https://www.unpri.org/organisation/145391", | |
"Brown Advisory": "https://www.unpri.org/organisation/145405", | |
"LSV Asset Management": "https://www.unpri.org/organisation/145447", | |
"Altor Funds": "https://www.unpri.org/organisation/144336", | |
"Winton Capital Management": "https://www.unpri.org/organisation/142487", | |
"LFPI Gestion": "https://www.unpri.org/organisation/144453", | |
"Siparex": "https://www.unpri.org/organisation/142565", | |
"Private Advisors, LLC": "https://www.unpri.org/organisation/142652", | |
"Palisade Investment Partners Limited": "https://www.unpri.org/organisation/143145", | |
"Gramercy Funds Management": "https://www.unpri.org/organisation/144490", | |
"Prosperity Capital Management": "https://www.unpri.org/organisation/142440", | |
"Bancolombia": "https://www.unpri.org/organisation/143743", | |
"Cube Infrastructure Managers": "https://www.unpri.org/organisation/144724", | |
"Kreaxi": "https://www.unpri.org/organisation/143190", | |
"Mid Europa Partners LLP": "https://www.unpri.org/organisation/145479", | |
"Trilantic Capital Partners Europe": "https://www.unpri.org/organisation/143238", | |
"Olympus Capital Asia": "https://www.unpri.org/organisation/144916", | |
"Osmosis Investment Management": "https://www.unpri.org/organisation/143029", | |
"SYZ Asset Management (Europe) Limited": "https://www.unpri.org/organisation/142556", | |
"SYZ Asset Management (Switzerland) SA": "https://www.unpri.org/organisation/143574", | |
"Newbury Partners": "https://www.unpri.org/organisation/143188", | |
"EBG Investment Solutions AG": "https://www.unpri.org/organisation/144716", | |
"Bell Asset Management": "https://www.unpri.org/organisation/145082", | |
"Kerogen Capital": "https://www.unpri.org/organisation/145038", | |
"AQR Capital Management": "https://www.unpri.org/organisation/142821", | |
"Litorina": "https://www.unpri.org/organisation/142451", | |
"CONINCO Explorers in finance SA": "https://www.unpri.org/organisation/142683", | |
"Didner & Gerge Fonder AB": "https://www.unpri.org/organisation/142559", | |
"Ekkio Capital": "https://www.unpri.org/organisation/142569", | |
"Espiga Capital": "https://www.unpri.org/organisation/142650", | |
"Aeon Investment Management (Pty) Ltd": "https://www.unpri.org/organisation/142777", | |
"Lexington Partners L.P.": "https://www.unpri.org/organisation/142587", | |
"Christian Brothers Investment Services, Inc.": "https://www.unpri.org/organisation/144169", | |
"Axcel": "https://www.unpri.org/organisation/142661", | |
"Miura Private Equity": "https://www.unpri.org/organisation/142629", | |
"Credit Suisse AG": "https://www.unpri.org/organisation/143684", | |
"Barings LLC f/k/a Babson Capital Management LLC": "https://www.unpri.org/organisation/142571", | |
"Cohen & Steers": "https://www.unpri.org/organisation/142678", | |
"Leith Wheeler Investment Counsel Ltd.": "https://www.unpri.org/organisation/143107", | |
"Silver Creek Capital Management": "https://www.unpri.org/organisation/144671", | |
"Resource Capital Funds": "https://www.unpri.org/organisation/142110", | |
"Dalmore Capital": "https://www.unpri.org/organisation/144720", | |
"Charterhouse Capital Partners LLP": "https://www.unpri.org/organisation/144643", | |
"Aurum Fund Management Ltd.": "https://www.unpri.org/organisation/144471", | |
"HarbourVest Partners, LLC": "https://www.unpri.org/organisation/145961", | |
"Raiffeisen Capital Management": "https://www.unpri.org/organisation/144667", | |
"DTZ Investors": "https://www.unpri.org/organisation/143153", | |
"Lacan Investimentos": "https://www.unpri.org/organisation/144649", | |
"Indigo Capital France": "https://www.unpri.org/organisation/141932", | |
"Golding Capital Partners": "https://www.unpri.org/organisation/144679", | |
"Morgan Stanley Investment Management": "https://www.unpri.org/organisation/144465", | |
"Knight Frank Investment Management LLP": "https://www.unpri.org/organisation/144683", | |
"Waterton Global Resource Management, Inc.": "https://www.unpri.org/organisation/143039", | |
"Arrowgrass Capital Partners LLP": "https://www.unpri.org/organisation/142734", | |
"Mirova": "https://www.unpri.org/organisation/143048", | |
"Alter Equity": "https://www.unpri.org/organisation/143016", | |
"Water Asset Management LLC": "https://www.unpri.org/organisation/143151", | |
"Egeria": "https://www.unpri.org/organisation/143993", | |
"Cording Real Estate Group Limited": "https://www.unpri.org/organisation/143054", | |
"Asahi Life Asset Management Co., Ltd.": "https://www.unpri.org/organisation/144457", | |
"Lannebo Fonder": "https://www.unpri.org/organisation/145807", | |
"Empirical Asset Management, LLC": "https://www.unpri.org/organisation/143991", | |
"Suma Capital SGECR": "https://www.unpri.org/organisation/143119", | |
"Munich Venture Partners": "https://www.unpri.org/organisation/144486", | |
"Frontier Investment Management": "https://www.unpri.org/organisation/145909", | |
"Avanz Capital": "https://www.unpri.org/organisation/143031", | |
"Optimix Vermogensbeheer NV": "https://www.unpri.org/organisation/143035", | |
"BPE": "https://www.unpri.org/organisation/143014", | |
"Mariner Investment Group, LLC.": "https://www.unpri.org/organisation/145914", | |
"Keyhaven Capital Partners Limited": "https://www.unpri.org/organisation/143037", | |
"Mitsubishi Corp. \u2013 UBS Realty Inc.": "https://www.unpri.org/organisation/143012", | |
"Amethis Luxembourg S.\u00e0.r.l": "https://www.unpri.org/organisation/145825", | |
"Mellon Capital Management Corporation": "https://www.unpri.org/organisation/143022", | |
"St Bride's Managers LLP": "https://www.unpri.org/organisation/143018", | |
"AAC Capital Benelux": "https://www.unpri.org/organisation/144310", | |
"South Suez Capital Ltd": "https://www.unpri.org/organisation/144067", | |
"Syntaxis Capital": "https://www.unpri.org/organisation/144446", | |
"Karara Capital": "https://www.unpri.org/organisation/144451", | |
"Advanced Capital": "https://www.unpri.org/organisation/143564", | |
"ABS Investment Management LLC": "https://www.unpri.org/organisation/143483", | |
"BlueBay Asset Management LLP": "https://www.unpri.org/organisation/142028", | |
"Invesco Ltd": "https://www.unpri.org/organisation/142304", | |
"Segulah Advisor AB": "https://www.unpri.org/organisation/145989", | |
"Nomura Corporate Research and Asset Management Inc.": "https://www.unpri.org/organisation/143491", | |
"Foresight Group LLP": "https://www.unpri.org/organisation/144427", | |
"Saturna Capital": "https://www.unpri.org/organisation/145933", | |
"Glennmont Partners": "https://www.unpri.org/organisation/142485", | |
"Evolem": "https://www.unpri.org/organisation/141936", | |
"Karmijn Kapitaal": "https://www.unpri.org/organisation/142529", | |
"TPG Capital Advisors, LLC": "https://www.unpri.org/organisation/141953", | |
"Clarion Partners, LLC": "https://www.unpri.org/organisation/142832", | |
"Vantage Capital Fund Managers (Pty) Ltd": "https://www.unpri.org/organisation/145523", | |
"Copa Investimentos": "https://www.unpri.org/organisation/143299", | |
"Investisseurs & Partenaires": "https://www.unpri.org/organisation/143303", | |
"Ashmore Group plc": "https://www.unpri.org/organisation/145757", | |
"Caixa Econ\u00f4mica Federal - Viter": "https://www.unpri.org/organisation/143308", | |
"Income Research & Management": "https://www.unpri.org/organisation/143301", | |
"Analytic Investors, LLC": "https://www.unpri.org/organisation/145983", | |
"Basalt Infrastructure": "https://www.unpri.org/organisation/142034", | |
"Bantleon Bank AG": "https://www.unpri.org/organisation/145972", | |
"Franklin Templeton Investments": "https://www.unpri.org/organisation/143058", | |
"Intermediate Capital Group plc": "https://www.unpri.org/organisation/142493", | |
"IDF Capital": "https://www.unpri.org/organisation/141916", | |
"Explora S.A.": "https://www.unpri.org/organisation/141985", | |
"Halder Beteiligungsberatung GmbH": "https://www.unpri.org/organisation/145950", | |
"Banque Bonh\u00f4te & Cie SA": "https://www.unpri.org/organisation/142142", | |
"Montefiore Investment": "https://www.unpri.org/organisation/145975", | |
"Allan Gray Group Proprietary Limited": "https://www.unpri.org/organisation/145967", | |
"EFA Group": "https://www.unpri.org/organisation/142172", | |
"Tokio Marine Capital Co., Ltd.": "https://www.unpri.org/organisation/145798", | |
"MBO Partenaires": "https://www.unpri.org/organisation/142113", | |
"Unigestion": "https://www.unpri.org/organisation/142119", | |
"EdenTree Investment Management Ltd": "https://www.unpri.org/organisation/145928", | |
"Carve Capital AB": "https://www.unpri.org/organisation/145942", | |
"Asset Management One Co.,Ltd.": "https://www.unpri.org/organisation/142007", | |
"MBK Partners": "https://www.unpri.org/organisation/142094", | |
"Siguler Guff & Company, LP": "https://www.unpri.org/organisation/145842", | |
"Hotchkis and Wiley Capital Management, LLC": "https://www.unpri.org/organisation/145991", | |
"Committed Advisors": "https://www.unpri.org/organisation/145995", | |
"Akina Limited": "https://www.unpri.org/organisation/141956", | |
"Cliens Kapitalf\u00f6rvaltning AB": "https://www.unpri.org/organisation/145836", | |
"FINANCE-SA": "https://www.unpri.org/organisation/142102", | |
"StepStone Group LP": "https://www.unpri.org/organisation/142126", | |
"Bridgepoint": "https://www.unpri.org/organisation/142184", | |
"Commonfund": "https://www.unpri.org/organisation/145784", | |
"PRO BTP Finance": "https://www.unpri.org/organisation/145850", | |
"EIG Global Energy Partners": "https://www.unpri.org/organisation/141944", | |
"Redpoint Investment Management": "https://www.unpri.org/organisation/145828", | |
"Bouwfonds Investment Management": "https://www.unpri.org/organisation/145860", | |
"SOFIDY": "https://www.unpri.org/organisation/145948", | |
"Alm. Brand Bank Asset Management": "https://www.unpri.org/organisation/145955", | |
"Leapfrog Investments": "https://www.unpri.org/organisation/145998", | |
"1875 Finance SA": "https://www.unpri.org/organisation/142199", | |
"Dragon Capital Group Limited": "https://www.unpri.org/organisation/142456", | |
"Demeter Partners": "https://www.unpri.org/organisation/142537", | |
"Conservative Concept Portfolio Management AG": "https://www.unpri.org/organisation/142543", | |
"Imara Holdings Limited": "https://www.unpri.org/organisation/142545", | |
"Landsbankinn hf.": "https://www.unpri.org/organisation/141897", | |
"Payden & Rygel": "https://www.unpri.org/organisation/142003", | |
"M&G Investments": "https://www.unpri.org/organisation/142222", | |
"CapMan Plc": "https://www.unpri.org/organisation/142356", | |
"Redwood Investments, LLC": "https://www.unpri.org/organisation/145848", | |
"JD Capital": "https://www.unpri.org/organisation/145815", | |
"Nord Capital Partenaires": "https://www.unpri.org/organisation/141912", | |
"Seligson & Co Plc": "https://www.unpri.org/organisation/145788", | |
"Capital Croissance": "https://www.unpri.org/organisation/141903", | |
"IDI EMERGING MARKETS": "https://www.unpri.org/organisation/141914", | |
"Standish Mellon Asset Management": "https://www.unpri.org/organisation/145936", | |
"Angra Infraestrutura Gest\u00e3o de Informa\u00e7\u00f5es e Investimentos Ltda.": "https://www.unpri.org/organisation/142069", | |
"Wealthcheck Funds Management": "https://www.unpri.org/organisation/145809", | |
"Mianzo Asset Management": "https://www.unpri.org/organisation/145946", | |
"Permal Group Limited": "https://www.unpri.org/organisation/142514", | |
"1919 Investment Counsel": "https://www.unpri.org/organisation/145891", | |
"INTECH Investment Management LLC": "https://www.unpri.org/organisation/141938", | |
"Ambienta SGR SpA": "https://www.unpri.org/organisation/142362", | |
"Addenda Capital Inc.": "https://www.unpri.org/organisation/142461", | |
"Alken Asset Management LTD": "https://www.unpri.org/organisation/142561", | |
"BanSabadell Pensiones E.G.F.P., S.A.": "https://www.unpri.org/organisation/142065", | |
"Alder Fund I AB": "https://www.unpri.org/organisation/142300", | |
"Global Alpha Capital Management": "https://www.unpri.org/organisation/145792", | |
"Fidelity International": "https://www.unpri.org/organisation/142076", | |
"G Square": "https://www.unpri.org/organisation/142134", | |
"Sal.Oppenheim jr. & Cie. AG & Co. KGaA": "https://www.unpri.org/organisation/145952", | |
"Dundas Partners LLP": "https://www.unpri.org/organisation/141918", | |
"Ubique Asset Management Pty Ltd": "https://www.unpri.org/organisation/142096", | |
"Appian Holdings": "https://www.unpri.org/organisation/145889", | |
"Ciloger": "https://www.unpri.org/organisation/145898", | |
"NextStage": "https://www.unpri.org/organisation/145919", | |
"Eyb & Wallwitz Verm\u00f6gensmanagement GmbH": "https://www.unpri.org/organisation/141926", | |
"TY Danjuma Family Office Limited": "https://www.unpri.org/organisation/142257", | |
"Erste Asset Management GmbH": "https://www.unpri.org/organisation/145884", | |
"Deka Investment GmbH": "https://www.unpri.org/organisation/142090", | |
"East Capital": "https://www.unpri.org/organisation/142883", | |
"Hexavest": "https://www.unpri.org/organisation/143062", | |
"TG Fund Management B.V.": "https://www.unpri.org/organisation/145794", | |
"CM-CIC Asset Management": "https://www.unpri.org/organisation/141899", | |
"BNP Paribas Real Estate Investment Management FRANCE": "https://www.unpri.org/organisation/141922", | |
"Claritas Administra\u00e7\u00e3o de Recursos LTDA": "https://www.unpri.org/organisation/142037", | |
"Pacific Equity Partners": "https://www.unpri.org/organisation/142045", | |
"SKAGEN AS": "https://www.unpri.org/organisation/142106", | |
"Five Arrows Managers": "https://www.unpri.org/organisation/142201", | |
"CVC Capital Partners": "https://www.unpri.org/organisation/145768", | |
"FSN Capital Partners": "https://www.unpri.org/organisation/145985", | |
"Daiwa SB Investments": "https://www.unpri.org/organisation/141934", | |
"NorthEdge Capital LLP": "https://www.unpri.org/organisation/142527", | |
"Dimensional Fund Advisors": "https://www.unpri.org/organisation/141979", | |
"Pencarrow Private Equity Management Limited": "https://www.unpri.org/organisation/145872", | |
"Keensight Capital": "https://www.unpri.org/organisation/142447", | |
"Salm-Salm & Partner GmbH": "https://www.unpri.org/organisation/142449", | |
"Rockspring Property Investment Managers LLP": "https://www.unpri.org/organisation/142350", | |
"Turenne Capital Partenaires": "https://www.unpri.org/organisation/142621", | |
"Quadriga Capital": "https://www.unpri.org/organisation/142625", | |
"Trilogy Global Advisors, LP": "https://www.unpri.org/organisation/142810", | |
"HgCapital LLP": "https://www.unpri.org/organisation/142813", | |
"GCM Grosvenor": "https://www.unpri.org/organisation/142864", | |
"ODIN Forvaltning AS (ODIN Fund Management)": "https://www.unpri.org/organisation/142216", | |
"Neuberger Berman Group LLC": "https://www.unpri.org/organisation/144163", | |
"Stone Harbor Investment Partners LP": "https://www.unpri.org/organisation/142273", | |
"Rockefeller Asset Management": "https://www.unpri.org/organisation/142636", | |
"Carmignac Gestion": "https://www.unpri.org/organisation/141951", | |
"Edmond de Rothschild Investment Partners": "https://www.unpri.org/organisation/142281", | |
"Truestone Impact Investment Management": "https://www.unpri.org/organisation/142277", | |
"Breckinridge Capital Advisors": "https://www.unpri.org/organisation/141989", | |
"WHEB Asset Management": "https://www.unpri.org/organisation/142073", | |
"TriLinc Global, LLC": "https://www.unpri.org/organisation/142236", | |
"Triton Investment Management Limited (TIML)": "https://www.unpri.org/organisation/142267", | |
"Dodge & Cox": "https://www.unpri.org/organisation/141880", | |
"Harith General Partners": "https://www.unpri.org/organisation/141930", | |
"Treetops Capital LP": "https://www.unpri.org/organisation/142337", | |
"Brandon Capital Partners Pty Ltd": "https://www.unpri.org/organisation/142333", | |
"Mandarine Gestion": "https://www.unpri.org/organisation/142804", | |
"Lunar Capital Management": "https://www.unpri.org/organisation/141920", | |
"Orion Capital Managers LLP": "https://www.unpri.org/organisation/142228", | |
"Progression Capital Africa Limited": "https://www.unpri.org/organisation/142279", | |
"State Street Global Advisors (SSgA)": "https://www.unpri.org/organisation/143702", | |
"SUSI Partners AG": "https://www.unpri.org/organisation/142210", | |
"VERIANOS AG": "https://www.unpri.org/organisation/141878", | |
"Conservation Forestry Partners, LLC": "https://www.unpri.org/organisation/142140", | |
"Red Mountain Capital Partners, LLC": "https://www.unpri.org/organisation/142265", | |
"Wellington Management Company LLP": "https://www.unpri.org/organisation/142270", | |
"Deutsche Zurich Pensiones, E.G.F.P., S.A.": "https://www.unpri.org/organisation/142275", | |
"Southern Pastures Management Limited": "https://www.unpri.org/organisation/142292", | |
"Metzler Asset Management GmbH": "https://www.unpri.org/organisation/142296", | |
"Conning": "https://www.unpri.org/organisation/142335", | |
"iCON Infrastructure LLP": "https://www.unpri.org/organisation/142465", | |
"MicroVest Capital Managment LLC": "https://www.unpri.org/organisation/141928", | |
"A Plus Finance SAS": "https://www.unpri.org/organisation/141958", | |
"ARCH Capital Management Co. Ltd.": "https://www.unpri.org/organisation/142203", | |
"Corpfin Capital Asesores, S.A., S.G.E.C.R.": "https://www.unpri.org/organisation/142230", | |
"Oikocredit International": "https://www.unpri.org/organisation/142039", | |
"Goodwell Investments": "https://www.unpri.org/organisation/142207", | |
"Cordaid": "https://www.unpri.org/organisation/142535", | |
"Incofin": "https://www.unpri.org/organisation/142631", | |
"Triple Jump": "https://www.unpri.org/organisation/142748", | |
"Latour Capital Management": "https://www.unpri.org/organisation/142214", | |
"UFF - African Agri Investments": "https://www.unpri.org/organisation/142220", | |
"T&D Asset Management Co., Ltd.": "https://www.unpri.org/organisation/142255", | |
"Vinci Partners Investimentos Ltda.": "https://www.unpri.org/organisation/147576", | |
"Votorantim Asset Management DTVM Ltda.": "https://www.unpri.org/organisation/142467", | |
"OREIMA": "https://www.unpri.org/organisation/142834", | |
"Craigmore Sustainables LLP": "https://www.unpri.org/organisation/142646", | |
"Magellan Asset Management": "https://www.unpri.org/organisation/142708", | |
"United Bankers Ltd": "https://www.unpri.org/organisation/142717", | |
"ABN AMRO Bank N.V.": "https://www.unpri.org/organisation/142737", | |
"Accent Equity Partners AB": "https://www.unpri.org/organisation/142725", | |
"Union Bancaire Priv\u00e9e, UBP SA": "https://www.unpri.org/organisation/142519", | |
"Portobello Capital": "https://www.unpri.org/organisation/142757", | |
"Quoniam Asset Management GmbH": "https://www.unpri.org/organisation/142850", | |
"Berkeley Partners LLP": "https://www.unpri.org/organisation/142750", | |
"Luxcara Advisory GmbH": "https://www.unpri.org/organisation/142779", | |
"CapVest Partners LLP": "https://www.unpri.org/organisation/142836", | |
"HealthInvest Partners AB": "https://www.unpri.org/organisation/142773", | |
"Sarasin & Partners LLP": "https://www.unpri.org/organisation/142244", | |
"Pampa Capital Management LLP": "https://www.unpri.org/organisation/142339", | |
"Qube Investment Management Inc.": "https://www.unpri.org/organisation/142342", | |
"Janus Capital Management LLC": "https://www.unpri.org/organisation/144708", | |
"Truffle Capital": "https://www.unpri.org/organisation/142445", | |
"Highclere International Investors LLP": "https://www.unpri.org/organisation/142454", | |
"Optimum Asset Management Inc": "https://www.unpri.org/organisation/142491", | |
"Core Capital Management, LLC": "https://www.unpri.org/organisation/142604", | |
"Azulis Capital": "https://www.unpri.org/organisation/142614", | |
"Sompo Japan Nipponkoa Asset Management Co., Ltd": "https://www.unpri.org/organisation/142672", | |
"Astorg Partners": "https://www.unpri.org/organisation/142591", | |
"Providence Capital N.V.": "https://www.unpri.org/organisation/142664", | |
"GW&K Investment Management, LLC": "https://www.unpri.org/organisation/142554", | |
"Weinberg Capital Partners": "https://www.unpri.org/organisation/142593", | |
"C WorldWide Asset Management": "https://www.unpri.org/organisation/142610", | |
"Dansk Vaekstkapital": "https://www.unpri.org/organisation/142668", | |
"Ibercaja Pensi\u00f3n E.G.F.P., S.A.": "https://www.unpri.org/organisation/144372", | |
"Goldman Sachs Asset Management (GSAM)": "https://www.unpri.org/organisation/142685", | |
"PanAgora Asset Management": "https://www.unpri.org/organisation/142648", | |
"Cap Decisif Management": "https://www.unpri.org/organisation/142693", | |
"Eurazeo": "https://www.unpri.org/organisation/142767", | |
"Plato Investment Management": "https://www.unpri.org/organisation/145653", | |
"Falcon Investment Advisors, LLC": "https://www.unpri.org/organisation/145811", | |
"Apax Partners MidMarket SAS": "https://www.unpri.org/organisation/145803", | |
"Continuity Capital Partners Pty Limited": "https://www.unpri.org/organisation/145817", | |
"Alpha Private Equity Fund 6 Management Company SARL": "https://www.unpri.org/organisation/145819", | |
"BayernInvest Kapitalverwaltungsgesellschaft mbH": "https://www.unpri.org/organisation/142026", | |
"Terra Firma Capital Partners": "https://www.unpri.org/organisation/141883", | |
"Priveq Advisory AB": "https://www.unpri.org/organisation/142197", | |
"AB": "https://www.unpri.org/organisation/142023", | |
"Riviera Gestora de Recursos Ltda": "https://www.unpri.org/organisation/141901", | |
"Creation Investments Capital Management, LLC": "https://www.unpri.org/organisation/145846", | |
"Growth Capital Partners LLP": "https://www.unpri.org/organisation/141905", | |
"BRZ Investimentos Ltda": "https://www.unpri.org/organisation/141963", | |
"IVM Caring Capital": "https://www.unpri.org/organisation/141965", | |
"Raymond James Asset Management International": "https://www.unpri.org/organisation/145821", | |
"HQ Capital International L.P.": "https://www.unpri.org/organisation/145865", | |
"Aquila Capital Green Assets GmbH": "https://www.unpri.org/organisation/142132", | |
"NewQuest Capital Partners": "https://www.unpri.org/organisation/142285", | |
"GMO Renewable Resources LLC": "https://www.unpri.org/organisation/142840", | |
"Intrinsic Investment Management Pty Ltd": "https://www.unpri.org/organisation/145775", | |
"CRP Companhia de Participa\u00e7\u00f5es": "https://www.unpri.org/organisation/142104", | |
"Str\u00f8mme Microfinance AS": "https://www.unpri.org/organisation/141991", | |
"PIMCO": "https://www.unpri.org/organisation/142179", | |
"Phoenix Portfolios Pty Ltd": "https://www.unpri.org/organisation/142781", | |
"Dasos Capital Oy": "https://www.unpri.org/organisation/145800", | |
"LBO France": "https://www.unpri.org/organisation/141999", | |
"Obviam AG": "https://www.unpri.org/organisation/142084", | |
"FAMA Investimentos": "https://www.unpri.org/organisation/142108", | |
"Global Evolution": "https://www.unpri.org/organisation/142855", | |
"Degroof Petercam Asset Management (DPAM)": "https://www.unpri.org/organisation/142702", | |
"Capzanine": "https://www.unpri.org/organisation/142869", | |
"Garanti Asset Management": "https://www.unpri.org/organisation/143180", | |
"Taurus Funds Management Pty Limited": "https://www.unpri.org/organisation/142325", | |
"Fermat Capital Management, LLC": "https://www.unpri.org/organisation/142623", | |
"Temporis Capital LLP": "https://www.unpri.org/organisation/142283", | |
"3i Group plc": "https://www.unpri.org/organisation/142471", | |
"Absa Capital Alternative Asset Management (Pty) Ltd": "https://www.unpri.org/organisation/142483", | |
"C-QUADRAT Asset Management GmbH": "https://www.unpri.org/organisation/142521", | |
"NiXEN Partners": "https://www.unpri.org/organisation/142523", | |
"Permira Holdings Limited": "https://www.unpri.org/organisation/144636", | |
"GLS Gemeinschaftsbank eG": "https://www.unpri.org/organisation/142608", | |
"Performa Investimentos Ltda.": "https://www.unpri.org/organisation/142563", | |
"Silk Invest Ltd.": "https://www.unpri.org/organisation/142676", | |
"Afena Capital (Pty) Limited": "https://www.unpri.org/organisation/142699", | |
"InfraRed Capital Partners Limited": "https://www.unpri.org/organisation/142640", | |
"MCH PRIVATE EQUITY INVESTMENTS, SGECR, SAU": "https://www.unpri.org/organisation/142721", | |
"J O Hambro Capital Management Group": "https://www.unpri.org/organisation/142853", | |
"COMANCO": "https://www.unpri.org/organisation/145632", | |
"Palero Capital GmbH": "https://www.unpri.org/organisation/142740", | |
"Sigma Funds Management Pty Ltd": "https://www.unpri.org/organisation/142771", | |
"Baird Capital Partners Europe Limited (BCPE)": "https://www.unpri.org/organisation/142755", | |
"Oddo Meriten Asset Management GmbH": "https://www.unpri.org/organisation/142761", | |
"William Blair & Company, LLC": "https://www.unpri.org/organisation/144689", | |
"NewWorld Capital Group, LLC": "https://www.unpri.org/organisation/142136", | |
"DIF Management Holding B.V.": "https://www.unpri.org/organisation/142151", | |
"Global Environment Fund": "https://www.unpri.org/organisation/142261", | |
"Montrusco Bolton Investments Inc. (MBII)": "https://www.unpri.org/organisation/143076", | |
"AS Avaron Asset Management": "https://www.unpri.org/organisation/141983", | |
"Syntrus Achmea Real Estate & Finance B.V.": "https://www.unpri.org/organisation/142043", | |
"Alden Impact Capital": "https://www.unpri.org/organisation/142176", | |
"APAX PARTNERS LLP": "https://www.unpri.org/organisation/145832", | |
"Birch Hill Equity Partners Management Inc.": "https://www.unpri.org/organisation/145777", | |
"Putnam Investments, LLC": "https://www.unpri.org/organisation/145782", | |
"Idinvest Partners": "https://www.unpri.org/organisation/145796", | |
"Kaet\u00e9 Investimentos Ltda": "https://www.unpri.org/organisation/142144", | |
"Argon Asset Management (Proprietary) Limited": "https://www.unpri.org/organisation/142149", | |
"PM Capital": "https://www.unpri.org/organisation/142157", | |
"Juno Investment Partners": "https://www.unpri.org/organisation/142232", | |
"Active Earth Investment Management SA": "https://www.unpri.org/organisation/142250", | |
"Mandatum Life Insurance Company Limited, Wealth and Investment Management": "https://www.unpri.org/organisation/142290", | |
"Tokio Marine Asset Management Co., Ltd. Japan": "https://www.unpri.org/organisation/142259", | |
"Elite Asset Management Ltd": "https://www.unpri.org/organisation/142234", | |
"Long Wharf Capital, LLC.": "https://www.unpri.org/organisation/142226", | |
"Nomura Asset Management Co., Ltd.": "https://www.unpri.org/organisation/144885", | |
"Coppin Collings Ltd": "https://www.unpri.org/organisation/142248", | |
"NovaPort Capital Pty Ltd": "https://www.unpri.org/organisation/142368", | |
"Silverfleet Capital Partners LLP": "https://www.unpri.org/organisation/143293", | |
"CB Asset Management AB": "https://www.unpri.org/organisation/143318", | |
"Cerea Partenaire": "https://www.unpri.org/organisation/145153", | |
"Allegro Funds Pty Ltd": "https://www.unpri.org/organisation/144813", | |
"N+1 Private Equity": "https://www.unpri.org/organisation/144792", | |
"Rothschild & Cie Gestion Group": "https://www.unpri.org/organisation/144873", | |
"North Sky Capital": "https://www.unpri.org/organisation/145128", | |
"AEGON Asset Management": "https://www.unpri.org/organisation/144797", | |
"Merlon Capital Partners": "https://www.unpri.org/organisation/144747", | |
"Alphinity Investment Management Limited": "https://www.unpri.org/organisation/145124", | |
"Mirvac Group": "https://www.unpri.org/organisation/145586", | |
"Meridiam SAS": "https://www.unpri.org/organisation/145126", | |
"KBI Global Investors": "https://www.unpri.org/organisation/145179", | |
"Abenex Capital": "https://www.unpri.org/organisation/145177", | |
"EQT": "https://www.unpri.org/organisation/145208", | |
"Jyske Bank A/S": "https://www.unpri.org/organisation/145122", | |
"Jyske Invest": "https://www.unpri.org/organisation/145157", | |
"Aktia Bank p.l.c.": "https://www.unpri.org/organisation/145173", | |
"Muzinich & Co": "https://www.unpri.org/organisation/144317", | |
"eQ Asset Management Ltd": "https://www.unpri.org/organisation/145155", | |
"XPV Capital Corporation": "https://www.unpri.org/organisation/145141", | |
"Fortius Fund Management": "https://www.unpri.org/organisation/145143", | |
"Principal Global Investors": "https://www.unpri.org/organisation/145175", | |
"Hermes GPE": "https://www.unpri.org/organisation/144811", | |
"Oddo Meriten AM S.A": "https://www.unpri.org/organisation/144790", | |
"Equitix": "https://www.unpri.org/organisation/144805", | |
"Orchid Asia Hong Kong Management Company Limited": "https://www.unpri.org/organisation/144807", | |
"Culross Global Management": "https://www.unpri.org/organisation/144989", | |
"Rock Creek Group": "https://www.unpri.org/organisation/145130", | |
"Taaleritehdas": "https://www.unpri.org/organisation/145005", | |
"BB DTVM": "https://www.unpri.org/organisation/144965", | |
"Activa Capital": "https://www.unpri.org/organisation/144991", | |
"Adams Street Partners LLC": "https://www.unpri.org/organisation/144999", | |
"Ardea Investment Management": "https://www.unpri.org/organisation/144968", | |
"La Francaise AM": "https://www.unpri.org/organisation/144997", | |
"Union Investment": "https://www.unpri.org/organisation/143488", | |
"Iris Capital": "https://www.unpri.org/organisation/144970", | |
"ASN Bank": "https://www.unpri.org/organisation/143645", | |
"Alberta Investment Management Corporation": "https://www.unpri.org/organisation/144983", | |
"Santander Pensiones, Entidad Gestora de Fondos de Pensiones, S.A.": "https://www.unpri.org/organisation/144987", | |
"Bamboo Finance S.A.": "https://www.unpri.org/organisation/145060", | |
"NeoMed Management (Jersey) Limited": "https://www.unpri.org/organisation/145055", | |
"Symbiotics SA": "https://www.unpri.org/organisation/145050", | |
"Sydbank": "https://www.unpri.org/organisation/145063", | |
"Fondinvest Capital": "https://www.unpri.org/organisation/145078", | |
"Legal & General Investment Management (Holdings)": "https://www.unpri.org/organisation/144856", | |
"Adveq": "https://www.unpri.org/organisation/145071", | |
"Actera Group": "https://www.unpri.org/organisation/145663", | |
"The Oblate International Pastoral Investment Trust": "https://www.unpri.org/organisation/145183", | |
"Harbour Asset Management": "https://www.unpri.org/organisation/145187", | |
"AAG Investment Management Pty Ltd": "https://www.unpri.org/organisation/145651", | |
"Quotient Investors": "https://www.unpri.org/organisation/145608", | |
"Praesidian Capital": "https://www.unpri.org/organisation/142982", | |
"ISPT Super Property": "https://www.unpri.org/organisation/145185", | |
"Maj Invest": "https://www.unpri.org/organisation/145488", | |
"Resolution Capital Limited": "https://www.unpri.org/organisation/145504", | |
"INOKS Capital": "https://www.unpri.org/organisation/145499", | |
"Standard Life Investments": "https://www.unpri.org/organisation/145535", | |
"T. Rowe Price": "https://www.unpri.org/organisation/145519", | |
"Qualium Investissement": "https://www.unpri.org/organisation/145594", | |
"Clessidra SGR S.p.A.": "https://www.unpri.org/organisation/145626", | |
"Hunter Hall Investment Management Limited": "https://www.unpri.org/organisation/145525", | |
"Freeman Spogli & Co": "https://www.unpri.org/organisation/145202", | |
"Kinetic": "https://www.unpri.org/organisation/145495", | |
"Mirabaud": "https://www.unpri.org/organisation/145510", | |
"Sycomore Asset Management": "https://www.unpri.org/organisation/145628", | |
"Hastings Funds Management Limited": "https://www.unpri.org/organisation/145490", | |
"Finance in Motion GmbH": "https://www.unpri.org/organisation/145636", | |
"New Forests Pty Limited": "https://www.unpri.org/organisation/145226", | |
"Evli Bank Plc": "https://www.unpri.org/organisation/145497", | |
"Irish Life Investment Managers": "https://www.unpri.org/organisation/145530", | |
"Cantillon Capital Management": "https://www.unpri.org/organisation/145532", | |
"DEXUS Property Group": "https://www.unpri.org/organisation/142418", | |
"Fondita Fund Management Company Ltd": "https://www.unpri.org/organisation/145711", | |
"Bradesco Asset Management": "https://www.unpri.org/organisation/144714", | |
"RARE Infrastructure Limited": "https://www.unpri.org/organisation/144864", | |
"Bpifrance Investissement": "https://www.unpri.org/organisation/144411", | |
"PAI Partners": "https://www.unpri.org/organisation/145211", | |
"UI Gestion": "https://www.unpri.org/organisation/145236", | |
"EGAMO": "https://www.unpri.org/organisation/145232", | |
"Desjardins Investment Inc.": "https://www.unpri.org/organisation/144399", | |
"Sarona Asset Management": "https://www.unpri.org/organisation/145197", | |
"Sydinvest": "https://www.unpri.org/organisation/145584", | |
"Emerging Capital Partners": "https://www.unpri.org/organisation/145213", | |
"ValueInvest Asset Management S.A.": "https://www.unpri.org/organisation/144815", | |
"Momentum Asset Management": "https://www.unpri.org/organisation/145223", | |
"Edmond de Rothschild Asset Management (France) (EDRAM)": "https://www.unpri.org/organisation/145755", | |
"The Townsend Group": "https://www.unpri.org/organisation/142393", | |
"Longview Partners": "https://www.unpri.org/organisation/143265", | |
"Sumitomo Mitsui Asset Management (SMAM)": "https://www.unpri.org/organisation/145606", | |
"Alto Invest": "https://www.unpri.org/organisation/144315", | |
"HRL Morrison & Co Ltd": "https://www.unpri.org/organisation/145580", | |
"IPM Informed Portfolio Management AB": "https://www.unpri.org/organisation/144366", | |
"Comgest": "https://www.unpri.org/organisation/144330", | |
"\u00c5landsbanken": "https://www.unpri.org/organisation/145088", | |
"Capital Group International, Inc.": "https://www.unpri.org/organisation/143580", | |
"Alquity Investment Management Limited": "https://www.unpri.org/organisation/144313", | |
"TOBAM": "https://www.unpri.org/organisation/144488", | |
"Pragma Capital": "https://www.unpri.org/organisation/144474", | |
"Danske Bank": "https://www.unpri.org/organisation/143263", | |
"Citizen Capital": "https://www.unpri.org/organisation/143270", | |
"Atico Asset Management": "https://www.unpri.org/organisation/144459", | |
"MFS Investment Management": "https://www.unpri.org/organisation/143140", | |
"Stafford Capital Partners": "https://www.unpri.org/organisation/145569", | |
"LocalTapiola Real Estate Asset Management Ltd.": "https://www.unpri.org/organisation/143676", | |
"LocalTapiola Asset Management": "https://www.unpri.org/organisation/144444", | |
"Arisaig Partners (Asia) Pte Ltd": "https://www.unpri.org/organisation/145561", | |
"Charlemagne Capital (UK)": "https://www.unpri.org/organisation/145692", | |
"Roche-Brune Asset Management": "https://www.unpri.org/organisation/145696", | |
"Vontobel Holding AG": "https://www.unpri.org/organisation/145707", | |
"Partech Ventures": "https://www.unpri.org/organisation/145703", | |
"Omnes Capital": "https://www.unpri.org/organisation/145032", | |
"Rabo FARM": "https://www.unpri.org/organisation/145086", | |
"Sparinvest Group": "https://www.unpri.org/organisation/145698", | |
"Vancity Investment Management": "https://www.unpri.org/organisation/145709", | |
"Handelsbanken Asset Management": "https://www.unpri.org/organisation/144868", | |
"Ecofi Investissements": "https://www.unpri.org/organisation/144934", | |
"Earth Capital Partners LLP": "https://www.unpri.org/organisation/144136", | |
"OP Wealth Management (OP Asset Management Ltd, OP Fund Management Ltd and OP Property Management Ltd)": "https://www.unpri.org/organisation/145657", | |
"Z\u00fcrcher Kantonalbank": "https://www.unpri.org/organisation/145655", | |
"Delta Lloyd Asset Management": "https://www.unpri.org/organisation/145661", | |
"AEW Europe": "https://www.unpri.org/organisation/145674", | |
"Northern Trust Asset Management": "https://www.unpri.org/organisation/145682", | |
"Sustainable Capital Ltd": "https://www.unpri.org/organisation/142403", | |
"FIM Asset Management": "https://www.unpri.org/organisation/143485", | |
"Perpetual Investments": "https://www.unpri.org/organisation/143560", | |
"Antin Infrastructure Partners": "https://www.unpri.org/organisation/145555", | |
"Acadian Asset Management": "https://www.unpri.org/organisation/145109", | |
"Bridges Fund Management": "https://www.unpri.org/organisation/145120", | |
"Presima": "https://www.unpri.org/organisation/143570", | |
"First Reserve": "https://www.unpri.org/organisation/143423", | |
"VietNam Holding Limited": "https://www.unpri.org/organisation/145729", | |
"La Caisse d`\u00e9conomie solidaire Desjardins": "https://www.unpri.org/organisation/144844", | |
"PGIM Real Estate": "https://www.unpri.org/organisation/144425", | |
"CHAMP Private Equity": "https://www.unpri.org/organisation/145106", | |
"Investindustrial": "https://www.unpri.org/organisation/144963", | |
"APG Asset Management": "https://www.unpri.org/organisation/143045", | |
"Meeschaert Asset Management": "https://www.unpri.org/organisation/144476", | |
"SulAm\u00e9rica Investimentos DTVM S.A": "https://www.unpri.org/organisation/144324", | |
"Rathbone Brothers Plc": "https://www.unpri.org/organisation/144328", | |
"Cartica Capital": "https://www.unpri.org/organisation/144819", | |
"Catella Fondf\u00f6rvaltning AB": "https://www.unpri.org/organisation/143223", | |
"Panoramic Growth Equity": "https://www.unpri.org/organisation/144413", | |
"LaSalle Investment Management": "https://www.unpri.org/organisation/144420", | |
"AlpInvest Partners B.V.": "https://www.unpri.org/organisation/145736", | |
"Auriel Capital Limited": "https://www.unpri.org/organisation/145104", | |
"Russell Investments": "https://www.unpri.org/organisation/145101", | |
"IDFC": "https://www.unpri.org/organisation/144732", | |
"ATI Asset Management Pty Ltd": "https://www.unpri.org/organisation/144340", | |
"Martin Currie Investment Management": "https://www.unpri.org/organisation/142892", | |
"21 Partners": "https://www.unpri.org/organisation/145713", | |
"Fiera Capital Corporation": "https://www.unpri.org/organisation/145740", | |
"CBRE Global Investors": "https://www.unpri.org/organisation/145749", | |
"Developing World Markets": "https://www.unpri.org/organisation/145716", | |
"Arcano Group": "https://www.unpri.org/organisation/145718", | |
"DNR Capital": "https://www.unpri.org/organisation/145732", | |
"Swiss Life REIM": "https://www.unpri.org/organisation/145751", | |
"Direct Capital Limited": "https://www.unpri.org/organisation/143250", | |
"Public Investment Corporation (PIC)": "https://www.unpri.org/organisation/145030", | |
"Access Bank PLC": "https://www.unpri.org/organisation/143241", | |
"La Financi\u00e8re Responsable": "https://www.unpri.org/organisation/143248", | |
"Eurazeo PME": "https://www.unpri.org/organisation/143243", | |
"HPE Growth Capital": "https://www.unpri.org/organisation/143245", | |
"Ardian": "https://www.unpri.org/organisation/143254", | |
"Solaris Investment Management Limited": "https://www.unpri.org/organisation/143215", | |
"Kaiser Partner Privatbank AG": "https://www.unpri.org/organisation/145132", | |
"METROPOLE Gestion": "https://www.unpri.org/organisation/145137", | |
"The Abraaj Group": "https://www.unpri.org/organisation/145091", | |
"Montanaro": "https://www.unpri.org/organisation/145096", | |
"Westmount Pacific LLC": "https://www.unpri.org/organisation/143157", | |
"UBS Asset Management": "https://www.unpri.org/organisation/143663", | |
"AlphaFixe Capital Inc.": "https://www.unpri.org/organisation/144931", | |
"Etica SGR": "https://www.unpri.org/organisation/142429", | |
"BC Partners": "https://www.unpri.org/organisation/145026", | |
"Cinven": "https://www.unpri.org/organisation/145018", | |
"Pioneer Global Asset Management S.p.A": "https://www.unpri.org/organisation/144099", | |
"TIAA - CREF": "https://www.unpri.org/organisation/144124", | |
"Nykredit Realkredit Group": "https://www.unpri.org/organisation/143117", | |
"Actis": "https://www.unpri.org/organisation/144914", | |
"MN": "https://www.unpri.org/organisation/145016", | |
"Triodos Investment Management B.V.": "https://www.unpri.org/organisation/144905", | |
"Hyperion Asset Management Limited": "https://www.unpri.org/organisation/145028", | |
"Perennial Value Management Limited": "https://www.unpri.org/organisation/144925", | |
"Swedbank Robur": "https://www.unpri.org/organisation/143968", | |
"Kohlberg Kravis Roberts & Co. L.P.": "https://www.unpri.org/organisation/144883", | |
"Federal Finance": "https://www.unpri.org/organisation/144936", | |
"Greencape Capital": "https://www.unpri.org/organisation/144848", | |
"Blue Wolf Capital Partners": "https://www.unpri.org/organisation/145034", | |
"Sanlam Investment Management (SIM)": "https://www.unpri.org/organisation/144888", | |
"La Banque Postale Asset Management (LBPAM)": "https://www.unpri.org/organisation/144961", | |
"Satori Capital, L.L.C.": "https://www.unpri.org/organisation/144921", | |
"Nikko AM Australian Equities": "https://www.unpri.org/organisation/148192", | |
"ClearBridge Investments": "https://www.unpri.org/organisation/142422", | |
"New Amsterdam Partners": "https://www.unpri.org/organisation/143213", | |
"Capital Dynamics": "https://www.unpri.org/organisation/144403", | |
"Boston Common Asset Management": "https://www.unpri.org/organisation/144879", | |
"BlueOrchard Finance": "https://www.unpri.org/organisation/144049", | |
"The Sustainability Group of Loring, Wolcott & Coolidge": "https://www.unpri.org/organisation/143050", | |
"Investors Mutual Limited (IML)": "https://www.unpri.org/organisation/144944", | |
"Albright Capital Management": "https://www.unpri.org/organisation/142895", | |
"LGT Capital Partners": "https://www.unpri.org/organisation/144955", | |
"Access Capital Partners": "https://www.unpri.org/organisation/144946", | |
"Jupiter Asset Management": "https://www.unpri.org/organisation/143705", | |
"responsAbility Investments AG": "https://www.unpri.org/organisation/144949", | |
"BlackRock": "https://www.unpri.org/organisation/144890", | |
"Kempen Capital Management NV": "https://www.unpri.org/organisation/144881", | |
"Great Lakes Advisors": "https://www.unpri.org/organisation/143207", | |
"Santander Brasil Asset Management": "https://www.unpri.org/organisation/143186", | |
"Cordiant": "https://www.unpri.org/organisation/143184", | |
"NN Investment Partners": "https://www.unpri.org/organisation/144256", | |
"BaltCap": "https://www.unpri.org/organisation/143004", | |
"SPF Beheer": "https://www.unpri.org/organisation/143006", | |
"Northern Star": "https://www.unpri.org/organisation/142979", | |
"Impax Asset Management": "https://www.unpri.org/organisation/142986", | |
"Hamilton Lane": "https://www.unpri.org/organisation/142885", | |
"Kames Capital": "https://www.unpri.org/organisation/142879", | |
"Natixis Asset Management": "https://www.unpri.org/organisation/144734", | |
"TD Asset Management (TD Asset Management Inc.)": "https://www.unpri.org/organisation/142407", | |
"Ita\u00fa Asset Management": "https://www.unpri.org/organisation/144694", | |
"Partners Group": "https://www.unpri.org/organisation/142374", | |
"Capricorn Investment Group, LLC": "https://www.unpri.org/organisation/144827", | |
"Charter Hall Group": "https://www.unpri.org/organisation/144741", | |
"Royal London Asset Management": "https://www.unpri.org/organisation/144728", | |
"Skandinaviska Enskilda Banken (SEB) AB": "https://www.unpri.org/organisation/142372", | |
"Cadiz Holdings": "https://www.unpri.org/organisation/142420", | |
"Investment Solutions": "https://www.unpri.org/organisation/142431", | |
"IFM Investors": "https://www.unpri.org/organisation/142412", | |
"Corston-Smith Asset Management": "https://www.unpri.org/organisation/143041", | |
"ICE Canyon LLC": "https://www.unpri.org/organisation/142438", | |
"Celeste Funds Management Limited": "https://www.unpri.org/organisation/142410", | |
"Devon Funds Management": "https://www.unpri.org/organisation/144712", | |
"Parnassus Investments": "https://www.unpri.org/organisation/142401", | |
"Financi\u00e8re de l'Echiquier": "https://www.unpri.org/organisation/144691", | |
"ADM Capital": "https://www.unpri.org/organisation/144326", | |
"de Pury Pictet Turrettini & Cie": "https://www.unpri.org/organisation/144737", | |
"Maple-Brown Abbott Limited": "https://www.unpri.org/organisation/144726", | |
"Resona Bank Limited": "https://www.unpri.org/organisation/143419", | |
"STANLIB Asset Management Ltd": "https://www.unpri.org/organisation/144423", | |
"Bentall Kennedy": "https://www.unpri.org/organisation/144346", | |
"EG Funds Management": "https://www.unpri.org/organisation/144338", | |
"Deutsche Asset Management": "https://www.unpri.org/organisation/143688", | |
"Gesti\u00f3n de Previsi\u00f3n y Pensiones E.G.F.P": "https://www.unpri.org/organisation/144833", | |
"BankInvest": "https://www.unpri.org/organisation/144823", | |
"Investec Asset Management": "https://www.unpri.org/organisation/144018", | |
"OFI Asset Management": "https://www.unpri.org/organisation/144651", | |
"QIC": "https://www.unpri.org/organisation/144687", | |
"PGGM Investments": "https://www.unpri.org/organisation/144655", | |
"Aberdeen Asset Management": "https://www.unpri.org/organisation/144060", | |
"Lendlease": "https://www.unpri.org/organisation/143713", | |
"Prescient Investment Management": "https://www.unpri.org/organisation/143949", | |
"Oasis Group Holdings": "https://www.unpri.org/organisation/143753", | |
"Futuregrowth Asset Management": "https://www.unpri.org/organisation/143668", | |
"UCA Funds Management": "https://www.unpri.org/organisation/143913", | |
"Coronation Fund Managers": "https://www.unpri.org/organisation/144232", | |
"Kagiso Asset Management": "https://www.unpri.org/organisation/144817", | |
"Schroders": "https://www.unpri.org/organisation/144205", | |
"Prudential Portfolio Managers (South Africa)": "https://www.unpri.org/organisation/143966", | |
"Achmea Investment Management": "https://www.unpri.org/organisation/143973", | |
"Mergence Investment Managers": "https://www.unpri.org/organisation/144266", | |
"Pantheon Ventures": "https://www.unpri.org/organisation/144234", | |
"Nikko Asset Management Co. Ltd.": "https://www.unpri.org/organisation/143924", | |
"JCP Investment Partners": "https://www.unpri.org/organisation/144278", | |
"Investa Property Group": "https://www.unpri.org/organisation/144054", | |
"PHITRUST": "https://www.unpri.org/organisation/144028", | |
"27Four Investment Managers": "https://www.unpri.org/organisation/143613", | |
"BNG Vermogensbeheer": "https://www.unpri.org/organisation/144030", | |
"Baillie Gifford": "https://www.unpri.org/organisation/143609", | |
"Doughty Hanson & Co": "https://www.unpri.org/organisation/144110", | |
"Lombard Odier": "https://www.unpri.org/organisation/144263", | |
"Boston Trust & Investment Management Company": "https://www.unpri.org/organisation/143757", | |
"Central Finance Board of the Methodist Church / Epworth Investment Management": "https://www.unpri.org/organisation/144032", | |
"AXA Investment Managers": "https://www.unpri.org/organisation/144010", | |
"Miller Howard Investments": "https://www.unpri.org/organisation/143920", | |
"Double Dividend Management B.V.": "https://www.unpri.org/organisation/144008", | |
"Allianz Global Investors": "https://www.unpri.org/organisation/143731", | |
"RobecoSAM AG": "https://www.unpri.org/organisation/143893", | |
"AMP Capital Investors": "https://www.unpri.org/organisation/143960", | |
"Pax World": "https://www.unpri.org/organisation/144284", | |
"Colonial First State Global Asset Management (including First State Investments)": "https://www.unpri.org/organisation/144241", | |
"JPMorgan Asset Management": "https://www.unpri.org/organisation/144152", | |
"Newton Investment Management": "https://www.unpri.org/organisation/144065", | |
"CCLA": "https://www.unpri.org/organisation/143954", | |
"OceanRock Investments Inc.": "https://www.unpri.org/organisation/144088", | |
"Genesis Asset Managers": "https://www.unpri.org/organisation/144112", | |
"Trillium Asset Management": "https://www.unpri.org/organisation/144159", | |
"Nordea": "https://www.unpri.org/organisation/143985", | |
"BT Financial Group": "https://www.unpri.org/organisation/144102", | |
"Pictet Asset Management": "https://www.unpri.org/organisation/144270", | |
"Robeco": "https://www.unpri.org/organisation/143649", | |
"Ethos Foundation": "https://www.unpri.org/organisation/144034", | |
"GO Investment Partners": "https://www.unpri.org/organisation/144140", | |
"Drapac": "https://www.unpri.org/organisation/144079", | |
"Astra Investimentos": "https://www.unpri.org/organisation/144143", | |
"Australian Ethical Investment Ltd.": "https://www.unpri.org/organisation/143964", | |
"NEI Investments": "https://www.unpri.org/organisation/143599", | |
"Mizuho Trust & Banking Co., Ltd": "https://www.unpri.org/organisation/144229", | |
"Momentum Outcome Based Solutions": "https://www.unpri.org/organisation/143939", | |
"Nissay Asset Management Corporation": "https://www.unpri.org/organisation/144026", | |
"HSBC Global Asset Management": "https://www.unpri.org/organisation/143603", | |
"Candriam Investors Group": "https://www.unpri.org/organisation/143617", | |
"Hauck & Aufh\u00e4user (Schweiz) AG": "https://www.unpri.org/organisation/144246", | |
"Element Investment Managers": "https://www.unpri.org/organisation/143958", | |
"ACTIAM": "https://www.unpri.org/organisation/143745", | |
"Amalgamated Bank": "https://www.unpri.org/organisation/143615", | |
"Generation Investment Management LLP": "https://www.unpri.org/organisation/143727", | |
"BNP Paribas Investment Partners": "https://www.unpri.org/organisation/143776", | |
"Hermes Investment Management": "https://www.unpri.org/organisation/143827", | |
"Bank J. Safra Sarasin Ltd": "https://www.unpri.org/organisation/143891", | |
"Threadneedle Asset Management Ltd": "https://www.unpri.org/organisation/143901", | |
"Sumitomo Mitsui Trust Bank, Limited": "https://www.unpri.org/organisation/143970", | |
"Daiwa Asset Management Co. Ltd": "https://www.unpri.org/organisation/144038", | |
"Domini Impact Investments": "https://www.unpri.org/organisation/144041", | |
"Henderson Global Investors": "https://www.unpri.org/organisation/144043", | |
"BMO Global Asset Management": "https://www.unpri.org/organisation/144071", | |
"Mitsubishi UFJ Trust and Banking Corporation": "https://www.unpri.org/organisation/144090", | |
"Calvert Investments": "https://www.unpri.org/organisation/144104", | |
"British Columbia Investment Management Corporation": "https://www.unpri.org/organisation/144145", | |
"Insight Investment": "https://www.unpri.org/organisation/144147", | |
"Amundi": "https://www.unpri.org/organisation/144175", | |
"Groupama Asset Management": "https://www.unpri.org/organisation/144254", | |
"Aviva Investors": "https://www.unpri.org/organisation/144302", | |
"Environmental Resources Management (ERM)": "https://www.unpri.org/organisation/148244", | |
"ISEC Group AB": "https://www.unpri.org/organisation/148188", | |
"Four Twenty Seven": "https://www.unpri.org/organisation/148153", | |
"Ario Advisory": "https://www.unpri.org/organisation/148131", | |
"ESG Moneta Co., Ltd.": "https://www.unpri.org/organisation/148127", | |
"As You Sow": "https://www.unpri.org/organisation/148099", | |
"Angeles Investment Advisors": "https://www.unpri.org/organisation/148064", | |
"Alphalymp": "https://www.unpri.org/organisation/148071", | |
"Governance for Owners Japan KK": "https://www.unpri.org/organisation/148008", | |
"Epic Capital Wealth Management": "https://www.unpri.org/organisation/147648", | |
"Radce Consultoria e Participa\u00e7\u00f5es Ltda": "https://www.unpri.org/organisation/147824", | |
"DDCAP Limited": "https://www.unpri.org/organisation/147793", | |
"Orlando Management AG": "https://www.unpri.org/organisation/147800", | |
"FundRock Management Company S.A.": "https://www.unpri.org/organisation/147761", | |
"Thaipat Institute": "https://www.unpri.org/organisation/147670", | |
"Funds For Good S.A.": "https://www.unpri.org/organisation/147658", | |
"AJ Financial Planning": "https://www.unpri.org/organisation/147632", | |
"INDEFI": "https://www.unpri.org/organisation/147617", | |
"ERI Scientific Beta": "https://www.unpri.org/organisation/147545", | |
"Morningstar, Inc": "https://www.unpri.org/organisation/147513", | |
"\u00c6quo Shareholder Engagement Services inc.": "https://www.unpri.org/organisation/147493", | |
"BNP Paribas Securities Services": "https://www.unpri.org/organisation/147488", | |
"eRevalue": "https://www.unpri.org/organisation/147471", | |
"Gitterman Wealth Management LLC": "https://www.unpri.org/organisation/147474", | |
"Beshertine": "https://www.unpri.org/organisation/147442", | |
"EIRIS Foundation": "https://www.unpri.org/organisation/147410", | |
"SynTao Green Finance": "https://www.unpri.org/organisation/147399", | |
"Phenix Capital BV": "https://www.unpri.org/organisation/147385", | |
"SimpleLogic Inc.": "https://www.unpri.org/organisation/147381", | |
"ClearlySo": "https://www.unpri.org/organisation/147374", | |
"E-Square Inc.": "https://www.unpri.org/organisation/147376", | |
"Nikko Research Centre, Inc": "https://www.unpri.org/organisation/147342", | |
"Beyond Ratings": "https://www.unpri.org/organisation/147261", | |
"Paia Consulting": "https://www.unpri.org/organisation/147170", | |
"BA Desarrollo": "https://www.unpri.org/organisation/147156", | |
"Assogestioni": "https://www.unpri.org/organisation/147189", | |
"Global Footprint Network": "https://www.unpri.org/organisation/147095", | |
"Organizational Maturity Services LLP": "https://www.unpri.org/organisation/147159", | |
"JANA": "https://www.unpri.org/organisation/147051", | |
"INDUS Environmental Services Pvt. Ltd.": "https://www.unpri.org/organisation/146993", | |
"CCD Partners": "https://www.unpri.org/organisation/146969", | |
"JLens Investor Network": "https://www.unpri.org/organisation/146954", | |
"Carbon4 Finance": "https://www.unpri.org/organisation/146948", | |
"VaR Capital": "https://www.unpri.org/organisation/146935", | |
"Financial Services Council": "https://www.unpri.org/organisation/146292", | |
"EFIRES": "https://www.unpri.org/organisation/146030", | |
"Normandin Beaudry": "https://www.unpri.org/organisation/145171", | |
"Coding Ant Financial Services GmbH": "https://www.unpri.org/organisation/142674", | |
"Who's Good": "https://www.unpri.org/organisation/143175", | |
"ET Index": "https://www.unpri.org/organisation/143551", | |
"Tsunagiba Inc.": "https://www.unpri.org/organisation/144559", | |
"Prime Buchholz": "https://www.unpri.org/organisation/143457", | |
"Edge International, Inc.": "https://www.unpri.org/organisation/145387", | |
"Federal Street Advisors": "https://www.unpri.org/organisation/142919", | |
"George & Bell Consulting": "https://www.unpri.org/organisation/143291", | |
"Carnstone Partners LLP": "https://www.unpri.org/organisation/142658", | |
"Social Enterprise Research Institute": "https://www.unpri.org/organisation/143333", | |
"Sciteb Ltd": "https://www.unpri.org/organisation/143331", | |
"Mediators Without Borders Institute": "https://www.unpri.org/organisation/143322", | |
"Kudos Africa": "https://www.unpri.org/organisation/144461", | |
"Eco-Frontier Global Capital": "https://www.unpri.org/organisation/143221", | |
"Geneva Capital S.A.": "https://www.unpri.org/organisation/142917", | |
"Ecofact": "https://www.unpri.org/organisation/145957", | |
"Standards & Legal": "https://www.unpri.org/organisation/143402", | |
"Neural Inc.": "https://www.unpri.org/organisation/142953", | |
"NAI Italy": "https://www.unpri.org/organisation/143497", | |
"Incus Capital": "https://www.unpri.org/organisation/145431", | |
"Redington": "https://www.unpri.org/organisation/143384", | |
"SDS Int\u2019l Group ( Sustainable Development Strategy International Group)": "https://www.unpri.org/organisation/143393", | |
"Spudy Invest GmbH": "https://www.unpri.org/organisation/143395", | |
"Prometeia Advisor Sim": "https://www.unpri.org/organisation/145445", | |
"Peoples Company": "https://www.unpri.org/organisation/145463", | |
"Summit Strategies Group": "https://www.unpri.org/organisation/143516", | |
"TruValue Labs": "https://www.unpri.org/organisation/145403", | |
"Real Estate Asset & Assurance Service s.p.a.": "https://www.unpri.org/organisation/145441", | |
"Le Mouvement d\u2019\u00e9ducation et de d\u00e9fense des actionnaires (M\u00c9DAC)": "https://www.unpri.org/organisation/145238", | |
"SustenRisk Consultoria": "https://www.unpri.org/organisation/143371", | |
"Alternative Prosperity Advisory and Products (Pty) Ltd": "https://www.unpri.org/organisation/145425", | |
"Sustainability Excellence Management Consulting Ltd.": "https://www.unpri.org/organisation/143352", | |
"Sukha & Associates": "https://www.unpri.org/organisation/143447", | |
"Altere Securitizadora": "https://www.unpri.org/organisation/143558", | |
"Charities RI Network (Secretariat: ShareAction)": "https://www.unpri.org/organisation/145206", | |
"Sustainable Value Investors": "https://www.unpri.org/organisation/143316", | |
"Rudman Advisory": "https://www.unpri.org/organisation/142049", | |
"Engagement International": "https://www.unpri.org/organisation/144594", | |
"FERI AG": "https://www.unpri.org/organisation/144604", | |
"Institutional Shareholder Services (ISS)": "https://www.unpri.org/organisation/143692", | |
"Sustainable Investments Institute (Si2)": "https://www.unpri.org/organisation/145278", | |
"Lane Clark & Peacock LLP": "https://www.unpri.org/organisation/144565", | |
"NEPC, LLC": "https://www.unpri.org/organisation/144583", | |
"Global Sustain": "https://www.unpri.org/organisation/142238", | |
"Sarah Cleveland Consulting": "https://www.unpri.org/organisation/142294", | |
"Alexander Forbes Asset Consultants": "https://www.unpri.org/organisation/144829", | |
"International Corporate Governance Network (ICGN)": "https://www.unpri.org/organisation/143975", | |
"Inflection Point Capital Management U.K. Ltd.": "https://www.unpri.org/organisation/145459", | |
"Riedel Research Group, Inc": "https://www.unpri.org/organisation/145455", | |
"Hall Capital Partners LLC": "https://www.unpri.org/organisation/142823", | |
"Cardano Development": "https://www.unpri.org/organisation/144821", | |
"Australasian Centre for Corporate Responsiblity": "https://www.unpri.org/organisation/143002", | |
"Ethical Screening": "https://www.unpri.org/organisation/143149", | |
"Cornerstone Capital": "https://www.unpri.org/organisation/144433", | |
"Intervalor AB": "https://www.unpri.org/organisation/143138", | |
"AMA Partners": "https://www.unpri.org/organisation/143161", | |
"QUICK Corp.": "https://www.unpri.org/organisation/142689", | |
"Legae Securities": "https://www.unpri.org/organisation/143078", | |
"Contrast Capital AG": "https://www.unpri.org/organisation/145979", | |
"ifund services AG": "https://www.unpri.org/organisation/143033", | |
"Absolut Research GmbH": "https://www.unpri.org/organisation/142769", | |
"Resultante Consultoria Estrat\u00e9gica": "https://www.unpri.org/organisation/144134", | |
"GovernArt": "https://www.unpri.org/organisation/144463", | |
"Wilbanks Partners llc": "https://www.unpri.org/organisation/142550", | |
"Hermes Equity Ownership Services Ltd": "https://www.unpri.org/organisation/142163", | |
"Pension Consulting Alliance": "https://www.unpri.org/organisation/142167", | |
"Pennam Partners": "https://www.unpri.org/organisation/143335", | |
"GraySwan Financial Services": "https://www.unpri.org/organisation/142001", | |
"SITAWI - Finance for Good": "https://www.unpri.org/organisation/143310", | |
"S Network Global Indexes, Inc.": "https://www.unpri.org/organisation/145921", | |
"MTree Capital Partners": "https://www.unpri.org/organisation/145925", | |
"Farm & Forestry Management Services SRL": "https://www.unpri.org/organisation/145854", | |
"Carbon Tracker": "https://www.unpri.org/organisation/145893", | |
"Pavilion Advisory Group / Pavilion Alternatives Group": "https://www.unpri.org/organisation/146958", | |
"Malk Sustainability Partners": "https://www.unpri.org/organisation/145858", | |
"HighBreed Capital Ltd.": "https://www.unpri.org/organisation/145900", | |
"Daobridge Capital Limited": "https://www.unpri.org/organisation/141971", | |
"Cambridge Associates": "https://www.unpri.org/organisation/145878", | |
"EURO Institute of Real Estate Management": "https://www.unpri.org/organisation/145840", | |
"Meketa Investment Group, Inc.": "https://www.unpri.org/organisation/145805", | |
"Insti7": "https://www.unpri.org/organisation/142346", | |
"STOXX Ltd.": "https://www.unpri.org/organisation/142246", | |
"ESG Communications": "https://www.unpri.org/organisation/142067", | |
"Profundo": "https://www.unpri.org/organisation/142302", | |
"S&P Global Inc.": "https://www.unpri.org/organisation/142775", | |
"Origami Consultoria em Gest\u00e3o de Neg\u00f3cios Sustent\u00e1veis ltda": "https://www.unpri.org/organisation/141940", | |
"Response Global Media": "https://www.unpri.org/organisation/142212", | |
"Liberum Ratings Servi\u00e7os Financeiros Ltda.": "https://www.unpri.org/organisation/142512", | |
"CSR Design Green Investment Advisory Co., Ltd.": "https://www.unpri.org/organisation/142517", | |
"The International Woodland Company A/S": "https://www.unpri.org/organisation/142848", | |
"Jasmin Capital": "https://www.unpri.org/organisation/142712", | |
"FAROS Consulting": "https://www.unpri.org/organisation/142815", | |
"Cardano Risk Management": "https://www.unpri.org/organisation/142714", | |
"North Sea Capital A/S": "https://www.unpri.org/organisation/142082", | |
"Style Research Limited": "https://www.unpri.org/organisation/141973", | |
"imug Beratungsgesellschaft f\u00fcr sozial-\u00f6kologische Innovationen mbH": "https://www.unpri.org/organisation/142366", | |
"Ark Totan Alternative Co., Ltd.": "https://www.unpri.org/organisation/142763", | |
"Responsible Investment Association Australasia RIAA": "https://www.unpri.org/organisation/145567", | |
"SRI-CONNECT": "https://www.unpri.org/organisation/142525", | |
"Albourne Partners Limited": "https://www.unpri.org/organisation/142723", | |
"CSSP - Center for Social and Sustainable Products AG": "https://www.unpri.org/organisation/142616", | |
"Unity Incorporation": "https://www.unpri.org/organisation/145634", | |
"CONSULTORA DE PENSIONES Y PREVISI\u00d3N SOCIAL, SOCIEDAD DE ASESORES, S.L. (CPPS)": "https://www.unpri.org/organisation/142759", | |
"Forward Finance": "https://www.unpri.org/organisation/142051", | |
"PYMWYMIC": "https://www.unpri.org/organisation/145896", | |
"Covalence EthicalQuote": "https://www.unpri.org/organisation/144846", | |
"Towers Watson Investment Services": "https://www.unpri.org/organisation/144751", | |
"Thomson Reuters": "https://www.unpri.org/organisation/144710", | |
"MSCI": "https://www.unpri.org/organisation/145065", | |
"Integrex Inc.": "https://www.unpri.org/organisation/145048", | |
"Socopa - Corretora Paulista": "https://www.unpri.org/organisation/145080", | |
"KEY Associados": "https://www.unpri.org/organisation/145610", | |
"Illac Ltd.": "https://www.unpri.org/organisation/145506", | |
"Solaron Sustainability Services": "https://www.unpri.org/organisation/145612", | |
"Manifest": "https://www.unpri.org/organisation/145649", | |
"Proxinvest": "https://www.unpri.org/organisation/145485", | |
"Tomorrow's Company": "https://www.unpri.org/organisation/144835", | |
"Value Adviser Associates": "https://www.unpri.org/organisation/145551", | |
"Segal Rogerscasey": "https://www.unpri.org/organisation/145200", | |
"EthiFinance": "https://www.unpri.org/organisation/143568", | |
"B3": "https://www.unpri.org/organisation/145578", | |
"Borsa \u0130stanbul": "https://www.unpri.org/organisation/145688", | |
"SustainAsia Ltd": "https://www.unpri.org/organisation/145669", | |
"Ethics Metrics LLC": "https://www.unpri.org/organisation/143000", | |
"JSE Limited": "https://www.unpri.org/organisation/145743", | |
"Oquendo Capital": "https://www.unpri.org/organisation/143562", | |
"Bloomberg L.P.": "https://www.unpri.org/organisation/147539", | |
"Aon Hewitt": "https://www.unpri.org/organisation/144842", | |
"ME Bank": "https://www.unpri.org/organisation/144480", | |
"Pacific Risk Advisors Ltd (PRA)": "https://www.unpri.org/organisation/145098", | |
"MVision Private Equity Advisers": "https://www.unpri.org/organisation/142897", | |
"Korea Corporate Governance Service (KCGS)": "https://www.unpri.org/organisation/145747", | |
"Novethic": "https://www.unpri.org/organisation/143103", | |
"Hawkamah Institute": "https://www.unpri.org/organisation/145084", | |
"KAS BANK": "https://www.unpri.org/organisation/145118", | |
"Novaster": "https://www.unpri.org/organisation/142873", | |
"Inrate": "https://www.unpri.org/organisation/144942", | |
"Kepler-Cheuvreux": "https://www.unpri.org/organisation/143178", | |
"Glass, Lewis & Co., LLC": "https://www.unpri.org/organisation/142877", | |
"SD-M GmbH": "https://www.unpri.org/organisation/144840", | |
"ECP International S.A.": "https://www.unpri.org/organisation/144837", | |
"Sustainalytics": "https://www.unpri.org/organisation/144353", | |
"Interfaith Center on Corporate Responsibility": "https://www.unpri.org/organisation/143749", | |
"Amadeis": "https://www.unpri.org/organisation/144368", | |
"PBI Actuarial Consultants Ltd.": "https://www.unpri.org/organisation/144739", | |
"Regnan Governance Research and Engagement Pty Ltd": "https://www.unpri.org/organisation/143043", | |
"RepRisk AG": "https://www.unpri.org/organisation/144552", | |
"CAER - Corporate Analysis. Enhanced Responsibility.": "https://www.unpri.org/organisation/144662", | |
"RisCura": "https://www.unpri.org/organisation/144657", | |
"Greeneye": "https://www.unpri.org/organisation/144685", | |
"Conser Invest": "https://www.unpri.org/organisation/144063", | |
"Fondation Guil\u00e9": "https://www.unpri.org/organisation/144058", | |
"LAPFF": "https://www.unpri.org/organisation/143899", | |
"Sustinvest Co., Ltd.": "https://www.unpri.org/organisation/144120", | |
"Hymans Robertson LLP": "https://www.unpri.org/organisation/144272", | |
"Ceres": "https://www.unpri.org/organisation/143594", | |
"RRSE": "https://www.unpri.org/organisation/144274", | |
"PIRC Limited": "https://www.unpri.org/organisation/144306", | |
"Consultiva Internacional, Inc.": "https://www.unpri.org/organisation/143962", | |
"Groupe Investissement Responsable": "https://www.unpri.org/organisation/143607", | |
"Ethical Markets Media, LLC": "https://www.unpri.org/organisation/143934", | |
"Davis Global Advisors, Inc.": "https://www.unpri.org/organisation/143823", | |
"Frontier Advisors": "https://www.unpri.org/organisation/144001", | |
"Australian Council of Superannuation Investors (ACSI)": "https://www.unpri.org/organisation/143741", | |
"oekom research AG": "https://www.unpri.org/organisation/144132", | |
"Progressive Asset Management, Inc.": "https://www.unpri.org/organisation/143723", | |
"IW Financial": "https://www.unpri.org/organisation/143767", | |
"SHARE - Shareholder Association for Research & Education": "https://www.unpri.org/organisation/144290", | |
"INVERA Investment Ethics Research & Advisory AG": "https://www.unpri.org/organisation/143897", | |
"Partners for Sustainability AG": "https://www.unpri.org/organisation/143759", | |
"Vigeo EIRIS": "https://www.unpri.org/organisation/143905", | |
"Mercer Investments": "https://www.unpri.org/organisation/143915", | |
"onValues Ltd.": "https://www.unpri.org/organisation/144093", | |
"Trucost": "https://www.unpri.org/organisation/144225", | |
"FTSE Group": "https://www.unpri.org/organisation/144244", | |
"GES International": "https://www.unpri.org/organisation/144248" | |
} |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" data-oe-company-name="PRI" data-browser="webkit,58.0.3029.110" class="csstransforms csstransforms3d csstransitions"><head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="initial-scale=1" /> | |
<meta name="description" /> | |
<meta name="keywords" /> | |
<meta name="robots" content="INDEX,FOLLOW" /> | |
<meta name="seo_url" /> | |
<meta name="generator" content="Odoo" /> | |
<title>Signatory Directory | Principles for Responsible Investment</title> | |
<link rel="alternate" hreflang="en" href="https://www.unpri.org/directory/" /> | |
<link href="/web/css/web.assets_common/f4d58d4" rel="stylesheet" /> | |
<link href="/web/css/website.assets_frontend/2a0361c" rel="stylesheet" /> | |
<script async="" src="//www.google-analytics.com/analytics.js"></script><script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script> | |
<link rel="shortcut icon" href="/pri_website_base/static/src/img/favicon.ico" type="image/x-icon" /> | |
<script> | |
function scaleSize(maxW, maxH, currW, currH) { | |
var ratio = currH / currW; | |
if (currW >= maxW) { | |
currW = maxW; | |
currH = currW * ratio; | |
} else if (currH >= maxH) { | |
currH = maxH; | |
currW = currH / ratio; | |
} | |
return [currW, currH]; | |
} | |
function check_banners_size() { | |
var slide = document.querySelector('.page-search .carousel.slide'); | |
if (!slide) { | |
return; | |
} | |
if (!slide.hasAttribute("data-original-height")){ | |
slide.setAttribute("data-original-height", slide.style.height); | |
} | |
if (document.body.clientWidth > 768) | |
{ | |
slide.style.height = slide.getAttribute("data-original-height"); | |
return; | |
} | |
slide.style.display = 'none'; | |
var image_el = document.querySelector('.page-search .carousel.slide .oe_img_bg.active'); | |
var image_url = image_el.style.backgroundImage.slice(4, -1).replace(/"/g, ""), | |
image; | |
if (image_url) { | |
image = new Image(); | |
image.onload = function() { | |
var dimentions = scaleSize(document.body.clientWidth, 400, image.width, image.height); | |
slide.style.height = dimentions[1] + "px"; | |
slide.style.display = 'block'; | |
} | |
image.src = image_url; | |
} | |
} | |
</script> | |
<style type="text/css"></style><style>.cke{visibility:hidden;}</style><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/29/2/intl/en_gb/common.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/29/2/intl/en_gb/util.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/29/2/intl/en_gb/stats.js"></script></head> | |
<body> | |
<div id="wrapwrap"> | |
<header> | |
<div class="navbar navbar-default navbar-static-top"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-top-collapse"> | |
<span class="sr-only">Toggle navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a href="/" class="navbar-brand logo"> | |
<img src="/pri_website_base/static/src/img/logo.png" /> | |
</a> | |
</div> | |
<div class="collapse navbar-collapse navbar-top-collapse"> | |
<ul class="nav navbar-nav" id="top_menu"> | |
<li> | |
<a href="/about"> | |
<span>About</span> | |
</a> | |
</li> | |
<li class="divider"></li> | |
<li> | |
<a href="/explore"> | |
<span>Explore</span> | |
</a> | |
</li> | |
<li> | |
<a href="/collaborate"> | |
<span>Collaborate</span> | |
</a> | |
</li> | |
<li> | |
<a href="/report"> | |
<span>Report</span> | |
</a> | |
</li> | |
<li class="divider"></li> | |
<li> | |
<a href="/networks"> | |
<span>Networks</span> | |
</a> | |
</li> | |
<li> | |
<a href="/academy"> | |
<span>Academy</span> | |
</a> | |
</li> | |
<li> | |
<a href="/partnerships"> | |
<span>Partnerships</span> | |
</a> | |
</li> | |
<li class="divider"></li> | |
<li> | |
<a href="/about/becoming-a-signatory"> | |
<span>Join PRI</span> | |
</a> | |
</li> | |
<li> | |
<a href="/news"> | |
<span>News</span> | |
</a> | |
</li> | |
<li> | |
<a href="/contact-us"> | |
<span>Contact</span> | |
</a> | |
</li> | |
<li> | |
<a href="/web/login"><span>Log In</span></a> | |
</li> | |
</ul> | |
<ul id="search_menu" class="nav navbar-nav pull-right"> | |
<li> | |
<a id="search-dropdown" class="hidden-xs text-dark-blue text-bold search-icon" href="#"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></a> | |
</li> | |
</ul> | |
<div id="search-dropdown-widget" class="hidden-xs" style="display:none;"> | |
<form action="/explore"> | |
<div class="right-inner-addon "> | |
<a href="#" class="glyphicon glyphicon-search a-submit"></a> | |
<input type="text" name="q" class="form-control" placeholder="Search PRI..." /> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</header> | |
<main> | |
<form id="directory_form" class="clearfix page-directory" method="GET" action="/signatory-directory"> | |
<input type="hidden" id="country_ids" name="co" /> | |
<input type="hidden" id="subtypes_ao" name="sta" /> | |
<input type="hidden" id="subtypes_im" name="sti" /> | |
<input type="hidden" id="subtypes_sp" name="sts" /> | |
<input type="hidden" id="sort_asset" name="sa" value="join" /> | |
<input type="hidden" id="sort_invest" name="si" value="join" /> | |
<input type="hidden" id="sort_service" name="ss" value="join" /> | |
<div id="wrap"> | |
<div class="oe_structure"> | |
<section class="directory-stats-snippet oe_img_bg" style="background-image: url(/pri_website_base/static/src/img/sig-dir-banner.jpg);"> | |
<div class="container"> | |
<div class="directory-stats-snippet-text"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="col-sm-6"> | |
<div class="row"> | |
<h3>Signatory Directory</h3> | |
</div> | |
</div> | |
<div class="col-sm-6"> | |
<div class="row region-selection-row"> | |
<div class="directory-stats-snippet-region btn-group"> | |
<select class="bootstrap-multiselect hidden" multiple="multiple" id="multiselect" style="display: none;"> | |
<option value="11"> | |
Argentina | |
</option> | |
<option value="14"> | |
Australia | |
</option> | |
<option value="13"> | |
Austria | |
</option> | |
<option value="21"> | |
Belgium | |
</option> | |
<option value="28"> | |
Bermuda | |
</option> | |
<option value="36"> | |
Botswana | |
</option> | |
<option value="32"> | |
Brazil | |
</option> | |
<option value="39"> | |
Canada | |
</option> | |
<option value="124"> | |
Cayman Islands | |
</option> | |
<option value="47"> | |
Chile | |
</option> | |
<option value="49"> | |
China | |
</option> | |
<option value="50"> | |
Colombia | |
</option> | |
<option value="57"> | |
Czech Republic | |
</option> | |
<option value="60"> | |
Denmark | |
</option> | |
<option value="65"> | |
Estonia | |
</option> | |
<option value="71"> | |
Finland | |
</option> | |
<option value="76"> | |
France | |
</option> | |
<option value="58"> | |
Germany | |
</option> | |
<option value="89"> | |
Greece | |
</option> | |
<option value="83"> | |
Guernsey | |
</option> | |
<option value="95"> | |
Hong Kong | |
</option> | |
<option value="109"> | |
Iceland | |
</option> | |
<option value="105"> | |
India | |
</option> | |
<option value="101"> | |
Indonesia | |
</option> | |
<option value="108"> | |
Iran, Islamic Republic of | |
</option> | |
<option value="102"> | |
Ireland | |
</option> | |
<option value="103"> | |
Israel | |
</option> | |
<option value="110"> | |
Italy | |
</option> | |
<option value="114"> | |
Japan | |
</option> | |
<option value="111"> | |
Jersey | |
</option> | |
<option value="113"> | |
Jordan | |
</option> | |
<option value="135"> | |
Latvia | |
</option> | |
<option value="129"> | |
Liechtenstein | |
</option> | |
<option value="134"> | |
Luxembourg | |
</option> | |
<option value="158"> | |
Malaysia | |
</option> | |
<option value="153"> | |
Malta | |
</option> | |
<option value="154"> | |
Mauritius | |
</option> | |
<option value="157"> | |
Mexico | |
</option> | |
<option value="137"> | |
Morocco | |
</option> | |
<option value="146"> | |
Myanmar | |
</option> | |
<option value="160"> | |
Namibia | |
</option> | |
<option value="166"> | |
Netherlands | |
</option> | |
<option value="172"> | |
New Zealand | |
</option> | |
<option value="164"> | |
Nigeria | |
</option> | |
<option value="167"> | |
Norway | |
</option> | |
<option value="175"> | |
Peru | |
</option> | |
<option value="180"> | |
Poland | |
</option> | |
<option value="185"> | |
Portugal | |
</option> | |
<option value="183"> | |
Puerto Rico | |
</option> | |
<option value="192"> | |
Russian Federation | |
</option> | |
<option value="194"> | |
Saudi Arabia | |
</option> | |
<option value="199"> | |
Singapore | |
</option> | |
<option value="250"> | |
South Africa | |
</option> | |
<option value="122"> | |
South Korea | |
</option> | |
<option value="69"> | |
Spain | |
</option> | |
<option value="198"> | |
Sweden | |
</option> | |
<option value="44"> | |
Switzerland | |
</option> | |
<option value="219"> | |
Thailand | |
</option> | |
<option value="226"> | |
Turkey | |
</option> | |
<option value="2"> | |
United Arab Emirates | |
</option> | |
<option value="233"> | |
United Kingdom | |
</option> | |
<option value="235"> | |
United States | |
</option> | |
<option value="236"> | |
Uruguay | |
</option> | |
<option value="241"> | |
Virgin Islands, British | |
</option> | |
</select><div class="multiselect-container"><button type="button" class="multiselect dropdown-toggle btn btn-info" data-toggle="dropdown" title="Select one or more countries"><span class="multiselect-selected-text">Select one or more countries</span> <b class="caret"></b></button><ul class="multiselect-container dropdown-menu pull-right"><span class="country-filter-buttons"><a href="#" style="display:none;" class="btn btn-primary filter_select_none">Select None</a><a href="#" class="btn btn-primary filter_select_all">Select All</a><a href="#" class="btn btn-primary filter_reset">Reset</a><a href="#" class="btn btn-primary filter_now">Filter</a></span><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="11" /> | |
Argentina | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="14" /> | |
Australia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="13" /> | |
Austria | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="21" /> | |
Belgium | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="28" /> | |
Bermuda | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="36" /> | |
Botswana | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="32" /> | |
Brazil | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="39" /> | |
Canada | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="124" /> | |
Cayman Islands | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="47" /> | |
Chile | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="49" /> | |
China | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="50" /> | |
Colombia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="57" /> | |
Czech Republic | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="60" /> | |
Denmark | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="65" /> | |
Estonia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="71" /> | |
Finland | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="76" /> | |
France | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="58" /> | |
Germany | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="89" /> | |
Greece | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="83" /> | |
Guernsey | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="95" /> | |
Hong Kong | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="109" /> | |
Iceland | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="105" /> | |
India | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="101" /> | |
Indonesia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="108" /> | |
Iran, Islamic Republic of | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="102" /> | |
Ireland | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="103" /> | |
Israel | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="110" /> | |
Italy | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="114" /> | |
Japan | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="111" /> | |
Jersey | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="113" /> | |
Jordan | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="135" /> | |
Latvia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="129" /> | |
Liechtenstein | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="134" /> | |
Luxembourg | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="158" /> | |
Malaysia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="153" /> | |
Malta | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="154" /> | |
Mauritius | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="157" /> | |
Mexico | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="137" /> | |
Morocco | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="146" /> | |
Myanmar | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="160" /> | |
Namibia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="166" /> | |
Netherlands | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="172" /> | |
New Zealand | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="164" /> | |
Nigeria | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="167" /> | |
Norway | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="175" /> | |
Peru | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="180" /> | |
Poland | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="185" /> | |
Portugal | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="183" /> | |
Puerto Rico | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="192" /> | |
Russian Federation | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="194" /> | |
Saudi Arabia | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="199" /> | |
Singapore | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="250" /> | |
South Africa | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="122" /> | |
South Korea | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="69" /> | |
Spain | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="198" /> | |
Sweden | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="44" /> | |
Switzerland | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="219" /> | |
Thailand | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="226" /> | |
Turkey | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="2" /> | |
United Arab Emirates | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="233" /> | |
United Kingdom | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="235" /> | |
United States | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="236" /> | |
Uruguay | |
</label></a></li><li><a tabindex="0"><label class="checkbox"><input type="checkbox" value="241" /> | |
Virgin Islands, British | |
</label></a></li></ul></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="directory-stats"> | |
<p>Asset Owners<span class="pull-right">343</span></p> | |
<p>Investment Managers<span class="pull-right">1142</span></p> | |
<p>Service Providers<span class="pull-right">223</span></p> | |
</div> | |
<div class="directory-stats-total"> | |
<p class="text-bold">Total<span class="directory-stats-snippet-total pull-right text-bold">1708</span></p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="directory-stats-snippet-map"> | |
<div class="row"> | |
<img src="/pri_website_base/static/src/img/sigdirmap.png" class="img img-responsive" /> | |
</div> | |
</div> | |
</div> | |
</section> | |
</div> | |
<div class="oe_blue directory-search"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-3"> | |
<div class="directory-search-spacer">spacer</div> | |
</div> | |
<div class="col-md-9 mt32 directory-search-wraper"> | |
<div class="row"> | |
<div class="col-md-10"> | |
<div class="input-group"> | |
<input type="text" class="form-control" id="q" name="q" placeholder="Signatory search..." /> | |
<span class="input-group-btn"> | |
<button id="q_b" class="btn btn-default a-submit" type="button"> | |
<span class="glyphicon glyphicon-search" aria-hidden="true"></span> | |
</button> | |
</span> | |
</div> | |
<div class="row"> | |
<div class="col-md-6"> | |
<label class="sig-search-hide-global"> | |
<input type="checkbox" name="hg" id="hide_global" value="1" /> | |
<span>Hide global signatories from search results</span> | |
</label> | |
</div> | |
<div class="col-md-6"> | |
<div class="reset-all-filters sig-search-reset-all text-right"> | |
<a href="/signatory-directory/">reset all filters</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-3" id="sidebar-col"> | |
<section class="dynamic-menu-snippet"> | |
<div class="js_dynamic_menu_placeholder" data-id="2"> | |
<h3 class="text-dark-blue mt0">Menu | |
<button type="button" class="navbar-toggle collapsed sidebar-nav-toggle" data-toggle="collapse" data-target="#sidebar-list-2" aria-expanded="false"> | |
<span class="sr-only">Toggle navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
</h3> | |
<div class="collapse navbar-collapse" id="sidebar-list-2"> | |
<ul class="nav-stacked list-unstyled mb32"> | |
<li> | |
<a href="/about" target="_self" title="About the PRI" style="font-weight:bold;">About the PRI</a> | |
</li> | |
<li> | |
<a href="/anniversary" target="_self" title="Anniversary" style="margin-left: 10px; ">Anniversary</a> | |
</li> | |
<li> | |
<a href="/about/the-six-principles" target="_self" title="The six Principles" style="margin-left: 10px; ">The six Principles</a> | |
</li> | |
<li> | |
<a href="/about/what-is-responsible-investment" target="_self" title="What is responsible investment?" style="margin-left: 10px; ">What is responsible investment?</a> | |
</li> | |
<li> | |
<a href="/directory" target="_self" title="Signatory Directory" style="font-weight: bold; margin-top: 20px; display: block;">Signatory Directory</a> | |
</li> | |
<li> | |
<a href="/about/becoming-a-signatory" target="_self" title="Becoming a Signatory" style="margin-left: 10px; ">Becoming a signatory</a> | |
</li> | |
<li> | |
<a href="/about/network-supporters" target="_self" title="Network Supporters" style="margin-left: 10px; ">Network Supporters</a> | |
</li> | |
<li> | |
<a href="/news" target="_self" title="News & Press releases" style="font-weight: bold; margin-top: 20px; display: block;">News & Press releases</a> | |
</li> | |
<li> | |
<a href="/about/pri-in-person" target="_self" title="PRI in Person" style="font-weight: bold; margin-top: 20px; display: block;">PRI in Person</a> | |
</li> | |
<li> | |
<a href="/about/pri-in-person/event-sustainability" target="_self" title="Event sustainability" style="margin-left: 10px; ">Event sustainability</a> | |
</li> | |
<li> | |
<a href="/events" target="_self" title="Other PRI events" style="margin-left: 10px; ">Other PRI events</a> | |
</li> | |
<li> | |
<a href="/about/invite-pri-to-speak-at-your-event" target="_self" title="Invite the PRI to speak at your event" style="margin-top: 20px; display: block;">Invite the PRI to speak at your event</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams" target="_self" title="PRI Teams" style="font-weight: bold; margin-top: 20px; display: block;">PRI Teams</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/investment-practices" target="_self" title="Investment Practices" style="margin-left: 10px; ">Investment Practices</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/esg-engagements" target="_self" title="ESG Engagements" style="margin-left: 10px; ">ESG Engagements</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/esg-engagements/collaboration-platform" target="_self" title="Collaboration Platform" style="margin-left: 20px;">Collaboration Platform</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/sustainable-financial-system" target="_self" title="Sustainable financial system" style="margin-left: 10px;">Sustainable financial system</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/policy" target="_self" title="Policy" style="margin-left: 10px; ">Policy</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/policy/responsible-investment-regulation" target="_self" title="Regulation" style="margin-left: 20px;">Regulation map</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/academic-research" target="_self" title="Academic Research" style="margin-left: 10px; ">Academic Research</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/sustainable-development-goals" target="_self" title="Sustainable Development Goals" style="margin-left: 10px;">Sustainable Development Goals</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/reporting-and-assessment" target="_self" title="Reporting & Assessment" style="margin-left: 10px; ">Reporting & Assessment</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/global-networks-and-outreach" target="_self" title="Global Networks & Outreach" style="margin-left: 10px; ">Global Networks & Outreach</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/pri-academy" target="_self" title="PRI Academy" style="margin-left: 10px; ">PRI Academy</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/partnerships-team" target="_self" title="Partnerships" style="margin-left: 10px; ">Partnerships</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/communication-and-events" target="_self" title="Communications & Events" style="margin-left: 10px; ">Communications & Events</a> | |
</li> | |
<li> | |
<a href="/about/pri-teams/internal-operations" target="_self" title="Internal Operations" style="margin-left: 10px; ">Internal Operations</a> | |
</li> | |
<li> | |
<a href="/about/advisory-committees" target="_self" title="Advisory Committees" style="margin-top: 20px; display: block;">Advisory Committees</a> | |
</li> | |
<li> | |
<a href="/about/pri-governance" target="_self" title="PRI governance" style="font-weight: bold; margin-top: 20px; display: block;">PRI governance</a> | |
</li> | |
<li> | |
<a href="/about/pri-governance/pri-board-members" target="_self" title="PRI Board members" style="margin-left: 10px; ">PRI Board members</a> | |
</li> | |
<li> | |
<a href="/about/pri-governance/signatory-rights" target="_self" title="Signatory rights" style="margin-left: 10px; ">Signatory rights</a> | |
</li> | |
<li> | |
<a href="/about/pri-governance/consultation" target="_self" title="Consultations" style="margin-left: 10px; ">Consultations</a> | |
</li> | |
<li> | |
<a href="/about/pri-governance/financial-information" target="_self" title="Financial information" style="margin-left: 10px; ">Financial information</a> | |
</li> | |
<li> | |
<a href="/about/procurement-policy" target="_self" title="Procurement policy" style="margin-left: 10px; ">Procurement policy</a> | |
</li> | |
<li> | |
<a href="/about/public-communications-policy" target="_self" title="Public communication policy" style="margin-left: 10px; ">Public communications policy</a> | |
</li> | |
<li> | |
<a href="/about/sustainability" target="_self" title="Sustainability" style="font-weight: bold; margin-top: 20px; display: block;">Sustainability</a> | |
</li> | |
<li> | |
<a href="/about/careers" target="_self" title="PRI Careers" style="font-weight: bold; margin-top: 20px; display: block;">Careers</a> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</section> | |
<div class="collapse navbar-collapse" id="sidebar-list"> | |
<ul class="nav-stacked list-unstyled mb32"> | |
</ul> | |
</div> | |
</div> | |
<div class="col-md-9" id="main-content"> | |
<div class="oe_structure"> | |
<section class="jumbotron mt0" style="height: 136px; overflow: hidden;"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-8 col-md-offset-2 mb0"> | |
<a class="btn btn-primary btn-lg" href="/download_report/30442">CLICK HERE TO DOWNLOAD A COMPLETE LIST OF PRI SIGNATORIES</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
</div> | |
<div class="row"> | |
<div class="col-md-10"> | |
<div class="col-md-4"> | |
<div class="row"> | |
<h3 class="text-dark-blue mt0 mb0">Asset Owners</h3> | |
</div> | |
</div> | |
<div class="col-md-5"> | |
<div class="row"> | |
<div class="input-group dir-sort"> | |
<div class="btn-group"> | |
<button type="button" class="btn btn-info dropdown-toggle filter-button js-filter-button" data-toggle="dropdown" aria-expanded="false"> | |
<span class="directory-stats-snippet-title">Specialisation</span> | |
<span class="caret"></span> | |
</button> | |
<div class="dropdown-menu filter-checkbox" data-filter="subtypes_ao"> | |
<div style="text-align: center;"> | |
<span>Select <a href="#" class="filter-checkbox-all">All</a> | <a href="#" class="filter-checkbox-none">None</a></span> | |
</div> | |
<label title="Corp. pension/super/retire/provident"> | |
<input type="checkbox" value="1" /> | |
<span> | |
Corp. pension/super/retire/provident | |
</span> | |
</label> | |
<label title="Development finance institution"> | |
<input type="checkbox" value="2" /> | |
<span> | |
Development finance institution | |
</span> | |
</label> | |
<label title="Foundation or endowment"> | |
<input type="checkbox" value="3" /> | |
<span> | |
Foundation or endowment | |
</span> | |
</label> | |
<label title="Insurance company"> | |
<input type="checkbox" value="4" /> | |
<span> | |
Insurance company | |
</span> | |
</label> | |
<label title="Non Corp. pension/super/retire/provident"> | |
<input type="checkbox" value="5" /> | |
<span> | |
Non Corp. pension/super/retire/provident | |
</span> | |
</label> | |
<label title="Reserve - sov/ gov controlled fund"> | |
<input type="checkbox" value="6" /> | |
<span> | |
Reserve - sov/ gov controlled fund | |
</span> | |
</label> | |
<div style="text-align: center;"> | |
<span><a href="#" class="filter-checkbox-reset">Reset</a> | <a href="#" class="filter-checkbox-filter">Filter</a></span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="input-group dir-sort"> | |
<div class="btn-group"> | |
<button type="button" class="btn btn-info dropdown-toggle filter-button" data-toggle="dropdown" aria-expanded="false"> | |
<span class="directory-stats-snippet-title">Sort by Date</span> | |
<span class="caret"></span> | |
</button> | |
<ul class="dropdown-menu list-unstyled" role="menu"> | |
<li class="active"> | |
<a data-id="1" href="#" onclick="return sort_directory('sort_asset', 'join')">Join Date</a> | |
</li> | |
<li> | |
<a data-id="1" href="#" onclick="return sort_directory('sort_asset', 'create')">Last Created</a> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="col-md-3"> | |
<div class="row text-right mb16"> | |
<span class="dir-ritr text-dark-blue">RI Transparency Report</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div id="assets"> | |
<div class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5> | |
<a href="/organisation/148253"> | |
The J.W. McConnell Family Foundation | |
</a> | |
</h5> | |
<p class="text-muted"> | |
<strong> | |
Canada | |
</strong> | |
<span> - Joined April 06, 2017</span> | |
</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5> | |
<a href="/organisation/148226"> | |
Nippon Life Insurance Company | |
</a> | |
</h5> | |
<p class="text-muted"> | |
<strong> | |
Japan | |
</strong> | |
<span> - Joined March 16, 2017</span> | |
</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5> | |
<a href="/organisation/148079"> | |
Rockefeller Brothers Fund | |
</a> | |
</h5> | |
<p class="text-muted"> | |
<strong> | |
United States | |
</strong> | |
<span> - Joined February 13, 2017</span> | |
</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_148083" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148083">Pensioenfonds PGB</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined February 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_148040" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148040">Khazanah Nasional Berhad</a></h5> | |
<p class="text-muted"><strong>Malaysia</strong> - Joined February 01, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147974" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147974">Unipol Gruppo Finanziario S.p.A - UnipolSai Assicurazioni</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined January 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147976" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147976">Transport for London Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147963" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147963">Niederösterreichische Vorsorgekasse AG</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined January 12, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147954" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147954">ATP</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined January 11, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147970" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147970">UNIVERSITÉ DE MONTRÉAL (FONDS DE DOTATION)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 11, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147966" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147966">Sampension Administration A/S</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined January 10, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147946" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147946">PFA Pension</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined January 05, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147925" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147925">PKA</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147927" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147927">Brasilprev Seguros e Previdência</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147901" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147901">University of Toronto Asset Management Corporation (re University of Toronto Endowment)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 16, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147891" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147891">University of Toronto Asset Management Corporation (re University of Toronto Pension Plan)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147873" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147873">Development Bank of Japan</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined December 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147797" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147797">Daido Life Insurance Company</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined November 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147802" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147802">MACIF</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 24, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147773" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147773">The University of Maryland Foundation, Inc</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147737" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147737">Ithmar Capital</a></h5> | |
<p class="text-muted"><strong>Morocco</strong> - Joined November 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147741" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147741">Ahold Pensioenfonds</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147743" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147743">SEB Life and Pension</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147725" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147725">The Nobel Foundation</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147717" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147717">Juniata College</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 28, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147705" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147705">Stichting Pensioenfonds Blue Sky Group</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 25, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147635" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147635">Jeremy Coller Foundation</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147448" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147448">Bpf Bouw Stichting Bedrijfstakpensioenfonds voor de Bouwnijverheid</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined August 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147432" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147432">BNP Paribas Cardif</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 26, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147421" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147421">The Consolidated Retirement Fund for Local Government</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined July 22, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147417" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147417">Thompson Rivers University</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147387" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147387">Stichting Pensioenfonds van de ABN AMRO Bank N.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined July 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147330" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147330">Natixis Assurances</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 04, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147349" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147349">Peninsula Participações</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined June 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147337" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147337">Movestic Livförsäkring AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined June 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147251" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147251">World Resources Institute</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147112" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147112">Pension Fund Association</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined May 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147078" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147078">University of the Arts London</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147041" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147041">Northwestern University</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_147007" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147007">Kent County Council Superannuation Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_146977" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146977">Alecta Pensionsforsakring</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined March 31, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_146943" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146943">Fukoku Mutual Life Insurance Company</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined March 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_146294" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146294">Humboldt State University Advancement Foundation</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_146278" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146278">African Risk Capacity Insurance Company Limited</a></h5> | |
<p class="text-muted"><strong>Bermuda</strong> - Joined February 26, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144696" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144696">LA Retirement Fund</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined January 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143109" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143109">United Church of Canada Pension Plan</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144575" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144575">Régime de retraite de la Confédération des syndicats nationaux (CSN)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142951" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142951">Geroa Pentsioak EPSV</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined December 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142925" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142925">BVK</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined December 16, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144938" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144938">CCOO, FP</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined December 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143225" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143225">World Bank Group Retirement Benefit Plans</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 25, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142595" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142595">The Dai-ichi Life Insurance Company, Limited</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined November 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144515" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144515">Sophia School Corporation</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined October 30, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145327" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145327">United Nations Foundation</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 30, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143080" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143080">Ontario Pension Board (OPB)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined October 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142929" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142929">BPL Pensioen</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 19, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144557" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144557">PeaceNexus Foundation</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined October 12, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144014" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144014">Barclays Bank UK Retirement Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 30, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_141892" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141892">GPIF</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined September 25, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144608" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144608">Challenger Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142092" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142092">Sitra</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined September 07, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143297" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143297">Loreto Mutua, M.P.S.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined July 29, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143751" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143751">Teachers' Retirement System of the City of New York</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 30, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145912" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145912">Paul Hamlyn Foundation</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143473" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143473">MS&AD Insurance Group Holdings, Inc.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined June 01, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143070" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143070">Colleges of Applied Arts & Technology Pension Plan CAAT</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 29, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143465" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143465">Guardian Media Group</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 26, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19651"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143373" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143373">Canadian Union of Public Employees Employees' Pension Plan (CEPP)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined March 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143979" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143979">Lancashire County Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 10, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143541" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143541">St. Bedrijfspensioenfonds voor de Koopvaardij</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined January 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20166"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145959" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145959">University of Victoria</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 01, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143087" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143087">Sun Life Assurance Company of Canada</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 18, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144388" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144388">QBE Insurance Group Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144467" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144467">Skandia</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145576" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145576">Stichting Total Pensioenfonds Nederland</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 30, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142984" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142984">University of St. Andrews</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144589" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144589">Nordea Life & Pensions</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined October 01, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143155" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143155">Barmenia Versicherungen</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 25, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144544" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144544">Treehouse Investments, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 16, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144579" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144579">University of California</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 04, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20306"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144602" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144602">The United Church of Canada</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined September 04, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20247"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144919" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144919">Comic Relief</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined August 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19335"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142469" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142469">Public Sector Pension Investment Board</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined August 19, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20040"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144511" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144511">Pegaso - Fondo pensione complementare</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined August 05, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19994"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142088" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142088">Simon Fraser University</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20141"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145294" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145294">Salvepar</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20107"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143147" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143147">Coöperatie DELA</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined May 23, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19347"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144114" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144114">Greater Manchester Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19644"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145423" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145423">Ircantec</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined May 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19725"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145468" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145468">Brabantse Ontwikkelings Maatschappij</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined May 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19246"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143217" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143217">Développement international Desjardins</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 29, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19497"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145981" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145981">Harvard University Endowment</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 25, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19660"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142656" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142656">Stichting Pensioenfonds KLM-Cabinepersoneel</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20184"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142670" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142670">Stichting Algemeen Pensioenfonds KLM</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20179"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144641" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144641">Bupa</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19260"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143209" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143209">Suva</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined February 25, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20207"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143027" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143027">UK Green Investment Bank plc</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20291"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142654" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142654">VERKA VK Kirchliche Vorsorge VVaG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined January 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20322"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142710" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142710">Church Commissioners for England</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 15, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19309"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142727" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142727">Bpf HiBiN</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined December 10, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144718" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144718">Hannoversche Alterskasse VVaG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined December 04, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19656"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142830" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142830">Good Super</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 29, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19636"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143121" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143121">Stichting Pensioenfonds voor Huisartsen</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 29, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20188"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145838" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145838">Länsförsäkringar AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 29, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19776"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_141996" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141996">Unilever Pension Funds (Univest Company)</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20293"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143010" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143010">Ratos AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 22, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20063"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144478" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144478">Enabling Microfinance AG</a></h5> | |
<p class="text-muted"><strong>Liechtenstein</strong> - Joined October 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19543"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144698" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144698">Transnet Retirement Fund</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined September 27, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20267"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144431" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144431">Superannuation Arrangements of the University of London (SAUL)</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 23, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20202"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_141960" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141960">Steyler Bank GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 18, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20177"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145773" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145773">Esmee Fairbairn Foundation</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 18, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19553"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144047" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144047">Aviva Staff Pension Trustee Ltd</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 16, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19191"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145780" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145780">Fondo Pensione Gruppo Intesa Sanpaolo</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined July 23, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19592"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142507" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142507">Stichting Pensioenfonds Werk en (re)Integratie</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined July 03, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20189"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145790" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145790">City of Espoo</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined June 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19316"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145907" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145907">Pragma Patrimônio</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined June 25, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20025"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142859" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142859">Sparkassen Pensionskasse AG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined May 14, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20161"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145870" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145870">The Foundation for Social Entrepreneurs (T/a UnLtd)</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 05, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20241"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142146" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142146">Grameen Crédit Agricole Microfinance Foundation</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19641"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144745" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144745">The University of Edinburgh</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20248"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142019" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142019">Sunsuper</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined January 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20201"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_141924" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141924">REPSOL II Fondo de Pensiones</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined December 13, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20074"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143829" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143829">AXA Group</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19192"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145944" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145944">AP6</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19150"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142806" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142806">University of Ottawa</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 15, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20307"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143072" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143072">Community Foundation of Ottawa</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19340"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142017" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142017">WPV</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 18, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20350"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142138" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142138">Evangelische Bank</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19564"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142063" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142063">Oxfam Novib</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined September 27, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19976"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144084" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144084">Lloyds Banking Group</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 21, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19792"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142047" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142047">Opplysningsvesenets fond</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19967"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142509" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142509">Swedfund International AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined August 23, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20209"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142348" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142348">Tokio Marine & Nichido Fire Insurance Co,.Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined July 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13953"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142618" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142618">Zurich Insurance Group</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20353"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142808" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142808">Veritas Pension Insurance Company Ltd</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20321"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142838" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142838">MetallRente GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19837"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142331" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142331">Fundação Itau Unibanco</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined June 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19612"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_141967" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141967">Nest Sammelstiftung</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined June 21, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19906"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142159" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142159">Old Mutual plc</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 13, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19959"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142533" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142533">Sanlam Limited</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined May 10, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20112"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142165" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142165">Sparda-Bank Muenchen eG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined May 09, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20159"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142086" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142086">Deutsche Bundesstiftung Umwelt</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 30, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19492"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142263" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142263">SASRIA (SOC) Limited</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined April 12, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20123"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142057" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142057">HIVOS</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/14065"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142059" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142059">ICCO</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19689"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142061" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142061">ING Groenbank N.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19706"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142729" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142729">Government Institutions Pension Fund</a></h5> | |
<p class="text-muted"><strong>Namibia</strong> - Joined February 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19639"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142055" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142055">Luxembourg Microfinance and Development Fund</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined November 10, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19809"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145830" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145830">Native Benefits Plan</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined October 27, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19900"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142298" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142298">ASR Nederland N.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19175"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144003" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144003">Allianz SE</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19062"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145852" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145852">Stichting Pensioenfonds van De Nederlandsche Bank NV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20187"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142195" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142195">Stichting Bewaarder Beleggingen Menzis</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 05, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20180"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145874" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145874">CNP Assurances</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 23, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19325"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145834" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145834">Fonds 1818</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined September 22, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19593"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145876" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145876">Fonds de solidarité FTQ</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined September 22, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19595"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142288" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142288">National Employment Savings Trust (NEST)</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 09, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19899"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143082" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143082">Ontario Teachers' Pension Plan</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined September 08, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19966"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145771" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145771">UAW Retiree Medical Benefits Trust</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 17, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20283"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142589" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142589">UFCW International Union Pension Plan for Employees</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 05, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20287"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142606" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142606">Varma Mutual Pension Insurance Company</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined August 03, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20316"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142765" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142765">SAS Trustee Corporation</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined August 03, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20122"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142666" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142666">Valtion Eläkerahasto</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined June 30, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20310"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142695" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142695">West Midlands Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 28, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20342"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145603" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145603">Generali Group</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined June 15, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19619"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142842" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142842">Pension Fund City of Zurich (PKZH)</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined May 26, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20000"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142041" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142041">Healthcare of Ontario Pension Plan (HOOPP)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined May 18, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19664"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145940" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145940">Alliance Trust PLC</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 21, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19060"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142169" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142169">Nederlandse Financierings-Maatschappij voor Ontwikkelingslanden N.V. (FMO)</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 18, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19902"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142370" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142370">FUNCESP</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined April 15, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19613"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145977" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145977">Bayerische Versorgungskammer</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 14, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19216"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142329" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142329">Secom Pension Fund</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined March 30, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20128"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143052" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143052">Fondaction CSN</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined March 03, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19589"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144021" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144021">International Finance Corporation (IFC)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 15, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19713"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145046" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145046">Santander Empleados Pensiones, F.P.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined February 02, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20118"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145151" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145151">Stichting Pensioenfonds UWV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined January 10, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20185"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143060" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143060">Gestion FÉRIQUE</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 07, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19623"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144282" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144282">Marks & Spencer Pension Scheme</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 01, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19823"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144749" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144749">Cometa Pension Fund</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined December 01, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19331"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144809" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144809">Etera Mutual Pension Insurance Company</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined November 30, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19556"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145588" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145588">Railways Pension Trustee Company Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 22, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20058"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144979" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144979">VIESGO INFRAESTRUTURAS ENERGETICAS,S.L</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined November 15, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19542"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144985" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144985">Humanis</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 15, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19683"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144981" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144981">CFDT</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 10, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19302"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145508" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145508">Church of England Pensions Board</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 09, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19310"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144850" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144850">Rabobank Pensioenfonds</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined August 02, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20054"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145630" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145630">North East Scotland Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 30, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19934"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144959" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144959">BPF Schilders</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined June 30, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19244"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145528" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145528">Uniting Financial Services</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined June 25, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20304"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142405" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142405">Otago Community Trust</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined June 01, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19974"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143674" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143674">The Pensions Trust</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 14, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20244"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144854" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144854">OPSEU Pension Trust</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined May 13, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19968"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143930" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143930">Stichting Gemeenschappelijk Beleggingsfonds FNV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 14, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20181"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144276" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144276">Shell Contributory Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 25, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20135"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145094" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145094">Media Super</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined March 11, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19830"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145574" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145574">Crédit Agricole Assurances</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 08, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19359"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143123" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143123">Energy Industries Superannuation Scheme (EISS)</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined February 02, 2010</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19544"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144455" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144455">HOSTPLUS</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined December 17, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19675"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144288" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144288">Royal Mail Pension Plan</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 09, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20098"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145694" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145694">Omega Overseas Investment Corporation</a></h5> | |
<p class="text-muted"><strong>Puerto Rico</strong> - Joined November 27, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19962"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145667" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145667">Stichting Pensioenfonds ING</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 25, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20182"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143115" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143115">Régime de retraite de l'Université du Québec</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 04, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20073"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144401" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144401">AMF</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 04, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19139"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144647" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144647">UNISON Staff Pension Scheme</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 04, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20299"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145745" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145745">Landesbank Baden-Württemberg (LBBW)</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 23, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19773"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143481" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143481">The LankellyChase Foundation</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 22, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20242"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144704" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144704">Eskom Pension and Provident Fund</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined October 22, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19552"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145116" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145116">VidaCaixa</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined October 16, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20327"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144418" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144418">CDC Group plc</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 29, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19296"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144860" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144860">Joseph Rowntree Charitable Trust</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 09, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19737"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145753" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145753">Real Grandeza</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined July 29, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20067"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145734" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145734">Régime de Retraite de l'Université de Montréal</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 24, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20072"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144268" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144268">Korea National Pension Service (NPS)</a></h5> | |
<p class="text-muted"><strong>South Korea</strong> - Joined June 25, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142881" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142881">Stichting Philips Pensioenfonds</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined June 16, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20190"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143252" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143252">Australian Catholic Superannuation and Retirement Fund</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined June 04, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19185"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143267" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143267">The Forest Company</a></h5> | |
<p class="text-muted"><strong>Guernsey</strong> - Joined June 04, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20240"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145135" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145135">State Universities Retirement System of Illinois</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 04, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20173"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145139" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145139">AFL-CIO Reserve Fund</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19048"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145012" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145012">MAIF</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 07, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19815"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145014" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145014">Norwegian Government Pension Fund Norway (Norwegian Ministry of Finance and Folketrygdfondet)</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined April 03, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19944"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145036" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145036">VBV- Vorsorgekasse AG</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined March 24, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20317"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144923" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144923">CommInsure</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined March 23, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19336"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144866" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144866">Midat Cyclops FP</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined March 01, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19847"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143008" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143008">Kehati - The Indonesian Biodiversity Foundation</a></h5> | |
<p class="text-muted"><strong>Indonesia</strong> - Joined February 03, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19752"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145042" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145042">MP Investment Management A/S</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined February 03, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20298"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144927" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144927">Tasplan</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined January 23, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20227"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144862" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144862">Middletown Works Hourly and Salaried Union Retirees Health Care Fund</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 06, 2009</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19848"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142871" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142871">Vaekstfonden</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined December 19, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20308"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144901" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144901">Mistra</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined December 19, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19878"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142391" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142391">Los Angeles County Employees Retirement Association (LACERA)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 09, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19801"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144415" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144415">Global Crop Diversity Trust</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined November 18, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19628"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143219" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143219">Pensions Caixa 30 FP</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined November 17, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20004"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144957" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144957">Stichting Shell Pensioenfonds</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 30, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20191"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144897" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144897">First State Superannuation Scheme</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 27, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19584"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143205" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143205">Keva</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined September 19, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19756"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142875" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142875">Société d'assurance-vie inc. (SSQ)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 07, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20148"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144743" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144743">Bpf AVH</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined July 07, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19243"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144730" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144730">Australian Capital Territory</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined July 01, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/10075"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143678" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143678">BP Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 22, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19241"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142427" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142427">Elo Mutual Pension Insurance Company</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined May 13, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19539"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142397" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142397">Insurance Australia Group (IAG)</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined April 24, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19709"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142399" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142399">IAG & NRMA Superannuation pty Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined April 24, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19686"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144351" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144351">Rata Foundation</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined April 15, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20060"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144349" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144349">Pensioenfonds Vervoer</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 11, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19999"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144702" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144702">Maryland State Retirement and Pension System</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 09, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19825"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144370" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144370">AP7</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined April 03, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19151"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144128" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144128">Pension Fund of Zürcher Kantonalbank</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined March 25, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20001"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144342" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144342">Lothian Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 20, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19802"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142387" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142387">Mode Interieur Tapijt & Textiel (MITT)</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined March 14, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19884"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_142389" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142389">Church Pension Fund</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined March 14, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19312"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143421" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143421">Accident Compensation Corporation</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined March 04, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19029"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143997" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143997">California State Teachers' Retirement System CalSTRS</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 25, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19268"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144700" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144700">Foundation North</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined February 25, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19599"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144831" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144831">BBVA Fondo de Empleo</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined February 20, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19220"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144825" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144825">Church of Sweden</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 01, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19311"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144681" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144681">Swedish Pensions Agency</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 24, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20210"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144665" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144665">Strathclyde Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 20, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20195"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144673" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144673">NGS Super Fund</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined January 10, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19921"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144653" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144653">Tradeka Corporation</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined January 01, 2008</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20266"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144675" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144675">Stichting Spoorwegpensioenfonds</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined December 20, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20192"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144677" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144677">SPOV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined December 20, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20164"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143943" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143943">StatewideSuper</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 30, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20174"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143769" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143769">Pensioenfonds Metaal en Techniek</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 26, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19997"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143947" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143947">TWUSUPER</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 07, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20281"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143729" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143729">Achmea</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 30, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19031"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144227" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144227">Telstra Super Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined October 12, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20233"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144300" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144300">Merseyside Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 10, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19835"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144157" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144157">KLP</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined September 25, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19762"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144108" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144108">AP4</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined September 21, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19149"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143672" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143672">Northern Ireland Local Government Officers' Superannuation Committee</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 18, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19939"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143755" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143755">LUCRF Super</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined August 21, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19805"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143999" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143999">ESSSuper</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined July 27, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19555"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144056" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144056">Victorian Funds Management Corporation</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined July 20, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20326"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144097" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144097">Pensioenfonds PNO Media</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined July 20, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19998"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144296" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144296">Local Government Superannuation Scheme</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined July 19, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19793"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144086" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144086">London Pensions Fund Authority (LPFA)</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 16, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19798"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144259" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144259">Sameinadi lifeyrissjodurinn (United Pension Fund)</a></h5> | |
<p class="text-muted"><strong>Iceland</strong> - Joined June 20, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20108"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143707" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143707">Swiss Re Ltd</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined June 18, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20214"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143895" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143895">SEIU Pension Plans Master Trust</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 01, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20133"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143647" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143647">AustralianSuper</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined May 31, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19187"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143725" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143725">Forluz</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined May 09, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19597"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143981" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143981">UniSuper Management Pty Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined May 08, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20300"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143945" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143945">Taiyo Life Insurance Company</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined March 27, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20226"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143601" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143601">FAELBA - Fundação COELBA de Previdência Complementar</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 22, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19569"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143761" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143761">FASERN</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 22, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19573"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143817" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143817">Celpos</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 22, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19298"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143765" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143765">Economus</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 14, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19526"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144280" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144280">United Church Funds</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 12, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20302"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144118" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144118">Infraprev</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 03, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19704"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144077" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144077">Funcef</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined February 23, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19609"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143709" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143709">Trust Waikato</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined February 20, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20277"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144095" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144095">Pension Protection Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 16, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20002"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143995" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143995">British Columbia Municipal Pension Plan</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined February 11, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19254"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144036" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144036">AP1</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 26, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19146"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143711" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143711">Valia</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined January 10, 2007</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20309"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144161" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144161">LSR</a></h5> | |
<p class="text-muted"><strong>Iceland</strong> - Joined December 22, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19803"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143611" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143611">CBUS Superannuation Fund</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined December 19, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19294"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144069" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144069">CENTRUS- Fundação Banco Central de Previdência Privada</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined December 19, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19300"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144167" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144167">CARE Super</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined December 05, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19283"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143825" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143825">Government Superannuation Fund Authority</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined November 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19640"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143989" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143989">Petros - Fundação Petrobras de Seguridade Social</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined November 14, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20010"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143592" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143592">CSC</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 03, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19472"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143941" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143941">Ilmarinen Mutual Pension Insurance Company</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined November 03, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19697"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144126" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144126">Vision Super</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined October 30, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20332"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143629" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143629">DNB</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined October 02, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19508"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144116" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144116">HESTA Super Fund</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19669"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143977" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143977">KfW Bankengruppe</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 19, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19758"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144006" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144006">AP3</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined July 24, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19148"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143763" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143763">Environment Agency Pension Fund</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 14, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19546"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144082" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144082">BBC Pension Trust Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 14, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19219"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_145009" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145009">Norwegian Government Pension Fund Global (Norwegian Ministry of Finance and Norges Bank Investment Management)</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined July 02, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19943"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143983" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143983">VicSuper</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined June 30, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20324"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144024" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144024">Lifeyrissjodur Verzlunarmanna (Pension Fund of Commerce)</a></h5> | |
<p class="text-muted"><strong>Iceland</strong> - Joined June 16, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19789"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144016" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144016">Sompo Japan Nipponkoa Insurance Inc.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined May 02, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20153"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143576" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143576">Caisse de dépôt et placement du Québec</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19263"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143578" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143578">Canada Pension Plan Investment Board</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19271"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143597" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143597">Bâtirente</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19215"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143680" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143680">Caisse des dépôts et consignations - CDC</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19264"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143682" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143682">Christian Super</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19308"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143721" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143721">New York State Local Retirement System</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19912"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143737" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143737">Stichting Pensioenfonds ABP</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20183"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143739" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143739">Government Employees Pension Fund of South Africa</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19638"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143747" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143747">Storebrand Asset Management</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20194"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143771" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143771">Munich Re</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19893"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143774" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143774">New York City Employees Retirement System</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19911"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143815" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143815">California Public Employees' Retirement System CalPERS</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19267"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143819" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143819">Folksam</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19588"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143821" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143821">AP2</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19147"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143903" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143903">United Nations Joint Staff Pension Fund</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20303"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143922" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143922">Nathan Cummings Foundation</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19898"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143928" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143928">Stichting Pensioenfonds Zorg en Welzijn</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13976"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143932" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143932">Catholic Superannuation Fund</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19291"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143937" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143937">Wespath Investment Management (General Board of Pension and Health Benefits of the United Methodist Church)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20341"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_143987" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143987">New Zealand Superannuation Fund</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19913"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144075" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144075">Fonds de réserve pour les retraites - FRR</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19594"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144106" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144106">ERAFP - French public service additional pension scheme</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19550"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144130" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144130">Ireland Strategic Investment Fund (ISIF)</a></h5> | |
<p class="text-muted"><strong>Ireland</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19726"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144138" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144138">Connecticut Retirement Plans and Trust Funds (CRPTF)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19342"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144239" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144239">BT Pension Scheme</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19259"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144261" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144261">Universities Superannuation Scheme - USS</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20305"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144286" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144286">Pensionfund Metalektro (PME)</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20003"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144294" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144294">Kikkoman Corporation Pension Scheme</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19759"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="asset_144308" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144308">PREVI - Caixa de Previdência dos Funcionários do Banco do Brasil</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined April 27, 2006</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20028"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="mt32 mb0"> | |
<span class="text-muted">And <span id="total_assets">0</span> more</span> | |
<a id="see_all_asset" class="label label-info" style="display: none;">Show more</a> | |
</div> | |
<div class="row mt32 mb16 mb0"> | |
<div class="col-md-10"> | |
<hr /> | |
<div class="col-md-4"> | |
<div class="row"> | |
<h3 class="text-dark-blue mt0 mb0">Investment Managers</h3> | |
</div> | |
</div> | |
<div class="col-md-5"> | |
<div class="row"> | |
<div class="input-group dir-sort"> | |
<div class="btn-group"> | |
<button type="button" class="btn btn-info dropdown-toggle filter-button js-filter-button" data-toggle="dropdown" aria-expanded="false"> | |
<span class="directory-stats-snippet-title">Specialisation</span> | |
<span class="caret"></span> | |
</button> | |
<div class="dropdown-menu filter-checkbox" data-filter="subtypes_im"> | |
<div style="text-align: center;"> | |
<span>Select <a href="#" class="filter-checkbox-all">All</a> | <a href="#" class="filter-checkbox-none">None</a></span> | |
</div> | |
<label title="Multi asset"> | |
<input type="checkbox" value="7" /> | |
<span> | |
Multi asset | |
</span> | |
</label> | |
<label title="Listed Equities"> | |
<input type="checkbox" value="8" /> | |
<span> | |
Listed Equities | |
</span> | |
</label> | |
<label title="Fixed Income"> | |
<input type="checkbox" value="9" /> | |
<span> | |
Fixed Income | |
</span> | |
</label> | |
<label title="Private Equity"> | |
<input type="checkbox" value="10" /> | |
<span> | |
Private Equity | |
</span> | |
</label> | |
<label title="Property"> | |
<input type="checkbox" value="11" /> | |
<span> | |
Property | |
</span> | |
</label> | |
<label title="Infrastructure"> | |
<input type="checkbox" value="12" /> | |
<span> | |
Infrastructure | |
</span> | |
</label> | |
<label title="Hedge Fund"> | |
<input type="checkbox" value="13" /> | |
<span> | |
Hedge Fund | |
</span> | |
</label> | |
<label title="Fund of Funds"> | |
<input type="checkbox" value="14" /> | |
<span> | |
Fund of Funds | |
</span> | |
</label> | |
<label title="Impact investing"> | |
<input type="checkbox" value="15" /> | |
<span> | |
Impact investing | |
</span> | |
</label> | |
<label title="Themed investing"> | |
<input type="checkbox" value="16" /> | |
<span> | |
Themed investing | |
</span> | |
</label> | |
<div style="text-align: center;"> | |
<span><a href="#" class="filter-checkbox-reset">Reset</a> | <a href="#" class="filter-checkbox-filter">Filter</a></span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="input-group dir-sort"> | |
<div class="btn-group"> | |
<button type="button" class="btn btn-info dropdown-toggle filter-button" data-toggle="dropdown" aria-expanded="false"> | |
<span class="directory-stats-snippet-title">Sort by Date</span> | |
<span class="caret"></span> | |
</button> | |
<ul class="dropdown-menu list-unstyled" role="menu"> | |
<li class="active"> | |
<a data-id="1" href="#" onclick="return sort_directory('sort_invest', 'join')">Join Date</a> | |
</li> | |
<li> | |
<a data-id="1" href="#" onclick="return sort_directory('sort_invest', 'create')">Last Created</a> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="col-md-3"> | |
<div class="row text-right mb16"> | |
<span class="dir-ritr text-dark-blue">RI Transparency Report</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div id="invests"> | |
<div class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5> | |
<a href="/organisation/148279"> | |
Case Kapitalförvaltning AB | |
</a> | |
</h5> | |
<p class="text-muted"> | |
<strong> | |
Sweden | |
</strong> | |
<span> - Joined May 15, 2017</span> | |
</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5> | |
<a href="/organisation/148272"> | |
LBBW Asset Management Investmentgesellschaft mbH | |
</a> | |
</h5> | |
<p class="text-muted"> | |
<strong> | |
Germany | |
</strong> | |
<span> - Joined May 08, 2017</span> | |
</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5> | |
<a href="/organisation/148274"> | |
DESJARDINS GLOBAL ASSETS MANAGEMENT | |
</a> | |
</h5> | |
<p class="text-muted"> | |
<strong> | |
Canada | |
</strong> | |
<span> - Joined May 04, 2017</span> | |
</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148264" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148264">Cape Ann Asset Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 02, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148262" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148262">Element Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 20, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148259" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148259">Nordkinn Asset Management AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined April 18, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148255" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148255">Gerdling Edlen Investment Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 12, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148251" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148251">JA Glynn & Co.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 04, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148249" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148249">NXTP Partners LLC</a></h5> | |
<p class="text-muted"><strong>Argentina</strong> - Joined April 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148232" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148232">Intermede Investment Partners Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 20, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148230" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148230">Welkin Capital Management</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined March 16, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148218" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148218">AgIS Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 14, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148220" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148220">Weberbank Actiengesellschaft</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined March 14, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148222" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148222">Albizia Capital Pte Ltd</a></h5> | |
<p class="text-muted"><strong>Singapore</strong> - Joined March 14, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148214" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148214">Hartelt Fund Management</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined March 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148216" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148216">CAPITAL EXPORT</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148200" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148200">VanEck</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 10, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148202" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148202">SEAYA CAPITAL GESTION SGEIC, S.A.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined March 10, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148194" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148194">Audley Mineral Resources Management LLP (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 09, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148196" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148196">Tembo Capital Management</a></h5> | |
<p class="text-muted"><strong>Guernsey</strong> - Joined March 09, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148198" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148198">RADIAL CAPITAL PARTNERS GmbH & Co. KG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined March 09, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148186" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148186">TENDERCAPITAL Ltd</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 08, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148170" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148170">Quercus Assets Selection sarl</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined March 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148165" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148165">Pechel Industries</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 02, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148168" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148168">Proterra Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 02, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148159" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148159">Energy Power Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 01, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148161" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148161">China Asset Management Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>China</strong> - Joined March 01, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148150" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148150">Value Square NV</a></h5> | |
<p class="text-muted"><strong>Belgium</strong> - Joined February 28, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148155" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148155">QuayStreet Asset Management</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined February 28, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148142" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148142">iBionext</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 24, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148144" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148144">Nordic Credit Partners</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 24, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148140" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148140">Fidelity Investments</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 23, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148133" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148133">Alinda Capital Partners Ltd.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 22, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148136" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148136">DuPont Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 22, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148124" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148124">Delen Private Bank</a></h5> | |
<p class="text-muted"><strong>Belgium</strong> - Joined February 21, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148129" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148129">Carlson Funds Enterprise</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 21, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148118" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148118">Community Capital Management, INC.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 20, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148101" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148101">RGreen Invest</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 16, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148105" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148105">TD Asset Management (TDAM USA Inc.)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 16, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148107" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148107">QQM Fund Management AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 16, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148093" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148093">DPI</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 15, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148095" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148095">Altera Vastgoed NV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined February 15, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148088" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148088">Yarra Capital Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined February 14, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148090" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148090">Alda Asset Management</a></h5> | |
<p class="text-muted"><strong>Iceland</strong> - Joined February 14, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148077" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148077">Orbis Investments</a></h5> | |
<p class="text-muted"><strong>Bermuda</strong> - Joined February 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148081" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148081">WaveCrest Wealth Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148086" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148086">IVO Capital Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148073" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148073">PERIAL</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 08, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148058" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148058">Helliot Vermogensbeheer NV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined February 06, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148050" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148050">ONE ELEVEN CAPITAL LLC (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148038" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148038">CI Investments Inc.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined February 01, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148036" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148036">ARC Fiduciary (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 31, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148027" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148027">Galliard Capital Management, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 30, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148030" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148030">CARN Capital</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined January 30, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148032" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148032">Invest in Visions</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined January 30, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148034" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148034">CATALYST INVESTMENT MANAGEMENT</a></h5> | |
<p class="text-muted"><strong>Jordan</strong> - Joined January 30, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148021" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148021">Helios Investment Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 27, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148023" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148023">Infranode</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 27, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148010" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148010">IndexHelsinki Osakeyhtiö</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined January 24, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148012" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148012">Majedie Asset Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 24, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148014" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148014">Angel Oak Capital (Angel Oak Capital Advisors, LLC and Angel Oak Canopy Partners, LLC)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 24, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_148016" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/148016">Phatisa</a></h5> | |
<p class="text-muted"><strong>Mauritius</strong> - Joined January 24, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147996" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147996">InnovaFonds</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 20, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147978" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147978">CURLEW CAPITAL LTD</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147980" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147980">Nordic Equities Kapitalförvaltning</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 13, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147961" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147961">AUA Private Equity Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 12, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147968" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147968">Whitehelm Capital Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined January 09, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147972" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147972">Rivage Investment</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 09, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147921" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147921">Coeli Asset Management</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147929" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147929">AB Max Sievert</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147931" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147931">Grupo Ecoagro</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147933" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147933">Tiptree Asset Management Company, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147936" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147936">Pekin Singer Strauss (Appleseed Capital)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147938" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147938">Íslandsbanki hf. (VÍB)</a></h5> | |
<p class="text-muted"><strong>Iceland</strong> - Joined January 03, 2017</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147914" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147914">Greystone Managed Investments, Inc</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147905" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147905">Abris Capital Partners</a></h5> | |
<p class="text-muted"><strong>Poland</strong> - Joined December 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147897" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147897">SEVENTURE PARTNERS</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147883" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147883">PRIMARY CAPITAL PARTNERS LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147885" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147885">GED PARTNERS, S.L.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined December 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147887" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147887">Farm Venture</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined December 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147889" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147889">SCOR Investment Partners SE</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147871" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147871">DBJ Asset Management Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined December 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147866" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147866">Brandywine Global Investment Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 09, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147853" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147853">ThomasLloyd Group</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147855" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147855">The Ithaka Group</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147858" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147858">Colchester Global Investors Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147844" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147844">B & Capital (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147847" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147847">IPSOL Capital</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147849" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147849">Obligo Holding</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined December 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147832" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147832">SwanCap Partners (SwanCap Investment Management S.A. and SwanCap Partners GmbH)</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined December 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147826" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147826">Livonia Partners</a></h5> | |
<p class="text-muted"><strong>Latvia</strong> - Joined November 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147795" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147795">Formula Growth Limited</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 25, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147789" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147789">Lynx Asset Management AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147791" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147791">Vandaalen Swiss Value Partners</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined November 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147780" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147780">Sound Shore Management, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 22, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147769" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147769">GreenSoil Investments</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147776" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147776">Tribe Impact Capital LLP (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147767" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147767">Solutions Fiducie (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147757" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147757">Fort Washington Investment Advisors, Inc</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 17, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147759" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147759">Herkules Capital</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined November 17, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147745" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147745">Primary Wave IP Investment Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147748" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147748">ACG Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147735" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147735">Discovery Americas</a></h5> | |
<p class="text-muted"><strong>Mexico</strong> - Joined November 09, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147727" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147727">Ergon Capital Partners</a></h5> | |
<p class="text-muted"><strong>Belgium</strong> - Joined November 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147729" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147729">Adelis Equity Partners</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147719" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147719">NorthPointe Capital, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 28, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147711" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147711">Pacific Road Capital</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined October 27, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147701" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147701">Resource Management Service, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 25, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147707" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147707">First Investments BV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 25, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147685" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147685">MV Credit Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147683" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147683">AMBROSIA ASSET MANAGEMENT AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined October 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147688" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147688">Arrowstreet Capital, Limited Partnership</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147690" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147690">Causeway Capital Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147692" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147692">GAMCO Investors, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147654" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147654">AJO</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147656" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147656">Quilvest & Partners</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined October 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147694" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147694">Viarentis Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147650" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147650">Chequers Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined October 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147652" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147652">GQG Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147637" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147637">Landmark Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 10, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147640" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147640">The Wafra Group</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 10, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147642" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147642">Makena Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 10, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147626" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147626">Richmond Global (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 04, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147628" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147628">NAZCA CAPITAL</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined October 04, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147620" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147620">BT Investment Management Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147604" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147604">Cadence Investment Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 27, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147606" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147606">Oldfield Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 27, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147602" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147602">The Boston Company Asset Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 26, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147594" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147594">Helsinki Capital Partners Ltd</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined September 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147982" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147982">Brawn Capital Limited</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined September 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147584" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147584">Summa Equity</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined September 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147586" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147586">Troy Asset Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147567" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147567">Swell Asset Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147571" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147571">ADRIGO ASSET MANAGEMENT</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined September 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147574" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147574">Tundra Fonder AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined September 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147550" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147550">Nmas1 Asset Management SGIIC S.A.U</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined September 08, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147547" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147547">UTI International Limited</a></h5> | |
<p class="text-muted"><strong>Guernsey</strong> - Joined September 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147532" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147532">Mondrian Investment Partners Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147530" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147530">Area One Farms</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined September 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147526" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147526">Ant Capital Partners Co., Ltd</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined August 31, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147528" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147528">Figure 8 Investment Strategies</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 31, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147503" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147503">Growth Farms Australia</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined August 24, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147501" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147501">Niam AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined August 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147495" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147495">MacKay Shields</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147480" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147480">Convent Capital Management BV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined August 16, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147466" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147466">VISIO Asset Management</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined August 08, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147469" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147469">Arctic Fund Management AS</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined August 08, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147440" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147440">SVG Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147444" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147444">Sprucegrove Investment Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147412" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147412">GENUI</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined July 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147391" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147391">NextEnergy Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147393" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147393">Northern Pacific Group</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147395" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147395">Northleaf Capital Partners</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147389" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147389">Alliance Trust Investments</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147378" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147378">Fair Oaks Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 15, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147369" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147369">GoldenSet Capital Partners LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147367" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147367">EMZ Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147359" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147359">Andbank Wealth Management, SGIIC</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined July 08, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147353" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147353">All Weather Capital</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined July 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147355" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147355">Mediterrania Capital Partners</a></h5> | |
<p class="text-muted"><strong>Malta</strong> - Joined July 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147357" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147357">Snow Phipps Group, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147322" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147322">Integral Corporation</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined July 06, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147320" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147320">Brummer & Partners AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined July 04, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147340" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147340">Anda Asset Management</a></h5> | |
<p class="text-muted"><strong>South Korea</strong> - Joined July 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147347" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147347">Wermuth Asset Management</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined July 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147304" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147304">Montana Capital Partners AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined June 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147332" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147332">Spiltan Fonder AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined June 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147290" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147290">Davy Asset Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 27, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147344" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147344">Wilshire Associates Incorporated</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 27, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147282" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147282">Grupo Fineco</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined June 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147325" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147325">TT International</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147328" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147328">Alma Capital Investment Management</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined June 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147241" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147241">Encourage Capital LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147243" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147243">Solidar Fonder</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined June 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147245" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147245">Etho Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147247" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147247">C Hoare & Co</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147227" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147227">IMPACT Partenaires</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined June 07, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147223" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147223">Bullion Management Group</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined June 06, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147229" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147229">Innova Capital</a></h5> | |
<p class="text-muted"><strong>Poland</strong> - Joined June 06, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147207" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147207">Volksbank Vorarlberg e. Gen.</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined June 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147211" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147211">KBC Asset Management NV</a></h5> | |
<p class="text-muted"><strong>Belgium</strong> - Joined June 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147201" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147201">Meago (Pty)Ltd</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined May 31, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147205" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147205">CaixaBank Asset Management</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined May 31, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147166" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147166">Macrocapitales</a></h5> | |
<p class="text-muted"><strong>Peru</strong> - Joined May 24, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147153" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147153">Think ETF Asset Management</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined May 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147183" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147183">New Horizon Capital Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined May 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147179" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147179">Polaris Capital Group Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined May 20, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147123" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147123">Boussard & Gavaudan</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 16, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147108" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147108">Greencoat Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147114" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147114">TRUSTUS Capital Management B.V</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined May 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147161" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147161">Oquendo Management Sarl</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined May 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147168" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147168">Adaxia Capital Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147081" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147081">Pegasus Capital Advisors</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 06, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147085" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147085">Pathway Capital Management, LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 06, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147175" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147175">SP Global Capital (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined May 03, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147043" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147043">Gunn Agri Partners</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined April 21, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147028" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147028">BlueGem Capital Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 15, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147024" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147024">Quinbrook Infrastructure Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 14, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147009" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147009">Altamar Capital Partners, S.L.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined April 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147013" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147013">The Pensions Infrastructure Platform</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147015" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147015">123Venture</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147019" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147019">Nicola Wealth Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146987" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146987">IKB Deutsche Industriebank AG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 04, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146981" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146981">HQ Trust GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146983" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146983">Barclays Asset Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 01, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146975" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146975">Edmond de Rothschild Private Equity S.A. (EdR PE)</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined March 31, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146967" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146967">Kestrel Investment Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146971" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146971">OSSIAM</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146973" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146973">Barrow, Hanley, Mewhinney & Strauss, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 30, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146961" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146961">DDJ Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146963" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146963">Grosvenor Europe</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146965" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146965">International Farming Corporation</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146956" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146956">Connor, Clark & Lunn Private Capital Ltd.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined March 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146933" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146933">Sentinel Asset Management, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 17, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146937" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146937">Drakens Capital</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined March 17, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146306" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146306">Alpina Capital Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 10, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19127"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146307" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146307">Meiji Yasuda Asset Management Company Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined March 10, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146301" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146301">American Timberlands Company</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 09, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146296" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146296">NS Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146284" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146284">Aberforth Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 26, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146286" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146286">BlueSky Investment Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 26, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146288" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146288">Lord Abbett</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 26, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146273" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146273">Highland Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 24, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146290" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146290">Campbell Global</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 23, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146026" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146026">Thomson, Horstmann and Bryant</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146028" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146028">Legato Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146019" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146019">Aurica Capital</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined February 18, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_146015" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/146015">Formuepleje</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined February 17, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142902" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142902">GreenWish Capital (Mauritius) Ltd</a></h5> | |
<p class="text-muted"><strong>Mauritius</strong> - Joined February 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143363" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143363">Ausbil Investment Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined February 12, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142906" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142906">Axiom Alternative Investments</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 11, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142960" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142960">Brandes Investment Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 08, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143518" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143518">Cornerstone Real Estate Advisers</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 08, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142911" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142911">PT Batavia Prosperindo Aset Manajemen</a></h5> | |
<p class="text-muted"><strong>Indonesia</strong> - Joined February 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145248" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145248">Gramont Capital Ltd</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined February 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143142" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143142">GLC Asset Management Group</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined February 03, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143410" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143410">Western Asset Management Company</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20343"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145147" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145147">Oakley Capital Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145161" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145161">Matthews International Capital (Matthews Asia)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145250" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145250">Affirmative Investment Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 02, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143163" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143163">Fukoku Capital Management, Inc.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined January 29, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142819" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142819">Absa Asset Management</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined January 25, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143171" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143171">Musa Group (Pty) Ltd</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined January 22, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145309" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145309">Enter Fonder AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 19, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145149" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145149">Ainda, Energia & Infraestructura (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>Mexico</strong> - Joined January 15, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145296" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145296">Ruffer LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 15, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20099"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143232" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143232">The Minerals & Energy Group</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 13, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143211" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143211">Naxicap Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 06, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142601" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142601">Advantage Partners</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined January 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142965" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142965">EARNEST Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143165" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143165">Laaken Asset Management N.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined January 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145145" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145145">Baker Gilmore & Associates</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145159" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145159">Aktie-Ansvar AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 05, 2016</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143229" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143229">Fulcrum Asset Management LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144505" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144505">QMA</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143167" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143167">Zadig</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined December 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145246" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145246">Obsido Oy</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined December 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142909" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142909">METAFORM INVESTMENTS INC. (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144624" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144624">Atlantic Bridge Capital</a></h5> | |
<p class="text-muted"><strong>Ireland</strong> - Joined December 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145311" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145311">AGF Investments Inc</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141907" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141907">Equilibrium</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 16, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143227" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143227">Vestathena</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 09, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143234" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143234">ClariVest Asset Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144555" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144555">Dana Investment Advisors</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145165" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145165">Future Matters</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145169" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145169">Cicero Fonder AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined December 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145465" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145465">Mandarin Capital Management</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined December 03, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142933" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142933">Manulife Asset Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 01, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142253" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142253">Wise SGR</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined November 27, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20349"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143369" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143369">Aristotle Credit Partners, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 27, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145261" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145261">Ashburton Fund Managers (Pty) Ltd</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined November 27, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145189" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145189">Parquest Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 20, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145272" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145272">Montagu Private Equity</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 13, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145255" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145255">Veritas Institutional GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined November 11, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145290" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145290">Cameron Hume Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 11, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19270"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143125" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143125">Waterland Private Equity Investments</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20336"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145181" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145181">Integrated Asset Management Corp.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145240" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145240">JAR Capital Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145244" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145244">Elaïs Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145286" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145286">River Hollow Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20086"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145191" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145191">RAM Active Investments SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined October 19, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145252" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145252">Norron Asset Management</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined October 19, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145257" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145257">Omni Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 19, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145318" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145318">Mint Asset Management</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined October 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19850"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143435" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143435">SKY Harbor Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 07, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145284" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145284">Motion Equity Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 28, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19891"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142731" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142731">Vision Capital LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 25, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20331"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145844" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145844">Sonen Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 25, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20154"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143359" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143359">Nomura Alternative Investment Management (Europe) Ltd</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143547" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143547">Caravel Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19282"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145292" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145292">Synova Capital LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142969" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142969">Los Angeles Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143442" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143442">Capri Investment Group</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145596" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145596">Eurizon Capital SGR</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined September 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145259" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145259">FOURPOINTS Investment Managers</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145325" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145325">GAIA Fund Managers (Pty) Ltd (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined September 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143463" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143463">Paragon Partners</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 03, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142971" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142971">Portfolio Advisors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 02, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142996" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142996">Greentech Capital Advisors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 02, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145373" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145373">Extendam</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 02, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143064" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143064">RBC Global Asset Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined August 26, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143404" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143404">RAM ONE AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined August 20, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145282" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145282">Optimized Portfolio Management, OPM</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined August 20, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142975" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142975">Emso Asset Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined August 11, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142923" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142923">Trecento</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined August 07, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143272" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143272">Macquarie Asset Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined August 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144542" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144542">Equator Capital Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145321" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145321">AgCAP</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined August 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19049"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143182" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143182">Innovacom Gestion</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 29, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142988" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142988">Banco BTG Pactual S.A.</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined July 28, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143327" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143327">PCJ Investment Counsel Ltd</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 28, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143433" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143433">Gemway</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143329" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143329">Abac Solutions Manager S.à r.l.</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined July 15, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145371" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145371">Kuramo Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144548" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144548">Magni Global Asset Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 26, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19813"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145902" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145902">AIF Capital</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined June 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142783" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142783">PineBridge Investments</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144639" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144639">Trinitas Partners, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 18, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142931" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142931">Carnegie Fonder AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined June 16, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141942" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141942">Hudson Clean Energy Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 11, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142913" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142913">ACA Innovative Investment Management Inc.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined June 10, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142915" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142915">Roxbury Asset Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 02, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145439" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145439">Jamestown LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 01, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142927" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142927">Bankhaus Schelhammer & Schattera AG</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined May 29, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143499" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143499">City of London Investment Group PLC</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 29, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19317"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145453" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145453">OpCapita LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 28, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143388" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143388">TVM Capital Healthcare Partners</a></h5> | |
<p class="text-muted"><strong>United Arab Emirates</strong> - Joined May 27, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20280"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142844" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142844">Loomis, Sayles & Company, L.P.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143347" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143347">Quaero Capital</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined May 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142531" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142531">Montpensier Finance</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined May 18, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19888"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143365" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143365">Eleva Capital LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 12, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19537"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143438" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143438">MainFirst Holding AG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined May 12, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143406" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143406">BlackFin Capital Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined May 11, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143320" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143320">Schafer Cullen Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143399" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143399">Vallis Capital Partners</a></h5> | |
<p class="text-muted"><strong>Portugal</strong> - Joined May 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143341" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143341">Hartford Funds Management Company, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 30, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143324" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143324">Resonance Asset Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 29, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142998" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142998">Goodyields Capital GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 28, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143451" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143451">Genstar Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 28, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143408" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143408">Mirae Asset Global Investments (HK)</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined April 24, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19852"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143553" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143553">Eaton Vance Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143105" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143105">Jarislowsky Fraser Global Investment Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined April 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19735"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143375" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143375">Wells Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 22, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144507" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144507">Fred Alger Management, Inc</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 21, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143386" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143386">Lupus alpha Asset Management AG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 20, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19807"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143556" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143556">Charles Stanley PLC</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 20, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144573" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144573">Entropics Asset Management</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined April 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19545"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143449" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143449">EquityCompass Strategies</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 15, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145435" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145435">First Trust Advisors L.P.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 15, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143459" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143459">Delta Alternative Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 09, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145437" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145437">Fisch Asset Management AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined March 31, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19585"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143355" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143355">Artemis Investment Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 30, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143074" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143074">Connor, Clark & Lunn</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined March 27, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143361" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143361">Neumeier Poma Investment Counsel, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 26, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19908"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143440" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143440">Dalton, Greiner, Hartman, Maher & Co., LLC (DGHM)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 25, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143397" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143397">Infrastructure Capital Group</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined March 24, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143455" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143455">Baring Private Equity Partners España</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined March 24, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143357" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143357">L1 Capital Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined March 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143431" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143431">Realza Capital S.G.E.I.C., S.A.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined March 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143453" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143453">Ysios Capital</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined March 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20352"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143477" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143477">Eiffel Investment Group</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145375" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145375">Milestone Investisseurs</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined March 17, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143339" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143339">ACOFI Gestion</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 11, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143343" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143343">EnerCap Capital Partners</a></h5> | |
<p class="text-muted"><strong>Czech Republic</strong> - Joined March 10, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143475" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143475">Swen Capital Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 10, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20211"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143429" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143429">GHO Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 04, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143461" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143461">Trium Capital LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 27, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143367" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143367">AIM Capital Oy</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined February 18, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143504" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143504">PGIM Fixed Income</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 10, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/31253"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143545" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143545">747 Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 06, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143510" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143510">Crescit Asset Management AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined January 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19365"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143530" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143530">Euro Private Equity</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144596" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144596">Genus Capital Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 23, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144911" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144911">Abbott Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 15, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145451" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145451">ERES GESTION</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 15, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143425" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143425">Wingate Asset Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined January 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20347"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143427" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143427">Procuritas Capital Investors</a></h5> | |
<p class="text-muted"><strong>Guernsey</strong> - Joined January 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144393" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144393">Corfina Capital</a></h5> | |
<p class="text-muted"><strong>Indonesia</strong> - Joined January 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144395" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144395">NCH Capital Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 14, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143508" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143508">The Hampshire Companies, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143512" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143512">CDC International Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143543" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143543">Salt Funds Management</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined January 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144585" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144585">Capvis Equity Partners</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined January 05, 2015</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143533" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143533">Castik Capital S.à r.l.</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined December 18, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19289"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143535" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143535">Golden Rock Capital</a></h5> | |
<p class="text-muted"><strong>Myanmar</strong> - Joined December 16, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143549" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143549">Lyxor Asset Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 12, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143195" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143195">Lazard Asset Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145331" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145331">Edinburgh Partners Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144380" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144380">Mvunonala Asset Managers</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined December 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145353" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145353">GAM Holding AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined December 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144378" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144378">Teslin Capital Management</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined December 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143314" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143314">Lazard Frères Gestion</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143514" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143514">Strategic Investment Group</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144390" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144390">Pareto Asset Management AS</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined November 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144550" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144550">Invimit SGR</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined November 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145268" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145268">Navigera AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142433" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142433">Rogge Global Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 21, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144706" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144706">Bank of America Global Wealth and Investment Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 21, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144386" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144386">Turner Impact Capital, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 18, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144645" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144645">OHV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 18, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144622" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144622">WaveStone Capital</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 13, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144539" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144539">Ohman</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19957"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145553" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145553">Bonnefield Financial</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19236"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141910" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141910">The Vanguard Group, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144435" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144435">Equis Pte. Ltd</a></h5> | |
<p class="text-muted"><strong>Singapore</strong> - Joined November 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144632" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144632">Longfellow Investment Management Co.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144517" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144517">ARX Equity Partners</a></h5> | |
<p class="text-muted"><strong>Czech Republic</strong> - Joined November 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145265" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145265">Bencis Capital Partners</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined November 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145395" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145395">Trusteam Finance</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20278"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142638" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142638">NorthStar Asset Management, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19942"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144899" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144899">Green Century Capital Management, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19645"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144571" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144571">CORDET</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined October 23, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145727" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145727">KEPLER-FONDS KAG</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined October 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19754"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145367" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145367">Life Sciences Partners (LSP)</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145472" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145472">RAISE</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined October 15, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144527" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144527">Sp-Fund Management Company Ltd</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined October 13, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20163"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144525" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144525">Columbia Management Investment Advisers, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19329"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144529" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144529">Savills Investment Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20126"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145338" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145338">Apis Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144521" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144521">Azimuth Capital Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined October 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144384" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144384">Misaki Capital Inc.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined October 01, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144382" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144382">Brightwood Capital Advisors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 29, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144503" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144503">Investinor AS</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined September 29, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144634" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144634">Avanath Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 25, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19188"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144501" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144501">Basellandschaftliche Kantonalbank</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined September 23, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144630" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144630">Sustainable Growth Advisers, LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 23, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20205"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143312" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143312">Ownership Capital</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined September 19, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19975"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142098" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142098">DBL Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 16, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141969" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141969">Tau Investment Management LLC (Provisional Signatory)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20228"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144523" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144523">Cassia Investments</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined September 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19288"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145365" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145365">First Private Investment Management KAG mbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19582"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144600" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144600">Bank Julius Baer & Co. Ltd.</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined September 05, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19209"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143111" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143111">Coller Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined August 29, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19327"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144482" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144482">Sustainable Insight Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20206"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144852" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144852">ACG Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined August 27, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19030"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144563" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144563">MU Investments Co. Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined August 26, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19892"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144581" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144581">Westfield Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 19, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20344"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144616" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144616">Northern Horizon Capital A/S</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined August 13, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19938"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144561" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144561">EDM</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined August 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19528"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144614" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144614">Mazi Capital</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined August 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19826"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144610" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144610">Pacific Agri Capital</a></h5> | |
<p class="text-muted"><strong>Colombia</strong> - Joined August 05, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19977"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144498" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144498">Arabesque Asset Management Ltd</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19158"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144606" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144606">Mackenzie Investments</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined July 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19811"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145280" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145280">Greenland Financial Holdings Group</a></h5> | |
<p class="text-muted"><strong>China</strong> - Joined July 21, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19647"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145549" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145549">J-STAR Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined July 18, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19739"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145385" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145385">UFG Asset Management</a></h5> | |
<p class="text-muted"><strong>Russian Federation</strong> - Joined July 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20289"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145409" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145409">Blue Harvest SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined July 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19227"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145340" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145340">GLG Partners LP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 16, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19625"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145382" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145382">SEDCO Capital</a></h5> | |
<p class="text-muted"><strong>Saudi Arabia</strong> - Joined July 16, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20129"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145389" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145389">Visio Capital Management</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined July 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20330"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145449" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145449">Varainhallinta Tresor Oy</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined July 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20315"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145470" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145470">IBS Capital Management B.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined July 10, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19688"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145303" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145303">Tikehau Investment Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20252"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142817" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142817">Veritas Investment GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined July 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20320"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143236" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143236">Oak Hill Capital Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19948"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145305" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145305">European Capital Debt Management Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 07, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19563"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145443" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145443">FAME Investments AG</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined July 01, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19572"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144722" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144722">HC Asset Management Co., Ltd</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined June 30, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19663"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145399" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145399">Magnum Capital Industrial Partners</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined June 30, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19814"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145380" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145380">Logan Circle Partners, L.P.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 27, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19796"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144577" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144577">CM-CIC Private Debt</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined June 24, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19324"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145299" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145299">Numeric Investors LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19946"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145323" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145323">Markham Rae</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 19, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19822"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145481" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145481">Blue Sky Alternative Investments Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined June 13, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19228"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143134" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143134">Main Capital</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined June 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19816"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143192" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143192">Lion Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 30, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19790"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145336" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145336">Caja Ingenieros Gestión SGIIC, SAU</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined May 30, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19266"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142746" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142746">Investors Group</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined May 27, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19722"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145592" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145592">Palatine Private Equity LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 27, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19980"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145427" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145427">Kartesia Advisor LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 23, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19750"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142857" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142857">Fisher Investments</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19586"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145411" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145411">TH Real Estate</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 13, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13747"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145391" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145391">Pyrford International</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 09, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20044"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145405" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145405">Brown Advisory</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 29, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19255"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145447" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145447">LSV Asset Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 25, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19804"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144336" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144336">Altor Funds</a></h5> | |
<p class="text-muted"><strong>Jersey</strong> - Joined April 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19135"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142487" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142487">Winton Capital Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 08, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20348"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144453" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144453">LFPI Gestion</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 03, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19787"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142565" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142565">Siparex</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 31, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20142"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142652" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142652">Private Advisors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20030"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143145" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143145">Palisade Investment Partners Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined March 26, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19982"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144490" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144490">Gramercy Funds Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 26, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19642"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142440" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142440">Prosperity Capital Management</a></h5> | |
<p class="text-muted"><strong>Cayman Islands</strong> - Joined March 21, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20034"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143743" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143743">Bancolombia</a></h5> | |
<p class="text-muted"><strong>Colombia</strong> - Joined March 21, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19206"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144724" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144724">Cube Infrastructure Managers</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined March 21, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19473"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143190" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143190">Kreaxi</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19207"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145479" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145479">Mid Europa Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19846"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143238" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143238">Trilantic Capital Partners Europe</a></h5> | |
<p class="text-muted"><strong>Guernsey</strong> - Joined March 12, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20269"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144916" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144916">Olympus Capital Asia</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 12, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19961"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143029" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143029">Osmosis Investment Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 04, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19973"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142556" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142556">SYZ Asset Management (Europe) Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20221"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143574" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143574">SYZ Asset Management (Switzerland) SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined February 28, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20222"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143188" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143188">Newbury Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19914"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144716" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144716">EBG Investment Solutions AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined February 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19524"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145082" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145082">Bell Asset Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined February 20, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19222"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145038" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145038">Kerogen Capital</a></h5> | |
<p class="text-muted"><strong>Cayman Islands</strong> - Joined February 12, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19755"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142821" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142821">AQR Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 11, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19156"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142451" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142451">Litorina</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 10, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19791"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142683" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142683">CONINCO Explorers in finance SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined February 10, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19341"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142559" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142559">Didner & Gerge Fonder AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 04, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19504"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142569" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142569">Ekkio Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 04, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19535"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142650" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142650">Espiga Capital</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined January 27, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19554"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142777" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142777">Aeon Investment Management (Pty) Ltd</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined January 27, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19045"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142587" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142587">Lexington Partners L.P.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 17, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19786"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144169" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144169">Christian Brothers Investment Services, Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 14, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19307"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142661" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142661">Axcel</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined January 10, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19194"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142629" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142629">Miura Private Equity</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined January 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19881"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143684" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143684">Credit Suisse AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined January 06, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19362"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142571" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142571">Barings LLC f/k/a Babson Capital Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 02, 2014</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19197"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142678" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142678">Cohen & Steers</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 20, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19326"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143107" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143107">Leith Wheeler Investment Counsel Ltd.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined December 18, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19782"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144671" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144671">Silver Creek Capital Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 10, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20139"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142110" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142110">Resource Capital Funds</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 04, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20082"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144720" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144720">Dalmore Capital</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined December 04, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19478"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144643" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144643">Charterhouse Capital Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 29, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19306"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144471" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144471">Aurum Fund Management Ltd.</a></h5> | |
<p class="text-muted"><strong>Bermuda</strong> - Joined November 25, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19184"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145961" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145961">HarbourVest Partners, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 25, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19658"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144667" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144667">Raiffeisen Capital Management</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined November 21, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20055"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143153" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143153">DTZ Investors</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19520"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144649" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144649">Lacan Investimentos</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined November 05, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19772"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141932" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141932">Indigo Capital France</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19702"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144679" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144679">Golding Capital Partners</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 31, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19634"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144465" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144465">Morgan Stanley Investment Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 30, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19890"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144683" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144683">Knight Frank Investment Management LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 29, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19763"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143039" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143039">Waterton Global Resource Management, Inc.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined October 24, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20337"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142734" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142734">Arrowgrass Capital Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 21, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19168"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143048" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143048">Mirova</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined October 21, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19876"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143016" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143016">Alter Equity</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined October 15, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19131"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143151" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143151">Water Asset Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20335"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143993" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143993">Egeria</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19533"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143054" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143054">Cording Real Estate Group Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined September 27, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19351"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144457" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144457">Asahi Life Asset Management Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined September 27, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19171"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145807" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145807">Lannebo Fonder</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined September 24, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19775"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143991" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143991">Empirical Asset Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 23, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19541"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143119" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143119">Suma Capital SGECR</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined September 20, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20198"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144486" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144486">Munich Venture Partners</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 20, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19894"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145909" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145909">Frontier Investment Management</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined September 16, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19607"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143031" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143031">Avanz Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 10, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19189"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143035" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143035">Optimix Vermogensbeheer NV</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined September 10, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19969"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143014" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143014">BPE</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined August 30, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19242"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145914" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145914">Mariner Investment Group, LLC.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 22, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19821"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143037" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143037">Keyhaven Capital Partners Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined August 19, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19757"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143012" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143012">Mitsubishi Corp. – UBS Realty Inc.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined August 16, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19879"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145825" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145825">Amethis Luxembourg S.à.r.l</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined August 14, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19138"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143022" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143022">Mellon Capital Management Corporation</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 12, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19832"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143018" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143018">St Bride's Managers LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined August 09, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20165"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144310" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144310">AAC Capital Benelux</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined August 09, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19016"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144067" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144067">South Suez Capital Ltd</a></h5> | |
<p class="text-muted"><strong>Mauritius</strong> - Joined August 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20157"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144446" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144446">Syntaxis Capital</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined August 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20219"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144451" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144451">Karara Capital</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined July 26, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19748"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143564" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143564">Advanced Capital</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined July 25, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19039"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143483" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143483">ABS Investment Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 23, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19022"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142028" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142028">BlueBay Asset Management LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 19, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19230"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142304" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142304">Invesco Ltd</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 12, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19715"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145989" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145989">Segulah Advisor AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined July 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20130"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143491" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143491">Nomura Corporate Research and Asset Management Inc.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 09, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19930"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144427" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144427">Foresight Group LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 09, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19596"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145933" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145933">Saturna Capital</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 09, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20124"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142485" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142485">Glennmont Partners</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19624"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141936" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141936">Evolem</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined June 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19566"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142529" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142529">Karmijn Kapitaal</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined June 24, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19749"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141953" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141953">TPG Capital Advisors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 17, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20265"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142832" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142832">Clarion Partners, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 13, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19318"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145523" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145523">Vantage Capital Fund Managers (Pty) Ltd</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined June 03, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20313"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143299" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143299">Copa Investimentos</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined May 20, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19348"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143303" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143303">Investisseurs & Partenaires</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined May 20, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19719"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145757" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145757">Ashmore Group plc</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 20, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19173"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143308" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143308">Caixa Econômica Federal - Viter</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined May 16, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19265"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143301" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143301">Income Research & Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 10, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19701"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145983" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145983">Analytic Investors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 10, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19142"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142034" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142034">Basalt Infrastructure</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 02, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19203"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145972" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145972">Bantleon Bank AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined May 02, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19214"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143058" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143058">Franklin Templeton Investments</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19604"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142493" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142493">Intermediate Capital Group plc</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 29, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19712"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141916" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141916">IDF Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 22, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19692"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141985" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141985">Explora S.A.</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined April 22, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19567"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145950" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145950">Halder Beteiligungsberatung GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 22, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19653"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142142" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142142">Banque Bonhôte & Cie SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined April 19, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19212"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145975" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145975">Montefiore Investment</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 19, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19887"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145967" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145967">Allan Gray Group Proprietary Limited</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined April 18, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19058"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142172" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142172">EFA Group</a></h5> | |
<p class="text-muted"><strong>Singapore</strong> - Joined April 12, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19562"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145798" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145798">Tokio Marine Capital Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined April 08, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13913"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142113" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142113">MBO Partenaires</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 04, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19828"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142119" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142119">Unigestion</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined March 25, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20292"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145928" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145928">EdenTree Investment Management Ltd</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 25, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19527"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145942" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145942">Carve Capital AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined March 14, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19287"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142007" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142007">Asset Management One Co.,Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined March 13, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19503"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142094" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142094">MBK Partners</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined March 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19827"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145842" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145842">Siguler Guff & Company, LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20137"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145991" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145991">Hotchkis and Wiley Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined March 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19676"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145995" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145995">Committed Advisors</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 27, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19337"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141956" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141956">Akina Limited</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined February 26, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19050"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145836" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145836">Cliens Kapitalförvaltning AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 26, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19322"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142102" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142102">FINANCE-SA</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19580"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142126" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142126">StepStone Group LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20176"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142184" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142184">Bridgepoint</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19251"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145784" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145784">Commonfund</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19339"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145850" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145850">PRO BTP Finance</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 07, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20032"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141944" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141944">EIG Global Energy Partners</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined February 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19534"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145828" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145828">Redpoint Investment Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined February 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13888"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145860" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145860">Bouwfonds Investment Management</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined February 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19239"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145948" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145948">SOFIDY</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined February 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20150"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145955" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145955">Alm. Brand Bank Asset Management</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined February 01, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19063"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145998" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145998">Leapfrog Investments</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 31, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19780"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142199" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142199">1875 Finance SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined January 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/18979"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142456" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142456">Dragon Capital Group Limited</a></h5> | |
<p class="text-muted"><strong>Virgin Islands, British</strong> - Joined January 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/21099"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142537" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142537">Demeter Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19488"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142543" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142543">Conservative Concept Portfolio Management AG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined January 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19345"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142545" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142545">Imara Holdings Limited</a></h5> | |
<p class="text-muted"><strong>Botswana</strong> - Joined January 28, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19698"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141897" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141897">Landsbankinn hf.</a></h5> | |
<p class="text-muted"><strong>Iceland</strong> - Joined January 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19774"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142003" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142003">Payden & Rygel</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19992"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142222" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142222">M&G Investments</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19810"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142356" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142356">CapMan Plc</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined January 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19278"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145848" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145848">Redwood Investments, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 11, 2013</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20071"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145815" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145815">JD Capital</a></h5> | |
<p class="text-muted"><strong>China</strong> - Joined December 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141912" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141912">Nord Capital Partenaires</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19931"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145788" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145788">Seligson & Co Plc</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined December 13, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20134"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141903" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141903">Capital Croissance</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19275"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141914" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141914">IDI EMERGING MARKETS</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined December 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19694"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145936" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145936">Standish Mellon Asset Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 30, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20169"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142069" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142069">Angra Infraestrutura Gestão de Informações e Investimentos Ltda.</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined November 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19143"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145809" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145809">Wealthcheck Funds Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20338"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145946" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145946">Mianzo Asset Management</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined November 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19844"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142514" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142514">Permal Group Limited</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 21, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20007"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145891" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145891">1919 Investment Counsel</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 21, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/18986"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141938" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141938">INTECH Investment Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 15, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19710"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142362" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142362">Ambienta SGR SpA</a></h5> | |
<p class="text-muted"><strong>Italy</strong> - Joined November 15, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19137"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142461" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142461">Addenda Capital Inc.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined November 15, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19037"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142561" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142561">Alken Asset Management LTD</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined November 15, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19057"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142065" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142065">BanSabadell Pensiones E.G.F.P., S.A.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined November 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19213"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142300" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142300">Alder Fund I AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined October 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19056"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145792" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145792">Global Alpha Capital Management</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined October 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19627"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142076" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142076">Fidelity International</a></h5> | |
<p class="text-muted"><strong>Bermuda</strong> - Joined October 18, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19576"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142134" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142134">G Square</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 18, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19617"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145952" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145952">Sal.Oppenheim jr. & Cie. AG & Co. KGaA</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 18, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20103"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141918" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141918">Dundas Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19521"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142096" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142096">Ubique Asset Management Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined October 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20284"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145889" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145889">Appian Holdings</a></h5> | |
<p class="text-muted"><strong>Jersey</strong> - Joined October 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19155"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145898" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145898">Ciloger</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined October 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19313"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145919" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145919">NextStage</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined October 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19920"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141926" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141926">Eyb & Wallwitz Vermögensmanagement GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 04, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19568"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142257" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142257">TY Danjuma Family Office Limited</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 04, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20282"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145884" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145884">Erste Asset Management GmbH</a></h5> | |
<p class="text-muted"><strong>Austria</strong> - Joined October 04, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19551"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142090" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142090">Deka Investment GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined September 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19486"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142883" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142883">East Capital</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined September 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19523"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143062" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143062">Hexavest</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined September 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19671"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145794" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145794">TG Fund Management B.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined September 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20238"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141899" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141899">CM-CIC Asset Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19323"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141922" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141922">BNP Paribas Real Estate Investment Management FRANCE</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19235"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142037" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142037">Claritas Administração de Recursos LTDA</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19319"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142045" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142045">Pacific Equity Partners</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19978"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142106" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142106">SKAGEN AS</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20143"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142201" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142201">Five Arrows Managers</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19587"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145768" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145768">CVC Capital Partners</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19475"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145985" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145985">FSN Capital Partners</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined September 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19608"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141934" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141934">Daiwa SB Investments</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined September 11, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19477"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142527" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142527">NorthEdge Capital LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined August 23, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19937"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141979" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141979">Dimensional Fund Advisors</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined August 08, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19506"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145872" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145872">Pencarrow Private Equity Management Limited</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined August 08, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19996"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142447" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142447">Keensight Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined August 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19751"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142449" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142449">Salm-Salm & Partner GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined August 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20104"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142350" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142350">Rockspring Property Investment Managers LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 19, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20095"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142621" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142621">Turenne Capital Partenaires</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20279"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142625" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142625">Quadriga Capital</a></h5> | |
<p class="text-muted"><strong>Jersey</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20046"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142810" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142810">Trilogy Global Advisors, LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20271"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142813" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142813">HgCapital LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19672"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142864" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142864">GCM Grosvenor</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined July 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19648"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142216" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142216">ODIN Forvaltning AS (ODIN Fund Management)</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined June 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19954"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144163" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144163">Neuberger Berman Group LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 29, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19907"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142273" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142273">Stone Harbor Investment Partners LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 21, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20193"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142636" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142636">Rockefeller Asset Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined June 21, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20092"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141951" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141951">Carmignac Gestion</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined June 14, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19284"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142281" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142281">Edmond de Rothschild Investment Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined June 07, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19530"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142277" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142277">Truestone Impact Investment Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined June 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20275"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141989" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141989">Breckinridge Capital Advisors</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 31, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19250"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142073" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142073">WHEB Asset Management</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 31, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13952"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142236" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142236">TriLinc Global, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 31, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/13842"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142267" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142267">Triton Investment Management Limited (TIML)</a></h5> | |
<p class="text-muted"><strong>Jersey</strong> - Joined May 31, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20274"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141880" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141880">Dodge & Cox</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19510"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141930" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141930">Harith General Partners</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined May 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19659"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142337" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142337">Treetops Capital LP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 25, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20268"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142333" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142333">Brandon Capital Partners Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined May 18, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19248"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142804" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142804">Mandarine Gestion</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined May 10, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19818"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141920" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141920">Lunar Capital Management</a></h5> | |
<p class="text-muted"><strong>China</strong> - Joined May 03, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19806"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142228" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142228">Orion Capital Managers LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined May 03, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19972"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142279" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142279">Progression Capital Africa Limited</a></h5> | |
<p class="text-muted"><strong>Mauritius</strong> - Joined May 03, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20033"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_143702" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/143702">State Street Global Advisors (SSgA)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined May 03, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20172"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142210" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142210">SUSI Partners AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined April 30, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20203"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141878" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141878">VERIANOS AG</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20318"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142140" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142140">Conservation Forestry Partners, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19344"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142265" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142265">Red Mountain Capital Partners, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20070"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142270" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142270">Wellington Management Company LLP</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20340"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142275" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142275">Deutsche Zurich Pensiones, E.G.F.P., S.A.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19495"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142292" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142292">Southern Pastures Management Limited</a></h5> | |
<p class="text-muted"><strong>New Zealand</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20158"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142296" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142296">Metzler Asset Management GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19842"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142335" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142335">Conning</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19343"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142465" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142465">iCON Infrastructure LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined April 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19691"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141928" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141928">MicroVest Capital Managment LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined April 16, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19845"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141958" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141958">A Plus Finance SAS</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined April 12, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19011"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142203" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142203">ARCH Capital Management Co. Ltd.</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined April 12, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19160"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142230" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142230">Corpfin Capital Asesores, S.A., S.G.E.C.R.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined April 12, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19354"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142039" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142039">Oikocredit International</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19958"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142207" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142207">Goodwell Investments</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19637"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142535" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142535">Cordaid</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19349"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142631" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142631">Incofin</a></h5> | |
<p class="text-muted"><strong>Belgium</strong> - Joined April 02, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19700"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142748" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142748">Triple Jump</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined April 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20273"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142214" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142214">Latour Capital Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 30, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19778"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142220" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142220">UFF - African Agri Investments</a></h5> | |
<p class="text-muted"><strong>South Africa</strong> - Joined March 30, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20288"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142255" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142255">T&D Asset Management Co., Ltd.</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined March 30, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20223"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_147576" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/147576">Vinci Partners Investimentos Ltda.</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 23, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a class="not-active pull-right"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig-disabled.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142467" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142467">Votorantim Asset Management DTVM Ltda.</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined March 22, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20334"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142834" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142834">OREIMA</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined March 13, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19956"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142646" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142646">Craigmore Sustainables LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined March 08, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19357"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142708" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142708">Magellan Asset Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined March 08, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19812"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142717" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142717">United Bankers Ltd</a></h5> | |
<p class="text-muted"><strong>Finland</strong> - Joined March 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20301"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142737" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142737">ABN AMRO Bank N.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined March 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19021"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142725" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142725">Accent Equity Partners AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 28, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19026"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142519" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142519">Union Bancaire Privée, UBP SA</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined February 23, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20294"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142757" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142757">Portobello Capital</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined February 23, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20020"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142850" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142850">Quoniam Asset Management GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined February 23, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20051"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142750" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142750">Berkeley Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 09, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19224"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142779" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142779">Luxcara Advisory GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined February 09, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19808"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142836" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142836">CapVest Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined February 09, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19280"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142773" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142773">HealthInvest Partners AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined February 03, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19665"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142244" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142244">Sarasin & Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20120"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142339" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142339">Pampa Capital Management LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19983"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142342" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142342">Qube Investment Management Inc.</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20048"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144708" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144708">Janus Capital Management LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 26, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19734"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142445" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142445">Truffle Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20276"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142454" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142454">Highclere International Investors LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined January 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19673"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142491" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142491">Optimum Asset Management Inc</a></h5> | |
<p class="text-muted"><strong>Canada</strong> - Joined January 20, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19970"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142604" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142604">Core Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined January 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19352"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142614" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142614">Azulis Capital</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined January 06, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19196"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142672" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142672">Sompo Japan Nipponkoa Asset Management Co., Ltd</a></h5> | |
<p class="text-muted"><strong>Japan</strong> - Joined January 01, 2012</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20152"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142591" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142591">Astorg Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 22, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19176"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142664" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142664">Providence Capital N.V.</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined December 22, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20035"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142554" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142554">GW&K Investment Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 21, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19652"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142593" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142593">Weinberg Capital Partners</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 21, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20339"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142610" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142610">C WorldWide Asset Management</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined December 21, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19285"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142668" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142668">Dansk Vaekstkapital</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined December 16, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19479"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_144372" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/144372">Ibercaja Pensión E.G.F.P., S.A.</a></h5> | |
<p class="text-muted"><strong>Spain</strong> - Joined December 16, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19687"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142685" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142685">Goldman Sachs Asset Management (GSAM)</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 15, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19635"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142648" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142648">PanAgora Asset Management</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined December 07, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19984"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142693" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142693">Cap Decisif Management</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 07, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19274"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142767" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142767">Eurazeo</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined December 07, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19559"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145653" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145653">Plato Investment Management</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined December 07, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20018"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145811" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145811">Falcon Investment Advisors, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 24, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19570"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145803" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145803">Apax Partners MidMarket SAS</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined November 17, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19153"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145817" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145817">Continuity Capital Partners Pty Limited</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined November 17, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19346"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145819" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145819">Alpha Private Equity Fund 6 Management Company SARL</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined November 17, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19064"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142026" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142026">BayernInvest Kapitalverwaltungsgesellschaft mbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined November 16, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19217"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141883" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141883">Terra Firma Capital Partners</a></h5> | |
<p class="text-muted"><strong>Guernsey</strong> - Joined November 11, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20237"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142197" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142197">Priveq Advisory AB</a></h5> | |
<p class="text-muted"><strong>Sweden</strong> - Joined November 04, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20031"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142023" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142023">AB</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined November 01, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19018"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141901" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141901">Riviera Gestora de Recursos Ltda</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined October 27, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20087"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145846" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145846">Creation Investments Capital Management, LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 27, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19358"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141905" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141905">Growth Capital Partners LLP</a></h5> | |
<p class="text-muted"><strong>United Kingdom</strong> - Joined October 19, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19650"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141963" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141963">BRZ Investimentos Ltda</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined October 19, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19256"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141965" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141965">IVM Caring Capital</a></h5> | |
<p class="text-muted"><strong>Netherlands</strong> - Joined October 19, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19731"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145821" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145821">Raymond James Asset Management International</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 19, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20064"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145865" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145865">HQ Capital International L.P.</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 19, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19678"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142132" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142132">Aquila Capital Green Assets GmbH</a></h5> | |
<p class="text-muted"><strong>Germany</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19157"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142285" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142285">NewQuest Capital Partners</a></h5> | |
<p class="text-muted"><strong>Hong Kong</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19915"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142840" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142840">GMO Renewable Resources LLC</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19632"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145775" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145775">Intrinsic Investment Management Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined October 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19714"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142104" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142104">CRP Companhia de Participações</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined October 06, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19366"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141991" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141991">Strømme Microfinance AS</a></h5> | |
<p class="text-muted"><strong>Norway</strong> - Joined October 05, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20196"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142179" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142179">PIMCO</a></h5> | |
<p class="text-muted"><strong>United States</strong> - Joined September 13, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20015"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142781" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142781">Phoenix Portfolios Pty Ltd</a></h5> | |
<p class="text-muted"><strong>Australia</strong> - Joined September 12, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/20013"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_145800" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/145800">Dasos Capital Oy</a></h5> | |
<p class="text-muted"><strong>Luxembourg</strong> - Joined September 09, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19481"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_141999" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/141999">LBO France</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined September 08, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19779"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142084" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142084">Obviam AG</a></h5> | |
<p class="text-muted"><strong>Switzerland</strong> - Joined September 08, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19950"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142108" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142108">FAMA Investimentos</a></h5> | |
<p class="text-muted"><strong>Brazil</strong> - Joined September 08, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19571"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142855" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142855">Global Evolution</a></h5> | |
<p class="text-muted"><strong>Denmark</strong> - Joined August 24, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19630"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142702" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142702">Degroof Petercam Asset Management (DPAM)</a></h5> | |
<p class="text-muted"><strong>Belgium</strong> - Joined August 23, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19483"> | |
<img class="img img-responsive" src="/pri_website_base/static/src/img/attachment-sig.png" /> | |
</a> | |
</div> | |
</div> | |
<div id="invest_142869" class="row"> | |
<div class="col-xs-8 col-md-9"> | |
<h5><a href="/organisation/142869">Capzanine</a></h5> | |
<p class="text-muted"><strong>France</strong> - Joined August 23, 2011</p> | |
</div> | |
<div class="col-xs-4 col-md-1 report-download"> | |
<a target="_blank" class=" pull-right" href="/download_report/19281"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment