diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bad52e4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,43 @@ +name: Philea CI Pipeline + +on: + push: + branches: [ main, dev ] + pull_request: + branches: [ main, dev ] + +jobs: + ci: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pip' + + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run Linter (Flake8) + run: | + # Stop the build if there are Python syntax errors or undefined names + flake8 src/ --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 src/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + + - name: Syntax Compile Check (Build) + run: | + python -m compileall src/ + + - name: Run Unit Tests + env: + GEMINI_API_KEY: "dummy_key" + run: | + PYTHONPATH=src python -m unittest discover -s src/tests diff --git a/.gitignore b/.gitignore index 97ebcdb..3d06b4c 100644 --- a/.gitignore +++ b/.gitignore @@ -114,6 +114,11 @@ celerybeat.pid # Environments .env +.env.local +.env.*.local +.env.development +.env.test +.env.production .venv env/ venv/ @@ -159,3 +164,7 @@ Thumbs.db .vscode/ *.swp *.swo + +# Project custom ignores +response.html +detail_response.txt diff --git a/hinchilla.ipynb b/hinchilla.ipynb new file mode 100644 index 0000000..ebe795e --- /dev/null +++ b/hinchilla.ipynb @@ -0,0 +1,83 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "id": "ae4a2344", + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "from bs4 import BeautifulSoup, NavigableString\n", + "import pprint\n", + "import time\n", + "import json\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "3d6f0b4e", + "metadata": {}, + "outputs": [], + "source": [ + "r = requests.get(\"https://www.hinchilla.com/funder-directory\")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "acdb647c", + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"response.html\",\"w\") as f:\n", + " f.write(r.text)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "9796f913", + "metadata": {}, + "outputs": [], + "source": [ + "# Detailpage: \n", + "url = \"https://www.hinchilla.com/funder-directory/three-peas.txt\"\n", + "r = requests.get(url)\n", + "with open(\"detail_response.txt\",\"w\") as f:\n", + " f.write(r.text)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "815d5933", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.2" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/philea.ipynb b/philea.ipynb new file mode 100644 index 0000000..c2d60ee --- /dev/null +++ b/philea.ipynb @@ -0,0 +1,58070 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "initial_id", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:00:24.947070Z", + "start_time": "2026-06-10T09:00:24.934112Z" + }, + "collapsed": true + }, + "outputs": [], + "source": [ + "import requests\n", + "from bs4 import BeautifulSoup, NavigableString\n", + "import pprint\n", + "import time\n", + "import json\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "c7d29f11b76a0395", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-06T11:34:09.833514Z", + "start_time": "2026-06-06T11:34:09.821376Z" + }, + "collapsed": false + }, + "outputs": [], + "source": [ + "url_members = \"https://philea.eu/wp-admin/admin-ajax.php\"\n", + "payload = {\"action\":\"phileamap\"}\n", + "headers = {\n", + " \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\"}" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "9e0dc314c35450c4", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-06T11:34:11.901437Z", + "start_time": "2026-06-06T11:34:10.556126Z" + }, + "collapsed": false + }, + "outputs": [], + "source": [ + "response = requests.post(url_members, data=payload, headers=headers)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "e1825e7f6704aeca", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-06T11:34:47.149897Z", + "start_time": "2026-06-06T11:34:47.139616Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'address': 'Rapenburgerstraat 173, Amsterdam, Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24788,\n", + " 'link': 'https://philea.eu/members/women-win/',\n", + " 'name': 'Women Win',\n", + " 'position': {'address': 'Rapenburgerstraat 173, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.368106,\n", + " 'lng': 4.9061522,\n", + " 'name': 'Rapenburgerstraat 173',\n", + " 'place_id': 'ChIJe7GIF70JxkcRidx5mdy_5lo',\n", + " 'post_code': '1011 VM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Rapenburgerstraat',\n", + " 'street_number': '173',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.womenwin.org'},\n", + " {'address': 'Untermüli 7, Zug, Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24787,\n", + " 'link': 'https://philea.eu/members/toni-piech-foundation/',\n", + " 'name': 'Toni Piëch Foundation',\n", + " 'position': {'address': 'Untermüli 7, Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.1804502,\n", + " 'lng': 8.517739599999999,\n", + " 'name': 'Untermüli 7',\n", + " 'place_id': 'ChIJ3aGnIFuqmkcRI2DbBPUXHU4',\n", + " 'post_code': '6302',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Untermüli',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.tonipiechfoundation.org/'},\n", + " {'address': '5 Canada Square, Canary Wharf, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24786,\n", + " 'link': 'https://philea.eu/members/thomson-reuters-foundation/',\n", + " 'name': 'Thomson Reuters Foundation',\n", + " 'position': {'address': '5 Canada Square, Canary Wharf, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5053031,\n", + " 'lng': -0.0184089,\n", + " 'name': '5 Canada Square',\n", + " 'place_id': 'ChIJVVVVZLcCdkgR_3T82OOWo4g',\n", + " 'post_code': 'E14 5AQ',\n", + " 'state': 'England',\n", + " 'street_name': 'Canada Square',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.trust.org/'},\n", + " {'address': 'C/O Sedulo Office 605, Albert House 256-260 OldStreet',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24785,\n", + " 'link': 'https://philea.eu/members/the-social-change-nest/',\n", + " 'name': 'The Social Change Nest',\n", + " 'position': {'address': 'C/O Sedulo Office 605, Albert House 256-260 '\n", + " 'OldStreet',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.52586489999999,\n", + " 'lng': -0.0851961,\n", + " 'place_id': 'EjY2MDUsIEFsYmVydCBIb3VzZSwgMjU2LTI2MCBPbGQgU3QsIExvbmRvbiBFQzFWIDlERCwgVUsiHxodChYKFAoSCZ0SA4KlHHZIEYPcSixfvSwKEgM2MDU',\n", + " 'post_code': 'EC1V 9DD',\n", + " 'state': 'England',\n", + " 'street_name': 'Old Street',\n", + " 'street_name_short': 'Old St',\n", + " 'street_number': '256-260',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://thesocialchangenest.org/'},\n", + " {'address': '1411 K Street Northwest suite 1200, Washington, DC, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24784,\n", + " 'link': 'https://philea.eu/members/the-global-fund-for-children/',\n", + " 'name': 'The Global Fund for Children',\n", + " 'position': {'address': '1411 K Street Northwest suite 1200, Washington, DC, '\n", + " 'USA',\n", + " 'city': 'Washington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.9028791,\n", + " 'lng': -77.0325632,\n", + " 'name': '1411 K St NW suite 1200',\n", + " 'place_id': 'EjIxNDExIEsgU3QgTlcgc3VpdGUgMTIwMCwgV2FzaGluZ3RvbiwgREMgMjAwMDUsIFVTQSImGiQKFgoUChIJuzc5m5W3t4kRCvjD-YXHC70SCnN1aXRlIDEyMDA',\n", + " 'post_code': '20005',\n", + " 'state': 'District of Columbia',\n", + " 'state_short': 'DC',\n", + " 'street_name': 'K Street Northwest',\n", + " 'street_name_short': 'K St NW',\n", + " 'street_number': '1411',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.globalfundforchildren.org'},\n", + " {'address': 'Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24783,\n", + " 'link': 'https://philea.eu/members/suna-and-inan-kirac-foundation/',\n", + " 'name': 'Suna and İnan Kıraç Foundation',\n", + " 'position': {'address': 'Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - '\n", + " 'İstanbul',\n", + " 'country': 'Türkiye',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0328293,\n", + " 'lng': 28.9752418,\n", + " 'place_id': 'ChIJV6w28F-3yhQRQoOqAcLxHTg',\n", + " 'post_code': '34430',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Meşrutiyet Caddesi',\n", + " 'street_name_short': 'Meşrutiyet Cd.',\n", + " 'street_number': 'No:47',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sunaveinankiracvakfi.org.tr/'},\n", + " {'address': 'Grimmereds by 5, Västra Frölunda, Sweden',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24781,\n", + " 'link': 'https://philea.eu/members/hidden-universe-biodiversity-foundation-hub/',\n", + " 'name': 'Hidden Universe: Biodiversity Foundation (HUB)',\n", + " 'position': {'address': 'Grimmereds by 5, Västra Frölunda, Sweden',\n", + " 'city': 'Västra Frölunda',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 57.6651926,\n", + " 'lng': 11.8938683,\n", + " 'name': 'Grimmereds by 5',\n", + " 'place_id': 'ChIJs0Ih5C2NT0YR-dceWQWRP78',\n", + " 'post_code': '426 70',\n", + " 'state': 'Västra Götalands län',\n", + " 'street_name': 'Grimmereds by',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.hu-b.org/'},\n", + " {'address': 'Mauerkircherstraße 12, Munich-Bogenhausen, Germany',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24780,\n", + " 'link': 'https://philea.eu/members/andrea-von-braun-stiftung/',\n", + " 'name': 'Andrea von Braun Stiftung',\n", + " 'position': {'address': 'Mauerkircherstraße 12, Munich-Bogenhausen, Germany',\n", + " 'city': 'München',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.1497328,\n", + " 'lng': 11.6012926,\n", + " 'name': 'Mauerkircherstraße 12',\n", + " 'place_id': 'ChIJW8XsIJ91nkcRKrCt_VJpuAk',\n", + " 'post_code': '81679',\n", + " 'state': 'Bayern',\n", + " 'state_short': 'BY',\n", + " 'street_name': 'Mauerkircherstraße',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.avbstiftung.de/en/'},\n", + " {'address': 'Salyutna St. 5, office 49 Kyiv, 04111 Ukraine',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24510,\n", + " 'link': 'https://philea.eu/members/philanthropy-in-ukraine/',\n", + " 'name': 'Philanthropy in Ukraine',\n", + " 'position': {'address': 'Salyutna St. 5, office 49 Kyiv, 04111 Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4503596,\n", + " 'lng': 30.5245025,\n", + " 'place_id': 'ChIJBUVa4U7P1EAR_kYBF9IxSXY',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv city',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://philanthropy.in.ua'},\n", + " {'address': 'Calle de Alcalá, 27, Madrid, Spain',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24509,\n", + " 'link': 'https://philea.eu/members/confederacion-espanola-de-cajas-de-ahorros/',\n", + " 'name': 'Confederación Española de Cajas de Ahorros',\n", + " 'position': {'address': 'Calle de Alcalá, 27, Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.41845850000001,\n", + " 'lng': -3.6986681,\n", + " 'name': 'C. Alcalá, 27',\n", + " 'place_id': 'ChIJA_9ksYYoQg0RAu5gh9in4Tw',\n", + " 'post_code': '28014',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle Alcalá',\n", + " 'street_name_short': 'C. Alcalá',\n", + " 'street_number': '27',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.ceca.es'},\n", + " {'address': 'Blue House Yard, River Park Road, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24508,\n", + " 'link': 'https://philea.eu/members/we-are-purposeful/',\n", + " 'name': 'We Are Purposeful',\n", + " 'position': {'address': 'Blue House Yard, River Park Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5972015,\n", + " 'lng': -0.1116638,\n", + " 'name': 'Blue House Yard',\n", + " 'place_id': 'ChIJ0zqdKOIbdkgR0qSLHN8y2Pk',\n", + " 'post_code': 'N22 7TB',\n", + " 'state': 'England',\n", + " 'street_name': 'River Park Road',\n", + " 'street_name_short': 'River Park Rd',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://wearepurposeful.org/'},\n", + " {'address': 'Jurkovićeva ulica 3, Zagreb, Croatia',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24507,\n", + " 'link': 'https://philea.eu/members/solidarna-foundation/',\n", + " 'name': 'SOLIDARNA Foundation',\n", + " 'position': {'address': 'Jurkovićeva ulica 3, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.81490180000001,\n", + " 'lng': 15.9903851,\n", + " 'name': 'Jurkovićeva ul. 3',\n", + " 'place_id': 'ChIJ61VlCKvXZUcR8czyDuySB1g',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Jurkovićeva ulica',\n", + " 'street_name_short': 'Jurkovićeva ul.',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.solidarna.hr'},\n", + " {'address': '67 Mountain Blvd suite 201, Warren, NJ, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24506,\n", + " 'link': 'https://philea.eu/members/segal-family-foundation/',\n", + " 'name': 'Segal Family Foundation',\n", + " 'position': {'address': '67 Mountain Blvd suite 201, Warren, NJ, USA',\n", + " 'city': 'Warren',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.6161249,\n", + " 'lng': -74.49897480000001,\n", + " 'name': '67 Mountain Blvd suite 201',\n", + " 'place_id': 'EjE2NyBNb3VudGFpbiBCbHZkIHN1aXRlIDIwMSwgV2FycmVuLCBOSiAwNzA1OSwgVVNBIiUaIwoWChQKEgk7T-HRTLnDiRH69HeOmheIEBIJc3VpdGUgMjAx',\n", + " 'post_code': '07059',\n", + " 'state': 'New Jersey',\n", + " 'state_short': 'NJ',\n", + " 'street_name': 'Mountain Boulevard',\n", + " 'street_name_short': 'Mountain Blvd',\n", + " 'street_number': '67',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.segalfamilyfoundation.org'},\n", + " {'address': 'Place de Cornavin 2, Geneva, Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24505,\n", + " 'link': 'https://philea.eu/members/partners-for-a-new-economy/',\n", + " 'name': 'Partners for a New Economy',\n", + " 'position': {'address': 'Place de Cornavin 2, Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2084926,\n", + " 'lng': 6.1428645,\n", + " 'name': 'Pl. de Cornavin 2',\n", + " 'place_id': 'ChIJk1z4kidljEcRgdv-BG4Y7wc',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Cornavin',\n", + " 'street_name_short': 'Pl. de Cornavin',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://p4ne.org/'},\n", + " {'address': 'Læderstræde 20, Copenhagen, Denmark',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24504,\n", + " 'link': 'https://philea.eu/members/kr-foundation/',\n", + " 'name': 'KR Foundation',\n", + " 'position': {'address': 'Læderstræde 20, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.67819679999999,\n", + " 'lng': 12.5780295,\n", + " 'name': 'Læderstræde 20',\n", + " 'place_id': 'ChIJ6_tpKRFTUkYRT5AVaL66Ess',\n", + " 'post_code': '1201',\n", + " 'street_name': 'Læderstræde',\n", + " 'street_number': '20',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.krfnd.org'},\n", + " {'address': 'Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de '\n", + " 'Panamá ',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24503,\n", + " 'link': 'https://philea.eu/members/fundacion-avina/',\n", + " 'name': 'Fundación AVINA',\n", + " 'position': {'address': 'Evelio Lara, Casa N°131-B Ciudad del Saber, '\n", + " 'Clayton, Ciudad de Panamá ',\n", + " 'city': 'Panamá',\n", + " 'country': 'Panama',\n", + " 'country_short': 'PA',\n", + " 'lat': 8.9971189,\n", + " 'lng': -79.5823125,\n", + " 'place_id': 'ChIJLfCbTzWmrI8Rsl2lERV3mXk',\n", + " 'state': 'Provincia de Panamá',\n", + " 'street_name': 'Calle Evelio Lara',\n", + " 'street_name_short': 'C. Evelio Lara',\n", + " 'zoom': 15},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.avina.net'},\n", + " {'address': 'Forte Petrazza, Località Forte Petrazza, Camaro Superiore, '\n", + " 'Metropolitan City of Messina, Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24502,\n", + " 'link': 'https://philea.eu/members/fondazione-messina/',\n", + " 'name': 'Fondazione MeSSInA',\n", + " 'position': {'address': 'Forte Petrazza, Località Forte Petrazza, Camaro '\n", + " 'Superiore, Metropolitan City of Messina, Italy',\n", + " 'city': 'Camaro Superiore',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 38.1814676,\n", + " 'lng': 15.5276218,\n", + " 'name': 'Forte Petrazza',\n", + " 'place_id': 'ChIJTT7gPJROFBMRVEOMJ1_wBs4',\n", + " 'post_code': '98151',\n", + " 'state': 'Sicilia',\n", + " 'state_short': 'ME',\n", + " 'street_name': 'Località Forte Petrazza',\n", + " 'street_number': 'SNC',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://fdcmessina.org/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24349,\n", + " 'link': 'https://philea.eu/members/volkswagen-slovakia-foundation/',\n", + " 'name': 'Volkswagen Slovakia Foundation',\n", + " 'position': {'address': 'Jána Jánoša 1 bratislava',\n", + " 'city': 'Bratislava',\n", + " 'country': 'Slovakia',\n", + " 'country_short': 'SK',\n", + " 'lat': 48.1477745,\n", + " 'lng': 17.1071553,\n", + " 'place_id': 'ChIJl2HKCjaJbEcRaEOI_YKbH2M',\n", + " 'state': 'Bratislava Region',\n", + " 'zoom': 12},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nadacia-volkswagen.sk/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24348,\n", + " 'link': 'https://philea.eu/members/virgin-unite/',\n", + " 'name': 'Virgin Unite',\n", + " 'position': {'address': '50a Charlotte Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5198393,\n", + " 'lng': -0.1358514,\n", + " 'name': '50a Charlotte St.',\n", + " 'place_id': 'ChIJj2Wr5CsbdkgRDcBQ-Ujjj-0',\n", + " 'post_code': 'W1T 2NS',\n", + " 'state': 'England',\n", + " 'street_name': 'Charlotte Street',\n", + " 'street_name_short': 'Charlotte St.',\n", + " 'street_number': '50a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.virginunite.com'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24347,\n", + " 'link': 'https://philea.eu/members/romanian-federation-for-community-foundations/',\n", + " 'name': 'Romanian Federation for Community Foundations',\n", + " 'position': {'address': 'Int. Dridu nr. 7, bl. F13, sc. B, ap. 68, sector 1',\n", + " 'city': 'Bucharest',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 44.452444,\n", + " 'lng': 26.0856777,\n", + " 'place_id': 'ChIJX-KIi7kDskARFJCx_PyWpi4',\n", + " 'state': 'Bucharest',\n", + " 'zoom': 16},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://ffcr.ro/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24346,\n", + " 'link': 'https://philea.eu/members/grundfos-foundation/',\n", + " 'name': 'Grundfos Foundation',\n", + " 'position': {'address': 'Poul Due Jensens Vej 7, Bjerringbro, Denmark',\n", + " 'city': 'Bjerringbro',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 56.3802866,\n", + " 'lng': 9.6690239,\n", + " 'name': 'Poul Due Jensens Vej 7',\n", + " 'place_id': 'ChIJ1faoOTH4S0YRTPoMyHenWaM',\n", + " 'post_code': '8850',\n", + " 'street_name': 'Poul Due Jensens Vej',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.pdjf.dk/en/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24345,\n", + " 'link': 'https://philea.eu/members/exea-impact/',\n", + " 'name': 'Exea Impact',\n", + " 'position': {'address': \"Puig Brands Torre 2, Plaça d'Europa, 34, \"\n", + " \"L'Hospitalet de Llobregat, Spain\",\n", + " 'city': \"L'Hospitalet de Llobregat\",\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.357969,\n", + " 'lng': 2.1227306,\n", + " 'name': 'Puig Brands Torre 2',\n", + " 'place_id': 'ChIJ-a07tUCZpBIRjPXXZQm5n6c',\n", + " 'post_code': '08908',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': \"Plaça d'Europa\",\n", + " 'street_name_short': \"Pl. d'Europa\",\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.exeaimpact.org'},\n", + " {'address': '',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'id': 24344,\n", + " 'link': 'https://philea.eu/members/bulgarian-fund-for-women/',\n", + " 'name': 'Bulgarian Fund for Women',\n", + " 'position': {'address': 'улица „Солунска“ 26, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6929644,\n", + " 'lng': 23.3191476,\n", + " 'name': 'Solunska Street 26',\n", + " 'place_id': 'ChIJUXfHw2yFqkARScaIU7ZQWBI',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'Solunska Street',\n", + " 'street_number': '26',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://bgfundforwomen.org/en/'},\n", + " {'address': 'MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23661,\n", + " 'link': 'https://philea.eu/members/kosovar-civil-society-foundation/',\n", + " 'name': 'Kosovar Civil Society Foundation',\n", + " 'position': {'address': 'MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine '\n", + " 'Kosovo',\n", + " 'city': 'Pristina',\n", + " 'lat': 42.6673053,\n", + " 'lng': 21.1643067,\n", + " 'place_id': 'ChIJJwkRBeaeVBMRWrleON-_ZZM',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.kcsfoundation.org/'},\n", + " {'address': 'Chiswick Business Park, Chiswick High Road, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23660,\n", + " 'link': 'https://philea.eu/members/swarovski-foundation/',\n", + " 'name': 'Swarovski Foundation',\n", + " 'position': {'address': 'Chiswick Business Park, Chiswick High Road, London, '\n", + " 'UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4930604,\n", + " 'lng': -0.2748696,\n", + " 'name': 'Chiswick Business Park',\n", + " 'place_id': 'ChIJ-RcBF8UPdkgRvDCVVgd4zeE',\n", + " 'post_code': 'W4 5AN',\n", + " 'state': 'England',\n", + " 'street_name': 'Chiswick High Road',\n", + " 'street_name_short': 'Chiswick High Rd.',\n", + " 'street_number': '566',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.swarovskifoundation.org/'},\n", + " {'address': '14 Rue Royale, Paris, France',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23659,\n", + " 'link': 'https://philea.eu/members/loreal-fund-for-women/',\n", + " 'name': \"L'Oréal Fund for Women\",\n", + " 'position': {'address': '14 Rue Royale, Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8681213,\n", + " 'lng': 2.3233605,\n", + " 'name': '14 Rue Royale',\n", + " 'place_id': 'ChIJfYB-yTJu5kcRdfw3SUPUciI',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Royale',\n", + " 'street_number': '14',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://fondationloreal.com/en'},\n", + " {'address': '600 Brickell Ave ste 3200, Miami, FL, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23658,\n", + " 'link': 'https://philea.eu/members/foundever-org/',\n", + " 'name': 'Foundever.org',\n", + " 'position': {'address': '600 Brickell Ave ste 3200, Miami, FL, USA',\n", + " 'city': 'Miami',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 25.7679928,\n", + " 'lng': -80.19088359999999,\n", + " 'name': '600 Brickell Ave ste 3200',\n", + " 'place_id': 'Ei82MDAgQnJpY2tlbGwgQXZlIHN0ZSAzMjAwLCBNaWFtaSwgRkwgMzMxMzEsIFVTQSIkGiIKFgoUChIJ4bneW7y32YgRNTylH3ujU3oSCHN0ZSAzMjAw',\n", + " 'post_code': '33131',\n", + " 'state': 'Florida',\n", + " 'state_short': 'FL',\n", + " 'street_name': 'Brickell Avenue',\n", + " 'street_name_short': 'Brickell Ave',\n", + " 'street_number': '600',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://foundever.org/'},\n", + " {'address': 'Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23656,\n", + " 'link': 'https://philea.eu/members/fondazione-capellino/',\n", + " 'name': 'Fondazione Capellino',\n", + " 'position': {'address': 'Via de Marini, 1, Genoa, Metropolitan City of '\n", + " 'Genoa, Italy',\n", + " 'city': 'Genova',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.4084736,\n", + " 'lng': 8.900479599999999,\n", + " 'name': 'Via de Marini, 1',\n", + " 'place_id': 'ChIJ-1idExVB0xIRJw8sHBtYXOM',\n", + " 'post_code': '16149',\n", + " 'state': 'Liguria',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Via de Marini',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://fondazionecapellino.org/en/fondazione-capellino'},\n", + " {'address': 'Bahnhofstrasse 25, Zug, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 22839,\n", + " 'link': 'https://philea.eu/members/ursimone-wietslibach-foundation/',\n", + " 'name': 'Ursimone Wietslibach Foundation',\n", + " 'position': {'address': 'Bahnhofstrasse 25, Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.1701744,\n", + " 'lng': 8.515627799999999,\n", + " 'name': 'Bahnhofstrasse 25',\n", + " 'place_id': 'ChIJb1ehsPeqmkcRtoioJVUTpCc',\n", + " 'post_code': '6300',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Bahnhofstrasse',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.uswf.ch/'},\n", + " {'address': 'ul. \"Malyovitsa\" 6, Sofia, Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'id': 22838,\n", + " 'link': 'https://philea.eu/members/america-for-bulgaria-foundation/',\n", + " 'name': 'America for Bulgaria Foundation',\n", + " 'position': {'address': 'ul. \"Malyovitsa\" 6, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6892438,\n", + " 'lng': 23.3287435,\n", + " 'name': 'ul. \"Malyovitsa\" 6',\n", + " 'place_id': 'ChIJAfc9RQuFqkAR6o_IfC7KKpk',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'ulitsa \"Malyovitsa\"',\n", + " 'street_name_short': 'ul. \"Malyovitsa\"',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.us4bg.org/'},\n", + " {'address': 'Radarweg 29, Amsterdam, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 22835,\n", + " 'link': 'https://philea.eu/members/elsevier-foundation/',\n", + " 'name': 'Elsevier Foundation',\n", + " 'position': {'address': 'Radarweg 29, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3930616,\n", + " 'lng': 4.8363326,\n", + " 'name': 'Radarweg 29',\n", + " 'place_id': 'EitSYWRhcndlZyAyOSwgMTA0MyBOWCBBbXN0ZXJkYW0sIE5ldGhlcmxhbmRzIjASLgoUChIJq2KEVfbixUcRt3nmid8idK4QHSoUChIJD8YwIffixUcRaDKZ2LuKHFg',\n", + " 'post_code': '1043 NX',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Radarweg',\n", + " 'street_number': '29',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.elsevierfoundation.org/'},\n", + " {'address': 'Sankt Annæ Plads 13, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 22834,\n", + " 'link': 'https://philea.eu/members/augustinus-fonden/',\n", + " 'name': 'Augustinus Fonden',\n", + " 'position': {'address': 'Sankt Annæ Plads 13, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.68190389999999,\n", + " 'lng': 12.5909885,\n", + " 'name': 'Sankt Annæ Pl. 13',\n", + " 'place_id': 'ChIJY8VV7SJTUkYRmmLSG77hh9k',\n", + " 'post_code': '1250',\n", + " 'street_name': 'Sankt Annæ Plads',\n", + " 'street_name_short': 'Sankt Annæ Pl.',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.augustinusfonden.dk'},\n", + " {'address': 'Solunska Street 56, Sofia, Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': 'info@osi.bg',\n", + " 'id': 22833,\n", + " 'link': 'https://philea.eu/members/open-society-institute-sofia/',\n", + " 'name': 'Open Society Institute - Sofia',\n", + " 'position': {'address': 'Solunska Street 56, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6935377,\n", + " 'lng': 23.3159479,\n", + " 'name': 'Solunska Street 56',\n", + " 'place_id': 'ChIJpS2sRmuFqkARZiEgSzLlBn4',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'Solunska Street',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://osis.bg/'},\n", + " {'address': 'Mykola Shpak Street, 3 Kyiv Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'development@kse.ua',\n", + " 'id': 22831,\n", + " 'link': 'https://philea.eu/members/kyiv-school-of-economics-foundation/',\n", + " 'name': 'Kyiv School of Economics Foundation',\n", + " 'position': {'address': 'Mykola Shpak Street, 3 Kyiv Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4503596,\n", + " 'lng': 30.5245025,\n", + " 'place_id': 'ChIJBUVa4U7P1EAR_kYBF9IxSXY',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv city',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://foundation.kse.ua/en/'},\n", + " {'address': 'Dilova Street, Kyiv, Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'info@philanthropy.com.ua',\n", + " 'id': 22829,\n", + " 'link': 'https://philea.eu/members/national-network-of-local-philanthropy-development/',\n", + " 'name': 'National Network of Local Philanthropy Development',\n", + " 'position': {'address': 'Dilova Street, Kyiv, Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4299123,\n", + " 'lng': 30.5154433,\n", + " 'name': 'Dilova Street',\n", + " 'place_id': 'Eh9EaWxvdmEgU3QsIEt5aXYsIFVrcmFpbmUsIDAyMDAwIi4qLAoUChIJ1yz_nB3P1EARaMS788ZVsPASFAoSCQVFWuFOz9RAEf5GARfSMUl2',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv',\n", + " 'street_name': 'Dilova Street',\n", + " 'street_name_short': 'Dilova St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://philanthropy.com.ua/'},\n", + " {'address': 'Linienstraße 65A, Berlin, Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 22472,\n", + " 'link': 'https://philea.eu/members/iac-berlin-ggmbh/',\n", + " 'name': 'iac Berlin gGmbH',\n", + " 'position': {'address': 'Linienstraße 65A, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5289842,\n", + " 'lng': 13.4040638,\n", + " 'name': 'Linienstraße 65A',\n", + " 'place_id': 'ChIJQci4muNRqEcRG2l7p--nrGY',\n", + " 'post_code': '10119',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Linienstraße',\n", + " 'street_number': '65A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.iac-berlin.org/'},\n", + " {'address': 'James Wattstraat 100, Amsterdam, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 22471,\n", + " 'link': 'https://philea.eu/members/european-fundraising-association/',\n", + " 'name': 'European Fundraising Association',\n", + " 'position': {'address': 'James Wattstraat 100, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3489327,\n", + " 'lng': 4.9200102,\n", + " 'name': 'James Wattstraat 100',\n", + " 'place_id': 'ChIJD1rgOX8JxkcRYuPQsH_Wods',\n", + " 'post_code': '1097 DM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'James Wattstraat',\n", + " 'street_number': '100',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.efa-net.eu'},\n", + " {'address': 'Oberer Kehlberg 6, Attendorn, Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 22470,\n", + " 'link': 'https://philea.eu/members/famtastisch-stiftung/',\n", + " 'name': 'Famtastisch Stiftung',\n", + " 'position': {'address': 'Oberer Kehlberg 6, Attendorn, Germany',\n", + " 'city': 'Attendorn',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.12166990000001,\n", + " 'lng': 7.8947567,\n", + " 'name': 'Oberer Kehlberg 6',\n", + " 'place_id': 'ChIJkW1EcX9TuUcR32j7vTHKvp0',\n", + " 'post_code': '57439',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Oberer Kehlberg',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.famtastisch.org/'},\n", + " {'address': 'Stationsplein 4, 3818 LE Amersfoort, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@wildeganzen.nl',\n", + " 'id': 22469,\n", + " 'link': 'https://philea.eu/members/wilde-ganzen-foundation/',\n", + " 'name': 'Wilde Ganzen Foundation',\n", + " 'position': {'address': 'Stationsplein 4, 3818 LE Amersfoort, Netherlands',\n", + " 'city': 'Amersfoort',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.1526612269682,\n", + " 'lng': 5.376777648925781,\n", + " 'place_id': 'ChIJQbg3Cx1ExkcRD4O9sCSuDQk',\n", + " 'post_code': '3818 LE',\n", + " 'state': 'Utrecht',\n", + " 'state_short': 'UT',\n", + " 'street_name': 'Stationsplein',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.wildeganzen.org/'},\n", + " {'address': 'Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid',\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'id': 22468,\n", + " 'link': 'https://philea.eu/members/fundacion-vertex-bioenergy/',\n", + " 'name': 'Fundación Vertex Bioenergy',\n", + " 'position': {'address': 'Avda. de Europa, 19 Edificio 3, Módulo Bajo-D '\n", + " 'Madrid',\n", + " 'city': 'Pozuelo de Alarcón',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4417766,\n", + " 'lng': -3.7868106,\n", + " 'place_id': 'ChIJ__-vYVKGQQ0RhN01Pl6ZWFw',\n", + " 'post_code': '28224',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Avenida de Europa',\n", + " 'street_name_short': 'Av. de Europa',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fundacionvertexbioenergy.org/'},\n", + " {'address': 'Calle Amor de Dios, 1, Madrid, Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'madrid@tba21.org',\n", + " 'id': 22467,\n", + " 'link': 'https://philea.eu/members/fundacion-tba21/',\n", + " 'name': 'Fundación TBA21',\n", + " 'position': {'address': 'Calle Amor de Dios, 1, Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.41334930000001,\n", + " 'lng': -3.6981334,\n", + " 'name': 'C. del Amor de Dios, 1',\n", + " 'place_id': 'ChIJewKr_oEoQg0RxBicjH9bnRo',\n", + " 'post_code': '28014',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle del Amor de Dios',\n", + " 'street_name_short': 'C. del Amor de Dios',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://tba21.org/'},\n", + " {'address': 'IJsseldijk 1, Veessen, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@dobecology.nl',\n", + " 'id': 22466,\n", + " 'link': 'https://philea.eu/members/dob-ecology/',\n", + " 'name': 'DOB Ecology',\n", + " 'position': {'address': 'IJsseldijk 1, Veessen, Netherlands',\n", + " 'city': 'Veessen',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.36253480000001,\n", + " 'lng': 6.0737668,\n", + " 'name': 'IJsseldijk 1',\n", + " 'place_id': 'ChIJg07EdUfDx0cRUwJ6cw84_5M',\n", + " 'post_code': '8194 LA',\n", + " 'state': 'Gelderland',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'IJsseldijk',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://dobecology.nl/'},\n", + " {'address': 'Gutenbergstrasse 2, 8002 Zürich, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 22435,\n", + " 'link': 'https://philea.eu/members/dalyan-foundation/',\n", + " 'name': 'Dalyan Foundation',\n", + " 'position': {'address': 'Gutenbergstrasse 2, 8002 Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3649605,\n", + " 'lng': 8.531086199999999,\n", + " 'name': 'Gutenbergstrasse 2',\n", + " 'place_id': 'Ei1HdXRlbmJlcmdzdHJhc3NlIDIsIDgwMDIgWsO8cmljaCwgU3dpdHplcmxhbmQiMBIuChQKEgmtPgL--AmQRxFgEMpvwdmLtBACKhQKEgnr9f9T-AmQRxGZH2W1fPJRRg',\n", + " 'post_code': '8002',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Gutenbergstrasse',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dalyanfoundation.ch'},\n", + " {'address': 'Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'hello@betterwayfound.org',\n", + " 'id': 22431,\n", + " 'link': 'https://philea.eu/members/better-way-foundation/',\n", + " 'name': 'Better Way Foundation',\n", + " 'position': {'address': 'Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. '\n", + " 'Box 83 Vaduz',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.140606,\n", + " 'lng': 9.521298,\n", + " 'place_id': 'ChIJKRSZjWcxm0cRuxoXjh3PbSA',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '5',\n", + " 'zoom': 17},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.betterwayfound.org/'},\n", + " {'address': '223 Pentonville Road, London, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 21875,\n", + " 'link': 'https://philea.eu/members/henry-smith-charity-the/',\n", + " 'name': 'Henry Smith Charity, The',\n", + " 'position': {'address': '223 Pentonville Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5311058,\n", + " 'lng': -0.1177295,\n", + " 'name': '223 Pentonville Rd',\n", + " 'place_id': 'EiUyMjMgUGVudG9udmlsbGUgUmQsIExvbmRvbiBOMSA5SlksIFVLIjESLwoUChIJ311bUT8bdkgRKrgVcp1suFwQ3wEqFAoSCQdNeyhBG3ZIEcT_WQxy9qXB',\n", + " 'post_code': 'N1 9JY',\n", + " 'state': 'England',\n", + " 'street_name': 'Pentonville Road',\n", + " 'street_name_short': 'Pentonville Rd',\n", + " 'street_number': '223',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.henrysmithcharity.org.uk'},\n", + " {'address': '30 Merrion Square North, Dublin 2, Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': '',\n", + " 'id': 21874,\n", + " 'link': 'https://philea.eu/members/community-foundation-ireland-the/',\n", + " 'name': 'Community Foundation Ireland, The',\n", + " 'position': {'address': '30 Merrion Square North, Dublin 2, Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.3399796,\n", + " 'lng': -6.2469008,\n", + " 'name': '30 Merrion Square N',\n", + " 'place_id': 'ChIJhXzOupYOZ0gRLBxH_tehGxg',\n", + " 'post_code': 'D02 VE40',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Merrion Square North',\n", + " 'street_name_short': 'Merrion Square N',\n", + " 'street_number': '30',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.communityfoundation.ie/'},\n", + " {'address': 'P.O. Box 15652 1001 ND Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 21873,\n", + " 'link': 'https://philea.eu/members/limelight-foundation/',\n", + " 'name': 'Limelight Foundation',\n", + " 'position': {'address': 'P.O. Box 15652 1001 ND Amsterdam Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://limelight.foundation'},\n", + " {'address': 'Amaliegade 8, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 21872,\n", + " 'link': 'https://philea.eu/members/hempel-foundation/',\n", + " 'name': 'Hempel Foundation',\n", + " 'position': {'address': 'Amaliegade 8, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.68221029999999,\n", + " 'lng': 12.5919428,\n", + " 'name': 'Amaliegade 8',\n", + " 'place_id': 'ChIJQ4_o8CJTUkYRJ-clvQyOk9Q',\n", + " 'post_code': '1256',\n", + " 'street_name': 'Amaliegade',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hempel.com'},\n", + " {'address': 'Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 21871,\n", + " 'link': 'https://philea.eu/members/casa-ronald-mcdonald-italia-ets/',\n", + " 'name': 'Casa Ronald McDonald Italia ETS',\n", + " 'position': {'address': 'Via del Bosco Rinnovato, 6, Assago, Metropolitan '\n", + " 'City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.40910329999999,\n", + " 'lng': 9.150266199999999,\n", + " 'name': 'Via del Bosco Rinnovato, 6',\n", + " 'place_id': 'ChIJZTd90W7DhkcR3ZRwmSUwJUI',\n", + " 'post_code': '20057',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via del Bosco Rinnovato',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazioneronald.org'},\n", + " {'address': 'Holbeinstrasse 22, Zürich, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 21352,\n", + " 'link': 'https://philea.eu/members/seedling-foundation/',\n", + " 'name': 'Seedling Foundation',\n", + " 'position': {'address': 'Holbeinstrasse 22, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.36403809999999,\n", + " 'lng': 8.5495932,\n", + " 'name': 'Holbeinstrasse 22',\n", + " 'place_id': 'ChIJkQ5y9FKnmkcR1XFE1E0cLcw',\n", + " 'post_code': '8008',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Holbeinstrasse',\n", + " 'street_number': '22',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.seedlingfoundation.ch/'},\n", + " {'address': 'The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'kulturfonden@norden.org',\n", + " 'id': 21350,\n", + " 'link': 'https://philea.eu/members/the-nordic-culture-fund/',\n", + " 'name': 'The Nordic Culture Fund',\n", + " 'position': {'address': 'The Nordic Culture Fund Ved Stranden 18 1061 '\n", + " 'Copenhagen K Denmark',\n", + " 'city': 'Copenhagen',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6760968,\n", + " 'lng': 12.5683371,\n", + " 'place_id': 'ChIJIz2AXDxTUkYRuGeU5t1-3QQ',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nordiskkulturfond.org/en'},\n", + " {'address': 'ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, '\n", + " 'Czechia',\n", + " 'country': 'Czech Republic',\n", + " 'email': 'nadacnifond@skoda-auto.cz',\n", + " 'id': 21349,\n", + " 'link': 'https://philea.eu/members/skoda-auto-endowment-fund/',\n", + " 'name': 'Škoda Auto Endowment Fund',\n", + " 'position': {'address': 'ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá '\n", + " 'Boleslav 1, Czechia',\n", + " 'city': 'Mladá Boleslav 1',\n", + " 'country': 'Czechia',\n", + " 'country_short': 'CZ',\n", + " 'lat': 50.426853,\n", + " 'lng': 14.9218356,\n", + " 'name': 'tř. Václava Klementa 869',\n", + " 'place_id': 'ChIJj__Bq7JVCUcRafZj7Fmtf3o',\n", + " 'post_code': '293 01',\n", + " 'state': 'Středočeský kraj',\n", + " 'street_name': 'třída Václava Klementa',\n", + " 'street_name_short': 'tř. Václava Klementa',\n", + " 'street_number': '869',\n", + " 'zoom': 16},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nfsa.cz'},\n", + " {'address': 'Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@rambollfonden.com',\n", + " 'id': 21348,\n", + " 'link': 'https://philea.eu/members/ramboll-foundation/',\n", + " 'name': 'Ramboll Foundation',\n", + " 'position': {'address': 'Ramboll Head Office, Hannemanns Allé 53, '\n", + " 'Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.62738719999999,\n", + " 'lng': 12.5794091,\n", + " 'name': 'Ramboll Head Office',\n", + " 'place_id': 'ChIJr5-Hi7dUUkYRI0z6TWYsvsI',\n", + " 'post_code': '2300',\n", + " 'street_name': 'Hannemanns Allé',\n", + " 'street_number': '53',\n", + " 'zoom': 7},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rambollfonden.com'},\n", + " {'address': '38 Rue de la Folie-Regnault, Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'contact@fondationlafrancesengage.org',\n", + " 'id': 21347,\n", + " 'link': 'https://philea.eu/members/fondation-la-france-sengage-2/',\n", + " 'name': \"Fondation la France s'engage\",\n", + " 'position': {'address': '38 Rue de la Folie-Regnault, Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8587116,\n", + " 'lng': 2.3874303,\n", + " 'name': '38 Rue de la Folie-Regnault',\n", + " 'place_id': 'ChIJbYW78fRt5kcRxL6iBM85laE',\n", + " 'post_code': '75011',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue de la Folie-Regnault',\n", + " 'street_number': '38',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationlafrancesengage.org/'},\n", + " {'address': 'Kering, 40 Rue de Sèvres, 75007 Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'keringfoundation@kering.com',\n", + " 'id': 21346,\n", + " 'link': 'https://philea.eu/members/kering-foundation/',\n", + " 'name': 'Kering Foundation',\n", + " 'position': {'address': 'Kering, 40 Rue de Sèvres, 75007 Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8493753,\n", + " 'lng': 2.322048200000001,\n", + " 'name': 'Kering',\n", + " 'place_id': 'ChIJ2WJgKNNx5kcRKJ-0GozMdGU',\n", + " 'post_code': '75007',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue de Sèvres',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.keringfoundation.org'},\n", + " {'address': '116 Park Street, London W1K 6AF, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 21345,\n", + " 'link': 'https://philea.eu/members/jeremy-coller-foundation/',\n", + " 'name': 'Jeremy Coller Foundation',\n", + " 'position': {'address': '116 Park Street, London W1K 6AF, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51337789999999,\n", + " 'lng': -0.1556058,\n", + " 'name': '116 Park St',\n", + " 'place_id': 'ChIJ6QZN4TIFdkgRkbtGcWYNg2Q',\n", + " 'post_code': 'W1K 6AF',\n", + " 'state': 'England',\n", + " 'street_name': 'Park Street',\n", + " 'street_name_short': 'Park St',\n", + " 'street_number': '116',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.jeremycollerfoundation.org'},\n", + " {'address': 'Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ',\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'id': 21344,\n", + " 'link': 'https://philea.eu/members/fundacion-mapfre/',\n", + " 'name': 'Fundación Mapfre',\n", + " 'position': {'address': 'Fundación Mapfre Paseo de Recoletos, 23 28004 '\n", + " 'Madrid Spain ',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4225631,\n", + " 'lng': -3.6921871,\n", + " 'place_id': 'ChIJD3h76EEpQg0RifCjWOgs4ag',\n", + " 'post_code': '28004',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Paseo de Recoletos',\n", + " 'street_name_short': 'P.º de Recoletos',\n", + " 'street_number': '23',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionmapfre.org'},\n", + " {'address': 'Wildlife Conservation Society EU Boulevard Louis Schmidt 64 1040 '\n", + " 'Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'id': 20891,\n", + " 'link': 'https://philea.eu/members/wildlife-conservation-society-eu/',\n", + " 'name': 'Wildlife Conservation Society EU',\n", + " 'position': {'address': 'Boulevard Louis Schmidt 64, 1040 Etterbeek, '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Etterbeek',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8297338,\n", + " 'lng': 4.4023405,\n", + " 'name': 'Bd Louis Schmidt 64',\n", + " 'place_id': 'ChIJ22ZKe7TEw0cRVL69dfxF_jc',\n", + " 'post_code': '1040',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Boulevard Louis Schmidt',\n", + " 'street_name_short': 'Bd Louis Schmidt',\n", + " 'street_number': '64',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://brussels.wcs.org/'},\n", + " {'address': 'Global Greengrants Fund UK WeWork - Office Space & Coworking, '\n", + " 'City Road, London, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@globalgreengrants.org.uk',\n", + " 'id': 20754,\n", + " 'link': 'https://philea.eu/members/global-greengrants-fund-uk/',\n", + " 'name': 'Global Greengrants Fund UK',\n", + " 'position': {'address': 'Global Greengrants Fund UK WeWork - Office Space & '\n", + " 'Coworking, City Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5278912,\n", + " 'lng': -0.0882804,\n", + " 'place_id': 'ChIJ1bq4GBYddkgR45V6NnYZ7jY',\n", + " 'post_code': 'EC1V 1AZ',\n", + " 'state': 'England',\n", + " 'street_name': 'City Road',\n", + " 'street_name_short': 'City Rd',\n", + " 'street_number': '145',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.greengrants.org/who-we-are/global-greengrants-fund-uk/'},\n", + " {'address': 'Institute of Science and Technology Austria (ISTA), Am Campus, '\n", + " 'Klosterneuburg, Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'foundation@ista.ac.at',\n", + " 'id': 20620,\n", + " 'link': 'https://philea.eu/members/ista-foundation/',\n", + " 'name': 'ISTA Foundation',\n", + " 'position': {'address': 'Institute of Science and Technology Austria (ISTA), '\n", + " 'Am Campus, Klosterneuburg, Austria',\n", + " 'city': 'Klosterneuburg',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.3095598,\n", + " 'lng': 16.2595038,\n", + " 'name': 'Institute of Science and Technology Austria (ISTA)',\n", + " 'place_id': 'ChIJi8zP6iEMbUcRsygEZMiM3to',\n", + " 'post_code': '3400',\n", + " 'state': 'Niederösterreich',\n", + " 'street_name': 'Am Campus',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://ista.ac.at/en/capital-campaign/the-ista-foundation/'},\n", + " {'address': 'Via Brenta Vecchia 08 Venice, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionedivenezia.org',\n", + " 'id': 20619,\n", + " 'link': 'https://philea.eu/members/fondazione-di-venezia/',\n", + " 'name': 'Fondazione di Venezia',\n", + " 'position': {'address': 'Via Brenta Vecchia 08 venice',\n", + " 'city': 'Venezia',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4920122,\n", + " 'lng': 12.2413301,\n", + " 'place_id': 'Ei5WaWEgQnJlbnRhIFZlY2NoaWEsIDgsIDMwMTcxIFZlbmV6aWEgVkUsIEl0YWx5IjASLgoUChIJ1SUOvT-0fkcRSzcoNnTsZYwQCCoUChIJ5csiuz-0fkcR8cgOeVrbTSU',\n", + " 'post_code': '30171',\n", + " 'state': 'Veneto',\n", + " 'state_short': 'VE',\n", + " 'street_name': 'Via Brenta Vecchia',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionedivenezia.it'},\n", + " {'address': 'Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria.fondazione@fondazionecdp.it',\n", + " 'id': 20618,\n", + " 'link': 'https://philea.eu/members/fondazione-cdp/',\n", + " 'name': 'Fondazione CDP',\n", + " 'position': {'address': 'Via Goito, 4, Rome, Metropolitan City of Rome '\n", + " 'Capital, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.90695119999999,\n", + " 'lng': 12.4995912,\n", + " 'name': 'Via Goito, 4',\n", + " 'place_id': 'ChIJo3v9wglhLxMRPUtWOuax73A',\n", + " 'post_code': '00185',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via Goito',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.cdp.it/sitointernet/it/fondazione.page'},\n", + " {'address': 'Mariahilfer Straße 47/1 1, Vienna, Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'forum@alpbach.org',\n", + " 'id': 20334,\n", + " 'link': 'https://philea.eu/members/european-forum-alpbach/',\n", + " 'name': 'European Forum Alpbach',\n", + " 'position': {'address': 'Mariahilfer Straße 47/1 1, Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.19933379999999,\n", + " 'lng': 16.3553679,\n", + " 'name': 'Mariahilfer Str. 47/1 1',\n", + " 'place_id': 'EitNYXJpYWhpbGZlciBTdHIuIDQ3LzEgMSwgMTA2MCBXaWVuLCBBdXN0cmlhIh8aHQoWChQKEgk7TMYCjwdtRxEAmgsgWkEEBBIDMSAx',\n", + " 'post_code': '1060',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Mariahilfer Straße',\n", + " 'street_name_short': 'Mariahilfer Str.',\n", + " 'street_number': '47',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.alpbach.org'},\n", + " {'address': 'Place Victor Horta 40, Saint-Gilles, Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@equineteurope.org',\n", + " 'id': 20333,\n", + " 'link': 'https://philea.eu/members/european-network-of-equality-bodies/',\n", + " 'name': 'European Network of Equality Bodies',\n", + " 'position': {'address': 'Place Victor Horta 40, Saint-Gilles, Belgium',\n", + " 'city': 'Saint-Gilles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8361342,\n", + " 'lng': 4.3334527,\n", + " 'name': 'Pl. Victor Horta 40',\n", + " 'place_id': 'ChIJpSVAGG3Ew0cRx_izmCdwvpE',\n", + " 'post_code': '1060',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Place Victor Horta',\n", + " 'street_name_short': 'Pl. Victor Horta',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.equineteurope.org/'},\n", + " {'address': '48th Street, New York, NY, USA',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 20331,\n", + " 'link': 'https://philea.eu/members/the-plastic-solutions-fund/',\n", + " 'name': 'The Plastic Solutions Fund',\n", + " 'position': {'address': '48th Street, New York, NY, USA',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.7484533,\n", + " 'lng': -73.91574659999999,\n", + " 'name': '48th Street',\n", + " 'place_id': 'Ehg0OHRoIFN0LCBRdWVlbnMsIE5ZLCBVU0EiLiosChQKEgl78fjtHl_CiRHeaMoLqjVDDBIUChIJOwg_06VPwokRYv534QaPC8g',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': '48th Street',\n", + " 'street_name_short': '48th St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://plasticsolution.org'},\n", + " {'address': 'Park Stara Trešnjevka 4, Zagreb, Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@zhzd.hr',\n", + " 'id': 20330,\n", + " 'link': 'https://philea.eu/members/croatia-for-children-foundation/',\n", + " 'name': 'Croatia for Children Foundation',\n", + " 'position': {'address': 'Park Stara Trešnjevka 4, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.7974746,\n", + " 'lng': 15.9496377,\n", + " 'name': 'Park Stara Trešnjevka 4',\n", + " 'place_id': 'ChIJBfeJYZXWZUcR8ZcqapkBkf0',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Park Stara Trešnjevka',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.zhzd.hr/'},\n", + " {'address': 'Ridlerstraße 55, Munich, Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@child-invest-foundation.org',\n", + " 'id': 20328,\n", + " 'link': 'https://philea.eu/members/childinvest-foundation/',\n", + " 'name': 'ChildInvest Foundation',\n", + " 'position': {'address': 'Ridlerstraße 55, Munich, Germany',\n", + " 'city': 'München',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.1339139,\n", + " 'lng': 11.5316548,\n", + " 'name': 'Ridlerstraße 55',\n", + " 'place_id': 'ChIJ4enG2aXYnUcRDxxsSdtiAlQ',\n", + " 'post_code': '80339',\n", + " 'state': 'Bayern',\n", + " 'state_short': 'BY',\n", + " 'street_name': 'Ridlerstraße',\n", + " 'street_number': '55',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.child-invest-foundation.org'},\n", + " {'address': 'Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, '\n", + " 'France',\n", + " 'country': 'France',\n", + " 'email': 'global-foundation@schneider-electric.com',\n", + " 'id': 20259,\n", + " 'link': 'https://philea.eu/members/schneider-electric-foundation/',\n", + " 'name': 'Schneider Electric Foundation',\n", + " 'position': {'address': 'Schneider Electric, Hive, Rue Joseph Monier, '\n", + " 'Rueil-Malmaison, France',\n", + " 'city': 'Rueil-Malmaison',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.89122709999999,\n", + " 'lng': 2.1722213,\n", + " 'name': 'Schneider Electric',\n", + " 'place_id': 'ChIJHdYfInJj5kcRuX4C4i6Ddss',\n", + " 'post_code': '92500',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Joseph Monier',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.schneider-electric.com/en/about-us/sustainability/foundation/'},\n", + " {'address': 'GivingTuesday, 165 Court Street, New York, US',\n", + " 'country': 'United States',\n", + " 'email': 'info@givingtuesday.org',\n", + " 'id': 20258,\n", + " 'link': 'https://philea.eu/members/givingtuesday/',\n", + " 'name': 'GivingTuesday',\n", + " 'position': {'address': 'GivingTuesday, 165 Court Street, New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.6886093,\n", + " 'lng': -73.9926709,\n", + " 'place_id': 'ChIJ5eJDuE9awokR7gYe3G91m7U',\n", + " 'post_code': '11201',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Court Street',\n", + " 'street_name_short': 'Court St',\n", + " 'street_number': '165',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://givingtuesday.org'},\n", + " {'address': 'Learning Planet Institute, Rue Charles V, Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'team.communication@learningplanetinstitute.org',\n", + " 'id': 20257,\n", + " 'link': 'https://philea.eu/members/learning-planet-institute/',\n", + " 'name': 'Learning Planet Institute',\n", + " 'position': {'address': 'Learning Planet Institute, Rue Charles V, Paris, '\n", + " 'France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.853082,\n", + " 'lng': 2.3628393,\n", + " 'name': 'Learning Planet Institute',\n", + " 'place_id': 'ChIJqa2L8_5x5kcRntOBJ0fhHgs',\n", + " 'post_code': '75004',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Charles V',\n", + " 'street_number': '8 bis',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.learningplanetinstitute.org/en/'},\n", + " {'address': 'ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@enarfoundation.eu',\n", + " 'id': 20255,\n", + " 'link': 'https://philea.eu/members/enar-foundation/',\n", + " 'name': 'ENAR Foundation',\n", + " 'position': {'address': 'ENAR Foundation, Avenue des Arts 3-4-5, Brussels, '\n", + " 'Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8485433,\n", + " 'lng': 4.3697963,\n", + " 'place_id': 'ChIJq6p6QH3Dw0cR0bgFO6FsPbQ',\n", + " 'post_code': '1210',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Avenue des Arts',\n", + " 'street_name_short': 'Av. des Arts',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://enarfoundation.eu'},\n", + " {'address': 'Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fffoundation.eu',\n", + " 'id': 20254,\n", + " 'link': 'https://philea.eu/members/fast-forward-foundation/',\n", + " 'name': 'Fast Forward Foundation',\n", + " 'position': {'address': 'Via Domenichino, 5, Milan, Metropolitan City of '\n", + " 'Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4734579,\n", + " 'lng': 9.1502269,\n", + " 'name': 'Via Domenichino, 5',\n", + " 'place_id': 'ChIJ5-LDyXHBhkcRWyJ4Vv0Labk',\n", + " 'post_code': '20149',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Domenichino',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fffoundation.eu/'},\n", + " {'address': 'Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@trygfonden.dk',\n", + " 'id': 20007,\n", + " 'link': 'https://philea.eu/members/trygfonden/',\n", + " 'name': 'TrygFonden',\n", + " 'position': {'address': 'Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. '\n", + " 'Lyngby Denmark',\n", + " 'city': 'Kongens Lyngby',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7751248,\n", + " 'lng': 12.4944702,\n", + " 'place_id': 'EjhMeW5nYnkgSG92ZWRnYWRlIDQsIDIuIFNhbCwgMjgwMCBLb25nZW5zIEx5bmdieSwgRGVubWFyayIiGiAKFgoUChIJF06CLkJOUkYR3k7-qC9tb_oSBjIuIFNhbA',\n", + " 'post_code': '2800',\n", + " 'street_name': 'Lyngby Hovedgade',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.trygfonden.dk'},\n", + " {'address': 'Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG '\n", + " 'Dordrecht Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'postbus@dioraphte.nl',\n", + " 'id': 20006,\n", + " 'link': 'https://philea.eu/members/dioraphte-foundation/',\n", + " 'name': 'Dioraphte Foundation',\n", + " 'position': {'address': 'Dioraphte Foundation Kuipershaven 169 PO Box 255 - '\n", + " '3300 AG Dordrecht Netherlands',\n", + " 'city': 'Dordrecht',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 51.81749250000001,\n", + " 'lng': 4.666106399999999,\n", + " 'place_id': 'ChIJkU_mmswuxEcRMxnRKINOMzk',\n", + " 'post_code': '3311 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Kuipershaven',\n", + " 'street_number': '169',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dioraphte.nl/'},\n", + " {'address': 'Lautrupsgade 7, 2100 København, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@leo-foundation.org',\n", + " 'id': 20005,\n", + " 'link': 'https://philea.eu/members/leo-foundation/',\n", + " 'name': 'LEO Foundation',\n", + " 'position': False,\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://leo-foundation.org'},\n", + " {'address': 'Helvetas Swiss Intercooperation Weinbergstr. 22a 8021 Zurich '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@helvetas.org',\n", + " 'id': 20004,\n", + " 'link': 'https://philea.eu/members/helvetas-swiss-intercooperation/',\n", + " 'name': 'Helvetas Swiss Intercooperation',\n", + " 'position': {'address': 'Helvetas Swiss Intercooperation, Weinbergstrasse '\n", + " '22a, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3786889,\n", + " 'lng': 8.544779000000002,\n", + " 'name': 'Helvetas Swiss Intercooperation (Hauptsitz)',\n", + " 'place_id': 'ChIJr5nzgaegmkcRFBVK87C2GJ8',\n", + " 'post_code': '8021',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Weinbergstrasse',\n", + " 'street_number': '22a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.helvetas.org/'},\n", + " {'address': 'Fondation Bernheim rue des Bouchers, 53 1000 Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@fondationbernheim.be',\n", + " 'id': 20003,\n", + " 'link': 'https://philea.eu/members/fondation-bernheim/',\n", + " 'name': 'Fondation Bernheim',\n", + " 'position': {'address': 'Fondation Bernheim, Rue des Bouchers 53, 1000 '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8476462,\n", + " 'lng': 4.3551247,\n", + " 'name': 'Fondation Bernheim',\n", + " 'place_id': 'ChIJ0fWLfn_Ew0cRyW5kghihGo4',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue des Bouchers',\n", + " 'street_number': '53',\n", + " 'zoom': 20},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationbernheim.be'},\n", + " {'address': 'Built by Nature Singel 542 1017AZ Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 20001,\n", + " 'link': 'https://philea.eu/members/built-by-nature/',\n", + " 'name': 'Built by Nature',\n", + " 'position': {'address': 'Built by Nature, Singel 542, 1017 AZ Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3665859,\n", + " 'lng': 4.8921853,\n", + " 'name': 'Built by Nature',\n", + " 'place_id': 'ChIJoy0K398JxkcR4vQ7fDg_usU',\n", + " 'post_code': '1017 AZ',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Singel',\n", + " 'street_number': '542',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://builtbn.org/'},\n", + " {'address': '32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': '',\n", + " 'id': 19999,\n", + " 'link': 'https://philea.eu/members/andre-losch-fondation/',\n", + " 'name': 'André Losch Fondation',\n", + " 'position': {'address': '32/34 Bd Grande-Duchesse Charlotte, 1330 Ville '\n", + " 'Haute Luxembourg',\n", + " 'city': 'Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.6119323,\n", + " 'lng': 6.118839499999999,\n", + " 'name': '32/34 Bd Grande-Duchesse Charlotte',\n", + " 'place_id': 'ChIJq5jGyNROlUcRDUrKS2jaj94',\n", + " 'post_code': '1330',\n", + " 'state': 'Luxembourg',\n", + " 'street_name': 'Boulevard Grande-Duchesse Charlotte',\n", + " 'street_name_short': 'Bd Grande-Duchesse Charlotte',\n", + " 'street_number': '32/34',\n", + " 'zoom': 13},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.loschfondation.lu/domaines-intervention/recherche-scientifique/'},\n", + " {'address': '2 Rond-Point Emile Dewoitine, 31700 Blagnac, France',\n", + " 'country': 'France',\n", + " 'email': '',\n", + " 'id': 19998,\n", + " 'link': 'https://philea.eu/members/airbus-foundation/',\n", + " 'name': 'Airbus Foundation',\n", + " 'position': {'address': '2 Rond-Point Emile Dewoitine, 31700 Blagnac, France',\n", + " 'city': 'Blagnac',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 43.621905,\n", + " 'lng': 1.3854504,\n", + " 'name': '2 Rdpt Emile Dewoitine',\n", + " 'place_id': 'ChIJSR5B1be6rhIRYg-1AuSxoLc',\n", + " 'post_code': '31700',\n", + " 'state': 'Occitanie',\n", + " 'street_name': 'Rond-Point Emile Dewoitine',\n", + " 'street_name_short': 'Rdpt Emile Dewoitine',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.airbus.com/en/sustainability/airbus-foundation'},\n", + " {'address': 'Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, '\n", + " 'VA United States',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 19431,\n", + " 'link': 'https://philea.eu/members/ashoka/',\n", + " 'name': 'Ashoka',\n", + " 'position': {'address': 'Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 '\n", + " 'Arlington, VA United States',\n", + " 'city': 'Arlington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.8910142,\n", + " 'lng': -77.0860842,\n", + " 'place_id': 'EjIyMjAwIFdpbHNvbiBCbHZkIDEwMiAzMTMsIEFybGluZ3RvbiwgVkEgMjIyMDEsIFVTQSIjGiEKFgoUChIJB2wlOAy3t4kRtpoV6mrgiecSBzEwMiAzMTM',\n", + " 'post_code': '22201',\n", + " 'state': 'Virginia',\n", + " 'state_short': 'VA',\n", + " 'street_name': 'Wilson Boulevard',\n", + " 'street_name_short': 'Wilson Blvd',\n", + " 'street_number': '2200',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ashoka.org'},\n", + " {'address': 'Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 '\n", + " '95977 Roissy France',\n", + " 'country': '',\n", + " 'email': 'fondation@raja.fr',\n", + " 'id': 19430,\n", + " 'link': 'https://philea.eu/members/fondation-raja-daniele-marcovici/',\n", + " 'name': 'Fondation RAJA-Danièle Marcovici',\n", + " 'position': {'address': 'Fondation RAJA-Danièle Marcovici 16 Rue de l’étang '\n", + " 'Paris Nord 2 95977 Roissy France',\n", + " 'city': 'Roissy-en-France',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 49.00363,\n", + " 'lng': 2.516978,\n", + " 'place_id': 'ChIJA3Nv1oQV5kcRrYuF0xf2gzU',\n", + " 'post_code': '95700',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondation-raja-marcovici.com/accueil.html'},\n", + " {'address': 'Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany',\n", + " 'country': '',\n", + " 'email': 'kontakt@schoepflin-stiftung.de',\n", + " 'id': 19429,\n", + " 'link': 'https://philea.eu/members/schopflin-stiftung/',\n", + " 'name': 'Schöpflin Stiftung',\n", + " 'position': {'address': 'Schoepflin Stiftung Industriestraße 2 D-79541 '\n", + " 'Lörrach Germany',\n", + " 'city': 'Lörrach',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 47.6352322,\n", + " 'lng': 7.6800016,\n", + " 'place_id': 'ChIJId3VtESwkUcR8DfHFU8WNUg',\n", + " 'post_code': '79541',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Industriestraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.schoepflin-stiftung.de/'},\n", + " {'address': 'Quäker-Hilfe Stiftung Rosenstraße 2 32257 Bünde Germany',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 19428,\n", + " 'link': 'https://philea.eu/members/quaker-hilfe-stiftung/',\n", + " 'name': 'Quäker-Hilfe Stiftung',\n", + " 'position': {'address': 'Quäker-Hilfe Stiftung, Rosenstraße 2, 32257 Bünde, '\n", + " 'Germany',\n", + " 'city': 'Bünde',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.2082519,\n", + " 'lng': 8.568406800000002,\n", + " 'name': 'Quäker-Hilfe Stiftung',\n", + " 'place_id': 'ChIJ31AA28JRqEcRjq81O0GBmXo',\n", + " 'post_code': '32257',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Rosenstraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.quaeker-stiftung.de'},\n", + " {'address': 'Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein',\n", + " 'country': '',\n", + " 'email': 'contact@interogofoundation.com',\n", + " 'id': 19427,\n", + " 'link': 'https://philea.eu/members/interogo-foundation/',\n", + " 'name': 'Interogo Foundation',\n", + " 'position': {'address': 'Interogo Foundation Kirchstrasse 79 9490 Vaduz '\n", + " 'Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.1364154,\n", + " 'lng': 9.5137852,\n", + " 'place_id': 'ChIJeUmgUGExm0cR0NhlTwn4z_o',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Kirchstrasse',\n", + " 'street_number': '79',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.interogofoundation.com/'},\n", + " {'address': 'Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari '\n", + " 'Italy',\n", + " 'country': '',\n", + " 'email': 'fondazione@fondazionedisardegna.it',\n", + " 'id': 19426,\n", + " 'link': 'https://philea.eu/members/fondazione-di-sardegna-2/',\n", + " 'name': 'Fondazione di Sardegna',\n", + " 'position': {'address': 'Fondazione Banco di Sardegna Via Carlo Alberto 7 '\n", + " '07100 Sassari Italy',\n", + " 'city': 'Sassari',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 40.7246173,\n", + " 'lng': 8.563093799999999,\n", + " 'place_id': 'ChIJGfsi5fxj3BIRPIs5rQ61EwY',\n", + " 'post_code': '07100',\n", + " 'state': 'Sardegna',\n", + " 'state_short': 'SS',\n", + " 'street_name': 'Via Carlo Alberto',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionedisardegna.it/'},\n", + " {'address': 'Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 '\n", + " 'Geneva 3 Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 19425,\n", + " 'link': 'https://philea.eu/members/fondation-salvia/',\n", + " 'name': 'Fondation Salvia',\n", + " 'position': {'address': 'Fondation Salvia 1, Place de St. Gervais case '\n", + " 'postale 5017 1211 Geneva 3 Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2057902,\n", + " 'lng': 6.143098999999999,\n", + " 'place_id': 'ChIJJfuPPChljEcRiDAUJoXWCho',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Saint-Gervais',\n", + " 'street_name_short': 'Pl. de Saint-Gervais',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'The Partnering Initiative 21B Park End Steet OX1 1HU Oxford '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@tpiglobal.org',\n", + " 'id': 19064,\n", + " 'link': 'https://philea.eu/members/the-partnering-initiative/',\n", + " 'name': 'The Partnering Initiative',\n", + " 'position': {'address': 'The Partnering Initiative, 21B Park End Street, '\n", + " 'Oxford OX1 1HU, United Kingdom',\n", + " 'city': 'Oxford',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.75251379999999,\n", + " 'lng': -1.2685284,\n", + " 'name': 'The Partnering Initiative',\n", + " 'place_id': 'ChIJ95fJfE7BdkgR1A3osMbUerY',\n", + " 'post_code': 'OX1 1HU',\n", + " 'state': 'England',\n", + " 'street_name': 'Park End Street',\n", + " 'street_name_short': 'Park End St',\n", + " 'street_number': '21B',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://tpiglobal.org/'},\n", + " {'address': 'Lloyd’s Register Foundation 71 Fenchurch Street EC3M 4BS London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 19063,\n", + " 'link': 'https://philea.eu/members/lloyds-register-foundation/',\n", + " 'name': 'Lloyd’s Register Foundation',\n", + " 'position': {'address': \"Lloyd's Register Foundation, 71 Fenchurch Street, \"\n", + " 'London EC3M 4BS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51243349999999,\n", + " 'lng': -0.07900689999999998,\n", + " 'name': \"Lloyd's Register Foundation\",\n", + " 'place_id': 'ChIJnepqXKgDdkgRqbSHjgmq5PE',\n", + " 'post_code': 'EC3M 4BS',\n", + " 'state': 'England',\n", + " 'street_name': 'Fenchurch Street',\n", + " 'street_name_short': 'Fenchurch St',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.lrfoundation.org.uk/'},\n", + " {'address': 'Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels '\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'id': 19062,\n", + " 'link': 'https://philea.eu/members/africa-europe-foundation/',\n", + " 'name': 'Africa-Europe Foundation',\n", + " 'position': {'address': 'Africa-Europe Foundation Square de Meeûs 5-6 1000 '\n", + " 'Brussels Belgium',\n", + " 'city': 'Brussels',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8476424,\n", + " 'lng': 4.3571696,\n", + " 'place_id': 'ChIJZ2jHc-2kw0cRpwJzeGY6i8E',\n", + " 'state': 'Brussels',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.africaeuropefoundation.org/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 '\n", + " 'Fologno Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecarifol.it',\n", + " 'id': 19061,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-foligno/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Foligno',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Foligno Corso '\n", + " 'Cavour 36 06034 Fologno Italy',\n", + " 'city': 'Foligno',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.9547732,\n", + " 'lng': 12.7051368,\n", + " 'place_id': 'ChIJT8G4q9uFLhMRdNVFwIORbzU',\n", + " 'post_code': '06034',\n", + " 'state': 'Umbria',\n", + " 'state_short': 'PG',\n", + " 'street_name': 'Corso Camillo Benso Conte di Cavour',\n", + " 'street_number': '36',\n", + " 'zoom': 8},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionecarifol.it/'},\n", + " {'address': 'Aids Fonds Condensatorweg 54 1014 AX Amsterdam Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 18539,\n", + " 'link': 'https://philea.eu/members/aidsfonds/',\n", + " 'name': 'Aidsfonds',\n", + " 'position': {'address': 'Aidsfonds - Soa Aids Nederland, Condensatorweg 54, '\n", + " '1014 AX Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.38975629999999,\n", + " 'lng': 4.8458377,\n", + " 'name': 'Aidsfonds - Soa Aids Nederland',\n", + " 'place_id': 'ChIJzWIc8MIJxkcRp4cGS8EN6_U',\n", + " 'post_code': '1014 AX',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Condensatorweg',\n", + " 'street_number': '54',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://aidsfonds.org/'},\n", + " {'address': 'The Center for Effective Philanthropy 675 Massachusetts Avenue, '\n", + " 'Floor 7 MA 02139 Cambridge United States',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 18478,\n", + " 'link': 'https://philea.eu/members/the-center-for-effective-philanthropy/',\n", + " 'name': 'The Center for Effective Philanthropy',\n", + " 'position': {'address': 'The Center for Effective Philanthropy 675 '\n", + " 'Massachusetts Avenue, Floor 7 MA 02139 Cambridge '\n", + " 'United States',\n", + " 'city': 'Cambridge',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 42.3658993,\n", + " 'lng': -71.1039725,\n", + " 'place_id': 'ChIJfXD4ZlF344kRrJ7D5X296-A',\n", + " 'post_code': '02139',\n", + " 'state': 'Massachusetts',\n", + " 'state_short': 'MA',\n", + " 'street_name': 'Massachusetts Avenue',\n", + " 'street_name_short': 'Massachusetts Ave',\n", + " 'street_number': '675',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.effectivephilanthropy.org'},\n", + " {'address': 'AMREF via Alberico II n. 4 00193 Roma Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 18475,\n", + " 'link': 'https://philea.eu/members/amref-health-africa-ets/',\n", + " 'name': 'Amref Health Africa ETS',\n", + " 'position': {'address': 'AMREF via Alberico II n. 4 00193 Roma Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.9053109,\n", + " 'lng': 12.4617487,\n", + " 'place_id': 'ChIJ1YGl4l1gLxMR04XZGI4kge4',\n", + " 'post_code': '00193',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via Alberico II',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.amref.it'},\n", + " {'address': 'Tobaksvejen 10 DK-2860 Søborg Denmark',\n", + " 'country': '',\n", + " 'email': 'info@villumfonden.dk',\n", + " 'id': 18474,\n", + " 'link': 'https://philea.eu/members/villum-foundation/',\n", + " 'name': 'Villum Foundation',\n", + " 'position': {'address': 'Tobaksvejen 10 DK-2860 Søborg Denmark',\n", + " 'city': 'Søborg',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7406342,\n", + " 'lng': 12.4804293,\n", + " 'place_id': 'ChIJ-ynjlN1RUkYRMLr71Wn-j4Q',\n", + " 'post_code': '2860',\n", + " 'street_name': 'Tobaksvejen',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'Lautrupvang 10 2750 Ballerup Denmark',\n", + " 'country': '',\n", + " 'email': 'Direktion@vellivforeningen.dk',\n", + " 'id': 18472,\n", + " 'link': 'https://philea.eu/members/velliv-foreningen/',\n", + " 'name': 'Velliv Foreningen',\n", + " 'position': {'address': 'Lautrupvang 10 2750 Ballerup Denmark',\n", + " 'city': 'Ballerup',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7289135,\n", + " 'lng': 12.3927329,\n", + " 'place_id': 'ChIJF7wP_21QUkYRFS6MXAtNbKo',\n", + " 'post_code': '2750',\n", + " 'street_name': 'Lautrupvang',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.vellivforeningen.dk/for-ansoegere/'},\n", + " {'address': \"26 St James's Square SW1Y 4JH London United Kingdom\",\n", + " 'country': '',\n", + " 'email': 'info@nilofoundation.org',\n", + " 'id': 18471,\n", + " 'link': 'https://philea.eu/members/nilo-foundation/',\n", + " 'name': 'NILO Foundation',\n", + " 'position': {'address': \"26 St James's Square SW1Y 4JH London United Kingdom\",\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.50669389999999,\n", + " 'lng': -0.1344662,\n", + " 'place_id': 'ChIJXUDS0NAEdkgRPVdkJHnC_ik',\n", + " 'post_code': 'SW1Y 4JH',\n", + " 'state': 'England',\n", + " 'street_name': \"Saint James's Square\",\n", + " 'street_name_short': \"St James's Square\",\n", + " 'street_number': '26',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nilofoundation.org'},\n", + " {'address': 'Omidyar Network 1991 Broadway Street, Suite 200 CA 94063 Redwood '\n", + " 'City United States',\n", + " 'country': 'United States',\n", + " 'email': 'hello@luminategroup.com',\n", + " 'id': 18435,\n", + " 'link': 'https://philea.eu/members/luminate/',\n", + " 'name': 'Luminate',\n", + " 'position': {'address': 'Omidyar Network, 1991 Broadway # 200, Redwood City, '\n", + " 'CA 94063, United States',\n", + " 'city': 'Redwood City',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 37.4863992,\n", + " 'lng': -122.2259237,\n", + " 'name': 'Omidyar Network',\n", + " 'place_id': 'ChIJB25ooKyjj4ARhSlz72Tfib8',\n", + " 'post_code': '94063',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'street_name': 'Broadway',\n", + " 'street_number': '1991',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://luminategroup.com/about'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 17761,\n", + " 'link': 'https://philea.eu/members/swiss-philanthropy-foundation/',\n", + " 'name': 'Swiss Philanthropy Foundation',\n", + " 'position': {'address': 'Swiss Philanthropy Foundation Mael Steiner c/o wise '\n", + " '- philanthropy advisers P.O. BOX 2124 1211 Geneva 1 '\n", + " 'Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2084926,\n", + " 'lng': 6.1428645,\n", + " 'place_id': 'ChIJI5dq4ddkjEcR_z3_-mSdQaA',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Cornavin',\n", + " 'street_name_short': 'Pl. de Cornavin',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.swissphilanthropy.ch/en/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 17760,\n", + " 'link': 'https://philea.eu/members/stiftelsen-brita-maria-renlunds-minne-sr/',\n", + " 'name': 'Stiftelsen Brita Maria Renlunds minne sr',\n", + " 'position': {'address': 'Stiftelsen Brita Maria Renlunds minne sr Annegatan '\n", + " '12, 4 vån 00120 Helsinki Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.16463510000001,\n", + " 'lng': 24.9398198,\n", + " 'place_id': 'EixBbm5hbmthdHUgMTIgNCB2w6VuLCAwMDEyMCBIZWxzaW5raSwgRmlubGFuZCIiGiAKFgoUChIJTWwcLMoLkkYRkL2E5qrN52cSBjQgdsOlbg',\n", + " 'post_code': '00120',\n", + " 'state': 'Uusimaa',\n", + " 'street_name': 'Annankatu',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bmr.fi'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 17759,\n", + " 'link': 'https://philea.eu/members/bolton-hope-foundation/',\n", + " 'name': 'Be for Education Foundation',\n", + " 'position': {'address': 'Bolton Hope Foundation Via G.B. Pirelli 19 20124 '\n", + " 'Milan Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.48368900000001,\n", + " 'lng': 9.199039299999999,\n", + " 'place_id': 'ChIJrY4HrM_GhkcRUe1V3QZbhUA',\n", + " 'post_code': '20124',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Giovanni Battista Pirelli',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.beforeducation.org'},\n", + " {'address': 'Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 '\n", + " 'Vilnius Lithuania',\n", + " 'country': 'Lithuania',\n", + " 'email': 'info@mjjfondas.lt',\n", + " 'id': 17758,\n", + " 'link': 'https://philea.eu/members/marius-jakulis-jason-foundation/',\n", + " 'name': 'Marius Jakulis Jason Foundation',\n", + " 'position': {'address': 'Marius Jakulis Jason Foundation Liepyno str. 25A 5a '\n", + " 'LT-08108 Vilnius Lithuania',\n", + " 'city': 'Vilnius',\n", + " 'country': 'Lithuania',\n", + " 'country_short': 'LT',\n", + " 'lat': 54.6991928,\n", + " 'lng': 25.2524047,\n", + " 'place_id': 'EitMaWVweW5vIGcuIDI1YS01YSwgMDgxMDggVmlsbml1cywgTGl0aHVhbmlhIh4aHAoWChQKEgmRXrIX-5PdRhFrciarVovwwxICNWE',\n", + " 'post_code': '08108',\n", + " 'state': 'Vilniaus apskritis',\n", + " 'state_short': 'Vilniaus apskr.',\n", + " 'street_name': 'Liepyno gatvė',\n", + " 'street_name_short': 'Liepyno g.',\n", + " 'street_number': '25a',\n", + " 'zoom': 19},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://mjjfondas.lt/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': 'info@moleskinefoundation.org',\n", + " 'id': 17756,\n", + " 'link': 'https://philea.eu/members/moleskine-foundation/',\n", + " 'name': 'Moleskine Foundation',\n", + " 'position': {'address': 'Moleskine Foundation Onlus, Via Bergognone, 34, '\n", + " '20144 Milan, Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4524972,\n", + " 'lng': 9.164271500000002,\n", + " 'name': 'Moleskine Foundation Onlus',\n", + " 'place_id': 'ChIJJ8q9z9rDhkcRj84mpcEyto8',\n", + " 'post_code': '20144',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Bergognone',\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://moleskinefoundation.org/'},\n", + " {'address': 'Stiftung Mercator Schweiz Gartenstrasse 33 8027 Zürich '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 16610,\n", + " 'link': 'https://philea.eu/members/stiftung-mercator-schweiz/',\n", + " 'name': 'Stiftung Mercator Schweiz',\n", + " 'position': {'address': 'Stiftung Mercator Schweiz, Gartenstrasse, Zürich, '\n", + " 'Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3678088,\n", + " 'lng': 8.532472,\n", + " 'name': 'Stiftung Mercator Schweiz',\n", + " 'place_id': 'ChIJZfulegIKkEcRo4ONX65lX3o',\n", + " 'post_code': '8002',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Gartenstrasse',\n", + " 'street_number': '33',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.stiftung-mercator.ch'},\n", + " {'address': 'The END Fund 495 Green Lanes N13 4BS London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@end.org',\n", + " 'id': 13608,\n", + " 'link': 'https://philea.eu/members/the-end-fund/',\n", + " 'name': 'The END Fund',\n", + " 'position': {'address': '495 Green Lanes, London N13 4BS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.6230729,\n", + " 'lng': -0.1051977,\n", + " 'name': '495 Green Lanes',\n", + " 'place_id': 'ChIJ5YfndjcZdkgRXTek7Bo7hIg',\n", + " 'post_code': 'N13 4BS',\n", + " 'state': 'England',\n", + " 'street_name': 'Green Lanes',\n", + " 'street_number': '495',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.end.org/'},\n", + " {'address': 'Anglo American Foundation 17 Charterhouse Street EC1N 6RA London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 13606,\n", + " 'link': 'https://philea.eu/members/anglo-american-foundation/',\n", + " 'name': 'Anglo American Foundation',\n", + " 'position': {'address': 'Anglo American PLC, 17 Charterhouse Street, London '\n", + " 'EC1N 6RA, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5184283,\n", + " 'lng': -0.1063213,\n", + " 'name': 'Anglo American PLC',\n", + " 'place_id': 'ChIJ7ycpArgbdkgRg_p5S-TCD0g',\n", + " 'post_code': 'EC1N 6RA',\n", + " 'state': 'England',\n", + " 'street_name': 'Charterhouse Street',\n", + " 'street_name_short': 'Charterhouse St',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.angloamericangroupfoundation.org/'},\n", + " {'address': 'The Fidelity UK Foundation Beech Gate, Millfield Lane Lower '\n", + " 'Kingswood KT20 6RP Tadworth, Surrey United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 12992,\n", + " 'link': 'https://philea.eu/members/fidelity-uk-foundation/',\n", + " 'name': 'Fidelity UK Foundation',\n", + " 'position': {'address': 'Millfield Lane, Lower Kingswood, Tadworth, Surrey '\n", + " 'KT20 6RP, United Kingdom',\n", + " 'city': 'Tadworth',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.2784529,\n", + " 'lng': -0.2068448,\n", + " 'name': 'Millfield Lane',\n", + " 'place_id': 'EiNNaWxsZmllbGQgTG4sIFRhZHdvcnRoIEtUMjAgNlJQLCBVSyIuKiwKFAoSCTNXWI9B43VIESEh-XZ45Bx3EhQKEgn58JtuQuN1SBGMsxM1jCzF9g',\n", + " 'post_code': 'KT20 6RP',\n", + " 'state': 'England',\n", + " 'street_name': 'Millfield Lane',\n", + " 'street_name_short': 'Millfield Ln',\n", + " 'zoom': 9},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://filfoundations.fidelityinternational.com/'},\n", + " {'address': 'Central European University Quellenstraße 51 1100 Vienna Austria',\n", + " 'country': 'Austria',\n", + " 'email': '',\n", + " 'id': 12935,\n", + " 'link': 'https://philea.eu/members/central-european-university/',\n", + " 'name': 'Central European University',\n", + " 'position': {'address': 'Central European University, Quellenstraße 51, 1100 '\n", + " 'Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.17394590000001,\n", + " 'lng': 16.3880969,\n", + " 'name': 'Central European University',\n", + " 'place_id': 'ChIJWXRULX-pbUcRGlulmPW2N1A',\n", + " 'post_code': '1100',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Quellenstraße',\n", + " 'street_number': '51',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.ceu.edu'},\n", + " {'address': '120 West 45th Street 25th Floor 10027 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@hfg.org',\n", + " 'id': 11209,\n", + " 'link': 'https://philea.eu/members/the-harry-frank-guggenheim-foundation/',\n", + " 'name': 'The Harry Frank Guggenheim Foundation',\n", + " 'position': {'address': '120 West 45th Street 25th Floor 10027 New York '\n", + " 'United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.75704,\n", + " 'lng': -73.9838798,\n", + " 'place_id': 'EjExMjAgVyA0NXRoIFN0IDI1dGggRmxvb3IsIE5ldyBZb3JrLCBOWSAxMDAzNiwgVVNBIiYaJAoWChQKEgkBOH9tVVjCiRHTjQ7ex4woThIKMjV0aCBGbG9vcg',\n", + " 'post_code': '10036',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'West 45th Street',\n", + " 'street_name_short': 'W 45th St',\n", + " 'street_number': '120',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hfg.org/'},\n", + " {'address': 'Moncalvo 1 10131 Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionepaideia.it',\n", + " 'id': 11208,\n", + " 'link': 'https://philea.eu/members/fondazione-paideia/',\n", + " 'name': 'Fondazione Paideia',\n", + " 'position': {'address': 'Via Moncalvo, 1, 10131 Turin, Metropolitan City of '\n", + " 'Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0616438,\n", + " 'lng': 7.702081499999998,\n", + " 'name': 'Via Moncalvo, 1',\n", + " 'place_id': 'ChIJpSp9MZlyiEcRS9_Guuacc6w',\n", + " 'post_code': '10131',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via Moncalvo',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionepaideia.it'},\n", + " {'address': 'Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9508,\n", + " 'link': 'https://philea.eu/members/association-of-foundations-in-the-netherlands-fin/',\n", + " 'name': 'Association of Foundations in the Netherlands (FIN)',\n", + " 'position': {'address': 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.132633,\n", + " 'lng': 5.291265999999999,\n", + " 'name': 'Netherlands',\n", + " 'place_id': 'ChIJu-SH28MJxkcRnwq9_851obM',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://fondseninnederland.nl/'},\n", + " {'address': 'Denmark',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9496,\n", + " 'link': 'https://philea.eu/members/knowledge-centre-for-danish-foundations/',\n", + " 'name': 'Knowledge Centre for Danish Foundations',\n", + " 'position': {'address': 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 56.26392,\n", + " 'lng': 9.501785,\n", + " 'name': 'Denmark',\n", + " 'place_id': 'ChIJ-1-U7rYnS0YRzZLgw9BDh1I',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': ''},\n", + " {'address': ' Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 '\n", + " 'Wien',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9490,\n", + " 'link': 'https://philea.eu/members/austrian-foundations-association-verband-fur-gemeinnutziges-stiften/',\n", + " 'name': 'Austrian Foundations Association (Verband für Gemeinnütziges '\n", + " 'Stiften)',\n", + " 'position': {'address': ' Verband für gemeinnütziges Stiften Schottenring '\n", + " '16/3. OG, 1010 Wien',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.2151846,\n", + " 'lng': 16.366538,\n", + " 'place_id': 'ChIJWUNmvrwHbUcRwiwzHXndics',\n", + " 'post_code': '1010',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Schottenring',\n", + " 'street_number': '16',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.gemeinnuetzig-stiften.at/'},\n", + " {'address': 'Croatia',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9486,\n", + " 'link': 'https://philea.eu/members/croatian-foundation-forum/',\n", + " 'name': 'Croatian Foundation Forum',\n", + " 'position': {'address': 'Croatia',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.1,\n", + " 'lng': 15.2,\n", + " 'name': 'Croatia',\n", + " 'place_id': 'ChIJ7ZXdCghBNBMRfxtm4STA86A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': ''},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9482,\n", + " 'link': 'https://philea.eu/members/association-of-norwegian-foundations/',\n", + " 'name': 'Association of Norwegian Foundations',\n", + " 'position': {'address': 'Norway',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 60.47202399999999,\n", + " 'lng': 8.468945999999999,\n", + " 'name': 'Norway',\n", + " 'place_id': 'ChIJv-VNj0VoEkYRK9BkuJ07sKE',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://stiftelsesforeningen.no/medlemmer/stiftelser'},\n", + " {'address': 'Baštová 5, 811 03, Bratislava, Slovak Republic ',\n", + " 'country': 'Slovakia',\n", + " 'email': '',\n", + " 'id': 9472,\n", + " 'link': 'https://philea.eu/members/center-for-philanthropy/',\n", + " 'name': 'Center for Philanthropy',\n", + " 'position': {'address': 'Baštová 5, 811 03 Bratislava, Slovakia',\n", + " 'country': 'Slovakia',\n", + " 'country_short': 'SK',\n", + " 'lat': 48.1447852,\n", + " 'lng': 17.1058538,\n", + " 'name': 'Baštová 5',\n", + " 'place_id': 'EihCYcWhdG92w6EgNSwgODExIDAzIEJyYXRpc2xhdmEsIFNsb3Zha2lhIlASTgo0CjIJhXAm71yJbEcRogLxSbysQtUaHgsQ7sHuoQEaFAoSCUVKC4NYiWxHEdk5ba82M8wGDBAFKhQKEgl5tSnpXIlsRxF_crYoQE8aZw',\n", + " 'post_code': '811 03',\n", + " 'state': 'Bratislavský kraj',\n", + " 'street_name': 'Baštová',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.cpf.sk/en/'},\n", + " {'address': 'Association for Community Relations Bd. 1 Decembrie 1918, nr.4, '\n", + " 'ap.7 400699 Cluj-Napoca Romania',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9468,\n", + " 'link': 'https://philea.eu/members/association-for-community-relations-arc/',\n", + " 'name': 'Association for Community Relations (ARC)',\n", + " 'position': {'address': 'Association for Community Relations Bd. 1 Decembrie '\n", + " '1918, nr.4, ap.7 400699 Cluj-Napoca Romania',\n", + " 'city': 'Cluj-Napoca',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 46.7710854,\n", + " 'lng': 23.5756899,\n", + " 'place_id': 'Ej03LCBCdWxldmFyZHVsIDEgRGVjZW1icmllIDE5MTggNCwgQ2x1ai1OYXBvY2EgNDAwNjk5LCBSb21hbmlhIh0aGwoWChQKEgkDxlb5jw5JRxE-UimExciUhBIBNw',\n", + " 'post_code': '400699',\n", + " 'state': 'Județul Cluj',\n", + " 'state_short': 'CJ',\n", + " 'street_name': 'Bulevardul 1 Decembrie 1918',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.arcromania.ro'},\n", + " {'address': 'Zagoriy Foundation 6 Rylskyi Alley 02091 Kyiv Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'info@zagoriy.foundation',\n", + " 'id': 5375,\n", + " 'link': 'https://philea.eu/members/zagoriy-foundation/',\n", + " 'name': 'Zagoriy Foundation',\n", + " 'position': {'address': \"Zagoriy Foundation, Ryl's'kyi Lane, 6, Kyiv, \"\n", + " 'Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4545967,\n", + " 'lng': 30.51540429999999,\n", + " 'name': 'Zagoriy Foundation',\n", + " 'place_id': 'ChIJVVUVQ1vO1EAROz9Wbz5Kg6o',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv City',\n", + " 'street_name': \"Ryl's'kyi Lane\",\n", + " 'street_name_short': \"Ryl's'kyi Ln\",\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://zagoriy.foundation/'},\n", + " {'address': 'ZEIT-Stiftung Ebelin und Gerd Bucerius Feldbrunnenstraße 56 '\n", + " '20148 Hamburg Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'zeit-stiftung@zeit-stiftung.de',\n", + " 'id': 5357,\n", + " 'link': 'https://philea.eu/members/zeit-stiftung-ebelin-und-gerd-bucerius/',\n", + " 'name': 'ZEIT-Stiftung Ebelin und Gerd Bucerius',\n", + " 'position': {'address': 'ZEIT-Stiftung Ebelin und Gerd Bucerius, '\n", + " 'Feldbrunnenstraße 56, 20148 Hamburg, Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.56795,\n", + " 'lng': 9.99104,\n", + " 'name': 'ZEIT-Stiftung Ebelin und Gerd Bucerius',\n", + " 'place_id': 'ChIJk0XmyjqPsUcRfRK1jbRx6Bc',\n", + " 'post_code': '20148',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Feldbrunnenstraße',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.zeit-stiftung.de'},\n", + " {'address': 'Wellcome Trust 215 Euston Road NW1 2BE London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'contact@wellcome.ac.uk',\n", + " 'id': 5352,\n", + " 'link': 'https://philea.eu/members/wellcome-trust/',\n", + " 'name': 'Wellcome Trust',\n", + " 'position': {'address': 'Wellcome Trust, 215 Euston Road, London NW1 2BE, '\n", + " 'United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5255527,\n", + " 'lng': -0.1351949,\n", + " 'name': 'Wellcome Trust',\n", + " 'place_id': 'ChIJt_RE_iUbdkgRJUATGZFZC40',\n", + " 'post_code': 'NW1 2BE',\n", + " 'state': 'England',\n", + " 'street_name': 'Euston Road',\n", + " 'street_name_short': 'Euston Rd',\n", + " 'street_number': '215',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.wellcome.ac.uk'},\n", + " {'address': 'VolkswagenStiftung Kastanienallee 35 30519 Hannover Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@volkswagenstiftung.de',\n", + " 'id': 5350,\n", + " 'link': 'https://philea.eu/members/volkswagenstiftung/',\n", + " 'name': 'VolkswagenStiftung',\n", + " 'position': {'address': 'VolkswagenStiftung, Kastanienallee 35, 30519 '\n", + " 'Hannover, Germany',\n", + " 'city': 'Hannover',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.3325449,\n", + " 'lng': 9.7682695,\n", + " 'name': 'VolkswagenStiftung',\n", + " 'place_id': 'ChIJ48hYtucKsEcR2nkI49fN6hU',\n", + " 'post_code': '30519',\n", + " 'state': 'Niedersachsen',\n", + " 'state_short': 'NDS',\n", + " 'street_name': 'Kastanienallee',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.volkswagenstiftung.de'},\n", + " {'address': 'Vodafone Stiftung Deutschland Ferdinand-Braun-Platz 1 40549 '\n", + " 'Düsseldorf Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@vodafone-stiftung.de',\n", + " 'id': 5349,\n", + " 'link': 'https://philea.eu/members/vodafone-stiftung-deutschland/',\n", + " 'name': 'Vodafone Stiftung Deutschland',\n", + " 'position': {'address': 'Vodafone Office, Ferdinand-Braun-Platz, Düsseldorf, '\n", + " 'Germany',\n", + " 'city': 'Düsseldorf',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.2351599,\n", + " 'lng': 6.732056399999999,\n", + " 'name': 'Vodafone Office',\n", + " 'place_id': 'ChIJCyBxiOG1uEcRBQ2qhl38B1Y',\n", + " 'post_code': '40549',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Ferdinand-Braun-Platz',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vodafone-stiftung.de'},\n", + " {'address': 'The VELUX Foundations Tobaksvejen 10 2860 Søborg Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@veluxfoundations.dk',\n", + " 'id': 5346,\n", + " 'link': 'https://philea.eu/members/velux-foundations-the/',\n", + " 'name': 'VELUX Foundations, The',\n", + " 'position': {'address': 'THE VELUX FOUNDATIONS, Tobaksvejen 10, 2860 Søborg, '\n", + " 'Denmark',\n", + " 'city': 'Søborg',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.74046800000001,\n", + " 'lng': 12.480344,\n", + " 'name': 'THE VELUX FOUNDATIONS',\n", + " 'place_id': 'ChIJjZFSlN1RUkYRfCw0SHUZkhE',\n", + " 'post_code': '2860',\n", + " 'street_name': 'Tobaksvejen',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.veluxfoundations.dk'},\n", + " {'address': 'Vehbi Koç Vakfi Nakkastepe, Azizbey Sokak No.1, Kuzguncuk 34674 '\n", + " 'Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@vkv.org.tr',\n", + " 'id': 5345,\n", + " 'link': 'https://philea.eu/members/vehbi-koc-foundation/',\n", + " 'name': 'Vehbi Koç Foundation',\n", + " 'position': {'address': 'Kuzguncuk, Vehbi Koç Vakfı, Nakkaştepe, Aziz Bey '\n", + " 'Sokak No: 1, 34674 Üsküdar/İstanbul, Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0318529,\n", + " 'lng': 29.0384855,\n", + " 'name': 'Vehbi Koç Vakfı',\n", + " 'place_id': 'ChIJDySJjRq3yhQRQwAq8FxSSoA',\n", + " 'post_code': '34674',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Aziz Bey Sokak',\n", + " 'street_name_short': 'Aziz Bey Sk.',\n", + " 'street_number': 'No: 1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vkv.org.tr'},\n", + " {'address': 'Van Leer Group Foundation Lange Houtstraat 2 2511 CW Den Haag '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'mail@vanleergroup.org',\n", + " 'id': 5344,\n", + " 'link': 'https://philea.eu/members/van-leer-group-foundation/',\n", + " 'name': 'Van Leer Group Foundation',\n", + " 'position': {'address': 'Bernard van Leer Foundation, Lange Houtstraat 2, '\n", + " '2511 CW Den Haag, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0807884,\n", + " 'lng': 4.3156968,\n", + " 'name': 'Bernard van Leer Foundation',\n", + " 'place_id': 'ChIJ5WRAtDy3xUcRG3BgSnLCbdc',\n", + " 'post_code': '2511 CW',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Lange Houtstraat',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vanleergroupfoundation.nl'},\n", + " {'address': 'UniCredit Foundation Piazza Gae Aulenti, 3 – Tower A, 25th floor '\n", + " '20154 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@unicreditfoundation.org',\n", + " 'id': 5337,\n", + " 'link': 'https://philea.eu/members/unicredit-foundation/',\n", + " 'name': 'UniCredit Foundation',\n", + " 'position': {'address': 'UniCredit Foundation, Piazza Gae Aulenti, 3, Milan, '\n", + " 'Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4837646,\n", + " 'lng': 9.189772000000001,\n", + " 'name': 'UniCredit Foundation',\n", + " 'place_id': 'ChIJW2rauq3GhkcRFxc5GrT2yII',\n", + " 'post_code': '20124',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Piazza Gae Aulenti',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.unicreditfoundation.org'},\n", + " {'address': 'TrustAfrica Lot 4 Almadies Ngor Dakar Senegal',\n", + " 'country': 'Senegal',\n", + " 'email': 'info@trustafrica.org',\n", + " 'id': 5335,\n", + " 'link': 'https://philea.eu/members/trustafrica/',\n", + " 'name': 'TrustAfrica',\n", + " 'position': {'address': '4 Route des Almadies, Ngor, Dakar, Senegal',\n", + " 'city': 'Dakar',\n", + " 'country': 'Senegal',\n", + " 'country_short': 'SN',\n", + " 'lat': 14.7385274,\n", + " 'lng': -17.5131516,\n", + " 'name': '4 Rte des Almadies',\n", + " 'place_id': 'EiI0IFJ0ZSBkZXMgQWxtYWRpZXMsIERha2FyLCBTZW5lZ2FsIjASLgoUChIJ237NBsUSwQ4Ry2kdRtvYFHIQBCoUChIJ3fD3cNwSwQ4RhVXVpkjXcuM',\n", + " 'state': 'Dakar',\n", + " 'street_name': 'Route des Almadies',\n", + " 'street_name_short': 'Rte des Almadies',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.trustafrica.org'},\n", + " {'address': 'Tiina and Antti Herlin Foundation Kartanontie 1 00330 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'info@tahsaatio.fi',\n", + " 'id': 5330,\n", + " 'link': 'https://philea.eu/members/tiina-and-antti-herlin-foundation/',\n", + " 'name': 'Tiina and Antti Herlin Foundation',\n", + " 'position': {'address': 'Kartanontie 1, 00330 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1943706,\n", + " 'lng': 24.8812471,\n", + " 'name': 'Kartanontie 1',\n", + " 'place_id': 'ChIJKfo3xgMKkkYR0XpLC79q_c8',\n", + " 'post_code': '00330',\n", + " 'street_name': 'Kartanontie',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.tahsaatio.fi/en/'},\n", + " {'address': 'Thousand Currents 1330 Broadway Suite #301 94612 Oakland, CA '\n", + " 'United States',\n", + " 'country': 'United States',\n", + " 'email': 'rajiv@thousandcurrents.org',\n", + " 'id': 5329,\n", + " 'link': 'https://philea.eu/members/thousand-currents/',\n", + " 'name': 'Thousand Currents',\n", + " 'position': {'address': 'Oakland, CA, United States',\n", + " 'city': 'Oakland',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 37.8043514,\n", + " 'lng': -122.2711639,\n", + " 'name': 'Oakland',\n", + " 'place_id': 'ChIJA-2qKIt9hYARZ5N1NdUVtHE',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://thousandcurrents.org/'},\n", + " {'address': 'Third Sector Foundation of Turkey Bankalar Caddesi Nº2. Minerva '\n", + " 'Han Kat:5 Karaköy 34420 Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@tusev.org.tr',\n", + " 'id': 5328,\n", + " 'link': 'https://philea.eu/members/third-sector-foundation-of-turkey/',\n", + " 'name': 'Third Sector Foundation of Turkey (TUSEV)',\n", + " 'position': {'address': 'İstanbul, Turkey',\n", + " 'city': 'İstanbul',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0082376,\n", + " 'lng': 28.9783589,\n", + " 'name': 'İstanbul',\n", + " 'place_id': 'ChIJawhoAASnyhQR0LABvJj-zOE',\n", + " 'state': 'İstanbul',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.tusev.org.tr'},\n", + " {'address': 'The Nando and Elsa Peretti Foundation Allgemeines '\n", + " 'Treuunternehmen (ATU) Aeulestrasse 5 9490 Vaduz Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'peter.prast@atu.li',\n", + " 'id': 5326,\n", + " 'link': 'https://philea.eu/members/the-nando-and-elsa-peretti-foundation/',\n", + " 'name': 'The Nando and Elsa Peretti Foundation',\n", + " 'position': {'address': 'Allgemeines Treuunternehmen (ATU), Aeulestrasse 5, '\n", + " '9490 Vaduz, Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.140606,\n", + " 'lng': 9.521298,\n", + " 'name': 'Allgemeines Treuunternehmen (ATU)',\n", + " 'place_id': 'ChIJKRSZjWcxm0cRuxoXjh3PbSA',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.nandoandelsaperettifoundation.org/en/page.php'},\n", + " {'address': 'The Ethos Foundation 18 Buckingham Palace Road SW1W 0QP London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'ethosfoundation.uk@gmail.com',\n", + " 'id': 5383,\n", + " 'link': 'https://philea.eu/members/the-ethos-foundation/',\n", + " 'name': 'The Ethos Foundation',\n", + " 'position': {'address': '18 Buckingham Palace Road, London SW1W 0QP, United '\n", + " 'Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4977045,\n", + " 'lng': -0.1443356,\n", + " 'name': '18 Buckingham Palace Rd',\n", + " 'place_id': 'ChIJHXL6GCEFdkgRrvnbRBZYkh8',\n", + " 'post_code': 'SW1W 0QP',\n", + " 'state': 'England',\n", + " 'street_name': 'Buckingham Palace Road',\n", + " 'street_name_short': 'Buckingham Palace Rd',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'The Association of Swedish Foundations P.O. Box 3615 10359 '\n", + " 'Stockholm Sweden',\n", + " 'country': 'Sweden',\n", + " 'email': '',\n", + " 'id': 5207,\n", + " 'link': 'https://philea.eu/members/the-association-of-swedish-foundations/',\n", + " 'name': 'The Association of Swedish Foundations',\n", + " 'position': {'address': 'Stockholm, Sweden',\n", + " 'city': 'Stockholm',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 59.32932349999999,\n", + " 'lng': 18.0685808,\n", + " 'name': 'Stockholm',\n", + " 'place_id': 'ChIJywtkGTF2X0YRZnedZ9MnDag',\n", + " 'state': 'Stockholm County',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.stiftelserisamverkan.se'},\n", + " {'address': 'Stichting Terre des Hommes Nederland Grote Marktstraat 43\\xa0'\n", + " '2511\\xa0BH Den Haag Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@tdh.nl',\n", + " 'id': 5323,\n", + " 'link': 'https://philea.eu/members/terre-des-hommes-netherlands/',\n", + " 'name': 'Terre des Hommes - Netherlands',\n", + " 'position': {'address': 'Grote Marktstraat 43, The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0760376,\n", + " 'lng': 4.31123,\n", + " 'name': 'Grote Marktstraat 43',\n", + " 'place_id': 'ChIJUb3-LyS3xUcR4MZsZqFklQ0',\n", + " 'post_code': '2511 BH',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Grote Marktstraat',\n", + " 'street_number': '43',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.terredeshommes.nl'},\n", + " {'address': 'Fundacja TechSoup ul. Bracka 25 00-028 Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': '',\n", + " 'id': 5322,\n", + " 'link': 'https://philea.eu/members/fundacja-techsoup/',\n", + " 'name': 'Fundacja TechSoup',\n", + " 'position': {'address': 'TechSoup Polska, Bracka, Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2321134,\n", + " 'lng': 21.0155602,\n", + " 'name': 'TechSoup Polska',\n", + " 'place_id': 'ChIJcUsEvvrMHkcRMAdUE5sRqlU',\n", + " 'post_code': '00-028',\n", + " 'state': 'Województwo mazowieckie',\n", + " 'street_name': 'Bracka',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.techsoup.pl/content/fundacja'},\n", + " {'address': 'SwissFoundations Haus der Stiftungen, Kirchgasse 42, 8001 '\n", + " 'Zürich, Switzerland ',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@swissfoundations.ch',\n", + " 'id': 5321,\n", + " 'link': 'https://philea.eu/members/swissfoundations/',\n", + " 'name': 'SwissFoundations',\n", + " 'position': {'address': 'SwissFoundations, Kirchgasse 42, 8001 Zürich, '\n", + " 'Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3705033,\n", + " 'lng': 8.546036599999997,\n", + " 'name': 'SwissFoundations',\n", + " 'place_id': 'ChIJMYQG6qugmkcR5_rSmVty-qU',\n", + " 'post_code': '8001',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Kirchgasse',\n", + " 'street_number': '42',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.swissfoundations.ch'},\n", + " {'address': 'Svenska Kulturfonden Simonsgatan 8 A, 5:e våningen PB 439 00101 '\n", + " 'Helsingfors Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'kansliet@kulturfonden.fi',\n", + " 'id': 5319,\n", + " 'link': 'https://philea.eu/members/svenska-kulturfonden/',\n", + " 'name': 'Svenska Kulturfonden',\n", + " 'position': {'address': 'Finlandia-talo Oy, Mannerheimintie, Helsingfors, '\n", + " 'Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1756992,\n", + " 'lng': 24.9336092,\n", + " 'name': 'Finlandia Hall',\n", + " 'place_id': 'ChIJMSt58zIKkkYRAOiy0w3BzQ4',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Mannerheimintie',\n", + " 'street_number': '13e',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.kulturfonden.fi'},\n", + " {'address': 'Svenska folkskolans vänner r.f. Annegatan 12 A 00120 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'sfv@sfv.fi',\n", + " 'id': 5318,\n", + " 'link': 'https://philea.eu/members/svenska-folkskolans-vanner-r-f/',\n", + " 'name': 'Svenska folkskolans vänner r.f.',\n", + " 'position': {'address': 'Svenska folkskolans vänner r.f., Annankatu, '\n", + " 'Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.164536,\n", + " 'lng': 24.9400829,\n", + " 'name': 'Svenska folkskolans vänner r.f.',\n", + " 'place_id': 'ChIJMZciLMoLkkYRQFRdZUwKC7o',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Annankatu',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sfv.fi'},\n", + " {'address': 'Stiftung Mercator GmbH Huyssenallee 40 45128 Essen Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@stiftung-mercator.de',\n", + " 'id': 5317,\n", + " 'link': 'https://philea.eu/members/stiftung-mercator-gmbh/',\n", + " 'name': 'Stiftung Mercator GmbH',\n", + " 'position': {'address': 'Stiftung Mercator GmbH, Huyssenallee 40, 45128 '\n", + " 'Essen, Germany',\n", + " 'city': 'Essen',\n", + " 'city_short': 'E',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.44743,\n", + " 'lng': 7.0099374,\n", + " 'name': 'Stiftung Mercator GmbH',\n", + " 'place_id': 'ChIJ03SNyM7CuEcRNmQ7c8Kw6uw',\n", + " 'post_code': '45128',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Huyssenallee',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.stiftung-mercator.de'},\n", + " {'address': 'Stiftung Deutsche Welthungerhilfe Friedrich Ebert Strasse 1 '\n", + " 'D-53173 Bonn Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@welthungerhilfe.de',\n", + " 'id': 5316,\n", + " 'link': 'https://philea.eu/members/stiftung-deutsche-welthungerhilfe/',\n", + " 'name': 'Stiftung Deutsche Welthungerhilfe',\n", + " 'position': {'address': 'Welthungerhilfe, Friedrich-Ebert-Straße, Bonn, '\n", + " 'Germany',\n", + " 'city': 'Bonn',\n", + " 'city_short': 'BN',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 50.6823765,\n", + " 'lng': 7.1605514,\n", + " 'name': 'Welthungerhilfe',\n", + " 'place_id': 'ChIJD6Z5u27kvkcR8ADndtpnmS0',\n", + " 'post_code': '53173',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Friedrich-Ebert-Straße',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.welthungerhilfe.de'},\n", + " {'address': 'Stichting Instituut Gak ‘s-Gravelandseweg 49 1217 EH Hilversum '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@instituutgak.nl',\n", + " 'id': 5313,\n", + " 'link': 'https://philea.eu/members/stichting-instituut-gak/',\n", + " 'name': 'Stichting Instituut Gak',\n", + " 'position': {'address': \"Instituut Gak, 's-Gravelandseweg 49, 1217 EH \"\n", + " 'Hilversum, Netherlands',\n", + " 'city': 'Hilversum',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.2269437,\n", + " 'lng': 5.1678373,\n", + " 'name': 'Instituut Gak',\n", + " 'place_id': 'ChIJVxUAq2BrxkcRRY0WCkNWJG8',\n", + " 'post_code': '1217 EH',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': \"'s-Gravelandseweg\",\n", + " 'street_number': '49',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.instituutgak.nl'},\n", + " {'address': 'Stichting Fonds 1818 Riviervismarkt 4 2313 AM The Hague '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@fonds1818.nl',\n", + " 'id': 5312,\n", + " 'link': 'https://philea.eu/members/stichting-fonds-1818/',\n", + " 'name': 'Stichting Fonds 1818',\n", + " 'position': {'address': 'Fonds 1818, Riviervismarkt, The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0766884,\n", + " 'lng': 4.306905,\n", + " 'name': 'Fonds 1818',\n", + " 'place_id': 'ChIJ52ApXi-3xUcRwS8uuyoaKdg',\n", + " 'post_code': '2513 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Riviervismarkt',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fonds1818.nl'},\n", + " {'address': 'Stefan Batory Foundation ul. Sapiezynska 10a 00-215 Warsaw '\n", + " 'Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'batory@batory.org.pl',\n", + " 'id': 5310,\n", + " 'link': 'https://philea.eu/members/stefan-batory-foundation/',\n", + " 'name': 'Stefan Batory Foundation',\n", + " 'position': {'address': 'Foundation. Stefan Batory, Sapieżyńska 10A, 00-215 '\n", + " 'Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2538507,\n", + " 'lng': 21.0024074,\n", + " 'name': 'Foundation. Stefan Batory',\n", + " 'place_id': 'ChIJvafqI3HMHkcRi1KbhyvtFgM',\n", + " 'post_code': '00-215',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Sapieżyńska',\n", + " 'street_number': '10A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.batory.org.pl'},\n", + " {'address': 'Stavros Niarchos Foundation (SNF) 86A Vas. Sofias Avenue 11528 '\n", + " 'Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': 'info@snf.org',\n", + " 'id': 5309,\n", + " 'link': 'https://philea.eu/members/stavros-niarchos-foundation/',\n", + " 'name': 'Stavros Niarchos Foundation (SNF)',\n", + " 'position': {'address': 'Stavros Niarchos Foundation, Vasilissis Sofias, '\n", + " 'Athens 115 28, Greece',\n", + " 'city': 'Athina',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9813085,\n", + " 'lng': 23.7557287,\n", + " 'name': 'SNF Headquarters',\n", + " 'place_id': 'ChIJZfpgIVG9oRQR_O2TmCmVU7I',\n", + " 'post_code': '115 28',\n", + " 'state': 'Kentrikos Tomeas Athinon',\n", + " 'street_name': 'Vasilissis Sofias',\n", + " 'street_number': '86Α',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.snf.org'},\n", + " {'address': 'Special Olympics Europe/Eurasia Avenue Louise 43 B-1050 Brussels '\n", + " 'Belgium',\n", + " 'country': '',\n", + " 'email': 'wbyrne@specialolympics.org',\n", + " 'id': 5308,\n", + " 'link': 'https://philea.eu/members/special-olympics-europe-eurasia/',\n", + " 'name': 'Special Olympics Europe/Eurasia',\n", + " 'position': {'address': 'Avenue Louise 43, Saint-Gilles, Belgium',\n", + " 'city': 'Saint-Gilles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.83394879999999,\n", + " 'lng': 4.3566524,\n", + " 'name': 'Av. Louise 43',\n", + " 'place_id': 'ChIJP7Gk2YnEw0cR0MA9XKNV6Po',\n", + " 'post_code': '1060',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Avenue Louise',\n", + " 'street_name_short': 'Av. Louise',\n", + " 'street_number': '43',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.specialolympics.org/Regions/europe-eurasia/_Region-Front/Europe-Eurasia.aspx'},\n", + " {'address': 'Sparebankstiftelsen DnB NOR P.O. Box 555 Sentrum 0105 Oslo '\n", + " 'Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@sparebankstiftelsen.no',\n", + " 'id': 5307,\n", + " 'link': 'https://philea.eu/members/sparebankstiftelsen-dnb/',\n", + " 'name': 'Sparebankstiftelsen DnB',\n", + " 'position': {'address': 'Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.9138688,\n", + " 'lng': 10.7522454,\n", + " 'name': 'Oslo',\n", + " 'place_id': 'ChIJOfBn8mFuQUYRmh4j019gkn4',\n", + " 'state': 'Oslo',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sparebankstiftelsen.no'},\n", + " {'address': 'Spanish Association of Foundations C/ Serrano Anguita, 13 28004 '\n", + " 'Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fundaciones.org',\n", + " 'id': 5086,\n", + " 'link': 'https://philea.eu/members/spanish-association-of-foundations/',\n", + " 'name': 'Spanish Association of Foundations',\n", + " 'position': {'address': 'Spanish Association of Foundations, Impact Hub '\n", + " 'Barceló, Calle de Serrano Anguita, 13, 28004 '\n", + " 'Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4276989,\n", + " 'lng': -3.699074899999999,\n", + " 'name': 'Spanish Association of Foundations',\n", + " 'place_id': 'ChIJ_1huM44oQg0RxXFi6ksN4Gw',\n", + " 'post_code': '28004',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Serrano Anguita',\n", + " 'street_name_short': 'C. de Serrano Anguita',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.fundaciones.org'},\n", + " {'address': 'Society of Swedish Literature in Finland, The Ritarikatus 5 '\n", + " '00170 Helsingfors Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'info@sls.fi',\n", + " 'id': 5306,\n", + " 'link': 'https://philea.eu/members/society-of-swedish-literature-in-finland-the/',\n", + " 'name': 'Society of Swedish Literature in Finland, The',\n", + " 'position': {'address': 'Finlandia-talo Oy, Mannerheimintie, Helsingfors, '\n", + " 'Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1756992,\n", + " 'lng': 24.9336092,\n", + " 'name': 'Finlandia Hall',\n", + " 'place_id': 'ChIJMSt58zIKkkYRAOiy0w3BzQ4',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Mannerheimintie',\n", + " 'street_number': '13e',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sls.fi'},\n", + " {'address': 'Simavi Naritaweg 135 1043BS Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@simavi.nl',\n", + " 'id': 5303,\n", + " 'link': 'https://philea.eu/members/simavi/',\n", + " 'name': 'Simavi',\n", + " 'position': {'address': 'Stichting Simavi, Naritaweg 135, 1043 BS Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3877099,\n", + " 'lng': 4.832788499999999,\n", + " 'name': 'Stichting Simavi',\n", + " 'place_id': 'ChIJJ4Y6XjjvxUcRa40lzL0rcYY',\n", + " 'post_code': '1043 BS',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Naritaweg',\n", + " 'street_number': '135',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://simavi.org/'},\n", + " {'address': 'Serbia',\n", + " 'country': 'Serbia',\n", + " 'email': 'office@filantropskiforum.com',\n", + " 'id': 5369,\n", + " 'link': 'https://philea.eu/members/serbian-philanthropy-forum/',\n", + " 'name': 'Serbian Philanthropy Forum',\n", + " 'position': {'address': 'Serbia',\n", + " 'country': 'Serbia',\n", + " 'country_short': 'RS',\n", + " 'lat': 44.016521,\n", + " 'lng': 21.005859,\n", + " 'name': 'Serbia',\n", + " 'place_id': 'ChIJlYCJ8t8dV0cRXYYjN-pQXgU',\n", + " 'zoom': 7},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.srpskifilantropskiforum.org/'},\n", + " {'address': 'Sabanci Foundation Sabanci Center, 4. Levent Kule:2, Kat:8 34330 '\n", + " 'Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@sabancivakfi.org',\n", + " 'id': 5299,\n", + " 'link': 'https://philea.eu/members/sabanci-foundation/',\n", + " 'name': 'Sabanci Foundation',\n", + " 'position': {'address': 'İstanbul, Turkey',\n", + " 'city': 'İstanbul',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0082376,\n", + " 'lng': 28.9783589,\n", + " 'name': 'İstanbul',\n", + " 'place_id': 'ChIJawhoAASnyhQR0LABvJj-zOE',\n", + " 'state': 'İstanbul',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sabancivakfi.org'},\n", + " {'address': 'Saastamoinen Foundation Pieni Roobertinkatu 5 B 15 00930 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'petteri.karttunen@saastamoinenfoundation.fi',\n", + " 'id': 5298,\n", + " 'link': 'https://philea.eu/members/saastamoinen-foundation/',\n", + " 'name': 'Saastamoinen Foundation',\n", + " 'position': {'address': 'Pieni Roobertinkatu 5, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1642976,\n", + " 'lng': 24.9463729,\n", + " 'name': 'Pieni Roobertinkatu 5',\n", + " 'place_id': 'ChIJ9bm4AskLkkYRb_lJS8zoCVc',\n", + " 'post_code': '00130',\n", + " 'street_name': 'Pieni Roobertinkatu',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.saastamoinenfoundation.fi'},\n", + " {'address': 'Romanian-American Foundation 6, Gina Patrichi (former Orlando) '\n", + " 'Street 010449 Bucharest 1 Romania',\n", + " 'country': 'Romania',\n", + " 'email': 'office@rafonline.org',\n", + " 'id': 5296,\n", + " 'link': 'https://philea.eu/members/romanian-american-foundation/',\n", + " 'name': 'Romanian-American Foundation',\n", + " 'position': {'address': 'Romanian-American Foundation, Strada Gina Patrichi '\n", + " '6, Bucharest, Romania',\n", + " 'city': 'București',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 44.4493683,\n", + " 'lng': 26.0894794,\n", + " 'name': 'Romanian-American Foundation',\n", + " 'place_id': 'ChIJzRp3U1T_sUARPs2PXQpkhNE',\n", + " 'post_code': '010449',\n", + " 'state': 'București',\n", + " 'street_name': 'Strada Gina Patrichi',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.RAFonline.org'},\n", + " {'address': 'Rockefeller Philanthropy Advisors 437 Madison Avenue, 37th Floor '\n", + " 'NY 10022 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@rockpa.org',\n", + " 'id': 5294,\n", + " 'link': 'https://philea.eu/members/rockefeller-philanthropy-advisors/',\n", + " 'name': 'Rockefeller Philanthropy Advisors',\n", + " 'position': {'address': '437 Madison Avenue, NY, New York 10022, United '\n", + " 'States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.7573533,\n", + " 'lng': -73.97524349999999,\n", + " 'name': '437 Madison Ave',\n", + " 'place_id': 'ChIJr8O4RvxYwokR06DPVPxymuc',\n", + " 'post_code': '10022',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Madison Avenue',\n", + " 'street_name_short': 'Madison Ave',\n", + " 'street_number': '437',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.rockpa.org'},\n", + " {'address': 'Rockefeller Brothers Fund 475 Riverside Drive, Suite 900 NY '\n", + " '10115 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'communications@rbf.org',\n", + " 'id': 5293,\n", + " 'link': 'https://philea.eu/members/rockefeller-brothers-fund/',\n", + " 'name': 'Rockefeller Brothers Fund',\n", + " 'position': {'address': 'Rockefeller Brothers Fund, 475 Riverside Drive, NY, '\n", + " 'New York 10115, United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.8108449,\n", + " 'lng': -73.9640282,\n", + " 'name': 'Rockefeller Brothers Fund',\n", + " 'place_id': 'ChIJObtpQj_2wokRNsvzZVDQfYk',\n", + " 'post_code': '10115',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Riverside Drive',\n", + " 'street_name_short': 'Riverside Dr',\n", + " 'street_number': '475',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rbf.org'},\n", + " {'address': 'Robert Bosch Stiftung Heidehofstraße 31 70184 Stuttgart Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'rbsg@bosch-stiftung.de',\n", + " 'id': 5292,\n", + " 'link': 'https://philea.eu/members/robert-bosch-stiftung-gmbh/',\n", + " 'name': 'Robert Bosch Stiftung GmbH',\n", + " 'position': {'address': 'Robert Bosch Stiftung GmbH, Heidehofstraße 31, '\n", + " '70184 Stuttgart, Germany',\n", + " 'city': 'Stuttgart',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.77749319999999,\n", + " 'lng': 9.1996634,\n", + " 'name': 'Robert Bosch Stiftung GmbH',\n", + " 'place_id': 'ChIJxZbap8fEmUcRQ9lqXktR3YY',\n", + " 'post_code': '70184',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Heidehofstraße',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bosch-stiftung.de'},\n", + " {'address': 'RNW Media Witte Kruislaan 55a 1217 AM Hilversum Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'connect@rnw.org',\n", + " 'id': 5291,\n", + " 'link': 'https://philea.eu/members/rnw-media/',\n", + " 'name': 'RNW Media',\n", + " 'position': {'address': 'RNW Media, Witte Kruislaan 55A, 1217 AM Hilversum, '\n", + " 'Netherlands',\n", + " 'city': 'Hilversum',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.24425420000001,\n", + " 'lng': 5.165984100000001,\n", + " 'name': 'RNW Media',\n", + " 'place_id': 'ChIJjZoR0VVrxkcRARGi9Bk9wig',\n", + " 'post_code': '1217 AM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Witte Kruislaan',\n", + " 'street_number': '55A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.rnw.org/'},\n", + " {'address': 'Riksbankens Jubileumsfond Kungsträdgårdsgatan 18, P.O. Box 5675 '\n", + " '114 86 Stockholm Sweden',\n", + " 'country': 'Sweden',\n", + " 'email': 'rj@rj.se',\n", + " 'id': 5289,\n", + " 'link': 'https://philea.eu/members/riksbankens-jubileumsfond/',\n", + " 'name': 'Riksbankens Jubileumsfond',\n", + " 'position': {'address': 'Stockholm, Sweden',\n", + " 'city': 'Stockholm',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 59.32932349999999,\n", + " 'lng': 18.0685808,\n", + " 'name': 'Stockholm',\n", + " 'place_id': 'ChIJywtkGTF2X0YRZnedZ9MnDag',\n", + " 'state': 'Stockholm County',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rj.se/en/'},\n", + " {'address': 'Realdania Jamers Plads 2 DK-1551 Copenhagen V Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'realdania@realdania.dk',\n", + " 'id': 5288,\n", + " 'link': 'https://philea.eu/members/realdania/',\n", + " 'name': 'Realdania',\n", + " 'position': {'address': 'Realdania, Jarmers Plads, Copenhagen Municipality, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.67947599999999,\n", + " 'lng': 12.564626,\n", + " 'name': 'Realdania',\n", + " 'place_id': 'ChIJuzJJ5w5TUkYRzFEwIsUw1EM',\n", + " 'post_code': '1551',\n", + " 'street_name': 'Jarmers Plads',\n", + " 'street_name_short': 'Jarmers Pl.',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.realdania.dk'},\n", + " {'address': 'Prins Claus Fonds for Culture and Development Kingsfordweg 151 '\n", + " '1043 GR Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@princeclausfund.org',\n", + " 'id': 5286,\n", + " 'link': 'https://philea.eu/members/prins-claus-fonds-for-culture-and-development/',\n", + " 'name': 'Prins Claus Fonds for Culture and Development',\n", + " 'position': {'address': '1043 GR Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.38588540000001,\n", + " 'lng': 4.8426952,\n", + " 'name': '1043 GR',\n", + " 'place_id': 'ChIJZSgAZl7ixUcRSOudUzx3YyM',\n", + " 'post_code': '1043 GR',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://princeclausfund.org/'},\n", + " {'address': 'het Cultuurfonds Herengracht 476, 1017 CB Amsterdam, P.O.Box '\n", + " '19750 1000 GT Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@cultuurfonds.nl',\n", + " 'id': 5285,\n", + " 'link': 'https://philea.eu/members/het-cultuurfonds/',\n", + " 'name': 'het Cultuurfonds',\n", + " 'position': {'address': 'Herengracht 476, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3650263,\n", + " 'lng': 4.891598,\n", + " 'name': 'Herengracht 476',\n", + " 'place_id': 'ChIJMRKh8eoJxkcRR7pqJMuQYIU',\n", + " 'post_code': '1017 CB',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Herengracht',\n", + " 'street_number': '476',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cultuurfonds.nl'},\n", + " {'address': 'Portuguese Foundation Centre Centro Cultural de Belém, Sala D, '\n", + " 'Praça do Império, 1449-003 Lisbon, Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'cpf@cpf.org.pt',\n", + " 'id': 5283,\n", + " 'link': 'https://philea.eu/members/portuguese-foundation-centre/',\n", + " 'name': 'Portuguese Foundation Centre',\n", + " 'position': {'address': 'Portuguese Foundation Centre Centro Cultural de '\n", + " 'Belém, Sala D, Praça do Império, 1449-003 Lisbon, '\n", + " 'Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.6955029,\n", + " 'lng': -9.208354199999999,\n", + " 'place_id': 'ChIJW51RQkPLHg0RNpVMhpDspDY',\n", + " 'post_code': '1449-003',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Praça do Império',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.cpf.org.pt'},\n", + " {'address': 'Porticus P.O. Box 7867 1008 AB Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@porticus.com',\n", + " 'id': 5282,\n", + " 'link': 'https://philea.eu/members/porticus/',\n", + " 'name': 'Porticus',\n", + " 'position': {'address': 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'name': 'Amsterdam',\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.porticus.com'},\n", + " {'address': 'Polish Donors Forum ul. Mokotowska 65/7 00-533 Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'poczta@forumdarczyncow.pl',\n", + " 'id': 5281,\n", + " 'link': 'https://philea.eu/members/polish-donors-forum/',\n", + " 'name': 'Polish Donors Forum',\n", + " 'position': {'address': 'Mokotowska 65, Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2266891,\n", + " 'lng': 21.0221065,\n", + " 'name': 'Mokotowska 65',\n", + " 'place_id': 'ChIJ9S1defDMHkcRA6OQ_tVeX0Y',\n", + " 'post_code': '00-530',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Mokotowska',\n", + " 'street_number': '65',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.forumdarczyncow.pl'},\n", + " {'address': 'PLAN BØRNE FONDEN Mimersgade 47, 4. 2200 N Copenhagen Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'mail@planbornefonden.dk',\n", + " 'id': 5280,\n", + " 'link': 'https://philea.eu/members/plan-borne-fonden/',\n", + " 'name': 'Plan Børne Fonden',\n", + " 'position': {'address': 'PlanBørnefonden, Mimersgade, København N, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6992115,\n", + " 'lng': 12.5476594,\n", + " 'name': 'Plan International Denmark',\n", + " 'place_id': 'ChIJUX1VjqdTUkYRMxyd9gTbtfI',\n", + " 'post_code': '2200',\n", + " 'street_name': 'Mimersgade',\n", + " 'street_number': '47',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://planbornefonden.dk/'},\n", + " {'address': 'Philanthropy Ireland Ltd 56 Fitzwilliam Square 2 Dublin Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': 'info@philanthropyireland.ie',\n", + " 'id': 5279,\n", + " 'link': 'https://philea.eu/members/philanthropy-ireland-ltd/',\n", + " 'name': 'Philanthropy Ireland',\n", + " 'position': {'address': '2 Fitzwilliam Square Dublin, Dublin 2, Dublin, '\n", + " 'Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.33428699999999,\n", + " 'lng': -6.251283499999999,\n", + " 'name': '2 Fitzwilliam Pl',\n", + " 'place_id': 'ChIJD0ctTL0OZ0gRmjdgB2o6Arg',\n", + " 'post_code': 'D02 K227',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Fitzwilliam Place',\n", + " 'street_name_short': 'Fitzwilliam Pl',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.philanthropyireland.ie'},\n", + " {'address': 'PeaceNexus Foundation Rt de Lausanne 107 CH-1197 Prangings '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@peacenexus.org',\n", + " 'id': 5277,\n", + " 'link': 'https://philea.eu/members/peacenexus-foundation/',\n", + " 'name': 'PeaceNexus Foundation',\n", + " 'position': {'address': 'PEACENEXUS, Route de Lausanne 107, 1197 Prangins, '\n", + " 'Switzerland',\n", + " 'city': 'Prangins',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.3918994,\n", + " 'lng': 6.254621799999999,\n", + " 'name': 'PEACENEXUS',\n", + " 'place_id': 'ChIJG5nGiBlDjEcRS7BfVtOg5jE',\n", + " 'post_code': '1197',\n", + " 'state': 'Vaud',\n", + " 'state_short': 'VD',\n", + " 'street_name': 'Route de Lausanne',\n", + " 'street_name_short': 'Rte de Lausanne',\n", + " 'street_number': '107',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.peacenexus.org'},\n", + " {'address': 'The Paul Hamlyn Foundation 5-11 Leeke Street WC1X 9HY London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'information@phf.org.uk',\n", + " 'id': 5276,\n", + " 'link': 'https://philea.eu/members/paul-hamlyn-foundation/',\n", + " 'name': 'Paul Hamlyn Foundation',\n", + " 'position': {'address': 'Paul Hamlyn Foundation, Leeke Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.53029950000001,\n", + " 'lng': -0.1180191,\n", + " 'name': 'Paul Hamlyn Foundation',\n", + " 'place_id': 'ChIJS71-rjgbdkgRn29H_3pkr7o',\n", + " 'post_code': 'WC1X 9HY',\n", + " 'state': 'England',\n", + " 'street_name': 'Leeke Street',\n", + " 'street_name_short': 'Leeke St',\n", + " 'street_number': '5-11',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.phf.org.uk'},\n", + " {'address': 'Open Society Foundations OSIFE, C/Elisabets, 24 08001 Barcelona '\n", + " 'Spain',\n", + " 'country': 'Germany',\n", + " 'email': 'info@opensocietyfoundations.org',\n", + " 'id': 5274,\n", + " 'link': 'https://philea.eu/members/open-society-foundations/',\n", + " 'name': 'Open Society Foundations',\n", + " 'position': {'address': \"Carrer d'Elisabets, 24, Barcelona, Spain\",\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3830253,\n", + " 'lng': 2.1679675,\n", + " 'name': \"Carrer d'Elisabets, 24\",\n", + " 'place_id': 'ChIJ6wVnsfWipBIR9Sd2UXoKRNM',\n", + " 'post_code': '08001',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': \"Carrer d'Elisabets\",\n", + " 'street_number': '24',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.opensocietyfoundations.org'},\n", + " {'address': 'Open Estonia Foundation Estonia Avenue pst 5A 10143 Tallinn '\n", + " 'Estonia',\n", + " 'country': 'Estonia',\n", + " 'email': 'info@oef.org.ee',\n", + " 'id': 5273,\n", + " 'link': 'https://philea.eu/members/open-estonia-foundation/',\n", + " 'name': 'Open Estonia Foundation',\n", + " 'position': {'address': 'Estonia puiestee 5a, Tallinn, Estonia',\n", + " 'city': 'Tallinn',\n", + " 'country': 'Estonia',\n", + " 'country_short': 'EE',\n", + " 'lat': 59.4348507,\n", + " 'lng': 24.7531709,\n", + " 'name': 'Estonia pst 5a',\n", + " 'place_id': 'ChIJ-09SImCTkkYRyBerMSOActE',\n", + " 'post_code': '10145',\n", + " 'state': 'Harju maakond',\n", + " 'street_name': 'Estonia puiestee',\n", + " 'street_name_short': 'Estonia pst',\n", + " 'street_number': '5a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oef.org.ee'},\n", + " {'address': 'Oeuvre Nationale de Secours Grande-Duchess Charlotte 18, rue '\n", + " 'Leon Laval L-3372 Leudelange Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': 'secretariat@oeuvre.lu',\n", + " 'id': 5271,\n", + " 'link': 'https://philea.eu/members/oeuvre-nationale-de-secours-grande-duchesse-charlotte/',\n", + " 'name': 'Oeuvre Nationale de Secours Grande-Duchesse Charlotte',\n", + " 'position': {'address': 'Œuvre Nationale de Secours Grande-Duchesse '\n", + " 'Charlotte, 18 Rue Léon Laval, 3372 Leudelange, '\n", + " 'Luxembourg',\n", + " 'city': 'Leudelange',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.5705961,\n", + " 'lng': 6.080992199999999,\n", + " 'name': 'Œuvre Nationale de Secours Grande-Duchesse Charlotte',\n", + " 'place_id': 'ChIJQf9Bup1JlUcRKk0YneA2F88',\n", + " 'post_code': '3372',\n", + " 'state': 'District de Luxembourg',\n", + " 'street_name': 'Rue Léon Laval',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oeuvre.lu'},\n", + " {'address': 'Oak Foundation Oak Philanthropy Ltd., Case postale 115 58, '\n", + " 'Avenue Louis Casaï 1216 Cointrin, Geneva Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@oakfnd.ch',\n", + " 'id': 5270,\n", + " 'link': 'https://philea.eu/members/oak-foundation/',\n", + " 'name': 'Oak Foundation',\n", + " 'position': {'address': 'Oak Philanthropy Ltd, Avenue Louis-Casaï 58, 1216 '\n", + " 'Cointrin, Geneva, Switzerland',\n", + " 'city': 'Cointrin',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.22375090000001,\n", + " 'lng': 6.1094305,\n", + " 'name': 'Oak Philanthropy Ltd',\n", + " 'place_id': 'ChIJP4QtKZpkjEcR3Fv6NcAOzdI',\n", + " 'post_code': '1216',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Avenue Louis-Casaï',\n", + " 'street_name_short': 'Av. Louis-Casaï',\n", + " 'street_number': '58',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oakfnd.org'},\n", + " {'address': 'Novo Nordisk Foundation Tuborg Havnevej 19 2900 Hellerup Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'nnfond@novo.dk',\n", + " 'id': 5269,\n", + " 'link': 'https://philea.eu/members/novo-nordisk-foundation-the/',\n", + " 'name': 'Novo Nordisk Foundation, The',\n", + " 'position': {'address': 'Novo Nordisk Foundation, Tuborg Havnevej 19, 2900 '\n", + " 'Hellerup, Denmark',\n", + " 'city': 'Hellerup',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7270213,\n", + " 'lng': 12.5836844,\n", + " 'name': 'Novo Nordisk Foundation',\n", + " 'place_id': 'ChIJadmjE4ZSUkYRqwhCS5p5HKA',\n", + " 'post_code': '2900',\n", + " 'street_name': 'Tuborg Havnevej',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.novonordiskfonden.dk'},\n", + " {'address': 'Nordea-fonden Overgaden Neden Vandet 11 1414 Copenhagen K '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'kontakt@nordeafonden.dk',\n", + " 'id': 5268,\n", + " 'link': 'https://philea.eu/members/nordea-fonden/',\n", + " 'name': 'Nordea-fonden',\n", + " 'position': {'address': 'Nordea Fonden, Overgaden Neden Vandet 11, 1414 '\n", + " 'Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6722099,\n", + " 'lng': 12.5897326,\n", + " 'name': 'Nordea Fonden',\n", + " 'place_id': 'ChIJpwlMZa1TUkYR_7yi9OXdh58',\n", + " 'post_code': '1414',\n", + " 'street_name': 'Overgaden Neden Vandet',\n", + " 'street_number': '11',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nordeafonden.dk/'},\n", + " {'address': 'Postcode Lottery Group Beethovenstraat 200 1077 JZ Amsterdam '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 5265,\n", + " 'link': 'https://philea.eu/members/postcode-lottery-group/',\n", + " 'name': 'Postcode Lottery Group',\n", + " 'position': {'address': 'Beethovenstraat 200, 1077 JZ Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3414279,\n", + " 'lng': 4.8758224,\n", + " 'name': 'Beethovenstraat 200',\n", + " 'place_id': 'ChIJ3Y1aWwMKxkcRbP6rYT-zZ1Y',\n", + " 'post_code': '1077 JZ',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Beethovenstraat',\n", + " 'street_number': '200',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.postcodelotterygroup.com'},\n", + " {'address': 'National Foundation for Civil Society Development- Croatia '\n", + " 'Strigina 1a 10000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'zaklada@civilnodrustvo.hr',\n", + " 'id': 5263,\n", + " 'link': 'https://philea.eu/members/national-foundation-for-civil-society-development-croatia/',\n", + " 'name': 'National Foundation for Civil Society Development - Croatia',\n", + " 'position': {'address': 'Štrigina ulica 1A, 10000, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.8119848,\n", + " 'lng': 16.0047961,\n", + " 'name': 'Štrigina ul. 1A',\n", + " 'place_id': 'ChIJFU6InrTXZUcRAq4aroZVdCA',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Štrigina ulica',\n", + " 'street_name_short': 'Štrigina ul.',\n", + " 'street_number': '1A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://zaklada.civilnodrustvo.hr'},\n", + " {'address': 'Mozaik Foundation Soukbunar 42 71000 Sarajevo Bosnia and '\n", + " 'Herzegovina',\n", + " 'country': 'Bosnia and Herzegovina',\n", + " 'email': 'info@mozaik.ba',\n", + " 'id': 5262,\n", + " 'link': 'https://philea.eu/members/mozaik-foundation/',\n", + " 'name': 'Mozaik Foundation',\n", + " 'position': {'address': 'Soukbunar 42, Sarajevo 71000, Bosnia and '\n", + " 'Herzegovina',\n", + " 'city': 'Sarajevo',\n", + " 'country': 'Bosnia and Herzegovina',\n", + " 'country_short': 'BA',\n", + " 'lat': 43.8522829,\n", + " 'lng': 18.4145591,\n", + " 'name': 'Soukbunar 42',\n", + " 'place_id': 'EjRTb3VrYnVuYXIgNDIsIFNhcmFqZXZvIDcxMDAwLCBCb3NuaWEgYW5kIEhlcnplZ292aW5hIlASTgo0CjIJC6SFI93IWEcRuPXr_MyO7woaHgsQ7sHuoQEaFAoSCctVmj6fzlhHEUxZlCbE4Qv0DBAqKhQKEgkxLbDMwshYRxHBqxt2zhaUgA',\n", + " 'post_code': '71000',\n", + " 'state': 'Federacija Bosne i Hercegovine',\n", + " 'street_name': 'Soukbunar',\n", + " 'street_number': '42',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mozaik.ba'},\n", + " {'address': 'Medicor Foundation Landstrasse 11 P.\\u2009O. Box 130 9495 '\n", + " 'Triesen Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'info@medicor.li',\n", + " 'id': 5261,\n", + " 'link': 'https://philea.eu/members/medicor-foundation/',\n", + " 'name': 'Medicor Foundation',\n", + " 'position': {'address': '9495 Triesen, Liechtenstein',\n", + " 'city': 'Triesen',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.0842296,\n", + " 'lng': 9.5572841,\n", + " 'name': '9495',\n", + " 'place_id': 'ChIJjVLKgfY0m0cRt2kRKBJQdA8',\n", + " 'post_code': '9495',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.medicor.li'},\n", + " {'address': 'Mama Cash Foundation P.O. Box 15686 1001 ND Amsterdam '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@mamacash.org',\n", + " 'id': 5260,\n", + " 'link': 'https://philea.eu/members/mama-cash-foundation/',\n", + " 'name': 'Mama Cash Foundation',\n", + " 'position': {'address': 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'name': 'Amsterdam',\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mamacash.nl'},\n", + " {'address': 'Maj and Tor Nessling Foundation Fredrikinkatu 20 B 16 FIN-00120 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'toimisto@nessling.fi',\n", + " 'id': 5259,\n", + " 'link': 'https://philea.eu/members/maj-and-tor-nessling-foundation/',\n", + " 'name': 'Maj and Tor Nessling Foundation',\n", + " 'position': {'address': 'Maj ja Tor Nesslingin Säätiö, Fredrikinkatu 20 B '\n", + " '16, 00120 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1627741,\n", + " 'lng': 24.93902,\n", + " 'name': 'Maj ja Tor Nesslingin Säätiö',\n", + " 'place_id': 'ChIJQXtfHcoLkkYRL99-h8bfUq8',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Fredrikinkatu',\n", + " 'street_number': '20 B 16',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nessling.fi'},\n", + " {'address': 'Maecenata Foundation Rungestrasse 17 10115 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'mst@maecenata.eu',\n", + " 'id': 5258,\n", + " 'link': 'https://philea.eu/members/maecenata-foundation/',\n", + " 'name': 'Maecenata Foundation',\n", + " 'position': {'address': 'Maecenata Stiftung, Rungestraße, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5121218,\n", + " 'lng': 13.4195188,\n", + " 'name': 'Maecenata Stiftung',\n", + " 'place_id': 'ChIJxW08IztOqEcRYCu3_FheCrw',\n", + " 'post_code': '10179',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Rungestraße',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.maecenata.eu'},\n", + " {'address': 'Lundbeckfonden 7 Scherfigsvej 2100 Copenhagen O Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'lb@lundbeckfonden.com',\n", + " 'id': 5257,\n", + " 'link': 'https://philea.eu/members/lundbeckfonden/',\n", + " 'name': 'Lundbeckfonden',\n", + " 'position': {'address': 'Lundbeckfonden, Scherfigsvej 7, 2100 Copenhagen, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7219251,\n", + " 'lng': 12.5798535,\n", + " 'name': 'Lundbeckfonden',\n", + " 'place_id': 'ChIJZwPg6J3U3UMROSJadjNrJhY',\n", + " 'post_code': '2100',\n", + " 'street_name': 'Scherfigsvej',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.lundbeckfonden.com'},\n", + " {'address': 'LEGO Foundation Koldingvej 2 7190 Billund Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'LEGOFoundation@LEGO.com',\n", + " 'id': 5255,\n", + " 'link': 'https://philea.eu/members/lego-foundation/',\n", + " 'name': 'LEGO Foundation',\n", + " 'position': {'address': 'LEGO Fonden, Koldingvej 2, 7190 Billund, Denmark',\n", + " 'city': 'Billund',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7247517,\n", + " 'lng': 9.130263599999997,\n", + " 'name': 'LEGO Fonden',\n", + " 'place_id': 'ChIJiYUmuXdxS0YRFEhS8jHnJ_M',\n", + " 'post_code': '7190',\n", + " 'street_name': 'Koldingvej',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.legofoundation.com/'},\n", + " {'address': 'Learning for Well-being Foundation 56 Milletstraat 2nd floor '\n", + " '1077 ZG Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@learningforwellbeing.org',\n", + " 'id': 5254,\n", + " 'link': 'https://philea.eu/members/learning-for-well-being-foundation/',\n", + " 'name': 'Learning for Well-being Foundation',\n", + " 'position': {'address': 'Learning for Well-being, Milletstraat 56, 1077 ZG '\n", + " 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.34611239999999,\n", + " 'lng': 4.868931599999999,\n", + " 'name': 'Learning for Well-being',\n", + " 'place_id': 'ChIJd2CK3AEKxkcRmHkI0N-rfw8',\n", + " 'post_code': '1077 ZG',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Milletstraat',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.learningforwellbeing.org'},\n", + " {'address': 'Laudes Foundation Grafenauweg 10 6300 Zug Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'grants@candafoundation.org',\n", + " 'id': 5253,\n", + " 'link': 'https://philea.eu/members/laudes-foundation/',\n", + " 'name': 'Laudes Foundation',\n", + " 'position': {'address': 'Grafenauweg 10, 6300 Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.17444639999999,\n", + " 'lng': 8.512388199999998,\n", + " 'name': 'Grafenauweg 10',\n", + " 'place_id': 'ChIJGRIo1l6qmkcRZ347UaNc4Z4',\n", + " 'post_code': '6300',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Grafenauweg',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.laudesfoundation.org'},\n", + " {'address': 'Kultura Nova Foundation Gajeva 2/6 10 000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@kulturanova.hr',\n", + " 'id': 5252,\n", + " 'link': 'https://philea.eu/members/kultura-nova-foundation/',\n", + " 'name': 'Kultura Nova Foundation',\n", + " 'position': {'address': 'Gajeva ulica 2, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.81273760000001,\n", + " 'lng': 15.9763028,\n", + " 'name': 'Gajeva ul. 2',\n", + " 'place_id': 'ChIJebV5t_3WZUcRHBpVYboricI',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Gajeva ulica',\n", + " 'street_name_short': 'Gajeva ul.',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://kulturanova.hr/'},\n", + " {'address': 'Körber-Stiftung Kehrwieder, 12 20457 Hamburg Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@koerber-stiftung.de',\n", + " 'id': 5251,\n", + " 'link': 'https://philea.eu/members/korber-stiftung/',\n", + " 'name': 'Körber-Stiftung',\n", + " 'position': {'address': 'Körber-Stiftung, Kehrwieder 12, 20457 Hamburg, '\n", + " 'Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.54348539999999,\n", + " 'lng': 9.9839361,\n", + " 'name': 'Körber-Stiftung',\n", + " 'place_id': 'ChIJ7a9K6QWPsUcRCDvuO6g9228',\n", + " 'post_code': '20457',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Kehrwieder',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.koerber-stiftung.de'},\n", + " {'address': 'Kone Foundation Otavantie 10 00200 Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'koneensaatio@koneensaatio.fi',\n", + " 'id': 5250,\n", + " 'link': 'https://philea.eu/members/kone-foundation/',\n", + " 'name': 'Kone Foundation',\n", + " 'position': {'address': 'Otavantie 10, 00200 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.15905369999999,\n", + " 'lng': 24.8791507,\n", + " 'name': 'Otavantie 10',\n", + " 'place_id': 'ChIJEUfVDF0KkkYRvV00UH89E5U',\n", + " 'post_code': '00200',\n", + " 'street_name': 'Otavantie',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.koneensaatio.fi/en'},\n", + " {'address': 'King Baudouin Foundation 21, rue Brederode 1000 Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@kbs-frb.be',\n", + " 'id': 5249,\n", + " 'link': 'https://philea.eu/members/king-baudouin-foundation/',\n", + " 'name': 'King Baudouin Foundation',\n", + " 'position': {'address': 'King Baudouin Foundation, Rue Brederode 21, 1000 '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.84035859999999,\n", + " 'lng': 4.362291999999999,\n", + " 'name': 'King Baudouin Foundation',\n", + " 'place_id': 'ChIJyb9ijYbEw0cRwolM9JVA0zc',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue Brederode',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.kbs-frb.be'},\n", + " {'address': 'John S. Latsis Public Benefit Foundation Xenias 4 14562 Athens '\n", + " 'Greece',\n", + " 'country': 'Greece',\n", + " 'email': 'info@latsis-foundation.org',\n", + " 'id': 5244,\n", + " 'link': 'https://philea.eu/members/john-s-latsis-public-benefit-foundation/',\n", + " 'name': 'John S. Latsis Public Benefit Foundation',\n", + " 'position': {'address': 'John S. Latsis Public Benefit Foundation, Xenias, '\n", + " 'Kifisia, Greece',\n", + " 'city': 'Kifisia',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 38.0762191,\n", + " 'lng': 23.8199362,\n", + " 'name': 'John S. Latsis Public Benefit Foundation',\n", + " 'place_id': 'ChIJB3Dq1OueoRQRAD04Z8VSTqk',\n", + " 'post_code': '145 62',\n", + " 'state': 'Vorios Tomeas Athinon',\n", + " 'street_name': 'Xenias',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.latsis-foundation.org'},\n", + " {'address': 'John D. and Catherine T. MacArthur Foundation 140 S. Dearborn '\n", + " 'Street 12th floor IL 60603-5285 Chicago United States',\n", + " 'country': 'United States',\n", + " 'email': '4answers@macfound.org',\n", + " 'id': 5243,\n", + " 'link': 'https://philea.eu/members/john-d-and-catherine-t-macarthur-foundation/',\n", + " 'name': 'John D. and Catherine T. MacArthur Foundation',\n", + " 'position': {'address': '140 South Dearborn Street, Chicago, IL, USA',\n", + " 'city': 'Chicago',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 41.8797985,\n", + " 'lng': -87.62954719999999,\n", + " 'name': '140 S Dearborn St',\n", + " 'place_id': 'ChIJ2f-rorwsDogRrKRi53x4VbM',\n", + " 'post_code': '60603',\n", + " 'state': 'Illinois',\n", + " 'state_short': 'IL',\n", + " 'street_name': 'South Dearborn Street',\n", + " 'street_name_short': 'S Dearborn St',\n", + " 'street_number': '140',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.macfound.org'},\n", + " {'address': 'Joachim Herz Stiftung Langenhorner Chaussee 384 22419 Hamburg '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@joachim-herz-stiftung.de',\n", + " 'id': 5242,\n", + " 'link': 'https://philea.eu/members/joachim-herz-stiftung/',\n", + " 'name': 'Joachim Herz Stiftung',\n", + " 'position': {'address': 'Joachim-Herz-Stiftung, Langenhorner Chaussee 384, '\n", + " '22419 Hamburg, Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.66087,\n", + " 'lng': 10.0038701,\n", + " 'name': 'Joachim-Herz-Stiftung',\n", + " 'place_id': 'ChIJLahLJeaasUcR5X_lTj2Ge5I',\n", + " 'post_code': '22419',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Langenhorner Chaussee',\n", + " 'street_number': '384',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://joachim-herz-stiftung.de/en/'},\n", + " {'address': 'Jenny and Antti Wihuri Foundation Arkadiankatu, 21A 14 FI-00100 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'toimisto@wihurinrahasto.fi',\n", + " 'id': 5241,\n", + " 'link': 'https://philea.eu/members/jenny-and-antti-wihuri-foundation/',\n", + " 'name': 'Jenny and Antti Wihuri Foundation',\n", + " 'position': {'address': 'Arkadiankatu 21a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.17141220000001,\n", + " 'lng': 24.9259645,\n", + " 'name': 'Arkadiankatu 21a',\n", + " 'place_id': 'ChIJAQDw-jMKkkYRyy3Som8bZZ8',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Arkadiankatu',\n", + " 'street_number': '21a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.wihurinrahasto.fi'},\n", + " {'address': 'Jacobs Foundation Seefeldquai 17 8034 Zürich Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 5240,\n", + " 'link': 'https://philea.eu/members/jacobs-foundation/',\n", + " 'name': 'Jacobs Foundation',\n", + " 'position': {'address': 'Jacobs Foundation, Seefeldquai, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3597658,\n", + " 'lng': 8.5479411,\n", + " 'name': 'Jacobs Foundation',\n", + " 'place_id': 'ChIJdxeGo1GnmkcRiO-Du-uGFU4',\n", + " 'post_code': '8008',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Seefeldquai',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://jacobsfoundation.org/en/'},\n", + " {'address': 'International Rescue Committee 3 Bloomsbury Place WC1A 2QL '\n", + " 'London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5381,\n", + " 'link': 'https://philea.eu/members/international-rescue-committee/',\n", + " 'name': 'International Rescue Committee',\n", + " 'position': {'address': '3 Bloomsbury Place, London WC1A 2QL, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5198666,\n", + " 'lng': -0.1226827,\n", + " 'name': '3 Bloomsbury Pl',\n", + " 'place_id': 'ChIJqXi5BDQbdkgR8eW_ADQ4mho',\n", + " 'post_code': 'WC1A 2QA',\n", + " 'state': 'England',\n", + " 'street_name': 'Bloomsbury Place',\n", + " 'street_name_short': 'Bloomsbury Pl',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.rescue.org'},\n", + " {'address': 'International Renaissance Foundation 46 Artema Street 04053 Kiev '\n", + " 'Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'irf@irf.kiev.ua',\n", + " 'id': 5237,\n", + " 'link': 'https://philea.eu/members/international-renaissance-foundation/',\n", + " 'name': 'International Renaissance Foundation',\n", + " 'position': {'address': 'International Fund \"Renaissance\", Artema Street, '\n", + " '46, Kyiv, Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.45654439999999,\n", + " 'lng': 30.493665,\n", + " 'name': 'International Fund \"Renaissance\"',\n", + " 'place_id': 'ChIJMwMydGTO1EARULC_pmQi7AQ',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv City',\n", + " 'street_name': 'Sichovykh Striltsiv Street',\n", + " 'street_name_short': 'Sichovykh Striltsiv St',\n", + " 'street_number': '46',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.irf.kiev.ua'},\n", + " {'address': 'International Committe of the Red Cross 19 Avenue de la paix CH '\n", + " '1202 Geneva Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'webmaster@icrc.org',\n", + " 'id': 5235,\n", + " 'link': 'https://philea.eu/members/international-committee-of-the-red-cross/',\n", + " 'name': 'International Committee of the Red Cross',\n", + " 'position': {'address': 'International Committee of the Red Cross (ICRC), '\n", + " 'Avenue de la Paix 19, 1202 Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2274351,\n", + " 'lng': 6.1375921,\n", + " 'name': 'International Committee of the Red Cross (ICRC)',\n", + " 'place_id': 'ChIJnc-xwvpkjEcRcjLSGUyTJfE',\n", + " 'post_code': '1202',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Avenue de la Paix',\n", + " 'street_name_short': 'Av. de la Paix',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.icrc.org'},\n", + " {'address': 'IKEA Foundation Dellaertweg 9G 2316WZ Leiden Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'programmes@ikeafoundation.org',\n", + " 'id': 5234,\n", + " 'link': 'https://philea.eu/members/ikea-foundation/',\n", + " 'name': 'IKEA Foundation',\n", + " 'position': {'address': 'Dellaertweg 9g, 2316 WZ Leiden, Netherlands',\n", + " 'city': 'Leiden',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.1683013,\n", + " 'lng': 4.4860001,\n", + " 'name': 'Dellaertweg 9',\n", + " 'place_id': 'EipEZWxsYWVydHdlZyA5LCAyMzE2IFhCIExlaWRlbiwgTmV0aGVybGFuZHMiUBJOCjQKMgkTIYc-6sbFRxFPU3pjx0tJQhoeCxDuwe6hARoUChIJX7vUhenGxUcRdvVaLdfuxKUMEAkqFAoSCRMhhz7qxsVHEe8HBQ8NhVWW',\n", + " 'post_code': '2316 XB',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Dellaertweg',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ikeafoundation.org'},\n", + " {'address': 'Global Dialogue The Foundry 17 Oval Way SE11 5RR London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@global-dialogue.org',\n", + " 'id': 5229,\n", + " 'link': 'https://philea.eu/members/global-dialogue/',\n", + " 'name': 'Global Dialogue',\n", + " 'position': {'address': 'The Foundry | Office Space and Conference Centre, '\n", + " '17 Oval Way, London SE11 5RR, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4858439,\n", + " 'lng': -0.1163458,\n", + " 'name': 'The Foundry | Office Space and Conference Centre',\n", + " 'place_id': 'ChIJj2Ia2ZIEdkgRBQxKgeXWaQs',\n", + " 'post_code': 'SE11 5RR',\n", + " 'state': 'England',\n", + " 'street_name': 'Oval Way',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.global-dialogue.org'},\n", + " {'address': 'Gjensidigestiftelsen Grundingen 6, Aker Brygge 0250 Oslo Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'mail@gjensidigestiftelsen.no',\n", + " 'id': 5228,\n", + " 'link': 'https://philea.eu/members/gjensidigestiftelsen/',\n", + " 'name': 'Gjensidigestiftelsen',\n", + " 'position': {'address': 'Gjensidigestiftelsen, Aker Brygge, Grundingen 6, '\n", + " '0250 Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.91064249999999,\n", + " 'lng': 10.7279563,\n", + " 'name': 'Gjensidigestiftelsen',\n", + " 'place_id': 'ChIJ1V49AYFuQUYRYTyGzG6PQVw',\n", + " 'post_code': '0250',\n", + " 'state': 'Oslo',\n", + " 'street_name': 'Grundingen',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gjensidigestiftelsen.no/english'},\n", + " {'address': 'The German Marshall Fund of the United States 1744 R Street, NW '\n", + " '20009 Washington, DC United States',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 5227,\n", + " 'link': 'https://philea.eu/members/german-marshall-fund-of-the-united-states-the/',\n", + " 'name': 'German Marshall Fund of the United States, The',\n", + " 'position': {'address': 'The German Marshall Fund of the United States, 1744 '\n", + " 'R Street Northwest, Washington, DC 20009, United '\n", + " 'States',\n", + " 'city': 'Washington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.9124205,\n", + " 'lng': -77.0402714,\n", + " 'name': 'The German Marshall Fund of the United States',\n", + " 'place_id': 'ChIJc3tDMsS3t4kRn7RO_AoyGbw',\n", + " 'post_code': '20009',\n", + " 'state': 'District of Columbia',\n", + " 'state_short': 'DC',\n", + " 'street_name': 'R Street Northwest',\n", + " 'street_name_short': 'R St NW',\n", + " 'street_number': '1744',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gmfus.org'},\n", + " {'address': 'Gerda Henkel Stiftung Malkastenstrasse 15 40211 Dusseldorf '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@gerda-henkel-stiftung.de',\n", + " 'id': 5226,\n", + " 'link': 'https://philea.eu/members/gerda-henkel-stiftung/',\n", + " 'name': 'Gerda Henkel Stiftung',\n", + " 'position': {'address': 'Gerda Henkel Stiftung, Malkastenstraße 15, 40211 '\n", + " 'Düsseldorf, Germany',\n", + " 'city': 'Düsseldorf',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.2306679,\n", + " 'lng': 6.788907200000001,\n", + " 'name': 'Gerda Henkel Stiftung',\n", + " 'place_id': 'ChIJ9ZOpRCbKuEcRtgW0xqj1p9s',\n", + " 'post_code': '40211',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Malkastenstraße',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gerda-henkel-stiftung.de'},\n", + " {'address': 'Genio Trust Westland Square 19-21 Pearse Street D02 YH27 Dublin '\n", + " '2 Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': 'info@genio.ie',\n", + " 'id': 5225,\n", + " 'link': 'https://philea.eu/members/genio/',\n", + " 'name': 'Genio',\n", + " 'position': {'address': 'Westland Square, Pearse Street, Dublin 2, Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.3443049,\n", + " 'lng': -6.2474485,\n", + " 'name': 'Westland Square',\n", + " 'place_id': 'ChIJIwvWjpEOZ0gRop0AhQYcs1Q',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Pearse Street',\n", + " 'street_name_short': 'Pearse St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.genio.ie'},\n", + " {'address': 'Fundación Ramón Areces Calle Vitruvio, 5 28006 Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'secretaria@fundacionareces.es',\n", + " 'id': 5222,\n", + " 'link': 'https://philea.eu/members/fundacion-ramon-areces/',\n", + " 'name': 'Fundación Ramón Areces',\n", + " 'position': {'address': 'Fundación Ramón Areces, Calle Vitruvio, 5, 28006 '\n", + " 'Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4431182,\n", + " 'lng': -3.6889176,\n", + " 'name': 'Ramón Areces Foundation',\n", + " 'place_id': 'ChIJOeD_Qe8oQg0R5K_qvAR32ME',\n", + " 'post_code': '28006',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Vitruvio',\n", + " 'street_name_short': 'C. de Vitruvio',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionareces.es'},\n", + " {'address': 'Fundación Princesa de Girona C. Juli Garreta, 1, 1r E 17002 '\n", + " 'Girona Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fpdgi.org',\n", + " 'id': 5221,\n", + " 'link': 'https://philea.eu/members/fundacion-princesa-de-girona/',\n", + " 'name': 'Fundación Princesa de Girona',\n", + " 'position': {'address': 'Fundació Princesa de Girona, Carrer Juli Garreta, '\n", + " '1, 1r E, 17002 Girona, Spain',\n", + " 'city': 'Gerona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.9797082,\n", + " 'lng': 2.8195976,\n", + " 'name': 'Fundació Princesa de Girona',\n", + " 'place_id': 'ChIJRSrtZcrmuhIR1KZjv8tfY4s',\n", + " 'post_code': '17002',\n", + " 'state': 'Cataluña',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Carrer Juli Garreta',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://en.fpdgi.org/'},\n", + " {'address': 'Fundación Princesa de Asturias General Yagüe 2, 1° 33004 Oviedo '\n", + " 'Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fpa.es',\n", + " 'id': 5220,\n", + " 'link': 'https://philea.eu/members/fundacion-princesa-de-asturias/',\n", + " 'name': 'Fundación Princesa de Asturias',\n", + " 'position': {'address': 'Princess of Asturias Foundation, General Yagüe, '\n", + " 'Oviedo, Spain',\n", + " 'city': 'Oviedo',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 43.3628135,\n", + " 'lng': -5.8532017,\n", + " 'name': 'Princess of Asturias Foundation',\n", + " 'place_id': 'ChIJ25ExJeOMNg0RUcoNBo3_PiA',\n", + " 'post_code': '33004',\n", + " 'state': 'Principado de Asturias',\n", + " 'state_short': 'AS',\n", + " 'street_name': 'General Yagüe',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fpa.es'},\n", + " {'address': 'Fundación ONCE C/ Sebastián Herrera 15 28012 Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'dae@fundaciononce.es',\n", + " 'id': 5219,\n", + " 'link': 'https://philea.eu/members/fundacion-once/',\n", + " 'name': 'Fundación ONCE',\n", + " 'position': {'address': 'Fundación ONCE, Calle de Sebastián Herrera, 15, '\n", + " '28012 Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4040145,\n", + " 'lng': -3.6994322,\n", + " 'name': 'Fundación ONCE',\n", + " 'place_id': 'ChIJcSbqcy0mQg0R9k83WEfJnP4',\n", + " 'post_code': '28012',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Sebastián Herrera',\n", + " 'street_name_short': 'C. de Sebastián Herrera',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundaciononce.es'},\n", + " {'address': 'Fundacion Maria Cristina Masaveu Peterson Alcalá Galiano 6 28010 '\n", + " 'Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'secretaria@fundacioncristinamasaveu.com',\n", + " 'id': 5218,\n", + " 'link': 'https://philea.eu/members/fundacion-maria-cristina-masaveu-peterson/',\n", + " 'name': 'Fundación María Cristina Masaveu Peterson',\n", + " 'position': {'address': 'Fundación María Cristina Masaveu Peterson, Calle '\n", + " 'Alcalá Galiano, 6, 28010 Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.426676,\n", + " 'lng': -3.691599,\n", + " 'name': 'Fundación María Cristina Masaveu Peterson',\n", + " 'place_id': 'ChIJJcrHx5EoQg0RXTX908LZ5e8',\n", + " 'post_code': '28010',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle Alcalá Galiano',\n", + " 'street_name_short': 'C. Alcalá Galiano',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacioncristinamasaveu.com/en/'},\n", + " {'address': 'Calle Maria de Molina, 11-13-15, 28006 Madrid, España',\n", + " 'country': 'Spain',\n", + " 'email': 'iefoundation@ie.edu',\n", + " 'id': 5217,\n", + " 'link': 'https://philea.eu/members/ie-foundation/',\n", + " 'name': 'IE Foundation',\n", + " 'position': {'address': 'Calle de María de Molina, 11-13-15, 28006 Madrid, '\n", + " 'España',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4375247,\n", + " 'lng': -3.6894636,\n", + " 'name': 'Calle de María de Molina, 11-13-15',\n", + " 'place_id': 'ChIJVVVlOOwoQg0RnhDE1RKpXl0',\n", + " 'post_code': '28006',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de María de Molina',\n", + " 'street_number': '11-13-15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.ie.edu/ie-foundation/'},\n", + " {'address': 'Fundación Barrié Cantón Grande, 9 15003 A Coruña Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fbarrie.org',\n", + " 'id': 5216,\n", + " 'link': 'https://philea.eu/members/fundacion-barrie/',\n", + " 'name': 'Fundación Barrié',\n", + " 'position': {'address': 'Fundación Barrié, Rúa Cantón Grande, 9, 15003 A '\n", + " 'Coruña, Spain',\n", + " 'city': 'A Coruña',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 43.36801620000001,\n", + " 'lng': -8.403474800000001,\n", + " 'name': 'Fundación Barrié',\n", + " 'place_id': 'ChIJ_Vr12318Lg0R3jcNUA9hatk',\n", + " 'post_code': '15003',\n", + " 'state': 'Galicia',\n", + " 'state_short': 'GA',\n", + " 'street_name': 'Rúa Cantón Grande',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionbarrie.org'},\n", + " {'address': 'Fundação Luso-Americana para o Desenvolvimento Rua do Sacramento '\n", + " 'à Lapa 21 1249-090 Lisbon Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'fladport@flad.pt',\n", + " 'id': 5214,\n", + " 'link': 'https://philea.eu/members/fundacao-luso-americana-para-o-desenvolvimento/',\n", + " 'name': 'Fundação Luso-Americana para o Desenvolvimento',\n", + " 'position': {'address': 'Rua Sacramento à Lapa 21, Lisbon, Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.708293,\n", + " 'lng': -9.162948499999999,\n", + " 'name': 'R. Sacramento à Lapa 21',\n", + " 'place_id': 'ChIJu2jwj540GQ0RpMgVt3mWgcs',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Rua Sacramento à Lapa',\n", + " 'street_name_short': 'R. Sacramento à Lapa',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.flad.pt'},\n", + " {'address': 'Fundação Calouste Gulbenkian Avenida de Berna 45ª 1067-001 '\n", + " 'Lisbon Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'info@gulbenkian.pt',\n", + " 'id': 5213,\n", + " 'link': 'https://philea.eu/members/fundacao-calouste-gulbenkian/',\n", + " 'name': 'Fundação Calouste Gulbenkian',\n", + " 'position': {'address': 'Avenida de Berna 45 A, Lisbon, Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.7373239,\n", + " 'lng': -9.1544367,\n", + " 'name': 'Av. de Berna 45 A',\n", + " 'place_id': 'ChIJky4ozw0zGQ0RNNlnB1Kvuo8',\n", + " 'post_code': '1050-078',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Avenida de Berna',\n", + " 'street_name_short': 'Av. de Berna',\n", + " 'street_number': '45 A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gulbenkian.pt'},\n", + " {'address': 'Fritt Ord Foundation Uranienborgveien 2 0258 Oslo Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@frittord.no',\n", + " 'id': 5211,\n", + " 'link': 'https://philea.eu/members/fritt-ord-foundation/',\n", + " 'name': 'Fritt Ord Foundation',\n", + " 'position': {'address': 'Fritt Ord, Uranienborgveien 2, 0258 Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.9199598,\n", + " 'lng': 10.7264898,\n", + " 'name': 'Fritt Ord',\n", + " 'place_id': 'ChIJveWuq3huQUYRTOGkJjmrBaA',\n", + " 'post_code': '0258',\n", + " 'state': 'Oslo',\n", + " 'street_name': 'Uranienborgveien',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.frittord.no/'},\n", + " {'address': 'Freudenberg Stiftung GmbH Freudenberg Straße 2 69469 Weinheim '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@freudenbergstiftung.de',\n", + " 'id': 5210,\n", + " 'link': 'https://philea.eu/members/freudenberg-stiftung-gmbh/',\n", + " 'name': 'Freudenberg Stiftung GmbH',\n", + " 'position': {'address': 'Freudenberg Stiftung GmbH, Freudenbergstraße 2, '\n", + " '69469 Weinheim, Germany',\n", + " 'city': 'Weinheim',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 49.54678930000001,\n", + " 'lng': 8.6686229,\n", + " 'name': 'Freudenberg Stiftung',\n", + " 'place_id': 'ChIJq-Y4QDzbl0cRBks74TPq6jQ',\n", + " 'post_code': '69469',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Freudenbergstraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.freudenbergstiftung.de'},\n", + " {'address': 'Centre Français des Fonds et Fondations 34bis, Rue Vignon (3e '\n", + " 'étage) 75009 Paris France',\n", + " 'country': 'France',\n", + " 'email': 'info@centre-francais-fondations.org',\n", + " 'id': 5113,\n", + " 'link': 'https://philea.eu/members/french-foundation-centre/',\n", + " 'name': 'French Foundation Centre',\n", + " 'position': {'address': 'French Center Funds and Foundations, Rue Vignon, '\n", + " 'Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.87247439999999,\n", + " 'lng': 2.3267006,\n", + " 'name': 'French Center Funds and Foundations',\n", + " 'place_id': 'ChIJA4HSZDRu5kcR3H-xSIWTGUk',\n", + " 'post_code': '75009',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Vignon',\n", + " 'street_number': '34 bis',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.centre-francais-fondations.org'},\n", + " {'address': 'Foundation for Polish Science Ignacego Krasickiego 20/22 02-611 '\n", + " 'Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'fnp@fnp.org.pl',\n", + " 'id': 5209,\n", + " 'link': 'https://philea.eu/members/foundation-for-polish-science/',\n", + " 'name': 'Foundation for Polish Science',\n", + " 'position': {'address': 'Foundation for Polish Science, Ignacego Krasickiego '\n", + " '20/22, 02-611 Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.1932676,\n", + " 'lng': 21.02082279999999,\n", + " 'name': 'Foundation for Polish Science',\n", + " 'place_id': 'ChIJIXitbyvNHkcRiWmzoAGXue4',\n", + " 'post_code': '02-611',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Ignacego Krasickiego',\n", + " 'street_number': '20/22',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fnp.org.pl/en/'},\n", + " {'address': 'Foundation for Future Generations rue des Brasseurs, 182 5000 '\n", + " 'Namur Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'fgf@fgf.be',\n", + " 'id': 5208,\n", + " 'link': 'https://philea.eu/members/foundation-for-future-generations/',\n", + " 'name': 'Foundation for Future Generations',\n", + " 'position': {'address': 'Rue des Brasseurs 182, 5000 Namur, Belgium',\n", + " 'city': 'Namur',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.4623091,\n", + " 'lng': 4.8615162,\n", + " 'name': 'Rue des Brasseurs 182',\n", + " 'place_id': 'ChIJf3oGvHGZwUcRKku0PAkuwyU',\n", + " 'post_code': '5000',\n", + " 'state': 'Région Wallonne',\n", + " 'state_short': 'NA',\n", + " 'street_name': 'Rue des Brasseurs',\n", + " 'street_number': '182',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.foundationfuturegenerations.org'},\n", + " {'address': 'Ford Foundation 320 East 43rd Street 10017 New York City United '\n", + " 'States',\n", + " 'country': 'United States',\n", + " 'email': 'office-of-communications@fordfoundation.org',\n", + " 'id': 5206,\n", + " 'link': 'https://philea.eu/members/ford-foundation/',\n", + " 'name': 'Ford Foundation',\n", + " 'position': {'address': 'Ford Foundation, 320 East 43rd Street, Manhattan, '\n", + " 'New York, NY 10017, United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.74979529999999,\n", + " 'lng': -73.9711624,\n", + " 'name': 'Ford Foundation Center for Social Justice',\n", + " 'place_id': 'ChIJ-f_F2txZwokR_cfRXvbXrsI',\n", + " 'post_code': '10017',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'East 43rd Street',\n", + " 'street_name_short': 'E 43rd St',\n", + " 'street_number': '320',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fordfound.org'},\n", + " {'address': 'Fondazione Cassa di Risparmio della Provincia di Teramo Largo '\n", + " 'Melatini 17/23 64100 Teramo Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionetercas.it',\n", + " 'id': 5204,\n", + " 'link': 'https://philea.eu/members/fondazione-tercas/',\n", + " 'name': 'Fondazione Tercas',\n", + " 'position': {'address': 'Fondazione Cassa Di Risparmio Della Provincia Di '\n", + " 'Teramo, Largo Melatino, Teramo, Province of Teramo, '\n", + " 'Italy',\n", + " 'city': 'Teramo',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.65857889999999,\n", + " 'lng': 13.7064468,\n", + " 'name': 'Fondazione Cassa Di Risparmio Della Provincia Di '\n", + " 'Teramo',\n", + " 'place_id': 'ChIJk18pRPXnMRMRc1eECELe7sc',\n", + " 'post_code': '64100',\n", + " 'state': 'Abruzzo',\n", + " 'state_short': 'TE',\n", + " 'street_name': 'Largo Melatino',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionetercas.it'},\n", + " {'address': 'Fondazione Sviluppo e Crescita CRT Via XX Settembre, 31 10121 '\n", + " 'Torino Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@sviluppoecrescitacrt.it',\n", + " 'id': 5203,\n", + " 'link': 'https://philea.eu/members/fondazione-sviluppo-e-crescita-crt/',\n", + " 'name': 'Fondazione Sviluppo e Crescita CRT',\n", + " 'position': {'address': 'Fondazione CRT, Via XX Settembre, 31, 10121 Torino, '\n", + " 'Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0669842,\n", + " 'lng': 7.680321699999999,\n", + " 'name': 'Fondazione CRT',\n", + " 'place_id': 'ChIJg3DDLGxtiEcRCRSv3n0__IY',\n", + " 'post_code': '10121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via XX Settembre',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sviluppoecrescitacrt.it/'},\n", + " {'address': 'Fondazione Monte dei Paschi di Siena Via Banchi di Sotto 34 '\n", + " '53100 Siena Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fmps@fondazionemps.it',\n", + " 'id': 5201,\n", + " 'link': 'https://philea.eu/members/fondazione-monte-dei-paschi-di-siena/',\n", + " 'name': 'Fondazione Monte dei Paschi di Siena',\n", + " 'position': {'address': 'Fondazione Mps, Banchi di Sotto, 34, 53100 Siena, '\n", + " 'Province of Siena, Italy',\n", + " 'city': 'Siena',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.3191491,\n", + " 'lng': 11.3319299,\n", + " 'name': 'Fondazione Mps',\n", + " 'place_id': 'ChIJu71NtWctKhMRG2xgBB9OM_c',\n", + " 'post_code': '53100',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'SI',\n", + " 'street_name': 'Banchi di Sotto',\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionemps.it'},\n", + " {'address': 'Fondazione Invernizzi Corso Venezia 32 20121 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazioneinvernizzi.it',\n", + " 'id': 5200,\n", + " 'link': 'https://philea.eu/members/fondazione-invernizzi/',\n", + " 'name': 'Fondazione Invernizzi',\n", + " 'position': {'address': 'Corso Venezia, 32, 20121 Milan, Metropolitan City '\n", + " 'of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.47093,\n", + " 'lng': 9.201731700000002,\n", + " 'name': 'Corso Venezia, 32',\n", + " 'place_id': 'ChIJIV4D27vGhkcR3N5fFVnr_1U',\n", + " 'post_code': '20121',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Corso Venezia',\n", + " 'street_number': '32',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazioneinvernizzi.it/en'},\n", + " {'address': 'Fondazione Generali – The Human Safety Net- Ente Filantropico '\n", + " 'Piazza Duca degli Abruzzi 2, 34132 Trieste Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'contact@thehumansafetynet.org',\n", + " 'id': 5199,\n", + " 'link': 'https://philea.eu/members/fondazione-generali-the-human-safety-net-onlus/',\n", + " 'name': 'The Human Safety Net',\n", + " 'position': {'address': 'Fondazione Generali – The Human Safety Net- Ente '\n", + " 'Filantropico Piazza Duca degli Abruzzi 2, 34132 '\n", + " 'Trieste Italy',\n", + " 'city': 'Trieste',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.6536226,\n", + " 'lng': 13.7706201,\n", + " 'place_id': 'ChIJd-p2FG5re0cRF2dfC4hfT_8',\n", + " 'post_code': '34132',\n", + " 'state': 'Friuli-Venezia Giulia',\n", + " 'state_short': 'TS',\n", + " 'street_name': 'Piazza Luigi Amedeo Duca degli Abruzzi',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.thehumansafetynet.org'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Modena Via Emilia Centro 283 '\n", + " '41121 Modena Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionedimodena.it',\n", + " 'id': 5196,\n", + " 'link': 'https://philea.eu/members/fondazione-di-modena/',\n", + " 'name': 'Fondazione di Modena',\n", + " 'position': {'address': 'Via Emilia, Modena, Province of Modena, Italy',\n", + " 'city': 'Modena',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.6467188,\n", + " 'lng': 10.9260543,\n", + " 'name': 'Via Emilia',\n", + " 'place_id': 'EiJWaWEgRW1pbGlhLCA0MTEyMSBNb2RlbmEgTU8sIEl0YWx5Ii4qLAoUChIJie4tfBTvf0cRUVB1UgvdwvUSFAoSCeFkSd0S739HESh_K0l9HnWW',\n", + " 'post_code': '41121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'MO',\n", + " 'street_name': 'Via Emilia',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionedimodena.it/'},\n", + " {'address': 'Fondazione CRT Via XX Settembre 31 10121 Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrt.it',\n", + " 'id': 5195,\n", + " 'link': 'https://philea.eu/members/fondazione-crt/',\n", + " 'name': 'Fondazione CRT',\n", + " 'position': {'address': 'Fondazione CRT, Via XX Settembre, 31, 10121 Turin, '\n", + " 'Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0669842,\n", + " 'lng': 7.680321699999999,\n", + " 'name': 'Fondazione CRT',\n", + " 'place_id': 'ChIJg3DDLGxtiEcRCRSv3n0__IY',\n", + " 'post_code': '10121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via XX Settembre',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrt.it'},\n", + " {'address': 'Fondazione CON IL SUD Corso Vittorio Emanuele II, 184 00186 Rome '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazioneconilsud.it',\n", + " 'id': 5194,\n", + " 'link': 'https://philea.eu/members/fondazione-con-il-sud/',\n", + " 'name': 'Fondazione CON IL SUD',\n", + " 'position': {'address': 'Corso Vittorio Emanuele II, 184, 00186 Rome, '\n", + " 'Metropolitan City of Rome, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.89723420000001,\n", + " 'lng': 12.4707195,\n", + " 'name': 'Corso Vittorio Emanuele II, 184',\n", + " 'place_id': 'ChIJOdwzCkVgLxMRa-5qAefkCtE',\n", + " 'post_code': '00186',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Corso Vittorio Emanuele II',\n", + " 'street_number': '184',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazioneconilsud.it/'},\n", + " {'address': 'Compagnia di San Paolo Corso Vittorio Emanuele II, 75 10128 '\n", + " 'Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@compagniadisanpaolo.it',\n", + " 'id': 5193,\n", + " 'link': 'https://philea.eu/members/fondazione-compagnia-di-san-paolo/',\n", + " 'name': 'Fondazione Compagnia di San Paolo',\n", + " 'position': {'address': 'Compagnia di San Paolo, Corso Vittorio Emanuele II, '\n", + " '75, 10128 Turin, Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0644594,\n", + " 'lng': 7.673241600000002,\n", + " 'name': 'Compagnia di San Paolo',\n", + " 'place_id': 'ChIJOdpkvBRtiEcRrWoEhGIxhEU',\n", + " 'post_code': '10128',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Corso Vittorio Emanuele II',\n", + " 'street_number': '75',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.compagniadisanpaolo.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio in Bologna (CARISBO) Via Farini, '\n", + " '15 40124 Bologna Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecarisbo.it',\n", + " 'id': 5191,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-in-bologna/',\n", + " 'name': 'Fondazione Cassa di Risparmio in Bologna',\n", + " 'position': {'address': 'Via Farini, 15, Bologna, Metropolitan City of '\n", + " 'Bologna, Italy',\n", + " 'city': 'Bologna',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.4914577,\n", + " 'lng': 11.3461144,\n", + " 'name': 'Via Farini, 15',\n", + " 'place_id': 'ChIJHyWcbr_Uf0cR47gNmUfI4Es',\n", + " 'post_code': '40124',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'BO',\n", + " 'street_name': 'Via Farini',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecarisbo.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Parma Via al Ponte Caprazucca 4 '\n", + " '43121 Parma Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrp.it',\n", + " 'id': 5188,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-parma/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Parma',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Parma, Strada '\n", + " 'Ponte Caprazucca, Parma, Province of Parma, Italy',\n", + " 'city': 'Parma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.79847959999999,\n", + " 'lng': 10.325979,\n", + " 'name': 'Fondazione Cassa di Risparmio di Parma',\n", + " 'place_id': 'ChIJbdmPU-FqgEcRagAwQ3XrgOE',\n", + " 'post_code': '43121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'PR',\n", + " 'street_name': 'Strada Ponte Caprazucca',\n", + " 'street_name_short': 'Str. Ponte Caprazucca',\n", + " 'street_number': '4/a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrp.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Padova e Rovigo Piazza Duomo, '\n", + " '15 35141 Padova Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionecariparo.it',\n", + " 'id': 5187,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-padova-e-rovigo/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Padova e Rovigo',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Padova e Rovigo, '\n", + " 'Piazza Duomo, Padua, Province of Padua, Italy',\n", + " 'city': 'Padova',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4071737,\n", + " 'lng': 11.8727611,\n", + " 'name': 'Fondazione Cassa di Risparmio di Padova e Rovigo',\n", + " 'place_id': 'ChIJ9V56vE_afkcRSmb0ohCX3D4',\n", + " 'post_code': '35139',\n", + " 'state': 'Veneto',\n", + " 'state_short': 'PD',\n", + " 'street_name': 'Piazza Duomo',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariparo.it'},\n", + " {'address': 'Ente Cassa di Risparmio di Firenze Via Bufalini 6 I-50122 '\n", + " 'Florence Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'europeanaffairs@fcrf.it',\n", + " 'id': 5186,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-firenze/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Firenze',\n", + " 'position': {'address': 'Foundation Cassa Di Risparmio di Firenze, Via '\n", + " 'Maurizio Bufalini, 6, 50122 Florence, Metropolitan '\n", + " 'City of Florence, Italy',\n", + " 'city': 'Firenze',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.7737305,\n", + " 'lng': 11.2586293,\n", + " 'name': 'Foundation Cassa Di Risparmio di Firenze',\n", + " 'place_id': 'ChIJW1xocARUKhMR2pMRmrXAHF4',\n", + " 'post_code': '50122',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'FI',\n", + " 'street_name': 'Via Maurizio Bufalini',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionecrfirenze.it/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Cuneo Via Roma, 17 12100 Cuneo '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrc.it',\n", + " 'id': 5185,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-cuneo/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Cuneo',\n", + " 'position': {'address': 'Fondazione Cassa Di Risparmio Di Cuneo, Via Roma, '\n", + " '17, 12100 Cuneo, Province of Cuneo, Italy',\n", + " 'city': 'Cuneo',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.39335699999999,\n", + " 'lng': 7.552000299999998,\n", + " 'name': 'Foundation Of Cuneo Savings Bank',\n", + " 'place_id': 'ChIJuc6f3z1pzRIRJCG-oPWv6QI',\n", + " 'post_code': '12100',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'CN',\n", + " 'street_name': 'Via Roma',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrc.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler '\n", + " 'Sparkasse Via Talvera, 18 39100 Bolzano Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecassarisparmiobz.it',\n", + " 'id': 5184,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-bolzano-stiftung-sudtiroler-sparkasse/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler '\n", + " 'Sparkasse',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Bolzano, Via '\n", + " 'Talvera, 18, 39100 Bolzano, Province of Bolzano - '\n", + " 'South Tyrol, Italy',\n", + " 'city': 'Bolzano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 46.500426,\n", + " 'lng': 11.348563,\n", + " 'name': 'Fondazione Cassa di Risparmio di Bolzano',\n", + " 'place_id': 'ChIJx-xzsn2egkcRgvUEP26hFG0',\n", + " 'post_code': '39100',\n", + " 'state': 'Trentino-Alto Adige',\n", + " 'state_short': 'BZ',\n", + " 'street_name': 'Via Talvera',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.stiftungsparkasse.it/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Ascoli Piceno Corso Mazzini, '\n", + " '190 63100 Ascoli Piceno Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fondazionecarisap@fondazionecarisap.it',\n", + " 'id': 5183,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-ascoli-piceno/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Ascoli Piceno',\n", + " 'position': {'address': 'Cassa Di Risparmio Di Ascoli Piceno S.P.A., Corso '\n", + " 'Giuseppe Mazzini, 190, 63100 Ascoli Piceno, '\n", + " 'Province of Ascoli Piceno, Italy',\n", + " 'city': 'Ascoli Piceno',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.8550662,\n", + " 'lng': 13.5774481,\n", + " 'name': 'Cassa Di Risparmio Di Ascoli Piceno S.P.A.',\n", + " 'place_id': 'ChIJxfj7EBD9MRMRkaLQ8qO-4VI',\n", + " 'post_code': '63100',\n", + " 'state': 'Marche',\n", + " 'state_short': 'AP',\n", + " 'street_name': 'Corso Giuseppe Mazzini',\n", + " 'street_name_short': 'C. Mazzini',\n", + " 'street_number': '190',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecarisap.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Alessandria Piazza della '\n", + " 'Libertà, 28 15121 Alessandria Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'direzione@fondazionecralessandria.it',\n", + " 'id': 5182,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-alessandria/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Alessandria',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Alessandria, '\n", + " 'Piazza della Libertà, 28, 15121 Alessandria, '\n", + " 'Province of Alessandria, Italy',\n", + " 'city': 'Alessandria',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.9140767,\n", + " 'lng': 8.6154444,\n", + " 'name': 'Fondazione Cassa di Risparmio di Alessandria',\n", + " 'place_id': 'ChIJUcK2sz50h0cROmC3ZZgvjns',\n", + " 'post_code': '15121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'AL',\n", + " 'street_name': 'Piazza della Libertà',\n", + " 'street_number': '28',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecralessandria.it'},\n", + " {'address': 'Fondazione Cassa dei Risparmi di Forli Corso Garibaldi, 45 47121 '\n", + " 'Forli Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fondazione@pec.fondazionecariforli.it',\n", + " 'id': 5180,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-dei-risparmi-di-forli/',\n", + " 'name': 'Fondazione Cassa dei Risparmi di Forlì',\n", + " 'position': {'address': \"Fondazione Cassa Di Risparmio Di Forli', Corso \"\n", + " 'Giuseppe Garibaldi, 45, 47121 Forlì, Province of '\n", + " 'Forlì-Cesena, Italy',\n", + " 'city': 'Forlì',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.2224899,\n", + " 'lng': 12.0386656,\n", + " 'name': \"Fondazione Cassa Di Risparmio Di Forli'\",\n", + " 'place_id': 'ChIJfXwK449XKxMRnPyEXec470Y',\n", + " 'post_code': '47121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'FC',\n", + " 'street_name': 'Corso Giuseppe Garibaldi',\n", + " 'street_number': '45',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariforli.it'},\n", + " {'address': 'Fondazione Cariplo Via Manin, 23 20121 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteriagenerale@fondazionecariplo.it',\n", + " 'id': 5179,\n", + " 'link': 'https://philea.eu/members/fondazione-cariplo/',\n", + " 'name': 'Fondazione Cariplo',\n", + " 'position': {'address': 'Fondazione Cariplo, Via Manin, 23, 20121 Milan, '\n", + " 'Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4752242,\n", + " 'lng': 9.196740799999999,\n", + " 'name': 'Cariplo Foundation',\n", + " 'place_id': 'ChIJX0YXuLfGhkcRcPD5VaJbfcU',\n", + " 'post_code': '20121',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Daniele Manin',\n", + " 'street_number': '23',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariplo.it'},\n", + " {'address': 'Fondazione Bracco Via Cino del Duca, 8 20122 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionebracco.com',\n", + " 'id': 5178,\n", + " 'link': 'https://philea.eu/members/fondazione-bracco/',\n", + " 'name': 'Fondazione Bracco',\n", + " 'position': {'address': 'Fondazione Bracco, Via Cino del Duca, 8, 20122 '\n", + " 'Milan, Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.466449,\n", + " 'lng': 9.2003988,\n", + " 'name': 'Fondazione Bracco',\n", + " 'place_id': 'ChIJrxCtUeXHhkcRdnjMaroUQWk',\n", + " 'post_code': '20122',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Cino del Duca',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionebracco.com'},\n", + " {'address': 'Fondazione Banca del Monte di Lucca Piazza San Martino, 4 55100 '\n", + " 'Lucca Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionebmlucca.it',\n", + " 'id': 5177,\n", + " 'link': 'https://philea.eu/members/fondazione-banca-del-monte-di-lucca/',\n", + " 'name': 'Fondazione Banca del Monte di Lucca',\n", + " 'position': {'address': 'BANCA DEL MONTE DI LUCCA SEDE DI LUCCA, Piazza San '\n", + " 'Martino, 4, 55100 Lucca, Province of Lucca, Italy',\n", + " 'city': 'Lucca',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.8406001,\n", + " 'lng': 10.5052227,\n", + " 'name': 'BANCA DEL MONTE DI LUCCA SEDE DI LUCCA',\n", + " 'place_id': 'ChIJYdhq7YqD1RIRPoBMM-B5LYs',\n", + " 'post_code': '55100',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'LU',\n", + " 'street_name': 'Piazza San Martino',\n", + " 'street_name_short': 'Piazza S. Martino',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionebmlucca.it'},\n", + " {'address': 'Corso Vittorio Emanuele II, 75 - 10128 TORINO',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazione1563.it',\n", + " 'id': 5175,\n", + " 'link': 'https://philea.eu/members/fondazione-1563-per-larte-e-la-cultura-della-compagnia-di-san-paolo/',\n", + " 'name': '1563 Foundation for Art and Culture',\n", + " 'position': {'address': 'Via Passo Buole, 175, 10135 Torino TO, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.02806036236005,\n", + " 'lng': 7.642274377783158,\n", + " 'place_id': 'ChIJ8wTPnSATiEcRaipJq8UkwwM',\n", + " 'post_code': '10135',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via Passo Buole',\n", + " 'street_number': '175',\n", + " 'zoom': 16},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazione1563.it'},\n", + " {'address': 'Fondation Lombard Odier 11, rue de la Corraterie 1204 Geneva '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'contact@fondationlombardodier.org',\n", + " 'id': 5170,\n", + " 'link': 'https://philea.eu/members/fondation-lombard-odier/',\n", + " 'name': 'Fondation Lombard Odier',\n", + " 'position': {'address': 'Lombard Odier, Rue de la Corraterie 11, 1204 '\n", + " 'Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.20300879999999,\n", + " 'lng': 6.144163300000001,\n", + " 'name': 'Lombard Odier',\n", + " 'place_id': 'ChIJd5-6gilljEcRVp3cHm2TLKI',\n", + " 'post_code': '1204',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Rue de la Corraterie',\n", + " 'street_number': '11',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.lombardodier.com/home/private-clients/philanthropy/fondation-lombard-odier.html'},\n", + " {'address': 'Fondation de Luxembourg 12 Rue Erasme 1468 Luxembourg Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': 'secr@fdlux.lu',\n", + " 'id': 5167,\n", + " 'link': 'https://philea.eu/members/fondation-de-luxembourg/',\n", + " 'name': 'Fondation de Luxembourg',\n", + " 'position': {'address': 'Fondation de Luxembourg Fondation, 12 Rue Erasme, '\n", + " '1468 Luxembourg, Luxembourg',\n", + " 'city': 'Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.6244038,\n", + " 'lng': 6.149720599999999,\n", + " 'name': 'Fondation de Luxembourg Fondation',\n", + " 'place_id': 'ChIJ3ZFrujhPlUcRLoJlWNJ3pdM',\n", + " 'post_code': '1468',\n", + " 'state': 'District de Luxembourg',\n", + " 'street_name': 'Rue Erasme',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fdlux.lu'},\n", + " {'address': 'Fondation de France 40, Avenue Hoche 75008 Paris France',\n", + " 'country': 'France',\n", + " 'email': 'fondation@fdf.org',\n", + " 'id': 5165,\n", + " 'link': 'https://philea.eu/members/fondation-de-france/',\n", + " 'name': 'Fondation de France',\n", + " 'position': {'address': 'Fondation de France, 40 Avenue Hoche, 75008 Paris, '\n", + " 'France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8755259,\n", + " 'lng': 2.298763799999999,\n", + " 'name': 'Fondation de France',\n", + " 'place_id': 'ChIJ11j25Opv5kcRzrMBr1Vw3Ds',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Hoche',\n", + " 'street_name_short': 'Av. Hoche',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationdefrance.org'},\n", + " {'address': 'Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens',\n", + " 'country': 'Switzerland',\n", + " 'email': 'contact.paris@fph.ch',\n", + " 'id': 5164,\n", + " 'link': 'https://philea.eu/members/fondation-charles-leopold-mayer-pour-le-progres-de-lhomme/',\n", + " 'name': 'Fondation Charles Léopold Mayer pour le progrès humain',\n", + " 'position': {'address': 'Vortex, Route de Praz-Véguey 29, 1022 '\n", + " 'Chavannes-près-Renens',\n", + " 'city': 'Chavannes-près-Renens',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.52449619999999,\n", + " 'lng': 6.575196999999999,\n", + " 'place_id': 'ChIJ7cI3BSUxjEcRi4sMQykHFvk',\n", + " 'post_code': '1022',\n", + " 'state': 'Vaud',\n", + " 'state_short': 'VD',\n", + " 'street_name': 'Route de Praz Véguey',\n", + " 'street_name_short': 'Rte de Praz Véguey',\n", + " 'street_number': '29',\n", + " 'zoom': 12},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fph.ch'},\n", + " {'address': 'Fondation d’entreprise Chanel 135 Av. Charles de Gaulle 92200 '\n", + " 'Neuilly-sur-Seine France',\n", + " 'country': 'France',\n", + " 'email': 'info@fondationchanel.org',\n", + " 'id': 5163,\n", + " 'link': 'https://philea.eu/members/fondation-chanel/',\n", + " 'name': 'Fondation Chanel',\n", + " 'position': {'address': 'CHANEL, 135 Av. Charles de Gaulle, 92200 '\n", + " 'Neuilly-sur-Seine, France',\n", + " 'city': 'Neuilly-sur-Seine',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8832639,\n", + " 'lng': 2.266366699999999,\n", + " 'name': 'CHANEL',\n", + " 'place_id': 'ChIJr2D0GABl5kcRPWZ1Aww1YVM',\n", + " 'post_code': '92200',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Charles de Gaulle',\n", + " 'street_name_short': 'Av. Charles de Gaulle',\n", + " 'street_number': '135',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationchanel.org/'},\n", + " {'address': 'Fondation Botnar St. Alban-Vorstadt 56 4052 Basel Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@fondationbotnar.org',\n", + " 'id': 5162,\n", + " 'link': 'https://philea.eu/members/fondation-botnar/',\n", + " 'name': 'Fondation Botnar',\n", + " 'position': {'address': 'Fondation Botnar, St. Alban-Vorstadt 56, 4052 '\n", + " 'Basel, Switzerland',\n", + " 'city': 'Basel',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.554306,\n", + " 'lng': 7.598050300000001,\n", + " 'name': 'Fondation Botnar',\n", + " 'place_id': 'ChIJda_IuLK5kUcR0zvp3Ql0EXU',\n", + " 'post_code': '4052',\n", + " 'state': 'Basel-Stadt',\n", + " 'state_short': 'BS',\n", + " 'street_name': 'Sankt Alban-Vorstadt',\n", + " 'street_name_short': 'St. Alban-Vorstadt',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondationbotnar.org/home'},\n", + " {'address': 'Suomen Kulttuurirahasto P.O. Box 203, Bulevardi 5 A 13 00121 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'yleisinfo@skr.fi',\n", + " 'id': 5160,\n", + " 'link': 'https://philea.eu/members/finnish-cultural-foundation/',\n", + " 'name': 'Finnish Cultural Foundation',\n", + " 'position': {'address': 'Bulevardi 5a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1651316,\n", + " 'lng': 24.9387852,\n", + " 'name': 'Bulevardi 5a',\n", + " 'place_id': 'ChIJc721yssLkkYRnTqnktrxEhc',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Bulevardi',\n", + " 'street_number': '5a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.skr.fi'},\n", + " {'address': 'Evens Foundation Stoopstraat 1 5th floor B-2000 Antwerp Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'antwerp@evensfoundation.be',\n", + " 'id': 5158,\n", + " 'link': 'https://philea.eu/members/evens-foundation/',\n", + " 'name': 'Evens Foundation',\n", + " 'position': {'address': 'Antwerp, Belgium',\n", + " 'city': 'Antwerp',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 51.2213404,\n", + " 'lng': 4.4051485,\n", + " 'name': 'Antwerp',\n", + " 'place_id': 'ChIJfYjDv472w0cRuIqogoRErz4',\n", + " 'state': 'Flanders',\n", + " 'state_short': 'AN',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.evensfoundation.be'},\n", + " {'address': 'European University Institute Via della Badia dei Roccettini 9 '\n", + " '50014 Firenze Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'External.Relations@eui.eu',\n", + " 'id': 5380,\n", + " 'link': 'https://philea.eu/members/european-university-institute/',\n", + " 'name': 'European University Institute',\n", + " 'position': {'address': 'European University Institute, Via della Badia dei '\n", + " 'Roccettini, 9, 50014 Fiesole, Metropolitan City of '\n", + " 'Florence, Italy',\n", + " 'city': 'Fiesole',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.803079,\n", + " 'lng': 11.282959,\n", + " 'name': 'European University Institute',\n", + " 'place_id': 'ChIJPyVxQANUKhMR1WHvAi0UEf4',\n", + " 'post_code': '50014',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'FI',\n", + " 'street_name': 'Via della Badia dei Roccettini',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.eui.eu'},\n", + " {'address': 'European Foundation for Philanthropy and Society Development '\n", + " 'Dedici 83 10000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@europskazaklada-filantropija.hr',\n", + " 'id': 5151,\n", + " 'link': 'https://philea.eu/members/european-foundation-for-philanthropy-and-society-development/',\n", + " 'name': 'European Foundation for Philanthropy and Society Development',\n", + " 'position': {'address': '10000, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.8348464,\n", + " 'lng': 15.970761,\n", + " 'name': '10000',\n", + " 'place_id': 'ChIJCeEflHXXZUcRwlEzNVCtABM',\n", + " 'post_code': '10000',\n", + " 'state': 'City of Zagreb',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.europskazaklada-filantropija.hr'},\n", + " {'address': 'European Cultural Foundation Jan van Goyenkade 5 1075 HN '\n", + " 'Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'ask@culturalfoundation.eu',\n", + " 'id': 5150,\n", + " 'link': 'https://philea.eu/members/european-cultural-foundation/',\n", + " 'name': 'European Cultural Foundation',\n", + " 'position': {'address': 'European Cultural Foundation, Jan van Goyenkade 5, '\n", + " '1075 HN Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3521037,\n", + " 'lng': 4.868836099999999,\n", + " 'name': 'European Cultural Foundation',\n", + " 'place_id': 'ChIJZcifLPwJxkcRUH9OYjp85Hk',\n", + " 'post_code': '1075 HN',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Jan van Goyenkade',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.culturalfoundation.eu'},\n", + " {'address': 'European Climate Foundation Riviervismarkt 5 2513 AM The Hague '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@europeanclimate.org',\n", + " 'id': 5148,\n", + " 'link': 'https://philea.eu/members/european-climate-foundation/',\n", + " 'name': 'European Climate Foundation',\n", + " 'position': {'address': 'Stichting European Climate Foundation, '\n", + " 'Riviervismarkt 5, 2513 AM The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0766884,\n", + " 'lng': 4.306905,\n", + " 'name': 'Stichting European Climate Foundation',\n", + " 'place_id': 'ChIJzwwgWTu3xUcRHgynkalZKEY',\n", + " 'post_code': '2513 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Riviervismarkt',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.europeanclimate.org'},\n", + " {'address': 'Europe Foundation - 3 Kavsadze Street, Tbilisi 0179 Georgia',\n", + " 'country': 'Georgia',\n", + " 'email': 'info@epfound.ge',\n", + " 'id': 5146,\n", + " 'link': 'https://philea.eu/members/europe-foundation/',\n", + " 'name': 'Europe Foundation',\n", + " 'position': {'address': 'Europe Foundation, 3 Lado Kavsadze Street, Tbilisi, '\n", + " 'Georgia',\n", + " 'city': \"T'bilisi\",\n", + " 'country': 'Georgia',\n", + " 'country_short': 'GE',\n", + " 'lat': 41.7097949,\n", + " 'lng': 44.76136189999999,\n", + " 'name': 'Europe Foundation',\n", + " 'place_id': 'ChIJM27xrTZzREARCNWG_0EXO5M',\n", + " 'state': 'Tbilisi',\n", + " 'street_name': 'Lado Kavsadze Street',\n", + " 'street_name_short': 'Lado Kavsadze St',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.epfound.ge'},\n", + " {'address': 'Rue de la Charité 22, 1210 Brussels',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@eurochild.org',\n", + " 'id': 5145,\n", + " 'link': 'https://philea.eu/members/eurochild/',\n", + " 'name': 'Eurochild',\n", + " 'position': {'address': 'Rue de la Charité 22, 1210 Saint-Josse-ten-Noode, '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Saint-Josse-ten-Noode',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8481605,\n", + " 'lng': 4.370557499999999,\n", + " 'name': 'Rue de la Charité 22',\n", + " 'place_id': 'ChIJefxwSX3Dw0cR7dBO3d-x2-A',\n", + " 'post_code': '1210',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue de la Charité',\n", + " 'street_number': '22',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.eurochild.org'},\n", + " {'address': 'Essl Foundation MGE gemeinnützige Privatstiftung Haus der '\n", + " 'Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift '\n", + " '5&6 Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'office@zeroproject.org',\n", + " 'id': 5144,\n", + " 'link': 'https://philea.eu/members/essl-foundation-mge-gemeinnutzige-privatstiftung/',\n", + " 'name': 'Essl Foundation MGE gemeinnützige Privatstiftung',\n", + " 'position': {'address': 'Essl Foundation MGE gemeinnützige Privatstiftung '\n", + " 'Haus der Philanthropie Schottenring 16/3.OG 1010 '\n", + " 'Wien Zugang über Lift 5&6 Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.2151846,\n", + " 'lng': 16.366538,\n", + " 'place_id': 'ChIJ1V1cvPkHbUcRjDLTlO5Q9JQ',\n", + " 'post_code': '1010',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Schottenring',\n", + " 'street_number': '16',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://zeroproject.org/about/the-essl-foundation-and-zero-project'},\n", + " {'address': 'ERSTE Stiftung Am Belvedere 1 1100 Vienna Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'office@erstestiftung.org',\n", + " 'id': 5143,\n", + " 'link': 'https://philea.eu/members/erste-stiftung/',\n", + " 'name': 'ERSTE Stiftung',\n", + " 'position': {'address': 'Am Belvedere 1, 1100 Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.1873204,\n", + " 'lng': 16.3792082,\n", + " 'name': 'Am Belvedere 1',\n", + " 'place_id': 'ChIJ1bgQlNepbUcRQfhnsHyl03Y',\n", + " 'post_code': '1100',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Am Belvedere',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.erstestiftung.org'},\n", + " {'address': 'Foundation DOTS Alberta iela, 13 LV-1010 Riga Latvia',\n", + " 'country': 'Latvia',\n", + " 'email': 'dots@fondsdots.lv',\n", + " 'id': 5137,\n", + " 'link': 'https://philea.eu/members/dots-foundation-for-an-open-society/',\n", + " 'name': 'DOTS Foundation for an Open Society',\n", + " 'position': {'address': 'LATO Latvian Transatlantic Organisation, Alberta '\n", + " 'iela 13, Central District, Rīga, LV-1010, Latvia',\n", + " 'city': 'Rīga',\n", + " 'country': 'Latvia',\n", + " 'country_short': 'LV',\n", + " 'lat': 56.9593018,\n", + " 'lng': 24.1080334,\n", + " 'name': 'LATO Latvian Transatlantic Organisation',\n", + " 'place_id': 'ChIJjSB_ecTP7kYROV-i4kWpXC4',\n", + " 'post_code': '1010',\n", + " 'street_name': 'Alberta iela',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondsdots.lv/en'},\n", + " {'address': 'Channel 4 BRITDOC Foundation 50 Frith Street WID 4SQ London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'beadie@britdoc.org',\n", + " 'id': 5135,\n", + " 'link': 'https://philea.eu/members/doc-society/',\n", + " 'name': 'Doc Society',\n", + " 'position': {'address': 'Frith Street, Soho, London, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5135376,\n", + " 'lng': -0.1314486,\n", + " 'name': 'Frith Street',\n", + " 'place_id': 'EhRGcml0aCBTdCwgTG9uZG9uLCBVSyIuKiwKFAoSCZFhf93SBHZIEXXreDcc1L2pEhQKEgmbf0uf1AR2SBHSXX5TzFdO5A',\n", + " 'state': 'England',\n", + " 'street_name': 'Frith Street',\n", + " 'street_name_short': 'Frith St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://docsociety.org'},\n", + " {'address': 'Deutsche Bundesstiftung Umwelt An der Bornau 2 49090 Osnabrück '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'c.soetbeer@dbu.de',\n", + " 'id': 5132,\n", + " 'link': 'https://philea.eu/members/deutsche-bundesstiftung-umwelt/',\n", + " 'name': 'Deutsche Bundesstiftung Umwelt',\n", + " 'position': {'address': 'Deutsche Bundesstiftung Umwelt, An der Bornau 2, '\n", + " '49090 Osnabrück, Germany',\n", + " 'city': 'Osnabrück',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.2863704,\n", + " 'lng': 8.032082899999999,\n", + " 'name': 'German Federal Environmental Foundation',\n", + " 'place_id': 'ChIJSz4JYMTluUcRL2asjbrjmuo',\n", + " 'post_code': '49090',\n", + " 'state': 'Niedersachsen',\n", + " 'state_short': 'NDS',\n", + " 'street_name': 'An der Bornau',\n", + " 'street_name_short': 'An d. Bornau',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dbu.de'},\n", + " {'address': \"Degroof Petercam Foundation 44 rue de l'industrie 1040 Brussels \"\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'foundation@degroofpetercam.com',\n", + " 'id': 5363,\n", + " 'link': 'https://philea.eu/members/degroof-petercam-foundation/',\n", + " 'name': 'Degroof Petercam Foundation',\n", + " 'position': {'address': \"Banque Degroof Petercam, Rue de l'Industrie 44, \"\n", + " '1040 Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8441235,\n", + " 'lng': 4.370583000000001,\n", + " 'name': 'Bank/Banque Degroof Petercam',\n", + " 'place_id': 'ChIJIbVk0pzEw0cRFTwXA3u0cVM',\n", + " 'post_code': '1040',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': \"Rue de l'Industrie\",\n", + " 'street_number': '44',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.degroofpetercam.com/en/social-impact/degroof-petercam-foundation'},\n", + " {'address': 'Daniel and Nina Carasso Foundation 40, avenue Hoche 75008 Paris '\n", + " 'France',\n", + " 'country': 'France',\n", + " 'email': 'contact@fondationcarasso.org',\n", + " 'id': 5131,\n", + " 'link': 'https://philea.eu/members/daniel-and-nina-carasso-foundation/',\n", + " 'name': 'Daniel and Nina Carasso Foundation',\n", + " 'position': {'address': '40 Avenue Hoche, 75008 Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8755934,\n", + " 'lng': 2.2987615,\n", + " 'name': '40 Av. Hoche',\n", + " 'place_id': 'ChIJu35D5Opv5kcRsvSuZmBfpV4',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Hoche',\n", + " 'street_name_short': 'Av. Hoche',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationcarasso.org/fr'},\n", + " {'address': 'Czech Donors Forum Lucerna Palace, 5th floor Stepanska 61 11602 '\n", + " 'Prague 1 Czech Republic',\n", + " 'country': 'Czech Republic',\n", + " 'email': 'donorsforum@donorsforum.cz',\n", + " 'id': 5129,\n", + " 'link': 'https://philea.eu/members/czech-donors-forum/',\n", + " 'name': 'Czech Donors Forum',\n", + " 'position': {'address': 'Štěpánská 61, New Town, Czechia',\n", + " 'country': 'Czechia',\n", + " 'country_short': 'CZ',\n", + " 'lat': 50.0809618,\n", + " 'lng': 14.4263343,\n", + " 'name': 'Štěpánská 61',\n", + " 'place_id': 'ChIJ42jlTe2UC0cRksIDVfNomKs',\n", + " 'post_code': '110 00',\n", + " 'state': 'Hlavní město Praha',\n", + " 'street_name': 'Štěpánská',\n", + " 'street_number': '61',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.donorsforum.cz'},\n", + " {'address': 'Cultiva - Kristiansand Kommunes Energiverksstiftelse Vestre '\n", + " 'Strandgate 27 4611 Kristiansand Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@cultiva.no',\n", + " 'id': 5128,\n", + " 'link': 'https://philea.eu/members/cultiva-kristiansand-kommunes-energiverksstiftelse/',\n", + " 'name': 'Cultiva - Kristiansand Kommunes Energiverksstiftelse',\n", + " 'position': {'address': 'Cultiva, Vestre Strandgate 27, 4611 Kristiansand, '\n", + " 'Kristiansand, Norway',\n", + " 'city': 'Kristiansand',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 58.14399330000001,\n", + " 'lng': 7.992162299999999,\n", + " 'name': 'Cultiva',\n", + " 'place_id': 'ChIJo_wsh2ACOEYRndP7xHpdPZc',\n", + " 'post_code': '4611',\n", + " 'state': 'Agder',\n", + " 'street_name': 'Vestre Strandgate',\n", + " 'street_number': '27',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cultiva.no'},\n", + " {'address': 'Conrad N. Hilton Foundation 30440 Agoura Road 91301 Agoura Hills '\n", + " 'United States',\n", + " 'country': 'United States',\n", + " 'email': 'alecia@hiltonfoundation.org',\n", + " 'id': 5125,\n", + " 'link': 'https://philea.eu/members/conrad-n-hilton-foundation/',\n", + " 'name': 'Conrad N. Hilton Foundation',\n", + " 'position': {'address': 'The Conrad Hilton Foundation offices, 30440 Agoura '\n", + " 'Road, Agoura Hills, CA 91301, United States',\n", + " 'city': 'Agoura Hills',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 34.1443268,\n", + " 'lng': -118.7849945,\n", + " 'name': 'The Conrad Hilton Foundation offices',\n", + " 'place_id': 'ChIJEwQzr1Al6IARUjUi658Ae44',\n", + " 'post_code': '91301',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'street_name': 'Agoura Road',\n", + " 'street_name_short': 'Agoura Rd',\n", + " 'street_number': '30440',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hiltonfoundation.org'},\n", + " {'address': 'Clean Clothes Campaign Nieuwezijds Voorburgwal 292-sous 11584 '\n", + " 'Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@cleanclothes.org',\n", + " 'id': 5359,\n", + " 'link': 'https://philea.eu/members/clean-clothes-campaign/',\n", + " 'name': 'Clean Clothes Campaign',\n", + " 'position': {'address': 'Nieuwezijds Voorburgwal 292, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3707599,\n", + " 'lng': 4.8898692,\n", + " 'name': 'Nieuwezijds Voorburgwal 292',\n", + " 'place_id': 'ChIJY0coasEJxkcRuMIaX-FXMeY',\n", + " 'post_code': '1012 RT',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Nieuwezijds Voorburgwal',\n", + " 'street_number': '292',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.cleanclothes.org'},\n", + " {'address': 'City of London, PO Box 270, Guildhall, London EC2P 2EJ',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'funding@cityoflondon.gov.uk',\n", + " 'id': 5123,\n", + " 'link': 'https://philea.eu/members/city-bridge-foundation/',\n", + " 'name': 'City Bridge Foundation',\n", + " 'position': {'address': 'City of London, PO Box 270, Guildhall, London EC2P '\n", + " '2EJ',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5159245,\n", + " 'lng': -0.0913715,\n", + " 'place_id': 'ChIJH08KIlUbdkgRsAqh3GUSyT4',\n", + " 'post_code': 'EC2V 7HH',\n", + " 'state': 'England',\n", + " 'street_name': 'Basinghall Street',\n", + " 'street_name_short': 'Basinghall St',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.citybridgefoundation.org.uk/'},\n", + " {'address': \"Children's Investment Fund Foundation 7 Clifford Street W1S 2FT \"\n", + " 'London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'hnouss@ciff.org',\n", + " 'id': 5120,\n", + " 'link': 'https://philea.eu/members/childrens-investment-fund-foundation/',\n", + " 'name': \"Children's Investment Fund Foundation\",\n", + " 'position': {'address': '7 Clifford Street, London W1S 2FT, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51110310000001,\n", + " 'lng': -0.1419121,\n", + " 'name': '7 Clifford St',\n", + " 'place_id': 'ChIJ94G6bSoFdkgRyWA5sxpEAoc',\n", + " 'post_code': 'W1S 2FT',\n", + " 'state': 'England',\n", + " 'street_name': 'Clifford Street',\n", + " 'street_name_short': 'Clifford St',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ciff.org'},\n", + " {'address': 'Paolo Chiesi Foundation Largo Belloli 11A 43122 Parma Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 5119,\n", + " 'link': 'https://philea.eu/members/chiesi-foundation/',\n", + " 'name': 'Paolo Chiesi Foundation',\n", + " 'position': {'address': 'CHIESI Foundation onlus, Largo Francesco Belloli, '\n", + " '11a, 43122 Parma, Province of Parma, Italy',\n", + " 'city': 'Parma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.837427,\n", + " 'lng': 10.3429247,\n", + " 'name': 'CHIESI Foundation onlus',\n", + " 'place_id': 'ChIJ-9YF_CJAgEcRtk16ZtI7nJ4',\n", + " 'post_code': '43122',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'PR',\n", + " 'street_name': 'Largo Francesco Belloli',\n", + " 'street_number': '11a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.paolochiesifoundation.org/'},\n", + " {'address': 'Charles Stewart Mott Foundation 503 South Saginaw St., Suite '\n", + " '1200 48502 Flint, MI United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@mott.org',\n", + " 'id': 5118,\n", + " 'link': 'https://philea.eu/members/charles-stewart-mott-foundation/',\n", + " 'name': 'Charles Stewart Mott Foundation',\n", + " 'position': {'address': 'Charles Stewart Mott Foundation, 503 S Saginaw St '\n", + " '#1200, Flint, MI 48502, United States',\n", + " 'city': 'Flint',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 43.0158607,\n", + " 'lng': -83.6904,\n", + " 'name': 'Charles Stewart Mott Foundation',\n", + " 'place_id': 'ChIJO107KheCI4gRTYacAc2ko6Q',\n", + " 'post_code': '48502',\n", + " 'state': 'Michigan',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Saginaw Street',\n", + " 'street_name_short': 'Saginaw St',\n", + " 'street_number': '503',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mott.org'},\n", + " {'address': 'Charities Aid Foundation 25 Kings Hill Avenue ME19 4TA Kings '\n", + " 'Hill United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'enquiries@cafonline.org',\n", + " 'id': 5117,\n", + " 'link': 'https://philea.eu/members/charities-aid-foundation/',\n", + " 'name': 'Charities Aid Foundation',\n", + " 'position': {'address': 'Charities Aid Foundation, 25 Kings Hill Avenue, '\n", + " 'Kings Hill, West Malling ME19 4TA, United Kingdom',\n", + " 'city': 'West Malling',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.2776417,\n", + " 'lng': 0.3949744000000001,\n", + " 'name': 'Charities Aid Foundation',\n", + " 'place_id': 'ChIJw6Pi7Ok130cRZoEb5rjdvhY',\n", + " 'post_code': 'ME19 4TA',\n", + " 'state': 'England',\n", + " 'street_name': 'Kings Hill Avenue',\n", + " 'street_name_short': 'Kings Hill Ave',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cafonline.org'},\n", + " {'address': 'Carnegie United Kingdom Trust Andrew Carnegie House, '\n", + " 'Pittencrieff Street KY12 8AW Dunfermline, Fife United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5108,\n", + " 'link': 'https://philea.eu/members/carnegie-uk-trust/',\n", + " 'name': 'Carnegie UK Trust',\n", + " 'position': {'address': 'Carnegie UK Trust, Andrew Carnegie House, '\n", + " 'Pittencrieff Street, Dunfermline, Fife KY12 8AW, '\n", + " 'United Kingdom',\n", + " 'city': 'Dunfermline',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 56.0715426,\n", + " 'lng': -3.4705687,\n", + " 'name': 'Carnegie UK Trust',\n", + " 'place_id': 'ChIJW_D-_iXSh0gRnGT6ssOIskI',\n", + " 'post_code': 'KY12 8AW',\n", + " 'state': 'Scotland',\n", + " 'street_name': 'Pittencrieff Street',\n", + " 'street_name_short': 'Pittencrieff St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.carnegieuktrust.org.uk'},\n", + " {'address': 'Carlsbergfondet H.C. Andersens Boulevard 35 1553 Copenhagen V '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 5107,\n", + " 'link': 'https://philea.eu/members/carlsberg-foundation/',\n", + " 'name': 'Carlsberg Foundation',\n", + " 'position': {'address': 'Carlsbergfondet, H. C. Andersens Boulevard, '\n", + " 'Copenhagen Municipality, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6731157,\n", + " 'lng': 12.5738124,\n", + " 'name': 'Carlsbergfondet',\n", + " 'place_id': 'ChIJG6lQChNTUkYRuHvELW4UWjE',\n", + " 'post_code': '1553',\n", + " 'street_name': 'H. C. Andersens Boulevard',\n", + " 'street_name_short': 'H. C. Andersens Blvd.',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.carlsbergfondet.dk'},\n", + " {'address': '',\n", + " 'country': 'Austria',\n", + " 'email': '',\n", + " 'id': 5376,\n", + " 'link': 'https://philea.eu/members/caritas-foundation-austria/',\n", + " 'name': 'Caritas Foundation Austria',\n", + " 'position': {'address': 'Austria',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 47.516231,\n", + " 'lng': 14.550072,\n", + " 'name': 'Austria',\n", + " 'place_id': 'ChIJfyqdJZsHbUcRr8Hk3XvUEhA',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.caritas-foundation.at'},\n", + " {'address': 'Captain Vassilis and Carmen Constantakopoulos Foundation Zefyrou '\n", + " '60 P. Faliro 17564 Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': '',\n", + " 'id': 5106,\n", + " 'link': 'https://philea.eu/members/captain-vassilis-and-carmen-constantakopoulos-foundation/',\n", + " 'name': 'Captain Vassilis and Carmen Constantakopoulos Foundation',\n", + " 'position': {'address': 'CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS '\n", + " 'FOUNDATION, Zefirou, Palaio Faliro, Greece',\n", + " 'city': 'Paleo Faliro',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9385836,\n", + " 'lng': 23.6953717,\n", + " 'name': 'CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION',\n", + " 'place_id': 'ChIJGyhnAT-8oRQRswlTl7h3aXs',\n", + " 'post_code': '175 64',\n", + " 'state': 'Notios Tomeas Athinon',\n", + " 'street_name': 'Zefirou',\n", + " 'street_number': '60',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cvf.gr'},\n", + " {'address': \"Calala Women's Fund Girona 25 08010 Barcelona Spain\",\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'id': 5104,\n", + " 'link': 'https://philea.eu/members/calala-womens-fund/',\n", + " 'name': \"Calala Women's Fund\",\n", + " 'position': {'address': 'Carrer de Girona, 25, 08010 Barcelona, Spain',\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3916922,\n", + " 'lng': 2.1747488,\n", + " 'name': 'Carrer de Girona, 25',\n", + " 'place_id': 'ChIJ28kmXOWipBIRr6lTJkuhwZw',\n", + " 'post_code': '08010',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Carrer de Girona',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.calala.org'},\n", + " {'address': 'Bulgarian Donors Forum 4B Leonardo da Vinchi Str., floor 2 1124 '\n", + " 'Sofia Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'id': 5102,\n", + " 'link': 'https://philea.eu/members/bulgarian-donors-forum/',\n", + " 'name': 'Bulgarian Donors Forum',\n", + " 'position': {'address': '1124 Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6874493,\n", + " 'lng': 23.3457036,\n", + " 'name': '1124',\n", + " 'place_id': 'ChIJv7yyXpiFqkAR2XFfjYGgBdQ',\n", + " 'post_code': '1124',\n", + " 'state': 'Sofia City Province',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.dfbulgaria.org'},\n", + " {'address': 'Both ENDS Nieuwe Keizersgracht 45 1018 VC Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 5101,\n", + " 'link': 'https://philea.eu/members/both-ends/',\n", + " 'name': 'Both ENDS',\n", + " 'position': {'address': 'Nieuwe Keizersgracht 45, 1018 VC Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.36574659999999,\n", + " 'lng': 4.906903300000001,\n", + " 'name': 'Nieuwe Keizersgracht 45',\n", + " 'place_id': 'ChIJVYVl5JcJxkcRkroYCcBnqIA',\n", + " 'post_code': '1018 VC',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Nieuwe Keizersgracht',\n", + " 'street_number': '45',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.bothends.org'},\n", + " {'address': 'Bodossaki Foundation Mourouzi 14 10674 Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': '',\n", + " 'id': 5100,\n", + " 'link': 'https://philea.eu/members/bodossaki-foundation/',\n", + " 'name': 'Bodossaki Foundation',\n", + " 'position': {'address': 'Bodossaki Foundation, Mourouzi 14, Athens 106 74, '\n", + " 'Greece',\n", + " 'city': 'Athina',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9749303,\n", + " 'lng': 23.7424664,\n", + " 'name': 'Bodossaki Foundation',\n", + " 'place_id': 'ChIJFaVBWUC9oRQRMIVlYekEh8U',\n", + " 'post_code': '106 74',\n", + " 'state': 'Kentrikos Tomeas Athinon',\n", + " 'street_name': 'Mourouzi',\n", + " 'street_number': '14',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bodossaki.gr/en'},\n", + " {'address': 'BMW Foundation Herbert Quandt Reinhardstrasse 58 10117 Berlin '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5099,\n", + " 'link': 'https://philea.eu/members/bmw-foundation-herbert-quandt/',\n", + " 'name': 'BMW Foundation Herbert Quandt',\n", + " 'position': {'address': 'BMW Foundation Herbert Quandt, Reinhardtstraße 58, '\n", + " '10117 Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5222139,\n", + " 'lng': 13.3765928,\n", + " 'name': 'BMW Foundation Herbert Quandt',\n", + " 'place_id': 'ChIJK4FKf8BRqEcRSQWAg1ayVZg',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Reinhardtstraße',\n", + " 'street_number': '58',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://bmw-foundation.org/'},\n", + " {'address': 'Gates Foundation, 5th Avenue North, Seattle, WA, USA',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 5098,\n", + " 'link': 'https://philea.eu/members/gates-foundation/',\n", + " 'name': 'Gates Foundation',\n", + " 'position': {'address': 'Gates Foundation, 5th Avenue North, Seattle, WA, '\n", + " 'USA',\n", + " 'city': 'Seattle',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 47.6233319,\n", + " 'lng': -122.3465813,\n", + " 'place_id': 'ChIJM3d0rEcVkFQRHe-TbdJ-y68',\n", + " 'post_code': '98109',\n", + " 'state': 'Washington',\n", + " 'state_short': 'WA',\n", + " 'street_name': '5th Avenue North',\n", + " 'street_name_short': '5th Ave N',\n", + " 'street_number': '500',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gatesfoundation.org'},\n", + " {'address': 'Bikuben Foundation Otto Mønsteds Gade 5 1571 Copenhagen V '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 5097,\n", + " 'link': 'https://philea.eu/members/bikuben-foundation/',\n", + " 'name': 'Bikuben Foundation',\n", + " 'position': {'address': 'Otto Mønsteds Gade 5, Copenhagen Municipality, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6712256,\n", + " 'lng': 12.5728347,\n", + " 'name': 'Otto Mønsteds Gade 5',\n", + " 'place_id': 'ChIJM7NnNxNTUkYRwtqISVdNOuo',\n", + " 'post_code': '1571',\n", + " 'street_name': 'Otto Mønsteds Gade',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bikubenfonden.dk'},\n", + " {'address': 'Bertelsmann Stiftung Carl-Bertelsmann-Straße 256 Postfach 103 '\n", + " '33311 Gütersloh Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5096,\n", + " 'link': 'https://philea.eu/members/bertelsmann-stiftung/',\n", + " 'name': 'Bertelsmann Stiftung',\n", + " 'position': {'address': 'Carl-Bertelsmann-Straße 256, Gütersloh, Germany',\n", + " 'city': 'Gütersloh',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.9086764,\n", + " 'lng': 8.4190329,\n", + " 'name': 'Carl-Bertelsmann-Straße 256',\n", + " 'place_id': 'ChIJ28HLgm0lukcRmopbhV6HgnQ',\n", + " 'post_code': '33311',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Carl-Bertelsmann-Straße',\n", + " 'street_number': '256',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bertelsmann-stiftung.de'},\n", + " {'address': 'Network of Belgian Foundations Rue Brederode, 21 1000 Brussels '\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'id': 5094,\n", + " 'link': 'https://philea.eu/members/belgian-federation-of-philanthropic-foundations/',\n", + " 'name': 'Belgian Federation of Philanthropic Foundations',\n", + " 'position': {'address': 'Rue Brederode 21, Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.84035859999999,\n", + " 'lng': 4.362291999999999,\n", + " 'name': 'Rue Brederode 21',\n", + " 'place_id': 'ChIJhfN5jYbEw0cRHuAIcALpV1M',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue Brederode',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.lesfondations.be'},\n", + " {'address': 'Barrow Cadbury Trust Kean House, 6 Kean Street WC2B 4AS London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5093,\n", + " 'link': 'https://philea.eu/members/barrow-cadbury-trust/',\n", + " 'name': 'Barrow Cadbury Trust',\n", + " 'position': {'address': 'Barrow Cadbury, Kean House, 6 Kean Street, London '\n", + " 'WC2B 4AS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5136092,\n", + " 'lng': -0.1184067,\n", + " 'name': 'Barrow Cadbury',\n", + " 'place_id': 'ChIJiRKposoEdkgRvZQxZ2hmaSQ',\n", + " 'post_code': 'WC2B 4AS',\n", + " 'state': 'England',\n", + " 'street_name': 'Kean Street',\n", + " 'street_name_short': 'Kean St',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.barrowcadbury.org.uk'},\n", + " {'address': 'Bader Philanthropies, Inc. 3300 N. Dr. Martin Luther King Jr. '\n", + " 'Drive WI 53212 Milwaukee United States',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 5091,\n", + " 'link': 'https://philea.eu/members/bader-philanthropies-inc/',\n", + " 'name': 'Bader Philanthropies, Inc.',\n", + " 'position': {'address': 'Bader Philanthropies, Inc., 3300 North Dr. Martin '\n", + " 'Luther King Jr. Drive, Milwaukee, WI 53212, United '\n", + " 'States',\n", + " 'city': 'Milwaukee',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 43.0793942,\n", + " 'lng': -87.9161896,\n", + " 'name': 'Bader Philanthropies, Inc.',\n", + " 'place_id': 'ChIJfYyA86MZBYgRRYfOsetMQ-o',\n", + " 'post_code': '53212',\n", + " 'state': 'Wisconsin',\n", + " 'state_short': 'WI',\n", + " 'street_name': 'North Doctor Martin Luther King Junior Drive',\n", + " 'street_name_short': 'N Doctor M.L.K. Jr Dr',\n", + " 'street_number': '3300',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bader.org'},\n", + " {'address': 'Aydin Dogan Vakfi Burhaniye Mah. Kısıklı Cad. No:65 PK 34676 '\n", + " 'Üsküdar-İstanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': '',\n", + " 'id': 5090,\n", + " 'link': 'https://philea.eu/members/aydin-dogan-vakfi/',\n", + " 'name': 'Aydin Dogan Vakfi',\n", + " 'position': {'address': 'Burhaniye, Kısıklı Caddesi No:65, Üsküdar/İstanbul, '\n", + " 'Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0237261,\n", + " 'lng': 29.0487789,\n", + " 'name': 'Kısıklı Cd. No:65',\n", + " 'place_id': 'ChIJx2Saqh3IyhQRMDPMMiEeYXs',\n", + " 'post_code': '34676',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Kısıklı Caddesi',\n", + " 'street_name_short': 'Kısıklı Cd.',\n", + " 'street_number': '65',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.aydindoganvakfi.org.tr'},\n", + " {'address': 'Associazione di Fondazioni e di Casse di Risparmio via del Corso '\n", + " '267 00186 Rome Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 5088,\n", + " 'link': 'https://philea.eu/members/associazione-di-fondazioni-e-di-casse-di-risparmio-spa/',\n", + " 'name': 'Associazione di Fondazioni e di Casse di Risparmio Spa',\n", + " 'position': {'address': 'Via del Corso, 267, 00186 Rome, Metropolitan City '\n", + " 'of Rome, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.8980305,\n", + " 'lng': 12.4818649,\n", + " 'name': 'Via del Corso, 267',\n", + " 'place_id': 'ChIJE5Gwek1gLxMRuYkby5jT9eQ',\n", + " 'post_code': '00186',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via del Corso',\n", + " 'street_number': '267',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.acri.it'},\n", + " {'address': 'Vereinigung Liechtesteiner gemeinnütziger Stiftungen '\n", + " 'Aeulestrasse 6 Postfach 882 9490 Vaduz Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': '',\n", + " 'id': 5367,\n", + " 'link': 'https://philea.eu/members/association-of-liechtenstein-charitable-foundation-and-trusts/',\n", + " 'name': 'Association of Liechtenstein Charitable Foundations and Trusts',\n", + " 'position': {'address': 'Aeulestrasse 6, Vaduz, Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.1404575,\n", + " 'lng': 9.5207958,\n", + " 'name': 'Aeulestrasse 6',\n", + " 'place_id': 'ChIJCyeE9mcxm0cRe985CDnHZLk',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.vlgs.li'},\n", + " {'address': 'Bundesverband Deutscher Stiftungen e.V Haus Deutscher '\n", + " 'Stiftungen, Mauerstr. 93 10117 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5103,\n", + " 'link': 'https://philea.eu/members/association-of-german-foundations/',\n", + " 'name': 'Association of German Foundations',\n", + " 'position': {'address': 'Mauerstraße 93, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.50816870000001,\n", + " 'lng': 13.3897489,\n", + " 'name': 'Mauerstraße 93',\n", + " 'place_id': 'ChIJj9hKDdFRqEcRBcYFO9DX_SY',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Mauerstraße',\n", + " 'street_number': '93',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.stiftungen.org'},\n", + " {'address': 'Council of Finnish Foundations Fredrikinkatu 61A 00100 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': '',\n", + " 'id': 5126,\n", + " 'link': 'https://philea.eu/members/association-of-finnish-foundations/',\n", + " 'name': 'Association of Finnish Foundations',\n", + " 'position': {'address': 'Fredrikinkatu 61a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1679008,\n", + " 'lng': 24.9322093,\n", + " 'name': 'Fredrikinkatu 61a',\n", + " 'place_id': 'ChIJ1T8VyjQKkkYRSXGQebWTgUk',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Fredrikinkatu',\n", + " 'street_number': '61a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://saatiotrahastot.fi/'},\n", + " {'address': 'Association of Charitable Foundations 28 Commercial Street '\n", + " '(Fourth Floor) E1 6LS London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5087,\n", + " 'link': 'https://philea.eu/members/association-of-charitable-foundations/',\n", + " 'name': 'Association of Charitable Foundations (ACF)',\n", + " 'position': {'address': 'Association Of Charitable Foundations, 28 '\n", + " 'Commercial Street, London E1 6LS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5164153,\n", + " 'lng': -0.0725896,\n", + " 'name': 'Association Of Charitable Foundations',\n", + " 'place_id': 'ChIJ4wwCOCUbdkgRWMUs6rJXWfg',\n", + " 'post_code': 'E1 6LS',\n", + " 'state': 'England',\n", + " 'street_name': 'Commercial Street',\n", + " 'street_name_short': 'Commercial St',\n", + " 'street_number': '28',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.acf.org.uk'},\n", + " {'address': '',\n", + " 'country': 'Romania',\n", + " 'email': '',\n", + " 'id': 5366,\n", + " 'link': 'https://philea.eu/members/association-for-the-practice-of-transformation/',\n", + " 'name': 'Association for the Practice of Transformation',\n", + " 'position': {'address': 'Romania',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 45.943161,\n", + " 'lng': 24.96676,\n", + " 'name': 'Romania',\n", + " 'place_id': 'ChIJw3aJlSb_sUARlLEEqJJP74Q',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://inspire-change.org/'},\n", + " {'address': 'Assifero (Associazione delle fondazioni di erogazione) Corso '\n", + " 'Magenta, 71 20123 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 5089,\n", + " 'link': 'https://philea.eu/members/assifero-associazione-italiana-delle-fondazioni-ed-enti-filantropici/',\n", + " 'name': 'Assifero – Associazione italiana delle fondazioni ed enti '\n", + " 'filantropici',\n", + " 'position': {'address': 'Corso Magenta, 71, 20123 Milan, Metropolitan City '\n", + " 'of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.465581,\n", + " 'lng': 9.16976,\n", + " 'name': 'Corso Magenta, 71',\n", + " 'place_id': 'ChIJG2aISlrBhkcRs3Ut_WEAd2w',\n", + " 'post_code': '20123',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Corso Magenta',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.assifero.org'},\n", + " {'address': 'Arcadia Fund 5 Young Street Sixth Floor W8 5EH London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5084,\n", + " 'link': 'https://philea.eu/members/arcadia/',\n", + " 'name': 'Arcadia',\n", + " 'position': {'address': '5 Young Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5017685,\n", + " 'lng': -0.1897595,\n", + " 'name': '5 Young St',\n", + " 'place_id': 'ChIJ6cpZs_cPdkgRjPeW5vL9LFI',\n", + " 'post_code': 'W8 5EH',\n", + " 'state': 'England',\n", + " 'street_name': 'Young Street',\n", + " 'street_name_short': 'Young St',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://arcadiafund.org.uk/'},\n", + " {'address': 'Anadolu Eğitim ve Sosyal Yardım Vakfı Fatih Sultan Mehmet Mah. '\n", + " 'Balkan Cad. No:58 Buyaka E Blok 34771 Tepeüstü / Ümraniye Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': '',\n", + " 'id': 5082,\n", + " 'link': 'https://philea.eu/members/anadolu-egitim-ve-sosyal-yardim-vakfi/',\n", + " 'name': 'Anadolu Eğitim ve Sosyal Yardım Vakfı',\n", + " 'position': {'address': 'Fatih Sultan Mehmet, E, Balkan Caddesi, '\n", + " 'Ümraniye/İstanbul, Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0232852,\n", + " 'lng': 29.12607,\n", + " 'name': 'E',\n", + " 'place_id': 'ChIJt3hC9dnIyhQReD4eaI97HyA',\n", + " 'post_code': '34770',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Balkan Caddesi',\n", + " 'street_name_short': 'Balkan Cd.',\n", + " 'street_number': '62',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.anadoluvakfi.org.tr'},\n", + " {'address': 'Allianz Kulturstiftung Pariser Platz 6 10117 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5080,\n", + " 'link': 'https://philea.eu/members/allianz-kulturstiftung/',\n", + " 'name': 'Allianz Foundation',\n", + " 'position': {'address': 'Allianz Kulturstiftung, Pariser Platz 6, 10117 '\n", + " 'Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5171015,\n", + " 'lng': 13.3784056,\n", + " 'name': 'Allianz Kulturstiftung',\n", + " 'place_id': 'ChIJ5amUQ-JRqEcRD6w0Jm6_he4',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Pariser Platz',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://allianzfoundation.org/'},\n", + " {'address': 'Aga Khan Foundation 10 Handyside Street N1C 4DN London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5077,\n", + " 'link': 'https://philea.eu/members/aga-khan-foundation/',\n", + " 'name': 'Aga Khan Foundation',\n", + " 'position': {'address': 'Aga Khan Foundation UK, Aga Khan Centre, Handyside '\n", + " 'Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.53753189999999,\n", + " 'lng': -0.1249714,\n", + " 'name': 'Aga Khan Foundation UK',\n", + " 'place_id': 'ChIJGYC8ByYbdkgRgy67bB9iKLM',\n", + " 'post_code': 'N1C 4DN',\n", + " 'state': 'England',\n", + " 'street_name': 'Handyside Street',\n", + " 'street_name_short': 'Handyside St',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.akf.org.uk'},\n", + " {'address': 'Adessium Foundation P.O. Box 76 2810 AB Reeuwijk Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 5075,\n", + " 'link': 'https://philea.eu/members/adessium-foundation/',\n", + " 'name': 'Adessium Foundation',\n", + " 'position': {'address': 'Reeuwijk, Netherlands',\n", + " 'city': 'Reeuwijk',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0459962,\n", + " 'lng': 4.7235288,\n", + " 'name': 'Reeuwijk',\n", + " 'place_id': 'ChIJo6aJ-1bWxUcRQ3EvxL90ZVw',\n", + " 'state': 'South Holland',\n", + " 'state_short': 'ZH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.adessium.org'},\n", + " {'address': 'Avinguda Diagonal, 621, Barcelona, Spain',\n", + " 'country': 'ESP',\n", + " 'email': '',\n", + " 'id': 5071,\n", + " 'link': 'https://philea.eu/members/la-caixa-foundation/',\n", + " 'name': '“la Caixa” Foundation',\n", + " 'position': {'address': 'Avinguda Diagonal, 621, Barcelona, Spain',\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3876748,\n", + " 'lng': 2.1265478,\n", + " 'place_id': 'ChIJ0VySQGeYpBIRwTsa9qq_FHQ',\n", + " 'post_code': '08028',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Avinguda Diagonal',\n", + " 'street_name_short': 'Av. Diagonal',\n", + " 'street_number': '621',\n", + " 'zoom': 18},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://obrasociallacaixa.org/en/home'}]\n" + ] + } + ], + "source": [ + "members = response.json()[\"data\"]\n", + "todo = len(members)\n", + "pprint.pprint(members)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d49b6c215018a483", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-06T12:25:28.302328Z", + "start_time": "2026-06-06T12:17:20.464755Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing 1/299: Women Win\n", + "Processing 2/299: Toni Piëch Foundation\n", + "Processing 3/299: Thomson Reuters Foundation\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mKeyboardInterrupt\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[5]\u001b[39m\u001b[32m, line 42\u001b[39m\n\u001b[32m 38\u001b[39m \n\u001b[32m 39\u001b[39m \u001b[38;5;66;03m# Füge alle gefundenen Textteile zusammen\u001b[39;00m\n\u001b[32m 40\u001b[39m philea_data[key] = \u001b[33m\" \"\u001b[39m.join(value_parts)\n\u001b[32m 41\u001b[39m member[\u001b[33m\"philea_info\"\u001b[39m] = philea_data\n\u001b[32m---> \u001b[39m\u001b[32m42\u001b[39m time.sleep(\u001b[32m1\u001b[39m)\n", + "\u001b[31mKeyboardInterrupt\u001b[39m: " + ] + } + ], + "source": [ + "counter = 0\n", + "for member in members:\n", + " counter+=1\n", + " print(f\"Processing {counter}/{todo}: {member['name']}\")\n", + " philea_data = {}\n", + " response = requests.get(member[\"link\"], headers=headers)\n", + " soup = BeautifulSoup(response.content, \"html.parser\")\n", + " content = soup.find(\"div\",{\"class\":\"article-body\"})\n", + " first_p = content.find(\"p\")\n", + " philea_data[\"About\"] = first_p.text.strip() if first_p else \"\"\n", + " h3s = content.find_all(\"h3\")\n", + " for h3 in h3s:\n", + " key = h3.text.strip()\n", + " value_parts = []\n", + " \n", + " # Wir wandern von der Überschrift aus vorwärts\n", + " current = h3.next_sibling\n", + " \n", + " while current:\n", + " # Wenn wir auf die NÄCHSTE Überschrift stoßen, stoppen wir sofort\n", + " if current.name == \"h3\":\n", + " break\n", + " \n", + " # Wenn es sich um reinen Text (ohne HTML-Tag) handelt\n", + " if isinstance(current, NavigableString):\n", + " text = current.strip()\n", + " if text: # Verhindert das Aufnehmen von leeren Zeilenumbrüchen\n", + " value_parts.append(text)\n", + " \n", + " # Wenn es ein HTML-Tag ist (p, ul, div, etc.), holen wir uns den Text\n", + " elif current.name:\n", + " text = current.text.strip()\n", + " if text:\n", + " value_parts.append(text)\n", + " \n", + " # Gehe zum nächsten Geschwister-Element\n", + " current = current.next_sibling\n", + " \n", + " # Füge alle gefundenen Textteile zusammen\n", + " philea_data[key] = \" \".join(value_parts)\n", + " member[\"philea_info\"] = philea_data\n", + " time.sleep(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "bb8cb97ce5448690", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-06T11:28:01.026716Z", + "start_time": "2026-06-06T11:28:00.954111Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'address': 'Rapenburgerstraat 173, Amsterdam, Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24788,\n", + " 'link': 'https://philea.eu/members/women-win/',\n", + " 'name': 'Women Win',\n", + " 'position': {'address': 'Rapenburgerstraat 173, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.368106,\n", + " 'lng': 4.9061522,\n", + " 'name': 'Rapenburgerstraat 173',\n", + " 'place_id': 'ChIJe7GIF70JxkcRidx5mdy_5lo',\n", + " 'post_code': '1011 VM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Rapenburgerstraat',\n", + " 'street_number': '173',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.womenwin.org'},\n", + " {'address': 'Untermüli 7, Zug, Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24787,\n", + " 'link': 'https://philea.eu/members/toni-piech-foundation/',\n", + " 'name': 'Toni Piëch Foundation',\n", + " 'position': {'address': 'Untermüli 7, Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.1804502,\n", + " 'lng': 8.517739599999999,\n", + " 'name': 'Untermüli 7',\n", + " 'place_id': 'ChIJ3aGnIFuqmkcRI2DbBPUXHU4',\n", + " 'post_code': '6302',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Untermüli',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.tonipiechfoundation.org/'},\n", + " {'address': '5 Canada Square, Canary Wharf, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24786,\n", + " 'link': 'https://philea.eu/members/thomson-reuters-foundation/',\n", + " 'name': 'Thomson Reuters Foundation',\n", + " 'position': {'address': '5 Canada Square, Canary Wharf, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5053031,\n", + " 'lng': -0.0184089,\n", + " 'name': '5 Canada Square',\n", + " 'place_id': 'ChIJVVVVZLcCdkgR_3T82OOWo4g',\n", + " 'post_code': 'E14 5AQ',\n", + " 'state': 'England',\n", + " 'street_name': 'Canada Square',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.trust.org/'},\n", + " {'address': 'C/O Sedulo Office 605, Albert House 256-260 OldStreet',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24785,\n", + " 'link': 'https://philea.eu/members/the-social-change-nest/',\n", + " 'name': 'The Social Change Nest',\n", + " 'position': {'address': 'C/O Sedulo Office 605, Albert House 256-260 '\n", + " 'OldStreet',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.52586489999999,\n", + " 'lng': -0.0851961,\n", + " 'place_id': 'EjY2MDUsIEFsYmVydCBIb3VzZSwgMjU2LTI2MCBPbGQgU3QsIExvbmRvbiBFQzFWIDlERCwgVUsiHxodChYKFAoSCZ0SA4KlHHZIEYPcSixfvSwKEgM2MDU',\n", + " 'post_code': 'EC1V 9DD',\n", + " 'state': 'England',\n", + " 'street_name': 'Old Street',\n", + " 'street_name_short': 'Old St',\n", + " 'street_number': '256-260',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://thesocialchangenest.org/'},\n", + " {'address': '1411 K Street Northwest suite 1200, Washington, DC, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24784,\n", + " 'link': 'https://philea.eu/members/the-global-fund-for-children/',\n", + " 'name': 'The Global Fund for Children',\n", + " 'position': {'address': '1411 K Street Northwest suite 1200, Washington, DC, '\n", + " 'USA',\n", + " 'city': 'Washington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.9028791,\n", + " 'lng': -77.0325632,\n", + " 'name': '1411 K St NW suite 1200',\n", + " 'place_id': 'EjIxNDExIEsgU3QgTlcgc3VpdGUgMTIwMCwgV2FzaGluZ3RvbiwgREMgMjAwMDUsIFVTQSImGiQKFgoUChIJuzc5m5W3t4kRCvjD-YXHC70SCnN1aXRlIDEyMDA',\n", + " 'post_code': '20005',\n", + " 'state': 'District of Columbia',\n", + " 'state_short': 'DC',\n", + " 'street_name': 'K Street Northwest',\n", + " 'street_name_short': 'K St NW',\n", + " 'street_number': '1411',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.globalfundforchildren.org'},\n", + " {'address': 'Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24783,\n", + " 'link': 'https://philea.eu/members/suna-and-inan-kirac-foundation/',\n", + " 'name': 'Suna and İnan Kıraç Foundation',\n", + " 'position': {'address': 'Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - '\n", + " 'İstanbul',\n", + " 'country': 'Türkiye',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0328293,\n", + " 'lng': 28.9752418,\n", + " 'place_id': 'ChIJV6w28F-3yhQRQoOqAcLxHTg',\n", + " 'post_code': '34430',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Meşrutiyet Caddesi',\n", + " 'street_name_short': 'Meşrutiyet Cd.',\n", + " 'street_number': 'No:47',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sunaveinankiracvakfi.org.tr/'},\n", + " {'address': 'Grimmereds by 5, Västra Frölunda, Sweden',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24781,\n", + " 'link': 'https://philea.eu/members/hidden-universe-biodiversity-foundation-hub/',\n", + " 'name': 'Hidden Universe: Biodiversity Foundation (HUB)',\n", + " 'position': {'address': 'Grimmereds by 5, Västra Frölunda, Sweden',\n", + " 'city': 'Västra Frölunda',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 57.6651926,\n", + " 'lng': 11.8938683,\n", + " 'name': 'Grimmereds by 5',\n", + " 'place_id': 'ChIJs0Ih5C2NT0YR-dceWQWRP78',\n", + " 'post_code': '426 70',\n", + " 'state': 'Västra Götalands län',\n", + " 'street_name': 'Grimmereds by',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.hu-b.org/'},\n", + " {'address': 'Mauerkircherstraße 12, Munich-Bogenhausen, Germany',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24780,\n", + " 'link': 'https://philea.eu/members/andrea-von-braun-stiftung/',\n", + " 'name': 'Andrea von Braun Stiftung',\n", + " 'position': {'address': 'Mauerkircherstraße 12, Munich-Bogenhausen, Germany',\n", + " 'city': 'München',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.1497328,\n", + " 'lng': 11.6012926,\n", + " 'name': 'Mauerkircherstraße 12',\n", + " 'place_id': 'ChIJW8XsIJ91nkcRKrCt_VJpuAk',\n", + " 'post_code': '81679',\n", + " 'state': 'Bayern',\n", + " 'state_short': 'BY',\n", + " 'street_name': 'Mauerkircherstraße',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.avbstiftung.de/en/'},\n", + " {'address': 'Salyutna St. 5, office 49 Kyiv, 04111 Ukraine',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24510,\n", + " 'link': 'https://philea.eu/members/philanthropy-in-ukraine/',\n", + " 'name': 'Philanthropy in Ukraine',\n", + " 'position': {'address': 'Salyutna St. 5, office 49 Kyiv, 04111 Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4503596,\n", + " 'lng': 30.5245025,\n", + " 'place_id': 'ChIJBUVa4U7P1EAR_kYBF9IxSXY',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv city',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://philanthropy.in.ua'},\n", + " {'address': 'Calle de Alcalá, 27, Madrid, Spain',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24509,\n", + " 'link': 'https://philea.eu/members/confederacion-espanola-de-cajas-de-ahorros/',\n", + " 'name': 'Confederación Española de Cajas de Ahorros',\n", + " 'position': {'address': 'Calle de Alcalá, 27, Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.41845850000001,\n", + " 'lng': -3.6986681,\n", + " 'name': 'C. Alcalá, 27',\n", + " 'place_id': 'ChIJA_9ksYYoQg0RAu5gh9in4Tw',\n", + " 'post_code': '28014',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle Alcalá',\n", + " 'street_name_short': 'C. Alcalá',\n", + " 'street_number': '27',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.ceca.es'},\n", + " {'address': 'Blue House Yard, River Park Road, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24508,\n", + " 'link': 'https://philea.eu/members/we-are-purposeful/',\n", + " 'name': 'We Are Purposeful',\n", + " 'position': {'address': 'Blue House Yard, River Park Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5972015,\n", + " 'lng': -0.1116638,\n", + " 'name': 'Blue House Yard',\n", + " 'place_id': 'ChIJ0zqdKOIbdkgR0qSLHN8y2Pk',\n", + " 'post_code': 'N22 7TB',\n", + " 'state': 'England',\n", + " 'street_name': 'River Park Road',\n", + " 'street_name_short': 'River Park Rd',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://wearepurposeful.org/'},\n", + " {'address': 'Jurkovićeva ulica 3, Zagreb, Croatia',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24507,\n", + " 'link': 'https://philea.eu/members/solidarna-foundation/',\n", + " 'name': 'SOLIDARNA Foundation',\n", + " 'position': {'address': 'Jurkovićeva ulica 3, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.81490180000001,\n", + " 'lng': 15.9903851,\n", + " 'name': 'Jurkovićeva ul. 3',\n", + " 'place_id': 'ChIJ61VlCKvXZUcR8czyDuySB1g',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Jurkovićeva ulica',\n", + " 'street_name_short': 'Jurkovićeva ul.',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.solidarna.hr'},\n", + " {'address': '67 Mountain Blvd suite 201, Warren, NJ, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24506,\n", + " 'link': 'https://philea.eu/members/segal-family-foundation/',\n", + " 'name': 'Segal Family Foundation',\n", + " 'position': {'address': '67 Mountain Blvd suite 201, Warren, NJ, USA',\n", + " 'city': 'Warren',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.6161249,\n", + " 'lng': -74.49897480000001,\n", + " 'name': '67 Mountain Blvd suite 201',\n", + " 'place_id': 'EjE2NyBNb3VudGFpbiBCbHZkIHN1aXRlIDIwMSwgV2FycmVuLCBOSiAwNzA1OSwgVVNBIiUaIwoWChQKEgk7T-HRTLnDiRH69HeOmheIEBIJc3VpdGUgMjAx',\n", + " 'post_code': '07059',\n", + " 'state': 'New Jersey',\n", + " 'state_short': 'NJ',\n", + " 'street_name': 'Mountain Boulevard',\n", + " 'street_name_short': 'Mountain Blvd',\n", + " 'street_number': '67',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.segalfamilyfoundation.org'},\n", + " {'address': 'Place de Cornavin 2, Geneva, Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24505,\n", + " 'link': 'https://philea.eu/members/partners-for-a-new-economy/',\n", + " 'name': 'Partners for a New Economy',\n", + " 'position': {'address': 'Place de Cornavin 2, Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2084926,\n", + " 'lng': 6.1428645,\n", + " 'name': 'Pl. de Cornavin 2',\n", + " 'place_id': 'ChIJk1z4kidljEcRgdv-BG4Y7wc',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Cornavin',\n", + " 'street_name_short': 'Pl. de Cornavin',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://p4ne.org/'},\n", + " {'address': 'Læderstræde 20, Copenhagen, Denmark',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24504,\n", + " 'link': 'https://philea.eu/members/kr-foundation/',\n", + " 'name': 'KR Foundation',\n", + " 'position': {'address': 'Læderstræde 20, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.67819679999999,\n", + " 'lng': 12.5780295,\n", + " 'name': 'Læderstræde 20',\n", + " 'place_id': 'ChIJ6_tpKRFTUkYRT5AVaL66Ess',\n", + " 'post_code': '1201',\n", + " 'street_name': 'Læderstræde',\n", + " 'street_number': '20',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.krfnd.org'},\n", + " {'address': 'Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de '\n", + " 'Panamá ',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24503,\n", + " 'link': 'https://philea.eu/members/fundacion-avina/',\n", + " 'name': 'Fundación AVINA',\n", + " 'position': {'address': 'Evelio Lara, Casa N°131-B Ciudad del Saber, '\n", + " 'Clayton, Ciudad de Panamá ',\n", + " 'city': 'Panamá',\n", + " 'country': 'Panama',\n", + " 'country_short': 'PA',\n", + " 'lat': 8.9971189,\n", + " 'lng': -79.5823125,\n", + " 'place_id': 'ChIJLfCbTzWmrI8Rsl2lERV3mXk',\n", + " 'state': 'Provincia de Panamá',\n", + " 'street_name': 'Calle Evelio Lara',\n", + " 'street_name_short': 'C. Evelio Lara',\n", + " 'zoom': 15},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.avina.net'},\n", + " {'address': 'Forte Petrazza, Località Forte Petrazza, Camaro Superiore, '\n", + " 'Metropolitan City of Messina, Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24502,\n", + " 'link': 'https://philea.eu/members/fondazione-messina/',\n", + " 'name': 'Fondazione MeSSInA',\n", + " 'position': {'address': 'Forte Petrazza, Località Forte Petrazza, Camaro '\n", + " 'Superiore, Metropolitan City of Messina, Italy',\n", + " 'city': 'Camaro Superiore',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 38.1814676,\n", + " 'lng': 15.5276218,\n", + " 'name': 'Forte Petrazza',\n", + " 'place_id': 'ChIJTT7gPJROFBMRVEOMJ1_wBs4',\n", + " 'post_code': '98151',\n", + " 'state': 'Sicilia',\n", + " 'state_short': 'ME',\n", + " 'street_name': 'Località Forte Petrazza',\n", + " 'street_number': 'SNC',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://fdcmessina.org/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24349,\n", + " 'link': 'https://philea.eu/members/volkswagen-slovakia-foundation/',\n", + " 'name': 'Volkswagen Slovakia Foundation',\n", + " 'position': {'address': 'Jána Jánoša 1 bratislava',\n", + " 'city': 'Bratislava',\n", + " 'country': 'Slovakia',\n", + " 'country_short': 'SK',\n", + " 'lat': 48.1477745,\n", + " 'lng': 17.1071553,\n", + " 'place_id': 'ChIJl2HKCjaJbEcRaEOI_YKbH2M',\n", + " 'state': 'Bratislava Region',\n", + " 'zoom': 12},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nadacia-volkswagen.sk/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24348,\n", + " 'link': 'https://philea.eu/members/virgin-unite/',\n", + " 'name': 'Virgin Unite',\n", + " 'position': {'address': '50a Charlotte Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5198393,\n", + " 'lng': -0.1358514,\n", + " 'name': '50a Charlotte St.',\n", + " 'place_id': 'ChIJj2Wr5CsbdkgRDcBQ-Ujjj-0',\n", + " 'post_code': 'W1T 2NS',\n", + " 'state': 'England',\n", + " 'street_name': 'Charlotte Street',\n", + " 'street_name_short': 'Charlotte St.',\n", + " 'street_number': '50a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.virginunite.com'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24347,\n", + " 'link': 'https://philea.eu/members/romanian-federation-for-community-foundations/',\n", + " 'name': 'Romanian Federation for Community Foundations',\n", + " 'position': {'address': 'Int. Dridu nr. 7, bl. F13, sc. B, ap. 68, sector 1',\n", + " 'city': 'Bucharest',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 44.452444,\n", + " 'lng': 26.0856777,\n", + " 'place_id': 'ChIJX-KIi7kDskARFJCx_PyWpi4',\n", + " 'state': 'Bucharest',\n", + " 'zoom': 16},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://ffcr.ro/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24346,\n", + " 'link': 'https://philea.eu/members/grundfos-foundation/',\n", + " 'name': 'Grundfos Foundation',\n", + " 'position': {'address': 'Poul Due Jensens Vej 7, Bjerringbro, Denmark',\n", + " 'city': 'Bjerringbro',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 56.3802866,\n", + " 'lng': 9.6690239,\n", + " 'name': 'Poul Due Jensens Vej 7',\n", + " 'place_id': 'ChIJ1faoOTH4S0YRTPoMyHenWaM',\n", + " 'post_code': '8850',\n", + " 'street_name': 'Poul Due Jensens Vej',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.pdjf.dk/en/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 24345,\n", + " 'link': 'https://philea.eu/members/exea-impact/',\n", + " 'name': 'Exea Impact',\n", + " 'position': {'address': \"Puig Brands Torre 2, Plaça d'Europa, 34, \"\n", + " \"L'Hospitalet de Llobregat, Spain\",\n", + " 'city': \"L'Hospitalet de Llobregat\",\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.357969,\n", + " 'lng': 2.1227306,\n", + " 'name': 'Puig Brands Torre 2',\n", + " 'place_id': 'ChIJ-a07tUCZpBIRjPXXZQm5n6c',\n", + " 'post_code': '08908',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': \"Plaça d'Europa\",\n", + " 'street_name_short': \"Pl. d'Europa\",\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.exeaimpact.org'},\n", + " {'address': '',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'id': 24344,\n", + " 'link': 'https://philea.eu/members/bulgarian-fund-for-women/',\n", + " 'name': 'Bulgarian Fund for Women',\n", + " 'position': {'address': 'улица „Солунска“ 26, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6929644,\n", + " 'lng': 23.3191476,\n", + " 'name': 'Solunska Street 26',\n", + " 'place_id': 'ChIJUXfHw2yFqkARScaIU7ZQWBI',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'Solunska Street',\n", + " 'street_number': '26',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://bgfundforwomen.org/en/'},\n", + " {'address': 'MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23661,\n", + " 'link': 'https://philea.eu/members/kosovar-civil-society-foundation/',\n", + " 'name': 'Kosovar Civil Society Foundation',\n", + " 'position': {'address': 'MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine '\n", + " 'Kosovo',\n", + " 'city': 'Pristina',\n", + " 'lat': 42.6673053,\n", + " 'lng': 21.1643067,\n", + " 'place_id': 'ChIJJwkRBeaeVBMRWrleON-_ZZM',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.kcsfoundation.org/'},\n", + " {'address': 'Chiswick Business Park, Chiswick High Road, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23660,\n", + " 'link': 'https://philea.eu/members/swarovski-foundation/',\n", + " 'name': 'Swarovski Foundation',\n", + " 'position': {'address': 'Chiswick Business Park, Chiswick High Road, London, '\n", + " 'UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4930604,\n", + " 'lng': -0.2748696,\n", + " 'name': 'Chiswick Business Park',\n", + " 'place_id': 'ChIJ-RcBF8UPdkgRvDCVVgd4zeE',\n", + " 'post_code': 'W4 5AN',\n", + " 'state': 'England',\n", + " 'street_name': 'Chiswick High Road',\n", + " 'street_name_short': 'Chiswick High Rd.',\n", + " 'street_number': '566',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.swarovskifoundation.org/'},\n", + " {'address': '14 Rue Royale, Paris, France',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23659,\n", + " 'link': 'https://philea.eu/members/loreal-fund-for-women/',\n", + " 'name': \"L'Oréal Fund for Women\",\n", + " 'position': {'address': '14 Rue Royale, Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8681213,\n", + " 'lng': 2.3233605,\n", + " 'name': '14 Rue Royale',\n", + " 'place_id': 'ChIJfYB-yTJu5kcRdfw3SUPUciI',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Royale',\n", + " 'street_number': '14',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://fondationloreal.com/en'},\n", + " {'address': '600 Brickell Ave ste 3200, Miami, FL, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23658,\n", + " 'link': 'https://philea.eu/members/foundever-org/',\n", + " 'name': 'Foundever.org',\n", + " 'position': {'address': '600 Brickell Ave ste 3200, Miami, FL, USA',\n", + " 'city': 'Miami',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 25.7679928,\n", + " 'lng': -80.19088359999999,\n", + " 'name': '600 Brickell Ave ste 3200',\n", + " 'place_id': 'Ei82MDAgQnJpY2tlbGwgQXZlIHN0ZSAzMjAwLCBNaWFtaSwgRkwgMzMxMzEsIFVTQSIkGiIKFgoUChIJ4bneW7y32YgRNTylH3ujU3oSCHN0ZSAzMjAw',\n", + " 'post_code': '33131',\n", + " 'state': 'Florida',\n", + " 'state_short': 'FL',\n", + " 'street_name': 'Brickell Avenue',\n", + " 'street_name_short': 'Brickell Ave',\n", + " 'street_number': '600',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://foundever.org/'},\n", + " {'address': 'Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 23656,\n", + " 'link': 'https://philea.eu/members/fondazione-capellino/',\n", + " 'name': 'Fondazione Capellino',\n", + " 'position': {'address': 'Via de Marini, 1, Genoa, Metropolitan City of '\n", + " 'Genoa, Italy',\n", + " 'city': 'Genova',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.4084736,\n", + " 'lng': 8.900479599999999,\n", + " 'name': 'Via de Marini, 1',\n", + " 'place_id': 'ChIJ-1idExVB0xIRJw8sHBtYXOM',\n", + " 'post_code': '16149',\n", + " 'state': 'Liguria',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Via de Marini',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://fondazionecapellino.org/en/fondazione-capellino'},\n", + " {'address': 'Bahnhofstrasse 25, Zug, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 22839,\n", + " 'link': 'https://philea.eu/members/ursimone-wietslibach-foundation/',\n", + " 'name': 'Ursimone Wietslibach Foundation',\n", + " 'position': {'address': 'Bahnhofstrasse 25, Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.1701744,\n", + " 'lng': 8.515627799999999,\n", + " 'name': 'Bahnhofstrasse 25',\n", + " 'place_id': 'ChIJb1ehsPeqmkcRtoioJVUTpCc',\n", + " 'post_code': '6300',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Bahnhofstrasse',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.uswf.ch/'},\n", + " {'address': 'ul. \"Malyovitsa\" 6, Sofia, Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'id': 22838,\n", + " 'link': 'https://philea.eu/members/america-for-bulgaria-foundation/',\n", + " 'name': 'America for Bulgaria Foundation',\n", + " 'position': {'address': 'ul. \"Malyovitsa\" 6, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6892438,\n", + " 'lng': 23.3287435,\n", + " 'name': 'ul. \"Malyovitsa\" 6',\n", + " 'place_id': 'ChIJAfc9RQuFqkAR6o_IfC7KKpk',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'ulitsa \"Malyovitsa\"',\n", + " 'street_name_short': 'ul. \"Malyovitsa\"',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.us4bg.org/'},\n", + " {'address': 'Radarweg 29, Amsterdam, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 22835,\n", + " 'link': 'https://philea.eu/members/elsevier-foundation/',\n", + " 'name': 'Elsevier Foundation',\n", + " 'position': {'address': 'Radarweg 29, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3930616,\n", + " 'lng': 4.8363326,\n", + " 'name': 'Radarweg 29',\n", + " 'place_id': 'EitSYWRhcndlZyAyOSwgMTA0MyBOWCBBbXN0ZXJkYW0sIE5ldGhlcmxhbmRzIjASLgoUChIJq2KEVfbixUcRt3nmid8idK4QHSoUChIJD8YwIffixUcRaDKZ2LuKHFg',\n", + " 'post_code': '1043 NX',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Radarweg',\n", + " 'street_number': '29',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.elsevierfoundation.org/'},\n", + " {'address': 'Sankt Annæ Plads 13, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 22834,\n", + " 'link': 'https://philea.eu/members/augustinus-fonden/',\n", + " 'name': 'Augustinus Fonden',\n", + " 'position': {'address': 'Sankt Annæ Plads 13, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.68190389999999,\n", + " 'lng': 12.5909885,\n", + " 'name': 'Sankt Annæ Pl. 13',\n", + " 'place_id': 'ChIJY8VV7SJTUkYRmmLSG77hh9k',\n", + " 'post_code': '1250',\n", + " 'street_name': 'Sankt Annæ Plads',\n", + " 'street_name_short': 'Sankt Annæ Pl.',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.augustinusfonden.dk'},\n", + " {'address': 'Solunska Street 56, Sofia, Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': 'info@osi.bg',\n", + " 'id': 22833,\n", + " 'link': 'https://philea.eu/members/open-society-institute-sofia/',\n", + " 'name': 'Open Society Institute - Sofia',\n", + " 'position': {'address': 'Solunska Street 56, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6935377,\n", + " 'lng': 23.3159479,\n", + " 'name': 'Solunska Street 56',\n", + " 'place_id': 'ChIJpS2sRmuFqkARZiEgSzLlBn4',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'Solunska Street',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://osis.bg/'},\n", + " {'address': 'Mykola Shpak Street, 3 Kyiv Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'development@kse.ua',\n", + " 'id': 22831,\n", + " 'link': 'https://philea.eu/members/kyiv-school-of-economics-foundation/',\n", + " 'name': 'Kyiv School of Economics Foundation',\n", + " 'position': {'address': 'Mykola Shpak Street, 3 Kyiv Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4503596,\n", + " 'lng': 30.5245025,\n", + " 'place_id': 'ChIJBUVa4U7P1EAR_kYBF9IxSXY',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv city',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://foundation.kse.ua/en/'},\n", + " {'address': 'Dilova Street, Kyiv, Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'info@philanthropy.com.ua',\n", + " 'id': 22829,\n", + " 'link': 'https://philea.eu/members/national-network-of-local-philanthropy-development/',\n", + " 'name': 'National Network of Local Philanthropy Development',\n", + " 'position': {'address': 'Dilova Street, Kyiv, Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4299123,\n", + " 'lng': 30.5154433,\n", + " 'name': 'Dilova Street',\n", + " 'place_id': 'Eh9EaWxvdmEgU3QsIEt5aXYsIFVrcmFpbmUsIDAyMDAwIi4qLAoUChIJ1yz_nB3P1EARaMS788ZVsPASFAoSCQVFWuFOz9RAEf5GARfSMUl2',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv',\n", + " 'street_name': 'Dilova Street',\n", + " 'street_name_short': 'Dilova St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://philanthropy.com.ua/'},\n", + " {'address': 'Linienstraße 65A, Berlin, Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 22472,\n", + " 'link': 'https://philea.eu/members/iac-berlin-ggmbh/',\n", + " 'name': 'iac Berlin gGmbH',\n", + " 'position': {'address': 'Linienstraße 65A, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5289842,\n", + " 'lng': 13.4040638,\n", + " 'name': 'Linienstraße 65A',\n", + " 'place_id': 'ChIJQci4muNRqEcRG2l7p--nrGY',\n", + " 'post_code': '10119',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Linienstraße',\n", + " 'street_number': '65A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.iac-berlin.org/'},\n", + " {'address': 'James Wattstraat 100, Amsterdam, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 22471,\n", + " 'link': 'https://philea.eu/members/european-fundraising-association/',\n", + " 'name': 'European Fundraising Association',\n", + " 'position': {'address': 'James Wattstraat 100, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3489327,\n", + " 'lng': 4.9200102,\n", + " 'name': 'James Wattstraat 100',\n", + " 'place_id': 'ChIJD1rgOX8JxkcRYuPQsH_Wods',\n", + " 'post_code': '1097 DM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'James Wattstraat',\n", + " 'street_number': '100',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.efa-net.eu'},\n", + " {'address': 'Oberer Kehlberg 6, Attendorn, Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 22470,\n", + " 'link': 'https://philea.eu/members/famtastisch-stiftung/',\n", + " 'name': 'Famtastisch Stiftung',\n", + " 'position': {'address': 'Oberer Kehlberg 6, Attendorn, Germany',\n", + " 'city': 'Attendorn',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.12166990000001,\n", + " 'lng': 7.8947567,\n", + " 'name': 'Oberer Kehlberg 6',\n", + " 'place_id': 'ChIJkW1EcX9TuUcR32j7vTHKvp0',\n", + " 'post_code': '57439',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Oberer Kehlberg',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.famtastisch.org/'},\n", + " {'address': 'Stationsplein 4, 3818 LE Amersfoort, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@wildeganzen.nl',\n", + " 'id': 22469,\n", + " 'link': 'https://philea.eu/members/wilde-ganzen-foundation/',\n", + " 'name': 'Wilde Ganzen Foundation',\n", + " 'position': {'address': 'Stationsplein 4, 3818 LE Amersfoort, Netherlands',\n", + " 'city': 'Amersfoort',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.1526612269682,\n", + " 'lng': 5.376777648925781,\n", + " 'place_id': 'ChIJQbg3Cx1ExkcRD4O9sCSuDQk',\n", + " 'post_code': '3818 LE',\n", + " 'state': 'Utrecht',\n", + " 'state_short': 'UT',\n", + " 'street_name': 'Stationsplein',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.wildeganzen.org/'},\n", + " {'address': 'Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid',\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'id': 22468,\n", + " 'link': 'https://philea.eu/members/fundacion-vertex-bioenergy/',\n", + " 'name': 'Fundación Vertex Bioenergy',\n", + " 'position': {'address': 'Avda. de Europa, 19 Edificio 3, Módulo Bajo-D '\n", + " 'Madrid',\n", + " 'city': 'Pozuelo de Alarcón',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4417766,\n", + " 'lng': -3.7868106,\n", + " 'place_id': 'ChIJ__-vYVKGQQ0RhN01Pl6ZWFw',\n", + " 'post_code': '28224',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Avenida de Europa',\n", + " 'street_name_short': 'Av. de Europa',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fundacionvertexbioenergy.org/'},\n", + " {'address': 'Calle Amor de Dios, 1, Madrid, Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'madrid@tba21.org',\n", + " 'id': 22467,\n", + " 'link': 'https://philea.eu/members/fundacion-tba21/',\n", + " 'name': 'Fundación TBA21',\n", + " 'position': {'address': 'Calle Amor de Dios, 1, Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.41334930000001,\n", + " 'lng': -3.6981334,\n", + " 'name': 'C. del Amor de Dios, 1',\n", + " 'place_id': 'ChIJewKr_oEoQg0RxBicjH9bnRo',\n", + " 'post_code': '28014',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle del Amor de Dios',\n", + " 'street_name_short': 'C. del Amor de Dios',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://tba21.org/'},\n", + " {'address': 'IJsseldijk 1, Veessen, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@dobecology.nl',\n", + " 'id': 22466,\n", + " 'link': 'https://philea.eu/members/dob-ecology/',\n", + " 'name': 'DOB Ecology',\n", + " 'position': {'address': 'IJsseldijk 1, Veessen, Netherlands',\n", + " 'city': 'Veessen',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.36253480000001,\n", + " 'lng': 6.0737668,\n", + " 'name': 'IJsseldijk 1',\n", + " 'place_id': 'ChIJg07EdUfDx0cRUwJ6cw84_5M',\n", + " 'post_code': '8194 LA',\n", + " 'state': 'Gelderland',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'IJsseldijk',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://dobecology.nl/'},\n", + " {'address': 'Gutenbergstrasse 2, 8002 Zürich, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 22435,\n", + " 'link': 'https://philea.eu/members/dalyan-foundation/',\n", + " 'name': 'Dalyan Foundation',\n", + " 'position': {'address': 'Gutenbergstrasse 2, 8002 Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3649605,\n", + " 'lng': 8.531086199999999,\n", + " 'name': 'Gutenbergstrasse 2',\n", + " 'place_id': 'Ei1HdXRlbmJlcmdzdHJhc3NlIDIsIDgwMDIgWsO8cmljaCwgU3dpdHplcmxhbmQiMBIuChQKEgmtPgL--AmQRxFgEMpvwdmLtBACKhQKEgnr9f9T-AmQRxGZH2W1fPJRRg',\n", + " 'post_code': '8002',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Gutenbergstrasse',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dalyanfoundation.ch'},\n", + " {'address': 'Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'hello@betterwayfound.org',\n", + " 'id': 22431,\n", + " 'link': 'https://philea.eu/members/better-way-foundation/',\n", + " 'name': 'Better Way Foundation',\n", + " 'position': {'address': 'Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. '\n", + " 'Box 83 Vaduz',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.140606,\n", + " 'lng': 9.521298,\n", + " 'place_id': 'ChIJKRSZjWcxm0cRuxoXjh3PbSA',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '5',\n", + " 'zoom': 17},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.betterwayfound.org/'},\n", + " {'address': '223 Pentonville Road, London, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 21875,\n", + " 'link': 'https://philea.eu/members/henry-smith-charity-the/',\n", + " 'name': 'Henry Smith Charity, The',\n", + " 'position': {'address': '223 Pentonville Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5311058,\n", + " 'lng': -0.1177295,\n", + " 'name': '223 Pentonville Rd',\n", + " 'place_id': 'EiUyMjMgUGVudG9udmlsbGUgUmQsIExvbmRvbiBOMSA5SlksIFVLIjESLwoUChIJ311bUT8bdkgRKrgVcp1suFwQ3wEqFAoSCQdNeyhBG3ZIEcT_WQxy9qXB',\n", + " 'post_code': 'N1 9JY',\n", + " 'state': 'England',\n", + " 'street_name': 'Pentonville Road',\n", + " 'street_name_short': 'Pentonville Rd',\n", + " 'street_number': '223',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.henrysmithcharity.org.uk'},\n", + " {'address': '30 Merrion Square North, Dublin 2, Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': '',\n", + " 'id': 21874,\n", + " 'link': 'https://philea.eu/members/community-foundation-ireland-the/',\n", + " 'name': 'Community Foundation Ireland, The',\n", + " 'position': {'address': '30 Merrion Square North, Dublin 2, Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.3399796,\n", + " 'lng': -6.2469008,\n", + " 'name': '30 Merrion Square N',\n", + " 'place_id': 'ChIJhXzOupYOZ0gRLBxH_tehGxg',\n", + " 'post_code': 'D02 VE40',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Merrion Square North',\n", + " 'street_name_short': 'Merrion Square N',\n", + " 'street_number': '30',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.communityfoundation.ie/'},\n", + " {'address': 'P.O. Box 15652 1001 ND Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 21873,\n", + " 'link': 'https://philea.eu/members/limelight-foundation/',\n", + " 'name': 'Limelight Foundation',\n", + " 'position': {'address': 'P.O. Box 15652 1001 ND Amsterdam Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://limelight.foundation'},\n", + " {'address': 'Amaliegade 8, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 21872,\n", + " 'link': 'https://philea.eu/members/hempel-foundation/',\n", + " 'name': 'Hempel Foundation',\n", + " 'position': {'address': 'Amaliegade 8, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.68221029999999,\n", + " 'lng': 12.5919428,\n", + " 'name': 'Amaliegade 8',\n", + " 'place_id': 'ChIJQ4_o8CJTUkYRJ-clvQyOk9Q',\n", + " 'post_code': '1256',\n", + " 'street_name': 'Amaliegade',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hempel.com'},\n", + " {'address': 'Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 21871,\n", + " 'link': 'https://philea.eu/members/casa-ronald-mcdonald-italia-ets/',\n", + " 'name': 'Casa Ronald McDonald Italia ETS',\n", + " 'position': {'address': 'Via del Bosco Rinnovato, 6, Assago, Metropolitan '\n", + " 'City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.40910329999999,\n", + " 'lng': 9.150266199999999,\n", + " 'name': 'Via del Bosco Rinnovato, 6',\n", + " 'place_id': 'ChIJZTd90W7DhkcR3ZRwmSUwJUI',\n", + " 'post_code': '20057',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via del Bosco Rinnovato',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazioneronald.org'},\n", + " {'address': 'Holbeinstrasse 22, Zürich, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 21352,\n", + " 'link': 'https://philea.eu/members/seedling-foundation/',\n", + " 'name': 'Seedling Foundation',\n", + " 'position': {'address': 'Holbeinstrasse 22, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.36403809999999,\n", + " 'lng': 8.5495932,\n", + " 'name': 'Holbeinstrasse 22',\n", + " 'place_id': 'ChIJkQ5y9FKnmkcR1XFE1E0cLcw',\n", + " 'post_code': '8008',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Holbeinstrasse',\n", + " 'street_number': '22',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.seedlingfoundation.ch/'},\n", + " {'address': 'The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'kulturfonden@norden.org',\n", + " 'id': 21350,\n", + " 'link': 'https://philea.eu/members/the-nordic-culture-fund/',\n", + " 'name': 'The Nordic Culture Fund',\n", + " 'position': {'address': 'The Nordic Culture Fund Ved Stranden 18 1061 '\n", + " 'Copenhagen K Denmark',\n", + " 'city': 'Copenhagen',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6760968,\n", + " 'lng': 12.5683371,\n", + " 'place_id': 'ChIJIz2AXDxTUkYRuGeU5t1-3QQ',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nordiskkulturfond.org/en'},\n", + " {'address': 'ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, '\n", + " 'Czechia',\n", + " 'country': 'Czech Republic',\n", + " 'email': 'nadacnifond@skoda-auto.cz',\n", + " 'id': 21349,\n", + " 'link': 'https://philea.eu/members/skoda-auto-endowment-fund/',\n", + " 'name': 'Škoda Auto Endowment Fund',\n", + " 'position': {'address': 'ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá '\n", + " 'Boleslav 1, Czechia',\n", + " 'city': 'Mladá Boleslav 1',\n", + " 'country': 'Czechia',\n", + " 'country_short': 'CZ',\n", + " 'lat': 50.426853,\n", + " 'lng': 14.9218356,\n", + " 'name': 'tř. Václava Klementa 869',\n", + " 'place_id': 'ChIJj__Bq7JVCUcRafZj7Fmtf3o',\n", + " 'post_code': '293 01',\n", + " 'state': 'Středočeský kraj',\n", + " 'street_name': 'třída Václava Klementa',\n", + " 'street_name_short': 'tř. Václava Klementa',\n", + " 'street_number': '869',\n", + " 'zoom': 16},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nfsa.cz'},\n", + " {'address': 'Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@rambollfonden.com',\n", + " 'id': 21348,\n", + " 'link': 'https://philea.eu/members/ramboll-foundation/',\n", + " 'name': 'Ramboll Foundation',\n", + " 'position': {'address': 'Ramboll Head Office, Hannemanns Allé 53, '\n", + " 'Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.62738719999999,\n", + " 'lng': 12.5794091,\n", + " 'name': 'Ramboll Head Office',\n", + " 'place_id': 'ChIJr5-Hi7dUUkYRI0z6TWYsvsI',\n", + " 'post_code': '2300',\n", + " 'street_name': 'Hannemanns Allé',\n", + " 'street_number': '53',\n", + " 'zoom': 7},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rambollfonden.com'},\n", + " {'address': '38 Rue de la Folie-Regnault, Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'contact@fondationlafrancesengage.org',\n", + " 'id': 21347,\n", + " 'link': 'https://philea.eu/members/fondation-la-france-sengage-2/',\n", + " 'name': \"Fondation la France s'engage\",\n", + " 'position': {'address': '38 Rue de la Folie-Regnault, Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8587116,\n", + " 'lng': 2.3874303,\n", + " 'name': '38 Rue de la Folie-Regnault',\n", + " 'place_id': 'ChIJbYW78fRt5kcRxL6iBM85laE',\n", + " 'post_code': '75011',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue de la Folie-Regnault',\n", + " 'street_number': '38',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationlafrancesengage.org/'},\n", + " {'address': 'Kering, 40 Rue de Sèvres, 75007 Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'keringfoundation@kering.com',\n", + " 'id': 21346,\n", + " 'link': 'https://philea.eu/members/kering-foundation/',\n", + " 'name': 'Kering Foundation',\n", + " 'position': {'address': 'Kering, 40 Rue de Sèvres, 75007 Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8493753,\n", + " 'lng': 2.322048200000001,\n", + " 'name': 'Kering',\n", + " 'place_id': 'ChIJ2WJgKNNx5kcRKJ-0GozMdGU',\n", + " 'post_code': '75007',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue de Sèvres',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.keringfoundation.org'},\n", + " {'address': '116 Park Street, London W1K 6AF, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 21345,\n", + " 'link': 'https://philea.eu/members/jeremy-coller-foundation/',\n", + " 'name': 'Jeremy Coller Foundation',\n", + " 'position': {'address': '116 Park Street, London W1K 6AF, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51337789999999,\n", + " 'lng': -0.1556058,\n", + " 'name': '116 Park St',\n", + " 'place_id': 'ChIJ6QZN4TIFdkgRkbtGcWYNg2Q',\n", + " 'post_code': 'W1K 6AF',\n", + " 'state': 'England',\n", + " 'street_name': 'Park Street',\n", + " 'street_name_short': 'Park St',\n", + " 'street_number': '116',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.jeremycollerfoundation.org'},\n", + " {'address': 'Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ',\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'id': 21344,\n", + " 'link': 'https://philea.eu/members/fundacion-mapfre/',\n", + " 'name': 'Fundación Mapfre',\n", + " 'position': {'address': 'Fundación Mapfre Paseo de Recoletos, 23 28004 '\n", + " 'Madrid Spain ',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4225631,\n", + " 'lng': -3.6921871,\n", + " 'place_id': 'ChIJD3h76EEpQg0RifCjWOgs4ag',\n", + " 'post_code': '28004',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Paseo de Recoletos',\n", + " 'street_name_short': 'P.º de Recoletos',\n", + " 'street_number': '23',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionmapfre.org'},\n", + " {'address': 'Wildlife Conservation Society EU Boulevard Louis Schmidt 64 1040 '\n", + " 'Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'id': 20891,\n", + " 'link': 'https://philea.eu/members/wildlife-conservation-society-eu/',\n", + " 'name': 'Wildlife Conservation Society EU',\n", + " 'position': {'address': 'Boulevard Louis Schmidt 64, 1040 Etterbeek, '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Etterbeek',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8297338,\n", + " 'lng': 4.4023405,\n", + " 'name': 'Bd Louis Schmidt 64',\n", + " 'place_id': 'ChIJ22ZKe7TEw0cRVL69dfxF_jc',\n", + " 'post_code': '1040',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Boulevard Louis Schmidt',\n", + " 'street_name_short': 'Bd Louis Schmidt',\n", + " 'street_number': '64',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://brussels.wcs.org/'},\n", + " {'address': 'Global Greengrants Fund UK WeWork - Office Space & Coworking, '\n", + " 'City Road, London, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@globalgreengrants.org.uk',\n", + " 'id': 20754,\n", + " 'link': 'https://philea.eu/members/global-greengrants-fund-uk/',\n", + " 'name': 'Global Greengrants Fund UK',\n", + " 'position': {'address': 'Global Greengrants Fund UK WeWork - Office Space & '\n", + " 'Coworking, City Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5278912,\n", + " 'lng': -0.0882804,\n", + " 'place_id': 'ChIJ1bq4GBYddkgR45V6NnYZ7jY',\n", + " 'post_code': 'EC1V 1AZ',\n", + " 'state': 'England',\n", + " 'street_name': 'City Road',\n", + " 'street_name_short': 'City Rd',\n", + " 'street_number': '145',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.greengrants.org/who-we-are/global-greengrants-fund-uk/'},\n", + " {'address': 'Institute of Science and Technology Austria (ISTA), Am Campus, '\n", + " 'Klosterneuburg, Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'foundation@ista.ac.at',\n", + " 'id': 20620,\n", + " 'link': 'https://philea.eu/members/ista-foundation/',\n", + " 'name': 'ISTA Foundation',\n", + " 'position': {'address': 'Institute of Science and Technology Austria (ISTA), '\n", + " 'Am Campus, Klosterneuburg, Austria',\n", + " 'city': 'Klosterneuburg',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.3095598,\n", + " 'lng': 16.2595038,\n", + " 'name': 'Institute of Science and Technology Austria (ISTA)',\n", + " 'place_id': 'ChIJi8zP6iEMbUcRsygEZMiM3to',\n", + " 'post_code': '3400',\n", + " 'state': 'Niederösterreich',\n", + " 'street_name': 'Am Campus',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://ista.ac.at/en/capital-campaign/the-ista-foundation/'},\n", + " {'address': 'Via Brenta Vecchia 08 Venice, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionedivenezia.org',\n", + " 'id': 20619,\n", + " 'link': 'https://philea.eu/members/fondazione-di-venezia/',\n", + " 'name': 'Fondazione di Venezia',\n", + " 'position': {'address': 'Via Brenta Vecchia 08 venice',\n", + " 'city': 'Venezia',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4920122,\n", + " 'lng': 12.2413301,\n", + " 'place_id': 'Ei5WaWEgQnJlbnRhIFZlY2NoaWEsIDgsIDMwMTcxIFZlbmV6aWEgVkUsIEl0YWx5IjASLgoUChIJ1SUOvT-0fkcRSzcoNnTsZYwQCCoUChIJ5csiuz-0fkcR8cgOeVrbTSU',\n", + " 'post_code': '30171',\n", + " 'state': 'Veneto',\n", + " 'state_short': 'VE',\n", + " 'street_name': 'Via Brenta Vecchia',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionedivenezia.it'},\n", + " {'address': 'Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria.fondazione@fondazionecdp.it',\n", + " 'id': 20618,\n", + " 'link': 'https://philea.eu/members/fondazione-cdp/',\n", + " 'name': 'Fondazione CDP',\n", + " 'position': {'address': 'Via Goito, 4, Rome, Metropolitan City of Rome '\n", + " 'Capital, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.90695119999999,\n", + " 'lng': 12.4995912,\n", + " 'name': 'Via Goito, 4',\n", + " 'place_id': 'ChIJo3v9wglhLxMRPUtWOuax73A',\n", + " 'post_code': '00185',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via Goito',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.cdp.it/sitointernet/it/fondazione.page'},\n", + " {'address': 'Mariahilfer Straße 47/1 1, Vienna, Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'forum@alpbach.org',\n", + " 'id': 20334,\n", + " 'link': 'https://philea.eu/members/european-forum-alpbach/',\n", + " 'name': 'European Forum Alpbach',\n", + " 'position': {'address': 'Mariahilfer Straße 47/1 1, Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.19933379999999,\n", + " 'lng': 16.3553679,\n", + " 'name': 'Mariahilfer Str. 47/1 1',\n", + " 'place_id': 'EitNYXJpYWhpbGZlciBTdHIuIDQ3LzEgMSwgMTA2MCBXaWVuLCBBdXN0cmlhIh8aHQoWChQKEgk7TMYCjwdtRxEAmgsgWkEEBBIDMSAx',\n", + " 'post_code': '1060',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Mariahilfer Straße',\n", + " 'street_name_short': 'Mariahilfer Str.',\n", + " 'street_number': '47',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.alpbach.org'},\n", + " {'address': 'Place Victor Horta 40, Saint-Gilles, Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@equineteurope.org',\n", + " 'id': 20333,\n", + " 'link': 'https://philea.eu/members/european-network-of-equality-bodies/',\n", + " 'name': 'European Network of Equality Bodies',\n", + " 'position': {'address': 'Place Victor Horta 40, Saint-Gilles, Belgium',\n", + " 'city': 'Saint-Gilles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8361342,\n", + " 'lng': 4.3334527,\n", + " 'name': 'Pl. Victor Horta 40',\n", + " 'place_id': 'ChIJpSVAGG3Ew0cRx_izmCdwvpE',\n", + " 'post_code': '1060',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Place Victor Horta',\n", + " 'street_name_short': 'Pl. Victor Horta',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.equineteurope.org/'},\n", + " {'address': '48th Street, New York, NY, USA',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 20331,\n", + " 'link': 'https://philea.eu/members/the-plastic-solutions-fund/',\n", + " 'name': 'The Plastic Solutions Fund',\n", + " 'position': {'address': '48th Street, New York, NY, USA',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.7484533,\n", + " 'lng': -73.91574659999999,\n", + " 'name': '48th Street',\n", + " 'place_id': 'Ehg0OHRoIFN0LCBRdWVlbnMsIE5ZLCBVU0EiLiosChQKEgl78fjtHl_CiRHeaMoLqjVDDBIUChIJOwg_06VPwokRYv534QaPC8g',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': '48th Street',\n", + " 'street_name_short': '48th St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://plasticsolution.org'},\n", + " {'address': 'Park Stara Trešnjevka 4, Zagreb, Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@zhzd.hr',\n", + " 'id': 20330,\n", + " 'link': 'https://philea.eu/members/croatia-for-children-foundation/',\n", + " 'name': 'Croatia for Children Foundation',\n", + " 'position': {'address': 'Park Stara Trešnjevka 4, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.7974746,\n", + " 'lng': 15.9496377,\n", + " 'name': 'Park Stara Trešnjevka 4',\n", + " 'place_id': 'ChIJBfeJYZXWZUcR8ZcqapkBkf0',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Park Stara Trešnjevka',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.zhzd.hr/'},\n", + " {'address': 'Ridlerstraße 55, Munich, Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@child-invest-foundation.org',\n", + " 'id': 20328,\n", + " 'link': 'https://philea.eu/members/childinvest-foundation/',\n", + " 'name': 'ChildInvest Foundation',\n", + " 'position': {'address': 'Ridlerstraße 55, Munich, Germany',\n", + " 'city': 'München',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.1339139,\n", + " 'lng': 11.5316548,\n", + " 'name': 'Ridlerstraße 55',\n", + " 'place_id': 'ChIJ4enG2aXYnUcRDxxsSdtiAlQ',\n", + " 'post_code': '80339',\n", + " 'state': 'Bayern',\n", + " 'state_short': 'BY',\n", + " 'street_name': 'Ridlerstraße',\n", + " 'street_number': '55',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.child-invest-foundation.org'},\n", + " {'address': 'Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, '\n", + " 'France',\n", + " 'country': 'France',\n", + " 'email': 'global-foundation@schneider-electric.com',\n", + " 'id': 20259,\n", + " 'link': 'https://philea.eu/members/schneider-electric-foundation/',\n", + " 'name': 'Schneider Electric Foundation',\n", + " 'position': {'address': 'Schneider Electric, Hive, Rue Joseph Monier, '\n", + " 'Rueil-Malmaison, France',\n", + " 'city': 'Rueil-Malmaison',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.89122709999999,\n", + " 'lng': 2.1722213,\n", + " 'name': 'Schneider Electric',\n", + " 'place_id': 'ChIJHdYfInJj5kcRuX4C4i6Ddss',\n", + " 'post_code': '92500',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Joseph Monier',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.schneider-electric.com/en/about-us/sustainability/foundation/'},\n", + " {'address': 'GivingTuesday, 165 Court Street, New York, US',\n", + " 'country': 'United States',\n", + " 'email': 'info@givingtuesday.org',\n", + " 'id': 20258,\n", + " 'link': 'https://philea.eu/members/givingtuesday/',\n", + " 'name': 'GivingTuesday',\n", + " 'position': {'address': 'GivingTuesday, 165 Court Street, New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.6886093,\n", + " 'lng': -73.9926709,\n", + " 'place_id': 'ChIJ5eJDuE9awokR7gYe3G91m7U',\n", + " 'post_code': '11201',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Court Street',\n", + " 'street_name_short': 'Court St',\n", + " 'street_number': '165',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://givingtuesday.org'},\n", + " {'address': 'Learning Planet Institute, Rue Charles V, Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'team.communication@learningplanetinstitute.org',\n", + " 'id': 20257,\n", + " 'link': 'https://philea.eu/members/learning-planet-institute/',\n", + " 'name': 'Learning Planet Institute',\n", + " 'position': {'address': 'Learning Planet Institute, Rue Charles V, Paris, '\n", + " 'France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.853082,\n", + " 'lng': 2.3628393,\n", + " 'name': 'Learning Planet Institute',\n", + " 'place_id': 'ChIJqa2L8_5x5kcRntOBJ0fhHgs',\n", + " 'post_code': '75004',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Charles V',\n", + " 'street_number': '8 bis',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.learningplanetinstitute.org/en/'},\n", + " {'address': 'ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@enarfoundation.eu',\n", + " 'id': 20255,\n", + " 'link': 'https://philea.eu/members/enar-foundation/',\n", + " 'name': 'ENAR Foundation',\n", + " 'position': {'address': 'ENAR Foundation, Avenue des Arts 3-4-5, Brussels, '\n", + " 'Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8485433,\n", + " 'lng': 4.3697963,\n", + " 'place_id': 'ChIJq6p6QH3Dw0cR0bgFO6FsPbQ',\n", + " 'post_code': '1210',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Avenue des Arts',\n", + " 'street_name_short': 'Av. des Arts',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://enarfoundation.eu'},\n", + " {'address': 'Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fffoundation.eu',\n", + " 'id': 20254,\n", + " 'link': 'https://philea.eu/members/fast-forward-foundation/',\n", + " 'name': 'Fast Forward Foundation',\n", + " 'position': {'address': 'Via Domenichino, 5, Milan, Metropolitan City of '\n", + " 'Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4734579,\n", + " 'lng': 9.1502269,\n", + " 'name': 'Via Domenichino, 5',\n", + " 'place_id': 'ChIJ5-LDyXHBhkcRWyJ4Vv0Labk',\n", + " 'post_code': '20149',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Domenichino',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fffoundation.eu/'},\n", + " {'address': 'Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@trygfonden.dk',\n", + " 'id': 20007,\n", + " 'link': 'https://philea.eu/members/trygfonden/',\n", + " 'name': 'TrygFonden',\n", + " 'position': {'address': 'Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. '\n", + " 'Lyngby Denmark',\n", + " 'city': 'Kongens Lyngby',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7751248,\n", + " 'lng': 12.4944702,\n", + " 'place_id': 'EjhMeW5nYnkgSG92ZWRnYWRlIDQsIDIuIFNhbCwgMjgwMCBLb25nZW5zIEx5bmdieSwgRGVubWFyayIiGiAKFgoUChIJF06CLkJOUkYR3k7-qC9tb_oSBjIuIFNhbA',\n", + " 'post_code': '2800',\n", + " 'street_name': 'Lyngby Hovedgade',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.trygfonden.dk'},\n", + " {'address': 'Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG '\n", + " 'Dordrecht Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'postbus@dioraphte.nl',\n", + " 'id': 20006,\n", + " 'link': 'https://philea.eu/members/dioraphte-foundation/',\n", + " 'name': 'Dioraphte Foundation',\n", + " 'position': {'address': 'Dioraphte Foundation Kuipershaven 169 PO Box 255 - '\n", + " '3300 AG Dordrecht Netherlands',\n", + " 'city': 'Dordrecht',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 51.81749250000001,\n", + " 'lng': 4.666106399999999,\n", + " 'place_id': 'ChIJkU_mmswuxEcRMxnRKINOMzk',\n", + " 'post_code': '3311 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Kuipershaven',\n", + " 'street_number': '169',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dioraphte.nl/'},\n", + " {'address': 'Lautrupsgade 7, 2100 København, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@leo-foundation.org',\n", + " 'id': 20005,\n", + " 'link': 'https://philea.eu/members/leo-foundation/',\n", + " 'name': 'LEO Foundation',\n", + " 'position': False,\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://leo-foundation.org'},\n", + " {'address': 'Helvetas Swiss Intercooperation Weinbergstr. 22a 8021 Zurich '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@helvetas.org',\n", + " 'id': 20004,\n", + " 'link': 'https://philea.eu/members/helvetas-swiss-intercooperation/',\n", + " 'name': 'Helvetas Swiss Intercooperation',\n", + " 'position': {'address': 'Helvetas Swiss Intercooperation, Weinbergstrasse '\n", + " '22a, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3786889,\n", + " 'lng': 8.544779000000002,\n", + " 'name': 'Helvetas Swiss Intercooperation (Hauptsitz)',\n", + " 'place_id': 'ChIJr5nzgaegmkcRFBVK87C2GJ8',\n", + " 'post_code': '8021',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Weinbergstrasse',\n", + " 'street_number': '22a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.helvetas.org/'},\n", + " {'address': 'Fondation Bernheim rue des Bouchers, 53 1000 Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@fondationbernheim.be',\n", + " 'id': 20003,\n", + " 'link': 'https://philea.eu/members/fondation-bernheim/',\n", + " 'name': 'Fondation Bernheim',\n", + " 'position': {'address': 'Fondation Bernheim, Rue des Bouchers 53, 1000 '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8476462,\n", + " 'lng': 4.3551247,\n", + " 'name': 'Fondation Bernheim',\n", + " 'place_id': 'ChIJ0fWLfn_Ew0cRyW5kghihGo4',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue des Bouchers',\n", + " 'street_number': '53',\n", + " 'zoom': 20},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationbernheim.be'},\n", + " {'address': 'Built by Nature Singel 542 1017AZ Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 20001,\n", + " 'link': 'https://philea.eu/members/built-by-nature/',\n", + " 'name': 'Built by Nature',\n", + " 'position': {'address': 'Built by Nature, Singel 542, 1017 AZ Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3665859,\n", + " 'lng': 4.8921853,\n", + " 'name': 'Built by Nature',\n", + " 'place_id': 'ChIJoy0K398JxkcR4vQ7fDg_usU',\n", + " 'post_code': '1017 AZ',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Singel',\n", + " 'street_number': '542',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://builtbn.org/'},\n", + " {'address': '32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': '',\n", + " 'id': 19999,\n", + " 'link': 'https://philea.eu/members/andre-losch-fondation/',\n", + " 'name': 'André Losch Fondation',\n", + " 'position': {'address': '32/34 Bd Grande-Duchesse Charlotte, 1330 Ville '\n", + " 'Haute Luxembourg',\n", + " 'city': 'Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.6119323,\n", + " 'lng': 6.118839499999999,\n", + " 'name': '32/34 Bd Grande-Duchesse Charlotte',\n", + " 'place_id': 'ChIJq5jGyNROlUcRDUrKS2jaj94',\n", + " 'post_code': '1330',\n", + " 'state': 'Luxembourg',\n", + " 'street_name': 'Boulevard Grande-Duchesse Charlotte',\n", + " 'street_name_short': 'Bd Grande-Duchesse Charlotte',\n", + " 'street_number': '32/34',\n", + " 'zoom': 13},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.loschfondation.lu/domaines-intervention/recherche-scientifique/'},\n", + " {'address': '2 Rond-Point Emile Dewoitine, 31700 Blagnac, France',\n", + " 'country': 'France',\n", + " 'email': '',\n", + " 'id': 19998,\n", + " 'link': 'https://philea.eu/members/airbus-foundation/',\n", + " 'name': 'Airbus Foundation',\n", + " 'position': {'address': '2 Rond-Point Emile Dewoitine, 31700 Blagnac, France',\n", + " 'city': 'Blagnac',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 43.621905,\n", + " 'lng': 1.3854504,\n", + " 'name': '2 Rdpt Emile Dewoitine',\n", + " 'place_id': 'ChIJSR5B1be6rhIRYg-1AuSxoLc',\n", + " 'post_code': '31700',\n", + " 'state': 'Occitanie',\n", + " 'street_name': 'Rond-Point Emile Dewoitine',\n", + " 'street_name_short': 'Rdpt Emile Dewoitine',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.airbus.com/en/sustainability/airbus-foundation'},\n", + " {'address': 'Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, '\n", + " 'VA United States',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 19431,\n", + " 'link': 'https://philea.eu/members/ashoka/',\n", + " 'name': 'Ashoka',\n", + " 'position': {'address': 'Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 '\n", + " 'Arlington, VA United States',\n", + " 'city': 'Arlington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.8910142,\n", + " 'lng': -77.0860842,\n", + " 'place_id': 'EjIyMjAwIFdpbHNvbiBCbHZkIDEwMiAzMTMsIEFybGluZ3RvbiwgVkEgMjIyMDEsIFVTQSIjGiEKFgoUChIJB2wlOAy3t4kRtpoV6mrgiecSBzEwMiAzMTM',\n", + " 'post_code': '22201',\n", + " 'state': 'Virginia',\n", + " 'state_short': 'VA',\n", + " 'street_name': 'Wilson Boulevard',\n", + " 'street_name_short': 'Wilson Blvd',\n", + " 'street_number': '2200',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ashoka.org'},\n", + " {'address': 'Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 '\n", + " '95977 Roissy France',\n", + " 'country': '',\n", + " 'email': 'fondation@raja.fr',\n", + " 'id': 19430,\n", + " 'link': 'https://philea.eu/members/fondation-raja-daniele-marcovici/',\n", + " 'name': 'Fondation RAJA-Danièle Marcovici',\n", + " 'position': {'address': 'Fondation RAJA-Danièle Marcovici 16 Rue de l’étang '\n", + " 'Paris Nord 2 95977 Roissy France',\n", + " 'city': 'Roissy-en-France',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 49.00363,\n", + " 'lng': 2.516978,\n", + " 'place_id': 'ChIJA3Nv1oQV5kcRrYuF0xf2gzU',\n", + " 'post_code': '95700',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondation-raja-marcovici.com/accueil.html'},\n", + " {'address': 'Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany',\n", + " 'country': '',\n", + " 'email': 'kontakt@schoepflin-stiftung.de',\n", + " 'id': 19429,\n", + " 'link': 'https://philea.eu/members/schopflin-stiftung/',\n", + " 'name': 'Schöpflin Stiftung',\n", + " 'position': {'address': 'Schoepflin Stiftung Industriestraße 2 D-79541 '\n", + " 'Lörrach Germany',\n", + " 'city': 'Lörrach',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 47.6352322,\n", + " 'lng': 7.6800016,\n", + " 'place_id': 'ChIJId3VtESwkUcR8DfHFU8WNUg',\n", + " 'post_code': '79541',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Industriestraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.schoepflin-stiftung.de/'},\n", + " {'address': 'Quäker-Hilfe Stiftung Rosenstraße 2 32257 Bünde Germany',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 19428,\n", + " 'link': 'https://philea.eu/members/quaker-hilfe-stiftung/',\n", + " 'name': 'Quäker-Hilfe Stiftung',\n", + " 'position': {'address': 'Quäker-Hilfe Stiftung, Rosenstraße 2, 32257 Bünde, '\n", + " 'Germany',\n", + " 'city': 'Bünde',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.2082519,\n", + " 'lng': 8.568406800000002,\n", + " 'name': 'Quäker-Hilfe Stiftung',\n", + " 'place_id': 'ChIJ31AA28JRqEcRjq81O0GBmXo',\n", + " 'post_code': '32257',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Rosenstraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.quaeker-stiftung.de'},\n", + " {'address': 'Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein',\n", + " 'country': '',\n", + " 'email': 'contact@interogofoundation.com',\n", + " 'id': 19427,\n", + " 'link': 'https://philea.eu/members/interogo-foundation/',\n", + " 'name': 'Interogo Foundation',\n", + " 'position': {'address': 'Interogo Foundation Kirchstrasse 79 9490 Vaduz '\n", + " 'Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.1364154,\n", + " 'lng': 9.5137852,\n", + " 'place_id': 'ChIJeUmgUGExm0cR0NhlTwn4z_o',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Kirchstrasse',\n", + " 'street_number': '79',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.interogofoundation.com/'},\n", + " {'address': 'Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari '\n", + " 'Italy',\n", + " 'country': '',\n", + " 'email': 'fondazione@fondazionedisardegna.it',\n", + " 'id': 19426,\n", + " 'link': 'https://philea.eu/members/fondazione-di-sardegna-2/',\n", + " 'name': 'Fondazione di Sardegna',\n", + " 'position': {'address': 'Fondazione Banco di Sardegna Via Carlo Alberto 7 '\n", + " '07100 Sassari Italy',\n", + " 'city': 'Sassari',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 40.7246173,\n", + " 'lng': 8.563093799999999,\n", + " 'place_id': 'ChIJGfsi5fxj3BIRPIs5rQ61EwY',\n", + " 'post_code': '07100',\n", + " 'state': 'Sardegna',\n", + " 'state_short': 'SS',\n", + " 'street_name': 'Via Carlo Alberto',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionedisardegna.it/'},\n", + " {'address': 'Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 '\n", + " 'Geneva 3 Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 19425,\n", + " 'link': 'https://philea.eu/members/fondation-salvia/',\n", + " 'name': 'Fondation Salvia',\n", + " 'position': {'address': 'Fondation Salvia 1, Place de St. Gervais case '\n", + " 'postale 5017 1211 Geneva 3 Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2057902,\n", + " 'lng': 6.143098999999999,\n", + " 'place_id': 'ChIJJfuPPChljEcRiDAUJoXWCho',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Saint-Gervais',\n", + " 'street_name_short': 'Pl. de Saint-Gervais',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'The Partnering Initiative 21B Park End Steet OX1 1HU Oxford '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@tpiglobal.org',\n", + " 'id': 19064,\n", + " 'link': 'https://philea.eu/members/the-partnering-initiative/',\n", + " 'name': 'The Partnering Initiative',\n", + " 'position': {'address': 'The Partnering Initiative, 21B Park End Street, '\n", + " 'Oxford OX1 1HU, United Kingdom',\n", + " 'city': 'Oxford',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.75251379999999,\n", + " 'lng': -1.2685284,\n", + " 'name': 'The Partnering Initiative',\n", + " 'place_id': 'ChIJ95fJfE7BdkgR1A3osMbUerY',\n", + " 'post_code': 'OX1 1HU',\n", + " 'state': 'England',\n", + " 'street_name': 'Park End Street',\n", + " 'street_name_short': 'Park End St',\n", + " 'street_number': '21B',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://tpiglobal.org/'},\n", + " {'address': 'Lloyd’s Register Foundation 71 Fenchurch Street EC3M 4BS London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 19063,\n", + " 'link': 'https://philea.eu/members/lloyds-register-foundation/',\n", + " 'name': 'Lloyd’s Register Foundation',\n", + " 'position': {'address': \"Lloyd's Register Foundation, 71 Fenchurch Street, \"\n", + " 'London EC3M 4BS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51243349999999,\n", + " 'lng': -0.07900689999999998,\n", + " 'name': \"Lloyd's Register Foundation\",\n", + " 'place_id': 'ChIJnepqXKgDdkgRqbSHjgmq5PE',\n", + " 'post_code': 'EC3M 4BS',\n", + " 'state': 'England',\n", + " 'street_name': 'Fenchurch Street',\n", + " 'street_name_short': 'Fenchurch St',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.lrfoundation.org.uk/'},\n", + " {'address': 'Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels '\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'id': 19062,\n", + " 'link': 'https://philea.eu/members/africa-europe-foundation/',\n", + " 'name': 'Africa-Europe Foundation',\n", + " 'position': {'address': 'Africa-Europe Foundation Square de Meeûs 5-6 1000 '\n", + " 'Brussels Belgium',\n", + " 'city': 'Brussels',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8476424,\n", + " 'lng': 4.3571696,\n", + " 'place_id': 'ChIJZ2jHc-2kw0cRpwJzeGY6i8E',\n", + " 'state': 'Brussels',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.africaeuropefoundation.org/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 '\n", + " 'Fologno Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecarifol.it',\n", + " 'id': 19061,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-foligno/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Foligno',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Foligno Corso '\n", + " 'Cavour 36 06034 Fologno Italy',\n", + " 'city': 'Foligno',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.9547732,\n", + " 'lng': 12.7051368,\n", + " 'place_id': 'ChIJT8G4q9uFLhMRdNVFwIORbzU',\n", + " 'post_code': '06034',\n", + " 'state': 'Umbria',\n", + " 'state_short': 'PG',\n", + " 'street_name': 'Corso Camillo Benso Conte di Cavour',\n", + " 'street_number': '36',\n", + " 'zoom': 8},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionecarifol.it/'},\n", + " {'address': 'Aids Fonds Condensatorweg 54 1014 AX Amsterdam Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 18539,\n", + " 'link': 'https://philea.eu/members/aidsfonds/',\n", + " 'name': 'Aidsfonds',\n", + " 'position': {'address': 'Aidsfonds - Soa Aids Nederland, Condensatorweg 54, '\n", + " '1014 AX Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.38975629999999,\n", + " 'lng': 4.8458377,\n", + " 'name': 'Aidsfonds - Soa Aids Nederland',\n", + " 'place_id': 'ChIJzWIc8MIJxkcRp4cGS8EN6_U',\n", + " 'post_code': '1014 AX',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Condensatorweg',\n", + " 'street_number': '54',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://aidsfonds.org/'},\n", + " {'address': 'The Center for Effective Philanthropy 675 Massachusetts Avenue, '\n", + " 'Floor 7 MA 02139 Cambridge United States',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 18478,\n", + " 'link': 'https://philea.eu/members/the-center-for-effective-philanthropy/',\n", + " 'name': 'The Center for Effective Philanthropy',\n", + " 'position': {'address': 'The Center for Effective Philanthropy 675 '\n", + " 'Massachusetts Avenue, Floor 7 MA 02139 Cambridge '\n", + " 'United States',\n", + " 'city': 'Cambridge',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 42.3658993,\n", + " 'lng': -71.1039725,\n", + " 'place_id': 'ChIJfXD4ZlF344kRrJ7D5X296-A',\n", + " 'post_code': '02139',\n", + " 'state': 'Massachusetts',\n", + " 'state_short': 'MA',\n", + " 'street_name': 'Massachusetts Avenue',\n", + " 'street_name_short': 'Massachusetts Ave',\n", + " 'street_number': '675',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.effectivephilanthropy.org'},\n", + " {'address': 'AMREF via Alberico II n. 4 00193 Roma Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 18475,\n", + " 'link': 'https://philea.eu/members/amref-health-africa-ets/',\n", + " 'name': 'Amref Health Africa ETS',\n", + " 'position': {'address': 'AMREF via Alberico II n. 4 00193 Roma Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.9053109,\n", + " 'lng': 12.4617487,\n", + " 'place_id': 'ChIJ1YGl4l1gLxMR04XZGI4kge4',\n", + " 'post_code': '00193',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via Alberico II',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.amref.it'},\n", + " {'address': 'Tobaksvejen 10 DK-2860 Søborg Denmark',\n", + " 'country': '',\n", + " 'email': 'info@villumfonden.dk',\n", + " 'id': 18474,\n", + " 'link': 'https://philea.eu/members/villum-foundation/',\n", + " 'name': 'Villum Foundation',\n", + " 'position': {'address': 'Tobaksvejen 10 DK-2860 Søborg Denmark',\n", + " 'city': 'Søborg',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7406342,\n", + " 'lng': 12.4804293,\n", + " 'place_id': 'ChIJ-ynjlN1RUkYRMLr71Wn-j4Q',\n", + " 'post_code': '2860',\n", + " 'street_name': 'Tobaksvejen',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'Lautrupvang 10 2750 Ballerup Denmark',\n", + " 'country': '',\n", + " 'email': 'Direktion@vellivforeningen.dk',\n", + " 'id': 18472,\n", + " 'link': 'https://philea.eu/members/velliv-foreningen/',\n", + " 'name': 'Velliv Foreningen',\n", + " 'position': {'address': 'Lautrupvang 10 2750 Ballerup Denmark',\n", + " 'city': 'Ballerup',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7289135,\n", + " 'lng': 12.3927329,\n", + " 'place_id': 'ChIJF7wP_21QUkYRFS6MXAtNbKo',\n", + " 'post_code': '2750',\n", + " 'street_name': 'Lautrupvang',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.vellivforeningen.dk/for-ansoegere/'},\n", + " {'address': \"26 St James's Square SW1Y 4JH London United Kingdom\",\n", + " 'country': '',\n", + " 'email': 'info@nilofoundation.org',\n", + " 'id': 18471,\n", + " 'link': 'https://philea.eu/members/nilo-foundation/',\n", + " 'name': 'NILO Foundation',\n", + " 'position': {'address': \"26 St James's Square SW1Y 4JH London United Kingdom\",\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.50669389999999,\n", + " 'lng': -0.1344662,\n", + " 'place_id': 'ChIJXUDS0NAEdkgRPVdkJHnC_ik',\n", + " 'post_code': 'SW1Y 4JH',\n", + " 'state': 'England',\n", + " 'street_name': \"Saint James's Square\",\n", + " 'street_name_short': \"St James's Square\",\n", + " 'street_number': '26',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nilofoundation.org'},\n", + " {'address': 'Omidyar Network 1991 Broadway Street, Suite 200 CA 94063 Redwood '\n", + " 'City United States',\n", + " 'country': 'United States',\n", + " 'email': 'hello@luminategroup.com',\n", + " 'id': 18435,\n", + " 'link': 'https://philea.eu/members/luminate/',\n", + " 'name': 'Luminate',\n", + " 'position': {'address': 'Omidyar Network, 1991 Broadway # 200, Redwood City, '\n", + " 'CA 94063, United States',\n", + " 'city': 'Redwood City',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 37.4863992,\n", + " 'lng': -122.2259237,\n", + " 'name': 'Omidyar Network',\n", + " 'place_id': 'ChIJB25ooKyjj4ARhSlz72Tfib8',\n", + " 'post_code': '94063',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'street_name': 'Broadway',\n", + " 'street_number': '1991',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://luminategroup.com/about'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 17761,\n", + " 'link': 'https://philea.eu/members/swiss-philanthropy-foundation/',\n", + " 'name': 'Swiss Philanthropy Foundation',\n", + " 'position': {'address': 'Swiss Philanthropy Foundation Mael Steiner c/o wise '\n", + " '- philanthropy advisers P.O. BOX 2124 1211 Geneva 1 '\n", + " 'Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2084926,\n", + " 'lng': 6.1428645,\n", + " 'place_id': 'ChIJI5dq4ddkjEcR_z3_-mSdQaA',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Cornavin',\n", + " 'street_name_short': 'Pl. de Cornavin',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.swissphilanthropy.ch/en/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 17760,\n", + " 'link': 'https://philea.eu/members/stiftelsen-brita-maria-renlunds-minne-sr/',\n", + " 'name': 'Stiftelsen Brita Maria Renlunds minne sr',\n", + " 'position': {'address': 'Stiftelsen Brita Maria Renlunds minne sr Annegatan '\n", + " '12, 4 vån 00120 Helsinki Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.16463510000001,\n", + " 'lng': 24.9398198,\n", + " 'place_id': 'EixBbm5hbmthdHUgMTIgNCB2w6VuLCAwMDEyMCBIZWxzaW5raSwgRmlubGFuZCIiGiAKFgoUChIJTWwcLMoLkkYRkL2E5qrN52cSBjQgdsOlbg',\n", + " 'post_code': '00120',\n", + " 'state': 'Uusimaa',\n", + " 'street_name': 'Annankatu',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bmr.fi'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 17759,\n", + " 'link': 'https://philea.eu/members/bolton-hope-foundation/',\n", + " 'name': 'Be for Education Foundation',\n", + " 'position': {'address': 'Bolton Hope Foundation Via G.B. Pirelli 19 20124 '\n", + " 'Milan Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.48368900000001,\n", + " 'lng': 9.199039299999999,\n", + " 'place_id': 'ChIJrY4HrM_GhkcRUe1V3QZbhUA',\n", + " 'post_code': '20124',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Giovanni Battista Pirelli',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.beforeducation.org'},\n", + " {'address': 'Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 '\n", + " 'Vilnius Lithuania',\n", + " 'country': 'Lithuania',\n", + " 'email': 'info@mjjfondas.lt',\n", + " 'id': 17758,\n", + " 'link': 'https://philea.eu/members/marius-jakulis-jason-foundation/',\n", + " 'name': 'Marius Jakulis Jason Foundation',\n", + " 'position': {'address': 'Marius Jakulis Jason Foundation Liepyno str. 25A 5a '\n", + " 'LT-08108 Vilnius Lithuania',\n", + " 'city': 'Vilnius',\n", + " 'country': 'Lithuania',\n", + " 'country_short': 'LT',\n", + " 'lat': 54.6991928,\n", + " 'lng': 25.2524047,\n", + " 'place_id': 'EitMaWVweW5vIGcuIDI1YS01YSwgMDgxMDggVmlsbml1cywgTGl0aHVhbmlhIh4aHAoWChQKEgmRXrIX-5PdRhFrciarVovwwxICNWE',\n", + " 'post_code': '08108',\n", + " 'state': 'Vilniaus apskritis',\n", + " 'state_short': 'Vilniaus apskr.',\n", + " 'street_name': 'Liepyno gatvė',\n", + " 'street_name_short': 'Liepyno g.',\n", + " 'street_number': '25a',\n", + " 'zoom': 19},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://mjjfondas.lt/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': 'info@moleskinefoundation.org',\n", + " 'id': 17756,\n", + " 'link': 'https://philea.eu/members/moleskine-foundation/',\n", + " 'name': 'Moleskine Foundation',\n", + " 'position': {'address': 'Moleskine Foundation Onlus, Via Bergognone, 34, '\n", + " '20144 Milan, Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4524972,\n", + " 'lng': 9.164271500000002,\n", + " 'name': 'Moleskine Foundation Onlus',\n", + " 'place_id': 'ChIJJ8q9z9rDhkcRj84mpcEyto8',\n", + " 'post_code': '20144',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Bergognone',\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://moleskinefoundation.org/'},\n", + " {'address': 'Stiftung Mercator Schweiz Gartenstrasse 33 8027 Zürich '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'id': 16610,\n", + " 'link': 'https://philea.eu/members/stiftung-mercator-schweiz/',\n", + " 'name': 'Stiftung Mercator Schweiz',\n", + " 'position': {'address': 'Stiftung Mercator Schweiz, Gartenstrasse, Zürich, '\n", + " 'Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3678088,\n", + " 'lng': 8.532472,\n", + " 'name': 'Stiftung Mercator Schweiz',\n", + " 'place_id': 'ChIJZfulegIKkEcRo4ONX65lX3o',\n", + " 'post_code': '8002',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Gartenstrasse',\n", + " 'street_number': '33',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.stiftung-mercator.ch'},\n", + " {'address': 'The END Fund 495 Green Lanes N13 4BS London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@end.org',\n", + " 'id': 13608,\n", + " 'link': 'https://philea.eu/members/the-end-fund/',\n", + " 'name': 'The END Fund',\n", + " 'position': {'address': '495 Green Lanes, London N13 4BS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.6230729,\n", + " 'lng': -0.1051977,\n", + " 'name': '495 Green Lanes',\n", + " 'place_id': 'ChIJ5YfndjcZdkgRXTek7Bo7hIg',\n", + " 'post_code': 'N13 4BS',\n", + " 'state': 'England',\n", + " 'street_name': 'Green Lanes',\n", + " 'street_number': '495',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.end.org/'},\n", + " {'address': 'Anglo American Foundation 17 Charterhouse Street EC1N 6RA London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 13606,\n", + " 'link': 'https://philea.eu/members/anglo-american-foundation/',\n", + " 'name': 'Anglo American Foundation',\n", + " 'position': {'address': 'Anglo American PLC, 17 Charterhouse Street, London '\n", + " 'EC1N 6RA, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5184283,\n", + " 'lng': -0.1063213,\n", + " 'name': 'Anglo American PLC',\n", + " 'place_id': 'ChIJ7ycpArgbdkgRg_p5S-TCD0g',\n", + " 'post_code': 'EC1N 6RA',\n", + " 'state': 'England',\n", + " 'street_name': 'Charterhouse Street',\n", + " 'street_name_short': 'Charterhouse St',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.angloamericangroupfoundation.org/'},\n", + " {'address': 'The Fidelity UK Foundation Beech Gate, Millfield Lane Lower '\n", + " 'Kingswood KT20 6RP Tadworth, Surrey United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 12992,\n", + " 'link': 'https://philea.eu/members/fidelity-uk-foundation/',\n", + " 'name': 'Fidelity UK Foundation',\n", + " 'position': {'address': 'Millfield Lane, Lower Kingswood, Tadworth, Surrey '\n", + " 'KT20 6RP, United Kingdom',\n", + " 'city': 'Tadworth',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.2784529,\n", + " 'lng': -0.2068448,\n", + " 'name': 'Millfield Lane',\n", + " 'place_id': 'EiNNaWxsZmllbGQgTG4sIFRhZHdvcnRoIEtUMjAgNlJQLCBVSyIuKiwKFAoSCTNXWI9B43VIESEh-XZ45Bx3EhQKEgn58JtuQuN1SBGMsxM1jCzF9g',\n", + " 'post_code': 'KT20 6RP',\n", + " 'state': 'England',\n", + " 'street_name': 'Millfield Lane',\n", + " 'street_name_short': 'Millfield Ln',\n", + " 'zoom': 9},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://filfoundations.fidelityinternational.com/'},\n", + " {'address': 'Central European University Quellenstraße 51 1100 Vienna Austria',\n", + " 'country': 'Austria',\n", + " 'email': '',\n", + " 'id': 12935,\n", + " 'link': 'https://philea.eu/members/central-european-university/',\n", + " 'name': 'Central European University',\n", + " 'position': {'address': 'Central European University, Quellenstraße 51, 1100 '\n", + " 'Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.17394590000001,\n", + " 'lng': 16.3880969,\n", + " 'name': 'Central European University',\n", + " 'place_id': 'ChIJWXRULX-pbUcRGlulmPW2N1A',\n", + " 'post_code': '1100',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Quellenstraße',\n", + " 'street_number': '51',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.ceu.edu'},\n", + " {'address': '120 West 45th Street 25th Floor 10027 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@hfg.org',\n", + " 'id': 11209,\n", + " 'link': 'https://philea.eu/members/the-harry-frank-guggenheim-foundation/',\n", + " 'name': 'The Harry Frank Guggenheim Foundation',\n", + " 'position': {'address': '120 West 45th Street 25th Floor 10027 New York '\n", + " 'United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.75704,\n", + " 'lng': -73.9838798,\n", + " 'place_id': 'EjExMjAgVyA0NXRoIFN0IDI1dGggRmxvb3IsIE5ldyBZb3JrLCBOWSAxMDAzNiwgVVNBIiYaJAoWChQKEgkBOH9tVVjCiRHTjQ7ex4woThIKMjV0aCBGbG9vcg',\n", + " 'post_code': '10036',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'West 45th Street',\n", + " 'street_name_short': 'W 45th St',\n", + " 'street_number': '120',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hfg.org/'},\n", + " {'address': 'Moncalvo 1 10131 Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionepaideia.it',\n", + " 'id': 11208,\n", + " 'link': 'https://philea.eu/members/fondazione-paideia/',\n", + " 'name': 'Fondazione Paideia',\n", + " 'position': {'address': 'Via Moncalvo, 1, 10131 Turin, Metropolitan City of '\n", + " 'Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0616438,\n", + " 'lng': 7.702081499999998,\n", + " 'name': 'Via Moncalvo, 1',\n", + " 'place_id': 'ChIJpSp9MZlyiEcRS9_Guuacc6w',\n", + " 'post_code': '10131',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via Moncalvo',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionepaideia.it'},\n", + " {'address': 'Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9508,\n", + " 'link': 'https://philea.eu/members/association-of-foundations-in-the-netherlands-fin/',\n", + " 'name': 'Association of Foundations in the Netherlands (FIN)',\n", + " 'position': {'address': 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.132633,\n", + " 'lng': 5.291265999999999,\n", + " 'name': 'Netherlands',\n", + " 'place_id': 'ChIJu-SH28MJxkcRnwq9_851obM',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://fondseninnederland.nl/'},\n", + " {'address': 'Denmark',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9496,\n", + " 'link': 'https://philea.eu/members/knowledge-centre-for-danish-foundations/',\n", + " 'name': 'Knowledge Centre for Danish Foundations',\n", + " 'position': {'address': 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 56.26392,\n", + " 'lng': 9.501785,\n", + " 'name': 'Denmark',\n", + " 'place_id': 'ChIJ-1-U7rYnS0YRzZLgw9BDh1I',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': ''},\n", + " {'address': ' Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 '\n", + " 'Wien',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9490,\n", + " 'link': 'https://philea.eu/members/austrian-foundations-association-verband-fur-gemeinnutziges-stiften/',\n", + " 'name': 'Austrian Foundations Association (Verband für Gemeinnütziges '\n", + " 'Stiften)',\n", + " 'position': {'address': ' Verband für gemeinnütziges Stiften Schottenring '\n", + " '16/3. OG, 1010 Wien',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.2151846,\n", + " 'lng': 16.366538,\n", + " 'place_id': 'ChIJWUNmvrwHbUcRwiwzHXndics',\n", + " 'post_code': '1010',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Schottenring',\n", + " 'street_number': '16',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.gemeinnuetzig-stiften.at/'},\n", + " {'address': 'Croatia',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9486,\n", + " 'link': 'https://philea.eu/members/croatian-foundation-forum/',\n", + " 'name': 'Croatian Foundation Forum',\n", + " 'position': {'address': 'Croatia',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.1,\n", + " 'lng': 15.2,\n", + " 'name': 'Croatia',\n", + " 'place_id': 'ChIJ7ZXdCghBNBMRfxtm4STA86A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': ''},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9482,\n", + " 'link': 'https://philea.eu/members/association-of-norwegian-foundations/',\n", + " 'name': 'Association of Norwegian Foundations',\n", + " 'position': {'address': 'Norway',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 60.47202399999999,\n", + " 'lng': 8.468945999999999,\n", + " 'name': 'Norway',\n", + " 'place_id': 'ChIJv-VNj0VoEkYRK9BkuJ07sKE',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://stiftelsesforeningen.no/medlemmer/stiftelser'},\n", + " {'address': 'Baštová 5, 811 03, Bratislava, Slovak Republic ',\n", + " 'country': 'Slovakia',\n", + " 'email': '',\n", + " 'id': 9472,\n", + " 'link': 'https://philea.eu/members/center-for-philanthropy/',\n", + " 'name': 'Center for Philanthropy',\n", + " 'position': {'address': 'Baštová 5, 811 03 Bratislava, Slovakia',\n", + " 'country': 'Slovakia',\n", + " 'country_short': 'SK',\n", + " 'lat': 48.1447852,\n", + " 'lng': 17.1058538,\n", + " 'name': 'Baštová 5',\n", + " 'place_id': 'EihCYcWhdG92w6EgNSwgODExIDAzIEJyYXRpc2xhdmEsIFNsb3Zha2lhIlASTgo0CjIJhXAm71yJbEcRogLxSbysQtUaHgsQ7sHuoQEaFAoSCUVKC4NYiWxHEdk5ba82M8wGDBAFKhQKEgl5tSnpXIlsRxF_crYoQE8aZw',\n", + " 'post_code': '811 03',\n", + " 'state': 'Bratislavský kraj',\n", + " 'street_name': 'Baštová',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.cpf.sk/en/'},\n", + " {'address': 'Association for Community Relations Bd. 1 Decembrie 1918, nr.4, '\n", + " 'ap.7 400699 Cluj-Napoca Romania',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 9468,\n", + " 'link': 'https://philea.eu/members/association-for-community-relations-arc/',\n", + " 'name': 'Association for Community Relations (ARC)',\n", + " 'position': {'address': 'Association for Community Relations Bd. 1 Decembrie '\n", + " '1918, nr.4, ap.7 400699 Cluj-Napoca Romania',\n", + " 'city': 'Cluj-Napoca',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 46.7710854,\n", + " 'lng': 23.5756899,\n", + " 'place_id': 'Ej03LCBCdWxldmFyZHVsIDEgRGVjZW1icmllIDE5MTggNCwgQ2x1ai1OYXBvY2EgNDAwNjk5LCBSb21hbmlhIh0aGwoWChQKEgkDxlb5jw5JRxE-UimExciUhBIBNw',\n", + " 'post_code': '400699',\n", + " 'state': 'Județul Cluj',\n", + " 'state_short': 'CJ',\n", + " 'street_name': 'Bulevardul 1 Decembrie 1918',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.arcromania.ro'},\n", + " {'address': 'Zagoriy Foundation 6 Rylskyi Alley 02091 Kyiv Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'info@zagoriy.foundation',\n", + " 'id': 5375,\n", + " 'link': 'https://philea.eu/members/zagoriy-foundation/',\n", + " 'name': 'Zagoriy Foundation',\n", + " 'position': {'address': \"Zagoriy Foundation, Ryl's'kyi Lane, 6, Kyiv, \"\n", + " 'Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4545967,\n", + " 'lng': 30.51540429999999,\n", + " 'name': 'Zagoriy Foundation',\n", + " 'place_id': 'ChIJVVUVQ1vO1EAROz9Wbz5Kg6o',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv City',\n", + " 'street_name': \"Ryl's'kyi Lane\",\n", + " 'street_name_short': \"Ryl's'kyi Ln\",\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://zagoriy.foundation/'},\n", + " {'address': 'ZEIT-Stiftung Ebelin und Gerd Bucerius Feldbrunnenstraße 56 '\n", + " '20148 Hamburg Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'zeit-stiftung@zeit-stiftung.de',\n", + " 'id': 5357,\n", + " 'link': 'https://philea.eu/members/zeit-stiftung-ebelin-und-gerd-bucerius/',\n", + " 'name': 'ZEIT-Stiftung Ebelin und Gerd Bucerius',\n", + " 'position': {'address': 'ZEIT-Stiftung Ebelin und Gerd Bucerius, '\n", + " 'Feldbrunnenstraße 56, 20148 Hamburg, Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.56795,\n", + " 'lng': 9.99104,\n", + " 'name': 'ZEIT-Stiftung Ebelin und Gerd Bucerius',\n", + " 'place_id': 'ChIJk0XmyjqPsUcRfRK1jbRx6Bc',\n", + " 'post_code': '20148',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Feldbrunnenstraße',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.zeit-stiftung.de'},\n", + " {'address': 'Wellcome Trust 215 Euston Road NW1 2BE London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'contact@wellcome.ac.uk',\n", + " 'id': 5352,\n", + " 'link': 'https://philea.eu/members/wellcome-trust/',\n", + " 'name': 'Wellcome Trust',\n", + " 'position': {'address': 'Wellcome Trust, 215 Euston Road, London NW1 2BE, '\n", + " 'United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5255527,\n", + " 'lng': -0.1351949,\n", + " 'name': 'Wellcome Trust',\n", + " 'place_id': 'ChIJt_RE_iUbdkgRJUATGZFZC40',\n", + " 'post_code': 'NW1 2BE',\n", + " 'state': 'England',\n", + " 'street_name': 'Euston Road',\n", + " 'street_name_short': 'Euston Rd',\n", + " 'street_number': '215',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.wellcome.ac.uk'},\n", + " {'address': 'VolkswagenStiftung Kastanienallee 35 30519 Hannover Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@volkswagenstiftung.de',\n", + " 'id': 5350,\n", + " 'link': 'https://philea.eu/members/volkswagenstiftung/',\n", + " 'name': 'VolkswagenStiftung',\n", + " 'position': {'address': 'VolkswagenStiftung, Kastanienallee 35, 30519 '\n", + " 'Hannover, Germany',\n", + " 'city': 'Hannover',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.3325449,\n", + " 'lng': 9.7682695,\n", + " 'name': 'VolkswagenStiftung',\n", + " 'place_id': 'ChIJ48hYtucKsEcR2nkI49fN6hU',\n", + " 'post_code': '30519',\n", + " 'state': 'Niedersachsen',\n", + " 'state_short': 'NDS',\n", + " 'street_name': 'Kastanienallee',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.volkswagenstiftung.de'},\n", + " {'address': 'Vodafone Stiftung Deutschland Ferdinand-Braun-Platz 1 40549 '\n", + " 'Düsseldorf Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@vodafone-stiftung.de',\n", + " 'id': 5349,\n", + " 'link': 'https://philea.eu/members/vodafone-stiftung-deutschland/',\n", + " 'name': 'Vodafone Stiftung Deutschland',\n", + " 'position': {'address': 'Vodafone Office, Ferdinand-Braun-Platz, Düsseldorf, '\n", + " 'Germany',\n", + " 'city': 'Düsseldorf',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.2351599,\n", + " 'lng': 6.732056399999999,\n", + " 'name': 'Vodafone Office',\n", + " 'place_id': 'ChIJCyBxiOG1uEcRBQ2qhl38B1Y',\n", + " 'post_code': '40549',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Ferdinand-Braun-Platz',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vodafone-stiftung.de'},\n", + " {'address': 'The VELUX Foundations Tobaksvejen 10 2860 Søborg Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@veluxfoundations.dk',\n", + " 'id': 5346,\n", + " 'link': 'https://philea.eu/members/velux-foundations-the/',\n", + " 'name': 'VELUX Foundations, The',\n", + " 'position': {'address': 'THE VELUX FOUNDATIONS, Tobaksvejen 10, 2860 Søborg, '\n", + " 'Denmark',\n", + " 'city': 'Søborg',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.74046800000001,\n", + " 'lng': 12.480344,\n", + " 'name': 'THE VELUX FOUNDATIONS',\n", + " 'place_id': 'ChIJjZFSlN1RUkYRfCw0SHUZkhE',\n", + " 'post_code': '2860',\n", + " 'street_name': 'Tobaksvejen',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.veluxfoundations.dk'},\n", + " {'address': 'Vehbi Koç Vakfi Nakkastepe, Azizbey Sokak No.1, Kuzguncuk 34674 '\n", + " 'Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@vkv.org.tr',\n", + " 'id': 5345,\n", + " 'link': 'https://philea.eu/members/vehbi-koc-foundation/',\n", + " 'name': 'Vehbi Koç Foundation',\n", + " 'position': {'address': 'Kuzguncuk, Vehbi Koç Vakfı, Nakkaştepe, Aziz Bey '\n", + " 'Sokak No: 1, 34674 Üsküdar/İstanbul, Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0318529,\n", + " 'lng': 29.0384855,\n", + " 'name': 'Vehbi Koç Vakfı',\n", + " 'place_id': 'ChIJDySJjRq3yhQRQwAq8FxSSoA',\n", + " 'post_code': '34674',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Aziz Bey Sokak',\n", + " 'street_name_short': 'Aziz Bey Sk.',\n", + " 'street_number': 'No: 1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vkv.org.tr'},\n", + " {'address': 'Van Leer Group Foundation Lange Houtstraat 2 2511 CW Den Haag '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'mail@vanleergroup.org',\n", + " 'id': 5344,\n", + " 'link': 'https://philea.eu/members/van-leer-group-foundation/',\n", + " 'name': 'Van Leer Group Foundation',\n", + " 'position': {'address': 'Bernard van Leer Foundation, Lange Houtstraat 2, '\n", + " '2511 CW Den Haag, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0807884,\n", + " 'lng': 4.3156968,\n", + " 'name': 'Bernard van Leer Foundation',\n", + " 'place_id': 'ChIJ5WRAtDy3xUcRG3BgSnLCbdc',\n", + " 'post_code': '2511 CW',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Lange Houtstraat',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vanleergroupfoundation.nl'},\n", + " {'address': 'UniCredit Foundation Piazza Gae Aulenti, 3 – Tower A, 25th floor '\n", + " '20154 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@unicreditfoundation.org',\n", + " 'id': 5337,\n", + " 'link': 'https://philea.eu/members/unicredit-foundation/',\n", + " 'name': 'UniCredit Foundation',\n", + " 'position': {'address': 'UniCredit Foundation, Piazza Gae Aulenti, 3, Milan, '\n", + " 'Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4837646,\n", + " 'lng': 9.189772000000001,\n", + " 'name': 'UniCredit Foundation',\n", + " 'place_id': 'ChIJW2rauq3GhkcRFxc5GrT2yII',\n", + " 'post_code': '20124',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Piazza Gae Aulenti',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.unicreditfoundation.org'},\n", + " {'address': 'TrustAfrica Lot 4 Almadies Ngor Dakar Senegal',\n", + " 'country': 'Senegal',\n", + " 'email': 'info@trustafrica.org',\n", + " 'id': 5335,\n", + " 'link': 'https://philea.eu/members/trustafrica/',\n", + " 'name': 'TrustAfrica',\n", + " 'position': {'address': '4 Route des Almadies, Ngor, Dakar, Senegal',\n", + " 'city': 'Dakar',\n", + " 'country': 'Senegal',\n", + " 'country_short': 'SN',\n", + " 'lat': 14.7385274,\n", + " 'lng': -17.5131516,\n", + " 'name': '4 Rte des Almadies',\n", + " 'place_id': 'EiI0IFJ0ZSBkZXMgQWxtYWRpZXMsIERha2FyLCBTZW5lZ2FsIjASLgoUChIJ237NBsUSwQ4Ry2kdRtvYFHIQBCoUChIJ3fD3cNwSwQ4RhVXVpkjXcuM',\n", + " 'state': 'Dakar',\n", + " 'street_name': 'Route des Almadies',\n", + " 'street_name_short': 'Rte des Almadies',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.trustafrica.org'},\n", + " {'address': 'Tiina and Antti Herlin Foundation Kartanontie 1 00330 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'info@tahsaatio.fi',\n", + " 'id': 5330,\n", + " 'link': 'https://philea.eu/members/tiina-and-antti-herlin-foundation/',\n", + " 'name': 'Tiina and Antti Herlin Foundation',\n", + " 'position': {'address': 'Kartanontie 1, 00330 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1943706,\n", + " 'lng': 24.8812471,\n", + " 'name': 'Kartanontie 1',\n", + " 'place_id': 'ChIJKfo3xgMKkkYR0XpLC79q_c8',\n", + " 'post_code': '00330',\n", + " 'street_name': 'Kartanontie',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.tahsaatio.fi/en/'},\n", + " {'address': 'Thousand Currents 1330 Broadway Suite #301 94612 Oakland, CA '\n", + " 'United States',\n", + " 'country': 'United States',\n", + " 'email': 'rajiv@thousandcurrents.org',\n", + " 'id': 5329,\n", + " 'link': 'https://philea.eu/members/thousand-currents/',\n", + " 'name': 'Thousand Currents',\n", + " 'position': {'address': 'Oakland, CA, United States',\n", + " 'city': 'Oakland',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 37.8043514,\n", + " 'lng': -122.2711639,\n", + " 'name': 'Oakland',\n", + " 'place_id': 'ChIJA-2qKIt9hYARZ5N1NdUVtHE',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://thousandcurrents.org/'},\n", + " {'address': 'Third Sector Foundation of Turkey Bankalar Caddesi Nº2. Minerva '\n", + " 'Han Kat:5 Karaköy 34420 Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@tusev.org.tr',\n", + " 'id': 5328,\n", + " 'link': 'https://philea.eu/members/third-sector-foundation-of-turkey/',\n", + " 'name': 'Third Sector Foundation of Turkey (TUSEV)',\n", + " 'position': {'address': 'İstanbul, Turkey',\n", + " 'city': 'İstanbul',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0082376,\n", + " 'lng': 28.9783589,\n", + " 'name': 'İstanbul',\n", + " 'place_id': 'ChIJawhoAASnyhQR0LABvJj-zOE',\n", + " 'state': 'İstanbul',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.tusev.org.tr'},\n", + " {'address': 'The Nando and Elsa Peretti Foundation Allgemeines '\n", + " 'Treuunternehmen (ATU) Aeulestrasse 5 9490 Vaduz Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'peter.prast@atu.li',\n", + " 'id': 5326,\n", + " 'link': 'https://philea.eu/members/the-nando-and-elsa-peretti-foundation/',\n", + " 'name': 'The Nando and Elsa Peretti Foundation',\n", + " 'position': {'address': 'Allgemeines Treuunternehmen (ATU), Aeulestrasse 5, '\n", + " '9490 Vaduz, Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.140606,\n", + " 'lng': 9.521298,\n", + " 'name': 'Allgemeines Treuunternehmen (ATU)',\n", + " 'place_id': 'ChIJKRSZjWcxm0cRuxoXjh3PbSA',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.nandoandelsaperettifoundation.org/en/page.php'},\n", + " {'address': 'The Ethos Foundation 18 Buckingham Palace Road SW1W 0QP London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'ethosfoundation.uk@gmail.com',\n", + " 'id': 5383,\n", + " 'link': 'https://philea.eu/members/the-ethos-foundation/',\n", + " 'name': 'The Ethos Foundation',\n", + " 'position': {'address': '18 Buckingham Palace Road, London SW1W 0QP, United '\n", + " 'Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4977045,\n", + " 'lng': -0.1443356,\n", + " 'name': '18 Buckingham Palace Rd',\n", + " 'place_id': 'ChIJHXL6GCEFdkgRrvnbRBZYkh8',\n", + " 'post_code': 'SW1W 0QP',\n", + " 'state': 'England',\n", + " 'street_name': 'Buckingham Palace Road',\n", + " 'street_name_short': 'Buckingham Palace Rd',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'The Association of Swedish Foundations P.O. Box 3615 10359 '\n", + " 'Stockholm Sweden',\n", + " 'country': 'Sweden',\n", + " 'email': '',\n", + " 'id': 5207,\n", + " 'link': 'https://philea.eu/members/the-association-of-swedish-foundations/',\n", + " 'name': 'The Association of Swedish Foundations',\n", + " 'position': {'address': 'Stockholm, Sweden',\n", + " 'city': 'Stockholm',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 59.32932349999999,\n", + " 'lng': 18.0685808,\n", + " 'name': 'Stockholm',\n", + " 'place_id': 'ChIJywtkGTF2X0YRZnedZ9MnDag',\n", + " 'state': 'Stockholm County',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.stiftelserisamverkan.se'},\n", + " {'address': 'Stichting Terre des Hommes Nederland Grote Marktstraat 43\\xa0'\n", + " '2511\\xa0BH Den Haag Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@tdh.nl',\n", + " 'id': 5323,\n", + " 'link': 'https://philea.eu/members/terre-des-hommes-netherlands/',\n", + " 'name': 'Terre des Hommes - Netherlands',\n", + " 'position': {'address': 'Grote Marktstraat 43, The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0760376,\n", + " 'lng': 4.31123,\n", + " 'name': 'Grote Marktstraat 43',\n", + " 'place_id': 'ChIJUb3-LyS3xUcR4MZsZqFklQ0',\n", + " 'post_code': '2511 BH',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Grote Marktstraat',\n", + " 'street_number': '43',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.terredeshommes.nl'},\n", + " {'address': 'Fundacja TechSoup ul. Bracka 25 00-028 Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': '',\n", + " 'id': 5322,\n", + " 'link': 'https://philea.eu/members/fundacja-techsoup/',\n", + " 'name': 'Fundacja TechSoup',\n", + " 'position': {'address': 'TechSoup Polska, Bracka, Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2321134,\n", + " 'lng': 21.0155602,\n", + " 'name': 'TechSoup Polska',\n", + " 'place_id': 'ChIJcUsEvvrMHkcRMAdUE5sRqlU',\n", + " 'post_code': '00-028',\n", + " 'state': 'Województwo mazowieckie',\n", + " 'street_name': 'Bracka',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.techsoup.pl/content/fundacja'},\n", + " {'address': 'SwissFoundations Haus der Stiftungen, Kirchgasse 42, 8001 '\n", + " 'Zürich, Switzerland ',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@swissfoundations.ch',\n", + " 'id': 5321,\n", + " 'link': 'https://philea.eu/members/swissfoundations/',\n", + " 'name': 'SwissFoundations',\n", + " 'position': {'address': 'SwissFoundations, Kirchgasse 42, 8001 Zürich, '\n", + " 'Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3705033,\n", + " 'lng': 8.546036599999997,\n", + " 'name': 'SwissFoundations',\n", + " 'place_id': 'ChIJMYQG6qugmkcR5_rSmVty-qU',\n", + " 'post_code': '8001',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Kirchgasse',\n", + " 'street_number': '42',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.swissfoundations.ch'},\n", + " {'address': 'Svenska Kulturfonden Simonsgatan 8 A, 5:e våningen PB 439 00101 '\n", + " 'Helsingfors Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'kansliet@kulturfonden.fi',\n", + " 'id': 5319,\n", + " 'link': 'https://philea.eu/members/svenska-kulturfonden/',\n", + " 'name': 'Svenska Kulturfonden',\n", + " 'position': {'address': 'Finlandia-talo Oy, Mannerheimintie, Helsingfors, '\n", + " 'Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1756992,\n", + " 'lng': 24.9336092,\n", + " 'name': 'Finlandia Hall',\n", + " 'place_id': 'ChIJMSt58zIKkkYRAOiy0w3BzQ4',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Mannerheimintie',\n", + " 'street_number': '13e',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.kulturfonden.fi'},\n", + " {'address': 'Svenska folkskolans vänner r.f. Annegatan 12 A 00120 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'sfv@sfv.fi',\n", + " 'id': 5318,\n", + " 'link': 'https://philea.eu/members/svenska-folkskolans-vanner-r-f/',\n", + " 'name': 'Svenska folkskolans vänner r.f.',\n", + " 'position': {'address': 'Svenska folkskolans vänner r.f., Annankatu, '\n", + " 'Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.164536,\n", + " 'lng': 24.9400829,\n", + " 'name': 'Svenska folkskolans vänner r.f.',\n", + " 'place_id': 'ChIJMZciLMoLkkYRQFRdZUwKC7o',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Annankatu',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sfv.fi'},\n", + " {'address': 'Stiftung Mercator GmbH Huyssenallee 40 45128 Essen Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@stiftung-mercator.de',\n", + " 'id': 5317,\n", + " 'link': 'https://philea.eu/members/stiftung-mercator-gmbh/',\n", + " 'name': 'Stiftung Mercator GmbH',\n", + " 'position': {'address': 'Stiftung Mercator GmbH, Huyssenallee 40, 45128 '\n", + " 'Essen, Germany',\n", + " 'city': 'Essen',\n", + " 'city_short': 'E',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.44743,\n", + " 'lng': 7.0099374,\n", + " 'name': 'Stiftung Mercator GmbH',\n", + " 'place_id': 'ChIJ03SNyM7CuEcRNmQ7c8Kw6uw',\n", + " 'post_code': '45128',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Huyssenallee',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.stiftung-mercator.de'},\n", + " {'address': 'Stiftung Deutsche Welthungerhilfe Friedrich Ebert Strasse 1 '\n", + " 'D-53173 Bonn Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@welthungerhilfe.de',\n", + " 'id': 5316,\n", + " 'link': 'https://philea.eu/members/stiftung-deutsche-welthungerhilfe/',\n", + " 'name': 'Stiftung Deutsche Welthungerhilfe',\n", + " 'position': {'address': 'Welthungerhilfe, Friedrich-Ebert-Straße, Bonn, '\n", + " 'Germany',\n", + " 'city': 'Bonn',\n", + " 'city_short': 'BN',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 50.6823765,\n", + " 'lng': 7.1605514,\n", + " 'name': 'Welthungerhilfe',\n", + " 'place_id': 'ChIJD6Z5u27kvkcR8ADndtpnmS0',\n", + " 'post_code': '53173',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Friedrich-Ebert-Straße',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.welthungerhilfe.de'},\n", + " {'address': 'Stichting Instituut Gak ‘s-Gravelandseweg 49 1217 EH Hilversum '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@instituutgak.nl',\n", + " 'id': 5313,\n", + " 'link': 'https://philea.eu/members/stichting-instituut-gak/',\n", + " 'name': 'Stichting Instituut Gak',\n", + " 'position': {'address': \"Instituut Gak, 's-Gravelandseweg 49, 1217 EH \"\n", + " 'Hilversum, Netherlands',\n", + " 'city': 'Hilversum',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.2269437,\n", + " 'lng': 5.1678373,\n", + " 'name': 'Instituut Gak',\n", + " 'place_id': 'ChIJVxUAq2BrxkcRRY0WCkNWJG8',\n", + " 'post_code': '1217 EH',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': \"'s-Gravelandseweg\",\n", + " 'street_number': '49',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.instituutgak.nl'},\n", + " {'address': 'Stichting Fonds 1818 Riviervismarkt 4 2313 AM The Hague '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@fonds1818.nl',\n", + " 'id': 5312,\n", + " 'link': 'https://philea.eu/members/stichting-fonds-1818/',\n", + " 'name': 'Stichting Fonds 1818',\n", + " 'position': {'address': 'Fonds 1818, Riviervismarkt, The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0766884,\n", + " 'lng': 4.306905,\n", + " 'name': 'Fonds 1818',\n", + " 'place_id': 'ChIJ52ApXi-3xUcRwS8uuyoaKdg',\n", + " 'post_code': '2513 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Riviervismarkt',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fonds1818.nl'},\n", + " {'address': 'Stefan Batory Foundation ul. Sapiezynska 10a 00-215 Warsaw '\n", + " 'Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'batory@batory.org.pl',\n", + " 'id': 5310,\n", + " 'link': 'https://philea.eu/members/stefan-batory-foundation/',\n", + " 'name': 'Stefan Batory Foundation',\n", + " 'position': {'address': 'Foundation. Stefan Batory, Sapieżyńska 10A, 00-215 '\n", + " 'Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2538507,\n", + " 'lng': 21.0024074,\n", + " 'name': 'Foundation. Stefan Batory',\n", + " 'place_id': 'ChIJvafqI3HMHkcRi1KbhyvtFgM',\n", + " 'post_code': '00-215',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Sapieżyńska',\n", + " 'street_number': '10A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.batory.org.pl'},\n", + " {'address': 'Stavros Niarchos Foundation (SNF) 86A Vas. Sofias Avenue 11528 '\n", + " 'Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': 'info@snf.org',\n", + " 'id': 5309,\n", + " 'link': 'https://philea.eu/members/stavros-niarchos-foundation/',\n", + " 'name': 'Stavros Niarchos Foundation (SNF)',\n", + " 'position': {'address': 'Stavros Niarchos Foundation, Vasilissis Sofias, '\n", + " 'Athens 115 28, Greece',\n", + " 'city': 'Athina',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9813085,\n", + " 'lng': 23.7557287,\n", + " 'name': 'SNF Headquarters',\n", + " 'place_id': 'ChIJZfpgIVG9oRQR_O2TmCmVU7I',\n", + " 'post_code': '115 28',\n", + " 'state': 'Kentrikos Tomeas Athinon',\n", + " 'street_name': 'Vasilissis Sofias',\n", + " 'street_number': '86Α',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.snf.org'},\n", + " {'address': 'Special Olympics Europe/Eurasia Avenue Louise 43 B-1050 Brussels '\n", + " 'Belgium',\n", + " 'country': '',\n", + " 'email': 'wbyrne@specialolympics.org',\n", + " 'id': 5308,\n", + " 'link': 'https://philea.eu/members/special-olympics-europe-eurasia/',\n", + " 'name': 'Special Olympics Europe/Eurasia',\n", + " 'position': {'address': 'Avenue Louise 43, Saint-Gilles, Belgium',\n", + " 'city': 'Saint-Gilles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.83394879999999,\n", + " 'lng': 4.3566524,\n", + " 'name': 'Av. Louise 43',\n", + " 'place_id': 'ChIJP7Gk2YnEw0cR0MA9XKNV6Po',\n", + " 'post_code': '1060',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Avenue Louise',\n", + " 'street_name_short': 'Av. Louise',\n", + " 'street_number': '43',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.specialolympics.org/Regions/europe-eurasia/_Region-Front/Europe-Eurasia.aspx'},\n", + " {'address': 'Sparebankstiftelsen DnB NOR P.O. Box 555 Sentrum 0105 Oslo '\n", + " 'Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@sparebankstiftelsen.no',\n", + " 'id': 5307,\n", + " 'link': 'https://philea.eu/members/sparebankstiftelsen-dnb/',\n", + " 'name': 'Sparebankstiftelsen DnB',\n", + " 'position': {'address': 'Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.9138688,\n", + " 'lng': 10.7522454,\n", + " 'name': 'Oslo',\n", + " 'place_id': 'ChIJOfBn8mFuQUYRmh4j019gkn4',\n", + " 'state': 'Oslo',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sparebankstiftelsen.no'},\n", + " {'address': 'Spanish Association of Foundations C/ Serrano Anguita, 13 28004 '\n", + " 'Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fundaciones.org',\n", + " 'id': 5086,\n", + " 'link': 'https://philea.eu/members/spanish-association-of-foundations/',\n", + " 'name': 'Spanish Association of Foundations',\n", + " 'position': {'address': 'Spanish Association of Foundations, Impact Hub '\n", + " 'Barceló, Calle de Serrano Anguita, 13, 28004 '\n", + " 'Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4276989,\n", + " 'lng': -3.699074899999999,\n", + " 'name': 'Spanish Association of Foundations',\n", + " 'place_id': 'ChIJ_1huM44oQg0RxXFi6ksN4Gw',\n", + " 'post_code': '28004',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Serrano Anguita',\n", + " 'street_name_short': 'C. de Serrano Anguita',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.fundaciones.org'},\n", + " {'address': 'Society of Swedish Literature in Finland, The Ritarikatus 5 '\n", + " '00170 Helsingfors Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'info@sls.fi',\n", + " 'id': 5306,\n", + " 'link': 'https://philea.eu/members/society-of-swedish-literature-in-finland-the/',\n", + " 'name': 'Society of Swedish Literature in Finland, The',\n", + " 'position': {'address': 'Finlandia-talo Oy, Mannerheimintie, Helsingfors, '\n", + " 'Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1756992,\n", + " 'lng': 24.9336092,\n", + " 'name': 'Finlandia Hall',\n", + " 'place_id': 'ChIJMSt58zIKkkYRAOiy0w3BzQ4',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Mannerheimintie',\n", + " 'street_number': '13e',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sls.fi'},\n", + " {'address': 'Simavi Naritaweg 135 1043BS Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@simavi.nl',\n", + " 'id': 5303,\n", + " 'link': 'https://philea.eu/members/simavi/',\n", + " 'name': 'Simavi',\n", + " 'position': {'address': 'Stichting Simavi, Naritaweg 135, 1043 BS Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3877099,\n", + " 'lng': 4.832788499999999,\n", + " 'name': 'Stichting Simavi',\n", + " 'place_id': 'ChIJJ4Y6XjjvxUcRa40lzL0rcYY',\n", + " 'post_code': '1043 BS',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Naritaweg',\n", + " 'street_number': '135',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://simavi.org/'},\n", + " {'address': 'Serbia',\n", + " 'country': 'Serbia',\n", + " 'email': 'office@filantropskiforum.com',\n", + " 'id': 5369,\n", + " 'link': 'https://philea.eu/members/serbian-philanthropy-forum/',\n", + " 'name': 'Serbian Philanthropy Forum',\n", + " 'position': {'address': 'Serbia',\n", + " 'country': 'Serbia',\n", + " 'country_short': 'RS',\n", + " 'lat': 44.016521,\n", + " 'lng': 21.005859,\n", + " 'name': 'Serbia',\n", + " 'place_id': 'ChIJlYCJ8t8dV0cRXYYjN-pQXgU',\n", + " 'zoom': 7},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.srpskifilantropskiforum.org/'},\n", + " {'address': 'Sabanci Foundation Sabanci Center, 4. Levent Kule:2, Kat:8 34330 '\n", + " 'Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@sabancivakfi.org',\n", + " 'id': 5299,\n", + " 'link': 'https://philea.eu/members/sabanci-foundation/',\n", + " 'name': 'Sabanci Foundation',\n", + " 'position': {'address': 'İstanbul, Turkey',\n", + " 'city': 'İstanbul',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0082376,\n", + " 'lng': 28.9783589,\n", + " 'name': 'İstanbul',\n", + " 'place_id': 'ChIJawhoAASnyhQR0LABvJj-zOE',\n", + " 'state': 'İstanbul',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sabancivakfi.org'},\n", + " {'address': 'Saastamoinen Foundation Pieni Roobertinkatu 5 B 15 00930 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'petteri.karttunen@saastamoinenfoundation.fi',\n", + " 'id': 5298,\n", + " 'link': 'https://philea.eu/members/saastamoinen-foundation/',\n", + " 'name': 'Saastamoinen Foundation',\n", + " 'position': {'address': 'Pieni Roobertinkatu 5, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1642976,\n", + " 'lng': 24.9463729,\n", + " 'name': 'Pieni Roobertinkatu 5',\n", + " 'place_id': 'ChIJ9bm4AskLkkYRb_lJS8zoCVc',\n", + " 'post_code': '00130',\n", + " 'street_name': 'Pieni Roobertinkatu',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.saastamoinenfoundation.fi'},\n", + " {'address': 'Romanian-American Foundation 6, Gina Patrichi (former Orlando) '\n", + " 'Street 010449 Bucharest 1 Romania',\n", + " 'country': 'Romania',\n", + " 'email': 'office@rafonline.org',\n", + " 'id': 5296,\n", + " 'link': 'https://philea.eu/members/romanian-american-foundation/',\n", + " 'name': 'Romanian-American Foundation',\n", + " 'position': {'address': 'Romanian-American Foundation, Strada Gina Patrichi '\n", + " '6, Bucharest, Romania',\n", + " 'city': 'București',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 44.4493683,\n", + " 'lng': 26.0894794,\n", + " 'name': 'Romanian-American Foundation',\n", + " 'place_id': 'ChIJzRp3U1T_sUARPs2PXQpkhNE',\n", + " 'post_code': '010449',\n", + " 'state': 'București',\n", + " 'street_name': 'Strada Gina Patrichi',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.RAFonline.org'},\n", + " {'address': 'Rockefeller Philanthropy Advisors 437 Madison Avenue, 37th Floor '\n", + " 'NY 10022 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@rockpa.org',\n", + " 'id': 5294,\n", + " 'link': 'https://philea.eu/members/rockefeller-philanthropy-advisors/',\n", + " 'name': 'Rockefeller Philanthropy Advisors',\n", + " 'position': {'address': '437 Madison Avenue, NY, New York 10022, United '\n", + " 'States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.7573533,\n", + " 'lng': -73.97524349999999,\n", + " 'name': '437 Madison Ave',\n", + " 'place_id': 'ChIJr8O4RvxYwokR06DPVPxymuc',\n", + " 'post_code': '10022',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Madison Avenue',\n", + " 'street_name_short': 'Madison Ave',\n", + " 'street_number': '437',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.rockpa.org'},\n", + " {'address': 'Rockefeller Brothers Fund 475 Riverside Drive, Suite 900 NY '\n", + " '10115 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'communications@rbf.org',\n", + " 'id': 5293,\n", + " 'link': 'https://philea.eu/members/rockefeller-brothers-fund/',\n", + " 'name': 'Rockefeller Brothers Fund',\n", + " 'position': {'address': 'Rockefeller Brothers Fund, 475 Riverside Drive, NY, '\n", + " 'New York 10115, United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.8108449,\n", + " 'lng': -73.9640282,\n", + " 'name': 'Rockefeller Brothers Fund',\n", + " 'place_id': 'ChIJObtpQj_2wokRNsvzZVDQfYk',\n", + " 'post_code': '10115',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Riverside Drive',\n", + " 'street_name_short': 'Riverside Dr',\n", + " 'street_number': '475',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rbf.org'},\n", + " {'address': 'Robert Bosch Stiftung Heidehofstraße 31 70184 Stuttgart Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'rbsg@bosch-stiftung.de',\n", + " 'id': 5292,\n", + " 'link': 'https://philea.eu/members/robert-bosch-stiftung-gmbh/',\n", + " 'name': 'Robert Bosch Stiftung GmbH',\n", + " 'position': {'address': 'Robert Bosch Stiftung GmbH, Heidehofstraße 31, '\n", + " '70184 Stuttgart, Germany',\n", + " 'city': 'Stuttgart',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.77749319999999,\n", + " 'lng': 9.1996634,\n", + " 'name': 'Robert Bosch Stiftung GmbH',\n", + " 'place_id': 'ChIJxZbap8fEmUcRQ9lqXktR3YY',\n", + " 'post_code': '70184',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Heidehofstraße',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bosch-stiftung.de'},\n", + " {'address': 'RNW Media Witte Kruislaan 55a 1217 AM Hilversum Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'connect@rnw.org',\n", + " 'id': 5291,\n", + " 'link': 'https://philea.eu/members/rnw-media/',\n", + " 'name': 'RNW Media',\n", + " 'position': {'address': 'RNW Media, Witte Kruislaan 55A, 1217 AM Hilversum, '\n", + " 'Netherlands',\n", + " 'city': 'Hilversum',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.24425420000001,\n", + " 'lng': 5.165984100000001,\n", + " 'name': 'RNW Media',\n", + " 'place_id': 'ChIJjZoR0VVrxkcRARGi9Bk9wig',\n", + " 'post_code': '1217 AM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Witte Kruislaan',\n", + " 'street_number': '55A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.rnw.org/'},\n", + " {'address': 'Riksbankens Jubileumsfond Kungsträdgårdsgatan 18, P.O. Box 5675 '\n", + " '114 86 Stockholm Sweden',\n", + " 'country': 'Sweden',\n", + " 'email': 'rj@rj.se',\n", + " 'id': 5289,\n", + " 'link': 'https://philea.eu/members/riksbankens-jubileumsfond/',\n", + " 'name': 'Riksbankens Jubileumsfond',\n", + " 'position': {'address': 'Stockholm, Sweden',\n", + " 'city': 'Stockholm',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 59.32932349999999,\n", + " 'lng': 18.0685808,\n", + " 'name': 'Stockholm',\n", + " 'place_id': 'ChIJywtkGTF2X0YRZnedZ9MnDag',\n", + " 'state': 'Stockholm County',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rj.se/en/'},\n", + " {'address': 'Realdania Jamers Plads 2 DK-1551 Copenhagen V Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'realdania@realdania.dk',\n", + " 'id': 5288,\n", + " 'link': 'https://philea.eu/members/realdania/',\n", + " 'name': 'Realdania',\n", + " 'position': {'address': 'Realdania, Jarmers Plads, Copenhagen Municipality, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.67947599999999,\n", + " 'lng': 12.564626,\n", + " 'name': 'Realdania',\n", + " 'place_id': 'ChIJuzJJ5w5TUkYRzFEwIsUw1EM',\n", + " 'post_code': '1551',\n", + " 'street_name': 'Jarmers Plads',\n", + " 'street_name_short': 'Jarmers Pl.',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.realdania.dk'},\n", + " {'address': 'Prins Claus Fonds for Culture and Development Kingsfordweg 151 '\n", + " '1043 GR Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@princeclausfund.org',\n", + " 'id': 5286,\n", + " 'link': 'https://philea.eu/members/prins-claus-fonds-for-culture-and-development/',\n", + " 'name': 'Prins Claus Fonds for Culture and Development',\n", + " 'position': {'address': '1043 GR Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.38588540000001,\n", + " 'lng': 4.8426952,\n", + " 'name': '1043 GR',\n", + " 'place_id': 'ChIJZSgAZl7ixUcRSOudUzx3YyM',\n", + " 'post_code': '1043 GR',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://princeclausfund.org/'},\n", + " {'address': 'het Cultuurfonds Herengracht 476, 1017 CB Amsterdam, P.O.Box '\n", + " '19750 1000 GT Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@cultuurfonds.nl',\n", + " 'id': 5285,\n", + " 'link': 'https://philea.eu/members/het-cultuurfonds/',\n", + " 'name': 'het Cultuurfonds',\n", + " 'position': {'address': 'Herengracht 476, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3650263,\n", + " 'lng': 4.891598,\n", + " 'name': 'Herengracht 476',\n", + " 'place_id': 'ChIJMRKh8eoJxkcRR7pqJMuQYIU',\n", + " 'post_code': '1017 CB',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Herengracht',\n", + " 'street_number': '476',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cultuurfonds.nl'},\n", + " {'address': 'Portuguese Foundation Centre Centro Cultural de Belém, Sala D, '\n", + " 'Praça do Império, 1449-003 Lisbon, Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'cpf@cpf.org.pt',\n", + " 'id': 5283,\n", + " 'link': 'https://philea.eu/members/portuguese-foundation-centre/',\n", + " 'name': 'Portuguese Foundation Centre',\n", + " 'position': {'address': 'Portuguese Foundation Centre Centro Cultural de '\n", + " 'Belém, Sala D, Praça do Império, 1449-003 Lisbon, '\n", + " 'Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.6955029,\n", + " 'lng': -9.208354199999999,\n", + " 'place_id': 'ChIJW51RQkPLHg0RNpVMhpDspDY',\n", + " 'post_code': '1449-003',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Praça do Império',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.cpf.org.pt'},\n", + " {'address': 'Porticus P.O. Box 7867 1008 AB Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@porticus.com',\n", + " 'id': 5282,\n", + " 'link': 'https://philea.eu/members/porticus/',\n", + " 'name': 'Porticus',\n", + " 'position': {'address': 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'name': 'Amsterdam',\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.porticus.com'},\n", + " {'address': 'Polish Donors Forum ul. Mokotowska 65/7 00-533 Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'poczta@forumdarczyncow.pl',\n", + " 'id': 5281,\n", + " 'link': 'https://philea.eu/members/polish-donors-forum/',\n", + " 'name': 'Polish Donors Forum',\n", + " 'position': {'address': 'Mokotowska 65, Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2266891,\n", + " 'lng': 21.0221065,\n", + " 'name': 'Mokotowska 65',\n", + " 'place_id': 'ChIJ9S1defDMHkcRA6OQ_tVeX0Y',\n", + " 'post_code': '00-530',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Mokotowska',\n", + " 'street_number': '65',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.forumdarczyncow.pl'},\n", + " {'address': 'PLAN BØRNE FONDEN Mimersgade 47, 4. 2200 N Copenhagen Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'mail@planbornefonden.dk',\n", + " 'id': 5280,\n", + " 'link': 'https://philea.eu/members/plan-borne-fonden/',\n", + " 'name': 'Plan Børne Fonden',\n", + " 'position': {'address': 'PlanBørnefonden, Mimersgade, København N, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6992115,\n", + " 'lng': 12.5476594,\n", + " 'name': 'Plan International Denmark',\n", + " 'place_id': 'ChIJUX1VjqdTUkYRMxyd9gTbtfI',\n", + " 'post_code': '2200',\n", + " 'street_name': 'Mimersgade',\n", + " 'street_number': '47',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://planbornefonden.dk/'},\n", + " {'address': 'Philanthropy Ireland Ltd 56 Fitzwilliam Square 2 Dublin Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': 'info@philanthropyireland.ie',\n", + " 'id': 5279,\n", + " 'link': 'https://philea.eu/members/philanthropy-ireland-ltd/',\n", + " 'name': 'Philanthropy Ireland',\n", + " 'position': {'address': '2 Fitzwilliam Square Dublin, Dublin 2, Dublin, '\n", + " 'Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.33428699999999,\n", + " 'lng': -6.251283499999999,\n", + " 'name': '2 Fitzwilliam Pl',\n", + " 'place_id': 'ChIJD0ctTL0OZ0gRmjdgB2o6Arg',\n", + " 'post_code': 'D02 K227',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Fitzwilliam Place',\n", + " 'street_name_short': 'Fitzwilliam Pl',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.philanthropyireland.ie'},\n", + " {'address': 'PeaceNexus Foundation Rt de Lausanne 107 CH-1197 Prangings '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@peacenexus.org',\n", + " 'id': 5277,\n", + " 'link': 'https://philea.eu/members/peacenexus-foundation/',\n", + " 'name': 'PeaceNexus Foundation',\n", + " 'position': {'address': 'PEACENEXUS, Route de Lausanne 107, 1197 Prangins, '\n", + " 'Switzerland',\n", + " 'city': 'Prangins',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.3918994,\n", + " 'lng': 6.254621799999999,\n", + " 'name': 'PEACENEXUS',\n", + " 'place_id': 'ChIJG5nGiBlDjEcRS7BfVtOg5jE',\n", + " 'post_code': '1197',\n", + " 'state': 'Vaud',\n", + " 'state_short': 'VD',\n", + " 'street_name': 'Route de Lausanne',\n", + " 'street_name_short': 'Rte de Lausanne',\n", + " 'street_number': '107',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.peacenexus.org'},\n", + " {'address': 'The Paul Hamlyn Foundation 5-11 Leeke Street WC1X 9HY London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'information@phf.org.uk',\n", + " 'id': 5276,\n", + " 'link': 'https://philea.eu/members/paul-hamlyn-foundation/',\n", + " 'name': 'Paul Hamlyn Foundation',\n", + " 'position': {'address': 'Paul Hamlyn Foundation, Leeke Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.53029950000001,\n", + " 'lng': -0.1180191,\n", + " 'name': 'Paul Hamlyn Foundation',\n", + " 'place_id': 'ChIJS71-rjgbdkgRn29H_3pkr7o',\n", + " 'post_code': 'WC1X 9HY',\n", + " 'state': 'England',\n", + " 'street_name': 'Leeke Street',\n", + " 'street_name_short': 'Leeke St',\n", + " 'street_number': '5-11',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.phf.org.uk'},\n", + " {'address': 'Open Society Foundations OSIFE, C/Elisabets, 24 08001 Barcelona '\n", + " 'Spain',\n", + " 'country': 'Germany',\n", + " 'email': 'info@opensocietyfoundations.org',\n", + " 'id': 5274,\n", + " 'link': 'https://philea.eu/members/open-society-foundations/',\n", + " 'name': 'Open Society Foundations',\n", + " 'position': {'address': \"Carrer d'Elisabets, 24, Barcelona, Spain\",\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3830253,\n", + " 'lng': 2.1679675,\n", + " 'name': \"Carrer d'Elisabets, 24\",\n", + " 'place_id': 'ChIJ6wVnsfWipBIR9Sd2UXoKRNM',\n", + " 'post_code': '08001',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': \"Carrer d'Elisabets\",\n", + " 'street_number': '24',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.opensocietyfoundations.org'},\n", + " {'address': 'Open Estonia Foundation Estonia Avenue pst 5A 10143 Tallinn '\n", + " 'Estonia',\n", + " 'country': 'Estonia',\n", + " 'email': 'info@oef.org.ee',\n", + " 'id': 5273,\n", + " 'link': 'https://philea.eu/members/open-estonia-foundation/',\n", + " 'name': 'Open Estonia Foundation',\n", + " 'position': {'address': 'Estonia puiestee 5a, Tallinn, Estonia',\n", + " 'city': 'Tallinn',\n", + " 'country': 'Estonia',\n", + " 'country_short': 'EE',\n", + " 'lat': 59.4348507,\n", + " 'lng': 24.7531709,\n", + " 'name': 'Estonia pst 5a',\n", + " 'place_id': 'ChIJ-09SImCTkkYRyBerMSOActE',\n", + " 'post_code': '10145',\n", + " 'state': 'Harju maakond',\n", + " 'street_name': 'Estonia puiestee',\n", + " 'street_name_short': 'Estonia pst',\n", + " 'street_number': '5a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oef.org.ee'},\n", + " {'address': 'Oeuvre Nationale de Secours Grande-Duchess Charlotte 18, rue '\n", + " 'Leon Laval L-3372 Leudelange Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': 'secretariat@oeuvre.lu',\n", + " 'id': 5271,\n", + " 'link': 'https://philea.eu/members/oeuvre-nationale-de-secours-grande-duchesse-charlotte/',\n", + " 'name': 'Oeuvre Nationale de Secours Grande-Duchesse Charlotte',\n", + " 'position': {'address': 'Œuvre Nationale de Secours Grande-Duchesse '\n", + " 'Charlotte, 18 Rue Léon Laval, 3372 Leudelange, '\n", + " 'Luxembourg',\n", + " 'city': 'Leudelange',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.5705961,\n", + " 'lng': 6.080992199999999,\n", + " 'name': 'Œuvre Nationale de Secours Grande-Duchesse Charlotte',\n", + " 'place_id': 'ChIJQf9Bup1JlUcRKk0YneA2F88',\n", + " 'post_code': '3372',\n", + " 'state': 'District de Luxembourg',\n", + " 'street_name': 'Rue Léon Laval',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oeuvre.lu'},\n", + " {'address': 'Oak Foundation Oak Philanthropy Ltd., Case postale 115 58, '\n", + " 'Avenue Louis Casaï 1216 Cointrin, Geneva Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@oakfnd.ch',\n", + " 'id': 5270,\n", + " 'link': 'https://philea.eu/members/oak-foundation/',\n", + " 'name': 'Oak Foundation',\n", + " 'position': {'address': 'Oak Philanthropy Ltd, Avenue Louis-Casaï 58, 1216 '\n", + " 'Cointrin, Geneva, Switzerland',\n", + " 'city': 'Cointrin',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.22375090000001,\n", + " 'lng': 6.1094305,\n", + " 'name': 'Oak Philanthropy Ltd',\n", + " 'place_id': 'ChIJP4QtKZpkjEcR3Fv6NcAOzdI',\n", + " 'post_code': '1216',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Avenue Louis-Casaï',\n", + " 'street_name_short': 'Av. Louis-Casaï',\n", + " 'street_number': '58',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oakfnd.org'},\n", + " {'address': 'Novo Nordisk Foundation Tuborg Havnevej 19 2900 Hellerup Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'nnfond@novo.dk',\n", + " 'id': 5269,\n", + " 'link': 'https://philea.eu/members/novo-nordisk-foundation-the/',\n", + " 'name': 'Novo Nordisk Foundation, The',\n", + " 'position': {'address': 'Novo Nordisk Foundation, Tuborg Havnevej 19, 2900 '\n", + " 'Hellerup, Denmark',\n", + " 'city': 'Hellerup',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7270213,\n", + " 'lng': 12.5836844,\n", + " 'name': 'Novo Nordisk Foundation',\n", + " 'place_id': 'ChIJadmjE4ZSUkYRqwhCS5p5HKA',\n", + " 'post_code': '2900',\n", + " 'street_name': 'Tuborg Havnevej',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.novonordiskfonden.dk'},\n", + " {'address': 'Nordea-fonden Overgaden Neden Vandet 11 1414 Copenhagen K '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'kontakt@nordeafonden.dk',\n", + " 'id': 5268,\n", + " 'link': 'https://philea.eu/members/nordea-fonden/',\n", + " 'name': 'Nordea-fonden',\n", + " 'position': {'address': 'Nordea Fonden, Overgaden Neden Vandet 11, 1414 '\n", + " 'Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6722099,\n", + " 'lng': 12.5897326,\n", + " 'name': 'Nordea Fonden',\n", + " 'place_id': 'ChIJpwlMZa1TUkYR_7yi9OXdh58',\n", + " 'post_code': '1414',\n", + " 'street_name': 'Overgaden Neden Vandet',\n", + " 'street_number': '11',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nordeafonden.dk/'},\n", + " {'address': 'Postcode Lottery Group Beethovenstraat 200 1077 JZ Amsterdam '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 5265,\n", + " 'link': 'https://philea.eu/members/postcode-lottery-group/',\n", + " 'name': 'Postcode Lottery Group',\n", + " 'position': {'address': 'Beethovenstraat 200, 1077 JZ Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3414279,\n", + " 'lng': 4.8758224,\n", + " 'name': 'Beethovenstraat 200',\n", + " 'place_id': 'ChIJ3Y1aWwMKxkcRbP6rYT-zZ1Y',\n", + " 'post_code': '1077 JZ',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Beethovenstraat',\n", + " 'street_number': '200',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.postcodelotterygroup.com'},\n", + " {'address': 'National Foundation for Civil Society Development- Croatia '\n", + " 'Strigina 1a 10000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'zaklada@civilnodrustvo.hr',\n", + " 'id': 5263,\n", + " 'link': 'https://philea.eu/members/national-foundation-for-civil-society-development-croatia/',\n", + " 'name': 'National Foundation for Civil Society Development - Croatia',\n", + " 'position': {'address': 'Štrigina ulica 1A, 10000, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.8119848,\n", + " 'lng': 16.0047961,\n", + " 'name': 'Štrigina ul. 1A',\n", + " 'place_id': 'ChIJFU6InrTXZUcRAq4aroZVdCA',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Štrigina ulica',\n", + " 'street_name_short': 'Štrigina ul.',\n", + " 'street_number': '1A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://zaklada.civilnodrustvo.hr'},\n", + " {'address': 'Mozaik Foundation Soukbunar 42 71000 Sarajevo Bosnia and '\n", + " 'Herzegovina',\n", + " 'country': 'Bosnia and Herzegovina',\n", + " 'email': 'info@mozaik.ba',\n", + " 'id': 5262,\n", + " 'link': 'https://philea.eu/members/mozaik-foundation/',\n", + " 'name': 'Mozaik Foundation',\n", + " 'position': {'address': 'Soukbunar 42, Sarajevo 71000, Bosnia and '\n", + " 'Herzegovina',\n", + " 'city': 'Sarajevo',\n", + " 'country': 'Bosnia and Herzegovina',\n", + " 'country_short': 'BA',\n", + " 'lat': 43.8522829,\n", + " 'lng': 18.4145591,\n", + " 'name': 'Soukbunar 42',\n", + " 'place_id': 'EjRTb3VrYnVuYXIgNDIsIFNhcmFqZXZvIDcxMDAwLCBCb3NuaWEgYW5kIEhlcnplZ292aW5hIlASTgo0CjIJC6SFI93IWEcRuPXr_MyO7woaHgsQ7sHuoQEaFAoSCctVmj6fzlhHEUxZlCbE4Qv0DBAqKhQKEgkxLbDMwshYRxHBqxt2zhaUgA',\n", + " 'post_code': '71000',\n", + " 'state': 'Federacija Bosne i Hercegovine',\n", + " 'street_name': 'Soukbunar',\n", + " 'street_number': '42',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mozaik.ba'},\n", + " {'address': 'Medicor Foundation Landstrasse 11 P.\\u2009O. Box 130 9495 '\n", + " 'Triesen Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'info@medicor.li',\n", + " 'id': 5261,\n", + " 'link': 'https://philea.eu/members/medicor-foundation/',\n", + " 'name': 'Medicor Foundation',\n", + " 'position': {'address': '9495 Triesen, Liechtenstein',\n", + " 'city': 'Triesen',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.0842296,\n", + " 'lng': 9.5572841,\n", + " 'name': '9495',\n", + " 'place_id': 'ChIJjVLKgfY0m0cRt2kRKBJQdA8',\n", + " 'post_code': '9495',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.medicor.li'},\n", + " {'address': 'Mama Cash Foundation P.O. Box 15686 1001 ND Amsterdam '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@mamacash.org',\n", + " 'id': 5260,\n", + " 'link': 'https://philea.eu/members/mama-cash-foundation/',\n", + " 'name': 'Mama Cash Foundation',\n", + " 'position': {'address': 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'name': 'Amsterdam',\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mamacash.nl'},\n", + " {'address': 'Maj and Tor Nessling Foundation Fredrikinkatu 20 B 16 FIN-00120 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'toimisto@nessling.fi',\n", + " 'id': 5259,\n", + " 'link': 'https://philea.eu/members/maj-and-tor-nessling-foundation/',\n", + " 'name': 'Maj and Tor Nessling Foundation',\n", + " 'position': {'address': 'Maj ja Tor Nesslingin Säätiö, Fredrikinkatu 20 B '\n", + " '16, 00120 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1627741,\n", + " 'lng': 24.93902,\n", + " 'name': 'Maj ja Tor Nesslingin Säätiö',\n", + " 'place_id': 'ChIJQXtfHcoLkkYRL99-h8bfUq8',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Fredrikinkatu',\n", + " 'street_number': '20 B 16',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nessling.fi'},\n", + " {'address': 'Maecenata Foundation Rungestrasse 17 10115 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'mst@maecenata.eu',\n", + " 'id': 5258,\n", + " 'link': 'https://philea.eu/members/maecenata-foundation/',\n", + " 'name': 'Maecenata Foundation',\n", + " 'position': {'address': 'Maecenata Stiftung, Rungestraße, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5121218,\n", + " 'lng': 13.4195188,\n", + " 'name': 'Maecenata Stiftung',\n", + " 'place_id': 'ChIJxW08IztOqEcRYCu3_FheCrw',\n", + " 'post_code': '10179',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Rungestraße',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.maecenata.eu'},\n", + " {'address': 'Lundbeckfonden 7 Scherfigsvej 2100 Copenhagen O Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'lb@lundbeckfonden.com',\n", + " 'id': 5257,\n", + " 'link': 'https://philea.eu/members/lundbeckfonden/',\n", + " 'name': 'Lundbeckfonden',\n", + " 'position': {'address': 'Lundbeckfonden, Scherfigsvej 7, 2100 Copenhagen, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7219251,\n", + " 'lng': 12.5798535,\n", + " 'name': 'Lundbeckfonden',\n", + " 'place_id': 'ChIJZwPg6J3U3UMROSJadjNrJhY',\n", + " 'post_code': '2100',\n", + " 'street_name': 'Scherfigsvej',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.lundbeckfonden.com'},\n", + " {'address': 'LEGO Foundation Koldingvej 2 7190 Billund Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'LEGOFoundation@LEGO.com',\n", + " 'id': 5255,\n", + " 'link': 'https://philea.eu/members/lego-foundation/',\n", + " 'name': 'LEGO Foundation',\n", + " 'position': {'address': 'LEGO Fonden, Koldingvej 2, 7190 Billund, Denmark',\n", + " 'city': 'Billund',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7247517,\n", + " 'lng': 9.130263599999997,\n", + " 'name': 'LEGO Fonden',\n", + " 'place_id': 'ChIJiYUmuXdxS0YRFEhS8jHnJ_M',\n", + " 'post_code': '7190',\n", + " 'street_name': 'Koldingvej',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.legofoundation.com/'},\n", + " {'address': 'Learning for Well-being Foundation 56 Milletstraat 2nd floor '\n", + " '1077 ZG Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@learningforwellbeing.org',\n", + " 'id': 5254,\n", + " 'link': 'https://philea.eu/members/learning-for-well-being-foundation/',\n", + " 'name': 'Learning for Well-being Foundation',\n", + " 'position': {'address': 'Learning for Well-being, Milletstraat 56, 1077 ZG '\n", + " 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.34611239999999,\n", + " 'lng': 4.868931599999999,\n", + " 'name': 'Learning for Well-being',\n", + " 'place_id': 'ChIJd2CK3AEKxkcRmHkI0N-rfw8',\n", + " 'post_code': '1077 ZG',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Milletstraat',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.learningforwellbeing.org'},\n", + " {'address': 'Laudes Foundation Grafenauweg 10 6300 Zug Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'grants@candafoundation.org',\n", + " 'id': 5253,\n", + " 'link': 'https://philea.eu/members/laudes-foundation/',\n", + " 'name': 'Laudes Foundation',\n", + " 'position': {'address': 'Grafenauweg 10, 6300 Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.17444639999999,\n", + " 'lng': 8.512388199999998,\n", + " 'name': 'Grafenauweg 10',\n", + " 'place_id': 'ChIJGRIo1l6qmkcRZ347UaNc4Z4',\n", + " 'post_code': '6300',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Grafenauweg',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.laudesfoundation.org'},\n", + " {'address': 'Kultura Nova Foundation Gajeva 2/6 10 000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@kulturanova.hr',\n", + " 'id': 5252,\n", + " 'link': 'https://philea.eu/members/kultura-nova-foundation/',\n", + " 'name': 'Kultura Nova Foundation',\n", + " 'position': {'address': 'Gajeva ulica 2, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.81273760000001,\n", + " 'lng': 15.9763028,\n", + " 'name': 'Gajeva ul. 2',\n", + " 'place_id': 'ChIJebV5t_3WZUcRHBpVYboricI',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Gajeva ulica',\n", + " 'street_name_short': 'Gajeva ul.',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://kulturanova.hr/'},\n", + " {'address': 'Körber-Stiftung Kehrwieder, 12 20457 Hamburg Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@koerber-stiftung.de',\n", + " 'id': 5251,\n", + " 'link': 'https://philea.eu/members/korber-stiftung/',\n", + " 'name': 'Körber-Stiftung',\n", + " 'position': {'address': 'Körber-Stiftung, Kehrwieder 12, 20457 Hamburg, '\n", + " 'Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.54348539999999,\n", + " 'lng': 9.9839361,\n", + " 'name': 'Körber-Stiftung',\n", + " 'place_id': 'ChIJ7a9K6QWPsUcRCDvuO6g9228',\n", + " 'post_code': '20457',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Kehrwieder',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.koerber-stiftung.de'},\n", + " {'address': 'Kone Foundation Otavantie 10 00200 Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'koneensaatio@koneensaatio.fi',\n", + " 'id': 5250,\n", + " 'link': 'https://philea.eu/members/kone-foundation/',\n", + " 'name': 'Kone Foundation',\n", + " 'position': {'address': 'Otavantie 10, 00200 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.15905369999999,\n", + " 'lng': 24.8791507,\n", + " 'name': 'Otavantie 10',\n", + " 'place_id': 'ChIJEUfVDF0KkkYRvV00UH89E5U',\n", + " 'post_code': '00200',\n", + " 'street_name': 'Otavantie',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.koneensaatio.fi/en'},\n", + " {'address': 'King Baudouin Foundation 21, rue Brederode 1000 Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@kbs-frb.be',\n", + " 'id': 5249,\n", + " 'link': 'https://philea.eu/members/king-baudouin-foundation/',\n", + " 'name': 'King Baudouin Foundation',\n", + " 'position': {'address': 'King Baudouin Foundation, Rue Brederode 21, 1000 '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.84035859999999,\n", + " 'lng': 4.362291999999999,\n", + " 'name': 'King Baudouin Foundation',\n", + " 'place_id': 'ChIJyb9ijYbEw0cRwolM9JVA0zc',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue Brederode',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.kbs-frb.be'},\n", + " {'address': 'John S. Latsis Public Benefit Foundation Xenias 4 14562 Athens '\n", + " 'Greece',\n", + " 'country': 'Greece',\n", + " 'email': 'info@latsis-foundation.org',\n", + " 'id': 5244,\n", + " 'link': 'https://philea.eu/members/john-s-latsis-public-benefit-foundation/',\n", + " 'name': 'John S. Latsis Public Benefit Foundation',\n", + " 'position': {'address': 'John S. Latsis Public Benefit Foundation, Xenias, '\n", + " 'Kifisia, Greece',\n", + " 'city': 'Kifisia',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 38.0762191,\n", + " 'lng': 23.8199362,\n", + " 'name': 'John S. Latsis Public Benefit Foundation',\n", + " 'place_id': 'ChIJB3Dq1OueoRQRAD04Z8VSTqk',\n", + " 'post_code': '145 62',\n", + " 'state': 'Vorios Tomeas Athinon',\n", + " 'street_name': 'Xenias',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.latsis-foundation.org'},\n", + " {'address': 'John D. and Catherine T. MacArthur Foundation 140 S. Dearborn '\n", + " 'Street 12th floor IL 60603-5285 Chicago United States',\n", + " 'country': 'United States',\n", + " 'email': '4answers@macfound.org',\n", + " 'id': 5243,\n", + " 'link': 'https://philea.eu/members/john-d-and-catherine-t-macarthur-foundation/',\n", + " 'name': 'John D. and Catherine T. MacArthur Foundation',\n", + " 'position': {'address': '140 South Dearborn Street, Chicago, IL, USA',\n", + " 'city': 'Chicago',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 41.8797985,\n", + " 'lng': -87.62954719999999,\n", + " 'name': '140 S Dearborn St',\n", + " 'place_id': 'ChIJ2f-rorwsDogRrKRi53x4VbM',\n", + " 'post_code': '60603',\n", + " 'state': 'Illinois',\n", + " 'state_short': 'IL',\n", + " 'street_name': 'South Dearborn Street',\n", + " 'street_name_short': 'S Dearborn St',\n", + " 'street_number': '140',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.macfound.org'},\n", + " {'address': 'Joachim Herz Stiftung Langenhorner Chaussee 384 22419 Hamburg '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@joachim-herz-stiftung.de',\n", + " 'id': 5242,\n", + " 'link': 'https://philea.eu/members/joachim-herz-stiftung/',\n", + " 'name': 'Joachim Herz Stiftung',\n", + " 'position': {'address': 'Joachim-Herz-Stiftung, Langenhorner Chaussee 384, '\n", + " '22419 Hamburg, Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.66087,\n", + " 'lng': 10.0038701,\n", + " 'name': 'Joachim-Herz-Stiftung',\n", + " 'place_id': 'ChIJLahLJeaasUcR5X_lTj2Ge5I',\n", + " 'post_code': '22419',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Langenhorner Chaussee',\n", + " 'street_number': '384',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://joachim-herz-stiftung.de/en/'},\n", + " {'address': 'Jenny and Antti Wihuri Foundation Arkadiankatu, 21A 14 FI-00100 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'toimisto@wihurinrahasto.fi',\n", + " 'id': 5241,\n", + " 'link': 'https://philea.eu/members/jenny-and-antti-wihuri-foundation/',\n", + " 'name': 'Jenny and Antti Wihuri Foundation',\n", + " 'position': {'address': 'Arkadiankatu 21a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.17141220000001,\n", + " 'lng': 24.9259645,\n", + " 'name': 'Arkadiankatu 21a',\n", + " 'place_id': 'ChIJAQDw-jMKkkYRyy3Som8bZZ8',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Arkadiankatu',\n", + " 'street_number': '21a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.wihurinrahasto.fi'},\n", + " {'address': 'Jacobs Foundation Seefeldquai 17 8034 Zürich Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'id': 5240,\n", + " 'link': 'https://philea.eu/members/jacobs-foundation/',\n", + " 'name': 'Jacobs Foundation',\n", + " 'position': {'address': 'Jacobs Foundation, Seefeldquai, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3597658,\n", + " 'lng': 8.5479411,\n", + " 'name': 'Jacobs Foundation',\n", + " 'place_id': 'ChIJdxeGo1GnmkcRiO-Du-uGFU4',\n", + " 'post_code': '8008',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Seefeldquai',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://jacobsfoundation.org/en/'},\n", + " {'address': 'International Rescue Committee 3 Bloomsbury Place WC1A 2QL '\n", + " 'London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5381,\n", + " 'link': 'https://philea.eu/members/international-rescue-committee/',\n", + " 'name': 'International Rescue Committee',\n", + " 'position': {'address': '3 Bloomsbury Place, London WC1A 2QL, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5198666,\n", + " 'lng': -0.1226827,\n", + " 'name': '3 Bloomsbury Pl',\n", + " 'place_id': 'ChIJqXi5BDQbdkgR8eW_ADQ4mho',\n", + " 'post_code': 'WC1A 2QA',\n", + " 'state': 'England',\n", + " 'street_name': 'Bloomsbury Place',\n", + " 'street_name_short': 'Bloomsbury Pl',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.rescue.org'},\n", + " {'address': 'International Renaissance Foundation 46 Artema Street 04053 Kiev '\n", + " 'Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'irf@irf.kiev.ua',\n", + " 'id': 5237,\n", + " 'link': 'https://philea.eu/members/international-renaissance-foundation/',\n", + " 'name': 'International Renaissance Foundation',\n", + " 'position': {'address': 'International Fund \"Renaissance\", Artema Street, '\n", + " '46, Kyiv, Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.45654439999999,\n", + " 'lng': 30.493665,\n", + " 'name': 'International Fund \"Renaissance\"',\n", + " 'place_id': 'ChIJMwMydGTO1EARULC_pmQi7AQ',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv City',\n", + " 'street_name': 'Sichovykh Striltsiv Street',\n", + " 'street_name_short': 'Sichovykh Striltsiv St',\n", + " 'street_number': '46',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.irf.kiev.ua'},\n", + " {'address': 'International Committe of the Red Cross 19 Avenue de la paix CH '\n", + " '1202 Geneva Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'webmaster@icrc.org',\n", + " 'id': 5235,\n", + " 'link': 'https://philea.eu/members/international-committee-of-the-red-cross/',\n", + " 'name': 'International Committee of the Red Cross',\n", + " 'position': {'address': 'International Committee of the Red Cross (ICRC), '\n", + " 'Avenue de la Paix 19, 1202 Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2274351,\n", + " 'lng': 6.1375921,\n", + " 'name': 'International Committee of the Red Cross (ICRC)',\n", + " 'place_id': 'ChIJnc-xwvpkjEcRcjLSGUyTJfE',\n", + " 'post_code': '1202',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Avenue de la Paix',\n", + " 'street_name_short': 'Av. de la Paix',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.icrc.org'},\n", + " {'address': 'IKEA Foundation Dellaertweg 9G 2316WZ Leiden Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'programmes@ikeafoundation.org',\n", + " 'id': 5234,\n", + " 'link': 'https://philea.eu/members/ikea-foundation/',\n", + " 'name': 'IKEA Foundation',\n", + " 'position': {'address': 'Dellaertweg 9g, 2316 WZ Leiden, Netherlands',\n", + " 'city': 'Leiden',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.1683013,\n", + " 'lng': 4.4860001,\n", + " 'name': 'Dellaertweg 9',\n", + " 'place_id': 'EipEZWxsYWVydHdlZyA5LCAyMzE2IFhCIExlaWRlbiwgTmV0aGVybGFuZHMiUBJOCjQKMgkTIYc-6sbFRxFPU3pjx0tJQhoeCxDuwe6hARoUChIJX7vUhenGxUcRdvVaLdfuxKUMEAkqFAoSCRMhhz7qxsVHEe8HBQ8NhVWW',\n", + " 'post_code': '2316 XB',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Dellaertweg',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ikeafoundation.org'},\n", + " {'address': 'Global Dialogue The Foundry 17 Oval Way SE11 5RR London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@global-dialogue.org',\n", + " 'id': 5229,\n", + " 'link': 'https://philea.eu/members/global-dialogue/',\n", + " 'name': 'Global Dialogue',\n", + " 'position': {'address': 'The Foundry | Office Space and Conference Centre, '\n", + " '17 Oval Way, London SE11 5RR, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4858439,\n", + " 'lng': -0.1163458,\n", + " 'name': 'The Foundry | Office Space and Conference Centre',\n", + " 'place_id': 'ChIJj2Ia2ZIEdkgRBQxKgeXWaQs',\n", + " 'post_code': 'SE11 5RR',\n", + " 'state': 'England',\n", + " 'street_name': 'Oval Way',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.global-dialogue.org'},\n", + " {'address': 'Gjensidigestiftelsen Grundingen 6, Aker Brygge 0250 Oslo Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'mail@gjensidigestiftelsen.no',\n", + " 'id': 5228,\n", + " 'link': 'https://philea.eu/members/gjensidigestiftelsen/',\n", + " 'name': 'Gjensidigestiftelsen',\n", + " 'position': {'address': 'Gjensidigestiftelsen, Aker Brygge, Grundingen 6, '\n", + " '0250 Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.91064249999999,\n", + " 'lng': 10.7279563,\n", + " 'name': 'Gjensidigestiftelsen',\n", + " 'place_id': 'ChIJ1V49AYFuQUYRYTyGzG6PQVw',\n", + " 'post_code': '0250',\n", + " 'state': 'Oslo',\n", + " 'street_name': 'Grundingen',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gjensidigestiftelsen.no/english'},\n", + " {'address': 'The German Marshall Fund of the United States 1744 R Street, NW '\n", + " '20009 Washington, DC United States',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 5227,\n", + " 'link': 'https://philea.eu/members/german-marshall-fund-of-the-united-states-the/',\n", + " 'name': 'German Marshall Fund of the United States, The',\n", + " 'position': {'address': 'The German Marshall Fund of the United States, 1744 '\n", + " 'R Street Northwest, Washington, DC 20009, United '\n", + " 'States',\n", + " 'city': 'Washington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.9124205,\n", + " 'lng': -77.0402714,\n", + " 'name': 'The German Marshall Fund of the United States',\n", + " 'place_id': 'ChIJc3tDMsS3t4kRn7RO_AoyGbw',\n", + " 'post_code': '20009',\n", + " 'state': 'District of Columbia',\n", + " 'state_short': 'DC',\n", + " 'street_name': 'R Street Northwest',\n", + " 'street_name_short': 'R St NW',\n", + " 'street_number': '1744',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gmfus.org'},\n", + " {'address': 'Gerda Henkel Stiftung Malkastenstrasse 15 40211 Dusseldorf '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@gerda-henkel-stiftung.de',\n", + " 'id': 5226,\n", + " 'link': 'https://philea.eu/members/gerda-henkel-stiftung/',\n", + " 'name': 'Gerda Henkel Stiftung',\n", + " 'position': {'address': 'Gerda Henkel Stiftung, Malkastenstraße 15, 40211 '\n", + " 'Düsseldorf, Germany',\n", + " 'city': 'Düsseldorf',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.2306679,\n", + " 'lng': 6.788907200000001,\n", + " 'name': 'Gerda Henkel Stiftung',\n", + " 'place_id': 'ChIJ9ZOpRCbKuEcRtgW0xqj1p9s',\n", + " 'post_code': '40211',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Malkastenstraße',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gerda-henkel-stiftung.de'},\n", + " {'address': 'Genio Trust Westland Square 19-21 Pearse Street D02 YH27 Dublin '\n", + " '2 Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': 'info@genio.ie',\n", + " 'id': 5225,\n", + " 'link': 'https://philea.eu/members/genio/',\n", + " 'name': 'Genio',\n", + " 'position': {'address': 'Westland Square, Pearse Street, Dublin 2, Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.3443049,\n", + " 'lng': -6.2474485,\n", + " 'name': 'Westland Square',\n", + " 'place_id': 'ChIJIwvWjpEOZ0gRop0AhQYcs1Q',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Pearse Street',\n", + " 'street_name_short': 'Pearse St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.genio.ie'},\n", + " {'address': 'Fundación Ramón Areces Calle Vitruvio, 5 28006 Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'secretaria@fundacionareces.es',\n", + " 'id': 5222,\n", + " 'link': 'https://philea.eu/members/fundacion-ramon-areces/',\n", + " 'name': 'Fundación Ramón Areces',\n", + " 'position': {'address': 'Fundación Ramón Areces, Calle Vitruvio, 5, 28006 '\n", + " 'Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4431182,\n", + " 'lng': -3.6889176,\n", + " 'name': 'Ramón Areces Foundation',\n", + " 'place_id': 'ChIJOeD_Qe8oQg0R5K_qvAR32ME',\n", + " 'post_code': '28006',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Vitruvio',\n", + " 'street_name_short': 'C. de Vitruvio',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionareces.es'},\n", + " {'address': 'Fundación Princesa de Girona C. Juli Garreta, 1, 1r E 17002 '\n", + " 'Girona Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fpdgi.org',\n", + " 'id': 5221,\n", + " 'link': 'https://philea.eu/members/fundacion-princesa-de-girona/',\n", + " 'name': 'Fundación Princesa de Girona',\n", + " 'position': {'address': 'Fundació Princesa de Girona, Carrer Juli Garreta, '\n", + " '1, 1r E, 17002 Girona, Spain',\n", + " 'city': 'Gerona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.9797082,\n", + " 'lng': 2.8195976,\n", + " 'name': 'Fundació Princesa de Girona',\n", + " 'place_id': 'ChIJRSrtZcrmuhIR1KZjv8tfY4s',\n", + " 'post_code': '17002',\n", + " 'state': 'Cataluña',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Carrer Juli Garreta',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://en.fpdgi.org/'},\n", + " {'address': 'Fundación Princesa de Asturias General Yagüe 2, 1° 33004 Oviedo '\n", + " 'Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fpa.es',\n", + " 'id': 5220,\n", + " 'link': 'https://philea.eu/members/fundacion-princesa-de-asturias/',\n", + " 'name': 'Fundación Princesa de Asturias',\n", + " 'position': {'address': 'Princess of Asturias Foundation, General Yagüe, '\n", + " 'Oviedo, Spain',\n", + " 'city': 'Oviedo',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 43.3628135,\n", + " 'lng': -5.8532017,\n", + " 'name': 'Princess of Asturias Foundation',\n", + " 'place_id': 'ChIJ25ExJeOMNg0RUcoNBo3_PiA',\n", + " 'post_code': '33004',\n", + " 'state': 'Principado de Asturias',\n", + " 'state_short': 'AS',\n", + " 'street_name': 'General Yagüe',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fpa.es'},\n", + " {'address': 'Fundación ONCE C/ Sebastián Herrera 15 28012 Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'dae@fundaciononce.es',\n", + " 'id': 5219,\n", + " 'link': 'https://philea.eu/members/fundacion-once/',\n", + " 'name': 'Fundación ONCE',\n", + " 'position': {'address': 'Fundación ONCE, Calle de Sebastián Herrera, 15, '\n", + " '28012 Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4040145,\n", + " 'lng': -3.6994322,\n", + " 'name': 'Fundación ONCE',\n", + " 'place_id': 'ChIJcSbqcy0mQg0R9k83WEfJnP4',\n", + " 'post_code': '28012',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Sebastián Herrera',\n", + " 'street_name_short': 'C. de Sebastián Herrera',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundaciononce.es'},\n", + " {'address': 'Fundacion Maria Cristina Masaveu Peterson Alcalá Galiano 6 28010 '\n", + " 'Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'secretaria@fundacioncristinamasaveu.com',\n", + " 'id': 5218,\n", + " 'link': 'https://philea.eu/members/fundacion-maria-cristina-masaveu-peterson/',\n", + " 'name': 'Fundación María Cristina Masaveu Peterson',\n", + " 'position': {'address': 'Fundación María Cristina Masaveu Peterson, Calle '\n", + " 'Alcalá Galiano, 6, 28010 Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.426676,\n", + " 'lng': -3.691599,\n", + " 'name': 'Fundación María Cristina Masaveu Peterson',\n", + " 'place_id': 'ChIJJcrHx5EoQg0RXTX908LZ5e8',\n", + " 'post_code': '28010',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle Alcalá Galiano',\n", + " 'street_name_short': 'C. Alcalá Galiano',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacioncristinamasaveu.com/en/'},\n", + " {'address': 'Calle Maria de Molina, 11-13-15, 28006 Madrid, España',\n", + " 'country': 'Spain',\n", + " 'email': 'iefoundation@ie.edu',\n", + " 'id': 5217,\n", + " 'link': 'https://philea.eu/members/ie-foundation/',\n", + " 'name': 'IE Foundation',\n", + " 'position': {'address': 'Calle de María de Molina, 11-13-15, 28006 Madrid, '\n", + " 'España',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4375247,\n", + " 'lng': -3.6894636,\n", + " 'name': 'Calle de María de Molina, 11-13-15',\n", + " 'place_id': 'ChIJVVVlOOwoQg0RnhDE1RKpXl0',\n", + " 'post_code': '28006',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de María de Molina',\n", + " 'street_number': '11-13-15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.ie.edu/ie-foundation/'},\n", + " {'address': 'Fundación Barrié Cantón Grande, 9 15003 A Coruña Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fbarrie.org',\n", + " 'id': 5216,\n", + " 'link': 'https://philea.eu/members/fundacion-barrie/',\n", + " 'name': 'Fundación Barrié',\n", + " 'position': {'address': 'Fundación Barrié, Rúa Cantón Grande, 9, 15003 A '\n", + " 'Coruña, Spain',\n", + " 'city': 'A Coruña',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 43.36801620000001,\n", + " 'lng': -8.403474800000001,\n", + " 'name': 'Fundación Barrié',\n", + " 'place_id': 'ChIJ_Vr12318Lg0R3jcNUA9hatk',\n", + " 'post_code': '15003',\n", + " 'state': 'Galicia',\n", + " 'state_short': 'GA',\n", + " 'street_name': 'Rúa Cantón Grande',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionbarrie.org'},\n", + " {'address': 'Fundação Luso-Americana para o Desenvolvimento Rua do Sacramento '\n", + " 'à Lapa 21 1249-090 Lisbon Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'fladport@flad.pt',\n", + " 'id': 5214,\n", + " 'link': 'https://philea.eu/members/fundacao-luso-americana-para-o-desenvolvimento/',\n", + " 'name': 'Fundação Luso-Americana para o Desenvolvimento',\n", + " 'position': {'address': 'Rua Sacramento à Lapa 21, Lisbon, Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.708293,\n", + " 'lng': -9.162948499999999,\n", + " 'name': 'R. Sacramento à Lapa 21',\n", + " 'place_id': 'ChIJu2jwj540GQ0RpMgVt3mWgcs',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Rua Sacramento à Lapa',\n", + " 'street_name_short': 'R. Sacramento à Lapa',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.flad.pt'},\n", + " {'address': 'Fundação Calouste Gulbenkian Avenida de Berna 45ª 1067-001 '\n", + " 'Lisbon Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'info@gulbenkian.pt',\n", + " 'id': 5213,\n", + " 'link': 'https://philea.eu/members/fundacao-calouste-gulbenkian/',\n", + " 'name': 'Fundação Calouste Gulbenkian',\n", + " 'position': {'address': 'Avenida de Berna 45 A, Lisbon, Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.7373239,\n", + " 'lng': -9.1544367,\n", + " 'name': 'Av. de Berna 45 A',\n", + " 'place_id': 'ChIJky4ozw0zGQ0RNNlnB1Kvuo8',\n", + " 'post_code': '1050-078',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Avenida de Berna',\n", + " 'street_name_short': 'Av. de Berna',\n", + " 'street_number': '45 A',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gulbenkian.pt'},\n", + " {'address': 'Fritt Ord Foundation Uranienborgveien 2 0258 Oslo Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@frittord.no',\n", + " 'id': 5211,\n", + " 'link': 'https://philea.eu/members/fritt-ord-foundation/',\n", + " 'name': 'Fritt Ord Foundation',\n", + " 'position': {'address': 'Fritt Ord, Uranienborgveien 2, 0258 Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.9199598,\n", + " 'lng': 10.7264898,\n", + " 'name': 'Fritt Ord',\n", + " 'place_id': 'ChIJveWuq3huQUYRTOGkJjmrBaA',\n", + " 'post_code': '0258',\n", + " 'state': 'Oslo',\n", + " 'street_name': 'Uranienborgveien',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.frittord.no/'},\n", + " {'address': 'Freudenberg Stiftung GmbH Freudenberg Straße 2 69469 Weinheim '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@freudenbergstiftung.de',\n", + " 'id': 5210,\n", + " 'link': 'https://philea.eu/members/freudenberg-stiftung-gmbh/',\n", + " 'name': 'Freudenberg Stiftung GmbH',\n", + " 'position': {'address': 'Freudenberg Stiftung GmbH, Freudenbergstraße 2, '\n", + " '69469 Weinheim, Germany',\n", + " 'city': 'Weinheim',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 49.54678930000001,\n", + " 'lng': 8.6686229,\n", + " 'name': 'Freudenberg Stiftung',\n", + " 'place_id': 'ChIJq-Y4QDzbl0cRBks74TPq6jQ',\n", + " 'post_code': '69469',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Freudenbergstraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.freudenbergstiftung.de'},\n", + " {'address': 'Centre Français des Fonds et Fondations 34bis, Rue Vignon (3e '\n", + " 'étage) 75009 Paris France',\n", + " 'country': 'France',\n", + " 'email': 'info@centre-francais-fondations.org',\n", + " 'id': 5113,\n", + " 'link': 'https://philea.eu/members/french-foundation-centre/',\n", + " 'name': 'French Foundation Centre',\n", + " 'position': {'address': 'French Center Funds and Foundations, Rue Vignon, '\n", + " 'Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.87247439999999,\n", + " 'lng': 2.3267006,\n", + " 'name': 'French Center Funds and Foundations',\n", + " 'place_id': 'ChIJA4HSZDRu5kcR3H-xSIWTGUk',\n", + " 'post_code': '75009',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Vignon',\n", + " 'street_number': '34 bis',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.centre-francais-fondations.org'},\n", + " {'address': 'Foundation for Polish Science Ignacego Krasickiego 20/22 02-611 '\n", + " 'Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'fnp@fnp.org.pl',\n", + " 'id': 5209,\n", + " 'link': 'https://philea.eu/members/foundation-for-polish-science/',\n", + " 'name': 'Foundation for Polish Science',\n", + " 'position': {'address': 'Foundation for Polish Science, Ignacego Krasickiego '\n", + " '20/22, 02-611 Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.1932676,\n", + " 'lng': 21.02082279999999,\n", + " 'name': 'Foundation for Polish Science',\n", + " 'place_id': 'ChIJIXitbyvNHkcRiWmzoAGXue4',\n", + " 'post_code': '02-611',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Ignacego Krasickiego',\n", + " 'street_number': '20/22',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fnp.org.pl/en/'},\n", + " {'address': 'Foundation for Future Generations rue des Brasseurs, 182 5000 '\n", + " 'Namur Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'fgf@fgf.be',\n", + " 'id': 5208,\n", + " 'link': 'https://philea.eu/members/foundation-for-future-generations/',\n", + " 'name': 'Foundation for Future Generations',\n", + " 'position': {'address': 'Rue des Brasseurs 182, 5000 Namur, Belgium',\n", + " 'city': 'Namur',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.4623091,\n", + " 'lng': 4.8615162,\n", + " 'name': 'Rue des Brasseurs 182',\n", + " 'place_id': 'ChIJf3oGvHGZwUcRKku0PAkuwyU',\n", + " 'post_code': '5000',\n", + " 'state': 'Région Wallonne',\n", + " 'state_short': 'NA',\n", + " 'street_name': 'Rue des Brasseurs',\n", + " 'street_number': '182',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.foundationfuturegenerations.org'},\n", + " {'address': 'Ford Foundation 320 East 43rd Street 10017 New York City United '\n", + " 'States',\n", + " 'country': 'United States',\n", + " 'email': 'office-of-communications@fordfoundation.org',\n", + " 'id': 5206,\n", + " 'link': 'https://philea.eu/members/ford-foundation/',\n", + " 'name': 'Ford Foundation',\n", + " 'position': {'address': 'Ford Foundation, 320 East 43rd Street, Manhattan, '\n", + " 'New York, NY 10017, United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.74979529999999,\n", + " 'lng': -73.9711624,\n", + " 'name': 'Ford Foundation Center for Social Justice',\n", + " 'place_id': 'ChIJ-f_F2txZwokR_cfRXvbXrsI',\n", + " 'post_code': '10017',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'East 43rd Street',\n", + " 'street_name_short': 'E 43rd St',\n", + " 'street_number': '320',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fordfound.org'},\n", + " {'address': 'Fondazione Cassa di Risparmio della Provincia di Teramo Largo '\n", + " 'Melatini 17/23 64100 Teramo Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionetercas.it',\n", + " 'id': 5204,\n", + " 'link': 'https://philea.eu/members/fondazione-tercas/',\n", + " 'name': 'Fondazione Tercas',\n", + " 'position': {'address': 'Fondazione Cassa Di Risparmio Della Provincia Di '\n", + " 'Teramo, Largo Melatino, Teramo, Province of Teramo, '\n", + " 'Italy',\n", + " 'city': 'Teramo',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.65857889999999,\n", + " 'lng': 13.7064468,\n", + " 'name': 'Fondazione Cassa Di Risparmio Della Provincia Di '\n", + " 'Teramo',\n", + " 'place_id': 'ChIJk18pRPXnMRMRc1eECELe7sc',\n", + " 'post_code': '64100',\n", + " 'state': 'Abruzzo',\n", + " 'state_short': 'TE',\n", + " 'street_name': 'Largo Melatino',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionetercas.it'},\n", + " {'address': 'Fondazione Sviluppo e Crescita CRT Via XX Settembre, 31 10121 '\n", + " 'Torino Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@sviluppoecrescitacrt.it',\n", + " 'id': 5203,\n", + " 'link': 'https://philea.eu/members/fondazione-sviluppo-e-crescita-crt/',\n", + " 'name': 'Fondazione Sviluppo e Crescita CRT',\n", + " 'position': {'address': 'Fondazione CRT, Via XX Settembre, 31, 10121 Torino, '\n", + " 'Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0669842,\n", + " 'lng': 7.680321699999999,\n", + " 'name': 'Fondazione CRT',\n", + " 'place_id': 'ChIJg3DDLGxtiEcRCRSv3n0__IY',\n", + " 'post_code': '10121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via XX Settembre',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sviluppoecrescitacrt.it/'},\n", + " {'address': 'Fondazione Monte dei Paschi di Siena Via Banchi di Sotto 34 '\n", + " '53100 Siena Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fmps@fondazionemps.it',\n", + " 'id': 5201,\n", + " 'link': 'https://philea.eu/members/fondazione-monte-dei-paschi-di-siena/',\n", + " 'name': 'Fondazione Monte dei Paschi di Siena',\n", + " 'position': {'address': 'Fondazione Mps, Banchi di Sotto, 34, 53100 Siena, '\n", + " 'Province of Siena, Italy',\n", + " 'city': 'Siena',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.3191491,\n", + " 'lng': 11.3319299,\n", + " 'name': 'Fondazione Mps',\n", + " 'place_id': 'ChIJu71NtWctKhMRG2xgBB9OM_c',\n", + " 'post_code': '53100',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'SI',\n", + " 'street_name': 'Banchi di Sotto',\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionemps.it'},\n", + " {'address': 'Fondazione Invernizzi Corso Venezia 32 20121 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazioneinvernizzi.it',\n", + " 'id': 5200,\n", + " 'link': 'https://philea.eu/members/fondazione-invernizzi/',\n", + " 'name': 'Fondazione Invernizzi',\n", + " 'position': {'address': 'Corso Venezia, 32, 20121 Milan, Metropolitan City '\n", + " 'of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.47093,\n", + " 'lng': 9.201731700000002,\n", + " 'name': 'Corso Venezia, 32',\n", + " 'place_id': 'ChIJIV4D27vGhkcR3N5fFVnr_1U',\n", + " 'post_code': '20121',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Corso Venezia',\n", + " 'street_number': '32',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazioneinvernizzi.it/en'},\n", + " {'address': 'Fondazione Generali – The Human Safety Net- Ente Filantropico '\n", + " 'Piazza Duca degli Abruzzi 2, 34132 Trieste Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'contact@thehumansafetynet.org',\n", + " 'id': 5199,\n", + " 'link': 'https://philea.eu/members/fondazione-generali-the-human-safety-net-onlus/',\n", + " 'name': 'The Human Safety Net',\n", + " 'position': {'address': 'Fondazione Generali – The Human Safety Net- Ente '\n", + " 'Filantropico Piazza Duca degli Abruzzi 2, 34132 '\n", + " 'Trieste Italy',\n", + " 'city': 'Trieste',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.6536226,\n", + " 'lng': 13.7706201,\n", + " 'place_id': 'ChIJd-p2FG5re0cRF2dfC4hfT_8',\n", + " 'post_code': '34132',\n", + " 'state': 'Friuli-Venezia Giulia',\n", + " 'state_short': 'TS',\n", + " 'street_name': 'Piazza Luigi Amedeo Duca degli Abruzzi',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.thehumansafetynet.org'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Modena Via Emilia Centro 283 '\n", + " '41121 Modena Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionedimodena.it',\n", + " 'id': 5196,\n", + " 'link': 'https://philea.eu/members/fondazione-di-modena/',\n", + " 'name': 'Fondazione di Modena',\n", + " 'position': {'address': 'Via Emilia, Modena, Province of Modena, Italy',\n", + " 'city': 'Modena',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.6467188,\n", + " 'lng': 10.9260543,\n", + " 'name': 'Via Emilia',\n", + " 'place_id': 'EiJWaWEgRW1pbGlhLCA0MTEyMSBNb2RlbmEgTU8sIEl0YWx5Ii4qLAoUChIJie4tfBTvf0cRUVB1UgvdwvUSFAoSCeFkSd0S739HESh_K0l9HnWW',\n", + " 'post_code': '41121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'MO',\n", + " 'street_name': 'Via Emilia',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionedimodena.it/'},\n", + " {'address': 'Fondazione CRT Via XX Settembre 31 10121 Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrt.it',\n", + " 'id': 5195,\n", + " 'link': 'https://philea.eu/members/fondazione-crt/',\n", + " 'name': 'Fondazione CRT',\n", + " 'position': {'address': 'Fondazione CRT, Via XX Settembre, 31, 10121 Turin, '\n", + " 'Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0669842,\n", + " 'lng': 7.680321699999999,\n", + " 'name': 'Fondazione CRT',\n", + " 'place_id': 'ChIJg3DDLGxtiEcRCRSv3n0__IY',\n", + " 'post_code': '10121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via XX Settembre',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrt.it'},\n", + " {'address': 'Fondazione CON IL SUD Corso Vittorio Emanuele II, 184 00186 Rome '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazioneconilsud.it',\n", + " 'id': 5194,\n", + " 'link': 'https://philea.eu/members/fondazione-con-il-sud/',\n", + " 'name': 'Fondazione CON IL SUD',\n", + " 'position': {'address': 'Corso Vittorio Emanuele II, 184, 00186 Rome, '\n", + " 'Metropolitan City of Rome, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.89723420000001,\n", + " 'lng': 12.4707195,\n", + " 'name': 'Corso Vittorio Emanuele II, 184',\n", + " 'place_id': 'ChIJOdwzCkVgLxMRa-5qAefkCtE',\n", + " 'post_code': '00186',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Corso Vittorio Emanuele II',\n", + " 'street_number': '184',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazioneconilsud.it/'},\n", + " {'address': 'Compagnia di San Paolo Corso Vittorio Emanuele II, 75 10128 '\n", + " 'Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@compagniadisanpaolo.it',\n", + " 'id': 5193,\n", + " 'link': 'https://philea.eu/members/fondazione-compagnia-di-san-paolo/',\n", + " 'name': 'Fondazione Compagnia di San Paolo',\n", + " 'position': {'address': 'Compagnia di San Paolo, Corso Vittorio Emanuele II, '\n", + " '75, 10128 Turin, Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0644594,\n", + " 'lng': 7.673241600000002,\n", + " 'name': 'Compagnia di San Paolo',\n", + " 'place_id': 'ChIJOdpkvBRtiEcRrWoEhGIxhEU',\n", + " 'post_code': '10128',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Corso Vittorio Emanuele II',\n", + " 'street_number': '75',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.compagniadisanpaolo.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio in Bologna (CARISBO) Via Farini, '\n", + " '15 40124 Bologna Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecarisbo.it',\n", + " 'id': 5191,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-in-bologna/',\n", + " 'name': 'Fondazione Cassa di Risparmio in Bologna',\n", + " 'position': {'address': 'Via Farini, 15, Bologna, Metropolitan City of '\n", + " 'Bologna, Italy',\n", + " 'city': 'Bologna',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.4914577,\n", + " 'lng': 11.3461144,\n", + " 'name': 'Via Farini, 15',\n", + " 'place_id': 'ChIJHyWcbr_Uf0cR47gNmUfI4Es',\n", + " 'post_code': '40124',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'BO',\n", + " 'street_name': 'Via Farini',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecarisbo.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Parma Via al Ponte Caprazucca 4 '\n", + " '43121 Parma Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrp.it',\n", + " 'id': 5188,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-parma/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Parma',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Parma, Strada '\n", + " 'Ponte Caprazucca, Parma, Province of Parma, Italy',\n", + " 'city': 'Parma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.79847959999999,\n", + " 'lng': 10.325979,\n", + " 'name': 'Fondazione Cassa di Risparmio di Parma',\n", + " 'place_id': 'ChIJbdmPU-FqgEcRagAwQ3XrgOE',\n", + " 'post_code': '43121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'PR',\n", + " 'street_name': 'Strada Ponte Caprazucca',\n", + " 'street_name_short': 'Str. Ponte Caprazucca',\n", + " 'street_number': '4/a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrp.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Padova e Rovigo Piazza Duomo, '\n", + " '15 35141 Padova Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionecariparo.it',\n", + " 'id': 5187,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-padova-e-rovigo/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Padova e Rovigo',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Padova e Rovigo, '\n", + " 'Piazza Duomo, Padua, Province of Padua, Italy',\n", + " 'city': 'Padova',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4071737,\n", + " 'lng': 11.8727611,\n", + " 'name': 'Fondazione Cassa di Risparmio di Padova e Rovigo',\n", + " 'place_id': 'ChIJ9V56vE_afkcRSmb0ohCX3D4',\n", + " 'post_code': '35139',\n", + " 'state': 'Veneto',\n", + " 'state_short': 'PD',\n", + " 'street_name': 'Piazza Duomo',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariparo.it'},\n", + " {'address': 'Ente Cassa di Risparmio di Firenze Via Bufalini 6 I-50122 '\n", + " 'Florence Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'europeanaffairs@fcrf.it',\n", + " 'id': 5186,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-firenze/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Firenze',\n", + " 'position': {'address': 'Foundation Cassa Di Risparmio di Firenze, Via '\n", + " 'Maurizio Bufalini, 6, 50122 Florence, Metropolitan '\n", + " 'City of Florence, Italy',\n", + " 'city': 'Firenze',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.7737305,\n", + " 'lng': 11.2586293,\n", + " 'name': 'Foundation Cassa Di Risparmio di Firenze',\n", + " 'place_id': 'ChIJW1xocARUKhMR2pMRmrXAHF4',\n", + " 'post_code': '50122',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'FI',\n", + " 'street_name': 'Via Maurizio Bufalini',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionecrfirenze.it/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Cuneo Via Roma, 17 12100 Cuneo '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrc.it',\n", + " 'id': 5185,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-cuneo/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Cuneo',\n", + " 'position': {'address': 'Fondazione Cassa Di Risparmio Di Cuneo, Via Roma, '\n", + " '17, 12100 Cuneo, Province of Cuneo, Italy',\n", + " 'city': 'Cuneo',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.39335699999999,\n", + " 'lng': 7.552000299999998,\n", + " 'name': 'Foundation Of Cuneo Savings Bank',\n", + " 'place_id': 'ChIJuc6f3z1pzRIRJCG-oPWv6QI',\n", + " 'post_code': '12100',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'CN',\n", + " 'street_name': 'Via Roma',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrc.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler '\n", + " 'Sparkasse Via Talvera, 18 39100 Bolzano Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecassarisparmiobz.it',\n", + " 'id': 5184,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-bolzano-stiftung-sudtiroler-sparkasse/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler '\n", + " 'Sparkasse',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Bolzano, Via '\n", + " 'Talvera, 18, 39100 Bolzano, Province of Bolzano - '\n", + " 'South Tyrol, Italy',\n", + " 'city': 'Bolzano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 46.500426,\n", + " 'lng': 11.348563,\n", + " 'name': 'Fondazione Cassa di Risparmio di Bolzano',\n", + " 'place_id': 'ChIJx-xzsn2egkcRgvUEP26hFG0',\n", + " 'post_code': '39100',\n", + " 'state': 'Trentino-Alto Adige',\n", + " 'state_short': 'BZ',\n", + " 'street_name': 'Via Talvera',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.stiftungsparkasse.it/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Ascoli Piceno Corso Mazzini, '\n", + " '190 63100 Ascoli Piceno Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fondazionecarisap@fondazionecarisap.it',\n", + " 'id': 5183,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-ascoli-piceno/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Ascoli Piceno',\n", + " 'position': {'address': 'Cassa Di Risparmio Di Ascoli Piceno S.P.A., Corso '\n", + " 'Giuseppe Mazzini, 190, 63100 Ascoli Piceno, '\n", + " 'Province of Ascoli Piceno, Italy',\n", + " 'city': 'Ascoli Piceno',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.8550662,\n", + " 'lng': 13.5774481,\n", + " 'name': 'Cassa Di Risparmio Di Ascoli Piceno S.P.A.',\n", + " 'place_id': 'ChIJxfj7EBD9MRMRkaLQ8qO-4VI',\n", + " 'post_code': '63100',\n", + " 'state': 'Marche',\n", + " 'state_short': 'AP',\n", + " 'street_name': 'Corso Giuseppe Mazzini',\n", + " 'street_name_short': 'C. Mazzini',\n", + " 'street_number': '190',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecarisap.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Alessandria Piazza della '\n", + " 'Libertà, 28 15121 Alessandria Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'direzione@fondazionecralessandria.it',\n", + " 'id': 5182,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-alessandria/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Alessandria',\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Alessandria, '\n", + " 'Piazza della Libertà, 28, 15121 Alessandria, '\n", + " 'Province of Alessandria, Italy',\n", + " 'city': 'Alessandria',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.9140767,\n", + " 'lng': 8.6154444,\n", + " 'name': 'Fondazione Cassa di Risparmio di Alessandria',\n", + " 'place_id': 'ChIJUcK2sz50h0cROmC3ZZgvjns',\n", + " 'post_code': '15121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'AL',\n", + " 'street_name': 'Piazza della Libertà',\n", + " 'street_number': '28',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecralessandria.it'},\n", + " {'address': 'Fondazione Cassa dei Risparmi di Forli Corso Garibaldi, 45 47121 '\n", + " 'Forli Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fondazione@pec.fondazionecariforli.it',\n", + " 'id': 5180,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-dei-risparmi-di-forli/',\n", + " 'name': 'Fondazione Cassa dei Risparmi di Forlì',\n", + " 'position': {'address': \"Fondazione Cassa Di Risparmio Di Forli', Corso \"\n", + " 'Giuseppe Garibaldi, 45, 47121 Forlì, Province of '\n", + " 'Forlì-Cesena, Italy',\n", + " 'city': 'Forlì',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.2224899,\n", + " 'lng': 12.0386656,\n", + " 'name': \"Fondazione Cassa Di Risparmio Di Forli'\",\n", + " 'place_id': 'ChIJfXwK449XKxMRnPyEXec470Y',\n", + " 'post_code': '47121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'FC',\n", + " 'street_name': 'Corso Giuseppe Garibaldi',\n", + " 'street_number': '45',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariforli.it'},\n", + " {'address': 'Fondazione Cariplo Via Manin, 23 20121 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteriagenerale@fondazionecariplo.it',\n", + " 'id': 5179,\n", + " 'link': 'https://philea.eu/members/fondazione-cariplo/',\n", + " 'name': 'Fondazione Cariplo',\n", + " 'position': {'address': 'Fondazione Cariplo, Via Manin, 23, 20121 Milan, '\n", + " 'Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4752242,\n", + " 'lng': 9.196740799999999,\n", + " 'name': 'Cariplo Foundation',\n", + " 'place_id': 'ChIJX0YXuLfGhkcRcPD5VaJbfcU',\n", + " 'post_code': '20121',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Daniele Manin',\n", + " 'street_number': '23',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariplo.it'},\n", + " {'address': 'Fondazione Bracco Via Cino del Duca, 8 20122 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionebracco.com',\n", + " 'id': 5178,\n", + " 'link': 'https://philea.eu/members/fondazione-bracco/',\n", + " 'name': 'Fondazione Bracco',\n", + " 'position': {'address': 'Fondazione Bracco, Via Cino del Duca, 8, 20122 '\n", + " 'Milan, Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.466449,\n", + " 'lng': 9.2003988,\n", + " 'name': 'Fondazione Bracco',\n", + " 'place_id': 'ChIJrxCtUeXHhkcRdnjMaroUQWk',\n", + " 'post_code': '20122',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Cino del Duca',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionebracco.com'},\n", + " {'address': 'Fondazione Banca del Monte di Lucca Piazza San Martino, 4 55100 '\n", + " 'Lucca Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionebmlucca.it',\n", + " 'id': 5177,\n", + " 'link': 'https://philea.eu/members/fondazione-banca-del-monte-di-lucca/',\n", + " 'name': 'Fondazione Banca del Monte di Lucca',\n", + " 'position': {'address': 'BANCA DEL MONTE DI LUCCA SEDE DI LUCCA, Piazza San '\n", + " 'Martino, 4, 55100 Lucca, Province of Lucca, Italy',\n", + " 'city': 'Lucca',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.8406001,\n", + " 'lng': 10.5052227,\n", + " 'name': 'BANCA DEL MONTE DI LUCCA SEDE DI LUCCA',\n", + " 'place_id': 'ChIJYdhq7YqD1RIRPoBMM-B5LYs',\n", + " 'post_code': '55100',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'LU',\n", + " 'street_name': 'Piazza San Martino',\n", + " 'street_name_short': 'Piazza S. Martino',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionebmlucca.it'},\n", + " {'address': 'Corso Vittorio Emanuele II, 75 - 10128 TORINO',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazione1563.it',\n", + " 'id': 5175,\n", + " 'link': 'https://philea.eu/members/fondazione-1563-per-larte-e-la-cultura-della-compagnia-di-san-paolo/',\n", + " 'name': '1563 Foundation for Art and Culture',\n", + " 'position': {'address': 'Via Passo Buole, 175, 10135 Torino TO, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.02806036236005,\n", + " 'lng': 7.642274377783158,\n", + " 'place_id': 'ChIJ8wTPnSATiEcRaipJq8UkwwM',\n", + " 'post_code': '10135',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via Passo Buole',\n", + " 'street_number': '175',\n", + " 'zoom': 16},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazione1563.it'},\n", + " {'address': 'Fondation Lombard Odier 11, rue de la Corraterie 1204 Geneva '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'contact@fondationlombardodier.org',\n", + " 'id': 5170,\n", + " 'link': 'https://philea.eu/members/fondation-lombard-odier/',\n", + " 'name': 'Fondation Lombard Odier',\n", + " 'position': {'address': 'Lombard Odier, Rue de la Corraterie 11, 1204 '\n", + " 'Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.20300879999999,\n", + " 'lng': 6.144163300000001,\n", + " 'name': 'Lombard Odier',\n", + " 'place_id': 'ChIJd5-6gilljEcRVp3cHm2TLKI',\n", + " 'post_code': '1204',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Rue de la Corraterie',\n", + " 'street_number': '11',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.lombardodier.com/home/private-clients/philanthropy/fondation-lombard-odier.html'},\n", + " {'address': 'Fondation de Luxembourg 12 Rue Erasme 1468 Luxembourg Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': 'secr@fdlux.lu',\n", + " 'id': 5167,\n", + " 'link': 'https://philea.eu/members/fondation-de-luxembourg/',\n", + " 'name': 'Fondation de Luxembourg',\n", + " 'position': {'address': 'Fondation de Luxembourg Fondation, 12 Rue Erasme, '\n", + " '1468 Luxembourg, Luxembourg',\n", + " 'city': 'Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.6244038,\n", + " 'lng': 6.149720599999999,\n", + " 'name': 'Fondation de Luxembourg Fondation',\n", + " 'place_id': 'ChIJ3ZFrujhPlUcRLoJlWNJ3pdM',\n", + " 'post_code': '1468',\n", + " 'state': 'District de Luxembourg',\n", + " 'street_name': 'Rue Erasme',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fdlux.lu'},\n", + " {'address': 'Fondation de France 40, Avenue Hoche 75008 Paris France',\n", + " 'country': 'France',\n", + " 'email': 'fondation@fdf.org',\n", + " 'id': 5165,\n", + " 'link': 'https://philea.eu/members/fondation-de-france/',\n", + " 'name': 'Fondation de France',\n", + " 'position': {'address': 'Fondation de France, 40 Avenue Hoche, 75008 Paris, '\n", + " 'France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8755259,\n", + " 'lng': 2.298763799999999,\n", + " 'name': 'Fondation de France',\n", + " 'place_id': 'ChIJ11j25Opv5kcRzrMBr1Vw3Ds',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Hoche',\n", + " 'street_name_short': 'Av. Hoche',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationdefrance.org'},\n", + " {'address': 'Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens',\n", + " 'country': 'Switzerland',\n", + " 'email': 'contact.paris@fph.ch',\n", + " 'id': 5164,\n", + " 'link': 'https://philea.eu/members/fondation-charles-leopold-mayer-pour-le-progres-de-lhomme/',\n", + " 'name': 'Fondation Charles Léopold Mayer pour le progrès humain',\n", + " 'position': {'address': 'Vortex, Route de Praz-Véguey 29, 1022 '\n", + " 'Chavannes-près-Renens',\n", + " 'city': 'Chavannes-près-Renens',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.52449619999999,\n", + " 'lng': 6.575196999999999,\n", + " 'place_id': 'ChIJ7cI3BSUxjEcRi4sMQykHFvk',\n", + " 'post_code': '1022',\n", + " 'state': 'Vaud',\n", + " 'state_short': 'VD',\n", + " 'street_name': 'Route de Praz Véguey',\n", + " 'street_name_short': 'Rte de Praz Véguey',\n", + " 'street_number': '29',\n", + " 'zoom': 12},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fph.ch'},\n", + " {'address': 'Fondation d’entreprise Chanel 135 Av. Charles de Gaulle 92200 '\n", + " 'Neuilly-sur-Seine France',\n", + " 'country': 'France',\n", + " 'email': 'info@fondationchanel.org',\n", + " 'id': 5163,\n", + " 'link': 'https://philea.eu/members/fondation-chanel/',\n", + " 'name': 'Fondation Chanel',\n", + " 'position': {'address': 'CHANEL, 135 Av. Charles de Gaulle, 92200 '\n", + " 'Neuilly-sur-Seine, France',\n", + " 'city': 'Neuilly-sur-Seine',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8832639,\n", + " 'lng': 2.266366699999999,\n", + " 'name': 'CHANEL',\n", + " 'place_id': 'ChIJr2D0GABl5kcRPWZ1Aww1YVM',\n", + " 'post_code': '92200',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Charles de Gaulle',\n", + " 'street_name_short': 'Av. Charles de Gaulle',\n", + " 'street_number': '135',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationchanel.org/'},\n", + " {'address': 'Fondation Botnar St. Alban-Vorstadt 56 4052 Basel Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@fondationbotnar.org',\n", + " 'id': 5162,\n", + " 'link': 'https://philea.eu/members/fondation-botnar/',\n", + " 'name': 'Fondation Botnar',\n", + " 'position': {'address': 'Fondation Botnar, St. Alban-Vorstadt 56, 4052 '\n", + " 'Basel, Switzerland',\n", + " 'city': 'Basel',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.554306,\n", + " 'lng': 7.598050300000001,\n", + " 'name': 'Fondation Botnar',\n", + " 'place_id': 'ChIJda_IuLK5kUcR0zvp3Ql0EXU',\n", + " 'post_code': '4052',\n", + " 'state': 'Basel-Stadt',\n", + " 'state_short': 'BS',\n", + " 'street_name': 'Sankt Alban-Vorstadt',\n", + " 'street_name_short': 'St. Alban-Vorstadt',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondationbotnar.org/home'},\n", + " {'address': 'Suomen Kulttuurirahasto P.O. Box 203, Bulevardi 5 A 13 00121 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'yleisinfo@skr.fi',\n", + " 'id': 5160,\n", + " 'link': 'https://philea.eu/members/finnish-cultural-foundation/',\n", + " 'name': 'Finnish Cultural Foundation',\n", + " 'position': {'address': 'Bulevardi 5a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1651316,\n", + " 'lng': 24.9387852,\n", + " 'name': 'Bulevardi 5a',\n", + " 'place_id': 'ChIJc721yssLkkYRnTqnktrxEhc',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Bulevardi',\n", + " 'street_number': '5a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.skr.fi'},\n", + " {'address': 'Evens Foundation Stoopstraat 1 5th floor B-2000 Antwerp Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'antwerp@evensfoundation.be',\n", + " 'id': 5158,\n", + " 'link': 'https://philea.eu/members/evens-foundation/',\n", + " 'name': 'Evens Foundation',\n", + " 'position': {'address': 'Antwerp, Belgium',\n", + " 'city': 'Antwerp',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 51.2213404,\n", + " 'lng': 4.4051485,\n", + " 'name': 'Antwerp',\n", + " 'place_id': 'ChIJfYjDv472w0cRuIqogoRErz4',\n", + " 'state': 'Flanders',\n", + " 'state_short': 'AN',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.evensfoundation.be'},\n", + " {'address': 'European University Institute Via della Badia dei Roccettini 9 '\n", + " '50014 Firenze Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'External.Relations@eui.eu',\n", + " 'id': 5380,\n", + " 'link': 'https://philea.eu/members/european-university-institute/',\n", + " 'name': 'European University Institute',\n", + " 'position': {'address': 'European University Institute, Via della Badia dei '\n", + " 'Roccettini, 9, 50014 Fiesole, Metropolitan City of '\n", + " 'Florence, Italy',\n", + " 'city': 'Fiesole',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.803079,\n", + " 'lng': 11.282959,\n", + " 'name': 'European University Institute',\n", + " 'place_id': 'ChIJPyVxQANUKhMR1WHvAi0UEf4',\n", + " 'post_code': '50014',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'FI',\n", + " 'street_name': 'Via della Badia dei Roccettini',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.eui.eu'},\n", + " {'address': 'European Foundation for Philanthropy and Society Development '\n", + " 'Dedici 83 10000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@europskazaklada-filantropija.hr',\n", + " 'id': 5151,\n", + " 'link': 'https://philea.eu/members/european-foundation-for-philanthropy-and-society-development/',\n", + " 'name': 'European Foundation for Philanthropy and Society Development',\n", + " 'position': {'address': '10000, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.8348464,\n", + " 'lng': 15.970761,\n", + " 'name': '10000',\n", + " 'place_id': 'ChIJCeEflHXXZUcRwlEzNVCtABM',\n", + " 'post_code': '10000',\n", + " 'state': 'City of Zagreb',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.europskazaklada-filantropija.hr'},\n", + " {'address': 'European Cultural Foundation Jan van Goyenkade 5 1075 HN '\n", + " 'Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'ask@culturalfoundation.eu',\n", + " 'id': 5150,\n", + " 'link': 'https://philea.eu/members/european-cultural-foundation/',\n", + " 'name': 'European Cultural Foundation',\n", + " 'position': {'address': 'European Cultural Foundation, Jan van Goyenkade 5, '\n", + " '1075 HN Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3521037,\n", + " 'lng': 4.868836099999999,\n", + " 'name': 'European Cultural Foundation',\n", + " 'place_id': 'ChIJZcifLPwJxkcRUH9OYjp85Hk',\n", + " 'post_code': '1075 HN',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Jan van Goyenkade',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.culturalfoundation.eu'},\n", + " {'address': 'European Climate Foundation Riviervismarkt 5 2513 AM The Hague '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@europeanclimate.org',\n", + " 'id': 5148,\n", + " 'link': 'https://philea.eu/members/european-climate-foundation/',\n", + " 'name': 'European Climate Foundation',\n", + " 'position': {'address': 'Stichting European Climate Foundation, '\n", + " 'Riviervismarkt 5, 2513 AM The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0766884,\n", + " 'lng': 4.306905,\n", + " 'name': 'Stichting European Climate Foundation',\n", + " 'place_id': 'ChIJzwwgWTu3xUcRHgynkalZKEY',\n", + " 'post_code': '2513 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Riviervismarkt',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.europeanclimate.org'},\n", + " {'address': 'Europe Foundation - 3 Kavsadze Street, Tbilisi 0179 Georgia',\n", + " 'country': 'Georgia',\n", + " 'email': 'info@epfound.ge',\n", + " 'id': 5146,\n", + " 'link': 'https://philea.eu/members/europe-foundation/',\n", + " 'name': 'Europe Foundation',\n", + " 'position': {'address': 'Europe Foundation, 3 Lado Kavsadze Street, Tbilisi, '\n", + " 'Georgia',\n", + " 'city': \"T'bilisi\",\n", + " 'country': 'Georgia',\n", + " 'country_short': 'GE',\n", + " 'lat': 41.7097949,\n", + " 'lng': 44.76136189999999,\n", + " 'name': 'Europe Foundation',\n", + " 'place_id': 'ChIJM27xrTZzREARCNWG_0EXO5M',\n", + " 'state': 'Tbilisi',\n", + " 'street_name': 'Lado Kavsadze Street',\n", + " 'street_name_short': 'Lado Kavsadze St',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.epfound.ge'},\n", + " {'address': 'Rue de la Charité 22, 1210 Brussels',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@eurochild.org',\n", + " 'id': 5145,\n", + " 'link': 'https://philea.eu/members/eurochild/',\n", + " 'name': 'Eurochild',\n", + " 'position': {'address': 'Rue de la Charité 22, 1210 Saint-Josse-ten-Noode, '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Saint-Josse-ten-Noode',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8481605,\n", + " 'lng': 4.370557499999999,\n", + " 'name': 'Rue de la Charité 22',\n", + " 'place_id': 'ChIJefxwSX3Dw0cR7dBO3d-x2-A',\n", + " 'post_code': '1210',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue de la Charité',\n", + " 'street_number': '22',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.eurochild.org'},\n", + " {'address': 'Essl Foundation MGE gemeinnützige Privatstiftung Haus der '\n", + " 'Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift '\n", + " '5&6 Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'office@zeroproject.org',\n", + " 'id': 5144,\n", + " 'link': 'https://philea.eu/members/essl-foundation-mge-gemeinnutzige-privatstiftung/',\n", + " 'name': 'Essl Foundation MGE gemeinnützige Privatstiftung',\n", + " 'position': {'address': 'Essl Foundation MGE gemeinnützige Privatstiftung '\n", + " 'Haus der Philanthropie Schottenring 16/3.OG 1010 '\n", + " 'Wien Zugang über Lift 5&6 Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.2151846,\n", + " 'lng': 16.366538,\n", + " 'place_id': 'ChIJ1V1cvPkHbUcRjDLTlO5Q9JQ',\n", + " 'post_code': '1010',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Schottenring',\n", + " 'street_number': '16',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://zeroproject.org/about/the-essl-foundation-and-zero-project'},\n", + " {'address': 'ERSTE Stiftung Am Belvedere 1 1100 Vienna Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'office@erstestiftung.org',\n", + " 'id': 5143,\n", + " 'link': 'https://philea.eu/members/erste-stiftung/',\n", + " 'name': 'ERSTE Stiftung',\n", + " 'position': {'address': 'Am Belvedere 1, 1100 Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.1873204,\n", + " 'lng': 16.3792082,\n", + " 'name': 'Am Belvedere 1',\n", + " 'place_id': 'ChIJ1bgQlNepbUcRQfhnsHyl03Y',\n", + " 'post_code': '1100',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Am Belvedere',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.erstestiftung.org'},\n", + " {'address': 'Foundation DOTS Alberta iela, 13 LV-1010 Riga Latvia',\n", + " 'country': 'Latvia',\n", + " 'email': 'dots@fondsdots.lv',\n", + " 'id': 5137,\n", + " 'link': 'https://philea.eu/members/dots-foundation-for-an-open-society/',\n", + " 'name': 'DOTS Foundation for an Open Society',\n", + " 'position': {'address': 'LATO Latvian Transatlantic Organisation, Alberta '\n", + " 'iela 13, Central District, Rīga, LV-1010, Latvia',\n", + " 'city': 'Rīga',\n", + " 'country': 'Latvia',\n", + " 'country_short': 'LV',\n", + " 'lat': 56.9593018,\n", + " 'lng': 24.1080334,\n", + " 'name': 'LATO Latvian Transatlantic Organisation',\n", + " 'place_id': 'ChIJjSB_ecTP7kYROV-i4kWpXC4',\n", + " 'post_code': '1010',\n", + " 'street_name': 'Alberta iela',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondsdots.lv/en'},\n", + " {'address': 'Channel 4 BRITDOC Foundation 50 Frith Street WID 4SQ London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'beadie@britdoc.org',\n", + " 'id': 5135,\n", + " 'link': 'https://philea.eu/members/doc-society/',\n", + " 'name': 'Doc Society',\n", + " 'position': {'address': 'Frith Street, Soho, London, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5135376,\n", + " 'lng': -0.1314486,\n", + " 'name': 'Frith Street',\n", + " 'place_id': 'EhRGcml0aCBTdCwgTG9uZG9uLCBVSyIuKiwKFAoSCZFhf93SBHZIEXXreDcc1L2pEhQKEgmbf0uf1AR2SBHSXX5TzFdO5A',\n", + " 'state': 'England',\n", + " 'street_name': 'Frith Street',\n", + " 'street_name_short': 'Frith St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://docsociety.org'},\n", + " {'address': 'Deutsche Bundesstiftung Umwelt An der Bornau 2 49090 Osnabrück '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'c.soetbeer@dbu.de',\n", + " 'id': 5132,\n", + " 'link': 'https://philea.eu/members/deutsche-bundesstiftung-umwelt/',\n", + " 'name': 'Deutsche Bundesstiftung Umwelt',\n", + " 'position': {'address': 'Deutsche Bundesstiftung Umwelt, An der Bornau 2, '\n", + " '49090 Osnabrück, Germany',\n", + " 'city': 'Osnabrück',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.2863704,\n", + " 'lng': 8.032082899999999,\n", + " 'name': 'German Federal Environmental Foundation',\n", + " 'place_id': 'ChIJSz4JYMTluUcRL2asjbrjmuo',\n", + " 'post_code': '49090',\n", + " 'state': 'Niedersachsen',\n", + " 'state_short': 'NDS',\n", + " 'street_name': 'An der Bornau',\n", + " 'street_name_short': 'An d. Bornau',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dbu.de'},\n", + " {'address': \"Degroof Petercam Foundation 44 rue de l'industrie 1040 Brussels \"\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'foundation@degroofpetercam.com',\n", + " 'id': 5363,\n", + " 'link': 'https://philea.eu/members/degroof-petercam-foundation/',\n", + " 'name': 'Degroof Petercam Foundation',\n", + " 'position': {'address': \"Banque Degroof Petercam, Rue de l'Industrie 44, \"\n", + " '1040 Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8441235,\n", + " 'lng': 4.370583000000001,\n", + " 'name': 'Bank/Banque Degroof Petercam',\n", + " 'place_id': 'ChIJIbVk0pzEw0cRFTwXA3u0cVM',\n", + " 'post_code': '1040',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': \"Rue de l'Industrie\",\n", + " 'street_number': '44',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.degroofpetercam.com/en/social-impact/degroof-petercam-foundation'},\n", + " {'address': 'Daniel and Nina Carasso Foundation 40, avenue Hoche 75008 Paris '\n", + " 'France',\n", + " 'country': 'France',\n", + " 'email': 'contact@fondationcarasso.org',\n", + " 'id': 5131,\n", + " 'link': 'https://philea.eu/members/daniel-and-nina-carasso-foundation/',\n", + " 'name': 'Daniel and Nina Carasso Foundation',\n", + " 'position': {'address': '40 Avenue Hoche, 75008 Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8755934,\n", + " 'lng': 2.2987615,\n", + " 'name': '40 Av. Hoche',\n", + " 'place_id': 'ChIJu35D5Opv5kcRsvSuZmBfpV4',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Hoche',\n", + " 'street_name_short': 'Av. Hoche',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationcarasso.org/fr'},\n", + " {'address': 'Czech Donors Forum Lucerna Palace, 5th floor Stepanska 61 11602 '\n", + " 'Prague 1 Czech Republic',\n", + " 'country': 'Czech Republic',\n", + " 'email': 'donorsforum@donorsforum.cz',\n", + " 'id': 5129,\n", + " 'link': 'https://philea.eu/members/czech-donors-forum/',\n", + " 'name': 'Czech Donors Forum',\n", + " 'position': {'address': 'Štěpánská 61, New Town, Czechia',\n", + " 'country': 'Czechia',\n", + " 'country_short': 'CZ',\n", + " 'lat': 50.0809618,\n", + " 'lng': 14.4263343,\n", + " 'name': 'Štěpánská 61',\n", + " 'place_id': 'ChIJ42jlTe2UC0cRksIDVfNomKs',\n", + " 'post_code': '110 00',\n", + " 'state': 'Hlavní město Praha',\n", + " 'street_name': 'Štěpánská',\n", + " 'street_number': '61',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.donorsforum.cz'},\n", + " {'address': 'Cultiva - Kristiansand Kommunes Energiverksstiftelse Vestre '\n", + " 'Strandgate 27 4611 Kristiansand Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@cultiva.no',\n", + " 'id': 5128,\n", + " 'link': 'https://philea.eu/members/cultiva-kristiansand-kommunes-energiverksstiftelse/',\n", + " 'name': 'Cultiva - Kristiansand Kommunes Energiverksstiftelse',\n", + " 'position': {'address': 'Cultiva, Vestre Strandgate 27, 4611 Kristiansand, '\n", + " 'Kristiansand, Norway',\n", + " 'city': 'Kristiansand',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 58.14399330000001,\n", + " 'lng': 7.992162299999999,\n", + " 'name': 'Cultiva',\n", + " 'place_id': 'ChIJo_wsh2ACOEYRndP7xHpdPZc',\n", + " 'post_code': '4611',\n", + " 'state': 'Agder',\n", + " 'street_name': 'Vestre Strandgate',\n", + " 'street_number': '27',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cultiva.no'},\n", + " {'address': 'Conrad N. Hilton Foundation 30440 Agoura Road 91301 Agoura Hills '\n", + " 'United States',\n", + " 'country': 'United States',\n", + " 'email': 'alecia@hiltonfoundation.org',\n", + " 'id': 5125,\n", + " 'link': 'https://philea.eu/members/conrad-n-hilton-foundation/',\n", + " 'name': 'Conrad N. Hilton Foundation',\n", + " 'position': {'address': 'The Conrad Hilton Foundation offices, 30440 Agoura '\n", + " 'Road, Agoura Hills, CA 91301, United States',\n", + " 'city': 'Agoura Hills',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 34.1443268,\n", + " 'lng': -118.7849945,\n", + " 'name': 'The Conrad Hilton Foundation offices',\n", + " 'place_id': 'ChIJEwQzr1Al6IARUjUi658Ae44',\n", + " 'post_code': '91301',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'street_name': 'Agoura Road',\n", + " 'street_name_short': 'Agoura Rd',\n", + " 'street_number': '30440',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hiltonfoundation.org'},\n", + " {'address': 'Clean Clothes Campaign Nieuwezijds Voorburgwal 292-sous 11584 '\n", + " 'Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@cleanclothes.org',\n", + " 'id': 5359,\n", + " 'link': 'https://philea.eu/members/clean-clothes-campaign/',\n", + " 'name': 'Clean Clothes Campaign',\n", + " 'position': {'address': 'Nieuwezijds Voorburgwal 292, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3707599,\n", + " 'lng': 4.8898692,\n", + " 'name': 'Nieuwezijds Voorburgwal 292',\n", + " 'place_id': 'ChIJY0coasEJxkcRuMIaX-FXMeY',\n", + " 'post_code': '1012 RT',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Nieuwezijds Voorburgwal',\n", + " 'street_number': '292',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.cleanclothes.org'},\n", + " {'address': 'City of London, PO Box 270, Guildhall, London EC2P 2EJ',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'funding@cityoflondon.gov.uk',\n", + " 'id': 5123,\n", + " 'link': 'https://philea.eu/members/city-bridge-foundation/',\n", + " 'name': 'City Bridge Foundation',\n", + " 'position': {'address': 'City of London, PO Box 270, Guildhall, London EC2P '\n", + " '2EJ',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5159245,\n", + " 'lng': -0.0913715,\n", + " 'place_id': 'ChIJH08KIlUbdkgRsAqh3GUSyT4',\n", + " 'post_code': 'EC2V 7HH',\n", + " 'state': 'England',\n", + " 'street_name': 'Basinghall Street',\n", + " 'street_name_short': 'Basinghall St',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.citybridgefoundation.org.uk/'},\n", + " {'address': \"Children's Investment Fund Foundation 7 Clifford Street W1S 2FT \"\n", + " 'London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'hnouss@ciff.org',\n", + " 'id': 5120,\n", + " 'link': 'https://philea.eu/members/childrens-investment-fund-foundation/',\n", + " 'name': \"Children's Investment Fund Foundation\",\n", + " 'position': {'address': '7 Clifford Street, London W1S 2FT, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51110310000001,\n", + " 'lng': -0.1419121,\n", + " 'name': '7 Clifford St',\n", + " 'place_id': 'ChIJ94G6bSoFdkgRyWA5sxpEAoc',\n", + " 'post_code': 'W1S 2FT',\n", + " 'state': 'England',\n", + " 'street_name': 'Clifford Street',\n", + " 'street_name_short': 'Clifford St',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ciff.org'},\n", + " {'address': 'Paolo Chiesi Foundation Largo Belloli 11A 43122 Parma Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 5119,\n", + " 'link': 'https://philea.eu/members/chiesi-foundation/',\n", + " 'name': 'Paolo Chiesi Foundation',\n", + " 'position': {'address': 'CHIESI Foundation onlus, Largo Francesco Belloli, '\n", + " '11a, 43122 Parma, Province of Parma, Italy',\n", + " 'city': 'Parma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.837427,\n", + " 'lng': 10.3429247,\n", + " 'name': 'CHIESI Foundation onlus',\n", + " 'place_id': 'ChIJ-9YF_CJAgEcRtk16ZtI7nJ4',\n", + " 'post_code': '43122',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'PR',\n", + " 'street_name': 'Largo Francesco Belloli',\n", + " 'street_number': '11a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.paolochiesifoundation.org/'},\n", + " {'address': 'Charles Stewart Mott Foundation 503 South Saginaw St., Suite '\n", + " '1200 48502 Flint, MI United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@mott.org',\n", + " 'id': 5118,\n", + " 'link': 'https://philea.eu/members/charles-stewart-mott-foundation/',\n", + " 'name': 'Charles Stewart Mott Foundation',\n", + " 'position': {'address': 'Charles Stewart Mott Foundation, 503 S Saginaw St '\n", + " '#1200, Flint, MI 48502, United States',\n", + " 'city': 'Flint',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 43.0158607,\n", + " 'lng': -83.6904,\n", + " 'name': 'Charles Stewart Mott Foundation',\n", + " 'place_id': 'ChIJO107KheCI4gRTYacAc2ko6Q',\n", + " 'post_code': '48502',\n", + " 'state': 'Michigan',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Saginaw Street',\n", + " 'street_name_short': 'Saginaw St',\n", + " 'street_number': '503',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mott.org'},\n", + " {'address': 'Charities Aid Foundation 25 Kings Hill Avenue ME19 4TA Kings '\n", + " 'Hill United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'enquiries@cafonline.org',\n", + " 'id': 5117,\n", + " 'link': 'https://philea.eu/members/charities-aid-foundation/',\n", + " 'name': 'Charities Aid Foundation',\n", + " 'position': {'address': 'Charities Aid Foundation, 25 Kings Hill Avenue, '\n", + " 'Kings Hill, West Malling ME19 4TA, United Kingdom',\n", + " 'city': 'West Malling',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.2776417,\n", + " 'lng': 0.3949744000000001,\n", + " 'name': 'Charities Aid Foundation',\n", + " 'place_id': 'ChIJw6Pi7Ok130cRZoEb5rjdvhY',\n", + " 'post_code': 'ME19 4TA',\n", + " 'state': 'England',\n", + " 'street_name': 'Kings Hill Avenue',\n", + " 'street_name_short': 'Kings Hill Ave',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cafonline.org'},\n", + " {'address': 'Carnegie United Kingdom Trust Andrew Carnegie House, '\n", + " 'Pittencrieff Street KY12 8AW Dunfermline, Fife United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5108,\n", + " 'link': 'https://philea.eu/members/carnegie-uk-trust/',\n", + " 'name': 'Carnegie UK Trust',\n", + " 'position': {'address': 'Carnegie UK Trust, Andrew Carnegie House, '\n", + " 'Pittencrieff Street, Dunfermline, Fife KY12 8AW, '\n", + " 'United Kingdom',\n", + " 'city': 'Dunfermline',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 56.0715426,\n", + " 'lng': -3.4705687,\n", + " 'name': 'Carnegie UK Trust',\n", + " 'place_id': 'ChIJW_D-_iXSh0gRnGT6ssOIskI',\n", + " 'post_code': 'KY12 8AW',\n", + " 'state': 'Scotland',\n", + " 'street_name': 'Pittencrieff Street',\n", + " 'street_name_short': 'Pittencrieff St',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.carnegieuktrust.org.uk'},\n", + " {'address': 'Carlsbergfondet H.C. Andersens Boulevard 35 1553 Copenhagen V '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 5107,\n", + " 'link': 'https://philea.eu/members/carlsberg-foundation/',\n", + " 'name': 'Carlsberg Foundation',\n", + " 'position': {'address': 'Carlsbergfondet, H. C. Andersens Boulevard, '\n", + " 'Copenhagen Municipality, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6731157,\n", + " 'lng': 12.5738124,\n", + " 'name': 'Carlsbergfondet',\n", + " 'place_id': 'ChIJG6lQChNTUkYRuHvELW4UWjE',\n", + " 'post_code': '1553',\n", + " 'street_name': 'H. C. Andersens Boulevard',\n", + " 'street_name_short': 'H. C. Andersens Blvd.',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.carlsbergfondet.dk'},\n", + " {'address': '',\n", + " 'country': 'Austria',\n", + " 'email': '',\n", + " 'id': 5376,\n", + " 'link': 'https://philea.eu/members/caritas-foundation-austria/',\n", + " 'name': 'Caritas Foundation Austria',\n", + " 'position': {'address': 'Austria',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 47.516231,\n", + " 'lng': 14.550072,\n", + " 'name': 'Austria',\n", + " 'place_id': 'ChIJfyqdJZsHbUcRr8Hk3XvUEhA',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.caritas-foundation.at'},\n", + " {'address': 'Captain Vassilis and Carmen Constantakopoulos Foundation Zefyrou '\n", + " '60 P. Faliro 17564 Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': '',\n", + " 'id': 5106,\n", + " 'link': 'https://philea.eu/members/captain-vassilis-and-carmen-constantakopoulos-foundation/',\n", + " 'name': 'Captain Vassilis and Carmen Constantakopoulos Foundation',\n", + " 'position': {'address': 'CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS '\n", + " 'FOUNDATION, Zefirou, Palaio Faliro, Greece',\n", + " 'city': 'Paleo Faliro',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9385836,\n", + " 'lng': 23.6953717,\n", + " 'name': 'CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION',\n", + " 'place_id': 'ChIJGyhnAT-8oRQRswlTl7h3aXs',\n", + " 'post_code': '175 64',\n", + " 'state': 'Notios Tomeas Athinon',\n", + " 'street_name': 'Zefirou',\n", + " 'street_number': '60',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cvf.gr'},\n", + " {'address': \"Calala Women's Fund Girona 25 08010 Barcelona Spain\",\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'id': 5104,\n", + " 'link': 'https://philea.eu/members/calala-womens-fund/',\n", + " 'name': \"Calala Women's Fund\",\n", + " 'position': {'address': 'Carrer de Girona, 25, 08010 Barcelona, Spain',\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3916922,\n", + " 'lng': 2.1747488,\n", + " 'name': 'Carrer de Girona, 25',\n", + " 'place_id': 'ChIJ28kmXOWipBIRr6lTJkuhwZw',\n", + " 'post_code': '08010',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Carrer de Girona',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.calala.org'},\n", + " {'address': 'Bulgarian Donors Forum 4B Leonardo da Vinchi Str., floor 2 1124 '\n", + " 'Sofia Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'id': 5102,\n", + " 'link': 'https://philea.eu/members/bulgarian-donors-forum/',\n", + " 'name': 'Bulgarian Donors Forum',\n", + " 'position': {'address': '1124 Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6874493,\n", + " 'lng': 23.3457036,\n", + " 'name': '1124',\n", + " 'place_id': 'ChIJv7yyXpiFqkAR2XFfjYGgBdQ',\n", + " 'post_code': '1124',\n", + " 'state': 'Sofia City Province',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.dfbulgaria.org'},\n", + " {'address': 'Both ENDS Nieuwe Keizersgracht 45 1018 VC Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 5101,\n", + " 'link': 'https://philea.eu/members/both-ends/',\n", + " 'name': 'Both ENDS',\n", + " 'position': {'address': 'Nieuwe Keizersgracht 45, 1018 VC Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.36574659999999,\n", + " 'lng': 4.906903300000001,\n", + " 'name': 'Nieuwe Keizersgracht 45',\n", + " 'place_id': 'ChIJVYVl5JcJxkcRkroYCcBnqIA',\n", + " 'post_code': '1018 VC',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Nieuwe Keizersgracht',\n", + " 'street_number': '45',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.bothends.org'},\n", + " {'address': 'Bodossaki Foundation Mourouzi 14 10674 Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': '',\n", + " 'id': 5100,\n", + " 'link': 'https://philea.eu/members/bodossaki-foundation/',\n", + " 'name': 'Bodossaki Foundation',\n", + " 'position': {'address': 'Bodossaki Foundation, Mourouzi 14, Athens 106 74, '\n", + " 'Greece',\n", + " 'city': 'Athina',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9749303,\n", + " 'lng': 23.7424664,\n", + " 'name': 'Bodossaki Foundation',\n", + " 'place_id': 'ChIJFaVBWUC9oRQRMIVlYekEh8U',\n", + " 'post_code': '106 74',\n", + " 'state': 'Kentrikos Tomeas Athinon',\n", + " 'street_name': 'Mourouzi',\n", + " 'street_number': '14',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bodossaki.gr/en'},\n", + " {'address': 'BMW Foundation Herbert Quandt Reinhardstrasse 58 10117 Berlin '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5099,\n", + " 'link': 'https://philea.eu/members/bmw-foundation-herbert-quandt/',\n", + " 'name': 'BMW Foundation Herbert Quandt',\n", + " 'position': {'address': 'BMW Foundation Herbert Quandt, Reinhardtstraße 58, '\n", + " '10117 Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5222139,\n", + " 'lng': 13.3765928,\n", + " 'name': 'BMW Foundation Herbert Quandt',\n", + " 'place_id': 'ChIJK4FKf8BRqEcRSQWAg1ayVZg',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Reinhardtstraße',\n", + " 'street_number': '58',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://bmw-foundation.org/'},\n", + " {'address': 'Gates Foundation, 5th Avenue North, Seattle, WA, USA',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 5098,\n", + " 'link': 'https://philea.eu/members/gates-foundation/',\n", + " 'name': 'Gates Foundation',\n", + " 'position': {'address': 'Gates Foundation, 5th Avenue North, Seattle, WA, '\n", + " 'USA',\n", + " 'city': 'Seattle',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 47.6233319,\n", + " 'lng': -122.3465813,\n", + " 'place_id': 'ChIJM3d0rEcVkFQRHe-TbdJ-y68',\n", + " 'post_code': '98109',\n", + " 'state': 'Washington',\n", + " 'state_short': 'WA',\n", + " 'street_name': '5th Avenue North',\n", + " 'street_name_short': '5th Ave N',\n", + " 'street_number': '500',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gatesfoundation.org'},\n", + " {'address': 'Bikuben Foundation Otto Mønsteds Gade 5 1571 Copenhagen V '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'id': 5097,\n", + " 'link': 'https://philea.eu/members/bikuben-foundation/',\n", + " 'name': 'Bikuben Foundation',\n", + " 'position': {'address': 'Otto Mønsteds Gade 5, Copenhagen Municipality, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6712256,\n", + " 'lng': 12.5728347,\n", + " 'name': 'Otto Mønsteds Gade 5',\n", + " 'place_id': 'ChIJM7NnNxNTUkYRwtqISVdNOuo',\n", + " 'post_code': '1571',\n", + " 'street_name': 'Otto Mønsteds Gade',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bikubenfonden.dk'},\n", + " {'address': 'Bertelsmann Stiftung Carl-Bertelsmann-Straße 256 Postfach 103 '\n", + " '33311 Gütersloh Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5096,\n", + " 'link': 'https://philea.eu/members/bertelsmann-stiftung/',\n", + " 'name': 'Bertelsmann Stiftung',\n", + " 'position': {'address': 'Carl-Bertelsmann-Straße 256, Gütersloh, Germany',\n", + " 'city': 'Gütersloh',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.9086764,\n", + " 'lng': 8.4190329,\n", + " 'name': 'Carl-Bertelsmann-Straße 256',\n", + " 'place_id': 'ChIJ28HLgm0lukcRmopbhV6HgnQ',\n", + " 'post_code': '33311',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Carl-Bertelsmann-Straße',\n", + " 'street_number': '256',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bertelsmann-stiftung.de'},\n", + " {'address': 'Network of Belgian Foundations Rue Brederode, 21 1000 Brussels '\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'id': 5094,\n", + " 'link': 'https://philea.eu/members/belgian-federation-of-philanthropic-foundations/',\n", + " 'name': 'Belgian Federation of Philanthropic Foundations',\n", + " 'position': {'address': 'Rue Brederode 21, Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.84035859999999,\n", + " 'lng': 4.362291999999999,\n", + " 'name': 'Rue Brederode 21',\n", + " 'place_id': 'ChIJhfN5jYbEw0cRHuAIcALpV1M',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue Brederode',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.lesfondations.be'},\n", + " {'address': 'Barrow Cadbury Trust Kean House, 6 Kean Street WC2B 4AS London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5093,\n", + " 'link': 'https://philea.eu/members/barrow-cadbury-trust/',\n", + " 'name': 'Barrow Cadbury Trust',\n", + " 'position': {'address': 'Barrow Cadbury, Kean House, 6 Kean Street, London '\n", + " 'WC2B 4AS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5136092,\n", + " 'lng': -0.1184067,\n", + " 'name': 'Barrow Cadbury',\n", + " 'place_id': 'ChIJiRKposoEdkgRvZQxZ2hmaSQ',\n", + " 'post_code': 'WC2B 4AS',\n", + " 'state': 'England',\n", + " 'street_name': 'Kean Street',\n", + " 'street_name_short': 'Kean St',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.barrowcadbury.org.uk'},\n", + " {'address': 'Bader Philanthropies, Inc. 3300 N. Dr. Martin Luther King Jr. '\n", + " 'Drive WI 53212 Milwaukee United States',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'id': 5091,\n", + " 'link': 'https://philea.eu/members/bader-philanthropies-inc/',\n", + " 'name': 'Bader Philanthropies, Inc.',\n", + " 'position': {'address': 'Bader Philanthropies, Inc., 3300 North Dr. Martin '\n", + " 'Luther King Jr. Drive, Milwaukee, WI 53212, United '\n", + " 'States',\n", + " 'city': 'Milwaukee',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 43.0793942,\n", + " 'lng': -87.9161896,\n", + " 'name': 'Bader Philanthropies, Inc.',\n", + " 'place_id': 'ChIJfYyA86MZBYgRRYfOsetMQ-o',\n", + " 'post_code': '53212',\n", + " 'state': 'Wisconsin',\n", + " 'state_short': 'WI',\n", + " 'street_name': 'North Doctor Martin Luther King Junior Drive',\n", + " 'street_name_short': 'N Doctor M.L.K. Jr Dr',\n", + " 'street_number': '3300',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bader.org'},\n", + " {'address': 'Aydin Dogan Vakfi Burhaniye Mah. Kısıklı Cad. No:65 PK 34676 '\n", + " 'Üsküdar-İstanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': '',\n", + " 'id': 5090,\n", + " 'link': 'https://philea.eu/members/aydin-dogan-vakfi/',\n", + " 'name': 'Aydin Dogan Vakfi',\n", + " 'position': {'address': 'Burhaniye, Kısıklı Caddesi No:65, Üsküdar/İstanbul, '\n", + " 'Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0237261,\n", + " 'lng': 29.0487789,\n", + " 'name': 'Kısıklı Cd. No:65',\n", + " 'place_id': 'ChIJx2Saqh3IyhQRMDPMMiEeYXs',\n", + " 'post_code': '34676',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Kısıklı Caddesi',\n", + " 'street_name_short': 'Kısıklı Cd.',\n", + " 'street_number': '65',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.aydindoganvakfi.org.tr'},\n", + " {'address': 'Associazione di Fondazioni e di Casse di Risparmio via del Corso '\n", + " '267 00186 Rome Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 5088,\n", + " 'link': 'https://philea.eu/members/associazione-di-fondazioni-e-di-casse-di-risparmio-spa/',\n", + " 'name': 'Associazione di Fondazioni e di Casse di Risparmio Spa',\n", + " 'position': {'address': 'Via del Corso, 267, 00186 Rome, Metropolitan City '\n", + " 'of Rome, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.8980305,\n", + " 'lng': 12.4818649,\n", + " 'name': 'Via del Corso, 267',\n", + " 'place_id': 'ChIJE5Gwek1gLxMRuYkby5jT9eQ',\n", + " 'post_code': '00186',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via del Corso',\n", + " 'street_number': '267',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.acri.it'},\n", + " {'address': 'Vereinigung Liechtesteiner gemeinnütziger Stiftungen '\n", + " 'Aeulestrasse 6 Postfach 882 9490 Vaduz Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': '',\n", + " 'id': 5367,\n", + " 'link': 'https://philea.eu/members/association-of-liechtenstein-charitable-foundation-and-trusts/',\n", + " 'name': 'Association of Liechtenstein Charitable Foundations and Trusts',\n", + " 'position': {'address': 'Aeulestrasse 6, Vaduz, Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.1404575,\n", + " 'lng': 9.5207958,\n", + " 'name': 'Aeulestrasse 6',\n", + " 'place_id': 'ChIJCyeE9mcxm0cRe985CDnHZLk',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.vlgs.li'},\n", + " {'address': 'Bundesverband Deutscher Stiftungen e.V Haus Deutscher '\n", + " 'Stiftungen, Mauerstr. 93 10117 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5103,\n", + " 'link': 'https://philea.eu/members/association-of-german-foundations/',\n", + " 'name': 'Association of German Foundations',\n", + " 'position': {'address': 'Mauerstraße 93, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.50816870000001,\n", + " 'lng': 13.3897489,\n", + " 'name': 'Mauerstraße 93',\n", + " 'place_id': 'ChIJj9hKDdFRqEcRBcYFO9DX_SY',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Mauerstraße',\n", + " 'street_number': '93',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.stiftungen.org'},\n", + " {'address': 'Council of Finnish Foundations Fredrikinkatu 61A 00100 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': '',\n", + " 'id': 5126,\n", + " 'link': 'https://philea.eu/members/association-of-finnish-foundations/',\n", + " 'name': 'Association of Finnish Foundations',\n", + " 'position': {'address': 'Fredrikinkatu 61a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1679008,\n", + " 'lng': 24.9322093,\n", + " 'name': 'Fredrikinkatu 61a',\n", + " 'place_id': 'ChIJ1T8VyjQKkkYRSXGQebWTgUk',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Fredrikinkatu',\n", + " 'street_number': '61a',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://saatiotrahastot.fi/'},\n", + " {'address': 'Association of Charitable Foundations 28 Commercial Street '\n", + " '(Fourth Floor) E1 6LS London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5087,\n", + " 'link': 'https://philea.eu/members/association-of-charitable-foundations/',\n", + " 'name': 'Association of Charitable Foundations (ACF)',\n", + " 'position': {'address': 'Association Of Charitable Foundations, 28 '\n", + " 'Commercial Street, London E1 6LS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5164153,\n", + " 'lng': -0.0725896,\n", + " 'name': 'Association Of Charitable Foundations',\n", + " 'place_id': 'ChIJ4wwCOCUbdkgRWMUs6rJXWfg',\n", + " 'post_code': 'E1 6LS',\n", + " 'state': 'England',\n", + " 'street_name': 'Commercial Street',\n", + " 'street_name_short': 'Commercial St',\n", + " 'street_number': '28',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.acf.org.uk'},\n", + " {'address': '',\n", + " 'country': 'Romania',\n", + " 'email': '',\n", + " 'id': 5366,\n", + " 'link': 'https://philea.eu/members/association-for-the-practice-of-transformation/',\n", + " 'name': 'Association for the Practice of Transformation',\n", + " 'position': {'address': 'Romania',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 45.943161,\n", + " 'lng': 24.96676,\n", + " 'name': 'Romania',\n", + " 'place_id': 'ChIJw3aJlSb_sUARlLEEqJJP74Q',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://inspire-change.org/'},\n", + " {'address': 'Assifero (Associazione delle fondazioni di erogazione) Corso '\n", + " 'Magenta, 71 20123 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'id': 5089,\n", + " 'link': 'https://philea.eu/members/assifero-associazione-italiana-delle-fondazioni-ed-enti-filantropici/',\n", + " 'name': 'Assifero – Associazione italiana delle fondazioni ed enti '\n", + " 'filantropici',\n", + " 'position': {'address': 'Corso Magenta, 71, 20123 Milan, Metropolitan City '\n", + " 'of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.465581,\n", + " 'lng': 9.16976,\n", + " 'name': 'Corso Magenta, 71',\n", + " 'place_id': 'ChIJG2aISlrBhkcRs3Ut_WEAd2w',\n", + " 'post_code': '20123',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Corso Magenta',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.assifero.org'},\n", + " {'address': 'Arcadia Fund 5 Young Street Sixth Floor W8 5EH London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5084,\n", + " 'link': 'https://philea.eu/members/arcadia/',\n", + " 'name': 'Arcadia',\n", + " 'position': {'address': '5 Young Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5017685,\n", + " 'lng': -0.1897595,\n", + " 'name': '5 Young St',\n", + " 'place_id': 'ChIJ6cpZs_cPdkgRjPeW5vL9LFI',\n", + " 'post_code': 'W8 5EH',\n", + " 'state': 'England',\n", + " 'street_name': 'Young Street',\n", + " 'street_name_short': 'Young St',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://arcadiafund.org.uk/'},\n", + " {'address': 'Anadolu Eğitim ve Sosyal Yardım Vakfı Fatih Sultan Mehmet Mah. '\n", + " 'Balkan Cad. No:58 Buyaka E Blok 34771 Tepeüstü / Ümraniye Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': '',\n", + " 'id': 5082,\n", + " 'link': 'https://philea.eu/members/anadolu-egitim-ve-sosyal-yardim-vakfi/',\n", + " 'name': 'Anadolu Eğitim ve Sosyal Yardım Vakfı',\n", + " 'position': {'address': 'Fatih Sultan Mehmet, E, Balkan Caddesi, '\n", + " 'Ümraniye/İstanbul, Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0232852,\n", + " 'lng': 29.12607,\n", + " 'name': 'E',\n", + " 'place_id': 'ChIJt3hC9dnIyhQReD4eaI97HyA',\n", + " 'post_code': '34770',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Balkan Caddesi',\n", + " 'street_name_short': 'Balkan Cd.',\n", + " 'street_number': '62',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.anadoluvakfi.org.tr'},\n", + " {'address': 'Allianz Kulturstiftung Pariser Platz 6 10117 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'id': 5080,\n", + " 'link': 'https://philea.eu/members/allianz-kulturstiftung/',\n", + " 'name': 'Allianz Foundation',\n", + " 'position': {'address': 'Allianz Kulturstiftung, Pariser Platz 6, 10117 '\n", + " 'Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5171015,\n", + " 'lng': 13.3784056,\n", + " 'name': 'Allianz Kulturstiftung',\n", + " 'place_id': 'ChIJ5amUQ-JRqEcRD6w0Jm6_he4',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Pariser Platz',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://allianzfoundation.org/'},\n", + " {'address': 'Aga Khan Foundation 10 Handyside Street N1C 4DN London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'id': 5077,\n", + " 'link': 'https://philea.eu/members/aga-khan-foundation/',\n", + " 'name': 'Aga Khan Foundation',\n", + " 'position': {'address': 'Aga Khan Foundation UK, Aga Khan Centre, Handyside '\n", + " 'Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.53753189999999,\n", + " 'lng': -0.1249714,\n", + " 'name': 'Aga Khan Foundation UK',\n", + " 'place_id': 'ChIJGYC8ByYbdkgRgy67bB9iKLM',\n", + " 'post_code': 'N1C 4DN',\n", + " 'state': 'England',\n", + " 'street_name': 'Handyside Street',\n", + " 'street_name_short': 'Handyside St',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.akf.org.uk'},\n", + " {'address': 'Adessium Foundation P.O. Box 76 2810 AB Reeuwijk Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'id': 5075,\n", + " 'link': 'https://philea.eu/members/adessium-foundation/',\n", + " 'name': 'Adessium Foundation',\n", + " 'position': {'address': 'Reeuwijk, Netherlands',\n", + " 'city': 'Reeuwijk',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0459962,\n", + " 'lng': 4.7235288,\n", + " 'name': 'Reeuwijk',\n", + " 'place_id': 'ChIJo6aJ-1bWxUcRQ3EvxL90ZVw',\n", + " 'state': 'South Holland',\n", + " 'state_short': 'ZH',\n", + " 'zoom': 14},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.adessium.org'},\n", + " {'address': 'Avinguda Diagonal, 621, Barcelona, Spain',\n", + " 'country': 'ESP',\n", + " 'email': '',\n", + " 'id': 5071,\n", + " 'link': 'https://philea.eu/members/la-caixa-foundation/',\n", + " 'name': '“la Caixa” Foundation',\n", + " 'philea_info': {'Geographic Focus': 'Spain, Portugal, Africa, Asia and Latin '\n", + " 'America',\n", + " 'Mission': 'To build a better, more just society, that '\n", + " 'offers greater opportunities to the people who '\n", + " 'most need them.',\n", + " 'Programme Areas': 'The foundation operates in the following '\n", + " 'areas:\\n'\n", + " '• Poverty and Social Action\\n'\n", + " '• Research & Health\\n'\n", + " '• Education & Scholarships\\n'\n", + " '• Culture\\n'\n", + " '• Science\\n'\n", + " '• International Poverty and Social '\n", + " 'Action: In this area the foundation '\n", + " 'carries out social initiatives that help '\n", + " 'people overcome difficult situations, '\n", + " 'with particular attention to those '\n", + " 'living in poverty. This includes the '\n", + " 'following programmes:\\n'\n", + " '– Poverty\\n'\n", + " '– Employment integration\\n'\n", + " '– The elderly\\n'\n", + " '– Volunteering\\n'\n", + " '– Housing Programme\\n'\n", + " '– Social Organisations and Companies\\n'\n", + " '– Intercultural Relations and Social '\n", + " 'Cohesion\\n'\n", + " '– Violence: Zero Tolerance Research and '\n", + " 'Health: by supporting research '\n", + " 'programmes they aim to find new '\n", + " 'solutions to prevent, treat and '\n", + " 'eradicate diseases such as AIDS, cancer '\n", + " 'and cardiovascular disorders. Their '\n", + " 'hospital care programmes are aimed at '\n", + " 'supporting and accompanying the most '\n", + " 'vulnerable patients: hospitalised '\n", + " 'children and people at the most advanced '\n", + " 'stage of their illness. This are '\n", + " 'includes the following programmes:\\n'\n", + " '– Research in Life and Health Science: '\n", + " 'Infectious diseases; Oncology, '\n", + " 'Cardiovascular Diseases, Neuroscience, '\n", + " 'Medical Sciences\\n'\n", + " '– Comprehensive care for people with '\n", + " 'advanced diseases\\n'\n", + " '– Research in Life and Health Sciences – '\n", + " 'RecerCaixa\\n'\n", + " '– Child Hospitalization – Hospital Ciber '\n", + " 'Caixas\\n'\n", + " '– Innovation and Technological Transfer '\n", + " '– CaixaImpulse\\n'\n", + " '– Postgraduate scholarships Education '\n", + " 'and Scholarships: the foundation invests '\n", + " 'in the talent of young people by '\n", + " 'offering scholarships and training '\n", + " 'opportunities. The activities connected '\n", + " 'with this area are:\\n'\n", + " '– Educaixa\\n'\n", + " '– Scholarships Culture: the foundation '\n", + " 'aims at giving access to culture though '\n", + " 'its permanent centres and an extensive '\n", + " 'programme of activities in all towns and '\n", + " 'cities where it is active.\\n'\n", + " '– CAIXAFORUM (Barcelona, Madrid, Palma, '\n", + " 'Girona, Terragona, Lleida, Zaragoza)\\n'\n", + " '– Travelling Exhibitions\\n'\n", + " '– Cultural Alliances\\n'\n", + " '– Music\\n'\n", + " '– CaixaEscena\\n'\n", + " '– FotoPres\\n'\n", + " '– Contemporary Art Collection\\n'\n", + " '– Calls for Applications (Art for Change '\n", + " '“La Caixa and Comisart) Science: within '\n", + " 'this area the foundation develops and '\n", + " 'support projects that help create a '\n", + " 'scientific culture among citizens and an '\n", + " 'attitude of personal commitment to the '\n", + " 'planet’s sustainable development. This '\n", + " 'includes the following activities:\\n'\n", + " '– CosmoCaixa\\n'\n", + " '– Travelling Exhibitions\\n'\n", + " '– Science and Society: RRI Tools, Xplore '\n", + " 'Health, Science City, Scientist Camp, '\n", + " 'Educational Innovation, Collaborating '\n", + " 'Centers\\n'\n", + " '– The Environment: Conservation of '\n", + " 'Natural Areas; Gardens of Cap Roig; '\n", + " 'Safeguarding the Local Area, '\n", + " 'Ecoinnovation laboratory, ClimaDat, '\n", + " 'MedClic, The Sea in Depth International: '\n", + " 'the foundation promotes projects that '\n", + " 'generate sustainable economies and '\n", + " 'contribute to the development of the '\n", + " 'most vulnerable countries in Asia, '\n", + " 'Africa and South America. These are the '\n", + " 'activites included in this area:\\n'\n", + " '– Calls for Applications: Socio-Economic '\n", + " 'Development programme, Programme for '\n", + " 'Training projects in Africa, '\n", + " 'CooperantesCaixa, Humanitarian action: '\n", + " 'Children malnutrition programme\\n'\n", + " '– Global Development\\n'\n", + " '– Global Health'},\n", + " 'position': {'address': 'Avinguda Diagonal, 621, Barcelona, Spain',\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3876748,\n", + " 'lng': 2.1265478,\n", + " 'place_id': 'ChIJ0VySQGeYpBIRwTsa9qq_FHQ',\n", + " 'post_code': '08028',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Avinguda Diagonal',\n", + " 'street_name_short': 'Av. Diagonal',\n", + " 'street_number': '621',\n", + " 'zoom': 18},\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://obrasociallacaixa.org/en/home'}]\n" + ] + } + ], + "source": [ + "pprint.pprint(members)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "e8597e5c47334ddf", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-06T14:45:02.378486Z", + "start_time": "2026-06-06T14:45:02.283078Z" + }, + "collapsed": false + }, + "outputs": [], + "source": [ + "# Wirte to file\n", + "import json\n", + "with open(\"philea_members.json\", \"w\", encoding=\"utf-8\") as f:\n", + " json.dump(members, f, ensure_ascii=False, indent=4)" + ] + }, + { + "cell_type": "markdown", + "id": "7825d441de516336", + "metadata": { + "collapsed": false + }, + "source": [ + "### Preprocessing" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "2d6a500c0d87f16b", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:45:37.622864Z", + "start_time": "2026-06-10T09:45:37.389021Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded 299 members\n" + ] + } + ], + "source": [ + "# Load data\n", + "with open(\"philea_members.json\", \"r\", encoding=\"utf-8\") as f:\n", + " members = json.load(f)\n", + "print(f\"Loaded {len(members)} members\")" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "e23bbf3e50263354", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:45:38.266736Z", + "start_time": "2026-06-10T09:45:38.237797Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Unique keys in philea_info: {'About', 'Mission', 'Programme Areas', 'Geographic Focus'}\n" + ] + } + ], + "source": [ + "# Extract all unique keys from philea_info\n", + "unique_keys = set()\n", + "for member in members:\n", + " unique_keys.update(member.get(\"philea_info\", {}).keys())\n", + "print(f\"Unique keys in philea_info: {unique_keys}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "d3f31c227a6e64ea", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:51:05.935751Z", + "start_time": "2026-06-10T09:51:05.711456Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "299\n", + "Anzahl Mitglieder ohne Tags: 20\n" + ] + } + ], + "source": [ + "# 1. Alle Roh-Tags, die jemals in den Philea-Daten auftauchen können (inkl. Human/Civil Rights)\n", + "MASTER_TAGS = [\n", + " \"Citizenship, Social Justice & Public Affairs\",\n", + " \"Civil society, Voluntarism & Non-Profit Sector\",\n", + " \"Socio-economic Development, Poverty\",\n", + " \"Socio-economic Development\",\n", + " \"Food, Agriculture & Nutrition\",\n", + " \"Recreation, Sport & Well-being\",\n", + " \"Humanitarian & Disaster Relief\",\n", + " \"Peace & Conflict Resolution\",\n", + " \"Youth/Children Development\",\n", + " \"Sciences & Research\",\n", + " \"Employment/Workforce\",\n", + " \"Environment/Climate\",\n", + " \"Social/Human Services\",\n", + " \"Arts & Culture\",\n", + " \"Arts and Culture\",\n", + " \"Policy development\",\n", + " \"Education\",\n", + " \"Health\",\n", + " \"Animal-Related\",\n", + " \"Water\",\n", + " \"Nature\",\n", + " \"Human/Civil Rights\" # FIX: War vorher vergessen\n", + "]\n", + "\n", + "# 2. Die zentrale Mapping-Schmiede (Konsolidiert von ~24 auf 13 Hauptkategorien)\n", + "TAG_NORMALIZATION = {\n", + " # Schreibweisen-Korrekturen\n", + " \"Arts and Culture\": \"Arts & Culture\",\n", + " \"Socio-economic Development\": \"Socio-economic Development, Poverty\",\n", + " \"Environment\": \"Environment/Climate\",\n", + " \n", + " # Strategische Zusammenfassungen für ein sauberes Datenmodell\n", + " \"Nature\": \"Environment/Climate\",\n", + " \"Water\": \"Environment/Climate\",\n", + " \"Animal-Related\": \"Environment/Climate\",\n", + " \"Employment/Workforce\": \"Socio-economic Development, Poverty\",\n", + " \"Social/Human Services\": \"Socio-economic Development, Poverty\",\n", + " \"Recreation, Sport & Well-being\": \"Health\",\n", + " \"Policy development\": \"Citizenship, Social Justice & Public Affairs\"\n", + "}\n", + "\n", + "# 3. Die Keyword-Kanten für den Freitext-Fallback (Exakt synchron zu den Normalisierungs-Targets)\n", + "KEYWORD_MAPPING = {\n", + " \"Environment/Climate\": [\n", + " r\"climates?\", r\"emissions?\", r\"carbon\", r\"energy transition\", r\"fossil fuels?\", \n", + " r\"biodiversity\", r\"nature conservation\", r\"planet\", r\"agroecology\", r\"built environment\",\n", + " r\"plastic( pollution)?\", r\"petrochemical\", r\"economies of reuse\", r\"ocean economy\", r\"maritime\", r\"gardens?\",\n", + " r\"animals?\", r\"wildlife\", r\"water security\", r\"water supply\" # FIX: Fängt 'Animal-Related', 'Nature' & 'Water' ab\n", + " ],\n", + " \"Education\": [\n", + " r\"educations?\", r\"learnings?\", r\"schools?\", r\"scholarships?\", r\"students?\", r\"stem\", r\"teachers?\", r\"trainings?\"\n", + " ],\n", + " \"Arts & Culture\": [\n", + " r\"arts?\", r\"culture?\", r\"cultural\", r\"museums?\", r\"exhibitions?\", r\"music\", r\"artists?\", r\"heritage\", r\"theatres?\", r\"villa\"\n", + " ],\n", + " \"Citizenship, Social Justice & Public Affairs\": [\n", + " r\"democrac\\w+\", r\"civil societ\\w+\", r\"civic\", r\"citizenship\", r\"public affairs\", \n", + " r\"press freedom\", r\"independent media\", r\"advocacy\", r\"journalism\", r\"newsrooms?\",\n", + " r\"social cohesion\", r\"responsible leadership\", r\"criminal justice\", r\"social change\", r\"polycrisis\",\n", + " r\"policy development\" # FIX: Fängt 'Policy development' ab\n", + " ],\n", + " \"Human/Civil Rights\": [\n", + " r\"human rights\", r\"civil rights\", r\"gender equality\", r\"women’s rights\", \n", + " r\"lgbti\\+\", r\"feminist\", r\"discrimination\", r\"gender justice\"\n", + " ],\n", + " \"Youth/Children Development\": [\n", + " r\"children\", r\"youths?\", r\"child\", r\"young people\", r\"early childhood\", r\"infants?\", r\"neonatal\", r\"0-5 year olds\"\n", + " ],\n", + " \"Socio-economic Development, Poverty\": [\n", + " r\"poverty\", r\"low-income\", r\"vulnerabilit\\w+\", r\"marginalized\", r\"homeless\\w*\", \n", + " r\"social inclusion\", r\"disadvantaged\", r\"social justice\", r\"social innovation\",\n", + " r\"economic justice\", r\"social leaders?\", r\"social development\", r\"economic development\",\n", + " r\"employ\\w+\", r\"workforce\", r\"jobs?\", r\"labour\", r\"social services?\" # FIX: Fängt 'Employment' & 'Social Services' ab\n", + " ],\n", + " \"Health\": [\n", + " r\"health\\w*\", r\"medical\", r\"diseases?\", r\"healthcare\", r\"illness\\w*\", r\"pain therapy\", r\"sanitation\",\n", + " r\"sports?\", r\"recreation\", r\"well[- ]being\" # FIX: Fängt 'Recreation, Sport & Well-being' ab\n", + " ],\n", + " \"Sciences & Research\": [\n", + " r\"research\\w*\", r\"scientific\", r\"sciences?\", r\"phd\", r\"academia\", r\"universit\\w+\"\n", + " ],\n", + " \"Food, Agriculture & Nutrition\": [\n", + " r\"food\", r\"agriculture\", r\"nutrition\", r\"farming\", r\"diets?\"\n", + " ],\n", + " \"Humanitarian & Disaster Relief\": [\n", + " r\"disaster relief\", r\"humanitarian\", r\"emergency response\", r\"refugees?\", r\"asylum seekers?\", r\"migration\", r\"foreign aid\"\n", + " ],\n", + " \"Civil society, Voluntarism & Non-Profit Sector\": [\n", + " r\"philanthrop\\w+\", r\"fundraising\", r\"donors?\", r\"grant-making\", r\"fiscal sponsorship\"\n", + " ],\n", + " \"Peace & Conflict Resolution\": [\n", + " r\"peacebuilding\", r\"conflict sensitivity\", r\"peace work\"\n", + " ]\n", + "}\n", + "\n", + "def extract_tags_final(raw_text):\n", + " if not raw_text:\n", + " return []\n", + " \n", + " found_tags = set()\n", + " text_lower = raw_text.lower()\n", + " \n", + " for tag, keywords in KEYWORD_MAPPING.items():\n", + " for kw in keywords:\n", + " # Nutzt nun die kompilierten Regex-Patterns mit Wortgrenzen \\b\n", + " pattern = r'\\b' + kw + r'\\b'\n", + " if re.search(pattern, text_lower):\n", + " found_tags.add(tag)\n", + " # Wir brechen hier nicht ab, damit eine Stiftung mehrere Tags erhalten kann\n", + " \n", + " return sorted(list(found_tags))\n", + "\n", + "def extract_tags_robust(raw_text):\n", + " if not raw_text:\n", + " return []\n", + " \n", + " # Tags stehen bei Philea IMMER ganz am Anfang vor dem Fließtext.\n", + " # Wir untersuchen daher nur die ersten 600 Zeichen (Sicherheitsfenster).\n", + " zone = raw_text[:600].lower()\n", + " \n", + " # Text-Normalisierung: Zeilenumbrüche und alle Arten von Bindestrichen/Bulletpoints \n", + " # durch einfache Leerzeichen ersetzen. Kommas bleiben als Trenner erhalten.\n", + " zone_clean = re.sub(r'[\\s\\–\\—\\-]+', ' ', zone)\n", + " \n", + " found_tags = set()\n", + " \n", + " # Wichtig: Wir sortieren nach Länge (absteigend), damit lange Phrasen wie\n", + " # \"Socio-economic Development, Poverty\" vor \"Education\" oder \"Health\" gematched werden.\n", + " sorted_master_tags = sorted(MASTER_TAGS, key=len, reverse=True)\n", + " \n", + " for original_tag in sorted_master_tags:\n", + " tag_clean = original_tag.lower()\n", + " tag_clean = re.sub(r'[\\s\\–\\—\\-]+', ' ', tag_clean)\n", + " \n", + " if tag_clean in zone_clean:\n", + " # Sicherheits-Check für sehr kurze Tags (z.B. \"Health\"), damit sie nicht \n", + " # fälschlicherweise in Wörtern wie \"Healthcare\" oder \"Healthy\" matchen.\n", + " if len(tag_clean) <= 10:\n", + " # Regex prüft, ob vor und nach dem Tag kein Buchstabe (a-z) steht\n", + " pattern = r'(? \"Arts & Culture\")\n", + " final_tags = [TAG_NORMALIZATION.get(t, t) for t in found_tags]\n", + " \n", + " return sorted(list(set(final_tags)))\n", + "\n", + "# Loop über deine Struktur\n", + "parsed_results = {}\n", + "for member in members:\n", + " tags = extract_tags_robust(member.get(\"philea_info\", {}).get(\"Programme Areas\", \"\"))\n", + " if not tags: # Fallback auf die Freitext-Analyse, wenn keine Tags gefunden wurden\n", + " tags = extract_tags_final(member.get(\"philea_info\", {}).get(\"Programme Areas\", \"\"))\n", + " if not tags: # Letzte Chance: Manchmal stehen die Tags nicht unter \"Programme Areas\", sondern nur im allgemeinen \"About\"-Text\n", + " tags = extract_tags_final(member.get(\"philea_info\", {}).get(\"About\", \"\"))\n", + " if not tags:\n", + " tags = extract_tags_final(member.get(\"philea_info\", {}).get(\"Mission\", \"\"))\n", + " parsed_results[member[\"name\"]] = tags\n", + "\n", + "# Ergebnis anzeigen\n", + "#pprint.pprint(parsed_results)\n", + "print(len(parsed_results))\n", + "# Anzahl leerer Einträge\n", + "empty_count = sum(1 for tags in parsed_results.values() if not tags)\n", + "print(f\"Anzahl Mitglieder ohne Tags: {empty_count}\")\n", + "for member in members:\n", + " member[\"tags_focus\"] = sorted(parsed_results.get(member[\"name\"], []))" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "2366b52686b65e98", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:51:09.621385Z", + "start_time": "2026-06-10T09:51:09.417239Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'address': 'Rapenburgerstraat 173, Amsterdam, Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Global South / Majority World': ['Global South'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 24788,\n", + " 'link': 'https://philea.eu/members/women-win/',\n", + " 'name': 'Women Win',\n", + " 'philea_info': {'About': 'Women Win operates as a multidimensional global '\n", + " 'women’s fund with expertise across three '\n", + " 'interconnected areas:',\n", + " 'Geographic Focus': 'Women Win is operates globally, but '\n", + " 'with a majority focus on Global South '\n", + " 'and East.',\n", + " 'Mission': 'Women Win is a global multidimensional women’s '\n", + " 'fund guided by the vision of a future where '\n", + " 'every girl and woman exercises their rights. We '\n", + " 'work towards our vision through the independent '\n", + " 'missions of our three sister brands: GRLS '\n", + " 'advance the playing field that progresses gender '\n", + " 'equity in and through sport and play.\\n'\n", + " 'Win-Win Strategies build bridges to advance '\n", + " 'girls’ and women’s economic resilience through '\n", + " 'impactful partnerships and innovative '\n", + " 'approaches.\\n'\n", + " 'IGNITA provide a safe and responsive '\n", + " 'infrastructure to resource feminist initiatives, '\n", + " 'activists and movements to drive change.'},\n", + " 'position': {'address': 'Rapenburgerstraat 173, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.368106,\n", + " 'lng': 4.9061522,\n", + " 'name': 'Rapenburgerstraat 173',\n", + " 'place_id': 'ChIJe7GIF70JxkcRidx5mdy_5lo',\n", + " 'post_code': '1011 VM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Rapenburgerstraat',\n", + " 'street_number': '173',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health', 'Human/Civil Rights'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.womenwin.org'},\n", + " {'address': 'Untermüli 7, Zug, Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 24787,\n", + " 'link': 'https://philea.eu/members/toni-piech-foundation/',\n", + " 'name': 'Toni Piëch Foundation',\n", + " 'philea_info': {'About': 'TPF has strong expertise in the built‑environment '\n", + " 'transition, covering renewable‑energy integration '\n", + " 'in districts and buildings, energy‑efficiency '\n", + " 'measures, bio‑based building materials, and '\n", + " 'life‑cycle analysis, and urban planning. In '\n", + " 'addition, we bring expertise in philanthropic '\n", + " 'network building, technology‑innovation '\n", + " 'management, strategic communications, AI risk, and '\n", + " 'Chinese culture, society, and development. We are '\n", + " 'distinguished by our fast and explorative '\n", + " 'grantmaking, and, when useful or needed, hands‑on '\n", + " 'involvement in projects where we can provide '\n", + " 'expertise and assistance. Our key contribution is '\n", + " 'putting the built environment in the spotlight: '\n", + " 'Currently, only a tiny fraction of philanthropic '\n", + " 'funding reaches the built environment, and public '\n", + " 'awareness of its pivotal role in climate change, '\n", + " 'resource use, and social equity remains low. With '\n", + " 'strategic communication formats like campaigns and '\n", + " 'initiatives, we can highlight the issues and '\n", + " 'solutions, engage a diverse range of stakeholders, '\n", + " 'and increase public and philanthropic agency. '\n", + " 'Supporting tools like the one mentioned above '\n", + " 'directly empowers change‑agents like urban '\n", + " 'planners, community movements, and '\n", + " 'energy‑transition networks to drive tangible, '\n", + " 'sustainable transformation.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'The purpose of the foundation is to strengthen '\n", + " 'and accelerate social, economic and other '\n", + " 'endeavours and developments that have as their '\n", + " 'object a sustainable way of life for society, a '\n", + " 'future worth living for humanity, good and '\n", + " 'healthy living spaces and conditions, and an '\n", + " 'increase in the resilience of society. The focus '\n", + " 'is on the positive and sustainable development '\n", + " 'of cities, in particular through the '\n", + " 'development, visualisation and design of '\n", + " 'projects and developments in the areas of '\n", + " 'mobility, energy, public spaces and urban '\n", + " 'development, the promotion and acceleration of '\n", + " 'energy system transformation and of renewable '\n", + " 'and sustainable energy sources, sustainable and '\n", + " 'efficient energy use, the improvement of living '\n", + " 'conditions, living environments and spaces in '\n", + " 'cities, in particular by promoting the '\n", + " 'participation of the population and the use of '\n", + " 'data-driven and citizen-centred data management, '\n", + " 'as well as by promoting sustainable finance and '\n", + " 'building a platform for people who want to '\n", + " 'invest in promoting the foundation’s purpose and '\n", + " 'in related projects. In order to achieve its '\n", + " 'purpose, the foundation may use its assets to '\n", + " 'support and advise organisations, groups, '\n", + " 'institutions and individuals working in the '\n", + " 'field of the foundation’s purpose; it may '\n", + " 'accompany or promote certain projects; it may '\n", + " 'also initiate and implement projects itself; it '\n", + " 'may acquire real estate; it may award prizes '\n", + " 'within the scope of the foundation’s purpose and '\n", + " 'it may support companies, in particular '\n", + " 'start-ups, by means of loans and participations. '\n", + " 'The foundation is a non-profit organisation and '\n", + " 'does not pursue any commercial or '\n", + " 'profit-oriented purpose.',\n", + " 'Programme Areas': 'Future of Cities & Construction: Dealing '\n", + " 'with Climate Change nowadays means to '\n", + " 'stop greenhouse gas emissions but at the '\n", + " 'same time finding ways to adapt to '\n", + " 'unavoidable impacts. Both is important '\n", + " 'to make societies more resilient – which '\n", + " 'first and foremost requires a better '\n", + " 'understanding of practical and '\n", + " 'implementable solutions. The Climate '\n", + " 'Change programme of the Toni Piëch '\n", + " 'Foundation therefore keeps its focus on '\n", + " 'projects that have an immediate impact '\n", + " 'with regard to its overall mission. '\n", + " 'Climate Change: Cities can host billions '\n", + " 'of people while still providing space '\n", + " 'for an enriching urban life. Or they can '\n", + " 'be an ecological human disaster – ‘the '\n", + " 'triumph or the tragedy’ of cities it is. '\n", + " 'Projects of the Toni Piëch Foundation '\n", + " 'will be looking at the climate footprint '\n", + " 'of cities e.g. that of buildings as they '\n", + " 'are among the biggest single sources of '\n", + " 'emissions in the world. The global '\n", + " 'construction sector is on the brink of a '\n", + " 'huge transformation towards using carbon '\n", + " 'absorbing materials. We seek to '\n", + " 'accelerate this shift and to help clean '\n", + " 'construction to thrive. Energy '\n", + " 'Transition: Our day to day life is '\n", + " 'attached to electricity or thermal '\n", + " 'energy use for heating and cooling, '\n", + " 'transport and electricity uses. It’s '\n", + " 'important to maintain and expand these '\n", + " 'services of energy but to better '\n", + " 'interlink the different sectors (sector '\n", + " 'coupling) and switch to modern green '\n", + " 'sources. The socio-economic benefits of '\n", + " 'renewable energy deployment are widely '\n", + " 'known. And global welfare gains could '\n", + " 'also increase – the Toni Piëch '\n", + " 'Foundation will help to accelerate the '\n", + " 'transformation. Communications & '\n", + " 'Storytelling: “If you can’t describe it '\n", + " 'in one sentence you simply don’t '\n", + " 'understand it well enough”. A quote '\n", + " 'attributed to Albert Einstein nails it: '\n", + " 'complex subjects such as Climate Change '\n", + " 'need to be explained. Not so much the '\n", + " 'technical or physical dynamics but '\n", + " 'rather what they mean to us and our day '\n", + " 'to day lives. And it needs to be '\n", + " 'communicated in a way that '\n", + " 'offerspositive outlooks. By deploying an '\n", + " 'explicit sensitivity to the '\n", + " 'storytelling, we seek to ensure a '\n", + " 'compassionate but forward-looking '\n", + " 'approach in our projects.'},\n", + " 'position': {'address': 'Untermüli 7, Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.1804502,\n", + " 'lng': 8.517739599999999,\n", + " 'name': 'Untermüli 7',\n", + " 'place_id': 'ChIJ3aGnIFuqmkcRI2DbBPUXHU4',\n", + " 'post_code': '6302',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Untermüli',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.tonipiechfoundation.org/'},\n", + " {'address': '5 Canada Square, Canary Wharf, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 24786,\n", + " 'link': 'https://philea.eu/members/thomson-reuters-foundation/',\n", + " 'name': 'Thomson Reuters Foundation',\n", + " 'philea_info': {'About': 'We are the corporate foundation of Thomson '\n", + " 'Reuters. First established as the Reuters '\n", + " 'Foundation in 1982, today we are a global '\n", + " 'professional services organisation working in '\n", + " 'international development and registered as an '\n", + " 'independent charity in the UK, Europeand USA. We '\n", + " 'believe that societies around the world should be '\n", + " 'free, fair and informed, as underpinned by the '\n", + " 'Universal Declaration of Human Rights. We use the '\n", + " 'combined power of journalism and the law, together '\n", + " 'with data intelligence, to build global awareness '\n", + " 'of critical issues faced by humanity, inspire '\n", + " 'collective leadership and help shape a prosperous '\n", + " 'world where no one is left behind.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'Free and independent media is critical to '\n", + " 'informing citizens and to holding power to '\n", + " 'account but is increasingly under threat. The '\n", + " 'law upholds human rights and freedoms, but is '\n", + " 'often abused or inaccessible, undermining its '\n", + " 'purpose. Corporations can actively contribute to '\n", + " 'social progress, but only when they are able to '\n", + " 'balance the short-term needs of their '\n", + " 'shareholders with the long-term impact on their '\n", + " 'stakeholders communities.Through our media, '\n", + " 'legal and data-driven expertise we offer a range '\n", + " 'of initiatives and services that bolster the '\n", + " 'resilience of independent media, strengthen '\n", + " 'access to the law and foster responsible '\n", + " 'business practices, fundamental pillars that are '\n", + " 'integral to free, fair and informed societies.',\n", + " 'Programme Areas': 'A free, independent media is the '\n", + " 'cornerstone of democracy. It holds power '\n", + " 'to account and empowers civil society to '\n", + " 'make informed decisions. We provide a '\n", + " 'range of support to journalists, news '\n", + " 'outlets and civil society organisations '\n", + " 'dedicated to defending and advancing '\n", + " 'press freedom globally. A fair legal '\n", + " 'ecosystem is critical to upholding human '\n", + " 'rights. Increasingly though, the law is '\n", + " 'being undermined or abused to seize '\n", + " 'power or is simply inaccessible for '\n", + " 'those who need it most. We work to scale '\n", + " 'the practice of pro bono across the '\n", + " 'profession, and we provide free legal '\n", + " 'support and resources to empower at-risk '\n", + " 'and marginalised communities. '\n", + " 'Corporations can contribute to social '\n", + " 'progress when they balance the '\n", + " 'short-term needs of their shareholders '\n", + " 'with the long-term impact on their '\n", + " 'stakeholders’ communities. We leverage '\n", + " 'our networks and data intelligence to '\n", + " 'encourage responsible business practices '\n", + " 'and corporate transparency, enabling '\n", + " 'businesses to thrive whilst doing no '\n", + " 'harm.'},\n", + " 'position': {'address': '5 Canada Square, Canary Wharf, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5053031,\n", + " 'lng': -0.0184089,\n", + " 'name': '5 Canada Square',\n", + " 'place_id': 'ChIJVVVVZLcCdkgR_3T82OOWo4g',\n", + " 'post_code': 'E14 5AQ',\n", + " 'state': 'England',\n", + " 'street_name': 'Canada Square',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Human/Civil Rights'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.trust.org/'},\n", + " {'address': 'C/O Sedulo Office 605, Albert House 256-260 OldStreet',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 24785,\n", + " 'link': 'https://philea.eu/members/the-social-change-nest/',\n", + " 'name': 'The Social Change Nest',\n", + " 'philea_info': {'About': 'We tear down the barriers that prevent communities '\n", + " 'from creating change. We take care of the finance '\n", + " 'and administration, freeing groups to focus on '\n", + " 'their core mission, and work closely with funders '\n", + " 'to enable them to support social impact with '\n", + " 'confidence and transparency.',\n", + " 'Geographic Focus': 'We tear down the barriers that prevent '\n", + " 'communities from creating change. We '\n", + " 'take care of the finance and '\n", + " 'administration, freeing groups to focus '\n", + " 'on their core mission, and work closely '\n", + " 'with funders to enable them to support '\n", + " 'social impact with confidence and '\n", + " 'transparency.',\n", + " 'Mission': 'We tear down the barriers that prevent '\n", + " 'communities from creating change. We take care '\n", + " 'of the finance and administration, freeing '\n", + " 'groups to focus on their core mission, and work '\n", + " 'closely with funders to enable them to support '\n", + " 'social impact with confidence and transparency.'},\n", + " 'position': {'address': 'C/O Sedulo Office 605, Albert House 256-260 '\n", + " 'OldStreet',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.52586489999999,\n", + " 'lng': -0.0851961,\n", + " 'place_id': 'EjY2MDUsIEFsYmVydCBIb3VzZSwgMjU2LTI2MCBPbGQgU3QsIExvbmRvbiBFQzFWIDlERCwgVUsiHxodChYKFAoSCZ0SA4KlHHZIEYPcSixfvSwKEgM2MDU',\n", + " 'post_code': 'EC1V 9DD',\n", + " 'state': 'England',\n", + " 'street_name': 'Old Street',\n", + " 'street_name_short': 'Old St',\n", + " 'street_number': '256-260',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://thesocialchangenest.org/'},\n", + " {'address': '1411 K Street Northwest suite 1200, Washington, DC, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 24784,\n", + " 'link': 'https://philea.eu/members/the-global-fund-for-children/',\n", + " 'name': 'The Global Fund for Children',\n", + " 'philea_info': {'About': 'GFC’s model is to build long-term partnerships '\n", + " 'with community-based organizations who support the '\n", + " 'safety, wellbeing and achievement of children and '\n", + " 'young people. Partnerships include the provision '\n", + " 'of unrestricted annual grants along with tailored '\n", + " 'capacity development support and network building. '\n", + " 'GFC operates around 5 thematic issues including '\n", + " 'education, gender justice, youth power, climate '\n", + " 'and safety and wellbeing.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'Global Fund for Children envisions a future '\n", + " 'where all children and youth are safe, strong, '\n", + " 'and valued. We boldly pursue this vision by '\n", + " 'partnering with community-based organizations '\n", + " 'around the world to help children and youth '\n", + " 'reach their full potential and advance their '\n", + " 'rights.',\n", + " 'Programme Areas': 'Our major areas of expertise include the '\n", + " 'general development theme of Children '\n", + " 'and Youth, and more specifically, GFC is '\n", + " 'a leader in Community-led Development, '\n", + " 'Global Grantmaking, Trust-based '\n", + " 'Philanthropy, Participatory Grantmaking, '\n", + " 'healthy masculinities, well-being, and '\n", + " 'gender justice.'},\n", + " 'position': {'address': '1411 K Street Northwest suite 1200, Washington, DC, '\n", + " 'USA',\n", + " 'city': 'Washington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.9028791,\n", + " 'lng': -77.0325632,\n", + " 'name': '1411 K St NW suite 1200',\n", + " 'place_id': 'EjIxNDExIEsgU3QgTlcgc3VpdGUgMTIwMCwgV2FzaGluZ3RvbiwgREMgMjAwMDUsIFVTQSImGiQKFgoUChIJuzc5m5W3t4kRCvjD-YXHC70SCnN1aXRlIDEyMDA',\n", + " 'post_code': '20005',\n", + " 'state': 'District of Columbia',\n", + " 'state_short': 'DC',\n", + " 'street_name': 'K Street Northwest',\n", + " 'street_name_short': 'K St NW',\n", + " 'street_number': '1411',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Health',\n", + " 'Human/Civil Rights',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.globalfundforchildren.org'},\n", + " {'address': 'Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Turkey']},\n", + " 'id': 24783,\n", + " 'link': 'https://philea.eu/members/suna-and-inan-kirac-foundation/',\n", + " 'name': 'Suna and İnan Kıraç Foundation',\n", + " 'philea_info': {'About': 'The Suna and İnan Kıraç Foundation advances '\n", + " 'societal development through its institutions of '\n", + " 'excellence in education, culture, and scientific '\n", + " 'research:',\n", + " 'Geographic Focus': 'Currently, we are exclusively in '\n", + " 'Turkiye, though our long-term vision is '\n", + " 'to extend to neighboring countries, '\n", + " 'particularly with our education work.',\n", + " 'Mission': 'The Suna and İnan Kıraç Foundation was '\n", + " 'established by Suna Kıraç, İnan Kıraç and İpek '\n", + " 'Kıraç on 27 October, 2003. With the goal of '\n", + " 'supporting the cultivation of empowered citizens '\n", + " 'that will contribute to Türkiye and its people, '\n", + " 'the Foundation supports activities in the areas '\n", + " 'of education, culture, arts and health.',\n", + " 'Programme Areas': 'Arts & Culture\\n'\n", + " 'Education\\n'\n", + " 'Health\\n'\n", + " 'Sciences & Research\\n'\n", + " 'Youth/Children Development The Suna and '\n", + " 'İnan Kıraç Foundation operates across '\n", + " 'three main programme areas:Education and '\n", + " 'Educational Equity: Designing and '\n", + " 'implementing evidence-based models that '\n", + " 'strengthen early childhood development, '\n", + " 'support girls’ educational participation '\n", + " 'and empowerment, and contribute to '\n", + " 'teacher development and systemic '\n", + " 'improvement.Cultural Heritage and Public '\n", + " 'Access to Culture: Preserving, '\n", + " 'researching, and sharing Türkiye’s '\n", + " 'cultural heritage through museums, '\n", + " 'research institutes, exhibitions, '\n", + " 'publications, and public learning '\n", + " 'programmes.Scientific Research: '\n", + " 'Advancing high-quality research in '\n", + " 'neurodegenerative diseases through the '\n", + " 'Foundation’s Neurodegeneration Research '\n", + " 'Laboratory (NDAL), contributing to '\n", + " 'international scientific knowledge and '\n", + " 'capacity building.Across all areas, the '\n", + " 'Foundation combines research, '\n", + " 'institutional excellence, and long-term '\n", + " 'engagement to generate sustainable '\n", + " 'societal impact.'},\n", + " 'position': {'address': 'Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - '\n", + " 'İstanbul',\n", + " 'country': 'Türkiye',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0328293,\n", + " 'lng': 28.9752418,\n", + " 'place_id': 'ChIJV6w28F-3yhQRQoOqAcLxHTg',\n", + " 'post_code': '34430',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Meşrutiyet Caddesi',\n", + " 'street_name_short': 'Meşrutiyet Cd.',\n", + " 'street_number': 'No:47',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sunaveinankiracvakfi.org.tr/'},\n", + " {'address': 'Grimmereds by 5, Västra Frölunda, Sweden',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Latin America & Caribbean': ['Brazil']},\n", + " 'id': 24781,\n", + " 'link': 'https://philea.eu/members/hidden-universe-biodiversity-foundation-hub/',\n", + " 'name': 'Hidden Universe: Biodiversity Foundation (HUB)',\n", + " 'philea_info': {'About': 'Biodiversity research, conservation and '\n", + " 'restoration. At its core, the Foundation is about '\n", + " 'advancing and communicating scientific knowledge '\n", + " 'and using such knowledge to better conserve and '\n", + " 'restore diverse ecosystems. Much of the diversity '\n", + " 'of life on Earth remains unknown, and without '\n", + " 'better knowledge, we cannot hope to restore or '\n", + " 'conserve it effectively. In its initial phase, the '\n", + " 'Foundation is focusing on the Atlantic Forest in '\n", + " 'Brazil, one of the most biodiverse and threatened '\n", + " 'regions on the planet. Here, it supports '\n", + " 'field-based research and promotes ecological '\n", + " 'restoration in ways that are informed by science '\n", + " 'and grounded in collaboration, including local '\n", + " 'communities.',\n", + " 'Geographic Focus': 'Brazil (initial focus).',\n", + " 'Mission': 'HUB’s mission is advanced through an integrated '\n", + " 'approach that combines scientific research, '\n", + " 'conservation initiatives, and community '\n", + " 'engagement.',\n", + " 'Programme Areas': 'Animal-Related\\n'\n", + " 'Education\\n'\n", + " 'Environment/Climate\\n'\n", + " 'Food, Agriculture & Nutrition\\n'\n", + " 'Sciences & Research\\n'\n", + " 'Socio-economic Development, Poverty 1. '\n", + " 'Explore and document: HUB uncovers the '\n", + " 'planet’s hidden life. We partner with '\n", + " 'scientists to explore and document '\n", + " 'species, interactions and '\n", + " 'ecosystems—many still unknown to '\n", + " 'science—revealing the richness of nature '\n", + " 'so it can be understood and protected. '\n", + " '2. Protect and restore: HUB turns '\n", + " 'science into action. Working with local '\n", + " 'communities, we protect endangered '\n", + " 'species and restore vital ecosystems, '\n", + " 'starting in Brazil’s Atlantic rainforest '\n", + " 'and expanding to other biodiversity '\n", + " 'hotspots in the future. 3. Share '\n", + " 'knowledge: HUB connects people with '\n", + " 'nature. Through training, education, '\n", + " 'storytelling, and collaboration, we '\n", + " 'share discoveries that inspire '\n", + " 'curiosity, awareness, and action for a '\n", + " 'thriving planet.'},\n", + " 'position': {'address': 'Grimmereds by 5, Västra Frölunda, Sweden',\n", + " 'city': 'Västra Frölunda',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 57.6651926,\n", + " 'lng': 11.8938683,\n", + " 'name': 'Grimmereds by 5',\n", + " 'place_id': 'ChIJs0Ih5C2NT0YR-dceWQWRP78',\n", + " 'post_code': '426 70',\n", + " 'state': 'Västra Götalands län',\n", + " 'street_name': 'Grimmereds by',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.hu-b.org/'},\n", + " {'address': 'Mauerkircherstraße 12, Munich-Bogenhausen, Germany',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Worldwide': ['Worldwide']},\n", + " 'id': 24780,\n", + " 'link': 'https://philea.eu/members/andrea-von-braun-stiftung/',\n", + " 'name': 'Andrea von Braun Stiftung',\n", + " 'philea_info': {'About': 'Our core mission is to promote projects in '\n", + " 'ecological border areas. By this we mean:',\n", + " 'Geographic Focus': 'Europe and Germany, but also worldwide',\n", + " 'Mission': 'Our core mission is to promote projects in '\n", + " 'ecological border areas. By this we mean: '\n", + " 'Nature-based environmental and climate '\n", + " 'protection in underfunded ecosystems with image '\n", + " 'problems.\\n'\n", + " 'Concrete projects that are locally rooted and '\n", + " 'have both regional and international impact.\\n'\n", + " 'Holistic projects that systematically interlink '\n", + " 'multiple technical and social perspectives '\n", + " '(interdisciplinarity).',\n", + " 'Programme Areas': 'Arts & Culture\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector\\n'\n", + " 'Education\\n'\n", + " 'Environment/Climate\\n'\n", + " 'Peace & Conflict Resolution\\n'\n", + " 'Sciences & Research'},\n", + " 'position': {'address': 'Mauerkircherstraße 12, Munich-Bogenhausen, Germany',\n", + " 'city': 'München',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.1497328,\n", + " 'lng': 11.6012926,\n", + " 'name': 'Mauerkircherstraße 12',\n", + " 'place_id': 'ChIJW8XsIJ91nkcRKrCt_VJpuAk',\n", + " 'post_code': '81679',\n", + " 'state': 'Bayern',\n", + " 'state_short': 'BY',\n", + " 'street_name': 'Mauerkircherstraße',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Peace & Conflict Resolution',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.avbstiftung.de/en/'},\n", + " {'address': 'Salyutna St. 5, office 49 Kyiv, 04111 Ukraine',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Ukraine'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 24510,\n", + " 'link': 'https://philea.eu/members/philanthropy-in-ukraine/',\n", + " 'name': 'Philanthropy in Ukraine',\n", + " 'philea_info': {'About': 'A platform of ecosystem solutions to strengthen '\n", + " 'trust in NGOs through verification and open data',\n", + " 'Geographic Focus': 'Currently, we operate in Ukraine for '\n", + " 'Ukrainian organizations, but we also '\n", + " 'provide services and have partnerships '\n", + " 'with international donors who support '\n", + " 'Ukraine or need our services for their '\n", + " 'grantees in Ukraine.',\n", + " 'Mission': 'Our major areas of expertise are: verification '\n", + " 'and due diligence as we’re operating PhilinUA '\n", + " 'digital platform to vet NGOs against '\n", + " 'international standards; capacity strengthening '\n", + " 'as we’re delivering educational programs on '\n", + " 'governance, finance, and strategic planning for '\n", + " 'civil society professionals; sectoral analytics '\n", + " 'as we’re providing research and consultative '\n", + " 'data to guide systemic improvements in '\n", + " 'philanthropy. We employ a systemic approach to '\n", + " 'align Ukrainian philanthropy with global '\n", + " 'standards. Our primary distinction is the '\n", + " 'innovative PhilinUA platform, which provides a '\n", + " 'scalable, technology-driven solution for donor '\n", + " 'trust and due diligence. Our values are: '\n", + " 'strategic thinking, co-creation and impact. Our '\n", + " 'core strength is building trust and '\n", + " 'transparency. By simplifying the verification '\n", + " 'process, we directly facilitate the attraction '\n", + " 'of essential international funding and enhance '\n", + " 'the long-term resilience of Ukrainian civil '\n", + " 'society.'},\n", + " 'position': {'address': 'Salyutna St. 5, office 49 Kyiv, 04111 Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4503596,\n", + " 'lng': 30.5245025,\n", + " 'place_id': 'ChIJBUVa4U7P1EAR_kYBF9IxSXY',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv city',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://philanthropy.in.ua'},\n", + " {'address': 'Calle de Alcalá, 27, Madrid, Spain',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain']},\n", + " 'id': 24509,\n", + " 'link': 'https://philea.eu/members/confederacion-espanola-de-cajas-de-ahorros/',\n", + " 'name': 'Confederación Española de Cajas de Ahorros',\n", + " 'philea_info': {'About': 'CECA is a banking association committed to '\n", + " 'representing, defending and promoting its member '\n", + " 'entities’ interests. It provides them with advice '\n", + " 'and supports them in their endeavour to offer '\n", + " 'services that promote financial inclusion and '\n", + " 'access to credit. This work is undertaken with a '\n", + " 'sustainable approach, notably featuring Obra '\n", + " 'Social and financial education.',\n", + " 'Geographic Focus': 'Spain',\n", + " 'Programme Areas': 'Our activity is divided into four main '\n", + " 'areas: Institutional representation: '\n", + " 'Defense of our member entities’ '\n", + " 'interests in national and international '\n", + " 'forums.\\n'\n", + " 'Economic and regulatory analysis: '\n", + " 'Exhaustive follow-up regulatory of the '\n", + " 'national and international agendas and '\n", + " 'economic studies ad-hoc.\\n'\n", + " 'Sustainability and Obra Social: '\n", + " 'Dissemination and promotion of the Obra '\n", + " 'Social, financial education and '\n", + " 'sustainability.\\n'\n", + " 'Worker representation: Defense of member '\n", + " 'entities that are bound by the sector’s '\n", + " 'Collective Bargaining Agreement. The '\n", + " 'Obra Social of CECA’s member entities '\n", + " 'constitutes Spain’s leading source of '\n", + " 'private social investment, reflecting a '\n", + " 'firm commitment to building a more '\n", + " 'equitable and inclusive society. CECA '\n", + " 'represents banking institutions and more '\n", + " 'than thirty banking and ordinary '\n", + " 'foundations. In 2024, CECA Foundations '\n", + " 'and associated entities collectively '\n", + " 'invested over €906 million in social '\n", + " 'initiatives, positioning them as the '\n", + " 'country’s largest private social '\n", + " 'investor. This significant level of '\n", + " 'investment enables the development of '\n", + " 'programs that directly address societal '\n", + " 'needs across a wide range of areas. The '\n", + " 'social programs implemented by CECA’s '\n", + " 'entities and foundations encompass '\n", + " 'fields such as social assistance, '\n", + " 'financial education, job creation, '\n", + " 'cultural development, research, and '\n", + " 'environmental protection, among others. '\n", + " 'Another major strength of CECA’s '\n", + " 'contribution to society lies in the '\n", + " 'extensive territorial presence of its '\n", + " 'member entities. Thanks to the wide '\n", + " 'presence of its foundations and banks '\n", + " 'throughout the country, CECA is able to '\n", + " 'reach diverse population groups – '\n", + " 'including those in vulnerable or remote '\n", + " 'areas – ensuring that its impact is both '\n", + " 'far-reaching and deeply rooted in local '\n", + " 'communities. Furthermore, CECA and its '\n", + " 'associated entities demonstrate a strong '\n", + " 'commitment to Financial Education and '\n", + " 'Sustainability. In the field of '\n", + " 'financial education, CECA, its member '\n", + " 'entities continue to work on their '\n", + " 'social vocation with the conviction that '\n", + " 'financial education is more necessary '\n", + " 'than ever, as it is vital to have '\n", + " 'financially responsible citizens, who '\n", + " 'manage their resources in the most '\n", + " 'efficient way, and to enhance '\n", + " 'digitalization when it comes to '\n", + " 'disseminating knowledge and skills. '\n", + " 'Also, in terms of sustainability, CECA '\n", + " 'and its member entities are aware that '\n", + " 'the financial sector can promote changes '\n", + " 'that will bring it closer to achieving '\n", + " 'the 2030 Agenda, which sets out the 17 '\n", + " 'Sustainable Development Goals to '\n", + " 'implement actions aimed to social and '\n", + " 'environmental improvement throughout the '\n", + " 'world. Furthermore, CECA adheres to the '\n", + " 'WSBI-ESBG Charter for Responsible and '\n", + " 'Sustainable Business.'},\n", + " 'position': {'address': 'Calle de Alcalá, 27, Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.41845850000001,\n", + " 'lng': -3.6986681,\n", + " 'name': 'C. Alcalá, 27',\n", + " 'place_id': 'ChIJA_9ksYYoQg0RAu5gh9in4Tw',\n", + " 'post_code': '28014',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle Alcalá',\n", + " 'street_name_short': 'C. Alcalá',\n", + " 'street_number': '27',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.ceca.es'},\n", + " {'address': 'Blue House Yard, River Park Road, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 24508,\n", + " 'link': 'https://philea.eu/members/we-are-purposeful/',\n", + " 'name': 'We Are Purposeful',\n", + " 'philea_info': {'About': 'Purposeful is an Africa-rooted global hub for '\n", + " 'girls’ and young feminists organising and '\n", + " 'leadership. We believe that another world is not '\n", + " 'only possible, it is already being built right '\n", + " 'here and now, in the ways that girls and young '\n", + " 'feminists are organising with each other, '\n", + " 'imagining with each other, pushing us all a little '\n", + " 'further towards liberation.',\n", + " 'Mission': 'We resource girls and young feminists priorities '\n", + " 'in nearly every region of the world. Their '\n", + " 'priorities are our priorities. This is often a '\n", + " 'combination of gender-based violence, education, '\n", + " 'economic opportunity, climate crisis, and '\n", + " 'ensuring civic spaces stay open.',\n", + " 'Programme Areas': 'Two of our most innovative and '\n", + " 'distinguishing characteristics are 1) '\n", + " 'our highly participatory grant-making '\n", + " 'model that ensures resources reach those '\n", + " 'most impacted and 2) our inclusive '\n", + " 'accompaniment model which ensure our '\n", + " 'grantee partners, who have multiple '\n", + " 'intersecting vulnerabilities, have with '\n", + " 'wrap around support.'},\n", + " 'position': {'address': 'Blue House Yard, River Park Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5972015,\n", + " 'lng': -0.1116638,\n", + " 'name': 'Blue House Yard',\n", + " 'place_id': 'ChIJ0zqdKOIbdkgR0qSLHN8y2Pk',\n", + " 'post_code': 'N22 7TB',\n", + " 'state': 'England',\n", + " 'street_name': 'River Park Road',\n", + " 'street_name_short': 'River Park Rd',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://wearepurposeful.org/'},\n", + " {'address': 'Jurkovićeva ulica 3, Zagreb, Croatia',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Croatia',\n", + " 'Slovenia']},\n", + " 'id': 24507,\n", + " 'link': 'https://philea.eu/members/solidarna-foundation/',\n", + " 'name': 'SOLIDARNA Foundation',\n", + " 'philea_info': {'About': 'The SOLIDARNA Foundation is a philanthropic '\n", + " 'organization dedicated to protecting and advancing '\n", + " 'human rights through community-driven support, '\n", + " 'strategic partnerships, and systemic change.',\n", + " 'Geographic Focus': 'Croatia and Slovenia',\n", + " 'Mission': 'We work to transform solidarity into concrete '\n", + " 'action by providing direct support to '\n", + " 'individuals and communities, strengthening civil '\n", + " 'society, and advocating for policies that '\n", + " 'promote equality, dignity, and social justice.',\n", + " 'Programme Areas': 'The SOLIDARNA Foundation works at the '\n", + " 'intersection of human rights, gender '\n", + " 'equality, and democratic participation, '\n", + " 'with a strongfocus on translating values '\n", + " 'into tangible social impact. Our key '\n", + " 'areas of expertise include: Human rights '\n", + " 'and social justice – protecting and '\n", + " 'advancing the rights of women, '\n", + " 'minorities, migrants, and other '\n", + " 'marginalized groups through direct '\n", + " 'support and systemic advocacy.\\n'\n", + " 'Gender equality and women’s empowerment '\n", + " '– supporting women-led initiatives, '\n", + " 'addressing gender-based violence, '\n", + " 'economic inequality, and structural '\n", + " 'discrimination.\\n'\n", + " 'Civil society strengthening – providing '\n", + " 'financial support, capacity building, '\n", + " 'and strategic guidance to grassroots '\n", + " 'organizations and informal initiatives.\\n'\n", + " 'Civic engagement and democratic '\n", + " 'participation – fostering active '\n", + " 'citizenship, community organizing, and '\n", + " 'protection of democratic '\n", + " 'values.Strategic philanthropy and '\n", + " 'grantmaking – designing and managing '\n", + " 'transparent, impact-oriented funding '\n", + " 'mechanisms that respond to real needs on '\n", + " 'the ground.\\n'\n", + " 'Policy advocacy and cross-sector '\n", + " 'collaboration – contributing expertise '\n", + " 'to policy development and building '\n", + " 'bridges between civil society, '\n", + " 'institutions, and responsible '\n", + " 'businesses. What sets SOLIDARNA apart is '\n", + " 'how we work and where we position '\n", + " 'ourselves: Community-rooted and '\n", + " 'trust-based: We do not impose solutions. '\n", + " 'We create space for solutions to emerge '\n", + " 'from communities themselves, grounded in '\n", + " 'lived experience and local knowledge.\\n'\n", + " 'From solidarity to systems change: '\n", + " 'Alongside direct support, we invest in '\n", + " 'long-term structural change through '\n", + " 'advocacy, research, and partnerships.\\n'\n", + " 'Bridge-builder across sectors: SOLIDARNA '\n", + " 'connects civil society, public '\n", + " 'institutions, donors, and the private '\n", + " 'sector, translating shared values into '\n", + " 'concrete, measurable action.\\n'\n", + " 'Evidence-based and dignified approach: '\n", + " 'Our work is informed by data, expertise, '\n", + " 'and practice, and communicated with '\n", + " 'respect—never sensationalist or '\n", + " 'patronizing.\\n'\n", + " 'Agile and responsive: We are able to '\n", + " 'respond quickly to emerging social '\n", + " 'challenges while maintaining strategic '\n", + " 'focus and accountability.\\n'\n", + " '\\n'\n", + " 'SOLIDARNA’s key strength lies in its '\n", + " 'ability to combine empathy with '\n", + " 'expertise, and immediacy with '\n", + " 'sustainability. We turn solidarity into '\n", + " 'a reliable social infrastructure—one '\n", + " 'that provides timely support where it is '\n", + " 'most needed, while also shaping '\n", + " 'conditions for a more just, equal, and '\n", + " 'resilient society. Our contribution is '\n", + " 'not only in the resources we mobilize, '\n", + " 'but in the trust we build, the voices we '\n", + " 'amplify, and the systemic changes we '\n", + " 'help make possible—in Croatia, the '\n", + " 'region, and across Europe'},\n", + " 'position': {'address': 'Jurkovićeva ulica 3, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.81490180000001,\n", + " 'lng': 15.9903851,\n", + " 'name': 'Jurkovićeva ul. 3',\n", + " 'place_id': 'ChIJ61VlCKvXZUcR8czyDuySB1g',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Jurkovićeva ulica',\n", + " 'street_name_short': 'Jurkovićeva ul.',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.solidarna.hr'},\n", + " {'address': '67 Mountain Blvd suite 201, Warren, NJ, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa']},\n", + " 'id': 24506,\n", + " 'link': 'https://philea.eu/members/segal-family-foundation/',\n", + " 'name': 'Segal Family Foundation',\n", + " 'philea_info': {'About': 'Segal Family Foundation is a social impact funder '\n", + " 'and advisor championing African visionaries.',\n", + " 'Geographic Focus': 'Sub Saharan Africa',\n", + " 'Mission': 'Segal Family Foundation is a social impact '\n", + " 'funder and advisor championing African '\n", + " 'visionaries.',\n", + " 'Programme Areas': 'Invest: We find, vet, and invest in '\n", + " 'early-stage social leaders and '\n", + " 'organizations with huge potential to '\n", + " 'transform society. Connect: We bring '\n", + " 'together a rich community of African '\n", + " 'visionaries and global funders to foster '\n", + " 'transformative collaboration. Advise: We '\n", + " 'advance big visions by equipping '\n", + " 'partners and donors with the resources '\n", + " 'and advice they need to succeed.'},\n", + " 'position': {'address': '67 Mountain Blvd suite 201, Warren, NJ, USA',\n", + " 'city': 'Warren',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.6161249,\n", + " 'lng': -74.49897480000001,\n", + " 'name': '67 Mountain Blvd suite 201',\n", + " 'place_id': 'EjE2NyBNb3VudGFpbiBCbHZkIHN1aXRlIDIwMSwgV2FycmVuLCBOSiAwNzA1OSwgVVNBIiUaIwoWChQKEgk7T-HRTLnDiRH69HeOmheIEBIJc3VpdGUgMjAx',\n", + " 'post_code': '07059',\n", + " 'state': 'New Jersey',\n", + " 'state_short': 'NJ',\n", + " 'street_name': 'Mountain Boulevard',\n", + " 'street_name_short': 'Mountain Blvd',\n", + " 'street_number': '67',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.segalfamilyfoundation.org'},\n", + " {'address': 'Place de Cornavin 2, Geneva, Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 24505,\n", + " 'link': 'https://philea.eu/members/partners-for-a-new-economy/',\n", + " 'name': 'Partners for a New Economy',\n", + " 'philea_info': {'About': 'Partners for a New Economy is an international '\n", + " 'philanthropic collaboration, hosted by the Swiss '\n", + " 'Philanthropy Foundation. We were founded in 2015 '\n", + " 'by the MAVA, Oak, Marisla and KR Foundations, to '\n", + " 'address the root causes of environmental '\n", + " 'degradation that lie within our economic system. '\n", + " 'In 2025 we were joined by Seedling Foundation and '\n", + " 'Regenerative Foundation, and continue to have '\n", + " 'further support from Laudes and Ford Foundations. '\n", + " 'Our truly international collaborative funds '\n", + " 'initiatives that show a deep understanding of '\n", + " 'planetary boundaries and an urgency to transform '\n", + " 'our economy to live within them. We are a trusted '\n", + " 'partner for funders navigating the new economy '\n", + " 'space, offering insights, connections and pathways '\n", + " 'that help make economic systems change for the '\n", + " 'benefit of the planet and its people more tangible '\n", + " 'and fundable. Whilst our main geographic focus is '\n", + " 'Europe, we are keen to see a breadth of '\n", + " 'perspective and global outlook.',\n", + " 'Geographic Focus': 'European focus with an established role '\n", + " 'in the global new economy ecosystem.',\n", + " 'Mission': 'An economy that serves people and nature, now '\n", + " 'and for future generations.',\n", + " 'Programme Areas': 'Grant Making: which aims to cultivate '\n", + " 'the conditions for economic systems '\n", + " 'change in Europe, to nurture economies '\n", + " 'in service of people and nature\\n'\n", + " 'Field Building: to grow and strengthen '\n", + " 'the new economy ecosystem, supporting '\n", + " 'people and organisations to find greater '\n", + " 'alignment, understanding, deepening '\n", + " 'their interdependence and building '\n", + " 'collective power. P4NE hosts an annual '\n", + " 'New Economies global gathering.\\n'\n", + " 'Partnerships & Learning: P4NE is an '\n", + " 'international funder collaborative. We '\n", + " 'are committed to deepening understanding '\n", + " 'of new economic thinking in order to '\n", + " 'encourage support of real world '\n", + " 'solutions.'},\n", + " 'position': {'address': 'Place de Cornavin 2, Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2084926,\n", + " 'lng': 6.1428645,\n", + " 'name': 'Pl. de Cornavin 2',\n", + " 'place_id': 'ChIJk1z4kidljEcRgdv-BG4Y7wc',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Cornavin',\n", + " 'street_name_short': 'Pl. de Cornavin',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://p4ne.org/'},\n", + " {'address': 'Læderstræde 20, Copenhagen, Denmark',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 24504,\n", + " 'link': 'https://philea.eu/members/kr-foundation/',\n", + " 'name': 'KR Foundation',\n", + " 'philea_info': {'About': 'The mission of KR Foundation is to address the '\n", + " 'root causes of climate change and biological '\n", + " 'degradation by pushing for a rapid phase-out of '\n", + " 'fossil fuels at a global level.',\n", + " 'Geographic Focus': 'The mission of KR Foundation is to '\n", + " 'address the root causes of climate '\n", + " 'change and biological degradation by '\n", + " 'pushing for a rapid phase-out of fossil '\n", + " 'fuels at a global level.',\n", + " 'Mission': 'The mission of KR Foundation is to address the '\n", + " 'root causes of climate change and biological '\n", + " 'degradation by pushing for a rapid phase-out of '\n", + " 'fossil fuels at a global level.',\n", + " 'Programme Areas': 'Challenge Finance Mission: aligning '\n", + " 'financial policies and regulation '\n", + " 'enabling an energy transition away from '\n", + " 'fossil fuels.\\n'\n", + " 'Challenge Influence mission: Addressing '\n", + " 'the political influence and social '\n", + " 'license of fossil fuel actors '\n", + " 'obstructing climate action\\n'\n", + " 'Economic Transformation mission: '\n", + " 'Exploring post-growth economic paradigms '\n", + " 'that can operate within planetary '\n", + " 'boundaries.'},\n", + " 'position': {'address': 'Læderstræde 20, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.67819679999999,\n", + " 'lng': 12.5780295,\n", + " 'name': 'Læderstræde 20',\n", + " 'place_id': 'ChIJ6_tpKRFTUkYRT5AVaL66Ess',\n", + " 'post_code': '1201',\n", + " 'street_name': 'Læderstræde',\n", + " 'street_number': '20',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.krfnd.org'},\n", + " {'address': 'Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de '\n", + " 'Panamá ',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Global South / Majority World': ['Global South'],\n", + " 'Latin America & Caribbean': ['Latin America']},\n", + " 'id': 24503,\n", + " 'link': 'https://philea.eu/members/fundacion-avina/',\n", + " 'name': 'Fundación AVINA',\n", + " 'philea_info': {'About': 'Fundación Avina is a Latin American philanthropic '\n", + " 'foundation with over 30 years of experience '\n", + " 'advancing systemic change in Latin America. We '\n", + " 'work across three interconnected areas: climate '\n", + " 'action; just and regenerative economies; and '\n", + " 'democratic innovation. We act as a grantmaker and '\n", + " 'strategic intermediary connecting civil society, '\n", + " 'philanthropy, the private sector, and public '\n", + " 'institutions. Avina’s distinguishing strength is '\n", + " 'its role as a bridge between locally led solutions '\n", + " 'in the Global South and global philanthropic, '\n", + " 'corporate, and policy agendas. We focus on '\n", + " 'ecosystem-building, multi-stakeholder '\n", + " 'collaboration, and long-term systems change rather '\n", + " 'than isolated projects. Our key contribution is '\n", + " 'enabling locally led systemic change at scale, '\n", + " 'ensuring communities most affected by inequality '\n", + " 'and climate change are co-creators and '\n", + " 'decision-makers in shaping solutions.',\n", + " 'Geographic Focus': 'Latin America and the Global South',\n", + " 'Mission': 'Rooted in the global South, Fundación Avina '\n", + " 'works to drive collaborative processes that '\n", + " 'bring about systemic changes in favor of human '\n", + " 'dignity and care for the planet.',\n", + " 'Programme Areas': 'Biomes, Water, Climate, Inclusive and '\n", + " 'Circular Economy, Labor Innovation, '\n", + " 'Democracies'},\n", + " 'position': {'address': 'Evelio Lara, Casa N°131-B Ciudad del Saber, '\n", + " 'Clayton, Ciudad de Panamá ',\n", + " 'city': 'Panamá',\n", + " 'country': 'Panama',\n", + " 'country_short': 'PA',\n", + " 'lat': 8.9971189,\n", + " 'lng': -79.5823125,\n", + " 'place_id': 'ChIJLfCbTzWmrI8Rsl2lERV3mXk',\n", + " 'state': 'Provincia de Panamá',\n", + " 'street_name': 'Calle Evelio Lara',\n", + " 'street_name_short': 'C. Evelio Lara',\n", + " 'zoom': 15},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.avina.net'},\n", + " {'address': 'Forte Petrazza, Località Forte Petrazza, Camaro Superiore, '\n", + " 'Metropolitan City of Messina, Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Middle East & North Africa (MENA)': ['MENA'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 24502,\n", + " 'link': 'https://philea.eu/members/fondazione-messina/',\n", + " 'name': 'Fondazione MeSSInA',\n", + " 'philea_info': {'About': 'The MeSSiNa Foundation operates as a '\n", + " '“Transformation Steward” or catalyst for local '\n", + " 'development in marginalized territories, primarily '\n", + " 'in Sicily.',\n", + " 'Geographic Focus': 'The MeSSiNa Foundation’s primary target '\n", + " 'is the region of Sicily in Italy and '\n", + " 'more generally Southern Italy. '\n", + " 'Nevertheless, we consider Sicily as a '\n", + " '\"natural laboratory\" for '\n", + " 'socio-environmental experimentation '\n", + " 'that could be adapted and tested in '\n", + " 'other contexts facing similar issues. '\n", + " 'Having this in mind, the Foundation '\n", + " 'operates within a transnational '\n", + " 'framework through its partnership with '\n", + " 'international entities, being already '\n", + " 'member of the European Federation of '\n", + " 'Ethical and Alternative Banks and '\n", + " 'Financiers (FEBEA), the European '\n", + " 'Network Of Cities And Regions For The '\n", + " 'Social Economy (REVES) and the '\n", + " 'Foundations Platform F20. It also runs '\n", + " 'several EU-funded projects with '\n", + " 'European and MENA partners.',\n", + " 'Mission': 'The official purpose of the MeSSiNa Foundation '\n", + " 'is to promote social justice and sustainable '\n", + " 'economic and human development bydesigning, '\n", + " 'experimenting with, and promoting new '\n", + " 'socio-economic policies in marginalized '\n", + " 'territories',\n", + " 'Programme Areas': 'The cluster led by the Foundation covers '\n", + " 'several areas: Social mediation and '\n", + " 'personalized social support for '\n", + " 'disadvantaged people (mentally ill '\n", + " 'people, low-income families, former '\n", + " 'prisoners, etc.);\\n'\n", + " 'Energy projects (design and '\n", + " 'implementation of energy efficiency, '\n", + " 'production and redistribution '\n", + " 'interventions, creation of Renewable '\n", + " 'Energy Communities, etc.);\\n'\n", + " 'Cultural production and events, '\n", + " 'including the creation and management of '\n", + " 'museums, digital immersive rooms, '\n", + " 'international festival of performative '\n", + " 'arts, etc.;\\n'\n", + " 'Educational activities for students of '\n", + " 'all ages;\\n'\n", + " 'Business incubation and consolidation of '\n", + " 'social enterprises, through training, '\n", + " 'coaching, temporary management, etc.;\\n'\n", + " 'Financial services (through a co-funded '\n", + " 'microcredit institution, a co-funded '\n", + " 'asset management company, partner banks, '\n", + " 'etc.);\\n'\n", + " 'Technological research and innovation on '\n", + " 'several fields (energy production and '\n", + " 'distribution, housing, bioplastics, '\n", + " 'digital immersive rooms, etc.);\\n'\n", + " 'Urban regeneration interventions '\n", + " '(regeneration of buildings, urban art, '\n", + " 'regeneration of green spaces, etc.); '\n", + " 'etc. In the cluster, the Foundation does '\n", + " 'not function as a traditional top-down '\n", + " 'administrator or a simple service '\n", + " 'provider; instead, it designs the '\n", + " 'overall local development strategy for '\n", + " 'and with the target community, providing '\n", + " 'a theoretical framework based on '\n", + " 'complexity science and human '\n", + " 'development. It then structures the '\n", + " 'financial and operational relationships '\n", + " 'and framework that allow the cluster to '\n", + " 'thrive and implement the policies '\n", + " 'integrating all different activity '\n", + " 'areas.'},\n", + " 'position': {'address': 'Forte Petrazza, Località Forte Petrazza, Camaro '\n", + " 'Superiore, Metropolitan City of Messina, Italy',\n", + " 'city': 'Camaro Superiore',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 38.1814676,\n", + " 'lng': 15.5276218,\n", + " 'name': 'Forte Petrazza',\n", + " 'place_id': 'ChIJTT7gPJROFBMRVEOMJ1_wBs4',\n", + " 'post_code': '98151',\n", + " 'state': 'Sicilia',\n", + " 'state_short': 'ME',\n", + " 'street_name': 'Località Forte Petrazza',\n", + " 'street_number': 'SNC',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://fdcmessina.org/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Slovakia']},\n", + " 'id': 24349,\n", + " 'link': 'https://philea.eu/members/volkswagen-slovakia-foundation/',\n", + " 'name': 'Volkswagen Slovakia Foundation',\n", + " 'philea_info': {'About': 'Transforming Slovakia into a more educated, open, '\n", + " 'and engaged society — together and through '\n", + " 'innovation.',\n", + " 'Geographic Focus': 'Slovakia',\n", + " 'Mission': 'Transforming Slovakia into a more educated, '\n", + " 'open, and engaged society — together and through '\n", + " 'innovation.',\n", + " 'Programme Areas': 'Nadácia Volkswagen Slovakia focuses on '\n", + " 'advancing education, participation of '\n", + " 'vulnerable groups, and the development '\n", + " 'of cohesive communities. Our core '\n", + " 'expertise lies in designing and scaling '\n", + " 'innovative programmes that strengthen '\n", + " 'inclusive education, empower '\n", + " 'underrepresented learners, and build '\n", + " 'bridges between schools, families, and '\n", + " 'communities.As a corporate foundation, '\n", + " 'we act as a connector between '\n", + " 'philanthropy, business, and public '\n", + " 'systems, supporting pilot projects that '\n", + " 'generate learning and evidence for '\n", + " 'broader policy and practice change. '\n", + " 'Through strategic partnerships, targeted '\n", + " 'grantmaking, and capacity-building, we '\n", + " 'scale promising initiatives and promote '\n", + " 'long-term, systemic impact.Our key '\n", + " 'strength is the ability to catalyse '\n", + " 'systems change — we convene diverse '\n", + " 'stakeholders from education, government, '\n", + " 'and civil society to co-create solutions '\n", + " 'that foster inclusion, equity, and '\n", + " 'innovation. By combining private-sector '\n", + " 'agility with social impact goals, '\n", + " 'Nadácia Volkswagen Slovakia contributes '\n", + " 'to a more inclusive, resilient, and '\n", + " 'future-oriented society.'},\n", + " 'position': {'address': 'Jána Jánoša 1 bratislava',\n", + " 'city': 'Bratislava',\n", + " 'country': 'Slovakia',\n", + " 'country_short': 'SK',\n", + " 'lat': 48.1477745,\n", + " 'lng': 17.1071553,\n", + " 'place_id': 'ChIJl2HKCjaJbEcRaEOI_YKbH2M',\n", + " 'state': 'Bratislava Region',\n", + " 'zoom': 12},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nadacia-volkswagen.sk/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 24348,\n", + " 'link': 'https://philea.eu/members/virgin-unite/',\n", + " 'name': 'Virgin Unite',\n", + " 'philea_info': {'About': 'Virgin Unite was founded in 2004 as the non-profit '\n", + " 'foundation of the Virgin Group, to unite people '\n", + " 'and entrepreneurial ideas to create opportunities '\n", + " 'for a better world. Since launch, together with '\n", + " 'some great partners, Virgin Unite has inspired and '\n", + " 'incubated a number of wonderful collaborations – '\n", + " 'like The Elders, Ocean Unite (now ORRAA), Carbon '\n", + " 'War Room (now merged with RMI), The B Team, '\n", + " 'Caribbean Climate Smart Accelerator, Unite BVI and '\n", + " '100% Human at Work – which have spurred '\n", + " 'much-needed change in the world. We continue to '\n", + " 'catalyse radical collaboration to challenge the '\n", + " 'unacceptable as we work for a world where all the '\n", + " 'planet and all people thrive.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Programme Areas': 'We do philanthropy the Virgin way – that '\n", + " 'means being a positive disruptor, taking '\n", + " 'risks, entering spaces that are '\n", + " 'underfunded or overlooked, and uniting '\n", + " 'unlikely allies to multiply impact. Our '\n", + " 'mission is to unite people and '\n", + " 'entrepreneurial ideas to tackle the '\n", + " 'world’s most urgent challenges. Whether '\n", + " 'addressing injustice, reimagining '\n", + " 'business, or protecting the planet, our '\n", + " 'approach remains the same: take risks, '\n", + " 'back the bold, and never act alone. '\n", + " 'Unlike many traditional non-profit '\n", + " 'foundations, Virgin Unite doesn’t focus '\n", + " 'on a single issue. Instead, we look to '\n", + " 'challenge unacceptable issues or drive '\n", + " 'systems change in areas that aren’t '\n", + " 'getting enough attention, mobilising our '\n", + " 'community, partners, and their resources '\n", + " 'towards supporting the cause. Crucially, '\n", + " 'we don’t focus on a particular geography '\n", + " 'or issue, instead looking to be a '\n", + " 'positive disruptor in areas where we '\n", + " 'think we can specifically make a '\n", + " 'difference due to our unique approach, '\n", + " 'or because others aren’t currently '\n", + " 'giving the issue the attention it needs. '\n", + " 'We act as a positive disruptor by '\n", + " 'incubating and launching new non-profit '\n", + " 'initiatives. These organisations address '\n", + " 'a gap where systemic change is needed '\n", + " 'and eventually go on to thrive '\n", + " 'independently, with continued support '\n", + " 'from Virgin Unite. As of 2024, Virgin '\n", + " 'Unite has led and supported the '\n", + " 'incubation of 22 non-profit initiatives '\n", + " '– including The Elders, The B Team, '\n", + " 'Ocean Unite (now ORRAA), Carbon War Room '\n", + " '(now merged with RMI), Caribbean Climate '\n", + " 'Smart Accelerator, Unite BVI, and '\n", + " 'Planetary Guardians. We also look to '\n", + " 'embrace the same bold and innovative '\n", + " 'spirit that Virgin uses to change '\n", + " 'business for good and apply it to the '\n", + " 'world’s toughest challenges. This means '\n", + " 'working with businesses, and backing '\n", + " 'entrepreneurs, that drive positive '\n", + " 'social, environmental and economic '\n", + " 'benefits for people and the planet .A '\n", + " 'key component of Virgin Unite is our '\n", + " 'Constellation – a network and community '\n", + " 'of over 3,500 high net-wealth '\n", + " 'individuals, philanthropists, business '\n", + " 'leaders and entrepreneurs who convene to '\n", + " 'co-create solutions to some of the '\n", + " 'world’s biggest problems.'},\n", + " 'position': {'address': '50a Charlotte Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5198393,\n", + " 'lng': -0.1358514,\n", + " 'name': '50a Charlotte St.',\n", + " 'place_id': 'ChIJj2Wr5CsbdkgRDcBQ-Ujjj-0',\n", + " 'post_code': 'W1T 2NS',\n", + " 'state': 'England',\n", + " 'street_name': 'Charlotte Street',\n", + " 'street_name_short': 'Charlotte St.',\n", + " 'street_number': '50a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.virginunite.com'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 24347,\n", + " 'link': 'https://philea.eu/members/romanian-federation-for-community-foundations/',\n", + " 'name': 'Romanian Federation for Community Foundations',\n", + " 'philea_info': {'About': 'FFCR’s vision is to develop a strong network of '\n", + " 'Community Foundations that contribute to '\n", + " 'transforming every community into a welcoming '\n", + " '“home” by supporting local philanthropy and civic '\n", + " 'initiatives. The organization’s mission is to be '\n", + " 'the network that creates sustainable, active, and '\n", + " 'inclusive communities through national programs, '\n", + " 'expertise, strategic partnerships, and '\n", + " 'collaborative leadership. The Federation promotes '\n", + " 'strategic philanthropy, cross-sector collaboration '\n", + " '(public, private, civil society), social '\n", + " 'responsibility, and civic engagement, aiming to '\n", + " 'support individuals and organizations that invest '\n", + " 'in the development of their own communities. '\n", + " 'FFCR’s actions are guided by the values of '\n", + " 'Togetherness, Trust, and Foresight and Leadership.',\n", + " 'Mission': 'To be the network that creates sustainable, '\n", + " 'active, and inclusive communities through '\n", + " 'national programs, expertise, strategic '\n", + " 'partnerships, and collaborative leadership.'},\n", + " 'position': {'address': 'Int. Dridu nr. 7, bl. F13, sc. B, ap. 68, sector 1',\n", + " 'city': 'Bucharest',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 44.452444,\n", + " 'lng': 26.0856777,\n", + " 'place_id': 'ChIJX-KIi7kDskARFJCx_PyWpi4',\n", + " 'state': 'Bucharest',\n", + " 'zoom': 16},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://ffcr.ro/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 24346,\n", + " 'link': 'https://philea.eu/members/grundfos-foundation/',\n", + " 'name': 'Grundfos Foundation',\n", + " 'philea_info': {'About': 'The main purpose of the Grundfos Foundation is to '\n", + " 'ensure and support healthy economic growth and '\n", + " 'development of the Grundfos Group. The Foundation '\n", + " 'fulfils its main purpose through exercising active '\n", + " 'ownership towards the Grundfos Group.',\n", + " 'Geographic Focus': 'Global, with a focus on Denmark',\n", + " 'Mission': 'The main purpose of the Grundfos Foundation is '\n", + " 'to ensure and support healthy economic growth '\n", + " 'and development of the Grundfos Group. The '\n", + " 'Foundation fulfils its main purpose through '\n", + " 'exercising active ownership towards the Grundfos '\n", + " 'Group.',\n", + " 'Programme Areas': 'Philanthropy The Foundation runs its '\n", + " 'philanthropic business through donations '\n", + " 'to areas that are in harmony with the '\n", + " 'will and principles of the founder; '\n", + " 'contribute positively to the sustainable '\n", + " 'development of Grundfos and the '\n", + " 'surrounding community; contribute to the '\n", + " 'pride of Grundfos’ employeesaffect '\n", + " 'society and strengthen relationships '\n", + " 'that support Grundfos’ work; maintain '\n", + " 'the Foundation and Grundfos as '\n", + " 'socio-bearing entities. The Foundation’s '\n", + " 'donations are given primarily in three '\n", + " 'areas: Research and Learning: The '\n", + " 'Foundation supports selected research '\n", + " 'environments, especially within natural '\n", + " 'and technical science and initiatives '\n", + " 'that inspire children and young people '\n", + " 'to explore science and technology\\n'\n", + " 'Water and Sustainable Development: The '\n", + " 'Foundation strives to provide access to '\n", + " 'affordable drinking water and sanitation '\n", + " 'for the world’s poorest. The aim is to '\n", + " 'contribute to reducing global '\n", + " 'inequality.\\n'\n", + " 'Inclusion and Community Engagement: The '\n", + " 'Foundation focuses on the Central '\n", + " 'Jutland Region and the municipalities '\n", + " 'that are close to Grundfos’ home in '\n", + " 'Bjerringbro and supports Grundfos '\n", + " 'companies all over the world building '\n", + " 'local partnerships with organisations, '\n", + " 'institutions and associations. Grants '\n", + " 'from the Foundation must first and '\n", + " 'foremost benefit the intended '\n", + " 'beneficiaries. A project may very well '\n", + " 'cover several areas. For example, it is '\n", + " 'desirable that follow-up research be '\n", + " 'linked to projects within water and '\n", + " 'social inclusion. Likewise, initiatives '\n", + " 'in the field of water also contribute to '\n", + " 'social inclusion – in the form of, for '\n", + " 'example, local workplaces and improved '\n", + " 'communities. The Foundation not only '\n", + " 'supports fully designed projects, but '\n", + " 'also concept development, studies, '\n", + " 'project and product development.'},\n", + " 'position': {'address': 'Poul Due Jensens Vej 7, Bjerringbro, Denmark',\n", + " 'city': 'Bjerringbro',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 56.3802866,\n", + " 'lng': 9.6690239,\n", + " 'name': 'Poul Due Jensens Vej 7',\n", + " 'place_id': 'ChIJ1faoOTH4S0YRTPoMyHenWaM',\n", + " 'post_code': '8850',\n", + " 'street_name': 'Poul Due Jensens Vej',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.pdjf.dk/en/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 24345,\n", + " 'link': 'https://philea.eu/members/exea-impact/',\n", + " 'name': 'Exea Impact',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': \"Puig Brands Torre 2, Plaça d'Europa, 34, \"\n", + " \"L'Hospitalet de Llobregat, Spain\",\n", + " 'city': \"L'Hospitalet de Llobregat\",\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.357969,\n", + " 'lng': 2.1227306,\n", + " 'name': 'Puig Brands Torre 2',\n", + " 'place_id': 'ChIJ-a07tUCZpBIRjPXXZQm5n6c',\n", + " 'post_code': '08908',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': \"Plaça d'Europa\",\n", + " 'street_name_short': \"Pl. d'Europa\",\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.exeaimpact.org'},\n", + " {'address': '',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Bulgaria']},\n", + " 'id': 24344,\n", + " 'link': 'https://philea.eu/members/bulgarian-fund-for-women/',\n", + " 'name': 'Bulgarian Fund for Women',\n", + " 'philea_info': {'About': 'The Bulgarian Fund for Women’s major areas of '\n", + " 'expertise center on grantmaking for women’s '\n", + " 'rights, building the capacity of civil society '\n", + " 'organizations, and advancing gender equality and '\n", + " 'social justice in Bulgaria and the wider region. '\n", + " 'The organization has developed particular '\n", + " 'strengths in feminist philanthropy, intersectional '\n", + " 'advocacy, and supporting grassroots activism '\n", + " 'across diverse marginalized groups, including '\n", + " 'LGBTI+, rural women, migrants, and people with '\n", + " 'disabilities.',\n", + " 'Geographic Focus': 'Bulgaria',\n", + " 'Mission': 'To support the human rights and social justice '\n", + " 'movements by advancing philanthropy aimed at '\n", + " 'achieving structural change.',\n", + " 'Programme Areas': 'Distinguishing Characteristics BFW is '\n", + " 'distinguished as the only indigenous '\n", + " 'feminist foundation in Bulgaria, '\n", + " 'independent from any family, corporate, '\n", + " 'or external donor governance. It leads '\n", + " 'with an intersectional approach, '\n", + " 'prioritizing social inclusion and '\n", + " 'innovative movement building. Its '\n", + " 'expertise includes developing local '\n", + " 'resources, nurturing coalitions, and '\n", + " 'collaborating with both national and '\n", + " 'European partners to address systemic '\n", + " 'barriers and deliver impactful, '\n", + " 'evidence-based programming. Key Strength '\n", + " 'or Contribution BFW’s key strength is '\n", + " 'its ability to combine grantmaking with '\n", + " 'deep local engagement—mobilizing '\n", + " 'knowledge, networks, and resources to '\n", + " 'empower underrepresented groups and '\n", + " 'drive public policy changes. Its '\n", + " 'contribution to society is seen in '\n", + " 'capacity building for women’s '\n", + " 'organizations, cross-sector advocacy, '\n", + " 'and fostering a resilient ecosystem for '\n", + " 'gender justice and democracy in '\n", + " 'Bulgaria. This independent and strategic '\n", + " 'approach amplifies the voices of the '\n", + " 'most vulnerable, catalyzes wider social '\n", + " 'movements, and sustains long-term '\n", + " 'feminist change. Thematic Areas: Arts & '\n", + " 'Culture,\\n'\n", + " 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Gender equality and women’s empowerment '\n", + " 'Prevention ofgender-based violence and '\n", + " 'discrimination LGBTI+ rightsadvocacy '\n", + " 'Intersectional movement building '\n", + " 'formarginalized groups Activity Areas: '\n", + " 'Grantmaking: Providing core and project '\n", + " 'funding to women’s rights and gender '\n", + " 'justice organizations across Bulgaria.\\n'\n", + " 'Capacity building: Offering training, '\n", + " 'mentoring, networking, and collective '\n", + " 'action platforms for grassroots leaders '\n", + " 'and organizations.\\n'\n", + " 'Advocacy & research: Conducting research '\n", + " 'on the status of women’s rights and '\n", + " 'civil society, and leading advocacy to '\n", + " 'inform public policy and philanthropy.\\n'\n", + " 'Awareness and movement building: '\n", + " 'Developing feminist campaigns, convening '\n", + " 'forums, and supporting collective '\n", + " 'movement action for gender equality and '\n", + " 'democracy.'},\n", + " 'position': {'address': 'улица „Солунска“ 26, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6929644,\n", + " 'lng': 23.3191476,\n", + " 'name': 'Solunska Street 26',\n", + " 'place_id': 'ChIJUXfHw2yFqkARScaIU7ZQWBI',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'Solunska Street',\n", + " 'street_number': '26',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://bgfundforwomen.org/en/'},\n", + " {'address': 'MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Kosovo']},\n", + " 'id': 23661,\n", + " 'link': 'https://philea.eu/members/kosovar-civil-society-foundation/',\n", + " 'name': 'Kosovar Civil Society Foundation',\n", + " 'philea_info': {'About': 'Since its establishment in 1998 KCSF has '\n", + " 'functioned as a civil society hub, initially with '\n", + " 'significant expertise in financial and capacity '\n", + " 'building support to civil society and later also '\n", + " 'with extensive advocacy for protecting and '\n", + " 'advancing civic space. Within these core areas of '\n", + " 'work, KCSF’s in-house expertise includes grant '\n", + " 'making, civic participation, public funding for '\n", + " 'civil society, civil society-government '\n", + " 'cooperation, freedom of association, internal '\n", + " 'governance of CSOs, as well as civil society '\n", + " 'inclusion in European Integration. While primarily '\n", + " 'focused in Kosovo, KCSF has actively contributed '\n", + " 'to these areas also at the regional level in the '\n", + " 'Balkans, as well as participated in various '\n", + " 'European and global initiatives. KCSF is '\n", + " 'recognized for its systematic and holistic '\n", + " 'approach, namely insisting on building larger and '\n", + " 'integrated systems rather than one-off solutions. '\n", + " 'It is also recognized as a vocal supporter and '\n", + " 'contributor of localized approaches in supporting '\n", + " 'civil society, by both advocating for and applying '\n", + " 'support programs that are contextualized, in line '\n", + " 'with local needs and capacities and mindful of '\n", + " 'local culture. With a plethora of high-impact '\n", + " 'success stories over the years, in general KCSF is '\n", + " 'proud to have had enabled and empowered thousands '\n", + " 'of CSOs, informal groups and activists to become '\n", + " 'active and influential actors of Kosovo’s public '\n", + " 'life through adequate funding and tailor-made '\n", + " 'capacity building, while providing a crucial '\n", + " 'contribution through its advocacy to Kosovo being '\n", + " 'the only country in the Western Balkans to '\n", + " 'maintain a positive trend of civic space for over '\n", + " 'two decades now.',\n", + " 'Geographic Focus': 'Kosovo',\n", + " 'Mission': 'Kosovar Civil Society Foundation (KCSF) is an '\n", + " 'independent, non-profit organisation which '\n", + " 'supports the development of civil society and '\n", + " 'initiatives that promote a democratic culture '\n", + " 'and respond to socio-economic needs of Kosovo, '\n", + " 'with particular focus on contributing to the '\n", + " 'process of integration in the European Union.'},\n", + " 'position': {'address': 'MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine '\n", + " 'Kosovo',\n", + " 'city': 'Pristina',\n", + " 'lat': 42.6673053,\n", + " 'lng': 21.1643067,\n", + " 'place_id': 'ChIJJwkRBeaeVBMRWrleON-_ZZM',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.kcsfoundation.org/'},\n", + " {'address': 'Chiswick Business Park, Chiswick High Road, London, UK',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 23660,\n", + " 'link': 'https://philea.eu/members/swarovski-foundation/',\n", + " 'name': 'Swarovski Foundation',\n", + " 'philea_info': {'About': 'Established in 2013, the Swarovski Foundation is '\n", + " 'inspired by a long history of philanthropy '\n", + " 'initiated by the company founder Daniel Swarovski '\n", + " 'who believed that “to achieve lasting change, you '\n", + " 'must think not only of yourself but also of '\n", + " 'others”. The Swarovski Foundation’s mission is to '\n", + " 'promote sustainable livelihoods through education '\n", + " 'to reduce inequality by supporting work that '\n", + " 'focuses on Equity, Water, and Creativity, and '\n", + " 'through initiatives: Action Fund, Waterschool and '\n", + " 'Creatives for Our Future. Since its inception, the '\n", + " 'Swarovski Foundation has reached over 2 million '\n", + " 'people in 93 countries through 85 partnerships to '\n", + " 'drive progress towards the Sustainable Development '\n", + " 'Goals set out by the United Nations. The Swarovski '\n", + " 'Foundation is a UK charity governed and managed by '\n", + " 'a Board of Trustees and chaired by Marisa '\n", + " 'Schiestl-Swarovski.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'To promote sustainable livelihoods through '\n", + " 'education to reduce inequalities',\n", + " 'Programme Areas': 'Equity – to empower marginalised groups\\n'\n", + " 'Water – to improve water security\\n'\n", + " 'Creativity – to advance creative talent '\n", + " 'Own Initiatives Action Fund – The Action '\n", + " 'Fund supports organisations providing '\n", + " 'immediate relief to the most '\n", + " 'marginalised communities affected by '\n", + " 'urgent crises.\\n'\n", + " 'Creatives For Our Future – Creatives For '\n", + " 'Our Future empowers the next generation '\n", + " 'of creative talent to unlock innovative '\n", + " 'approaches to our global sustainability '\n", + " 'challenges and drive progress towards '\n", + " 'the Sustainable Development Goals.\\n'\n", + " 'Waterschool – The Waterschool empowers '\n", + " 'and educates young people on sustainable '\n", + " 'practices to address their local water '\n", + " 'challenges and improve water security '\n", + " 'globally.'},\n", + " 'position': {'address': 'Chiswick Business Park, Chiswick High Road, London, '\n", + " 'UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4930604,\n", + " 'lng': -0.2748696,\n", + " 'name': 'Chiswick Business Park',\n", + " 'place_id': 'ChIJ-RcBF8UPdkgRvDCVVgd4zeE',\n", + " 'post_code': 'W4 5AN',\n", + " 'state': 'England',\n", + " 'street_name': 'Chiswick High Road',\n", + " 'street_name_short': 'Chiswick High Rd.',\n", + " 'street_number': '566',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.swarovskifoundation.org/'},\n", + " {'address': '14 Rue Royale, Paris, France',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Latin America'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 23659,\n", + " 'link': 'https://philea.eu/members/loreal-fund-for-women/',\n", + " 'name': \"L'Oréal Fund for Women\",\n", + " 'philea_info': {'About': 'Women & girls dedicated Fund. We’re supporting NGO '\n", + " 'and grassroot organisations to help women & girls '\n", + " 'in different areas : training, education, socio '\n", + " 'professional integration, emergency needs. our '\n", + " 'main mission is to empower these women and girls '\n", + " 'worldwide',\n", + " 'Geographic Focus': 'North America, Latin America, Asia, '\n", + " 'Europe, Africa, Middle East',\n", + " 'Mission': 'Our mission is to support organisations helping '\n", + " 'women and girls in situation of high '\n", + " 'vulnerability',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Socio-economic Development, Poverty'},\n", + " 'position': {'address': '14 Rue Royale, Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8681213,\n", + " 'lng': 2.3233605,\n", + " 'name': '14 Rue Royale',\n", + " 'place_id': 'ChIJfYB-yTJu5kcRdfw3SUPUciI',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Royale',\n", + " 'street_number': '14',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://fondationloreal.com/en'},\n", + " {'address': '600 Brickell Ave ste 3200, Miami, FL, USA',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa', 'South Africa'],\n", + " 'Asia & Pacific': ['Philippines'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Latin America']},\n", + " 'id': 23658,\n", + " 'link': 'https://philea.eu/members/foundever-org/',\n", + " 'name': 'Foundever.org',\n", + " 'philea_info': {'About': 'Foundever.org specializes in education, '\n", + " 'employability, and social inclusion, building on '\n", + " 'the expertise of Foundever® in the Customer '\n", + " 'Experience (CX) industry. We focus on developing '\n", + " 'critical skills — such as digital and AI literacy, '\n", + " 'financial education, mentoring, and job-readiness '\n", + " '— to empower individuals who face barriers to '\n", + " 'employment. What distinguishes us is our ability '\n", + " 'to adapt the proven impact sourcing model of the '\n", + " 'CX industry for the greater good, extending its '\n", + " 'benefits beyond business needs to support '\n", + " 'underserved communities. Our key contribution to '\n", + " 'society is promoting inclusion and equity by '\n", + " 'helping people gain the skills and confidence '\n", + " 'needed to access better opportunities.',\n", + " 'Geographic Focus': 'Europe; Africa (Egypt, South Africa, '\n", + " 'Morocco); Philippines;Latin America.',\n", + " 'Mission': 'Our mission is to build and leverage educational '\n", + " 'programs to benefit untapped talent in deprived '\n", + " 'communities around the world and prepare '\n", + " 'individuals for their next employment '\n", + " 'opportunities.',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Socio-economic Development, Poverty'},\n", + " 'position': {'address': '600 Brickell Ave ste 3200, Miami, FL, USA',\n", + " 'city': 'Miami',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 25.7679928,\n", + " 'lng': -80.19088359999999,\n", + " 'name': '600 Brickell Ave ste 3200',\n", + " 'place_id': 'Ei82MDAgQnJpY2tlbGwgQXZlIHN0ZSAzMjAwLCBNaWFtaSwgRkwgMzMxMzEsIFVTQSIkGiIKFgoUChIJ4bneW7y32YgRNTylH3ujU3oSCHN0ZSAzMjAw',\n", + " 'post_code': '33131',\n", + " 'state': 'Florida',\n", + " 'state_short': 'FL',\n", + " 'street_name': 'Brickell Avenue',\n", + " 'street_name_short': 'Brickell Ave',\n", + " 'street_number': '600',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://foundever.org/'},\n", + " {'address': 'Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa']},\n", + " 'id': 23656,\n", + " 'link': 'https://philea.eu/members/fondazione-capellino/',\n", + " 'name': 'Fondazione Capellino',\n", + " 'philea_info': {'About': 'Their areas of intervention are: Habitat & '\n", + " 'Biodiverse Corridors, Climate Change, Regenerative '\n", + " 'Agriculture. The distinguishing characteristics of '\n", + " 'our organisation in our model called '\n", + " '“Reintegration Economy”',\n", + " 'Geographic Focus': 'EU, America, Africa',\n", + " 'Mission': 'The Foundation’s purpose is:\\n'\n", + " '(a) the protection of the biosphere and '\n", + " 'biodiversity, through: (i) targeted initiatives '\n", + " 'and projects for protection, conservation and '\n", + " 'renaturalisation as well as for reducing the '\n", + " 'impact of human activities on the environment;\\n'\n", + " '(ii) cultural awareness and political activity '\n", + " 'initiatives;\\n'\n", + " '(iii) the promotion and experimentation of new '\n", + " 'alternative socio-economic, productive, cultural '\n", + " 'and political models that achieve a synthesis '\n", + " 'between the needs of human beings and the '\n", + " 'protection of the biosphere and biodiversity; '\n", + " '(b) the acquisition of financial and cultural '\n", + " 'autonomy instrumental to the protection of the '\n", + " 'biosphere and biodiversity, through: (i) the '\n", + " 'management and valorization of the shares held '\n", + " 'in joint-stock companies, through the exercise '\n", + " 'of the related social rights, ensuring, to the '\n", + " 'extent of its competence, that the management is '\n", + " 'in accordance with the values of the '\n", + " 'Foundation;\\n'\n", + " '(ii) operations aimed at increasing its assets '\n", + " 'over time: to this end, it can establish, '\n", + " 'acquire, participate in capital companies;\\n'\n", + " '(iii) participation in foundations, '\n", + " 'associations, other bodies or organizations that '\n", + " 'comply with the values of the Foundation.',\n", + " 'Programme Areas': 'Environment/Climate,\\n'\n", + " 'Food, Agriculture & Nutrition'},\n", + " 'position': {'address': 'Via de Marini, 1, Genoa, Metropolitan City of '\n", + " 'Genoa, Italy',\n", + " 'city': 'Genova',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.4084736,\n", + " 'lng': 8.900479599999999,\n", + " 'name': 'Via de Marini, 1',\n", + " 'place_id': 'ChIJ-1idExVB0xIRJw8sHBtYXOM',\n", + " 'post_code': '16149',\n", + " 'state': 'Liguria',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Via de Marini',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Food, Agriculture & Nutrition'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://fondazionecapellino.org/en/fondazione-capellino'},\n", + " {'address': 'Bahnhofstrasse 25, Zug, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'geo_locations': {'Asia & Pacific': ['Cambodia',\n", + " 'Laos',\n", + " 'Myanmar',\n", + " 'Thailand'],\n", + " 'Europe (Western / General)': ['Switzerland']},\n", + " 'id': 22839,\n", + " 'link': 'https://philea.eu/members/ursimone-wietslibach-foundation/',\n", + " 'name': 'Ursimone Wietslibach Foundation',\n", + " 'philea_info': {'About': 'They act entrepreneurially and invest in bold '\n", + " 'ideas and long-term partnerships. This is how they '\n", + " 'ensure communities have access to holistic health, '\n", + " 'human development, and active living.',\n", + " 'Geographic Focus': 'Switzerland and the Mekong Region '\n", + " '(Cambodia, Laos, Myanmar and Thailand '\n", + " 'Border area to Myanmar)',\n", + " 'Mission': 'To help shape a world in which everyone can lead '\n", + " 'a fulfilling, active life — characterized by '\n", + " 'meaning, joy, and shared sustainability.',\n", + " 'Programme Areas': 'Holistic Health & Prevention Healthcare '\n", + " 'systems around the world primarily focus '\n", + " 'on treating diseases, with economic '\n", + " 'incentives directed towards established '\n", + " 'medical methods. Human Development For '\n", + " 'Well-Being Young people aged 15 to 25 in '\n", + " 'the Mekong region face significant '\n", + " 'difficulties transitioning from formal '\n", + " 'education to employment due to a lack of '\n", + " 'skills and digital literacy in the light '\n", + " 'of demanding employer requirements. '\n", + " 'Active Lifestyle People from low-income '\n", + " 'and challenging backgrounds often face '\n", + " 'barriers to participating in sports, '\n", + " 'including high costs, limited access to '\n", + " 'facilities, and lack of encouragement. '\n", + " 'Connecting Themes In all our impact '\n", + " 'areas we strive to include three '\n", + " 'important themes which intersect our '\n", + " 'impact areas, namely: inclusion, '\n", + " 'nutrition and consciousness. Inclusion '\n", + " 'The foundation aims to promote inclusion '\n", + " 'by integrating it into all initiatives, '\n", + " 'recognizing its strategic advantage and '\n", + " 'essential role in society. Disabilities '\n", + " 'are often invisible and affect '\n", + " 'individuals at all stages of life. By '\n", + " '2035, the goal is to be a leading '\n", + " 'inclusive funding foundation that '\n", + " 'inspires others. Nutrition The '\n", + " 'foundation recognizes the fundamental '\n", + " 'role of nutrition in health, human '\n", + " 'development, and sports, aiming to '\n", + " 'establish it as a cross-cutting theme in '\n", + " 'all funding areas by 2035. Nutrition is '\n", + " 'crucial for physical and mental health, '\n", + " 'cognitive development, and athletic '\n", + " 'performance, and addressing it can help '\n", + " 'prevent rising issues like obesity, '\n", + " 'diabetes, and cardiovascular diseases. '\n", + " 'Consciousness The foundation aims to '\n", + " 'promote awareness and mindfulness, '\n", + " 'integrating it into all programme '\n", + " 'designs by 2035. This involves fostering '\n", + " 'personal and collective behaviour change '\n", + " 'through practical knowledge and '\n", + " 'motivation.'},\n", + " 'position': {'address': 'Bahnhofstrasse 25, Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.1701744,\n", + " 'lng': 8.515627799999999,\n", + " 'name': 'Bahnhofstrasse 25',\n", + " 'place_id': 'ChIJb1ehsPeqmkcRtoioJVUTpCc',\n", + " 'post_code': '6300',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Bahnhofstrasse',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.uswf.ch/'},\n", + " {'address': 'ul. \"Malyovitsa\" 6, Sofia, Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 22838,\n", + " 'link': 'https://philea.eu/members/america-for-bulgaria-foundation/',\n", + " 'name': 'America for Bulgaria Foundation',\n", + " 'philea_info': {'About': 'The America for Bulgaria Foundation works in '\n", + " 'partnership with Bulgarians to support the '\n", + " 'country’s private sector and related democratic '\n", + " 'institutions.',\n", + " 'Mission': 'The America for Bulgaria Foundation works in '\n", + " 'partnership with Bulgarians to support the '\n", + " 'country’s private sector and related democratic '\n", + " 'institutions.',\n", + " 'Programme Areas': '1. Private Sector Development Supporting '\n", + " 'entrepreneurship and small business '\n", + " 'growth.\\n'\n", + " 'Promoting innovation ecosystems.\\n'\n", + " 'Encouraging partnerships between '\n", + " 'business, academia, and government. 2. '\n", + " 'Education Enhancing the quality of '\n", + " 'education at all levels.\\n'\n", + " 'Supporting STEM (Science, Technology, '\n", + " 'Engineering, Mathematics) programs.\\n'\n", + " 'Promoting entrepreneurship and '\n", + " 'innovation among youth.\\n'\n", + " 'Improving teacher training and '\n", + " 'leadership development. 3. Civic '\n", + " 'Engagement and Democratic Institutions '\n", + " 'Strengthening civil society and '\n", + " 'independent media.\\n'\n", + " 'Promoting transparency, rule of law, and '\n", + " 'anti-corruption efforts.\\n'\n", + " 'Encouraging citizen participation and '\n", + " 'community building. 4. Cultural Heritage '\n", + " 'and Tourism Preserving and promoting '\n", + " 'Bulgaria’s cultural heritage.\\n'\n", + " 'Investing in historical sites and '\n", + " 'museums.\\n'\n", + " 'Enhancing Bulgaria’s image as an '\n", + " 'alternative/cultural and nature tourism '\n", + " 'destination 5. Leadership Development '\n", + " 'Nurturing the next generation of leaders '\n", + " 'across sectors.\\n'\n", + " 'Providing fellowships, exchanges, and '\n", + " 'professional development programs.'},\n", + " 'position': {'address': 'ul. \"Malyovitsa\" 6, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6892438,\n", + " 'lng': 23.3287435,\n", + " 'name': 'ul. \"Malyovitsa\" 6',\n", + " 'place_id': 'ChIJAfc9RQuFqkAR6o_IfC7KKpk',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'ulitsa \"Malyovitsa\"',\n", + " 'street_name_short': 'ul. \"Malyovitsa\"',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.us4bg.org/'},\n", + " {'address': 'Radarweg 29, Amsterdam, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 22835,\n", + " 'link': 'https://philea.eu/members/elsevier-foundation/',\n", + " 'name': 'Elsevier Foundation',\n", + " 'philea_info': {'About': 'The Elsevier Foundation has a strategic focus on '\n", + " 'advancing inclusion in research and health by '\n", + " 'increasing the participation of underrepresented '\n", + " 'and underserved communities. We aim to serve as a '\n", + " 'catalyst for early stage interventions that are '\n", + " 'founded in an innovative proof of concept. '\n", + " 'Ultimately, our goal is to support partners to '\n", + " 'bring on new funders, scale up and support '\n", + " 'systemic change. We believe that our pragmatic and '\n", + " 'agile approach can have a powerful multiplier '\n", + " 'effect by adopting and accelerating proven ideas.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'We are a catalyst for inclusive research and '\n", + " 'health partnerships, convening and spotlighting '\n", + " 'impact makers to accelerate early stage '\n", + " 'interventions that advance inclusion in research '\n", + " 'and health.',\n", + " 'Programme Areas': 'Inclusive research and health: Our '\n", + " 'programs address key challenges in '\n", + " 'research, health and underrepresentation '\n", + " 'identified by the UN Sustainable '\n", + " 'Development Goals. The partnerships we '\n", + " 'support are strongly intersectional and '\n", + " 'highlight our commitment to supporting '\n", + " 'underserved communities around the world '\n", + " 'for better health outcomes and a more '\n", + " 'sustainable research ecosystem.'},\n", + " 'position': {'address': 'Radarweg 29, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3930616,\n", + " 'lng': 4.8363326,\n", + " 'name': 'Radarweg 29',\n", + " 'place_id': 'EitSYWRhcndlZyAyOSwgMTA0MyBOWCBBbXN0ZXJkYW0sIE5ldGhlcmxhbmRzIjASLgoUChIJq2KEVfbixUcRt3nmid8idK4QHSoUChIJD8YwIffixUcRaDKZ2LuKHFg',\n", + " 'post_code': '1043 NX',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Radarweg',\n", + " 'street_number': '29',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.elsevierfoundation.org/'},\n", + " {'address': 'Sankt Annæ Plads 13, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark',\n", + " 'Faroe Islands',\n", + " 'Greenland']},\n", + " 'id': 22834,\n", + " 'link': 'https://philea.eu/members/augustinus-fonden/',\n", + " 'name': 'Augustinus Fonden',\n", + " 'philea_info': {'About': 'The Augustinus Foundation strengthens its societal '\n", + " 'responsibility and philanthropic mission by '\n", + " 'providing funding for other actors so that they '\n", + " 'can fulfill their social responsibility. The '\n", + " 'Augustinus Fonden’s raison d’être is based on the '\n", + " 'fact that the foundation’s task is to realize the '\n", + " 'visions and missions of others, as it is the '\n", + " 'professional organizations within the supported '\n", + " 'areas that are the experts.',\n", + " 'Geographic Focus': 'Denmark, Greenland and The Faroe '\n", + " 'Islands',\n", + " 'Mission': 'The purpose of the foundation is to work for '\n", + " 'charitable and humane, artistic, scientific or '\n", + " 'similar purposes.'},\n", + " 'position': {'address': 'Sankt Annæ Plads 13, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.68190389999999,\n", + " 'lng': 12.5909885,\n", + " 'name': 'Sankt Annæ Pl. 13',\n", + " 'place_id': 'ChIJY8VV7SJTUkYRmmLSG77hh9k',\n", + " 'post_code': '1250',\n", + " 'street_name': 'Sankt Annæ Plads',\n", + " 'street_name_short': 'Sankt Annæ Pl.',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.augustinusfonden.dk'},\n", + " {'address': 'Solunska Street 56, Sofia, Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': 'info@osi.bg',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Balkans',\n", + " 'Bulgaria',\n", + " 'Georgia',\n", + " 'Ukraine'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 22833,\n", + " 'link': 'https://philea.eu/members/open-society-institute-sofia/',\n", + " 'name': 'Open Society Institute - Sofia',\n", + " 'philea_info': {'About': 'Open Society Institute – Sofia is a '\n", + " 'non-governmental organization, acting for the '\n", + " 'public benefit, defending the values of the open '\n", + " 'society in Bulgaria and supporting the integration '\n", + " 'of the country to the European Union. The '\n", + " 'Institute is founded in 1990, thanks to a donation '\n", + " 'of Mr. George Soros.',\n", + " 'Geographic Focus': 'Bulgaria, Western Balkans countries, '\n", + " 'Ukraine, Georgia, EU member states in '\n", + " 'Central and Eastern Europe',\n", + " 'Mission': 'To promote, help develop and sustain the values, '\n", + " 'attitudes and practices of open society in '\n", + " 'Bulgaria.',\n", + " 'Programme Areas': 'OSIS is a leading operator of regranting '\n", + " 'programs. In the past years, OSIS was '\n", + " 'involved in over EUR 20 million in '\n", + " 'funding administered through initiatives '\n", + " 'such as the EEA Grants NGO Programme '\n", + " '(EUR 11.8 million), Active Citizens Fund '\n", + " 'Bulgaria (EUR 15.5 million), and EU CERV '\n", + " 'programs (ProEUvalues, PACT), carried '\n", + " 'out as a lead organization in '\n", + " 'partnership with other CSOs. These '\n", + " 'programs support civil society, '\n", + " 'democracy, media independence, and EU '\n", + " 'values. OSIS also implements '\n", + " 'multi-country schemes that promote '\n", + " 'regional collaboration and democratic '\n", + " 'resilience, such as “The Next Mile of '\n", + " 'European Integration.”, to support think '\n", + " 'tanks in EU candidate countries. The '\n", + " 'Enhancing Media Resilience and Quality '\n", + " 'News Journalism project offers grants in '\n", + " 'Bulgaria, Croatia, Greece, Hungary, and '\n", + " 'Slovenia with a call opened in 2024. '\n", + " 'Beyond grant management, OSIS conducts '\n", + " 'research and advocacy on democracy, '\n", + " 'civic participation, and media '\n", + " 'resilience. It conducts research on '\n", + " 'media resilience and publishes the '\n", + " 'annual Media Literacy Index, assessing '\n", + " 'susceptibility to disinformation across '\n", + " 'Europe, the U.S., and Canada. OSIS also '\n", + " 'regularly produces State of Democracy, '\n", + " 'Hate Speech and state of civil society '\n", + " 'reports on Bulgaria, used by '\n", + " 'institutions like FRA. With an ISO '\n", + " '9001-certified quality management '\n", + " 'system, OSIS ensures high standards of '\n", + " 'administrative efficiency, '\n", + " 'accountability, and financial '\n", + " 'oversight.'},\n", + " 'position': {'address': 'Solunska Street 56, Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6935377,\n", + " 'lng': 23.3159479,\n", + " 'name': 'Solunska Street 56',\n", + " 'place_id': 'ChIJpS2sRmuFqkARZiEgSzLlBn4',\n", + " 'post_code': '1000',\n", + " 'state': 'Sofia City Province',\n", + " 'street_name': 'Solunska Street',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://osis.bg/'},\n", + " {'address': 'Mykola Shpak Street, 3 Kyiv Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'development@kse.ua',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Ukraine']},\n", + " 'id': 22831,\n", + " 'link': 'https://philea.eu/members/kyiv-school-of-economics-foundation/',\n", + " 'name': 'Kyiv School of Economics Foundation',\n", + " 'philea_info': {'About': 'Through education, leadership training, '\n", + " 'research-driven policy solutions, and humanitarian '\n", + " 'relief, we empower the next generation of '\n", + " 'scholars, policymakers, and entrepreneurs who will '\n", + " 'shape Ukraine’s future and ensure its integration '\n", + " 'into the global economy. By bridging academia and '\n", + " 'philanthropy, KSE Foundation not only mitigates '\n", + " 'the immediate effects of war but also builds the '\n", + " 'foundation for a resilient, knowledge-driven, and '\n", + " 'prosperous Ukraine.',\n", + " 'Geographic Focus': 'Ukraine',\n", + " 'Mission': 'The Kyiv School of Economics Foundation (KSE '\n", + " 'Foundation) is committed to enhancing social '\n", + " 'welfare, human capital development, and national '\n", + " 'resilience while positioning Ukraine as a '\n", + " 'leading intellectual hub in Europe. Through '\n", + " 'education, innovation, and strategic '\n", + " 'partnerships, KSE Foundation strengthens '\n", + " 'Ukraine’s economic, social, and geopolitical '\n", + " 'future, ensuring access to world-class education '\n", + " 'and opportunities for all citizens.',\n", + " 'Programme Areas': 'Strategic Priorities: Educational '\n", + " 'Expansion & Accessibility: Broadening '\n", + " 'the impact of KSE’s academic programs '\n", + " 'across Ukraine and internationally.\\n'\n", + " 'Sustainable Growth & Funding: Ensuring '\n", + " 'financial stability to support the '\n", + " 'expansion of KSE University and key '\n", + " 'initiatives.\\n'\n", + " 'Human Capital Development: Supporting '\n", + " 'young talents, war-affected students, '\n", + " 'and professionals in STEM, business, and '\n", + " 'public policy.\\n'\n", + " 'Strengthening National Resilience: '\n", + " 'Leading projects in humanitarian relief, '\n", + " 'education, and reconstruction efforts.\\n'\n", + " 'Enhancing Ukraine’s Global Influence: '\n", + " 'Promoting Ukraine’s intellectual and '\n", + " 'economic potential through international '\n", + " 'collaboration and advocacy. Key Programs '\n", + " 'and Activities: 1. Educational Support '\n", + " 'and Scholarships – KSE Foundation '\n", + " 'actively supports talented students, '\n", + " 'war-affected individuals, and veterans '\n", + " 'through grants and scholarships, '\n", + " 'ensuring access to high-quality '\n", + " 'education and leadership training. '\n", + " 'Programs Include: Donate to Educate: A '\n", + " 'global fundraising initiative providing '\n", + " 'full and partial tuition grants at KSE '\n", + " 'University.\\n'\n", + " 'Memorial Scholarships: Established in '\n", + " 'honor of members of the KSE community '\n", + " 'who lost their lives during the war, '\n", + " 'offering annual grants for undergraduate '\n", + " 'and graduate students starting in 2025.\\n'\n", + " 'Khan Academy for Ukraine: A nationwide '\n", + " 'educational initiative translating and '\n", + " 'localizing STEM courses from Khan '\n", + " 'Academy, making high-quality content '\n", + " 'accessible to Ukrainian schoolchildren.\\n'\n", + " 'Da Vinci Ukraine: A grant program '\n", + " 'supporting talented youth in '\n", + " 'mathematics, physics, and STEM fields, '\n", + " 'fostering participation in international '\n", + " 'competitions and Olympiads. 2. '\n", + " 'Humanitarian Initiatives – The KSE '\n", + " 'Foundation plays a crucial role in '\n", + " 'supporting Ukraine’s recovery and '\n", + " 'resilience through humanitarian '\n", + " 'projects, ensuring safe education '\n", + " 'environments, medical support, and '\n", + " 'economic stability. Key Initiatives '\n", + " 'Include: Safe Education (ЗАХИСТОК): '\n", + " 'Establishing bomb shelters in schools '\n", + " 'and kindergartens, restoring offline '\n", + " 'learning.\\n'\n", + " 'Medical Evacuation and Aid: Providing '\n", + " 'first-aid kits and tourniquets for '\n", + " 'medical facilities and frontline '\n", + " 'responders. Provided 4 medical '\n", + " 'evacuation helicopters to ensure rapid '\n", + " 'emergency response.\\n'\n", + " 'Talents for Ukraine: A leadership grant '\n", + " 'program empowering young leaders '\n", + " 'dedicated to rebuilding and reforming '\n", + " 'Ukraine. These individuals have a '\n", + " 'significant international impact—winning '\n", + " 'Oscars, representing Ukraine at '\n", + " 'Eurovision, and even being honored as '\n", + " 'Nobel Peace Prize laureates.\\n'\n", + " 'Create Ukraine: A reintegration '\n", + " 'initiative aimed at bringing back '\n", + " 'skilled Ukrainian professionals with '\n", + " 'international experience to contribute '\n", + " 'to national reforms.\\n'\n", + " 'Entrepreneurship Support: A grant '\n", + " 'program to scale small and medium-sized '\n", + " 'women-led businesses in manufacturing, '\n", + " 'agriculture, IT, and healthcare.'},\n", + " 'position': {'address': 'Mykola Shpak Street, 3 Kyiv Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4503596,\n", + " 'lng': 30.5245025,\n", + " 'place_id': 'ChIJBUVa4U7P1EAR_kYBF9IxSXY',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv city',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://foundation.kse.ua/en/'},\n", + " {'address': 'Dilova Street, Kyiv, Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'info@philanthropy.com.ua',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Ukraine']},\n", + " 'id': 22829,\n", + " 'link': 'https://philea.eu/members/national-network-of-local-philanthropy-development/',\n", + " 'name': 'National Network of Local Philanthropy Development',\n", + " 'philea_info': {'About': 'We are a network of Ukrainian community '\n", + " 'foundations, a community foundation support '\n", + " 'organization. We support our members through '\n", + " 'several services: capacity building & care, '\n", + " 'communications, advocacy, financing and '\n", + " 'development of a favorable environment for local '\n", + " 'philanthropy.',\n", + " 'Geographic Focus': 'Ukraine',\n", + " 'Mission': 'We are a network of Ukrainian community '\n", + " 'foundations, a community foundation support '\n", + " 'organization. We support our members through '\n", + " 'several services: capacity building & care, '\n", + " 'communications, advocacy, financing and '\n", + " 'development of a favorable environment for local '\n", + " 'philanthropy.'},\n", + " 'position': {'address': 'Dilova Street, Kyiv, Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4299123,\n", + " 'lng': 30.5154433,\n", + " 'name': 'Dilova Street',\n", + " 'place_id': 'Eh9EaWxvdmEgU3QsIEt5aXYsIFVrcmFpbmUsIDAyMDAwIi4qLAoUChIJ1yz_nB3P1EARaMS788ZVsPASFAoSCQVFWuFOz9RAEf5GARfSMUl2',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv',\n", + " 'street_name': 'Dilova Street',\n", + " 'street_name_short': 'Dilova St',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://philanthropy.com.ua/'},\n", + " {'address': 'Linienstraße 65A, Berlin, Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 22472,\n", + " 'link': 'https://philea.eu/members/iac-berlin-ggmbh/',\n", + " 'name': 'iac Berlin gGmbH',\n", + " 'philea_info': {'About': 'As a Do & Think Tank for impact networks, iac '\n", + " 'Berlin works with foundations, academia, public '\n", + " 'institutions, and locally rooted non-profit '\n", + " 'organizations to build networks and alliances with '\n", + " 'social impact and to initiate new forms of '\n", + " 'collaboration and engagement.',\n", + " 'Geographic Focus': 'Global with a focus on Europe',\n", + " 'Programme Areas': 'Expertise: Collaborative and relational '\n", + " 'approaches to social change\\n'\n", + " 'Contribution to society: support in '\n", + " 'understanding the polycrisis and in '\n", + " 'acting on it in meaning- and impactful '\n", + " 'ways'},\n", + " 'position': {'address': 'Linienstraße 65A, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5289842,\n", + " 'lng': 13.4040638,\n", + " 'name': 'Linienstraße 65A',\n", + " 'place_id': 'ChIJQci4muNRqEcRG2l7p--nrGY',\n", + " 'post_code': '10119',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Linienstraße',\n", + " 'street_number': '65A',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.iac-berlin.org/'},\n", + " {'address': 'James Wattstraat 100, Amsterdam, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe']},\n", + " 'id': 22471,\n", + " 'link': 'https://philea.eu/members/european-fundraising-association/',\n", + " 'name': 'European Fundraising Association',\n", + " 'philea_info': {'About': 'EFA works through and with the support of national '\n", + " 'fundraising associations and organisations; a '\n", + " 'joint platform for exchange of knowledge, best '\n", + " 'practice and expertise. By sharing what each '\n", + " 'nation knows about fundraising, we work to '\n", + " 'accelerate the growth of the profession and '\n", + " 'industry. We promote high standards and an '\n", + " 'accredited qualification programme that enables '\n", + " 'fundraisers to perform professionally at a '\n", + " 'consistently high level across Europe, building '\n", + " 'public trust and confidence and encouraging '\n", + " 'philanthropy.',\n", + " 'Geographic Focus': 'Europe',\n", + " 'Mission': 'EFA’s mission is to develop fundraising across '\n", + " 'Europe by strengthening national fundraising '\n", + " 'associations and national fundraising '\n", + " 'organisations, and to promote fundraising, '\n", + " 'philanthropy and the work of not-for-profit '\n", + " 'organisations at the EU level. EFA serves as a '\n", + " 'platform and a collective voice for its members.',\n", + " 'Programme Areas': 'Fundraising and philanthropy'},\n", + " 'position': {'address': 'James Wattstraat 100, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3489327,\n", + " 'lng': 4.9200102,\n", + " 'name': 'James Wattstraat 100',\n", + " 'place_id': 'ChIJD1rgOX8JxkcRYuPQsH_Wods',\n", + " 'post_code': '1097 DM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'James Wattstraat',\n", + " 'street_number': '100',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.efa-net.eu'},\n", + " {'address': 'Oberer Kehlberg 6, Attendorn, Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany']},\n", + " 'id': 22470,\n", + " 'link': 'https://philea.eu/members/famtastisch-stiftung/',\n", + " 'name': 'Famtastisch Stiftung',\n", + " 'philea_info': {'About': 'We are a funding foundation which means that we '\n", + " 'support organisations in Germany and Europa who '\n", + " 'work on food systems tranformation in accordance '\n", + " 'with our mission and vision. Our key strenght is '\n", + " 'to provide uncomplicated support grants, capacity '\n", + " 'building, sparring, co-funding, and more) and to '\n", + " 'focus on systemic funding (i.e. unrestricted).',\n", + " 'Geographic Focus': 'Germany and Europe with a focus on the '\n", + " 'EU-level',\n", + " 'Mission': 'We are driving change towards a fair, balanced '\n", + " 'and resilient food system resilient food system '\n", + " 'by bringing encouraging solutions to growth, so '\n", + " 'that current and future generations generations '\n", + " 'have a fairer future.',\n", + " 'Programme Areas': 'Food, Agriculture & Nutrition. We '\n", + " 'provide grants in the fields of a) '\n", + " 'production of food, and b) consumption '\n", + " 'of food.'},\n", + " 'position': {'address': 'Oberer Kehlberg 6, Attendorn, Germany',\n", + " 'city': 'Attendorn',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.12166990000001,\n", + " 'lng': 7.8947567,\n", + " 'name': 'Oberer Kehlberg 6',\n", + " 'place_id': 'ChIJkW1EcX9TuUcR32j7vTHKvp0',\n", + " 'post_code': '57439',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Oberer Kehlberg',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Food, Agriculture & Nutrition'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.famtastisch.org/'},\n", + " {'address': 'Stationsplein 4, 3818 LE Amersfoort, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@wildeganzen.nl',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Burkina Faso',\n", + " 'Ethiopia',\n", + " 'Ghana',\n", + " 'Kenya',\n", + " 'Malawi',\n", + " 'South Africa',\n", + " 'Tanzania',\n", + " 'Uganda'],\n", + " 'Asia & Pacific': ['Cambodia',\n", + " 'India',\n", + " 'Indonesia',\n", + " 'Nepal',\n", + " 'Sri Lanka'],\n", + " 'Latin America & Caribbean': ['Bolivia',\n", + " 'Colombia',\n", + " 'Peru']},\n", + " 'id': 22469,\n", + " 'link': 'https://philea.eu/members/wilde-ganzen-foundation/',\n", + " 'name': 'Wilde Ganzen Foundation',\n", + " 'philea_info': {'About': 'Wilde Ganzen is a front-runner in promoting and '\n", + " 'supporting locally-led development – we’ve been '\n", + " 'supporting local organisations directly for '\n", + " 'several decades. We work with around 450 private '\n", + " 'development initiatives in The Netherlands and in '\n", + " 'Belgium with projects in more than 50 countries. '\n", + " 'We are an expert in promoting global citizenship '\n", + " '(https://www.wildeganzen.org/programs/global\\x02citizenship) '\n", + " 'as well as in providing trainings, coaching and '\n", + " 'networking on local resource mobilisation through '\n", + " 'the Change the Game Academy – an alliance of 19 '\n", + " 'local and national organisations in 17 countries '\n", + " '(https://www.wildeganzen.org/programs/change-the\\x02game-academy). '\n", + " 'We are also an active supporter of the Shift the '\n", + " 'Power movement and we advance community '\n", + " 'philanthropy as a key strategy and driver of '\n", + " 'social change '\n", + " '(https://www.wildeganzen.org/programs/giving-for-change). '\n", + " 'We are also a consistent partner of the EU DEAR '\n", + " 'programme that aims to raise awareness on the role '\n", + " 'of EU citizens in global development '\n", + " '(https://www.connectforglobalchange.eu/).',\n", + " 'Geographic Focus': 'Tanzania, Kenya, Ethiopia, Uganda, '\n", + " 'South Africa, India, Burkina Faso, '\n", + " 'Malawi, Ghana, Cambodia, Nepal, Gambia, '\n", + " 'Sri Lanka, Indonesia, Andes (Colombia, '\n", + " 'Peru, Bolivia)',\n", + " 'Mission': 'Wilde Ganzen is a Dutch Foundation, founded in '\n", + " '1957 with a mission to reduce poverty and '\n", + " 'inequality through community-led initiatives. We '\n", + " 'support community-based organisations in the '\n", + " 'Global South and their Dutch fundraising '\n", + " 'partners in joint efforts to achieve a better '\n", + " 'future because we believe that communities '\n", + " 'should have control over their own development.'},\n", + " 'position': {'address': 'Stationsplein 4, 3818 LE Amersfoort, Netherlands',\n", + " 'city': 'Amersfoort',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.1526612269682,\n", + " 'lng': 5.376777648925781,\n", + " 'place_id': 'ChIJQbg3Cx1ExkcRD4O9sCSuDQk',\n", + " 'post_code': '3818 LE',\n", + " 'state': 'Utrecht',\n", + " 'state_short': 'UT',\n", + " 'street_name': 'Stationsplein',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.wildeganzen.org/'},\n", + " {'address': 'Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid',\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain'],\n", + " 'Europe (Western / General)': ['France']},\n", + " 'id': 22468,\n", + " 'link': 'https://philea.eu/members/fundacion-vertex-bioenergy/',\n", + " 'name': 'Fundación Vertex Bioenergy',\n", + " 'philea_info': {'About': 'Promoting the 17 United Nations Sustainable '\n", + " 'Development Goals through investments and '\n", + " 'donations to projects run by foundations, NGOs and '\n", + " 'universities; promoting, encouraging and '\n", + " 'supporting the structuring and development of '\n", + " 'rural areas and communities; and promoting and '\n", + " 'caring for people at risk of exclusion for '\n", + " 'physical, economic or cultural reasons.',\n", + " 'Geographic Focus': 'France and Spain',\n", + " 'Mission': 'Promoting the 17 United Nations Sustainable '\n", + " 'Development Goals through investments and '\n", + " 'donations to projects run by foundations, NGOs '\n", + " 'and universities; promoting, encouraging and '\n", + " 'supporting the structuring and development of '\n", + " 'rural areas and communities; and promoting and '\n", + " 'caring for people at risk of exclusion for '\n", + " 'physical, economic or cultural reasons.',\n", + " 'Programme Areas': 'Help local communities. Main focus on: '\n", + " 'young talent, vulnerability, climate '\n", + " 'change (plant trees in areas proximity '\n", + " 'to our founder plants), etc.'},\n", + " 'position': {'address': 'Avda. de Europa, 19 Edificio 3, Módulo Bajo-D '\n", + " 'Madrid',\n", + " 'city': 'Pozuelo de Alarcón',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4417766,\n", + " 'lng': -3.7868106,\n", + " 'place_id': 'ChIJ__-vYVKGQQ0RhN01Pl6ZWFw',\n", + " 'post_code': '28224',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Avenida de Europa',\n", + " 'street_name_short': 'Av. de Europa',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fundacionvertexbioenergy.org/'},\n", + " {'address': 'Calle Amor de Dios, 1, Madrid, Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'madrid@tba21.org',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 22467,\n", + " 'link': 'https://philea.eu/members/fundacion-tba21/',\n", + " 'name': 'Fundación TBA21',\n", + " 'philea_info': {'About': 'All activity at TBA21 is fundamentally driven by '\n", + " 'artists and the belief in art and culture as a '\n", + " 'carrier of social and environmental '\n", + " 'transformation, ultimately contributing to the '\n", + " 'creation of spaces for peace.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'To promote art as catalyst for positive change '\n", + " 'and as a means to address the needs of today’s '\n", + " 'world, with a vision of social and environmental '\n", + " 'justice based on collaboration with artists, '\n", + " 'curators, scientists, thinkers, activists, '\n", + " 'indigenous voices and scholars, to build a '\n", + " 'future based on peaceful coexistence, care and '\n", + " 'generosity',\n", + " 'Programme Areas': 'Exhibition and public programs; '\n", + " 'research; digital platform; new artwork '\n", + " 'commissions; contemporary art collection '\n", + " 'management;\\n'\n", + " 'advocacy'},\n", + " 'position': {'address': 'Calle Amor de Dios, 1, Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.41334930000001,\n", + " 'lng': -3.6981334,\n", + " 'name': 'C. del Amor de Dios, 1',\n", + " 'place_id': 'ChIJewKr_oEoQg0RxBicjH9bnRo',\n", + " 'post_code': '28014',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle del Amor de Dios',\n", + " 'street_name_short': 'C. del Amor de Dios',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://tba21.org/'},\n", + " {'address': 'IJsseldijk 1, Veessen, Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@dobecology.nl',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa']},\n", + " 'id': 22466,\n", + " 'link': 'https://philea.eu/members/dob-ecology/',\n", + " 'name': 'DOB Ecology',\n", + " 'philea_info': {'About': 'To support partners and projects that protect and '\n", + " 'restore threatened ecosystems and biodiversity in '\n", + " 'a way that (re)builds the conditions for resilient '\n", + " 'livelihoods of local communities.',\n", + " 'Geographic Focus': 'Sub-Saharan Africa, South America',\n", + " 'Mission': 'To support partners and projects that protect '\n", + " 'and restore threatened ecosystems and '\n", + " 'biodiversity in a way that (re)builds the '\n", + " 'conditions for resilient livelihoods of local '\n", + " 'communities.',\n", + " 'Programme Areas': 'Nature conservation in Sub-Saharan '\n", + " 'Africa and South America, with a focus '\n", + " 'on forest and wetlands ecosystems and '\n", + " 'applied research.'},\n", + " 'position': {'address': 'IJsseldijk 1, Veessen, Netherlands',\n", + " 'city': 'Veessen',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.36253480000001,\n", + " 'lng': 6.0737668,\n", + " 'name': 'IJsseldijk 1',\n", + " 'place_id': 'ChIJg07EdUfDx0cRUwJ6cw84_5M',\n", + " 'post_code': '8194 LA',\n", + " 'state': 'Gelderland',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'IJsseldijk',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://dobecology.nl/'},\n", + " {'address': 'Gutenbergstrasse 2, 8002 Zürich, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'geo_locations': {'Asia & Pacific': ['India']},\n", + " 'id': 22435,\n", + " 'link': 'https://philea.eu/members/dalyan-foundation/',\n", + " 'name': 'Dalyan Foundation',\n", + " 'philea_info': {'About': 'To enhance the personal and economic well being of '\n", + " 'women, adolescents and children from '\n", + " 'underprivileged backgrounds, and improve their '\n", + " 'prospects to move towards a life of dignity.',\n", + " 'Geographic Focus': 'India and Türkiye',\n", + " 'Mission': 'To enhance the personal and economic well being '\n", + " 'of women, adolescents and children from '\n", + " 'underprivileged backgrounds, and improve their '\n", + " 'prospects to move towards a life of dignity.',\n", + " 'Programme Areas': 'Economic empowerment of women, mentoring '\n", + " 'for youth and young adults, improving '\n", + " 'public education, organisational '\n", + " 'development. Key strength: as a '\n", + " 'founder-funded organisation we can '\n", + " 'support riskier projects and we can '\n", + " 'enter multiyear partnerships'},\n", + " 'position': {'address': 'Gutenbergstrasse 2, 8002 Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3649605,\n", + " 'lng': 8.531086199999999,\n", + " 'name': 'Gutenbergstrasse 2',\n", + " 'place_id': 'Ei1HdXRlbmJlcmdzdHJhc3NlIDIsIDgwMDIgWsO8cmljaCwgU3dpdHplcmxhbmQiMBIuChQKEgmtPgL--AmQRxFgEMpvwdmLtBACKhQKEgnr9f9T-AmQRxGZH2W1fPJRRg',\n", + " 'post_code': '8002',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Gutenbergstrasse',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dalyanfoundation.ch'},\n", + " {'address': 'Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'hello@betterwayfound.org',\n", + " 'geo_locations': {'Global South / Majority World': ['Global South'],\n", + " 'Worldwide': ['Global', 'Worldwide']},\n", + " 'id': 22431,\n", + " 'link': 'https://philea.eu/members/better-way-foundation/',\n", + " 'name': 'Better Way Foundation',\n", + " 'philea_info': {'About': 'We partner with organisations leveraging solutions '\n", + " 'that are systemic (they target the root causes and '\n", + " 'underlying systemic drivers), collaborative (they '\n", + " 'promote participation of diverse stakeholders) and '\n", + " 'effectively address the problem.',\n", + " 'Geographic Focus': 'The reach of BWF’s funding is present '\n", + " 'in more than 50 countries, with '\n", + " 'geographic coverage approximately split '\n", + " 'between Global North (41%) and Global '\n", + " 'South (45%) partners in 2024, with 14% '\n", + " 'directed to groups working worldwide.',\n", + " 'Mission': 'BWF’s mission is to foster social and '\n", + " 'environmental justice by empowering, advocating '\n", + " 'for and enabling gender-sensitive and '\n", + " 'community-centred interventions aimed at '\n", + " 'creating a more inclusive and sustainable world.',\n", + " 'Programme Areas': 'BWF’s funding is currently structured '\n", + " 'along three major work streams: 1) '\n", + " 'Climate change mitigation, adaptation '\n", + " 'and climate justice, 2) Gender equality '\n", + " 'and women empowerment, 3) Education and '\n", + " 'civil rights.'},\n", + " 'position': {'address': 'Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. '\n", + " 'Box 83 Vaduz',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.140606,\n", + " 'lng': 9.521298,\n", + " 'place_id': 'ChIJKRSZjWcxm0cRuxoXjh3PbSA',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '5',\n", + " 'zoom': 17},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.betterwayfound.org/'},\n", + " {'address': '223 Pentonville Road, London, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 21875,\n", + " 'link': 'https://philea.eu/members/henry-smith-charity-the/',\n", + " 'name': 'Henry Smith Charity, The',\n", + " 'philea_info': {'About': 'The Henry Smith Charity is an independent grant '\n", + " 'making trust. We aim to use our resources to help '\n", + " 'people and communities at a time of need and to '\n", + " 'bring about positive change. The Charity was '\n", + " 'founded in 1628 by Henry Smith, a businessman '\n", + " 'working in the City of London. Since then, we have '\n", + " 'honoured the spirit of Henry Smith’s will, working '\n", + " 'to combat disadvantage and meet the challenges and '\n", + " 'opportunities facing people in need throughout the '\n", + " 'UK. Today, The Henry Smith Charity is amongst the '\n", + " 'largest independent grant makers in the UK, '\n", + " 'distributing £46.4 million in 2023. Our grant '\n", + " 'holders are at the core of our mission and work. '\n", + " 'For us, achieving results depends on their work '\n", + " 'and, as a grant making trust, we can only be as '\n", + " 'effective as the organisations that we fund.',\n", + " 'Mission': 'Our resources empower people who are '\n", + " 'economically or socially excluded and support '\n", + " 'those in adversity to thrive. We work '\n", + " 'collaboratively to create lasting impact and '\n", + " 'advance long-term solutions to challenge '\n", + " 'economic and social disparities.',\n", + " 'Programme Areas': '0-5 year olds – early intervention\\n'\n", + " '16-24 year olds – transitions to '\n", + " 'adulthood\\n'\n", + " 'Safer futures – refugee and asylum '\n", + " 'seekers; victims of domestic abuse; '\n", + " 'people leaving prison'},\n", + " 'position': {'address': '223 Pentonville Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5311058,\n", + " 'lng': -0.1177295,\n", + " 'name': '223 Pentonville Rd',\n", + " 'place_id': 'EiUyMjMgUGVudG9udmlsbGUgUmQsIExvbmRvbiBOMSA5SlksIFVLIjESLwoUChIJ311bUT8bdkgRKrgVcp1suFwQ3wEqFAoSCQdNeyhBG3ZIEcT_WQxy9qXB',\n", + " 'post_code': 'N1 9JY',\n", + " 'state': 'England',\n", + " 'street_name': 'Pentonville Road',\n", + " 'street_name_short': 'Pentonville Rd',\n", + " 'street_number': '223',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Humanitarian & Disaster Relief',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.henrysmithcharity.org.uk'},\n", + " {'address': '30 Merrion Square North, Dublin 2, Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Ireland'],\n", + " 'Worldwide': ['World']},\n", + " 'id': 21874,\n", + " 'link': 'https://philea.eu/members/community-foundation-ireland-the/',\n", + " 'name': 'Community Foundation Ireland, The',\n", + " 'philea_info': {'About': 'At Community Foundation Ireland we know '\n", + " 'philanthropy. We combine experience and insight to '\n", + " 'advise donors on strategic giving and manage '\n", + " 'donations to maximise its long-term impact for '\n", + " 'individuals, families, trusts and corporates. Our '\n", + " 'relationships across a network of 5,000 partners '\n", + " 'enable us to identify patterns, connections, and '\n", + " 'solutions that others can’t yet see. Our funding '\n", + " 'strategies drive change at a systemic and societal '\n", + " 'level, support inclusive communities, , accelerate '\n", + " 'change, empower generations, and address the '\n", + " 'challenge of climate change. Community Foundation '\n", + " 'Ireland and its donors are on a shared mission of '\n", + " 'equality for all in thriving communities. We have '\n", + " 'the knowledge, expertise and information to ensure '\n", + " 'effective and strategic giving in Ireland.',\n", + " 'Geographic Focus': 'Ireland and Developing World',\n", + " 'Mission': 'Our mission is for an Ireland where everyone is '\n", + " 'equal and communities thrive. We empower people '\n", + " 'who want to make a difference through a model of '\n", + " 'strategic giving which is effective and '\n", + " 'delivers, for all.',\n", + " 'Programme Areas': 'We take an inclusive holistic approach '\n", + " 'to delivering impact across four key '\n", + " 'areas, which reflect both long-standing '\n", + " 'and emerging challenges: — Sustainable '\n", + " 'Futures places Community Foundation '\n", + " 'Ireland as leaders on biodiversity and '\n", + " 'climate-action, working in partnership '\n", + " 'with communities as well as Government '\n", + " 'to address the biggest challenges of '\n", + " 'all. — We nurture Inclusive Communities '\n", + " 'where everyone is respected and has the '\n", + " 'opportunity to contribute and thrive. — '\n", + " 'We Empower Generations to ensure '\n", + " 'everyone is heard and respected '\n", + " 'irrespective of age. — Accelerating '\n", + " 'Change sees us working with '\n", + " 'change-makers to overcome systematic and '\n", + " 'societal barriers to equality and '\n", + " 'fairness.'},\n", + " 'position': {'address': '30 Merrion Square North, Dublin 2, Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.3399796,\n", + " 'lng': -6.2469008,\n", + " 'name': '30 Merrion Square N',\n", + " 'place_id': 'ChIJhXzOupYOZ0gRLBxH_tehGxg',\n", + " 'post_code': 'D02 VE40',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Merrion Square North',\n", + " 'street_name_short': 'Merrion Square N',\n", + " 'street_number': '30',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.communityfoundation.ie/'},\n", + " {'address': 'P.O. Box 15652 1001 ND Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe']},\n", + " 'id': 21873,\n", + " 'link': 'https://philea.eu/members/limelight-foundation/',\n", + " 'name': 'Limelight Foundation',\n", + " 'philea_info': {'About': 'Limelight Foundation supports journalism and civil '\n", + " 'society organizations committed to a strong and '\n", + " 'free information ecosystem in the digital age.',\n", + " 'Geographic Focus': 'Council of Europe, prioritizing '\n", + " 'countries where press freedom is under '\n", + " 'threat and/or there is a lack of '\n", + " 'funding opportunities.',\n", + " 'Mission': 'We support public interest journalism and '\n", + " 'organisations that ensure that technologies '\n", + " 'strengthen the information ecosystem.',\n", + " 'Programme Areas': 'Public interest journalism, funding '\n", + " 'newsrooms, cross-border network, '\n", + " 'infrastructure and organizations working '\n", + " 'on the enabling environment. Technology '\n", + " 'and the information ecosystem, tech '\n", + " 'accountability organizations, '\n", + " 'expertise/skills organizations needed by '\n", + " 'the tech accountability org’s., and '\n", + " 'capacity building organizations focused '\n", + " 'on diversifying and strengthening the '\n", + " 'ecosystem (mainly via regranting).'},\n", + " 'position': {'address': 'P.O. Box 15652 1001 ND Amsterdam Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://limelight.foundation'},\n", + " {'address': 'Amaliegade 8, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa',\n", + " 'Ethiopia',\n", + " 'Madagascar',\n", + " 'Rwanda',\n", + " 'Sierra Leone',\n", + " 'Tanzania',\n", + " 'Uganda',\n", + " 'Zambia'],\n", + " 'Asia & Pacific': ['Asia',\n", + " 'Bangladesh',\n", + " 'Indonesia',\n", + " 'Nepal'],\n", + " 'Europe (Nordic Region)': ['Denmark']},\n", + " 'id': 21872,\n", + " 'link': 'https://philea.eu/members/hempel-foundation/',\n", + " 'name': 'Hempel Foundation',\n", + " 'philea_info': {'About': 'The Hempel Foundation is a commercial foundation '\n", + " 'and was established in 1948 and has until 2024 '\n", + " 'been the sole owner of the Hempel Group – a '\n", + " 'leading supplier of paint solutions worldwide. '\n", + " 'Today the Hempel Foundation is the majority owner '\n", + " 'of the Hempel Group.',\n", + " 'Geographic Focus': 'Denmark. Africa: Uganda, Rwanda, '\n", + " 'Zambia, Sierra Leone, Tanzania, '\n", + " 'Madagascar, Ethiopia. Asia: Indonesia, '\n", + " 'Nepal, Bangladesh. South America: '\n", + " 'Argentina, Brasil, Paraguay',\n", + " 'Mission': 'We strive to make a difference by empowering '\n", + " 'children to learn, making coating more efficient '\n", + " 'and sustainable, sustaining biodiversity and '\n", + " 'realising great initiatives that bring about '\n", + " 'positive change',\n", + " 'Programme Areas': 'Our main philanthropic focus and '\n", + " 'expertise are within education [K12 – '\n", + " 'foundational learning] for children in '\n", + " 'developing countries and biodiversity on '\n", + " 'land [Focus on tropical forest but also '\n", + " 'in Denmark]'},\n", + " 'position': {'address': 'Amaliegade 8, Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.68221029999999,\n", + " 'lng': 12.5919428,\n", + " 'name': 'Amaliegade 8',\n", + " 'place_id': 'ChIJQ4_o8CJTUkYRJ-clvQyOk9Q',\n", + " 'post_code': '1256',\n", + " 'street_name': 'Amaliegade',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hempel.com'},\n", + " {'address': 'Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 21871,\n", + " 'link': 'https://philea.eu/members/casa-ronald-mcdonald-italia-ets/',\n", + " 'name': 'Casa Ronald McDonald Italia ETS',\n", + " 'philea_info': {'About': 'Casa Ronald McDonald Italia ETS is the Italian '\n", + " 'branch of Ronald McDonald House Charities (RMHC), '\n", + " 'an international non-profit organization that, '\n", + " 'since 1974 in the world and since 1999 in Italy, '\n", + " 'has offered hospitality, services and assistance '\n", + " 'to sick children and their families during the '\n", + " 'period of treatment away from home, at Italian '\n", + " 'pediatric hospitals of excellence. Through its '\n", + " 'programs – Case Ronald and Family Room – it not '\n", + " 'only allows access to excellent care, but supports '\n", + " 'families, allows them to be actively involved in '\n", + " 'the care of their children and promotes the '\n", + " 'implementation of the “Family Centered Care” care '\n", + " 'model, according to which having the family at '\n", + " 'their side is part of the care process. Ronald '\n", + " 'McDonald Houses are supportive accommodations born '\n", + " 'from the idea that nothing else should weigh on '\n", + " 'families who are dealing with the illness of a '\n", + " 'child. Staying in a Ronald McDonald House means '\n", + " 'giving parents the opportunity to communicate '\n", + " 'better with the medical team treating their child '\n", + " 'and to follow even the most complex treatment '\n", + " 'plans more carefully. The Ronald McDonald Family '\n", + " 'Rooms are welcoming spaces within the pediatric '\n", + " 'wards of hospitals, which give many families the '\n", + " 'opportunity to recharge and take a break while '\n", + " 'remaining close to their child during the '\n", + " 'treatment period. From 1999 to today, during its '\n", + " '25 years of activity in Italy, the Foundation has '\n", + " 'supported more than 54,000 children and families, '\n", + " 'offering over 290,000 overnight stays. Today, the '\n", + " 'Ronald McDonald Foundation for Childhood has 8 '\n", + " 'facilities between Case Ronald and Family Rooms, '\n", + " 'and collaborates with 7 partner hospitals, in 6 '\n", + " 'Italian cities.',\n", + " 'Mission': 'To provide programs and services that strengthen '\n", + " 'families, remove obstacles, and support a '\n", + " 'child’s journey through care.',\n", + " 'Programme Areas': 'Health,\\nSocial/Human Services'},\n", + " 'position': {'address': 'Via del Bosco Rinnovato, 6, Assago, Metropolitan '\n", + " 'City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.40910329999999,\n", + " 'lng': 9.150266199999999,\n", + " 'name': 'Via del Bosco Rinnovato, 6',\n", + " 'place_id': 'ChIJZTd90W7DhkcR3ZRwmSUwJUI',\n", + " 'post_code': '20057',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via del Bosco Rinnovato',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health', 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazioneronald.org'},\n", + " {'address': 'Holbeinstrasse 22, Zürich, Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy', 'Portugal'],\n", + " 'Europe (Western / General)': ['Europe',\n", + " 'France',\n", + " 'Germany',\n", + " 'Switzerland']},\n", + " 'id': 21352,\n", + " 'link': 'https://philea.eu/members/seedling-foundation/',\n", + " 'name': 'Seedling Foundation',\n", + " 'philea_info': {'About': 'Seedling Foundation supports initiatives and '\n", + " 'organizations that develop and implement '\n", + " 'innovative solutions for climate protection. Our '\n", + " 'focus is on the food system (agro-food sector) '\n", + " 'which is the second largest contributor to global '\n", + " 'climate-damaging emissions following energy '\n", + " 'production',\n", + " 'Geographic Focus': 'Switzerland, France, Italy, Germany, '\n", + " 'Portugal, Eastern Europe',\n", + " 'Mission': 'Seedling Foundation supports initiatives and '\n", + " 'organizations that develop and implement '\n", + " 'innovative solutions for climate protection. Our '\n", + " 'focus is on the food system (agro-food sector) '\n", + " 'which is the second largest contributor to '\n", + " 'global climate-damaging emissions following '\n", + " 'energy production',\n", + " 'Programme Areas': 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Food, Agriculture & Nutrition,\\n'\n", + " 'Health'},\n", + " 'position': {'address': 'Holbeinstrasse 22, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.36403809999999,\n", + " 'lng': 8.5495932,\n", + " 'name': 'Holbeinstrasse 22',\n", + " 'place_id': 'ChIJkQ5y9FKnmkcR1XFE1E0cLcw',\n", + " 'post_code': '8008',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Holbeinstrasse',\n", + " 'street_number': '22',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.seedlingfoundation.ch/'},\n", + " {'address': 'The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'kulturfonden@norden.org',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Nordic Region'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 21350,\n", + " 'link': 'https://philea.eu/members/the-nordic-culture-fund/',\n", + " 'name': 'The Nordic Culture Fund',\n", + " 'philea_info': {'About': 'The Nordic Culture Fund was established by the '\n", + " 'Nordic Council through a separate agreement '\n", + " 'between the governments of the Nordic countries in '\n", + " '1966 and began its work in 1967.',\n", + " 'Geographic Focus': 'Nordic Region but with a strategic '\n", + " 'focus on wider exchanges on a global '\n", + " 'level',\n", + " 'Mission': 'The aim of The Nordic Culture Fund is to promote '\n", + " 'the cultural cooperation between Denmark, '\n", + " 'Finland, Iceland, Norway, and Sweden, as well as '\n", + " 'the self governing areas the Faroe Islands, '\n", + " 'Greenland, and the Aland Islands. The Fund’s '\n", + " 'sphere of activities includes Nordic cultural '\n", + " 'cooperation in its entirety, both inside and '\n", + " 'outside the Nordic countries.',\n", + " 'Programme Areas': 'At the Nordic Culture Fund, we work to '\n", + " 'set the direction for the cultural '\n", + " 'co-operation of the future. In a time of '\n", + " 'upheaval, when nations draw in to '\n", + " 'themselves, art and culture can act as a '\n", + " 'focal point that opens up, creates links '\n", + " 'and offers new perspectives – both '\n", + " 'towards ourselves and towards the world '\n", + " 'we live in. With our funding programmes, '\n", + " 'partnerships and cultural policy work, '\n", + " 'we therefore aim to bring arts and '\n", + " 'culture into new forms of dialogue, and '\n", + " 'provide a flexible frameworks for '\n", + " 'developing new collaborations and '\n", + " 'initiatives. The Nordic Culture Fund was '\n", + " 'established as an autonomous '\n", + " 'organisation shortly after the Second '\n", + " 'World War, with the aim of working '\n", + " 'internationally in the Nordic region and '\n", + " 'beyond. The Fund may therefore be '\n", + " 'regarded as a public player with '\n", + " 'independent funds, the distribution of '\n", + " 'which does not derive from directly '\n", + " 'politically-controlled decisions. This '\n", + " 'position is an important '\n", + " 'starting\\x02point for the Fund’s work. '\n", + " 'Since its inception in 1966, the Fund’s '\n", + " 'main mission has been to grant financial '\n", + " 'support. We are constantly learning more '\n", + " 'about artistic and cultural life, and '\n", + " 'the possibilities for practitioners to '\n", + " 'apply for support. In this way, we '\n", + " 'ensure that our support is both relevant '\n", + " 'and targeted. As a Fund, we are willing '\n", + " 'to take risks and often support the '\n", + " 'inception and development phases of new '\n", + " 'artistic and cultural initiatives and '\n", + " 'networks. Through our various '\n", + " 'programmes, we currently provide annual '\n", + " 'support to around 340 cultural projects '\n", + " 'that build on and develop international '\n", + " 'and Nordic co-operation. As a Nordic '\n", + " 'organisation, we are anchored in both '\n", + " 'the political system and in the field of '\n", + " 'performing arts and culture. We '\n", + " 'therefore have the opportunity to take '\n", + " 'an active role in facilitating new '\n", + " 'networks and acting as a link between '\n", + " 'different actors. For several years now, '\n", + " 'we have also worked to create new '\n", + " 'contexts for the development of cultural '\n", + " 'policy at Nordic level. We recognise '\n", + " 'that the role of art and culture in the '\n", + " 'welfare society has changed and that '\n", + " 'there is a need to rethink some of the '\n", + " 'institutional premises and concepts that '\n", + " 'have long functioned as the self-evident '\n", + " 'grammar of cultural policy in the Nordic '\n", + " 'countries. When, for example, we enter '\n", + " 'into partnerships across the boundaries '\n", + " 'of disciplines, interests and national '\n", + " 'borders, it is all about making visible, '\n", + " 'developing and disseminating knowledge '\n", + " 'of arts and culture so that more people '\n", + " 'can see and understand the vital role '\n", + " 'that the arts play in our society. '\n", + " 'Primary programme areas: Arts & '\n", + " 'Culture,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Policy development'},\n", + " 'position': {'address': 'The Nordic Culture Fund Ved Stranden 18 1061 '\n", + " 'Copenhagen K Denmark',\n", + " 'city': 'Copenhagen',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6760968,\n", + " 'lng': 12.5683371,\n", + " 'place_id': 'ChIJIz2AXDxTUkYRuGeU5t1-3QQ',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nordiskkulturfond.org/en'},\n", + " {'address': 'ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, '\n", + " 'Czechia',\n", + " 'country': 'Czech Republic',\n", + " 'email': 'nadacnifond@skoda-auto.cz',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Czech Republic']},\n", + " 'id': 21349,\n", + " 'link': 'https://philea.eu/members/skoda-auto-endowment-fund/',\n", + " 'name': 'Škoda Auto Endowment Fund',\n", + " 'philea_info': {'About': 'To transform regions in which Škoda Auto operates '\n", + " 'into places where people live, work and do '\n", + " 'business well.',\n", + " 'Geographic Focus': 'Czech Republic (only regions where '\n", + " 'their founder has his production plants '\n", + " '– in the Mladá Boleslav region, Rychnov '\n", + " 'region and Vrchlabí regions)',\n", + " 'Mission': 'To transform regions in which Škoda Auto '\n", + " 'operates into places where people live, work and '\n", + " 'do business well.',\n", + " 'Programme Areas': 'Community development, increase of '\n", + " 'neighborhood relations and decreasing '\n", + " 'social anonymity through creating and '\n", + " 'supporting community centers and places '\n", + " 'for leisure activities, culture.\\n'\n", + " 'Increase of quality of education though '\n", + " 'training of school principal and sharing '\n", + " 'best practice, and supporting young '\n", + " 'talents from\\n'\n", + " 'socially disadvantage environment. '\n", + " 'Supporting biodiversity and '\n", + " 'environmental education. Arts & '\n", + " 'Culture,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Health,\\n'\n", + " 'Recreation, Sport & Well-being,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá '\n", + " 'Boleslav 1, Czechia',\n", + " 'city': 'Mladá Boleslav 1',\n", + " 'country': 'Czechia',\n", + " 'country_short': 'CZ',\n", + " 'lat': 50.426853,\n", + " 'lng': 14.9218356,\n", + " 'name': 'tř. Václava Klementa 869',\n", + " 'place_id': 'ChIJj__Bq7JVCUcRafZj7Fmtf3o',\n", + " 'post_code': '293 01',\n", + " 'state': 'Středočeský kraj',\n", + " 'street_name': 'třída Václava Klementa',\n", + " 'street_name_short': 'tř. Václava Klementa',\n", + " 'street_number': '869',\n", + " 'zoom': 16},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Health',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nfsa.cz'},\n", + " {'address': 'Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@rambollfonden.com',\n", + " 'geo_locations': {'Asia & Pacific': ['Asia', 'Australia'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 21348,\n", + " 'link': 'https://philea.eu/members/ramboll-foundation/',\n", + " 'name': 'Ramboll Foundation',\n", + " 'philea_info': {'About': 'To always be the best owner of Ramboll while '\n", + " 'enabling the foundation together with the company '\n", + " 'and its employees to address societal challenges, '\n", + " 'where the Ramboll expertise is relevant.',\n", + " 'Geographic Focus': 'Northern Europe, Southeast Asia, '\n", + " 'Australia, North America (where Ramboll '\n", + " 'is present)',\n", + " 'Mission': 'To always be the best owner of Ramboll while '\n", + " 'enabling the foundation together with the '\n", + " 'company and its employees to address societal '\n", + " 'challenges, where the Ramboll expertise is '\n", + " 'relevant.',\n", + " 'Programme Areas': 'Ownership with a purpose. Through our '\n", + " 'philanthropy and ownership of Ramboll to '\n", + " 'address societal challenges with the '\n", + " 'knowledge of engineering, design and '\n", + " 'society present in the organization. '\n", + " 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Socio-economic Development, Poverty'},\n", + " 'position': {'address': 'Ramboll Head Office, Hannemanns Allé 53, '\n", + " 'Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.62738719999999,\n", + " 'lng': 12.5794091,\n", + " 'name': 'Ramboll Head Office',\n", + " 'place_id': 'ChIJr5-Hi7dUUkYRI0z6TWYsvsI',\n", + " 'post_code': '2300',\n", + " 'street_name': 'Hannemanns Allé',\n", + " 'street_number': '53',\n", + " 'zoom': 7},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Environment/Climate',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rambollfonden.com'},\n", + " {'address': '38 Rue de la Folie-Regnault, Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'contact@fondationlafrancesengage.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['France']},\n", + " 'id': 21347,\n", + " 'link': 'https://philea.eu/members/fondation-la-france-sengage-2/',\n", + " 'name': \"Fondation la France s'engage\",\n", + " 'philea_info': {'About': 'The Foundation’s aim is to promote the engagement '\n", + " 'of civil society in innovative, mutually '\n", + " 'beneficial initiatives serving the greatest number '\n", + " 'of beneficiaries. In this way, it fosters social '\n", + " 'cohesion around local services and sustainable '\n", + " 'territorial development in France. Each year, it '\n", + " 'identifies and rewards the most innovative '\n", + " 'projects in all areas of sustainable development. '\n", + " 'The projects are accelerated by the Foundation, '\n", + " 'which provides them with funding and support over '\n", + " 'a three-year period to enable them to scale up and '\n", + " 'spread.',\n", + " 'Geographic Focus': 'France (including oversea territories)',\n", + " 'Mission': 'The Foundation’s aim is to promote the '\n", + " 'engagement of civil society in innovative, '\n", + " 'mutually beneficial initiatives serving the '\n", + " 'greatest number of beneficiaries. In this way, '\n", + " 'it fosters social cohesion around local services '\n", + " 'and sustainable territorial development in '\n", + " 'France. Each year, it identifies and rewards the '\n", + " 'most innovative projects in all areas of '\n", + " 'sustainable development. The projects are '\n", + " 'accelerated by the Foundation, which provides '\n", + " 'them with funding and support over a three-year '\n", + " 'period to enable them to scale up and spread.',\n", + " 'Programme Areas': 'The major areas of expertise of La '\n", + " 'France s’engage are the following :\\n'\n", + " 'Social innovation – year after year we '\n", + " 'detect and select the best local social '\n", + " 'innovations in France when they are '\n", + " 'still at an early stage and help them to '\n", + " 'expand\\n'\n", + " 'Social impact – when integrated into the '\n", + " 'La France s’engage program we make sure '\n", + " 'that the grantees assess their social '\n", + " 'impact, strenghten their methodologies '\n", + " 'and reach out to an accrued number of '\n", + " 'beneficiaries in new territories while '\n", + " 'increasing the quality of their services '\n", + " 'and impact\\n'\n", + " 'Capacity Building – La France s’engage '\n", + " 'provides unrestricted funding for a '\n", + " 'period of three years. This allows them '\n", + " 'to use funding exactly how they need it '\n", + " '(whether on HR, technology, material, '\n", + " 'etc…) to develop their capacities. But '\n", + " 'beside funding the grantees enter a '\n", + " 'three-year program of capacity building '\n", + " 'by external suppliers and partners of La '\n", + " 'France s’engage addressing specifically '\n", + " 'the needs and wants of our grantees and '\n", + " 'help them strengthen their governance, '\n", + " 'legal aspects, social impact '\n", + " 'measurement, scale changing and many '\n", + " 'more targeted services to help them '\n", + " 'grow.\\n'\n", + " 'Community network – entering the '\n", + " 'community of La France s’engage (248 '\n", + " 'actual and past grantees operating in '\n", + " 'different fields and regions) is a real '\n", + " 'asset for the new grantees. La France '\n", + " 's’engage acts as a broker and '\n", + " 'accelerator fostering the '\n", + " 'peer-to\\x02peer networking, the '\n", + " 'gathering at events, the capitalization '\n", + " 'on specific topics, the funding through '\n", + " 'its networks of private and public '\n", + " 'donors and the facilitation with '\n", + " 'administrative stakeholders. We also '\n", + " 'intend the network of La France s’engage '\n", + " 'to be a happy and engaging one.'},\n", + " 'position': {'address': '38 Rue de la Folie-Regnault, Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8587116,\n", + " 'lng': 2.3874303,\n", + " 'name': '38 Rue de la Folie-Regnault',\n", + " 'place_id': 'ChIJbYW78fRt5kcRxL6iBM85laE',\n", + " 'post_code': '75011',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue de la Folie-Regnault',\n", + " 'street_number': '38',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationlafrancesengage.org/'},\n", + " {'address': 'Kering, 40 Rue de Sèvres, 75007 Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'keringfoundation@kering.com',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Europe (Western / General)': ['France', 'United Kingdom'],\n", + " 'Latin America & Caribbean': ['Mexico'],\n", + " 'North America': ['United States']},\n", + " 'id': 21346,\n", + " 'link': 'https://philea.eu/members/kering-foundation/',\n", + " 'name': 'Kering Foundation',\n", + " 'philea_info': {'About': 'Kering Foundation fights gender based violence and '\n", + " 'violence against children by funding local '\n", + " 'organizations that offer comprehensive and adapted '\n", + " 'support to women and children survivors of '\n", + " 'violence, by working to change behaviors and '\n", + " 'mentalities by engaging young people, and by '\n", + " 'creating safe and supportive workplaces for '\n", + " 'survivors, as well as by mobilizing other '\n", + " 'companies on this issue.',\n", + " 'Geographic Focus': 'France, Italy, United Kingdom, United '\n", + " 'States, Mexico, Korea',\n", + " 'Mission': 'Since 2008, the Kering Foundation has been '\n", + " 'combating gender-based violence, which affects '\n", + " 'all cultures and social classes. To maximize its '\n", + " 'impact, Kering Foundation works with a limited '\n", + " 'number of partners in six main countries: the '\n", + " 'United States, France, Italy, Mexico, the United '\n", + " 'Kingdom and Korea. On the occasion of its 15th '\n", + " 'anniversary, Kering Foundation announced its '\n", + " 'strengthened commitment and now extends its work '\n", + " 'to also focus on violence against children, in '\n", + " 'particular childhood sexual violence.',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Health,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Kering, 40 Rue de Sèvres, 75007 Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8493753,\n", + " 'lng': 2.322048200000001,\n", + " 'name': 'Kering',\n", + " 'place_id': 'ChIJ2WJgKNNx5kcRKJ-0GozMdGU',\n", + " 'post_code': '75007',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue de Sèvres',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Health',\n", + " 'Human/Civil Rights',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.keringfoundation.org'},\n", + " {'address': '116 Park Street, London W1K 6AF, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 21345,\n", + " 'link': 'https://philea.eu/members/jeremy-coller-foundation/',\n", + " 'name': 'Jeremy Coller Foundation',\n", + " 'philea_info': {'About': 'The Jeremy Coller Foundation seeks to create '\n", + " 'positive impact on globally critical issues '\n", + " 'through strategic action, collaboration, and '\n", + " 'knowledge-sharing.',\n", + " 'Geographic Focus': 'US, UK, Europe, Asia',\n", + " 'Mission': 'The Jeremy Coller Foundation seeks to create '\n", + " 'positive impact on globally critical issues '\n", + " 'through strategic action, collaboration, and '\n", + " 'knowledge-sharing.',\n", + " 'Programme Areas': 'Three key areas of focus: 1) Educating '\n", + " 'on Factory Farming 2) Supporting the '\n", + " 'Coller School of Management and 3) '\n", + " 'Supporting Education, Culture and Other '\n", + " 'Causes. Animal-Related,\\n'\n", + " 'Education,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Food, Agriculture & Nutrition,\\n'\n", + " 'Health,\\n'\n", + " 'Social/Human Services'},\n", + " 'position': {'address': '116 Park Street, London W1K 6AF, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51337789999999,\n", + " 'lng': -0.1556058,\n", + " 'name': '116 Park St',\n", + " 'place_id': 'ChIJ6QZN4TIFdkgRkbtGcWYNg2Q',\n", + " 'post_code': 'W1K 6AF',\n", + " 'state': 'England',\n", + " 'street_name': 'Park Street',\n", + " 'street_name_short': 'Park St',\n", + " 'street_number': '116',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.jeremycollerfoundation.org'},\n", + " {'address': 'Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ',\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 21344,\n", + " 'link': 'https://philea.eu/members/fundacion-mapfre/',\n", + " 'name': 'Fundación Mapfre',\n", + " 'philea_info': {'About': 'Fundación Mapfre, founded in 1975, is promoted by '\n", + " 'Mapfre Mutualidad de Seguros, one of Spain’s '\n", + " 'leading insurance companies and Mapfre Mutua '\n", + " 'Patronal de Accidentes de Trabajo (Worker’s '\n", + " 'Compensation Mutual). It was officially recognised '\n", + " 'as a private cultural foundation by the Ministry '\n", + " 'of Education and Science in 1976.',\n", + " 'Geographic Focus': 'International, with programmes and '\n", + " 'activities in 30 countries (mainly '\n", + " 'located in Europe and America).',\n", + " 'Mission': 'To contribute to improving people’s quality of '\n", + " 'life and the progress of society through '\n", + " 'multinational programs and activities.',\n", + " 'Programme Areas': 'Arts & Culture,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Road Safety, Health and Prevention,\\n'\n", + " 'Recreation, Sport & Well-being,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development,\\n'\n", + " 'Insurance and Social Protection'},\n", + " 'position': {'address': 'Fundación Mapfre Paseo de Recoletos, 23 28004 '\n", + " 'Madrid Spain ',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4225631,\n", + " 'lng': -3.6921871,\n", + " 'place_id': 'ChIJD3h76EEpQg0RifCjWOgs4ag',\n", + " 'post_code': '28004',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Paseo de Recoletos',\n", + " 'street_name_short': 'P.º de Recoletos',\n", + " 'street_number': '23',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionmapfre.org'},\n", + " {'address': 'Wildlife Conservation Society EU Boulevard Louis Schmidt 64 1040 '\n", + " 'Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia', 'Pacific'],\n", + " 'Latin America & Caribbean': ['Caribbean',\n", + " 'Latin America']},\n", + " 'id': 20891,\n", + " 'link': 'https://philea.eu/members/wildlife-conservation-society-eu/',\n", + " 'name': 'Wildlife Conservation Society EU',\n", + " 'philea_info': {'About': 'WCS EU was established to engage with EU '\n", + " 'institutions, European governments and '\n", + " 'organisations, in support of global conservation. '\n", + " 'WCS EU aims to influence EU policy and funding '\n", + " 'initiatives and develop partnerships for '\n", + " 'conservation impact. It draws upon WCS’s global '\n", + " 'field and scientific expertise to articulate '\n", + " 'scientifically-based policy positions and '\n", + " 'facilitate the development and implementation of '\n", + " 'conservation projects. WCS is present in over 60 '\n", + " 'countries and has experience helping to establish, '\n", + " 'expand or manage over 550 protected areas. It '\n", + " 'applies biological knowledge, scientific expertise '\n", + " 'and cultural understanding to ensure that wild '\n", + " 'places and wildlife thrive alongside local '\n", + " 'communities.',\n", + " 'Geographic Focus': 'Africa, Asia, Latin America and the '\n", + " 'Caribbean, and the Pacific',\n", + " 'Mission': 'The mission of WCS EU is to save wildlife and '\n", + " 'wild places worldwide through science, '\n", + " 'conservation action, education, and inspiring '\n", + " 'people to value nature. The following objectives '\n", + " 'are taken from our official statutes: 4.1.1 '\n", + " 'Saving wildlife and wild places worldwide '\n", + " 'through science, conservation action, education, '\n", + " 'and inspiring people to value nature. 4.1.2 '\n", + " 'Protecting and conserving of the natural '\n", + " 'environment, its flora and fauna including by '\n", + " 'undertaking innovative approaches thereto. 4.1.3 '\n", + " 'Educating and instructing the public.',\n", + " 'Programme Areas': 'WCS EU is working to influence EU policy '\n", + " 'and funding initiatives that impact '\n", + " 'biodiversity conservation in the global '\n", + " 'south. Major areas of interest include: '\n", + " 'protected areas, tackling deforestation '\n", + " 'and forest degradation, wildlife trade '\n", + " 'and trafficking, implementing One Health '\n", + " 'initiatives, marine and ocean '\n", + " 'conservation, biodiversity finance and '\n", + " 'integrating wildlife protection into EU '\n", + " 'development aid programmes. WCS EU is '\n", + " 'involved in a number of projects funded '\n", + " 'through public grants related to the '\n", + " 'conservation or sustainable use of '\n", + " 'biodiversity, including the EU-funded '\n", + " 'Sustainable Wildlife Management '\n", + " 'programme (SWM), the EU-funded Niassa '\n", + " 'special reserve project, and the UK '\n", + " 'government-funded Forest Governance, '\n", + " 'Markets and Climate (FGMC) programme.'},\n", + " 'position': {'address': 'Boulevard Louis Schmidt 64, 1040 Etterbeek, '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Etterbeek',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8297338,\n", + " 'lng': 4.4023405,\n", + " 'name': 'Bd Louis Schmidt 64',\n", + " 'place_id': 'ChIJ22ZKe7TEw0cRVL69dfxF_jc',\n", + " 'post_code': '1040',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Boulevard Louis Schmidt',\n", + " 'street_name_short': 'Bd Louis Schmidt',\n", + " 'street_number': '64',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://brussels.wcs.org/'},\n", + " {'address': 'Global Greengrants Fund UK WeWork - Office Space & Coworking, '\n", + " 'City Road, London, UK',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@globalgreengrants.org.uk',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe'],\n", + " 'Global South / Majority World': ['Majority World'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 20754,\n", + " 'link': 'https://philea.eu/members/global-greengrants-fund-uk/',\n", + " 'name': 'Global Greengrants Fund UK',\n", + " 'philea_info': {'About': 'Global Greengrants Fund UK (charity number '\n", + " '1151527) believes solutions to environmental harm '\n", + " 'and social injustice come from people whose lives '\n", + " 'are most impacted. Every day, our global network '\n", + " 'of people on the frontlines and donors comes '\n", + " 'together to support communities to protect their '\n", + " 'ways of life and our planet. Because when local '\n", + " 'people have a say in the health of their food, '\n", + " 'water, and resources, they are forces for change. '\n", + " 'Global Greengrants Fund UK is the European sister '\n", + " 'organisation of Global Greengrants Fund. Founded '\n", + " 'in 2012 and staffed since 2015, Global Greengrants '\n", + " 'Fund UK provides those in the United Kingdom and '\n", + " 'Europe with the opportunity to invest in local '\n", + " 'change, spearheaded by the same expert advisors '\n", + " 'that are a hallmark of Global Greengrants. The '\n", + " 'organisation is an intermediary funder and does '\n", + " 'not have an endowment or any other source of '\n", + " 'income beyond what it raises from other '\n", + " 'grant-making bodies and the general public.',\n", + " 'Geographic Focus': 'Global, but with particular focus on '\n", + " 'the Majority World (i.e. beyond Europe '\n", + " 'and North America).',\n", + " 'Mission': 'Global Greengrants Fund UK mobilises resources '\n", + " 'for communities worldwide to protect our shared '\n", + " 'planet and work toward a more equitable world.'},\n", + " 'position': {'address': 'Global Greengrants Fund UK WeWork - Office Space & '\n", + " 'Coworking, City Road, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5278912,\n", + " 'lng': -0.0882804,\n", + " 'place_id': 'ChIJ1bq4GBYddkgR45V6NnYZ7jY',\n", + " 'post_code': 'EC1V 1AZ',\n", + " 'state': 'England',\n", + " 'street_name': 'City Road',\n", + " 'street_name_short': 'City Rd',\n", + " 'street_number': '145',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.greengrants.org/who-we-are/global-greengrants-fund-uk/'},\n", + " {'address': 'Institute of Science and Technology Austria (ISTA), Am Campus, '\n", + " 'Klosterneuburg, Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'foundation@ista.ac.at',\n", + " 'geo_locations': {'Europe (Western / General)': ['Austria']},\n", + " 'id': 20620,\n", + " 'link': 'https://philea.eu/members/ista-foundation/',\n", + " 'name': 'ISTA Foundation',\n", + " 'philea_info': {'About': 'The mission of our organization is to support '\n", + " 'research in the natural sciences, formal sciences '\n", + " 'and engineering sciences, as well as support of '\n", + " 'graduate and post-graduate education.',\n", + " 'Geographic Focus': 'Austria',\n", + " 'Mission': 'The mission of our organization is to support '\n", + " 'research in the natural sciences, formal '\n", + " 'sciences and engineering sciences, as well as '\n", + " 'support of graduate and post-graduate education.',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Sciences & Research\\n'\n", + " 'Basic research in the natural sciences, '\n", + " 'mathematics & computer science'},\n", + " 'position': {'address': 'Institute of Science and Technology Austria (ISTA), '\n", + " 'Am Campus, Klosterneuburg, Austria',\n", + " 'city': 'Klosterneuburg',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.3095598,\n", + " 'lng': 16.2595038,\n", + " 'name': 'Institute of Science and Technology Austria (ISTA)',\n", + " 'place_id': 'ChIJi8zP6iEMbUcRsygEZMiM3to',\n", + " 'post_code': '3400',\n", + " 'state': 'Niederösterreich',\n", + " 'street_name': 'Am Campus',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://ista.ac.at/en/capital-campaign/the-ista-foundation/'},\n", + " {'address': 'Via Brenta Vecchia 08 Venice, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionedivenezia.org',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 20619,\n", + " 'link': 'https://philea.eu/members/fondazione-di-venezia/',\n", + " 'name': 'Fondazione di Venezia',\n", + " 'philea_info': {'About': 'Established in 1992, Fondazione di Venezia '\n", + " 'originates from Cassa di Risparmio di Venezia, the '\n", + " 'oldest savings bank in Italy, dating back to 1822, '\n", + " 'which substantially contributed to the social and '\n", + " 'economic development of the city and its '\n", + " 'territory.',\n", + " 'Geographic Focus': 'Italy',\n", + " 'Mission': 'The mission of the Foundation is the promotion '\n", + " 'of civil society and human capital, in the '\n", + " 'historical, social, economic and cultural '\n", + " 'dimension of Venice. In order to achieve this '\n", + " 'aim, the Foundation directs its institutional '\n", + " 'activities in Italy and abroad towards social '\n", + " 'utility and the promotion of economic '\n", + " 'development.',\n", + " 'Programme Areas': 'Arts & Culture,\\n'\n", + " 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development,\\n'\n", + " 'Other (please specify):\\n'\n", + " 'Immigrants'},\n", + " 'position': {'address': 'Via Brenta Vecchia 08 venice',\n", + " 'city': 'Venezia',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4920122,\n", + " 'lng': 12.2413301,\n", + " 'place_id': 'Ei5WaWEgQnJlbnRhIFZlY2NoaWEsIDgsIDMwMTcxIFZlbmV6aWEgVkUsIEl0YWx5IjASLgoUChIJ1SUOvT-0fkcRSzcoNnTsZYwQCCoUChIJ5csiuz-0fkcR8cgOeVrbTSU',\n", + " 'post_code': '30171',\n", + " 'state': 'Veneto',\n", + " 'state_short': 'VE',\n", + " 'street_name': 'Via Brenta Vecchia',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Human/Civil Rights',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionedivenezia.it'},\n", + " {'address': 'Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria.fondazione@fondazionecdp.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 20618,\n", + " 'link': 'https://philea.eu/members/fondazione-cdp/',\n", + " 'name': 'Fondazione CDP',\n", + " 'philea_info': {'About': '• School – a priority theme with multiple facets, '\n", + " 'which require, in order\\xa0 o generate impact, to: '\n", + " 'achieve lower school drop-out rates, decrease '\n", + " 'university drop-out rates, increase support for '\n", + " 'disadvantaged students and improve the mental '\n", + " 'health of young people.\\n'\n", + " '• Art and Culture as vehicles for development – '\n", + " 'with the aim of evolving the call for Cultural '\n", + " 'Ecosystems to select initiatives that are '\n", + " 'sustainable in the long term, that are based on '\n", + " 'territorial networks participated in by the public '\n", + " 'administration and that create job opportunities '\n", + " 'and social rehabilitation.\\n'\n", + " '• Assistance and Research Sector – continue with '\n", + " 'the enabling of PNRR funds and focus on '\n", + " 'initiatives to increase the attractiveness of the '\n", + " 'sector and the retention of skills in the country',\n", + " 'Geographic Focus': 'Italy',\n", + " 'Mission': 'Fondazione CDP pursues social, environmental, '\n", + " 'cultural and economic development objectives. It '\n", + " 'invests in the country’s strategic\\n'\n", + " 'assets, with a particular focus on initiatives '\n", + " 'in favour of the younger generations and in '\n", + " 'support of human capital.',\n", + " 'Programme Areas': 'Arts & Culture,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Health,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Via Goito, 4, Rome, Metropolitan City of Rome '\n", + " 'Capital, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.90695119999999,\n", + " 'lng': 12.4995912,\n", + " 'name': 'Via Goito, 4',\n", + " 'place_id': 'ChIJo3v9wglhLxMRPUtWOuax73A',\n", + " 'post_code': '00185',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via Goito',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Health',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.cdp.it/sitointernet/it/fondazione.page'},\n", + " {'address': 'Mariahilfer Straße 47/1 1, Vienna, Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'forum@alpbach.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe']},\n", + " 'id': 20334,\n", + " 'link': 'https://philea.eu/members/european-forum-alpbach/',\n", + " 'name': 'European Forum Alpbach',\n", + " 'philea_info': {'About': 'The founder of the European Forum Alpbach '\n", + " 'Foundation is the European Forum Alpbach '\n", + " 'Association, which took place for the first time '\n", + " 'in August 1945 as one of the earliest '\n", + " 'international political and intellectual events in '\n", + " 'post-WWII Europe. Alpbach was created as an '\n", + " 'intellectual platform of discussion where Europe’s '\n", + " 'cultural, scientific and humanitarian heritage '\n", + " 'could be developed in a future-oriented way and '\n", + " 'where European integration could be promoted.',\n", + " 'Geographic Focus': 'Europe',\n", + " 'Mission': 'The European Forum Alpbach (EFA) is a space and '\n", + " 'place for the emergence of reflection and '\n", + " 'action. It brings together young people from '\n", + " 'Europe and from all over the world with the most '\n", + " 'innovative minds from politics, business, civil '\n", + " 'society, culture, and science to drive ideas for '\n", + " 'a strong and democratic Europe. With this '\n", + " 'diverse, intergenerational, and '\n", + " 'interdisciplinary community, the Forum '\n", + " 'influences key actors throughout the European '\n", + " 'continent to facilitate their learning and '\n", + " 'decisions.',\n", + " 'Programme Areas': 'Scholarships for students of all '\n", + " 'disciplines'},\n", + " 'position': {'address': 'Mariahilfer Straße 47/1 1, Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.19933379999999,\n", + " 'lng': 16.3553679,\n", + " 'name': 'Mariahilfer Str. 47/1 1',\n", + " 'place_id': 'EitNYXJpYWhpbGZlciBTdHIuIDQ3LzEgMSwgMTA2MCBXaWVuLCBBdXN0cmlhIh8aHQoWChQKEgk7TMYCjwdtRxEAmgsgWkEEBBIDMSAx',\n", + " 'post_code': '1060',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Mariahilfer Straße',\n", + " 'street_name_short': 'Mariahilfer Str.',\n", + " 'street_number': '47',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.alpbach.org'},\n", + " {'address': 'Place Victor Horta 40, Saint-Gilles, Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@equineteurope.org',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Georgia',\n", + " 'Moldova',\n", + " 'Ukraine'],\n", + " 'Europe (Nordic Region)': ['Norway']},\n", + " 'id': 20333,\n", + " 'link': 'https://philea.eu/members/european-network-of-equality-bodies/',\n", + " 'name': 'European Network of Equality Bodies',\n", + " 'philea_info': {'About': 'Equinet is the European Network of Equality '\n", + " 'Bodies, a membership organisation of 47 National '\n", + " 'Equality Bodies. By strengthening and supporting '\n", + " 'National Equality Bodies, Equinet works towards '\n", + " 'achieving equality and ensuring nondiscrimination '\n", + " 'for everyone in Europe, in all aspects of their '\n", + " 'lives. Equality Bodies are public organisations '\n", + " 'that assist victims of discrimination. They '\n", + " 'monitor\\n'\n", + " 'and report on discrimination issues and promote '\n", + " 'equality. They are legally required to do so in '\n", + " 'relation to one, some, or all of the grounds of '\n", + " 'discrimination covered by European Union law – '\n", + " 'gender, race and ethnicity, age, sexual '\n", + " 'orientation, religion or belief, and disability. '\n", + " 'Based on Equinet’s 2023-2026 Strategic Plan '\n", + " 'developed over the course of 2022 after an '\n", + " 'extensive evaluation and impact assessment, our '\n", + " 'main objectives are:\\n'\n", + " '• Strengthen and support Equality Bodies to '\n", + " 'achieve equality for all\\n'\n", + " '• Strengthen Equality Bodies as the cornerstones '\n", + " 'of national equality infrastructures\\n'\n", + " '• Support Equality Bodies through knowledge, '\n", + " 'capacity-building and skills sharing for the '\n", + " 'enforcement of their mandate Act as an expert '\n", + " 'voice of Equality Bodies in Europe on equality and '\n", + " 'nondiscrimination\\n'\n", + " '• Advance the equality agenda in Europe through '\n", + " 'strategic engagement and communication\\n'\n", + " '• Maintain Equinet’s position as a research and '\n", + " 'knowledge hub drawing on Equality Bodies’ '\n", + " 'experience of equality and non\\x02discrimination '\n", + " 'Maintain and improve Equinet’s capacity as a '\n", + " 'strong, resilient, and innovative Network\\n'\n", + " '• Ensure an enriching membership experience in '\n", + " 'Equinet, by tailoring activities and engaging all '\n", + " 'Members\\n'\n", + " '• Develop and sustain Equinet’s resources and '\n", + " 'accountability to better respond to Members’ needs',\n", + " 'Geographic Focus': 'EU + accession and candidate countries '\n", + " '+ Norway + UK + Georgia + Moldova + '\n", + " 'Ukraine',\n", + " 'Mission': 'Equinet promotes equality in Europe by '\n", + " 'supporting Equality Bodies to be independent and '\n", + " 'effective catalysts for more equal societies, '\n", + " 'and delivers its mission in a way that embodies '\n", + " 'and promotes its values.',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Human/Civil Rights'},\n", + " 'position': {'address': 'Place Victor Horta 40, Saint-Gilles, Belgium',\n", + " 'city': 'Saint-Gilles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8361342,\n", + " 'lng': 4.3334527,\n", + " 'name': 'Pl. Victor Horta 40',\n", + " 'place_id': 'ChIJpSVAGG3Ew0cRx_izmCdwvpE',\n", + " 'post_code': '1060',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Place Victor Horta',\n", + " 'street_name_short': 'Pl. Victor Horta',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Human/Civil Rights'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.equineteurope.org/'},\n", + " {'address': '48th Street, New York, NY, USA',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Latin America']},\n", + " 'id': 20331,\n", + " 'link': 'https://philea.eu/members/the-plastic-solutions-fund/',\n", + " 'name': 'The Plastic Solutions Fund',\n", + " 'philea_info': {'About': 'Our major areas of expertise are advocacy and '\n", + " 'movement building. Our distinguishing '\n", + " 'characteristic would be our practically unique '\n", + " 'philanthropic approach to ending plastic '\n", + " 'pollution. We focus on systemic change, we '\n", + " 'strongly believe a lasting and working solution '\n", + " 'for the crisis means turning off the plastics tap '\n", + " 'for good. We support production reductions, '\n", + " 'single-use-plastic phase out, economies of reuse, '\n", + " 'strong toxic chemical prohibitions and regulation, '\n", + " 'environmental justice for all people and animals '\n", + " 'affected throughout the plastics supply chain, '\n", + " 'among other lasting solutions for the problem.',\n", + " 'Geographic Focus': 'Primarily, the US, Europe and Asia. We '\n", + " 'also fund strategic grants in Latin '\n", + " 'America and Africa.',\n", + " 'Mission': 'Reduce the impact of plastic pollution on ocean '\n", + " 'and terrestrial ecosystems and human health by '\n", + " 'helping achieve a world with a regenerative and '\n", + " 'distributive economy where the production and '\n", + " 'consumption of plastic products and packaging '\n", + " 'lie within planetary and social boundaries.',\n", + " 'Programme Areas': 'The PSF centres its work in two groups '\n", + " 'of programme areas: Priority Initiative '\n", + " 'and Power Building. The first is related '\n", + " 'to subjects and opportunities we believe '\n", + " 'are in need of direct support from us '\n", + " '(petrochemical development opposition, '\n", + " 'sachets prohibitions, economies of '\n", + " 'reuse). The second area is related to '\n", + " 'indirect support we give out to enhance '\n", + " 'the strength of allied organisations and '\n", + " 'movements, particularly Break Free From '\n", + " 'Plastic (BFFP), who we have supported '\n", + " 'practically since inception. Today there '\n", + " 'are no global discussions on plastic '\n", + " 'pollution where BFFP is not involved (to '\n", + " 'different degrees), and the PSF’s '\n", + " 'support is crucial to keep that going.'},\n", + " 'position': {'address': '48th Street, New York, NY, USA',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.7484533,\n", + " 'lng': -73.91574659999999,\n", + " 'name': '48th Street',\n", + " 'place_id': 'Ehg0OHRoIFN0LCBRdWVlbnMsIE5ZLCBVU0EiLiosChQKEgl78fjtHl_CiRHeaMoLqjVDDBIUChIJOwg_06VPwokRYv534QaPC8g',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': '48th Street',\n", + " 'street_name_short': '48th St',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://plasticsolution.org'},\n", + " {'address': 'Park Stara Trešnjevka 4, Zagreb, Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@zhzd.hr',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Croatia']},\n", + " 'id': 20330,\n", + " 'link': 'https://philea.eu/members/croatia-for-children-foundation/',\n", + " 'name': 'Croatia for Children Foundation',\n", + " 'philea_info': {'About': 'Promoting the well-being of children’s personal '\n", + " 'and property rights and strengthening families in '\n", + " 'situations of various social, health and '\n", + " 'educational needs of children. The purpose of the '\n", + " 'Foundation is achieved by giving grants in money '\n", + " 'and by supporting cultural, educational, sports, '\n", + " 'recreational and religious content, as well as '\n", + " 'giving others forms of support determined by the '\n", + " 'Foundation’s specific acts.',\n", + " 'Geographic Focus': 'Croatia',\n", + " 'Mission': 'Promoting the well-being of children’s personal '\n", + " 'and property rights and strengthening families '\n", + " 'in situations of various social, health and '\n", + " 'educational needs of children. The purpose of '\n", + " 'the Foundation is achieved by giving grants in '\n", + " 'money and by supporting cultural, educational, '\n", + " 'sports, recreational and religious content, as '\n", + " 'well as giving others forms of support '\n", + " 'determined by the Foundation’s specific acts.',\n", + " 'Programme Areas': 'Providing support to families with '\n", + " 'children who are in low-income financial '\n", + " 'condition, providing scholarships to '\n", + " 'pupils and students and announcing a '\n", + " 'public tender for financing projects of '\n", + " 'legal entities. Civil society, '\n", + " 'Voluntarism & Non-Profit Sector,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Park Stara Trešnjevka 4, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.7974746,\n", + " 'lng': 15.9496377,\n", + " 'name': 'Park Stara Trešnjevka 4',\n", + " 'place_id': 'ChIJBfeJYZXWZUcR8ZcqapkBkf0',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Park Stara Trešnjevka',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Human/Civil Rights',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.zhzd.hr/'},\n", + " {'address': 'Ridlerstraße 55, Munich, Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@child-invest-foundation.org',\n", + " 'geo_locations': {},\n", + " 'id': 20328,\n", + " 'link': 'https://philea.eu/members/childinvest-foundation/',\n", + " 'name': 'ChildInvest Foundation',\n", + " 'philea_info': {'About': 'The ChildInvest Foundation is the leading partner '\n", + " 'for all those who have been committed to a '\n", + " 'self-determined future for children and young '\n", + " 'people across generations. Effective and '\n", + " 'worldwide. The ChildInvest Foundation benefits of '\n", + " 'the huge network, know-how and expertise of SOS '\n", + " 'children’s villages worldwide as programmes and '\n", + " 'projects of SOS children’s villages are sponsored '\n", + " 'internationally and sustainably by the ChildInvest '\n", + " 'Foundation.',\n", + " 'Mission': 'We use our full potential for the goals of SOS '\n", + " 'Children’s Villages worldwide. In doing so, we '\n", + " 'are making a decisive difference in the lives of '\n", + " 'disadvantaged children and young people around '\n", + " 'the world.\\n'\n", + " 'With our many years of experience, we manage the '\n", + " 'foundation’s assets professionally and '\n", + " 'successfully. In close cooperation with our '\n", + " 'sponsors, we create tailor-made solutions for '\n", + " 'their philanthropic commitment.',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Ridlerstraße 55, Munich, Germany',\n", + " 'city': 'München',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.1339139,\n", + " 'lng': 11.5316548,\n", + " 'name': 'Ridlerstraße 55',\n", + " 'place_id': 'ChIJ4enG2aXYnUcRDxxsSdtiAlQ',\n", + " 'post_code': '80339',\n", + " 'state': 'Bayern',\n", + " 'state_short': 'BY',\n", + " 'street_name': 'Ridlerstraße',\n", + " 'street_number': '55',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.child-invest-foundation.org'},\n", + " {'address': 'Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, '\n", + " 'France',\n", + " 'country': 'France',\n", + " 'email': 'global-foundation@schneider-electric.com',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 20259,\n", + " 'link': 'https://philea.eu/members/schneider-electric-foundation/',\n", + " 'name': 'Schneider Electric Foundation',\n", + " 'philea_info': {'About': 'In a world where social and environmental '\n", + " 'challenges are more widespread and more urgent '\n", + " 'than ever, the Schneider Electric Foundation '\n", + " 'supports innovative and forward-looking '\n", + " 'initiatives to give as many people as possible the '\n", + " 'energy they need to succeed.\\n'\n", + " 'It is this pioneering spirit that the Schneider '\n", + " 'Electric Foundation is seeking to advance. We see '\n", + " 'our role as a catalyst for technological, social '\n", + " 'and entrepreneurial innovation helping to close '\n", + " 'the energy gap and striving for a more equitable '\n", + " 'energy transition around the world. Ever '\n", + " 'optimistic, the Schneider Electric Foundation’s '\n", + " 'aim is to help build a fairer, lower-carbon '\n", + " 'society to give future generations the keys to '\n", + " 'transform our world.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'In a world where social and environmental '\n", + " 'challenges are more widespread and more urgent '\n", + " 'than ever, the Schneider Electric Foundation '\n", + " 'supports innovative and forward-looking '\n", + " 'initiatives to give as many people as possible '\n", + " 'the energy they need to succeed.\\n'\n", + " 'It is this pioneering spirit that the Schneider '\n", + " 'Electric Foundation is seeking to advance. We '\n", + " 'see our role as a catalyst for technological, '\n", + " 'social and entrepreneurial innovation helping to '\n", + " 'close the energy gap and striving for a more '\n", + " 'equitable energy transition around the world. '\n", + " 'Ever optimistic, the Schneider Electric '\n", + " 'Foundation’s aim is to help build a fairer, '\n", + " 'lower-carbon society to give future generations '\n", + " 'the keys to transform our world.',\n", + " 'Programme Areas': 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Schneider Electric, Hive, Rue Joseph Monier, '\n", + " 'Rueil-Malmaison, France',\n", + " 'city': 'Rueil-Malmaison',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.89122709999999,\n", + " 'lng': 2.1722213,\n", + " 'name': 'Schneider Electric',\n", + " 'place_id': 'ChIJHdYfInJj5kcRuX4C4i6Ddss',\n", + " 'post_code': '92500',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Joseph Monier',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.schneider-electric.com/en/about-us/sustainability/foundation/'},\n", + " {'address': 'GivingTuesday, 165 Court Street, New York, US',\n", + " 'country': 'United States',\n", + " 'email': 'info@givingtuesday.org',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 20258,\n", + " 'link': 'https://philea.eu/members/givingtuesday/',\n", + " 'name': 'GivingTuesday',\n", + " 'philea_info': {'About': 'Areas of expertise: global grassroots network '\n", + " 'development; grassroots/localization philanthropy; '\n", + " 'data and research on generosity; communications. '\n", + " 'The organization’s key strength has been the '\n", + " 'combined development of a 100+ strong country '\n", + " 'network mobilising millions of NGOs and citizens '\n", + " 'each year to invest their philanthropic time and '\n", + " 'efforts in leaving their community better than '\n", + " 'they find it, and having the data and research '\n", + " 'capabilities to observe, learn, understand, and '\n", + " 'improve giving ecosystems.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'GivingTuesday reimagines a world built upon '\n", + " 'shared humanity and generosity. Our global '\n", + " 'network collaborates year-round to inspire '\n", + " 'generosity around the world, with a common '\n", + " 'mission to build a world where generosity is '\n", + " 'part of everyday life.',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'GivingTuesday, 165 Court Street, New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.6886093,\n", + " 'lng': -73.9926709,\n", + " 'place_id': 'ChIJ5eJDuE9awokR7gYe3G91m7U',\n", + " 'post_code': '11201',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Court Street',\n", + " 'street_name_short': 'Court St',\n", + " 'street_number': '165',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Human/Civil Rights',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://givingtuesday.org'},\n", + " {'address': 'Learning Planet Institute, Rue Charles V, Paris, France',\n", + " 'country': 'France',\n", + " 'email': 'team.communication@learningplanetinstitute.org',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 20257,\n", + " 'link': 'https://philea.eu/members/learning-planet-institute/',\n", + " 'name': 'Learning Planet Institute',\n", + " 'philea_info': {'About': 'To achieve its goals, the Learning Planet '\n", + " 'Institute creates research and educational '\n", + " 'programmes based on interdisciplinarity, diversity '\n", + " 'and initiative. This relies on the synergies '\n", + " 'between its activities: R&D, Education, '\n", + " 'International Alliance, Transformation of '\n", + " 'Organisations and Digital Ecosystems.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'The Institute’s mission is to explore, research '\n", + " 'and share new ways of learning and cooperating '\n", + " 'in order to respond to the needs of the youth '\n", + " 'and the planet. By encouraging and disseminating '\n", + " 'a culture, methods and tools for empowerment, it '\n", + " 'transforms organisations. Ultimately, it leads '\n", + " 'communities and supports “Learning Planetizens” '\n", + " 'to take care of themselves, others and the '\n", + " 'planet.',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Health,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Learning Planet Institute, Rue Charles V, Paris, '\n", + " 'France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.853082,\n", + " 'lng': 2.3628393,\n", + " 'name': 'Learning Planet Institute',\n", + " 'place_id': 'ChIJqa2L8_5x5kcRntOBJ0fhHgs',\n", + " 'post_code': '75004',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Charles V',\n", + " 'street_number': '8 bis',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Environment/Climate',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.learningplanetinstitute.org/en/'},\n", + " {'address': 'ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@enarfoundation.eu',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe']},\n", + " 'id': 20255,\n", + " 'link': 'https://philea.eu/members/enar-foundation/',\n", + " 'name': 'ENAR Foundation',\n", + " 'philea_info': {'About': 'An organisation established by racialised '\n", + " 'individuals, for racialised communities and '\n", + " 'individuals alike. Empowering the communities we '\n", + " 'serve and ensuring they can be their own agents of '\n", + " 'change is at the heart of who we are and what we '\n", + " 'do.',\n", + " 'Geographic Focus': 'Europe',\n", + " 'Mission': 'ENAR Foundation is the first pan-European '\n", + " 'anti-racist foundation, established by the '\n", + " 'pan-European anti-racist movement itself. We '\n", + " 'achieve this by facilitating access to funding '\n", + " 'for grassroots activists and non-profit '\n", + " 'organisations battling against racism and its '\n", + " 'effects on communities and individuals alike.',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Peace & Conflict Resolution,\\n'\n", + " 'Socio-economic Development, Poverty'},\n", + " 'position': {'address': 'ENAR Foundation, Avenue des Arts 3-4-5, Brussels, '\n", + " 'Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8485433,\n", + " 'lng': 4.3697963,\n", + " 'place_id': 'ChIJq6p6QH3Dw0cR0bgFO6FsPbQ',\n", + " 'post_code': '1210',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Avenue des Arts',\n", + " 'street_name_short': 'Av. des Arts',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Environment/Climate',\n", + " 'Human/Civil Rights',\n", + " 'Peace & Conflict Resolution',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://enarfoundation.eu'},\n", + " {'address': 'Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fffoundation.eu',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Croatia',\n", + " 'Czech Republic',\n", + " 'Poland',\n", + " 'Slovakia'],\n", + " 'Europe (Southern / Mediterranean)': ['Greece',\n", + " 'Italy',\n", + " 'Portugal',\n", + " 'Spain'],\n", + " 'Europe (Western / General)': ['Europe', 'France']},\n", + " 'id': 20254,\n", + " 'link': 'https://philea.eu/members/fast-forward-foundation/',\n", + " 'name': 'Fast Forward Foundation',\n", + " 'philea_info': {'About': 'The Foundation’s methodology involves research '\n", + " 'projects, workshops, pilot projects, awareness '\n", + " 'campaigns and advocacy activities. This innovative '\n", + " 'methodology, together with the Foundation’s '\n", + " 'integrated perspective on integrated welfare, are '\n", + " 'the distinguishing elements of the Foundation. The '\n", + " 'Foundation intends to contribute to the well-being '\n", + " 'of individuals and society as a whole by '\n", + " 'contributing to the development of more '\n", + " 'sustainable and inclusive welfare systems.',\n", + " 'Geographic Focus': 'Europe, and in particular Italy, '\n", + " 'Poland, France, Spain, Portugal, '\n", + " 'Greece, Czech Republic, Slovakia, '\n", + " 'Croatia',\n", + " 'Mission': 'To foster the sustainable and inclusive '\n", + " 'transformation of welfare systems for the '\n", + " 'protection of individuals and communities',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Health,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Socio-economic Development, Poverty'},\n", + " 'position': {'address': 'Via Domenichino, 5, Milan, Metropolitan City of '\n", + " 'Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4734579,\n", + " 'lng': 9.1502269,\n", + " 'name': 'Via Domenichino, 5',\n", + " 'place_id': 'ChIJ5-LDyXHBhkcRWyJ4Vv0Labk',\n", + " 'post_code': '20149',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Domenichino',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fffoundation.eu/'},\n", + " {'address': 'Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@trygfonden.dk',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark']},\n", + " 'id': 20007,\n", + " 'link': 'https://philea.eu/members/trygfonden/',\n", + " 'name': 'TrygFonden',\n", + " 'philea_info': {'About': 'TrygFonden is a democratically led philanthropical '\n", + " 'organization with a member base of 1.5 mil. Danes. '\n", + " 'TrygFonden works strategically through our own '\n", + " 'programmes, partnerships and grants to create '\n", + " 'greater peace of mind in Denmark.',\n", + " 'Geographic Focus': 'Denmark',\n", + " 'Mission': 'TrygFonden’s mission is to contribute to '\n", + " 'everyone in Denmark being able to take '\n", + " 'responsibility for their own peace of mind and '\n", + " 'the peace of mind of others.',\n", + " 'Programme Areas': 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Health,\\n'\n", + " 'Recreation, Sport & Well-being,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. '\n", + " 'Lyngby Denmark',\n", + " 'city': 'Kongens Lyngby',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7751248,\n", + " 'lng': 12.4944702,\n", + " 'place_id': 'EjhMeW5nYnkgSG92ZWRnYWRlIDQsIDIuIFNhbCwgMjgwMCBLb25nZW5zIEx5bmdieSwgRGVubWFyayIiGiAKFgoUChIJF06CLkJOUkYR3k7-qC9tb_oSBjIuIFNhbA',\n", + " 'post_code': '2800',\n", + " 'street_name': 'Lyngby Hovedgade',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.trygfonden.dk'},\n", + " {'address': 'Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG '\n", + " 'Dordrecht Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'postbus@dioraphte.nl',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa',\n", + " 'Ethiopia',\n", + " 'Kenya',\n", + " 'Malawi',\n", + " 'Uganda'],\n", + " 'Europe (Western / General)': ['Netherlands']},\n", + " 'id': 20006,\n", + " 'link': 'https://philea.eu/members/dioraphte-foundation/',\n", + " 'name': 'Dioraphte Foundation',\n", + " 'philea_info': {'About': 'Support initiatives that have a significant impact '\n", + " 'on peoples’ lives.',\n", + " 'Geographic Focus': 'Both in the Netherlands and Africa '\n", + " '(Ethiopia, Kenya, Malawi and Uganda, '\n", + " 'and and some projects in Sudan).',\n", + " 'Mission': 'Support initiatives that have a significant '\n", + " 'impact on peoples’ lives.',\n", + " 'Programme Areas': 'Arts & Culture,\\n'\n", + " 'Education,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Sciences & Research,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development,\\n'\n", + " 'Other (please specify):\\n'\n", + " 'Neglected Tropical Diseases'},\n", + " 'position': {'address': 'Dioraphte Foundation Kuipershaven 169 PO Box 255 - '\n", + " '3300 AG Dordrecht Netherlands',\n", + " 'city': 'Dordrecht',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 51.81749250000001,\n", + " 'lng': 4.666106399999999,\n", + " 'place_id': 'ChIJkU_mmswuxEcRMxnRKINOMzk',\n", + " 'post_code': '3311 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Kuipershaven',\n", + " 'street_number': '169',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dioraphte.nl/'},\n", + " {'address': 'Lautrupsgade 7, 2100 København, Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@leo-foundation.org',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 20005,\n", + " 'link': 'https://philea.eu/members/leo-foundation/',\n", + " 'name': 'LEO Foundation',\n", + " 'philea_info': {'About': 'The LEO Foundation supports research into skin and '\n", + " 'skin diseases. We are probably the World’s largest '\n", + " 'private funder of independent research within this '\n", + " 'field.',\n", + " 'Geographic Focus': 'Denmark and global',\n", + " 'Mission': 'The LEO Foundation supports research into skin '\n", + " 'and skin diseases. We are probably the World’s '\n", + " 'largest private funder of independent research '\n", + " 'within this field.',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Health,\\n'\n", + " 'Sciences & Research'},\n", + " 'position': False,\n", + " 'tags_focus': ['Education', 'Health', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://leo-foundation.org'},\n", + " {'address': 'Helvetas Swiss Intercooperation Weinbergstr. 22a 8021 Zurich '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@helvetas.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Latin America']},\n", + " 'id': 20004,\n", + " 'link': 'https://philea.eu/members/helvetas-swiss-intercooperation/',\n", + " 'name': 'Helvetas Swiss Intercooperation',\n", + " 'philea_info': {'About': 'Helvetas is committed to a just world in which all '\n", + " 'people determine the course of their lives in '\n", + " 'dignity and security, using environmental '\n", + " 'resources in a sustainable manner. Helvetas is an '\n", + " 'independent organization for development based in '\n", + " 'Switzerland with affiliated organizations in '\n", + " 'Germany and the United States. Helvetas supports '\n", + " 'poor and disadvantaged people and communities in '\n", + " 'almost 40 developing and transitional countries in '\n", + " 'Africa, Asia, Latin America and Eastern Europe.\\n'\n", + " 'Together with our partners, Helvetas tackles '\n", + " 'global challenges at various levels: with projects '\n", + " 'on the ground, with expert advice, and by '\n", + " 'advocating for conducive framework conditions '\n", + " 'benefiting the poor. This triple commitment is '\n", + " 'empowering people and transforming lives. Helvetas '\n", + " 'follows a multi-stakeholder approach by linking '\n", + " 'civil society actors, governments and the private '\n", + " 'sector.\\n'\n", + " 'Helvetas is active in the following areas: water, '\n", + " 'food and climate, education, jobs and private '\n", + " 'sector development, governance, gender and social '\n", + " 'equity. Helvetas engages in emergency relief, '\n", + " 'reconstruction and rehabilitation. In addition to '\n", + " 'rural areas, Helvetas is increasingly involved in '\n", + " 'urban development and is focusing its work on '\n", + " 'young people.',\n", + " 'Geographic Focus': 'Eastern Europe, Asia, Africa and Latin '\n", + " 'America',\n", + " 'Mission': 'We support poor and disadvantaged people and '\n", + " 'communities in developing and transitional '\n", + " 'countries in their efforts to improve their '\n", + " 'living conditions.\\n'\n", + " 'Through development cooperation, we support '\n", + " 'people in improving their livelihoods themselves '\n", + " 'in a sustainable manner.\\n'\n", + " 'We promote equitable access to the resources and '\n", + " 'services necessary for life, and thus contribute '\n", + " 'to overcoming the root causes of poverty.\\n'\n", + " 'We uphold the protection and promotion of '\n", + " 'social, economic, political, environmental and '\n", + " 'cultural rights and responsibilities, and seek '\n", + " 'to ensure their practical implementation.\\n'\n", + " 'We support our partners in engaging in '\n", + " 'development policy issues.\\n'\n", + " 'We advocate for a coherent Swiss foreign and '\n", + " 'economic policy, responsive to the needs of '\n", + " 'people in developing and transition countries.\\n'\n", + " 'We accompany and support our partners on a '\n", + " 'long-term basis.',\n", + " 'Programme Areas': 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Food, Agriculture & Nutrition,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Peace & Conflict Resolution,\\n'\n", + " 'Socio-economic Development, Poverty'},\n", + " 'position': {'address': 'Helvetas Swiss Intercooperation, Weinbergstrasse '\n", + " '22a, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3786889,\n", + " 'lng': 8.544779000000002,\n", + " 'name': 'Helvetas Swiss Intercooperation (Hauptsitz)',\n", + " 'place_id': 'ChIJr5nzgaegmkcRFBVK87C2GJ8',\n", + " 'post_code': '8021',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Weinbergstrasse',\n", + " 'street_number': '22a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Human/Civil Rights',\n", + " 'Peace & Conflict Resolution',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.helvetas.org/'},\n", + " {'address': 'Fondation Bernheim rue des Bouchers, 53 1000 Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@fondationbernheim.be',\n", + " 'geo_locations': {'Europe (Western / General)': ['Belgium']},\n", + " 'id': 20003,\n", + " 'link': 'https://philea.eu/members/fondation-bernheim/',\n", + " 'name': 'Fondation Bernheim',\n", + " 'philea_info': {'About': 'Fondation Bernheim was created in 1974 by Emile '\n", + " 'Bernheim, who established L’Innovation department '\n", + " 'store in Brussels. He believed that the money '\n", + " 'earned during one’s professional life should go '\n", + " 'back to society, as that is where it came from. '\n", + " 'Emile Bernheim died in 1985. The foundation became '\n", + " 'operational in 1998.',\n", + " 'Geographic Focus': 'Belgium, Brussels Region',\n", + " 'Mission': 'To support economic and social issues; '\n", + " 'education; culture and research; and peace.',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Fondation Bernheim, Rue des Bouchers 53, 1000 '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8476462,\n", + " 'lng': 4.3551247,\n", + " 'name': 'Fondation Bernheim',\n", + " 'place_id': 'ChIJ0fWLfn_Ew0cRyW5kghihGo4',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue des Bouchers',\n", + " 'street_number': '53',\n", + " 'zoom': 20},\n", + " 'tags_focus': ['Education',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationbernheim.be'},\n", + " {'address': 'Built by Nature Singel 542 1017AZ Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Norway'],\n", + " 'Europe (Western / General)': ['European Union',\n", + " 'Switzerland',\n", + " 'United Kingdom']},\n", + " 'id': 20001,\n", + " 'link': 'https://philea.eu/members/built-by-nature/',\n", + " 'name': 'Built by Nature',\n", + " 'philea_info': {'About': 'Built by Nature is a network and grant-making fund '\n", + " 'dedicated to accelerating the timber building '\n", + " 'transformation in Europe. We support pioneering '\n", + " 'developers, architects and engineers, asset owners '\n", + " 'and managers, investors and insurers, city '\n", + " 'leaders, academics, researchers, non-profits and '\n", + " 'policymakers by connecting industry and city '\n", + " 'frontrunners, creating the networks and '\n", + " 'opportunities for sector-shaping coalitions, and '\n", + " 'knowledge sharing. We enable innovation and change '\n", + " 'by convening teams and funding solutions that '\n", + " 'highlight the innovation, city-scale projects and '\n", + " 'advocacy required, and amplify the success '\n", + " 'stories, case studies and knowledge generated by '\n", + " 'our networks.',\n", + " 'Geographic Focus': 'We are currently growing our network '\n", + " 'across the European Union, the UK '\n", + " '(United Kingdom), Switzerland, and '\n", + " 'Norway. We are constantly reviewing our '\n", + " 'strategy and will be looking to expand '\n", + " 'our scope in the future',\n", + " 'Mission': 'Built by Nature’s mission is to accelerate the '\n", + " 'use of sustainable and other biobased materials '\n", + " 'in the built environment',\n", + " 'Programme Areas': 'Environment/Climate (Networks, Knowledge '\n", + " '& Innovation, Demonstrations, Strategic '\n", + " 'Communications, Policy, and Grant '\n", + " 'making)'},\n", + " 'position': {'address': 'Built by Nature, Singel 542, 1017 AZ Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3665859,\n", + " 'lng': 4.8921853,\n", + " 'name': 'Built by Nature',\n", + " 'place_id': 'ChIJoy0K398JxkcR4vQ7fDg_usU',\n", + " 'post_code': '1017 AZ',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Singel',\n", + " 'street_number': '542',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://builtbn.org/'},\n", + " {'address': '32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Luxembourg']},\n", + " 'id': 19999,\n", + " 'link': 'https://philea.eu/members/andre-losch-fondation/',\n", + " 'name': 'André Losch Fondation',\n", + " 'philea_info': {'About': 'The André Losch Foundation provides independent '\n", + " 'and impartial support for projects dedicated to '\n", + " 'young people in the Grand Duchy, in the fields of '\n", + " 'education, social inclusion and health. Its aim is '\n", + " 'to contribute to the development of a fairer, more '\n", + " 'sustainable and cohesive society.\\n'\n", + " 'The Foundation believes in the importance of '\n", + " 'long-term collaboration with its partners in order '\n", + " 'to make the most of everyone’s skills and '\n", + " 'resources. Our aim is to support projects over the '\n", + " 'long term, to establish a complementary '\n", + " 'relationship and to move forward together. In this '\n", + " 'context, we favour long-term partnerships with a '\n", + " 'limited number of institutions. The relationship '\n", + " 'of trust that this creates makes it easier to '\n", + " 'monitor the actions supported and measure their '\n", + " 'final impact.',\n", + " 'Geographic Focus': 'Luxembourg',\n", + " 'Mission': 'Helping to create a fairer, more sustainable and '\n", + " 'inclusive society for young people in '\n", + " 'Luxembourg.',\n", + " 'Programme Areas': 'EDUCATION : fostering critical thinking '\n", + " 'and initiative through formal and '\n", + " 'non-formal education, on the themes of '\n", + " 'learning about science, sustainable '\n", + " 'development and global citizenship.\\n'\n", + " 'SOCIAL INCLUSION : encouraging the '\n", + " 'socio-professional inclusion of '\n", + " 'vulnerable young people\\n'\n", + " 'HEALTH : to bring relief to children and '\n", + " 'young people affected by illness or '\n", + " 'disability, and to their families, by '\n", + " 'making their daily lives easier, '\n", + " 'improving care and support, and '\n", + " 'providing moments of joy and relief.'},\n", + " 'position': {'address': '32/34 Bd Grande-Duchesse Charlotte, 1330 Ville '\n", + " 'Haute Luxembourg',\n", + " 'city': 'Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.6119323,\n", + " 'lng': 6.118839499999999,\n", + " 'name': '32/34 Bd Grande-Duchesse Charlotte',\n", + " 'place_id': 'ChIJq5jGyNROlUcRDUrKS2jaj94',\n", + " 'post_code': '1330',\n", + " 'state': 'Luxembourg',\n", + " 'street_name': 'Boulevard Grande-Duchesse Charlotte',\n", + " 'street_name_short': 'Bd Grande-Duchesse Charlotte',\n", + " 'street_number': '32/34',\n", + " 'zoom': 13},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.loschfondation.lu/domaines-intervention/recherche-scientifique/'},\n", + " {'address': '2 Rond-Point Emile Dewoitine, 31700 Blagnac, France',\n", + " 'country': 'France',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 19998,\n", + " 'link': 'https://philea.eu/members/airbus-foundation/',\n", + " 'name': 'Airbus Foundation',\n", + " 'philea_info': {'About': 'The Airbus Foundation provides access to Airbus’ '\n", + " 'unique portfolio of high-tech products, services '\n", + " 'and know-how to help address some of the world’s '\n", + " 'most pressing problems, contributing to '\n", + " 'sustainable solutions for a safe and united world. '\n", + " 'Humanitarian response, Youth development, '\n", + " 'Environment (climate change & nature conservation) '\n", + " 'focus.',\n", + " 'Mission': 'The Airbus Foundation provides access to Airbus’ '\n", + " 'unique portfolio of high-tech products, services '\n", + " 'and know-how to help address some of the world’s '\n", + " 'most pressing problems, contributing to '\n", + " 'sustainable solutions for a safe and united '\n", + " 'world. Humanitarian response, Youth development, '\n", + " 'Environment (climate change & nature '\n", + " 'conservation) focus.',\n", + " 'Programme Areas': 'Humanitarian Response (Helping the work '\n", + " 'of disaster relief and emergency '\n", + " 'responders through use of Airbus '\n", + " 'products, services and innovation.); '\n", + " 'Youth Development (Supporting those who '\n", + " 'inspire the next generation with digital '\n", + " 'STEM content, through the Airbus '\n", + " 'Foundation Discovery Space.) Environment '\n", + " '(Expanding the Foundation’s scope to '\n", + " 'partner with NGOs using our products & '\n", + " 'services that are able to support their '\n", + " 'climate change mitigation and nature '\n", + " 'conservation actions.)'},\n", + " 'position': {'address': '2 Rond-Point Emile Dewoitine, 31700 Blagnac, France',\n", + " 'city': 'Blagnac',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 43.621905,\n", + " 'lng': 1.3854504,\n", + " 'name': '2 Rdpt Emile Dewoitine',\n", + " 'place_id': 'ChIJSR5B1be6rhIRYg-1AuSxoLc',\n", + " 'post_code': '31700',\n", + " 'state': 'Occitanie',\n", + " 'street_name': 'Rond-Point Emile Dewoitine',\n", + " 'street_name_short': 'Rdpt Emile Dewoitine',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.airbus.com/en/sustainability/airbus-foundation'},\n", + " {'address': 'Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, '\n", + " 'VA United States',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 19431,\n", + " 'link': 'https://philea.eu/members/ashoka/',\n", + " 'name': 'Ashoka',\n", + " 'philea_info': {'About': 'Ashoka was founded 1981 by Bill Drayton in the US. '\n", + " 'Subsequently, the Ashoka network has grown to '\n", + " 'support leading social entrepreneurs (Ashoka '\n", + " 'Fellows) in 70 countries, including 13 in Europe. '\n", + " 'All country offices are fully owned by Ashoka '\n", + " 'Global. Ashoka is a geographically decentralized '\n", + " 'and strategically integrated organization hiring '\n", + " 'only entrepreneurs as leaders.',\n", + " 'Geographic Focus': 'Global; 13 offices in Europe, Germany '\n", + " 'the largest.',\n", + " 'Mission': 'Ashoka builds and cultivates a community of '\n", + " 'Fellows, Young Changemakers, Changemaker '\n", + " 'Institutions, and beyond who see that the world '\n", + " 'now requires everyone to be a changemaker – a '\n", + " 'person that sees themselves as capable of '\n", + " 'creating large-scale, positive change. Together, '\n", + " 'amidst the exponential growth of a new '\n", + " 'inequality in changemaking at a worldwide scale, '\n", + " 'we mobilize (and accelerate) a movement to build '\n", + " 'an “Everyone a Changemaker” world where all '\n", + " 'people have the right and ability to co-lead '\n", + " 'solutions that transform their societies for the '\n", + " 'better.',\n", + " 'Programme Areas': 'Main programme areas:\\n'\n", + " 'Animal-Related,\\n'\n", + " 'Citizenship, Social Justice & Public '\n", + " 'Affairs,\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector,\\n'\n", + " 'Education,\\n'\n", + " 'Employment/Workforce,\\n'\n", + " 'Environment/Climate,\\n'\n", + " 'Food, Agriculture & Nutrition,\\n'\n", + " 'Health,\\n'\n", + " 'Human/Civil Rights,\\n'\n", + " 'Humanitarian & Disaster Relief,\\n'\n", + " 'Peace & Conflict Resolution,\\n'\n", + " 'Recreation, Sport & Well-being,\\n'\n", + " 'Social/Human Services,\\n'\n", + " 'Socio-economic Development, Poverty,\\n'\n", + " 'Youth/Children Development Our '\n", + " 'changemaker community consists of 4,000+ '\n", + " 'Fellows, 100+ Young Changemakers, 250+ '\n", + " 'change institutions, and 300+ partners '\n", + " 'across more than 95 countries. Together, '\n", + " 'we form a strong, diverse and vibrant '\n", + " 'ecosystem of change agents collaborating '\n", + " 'and co-leading to positively transform '\n", + " 'societies and cultures around the world. '\n", + " 'Ashoka has pioneered the field of social '\n", + " 'entrepreneurship, identifying and '\n", + " 'supporting the world’s leading social '\n", + " 'entrepreneurs since 1980. Social '\n", + " 'entrepreneurs are individuals with '\n", + " 'innovative solutions to society’s most '\n", + " 'pressing social, cultural, and '\n", + " 'environmental challenges. Social '\n", + " 'entrepreneurs are ambitious and '\n", + " 'persistent — tackling major issues and '\n", + " 'offering new ideas for systems-level '\n", + " 'change. They model changemaking '\n", + " 'behavior, and catalyze organizations and '\n", + " 'movements where everyone can be '\n", + " 'changemaker. Ashoka Fellows are social '\n", + " 'entrepreneurs that directly impact the '\n", + " 'lives of millions of people across the '\n", + " 'globe. They provide examples, ideas, and '\n", + " 'insights that can serve as a roadmap in '\n", + " 'the new “everyone a changemaker” world. '\n", + " 'By continuing to develop our expansive '\n", + " 'network of Fellows — providing '\n", + " 'financial, knowledge, and logistical '\n", + " 'support to more than 3,600 change '\n", + " 'leaders in 90+ countries — Ashoka works '\n", + " 'to share the wisdom of leading social '\n", + " 'entrepreneurs with a global audience. '\n", + " 'Ashoka social entrepreneurs serve as '\n", + " 'role models and provide the how-to’s '\n", + " 'that enable individuals, organizations, '\n", + " 'and whole societies to flourish in a '\n", + " 'world of rapid change. For more than 35 '\n", + " 'years, Ashoka has built and nurtured the '\n", + " 'largest network of leading social '\n", + " 'entrepreneurs in the world. After a '\n", + " 'rigorous selection process, they are '\n", + " 'introduced to a life-long fellowship, '\n", + " 'where every member is committed to '\n", + " 'championing new patterns of social good. '\n", + " 'We encourage Ashoka Fellows to take '\n", + " 'ownership of the network and we partner '\n", + " 'with them to co-create Ashoka’s vision '\n", + " 'of an Everyone a Changemaker world. '\n", + " 'Powered by Ashoka, Next Now identifies, '\n", + " 'supports and lifts up these examples, '\n", + " 'and the changemakers behind them. From a '\n", + " 'bird’s eye perspective, we see patterns '\n", + " 'and frontiers of innovation that show a '\n", + " 'way to a better future. We weave a '\n", + " 'community of innovators committed to '\n", + " 'building it, and share our findings and '\n", + " 'insights with the world. Next Now has '\n", + " 'started to identify these patterns in '\n", + " 'the following fields: The New Longevity, '\n", + " 'Gender, Planet & Climate, Tech & '\n", + " 'Humanity. Ashoka Changemakers is '\n", + " 'building a global movement where anyone, '\n", + " 'anywhere, can take action to solve a '\n", + " 'social problem in in their community. We '\n", + " 'work to build this movement by '\n", + " 'supporting social entrepreneurs, '\n", + " 'innovators, business leaders, policy '\n", + " 'makers, and activists who are '\n", + " 'changemaking, by delivering '\n", + " 'ground-breaking analysis, by '\n", + " 'accelerating entrepreneurship, and '\n", + " 'creating strong partnerships that will '\n", + " 'drive the movement forward.'},\n", + " 'position': {'address': 'Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 '\n", + " 'Arlington, VA United States',\n", + " 'city': 'Arlington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.8910142,\n", + " 'lng': -77.0860842,\n", + " 'place_id': 'EjIyMjAwIFdpbHNvbiBCbHZkIDEwMiAzMTMsIEFybGluZ3RvbiwgVkEgMjIyMDEsIFVTQSIjGiEKFgoUChIJB2wlOAy3t4kRtpoV6mrgiecSBzEwMiAzMTM',\n", + " 'post_code': '22201',\n", + " 'state': 'Virginia',\n", + " 'state_short': 'VA',\n", + " 'street_name': 'Wilson Boulevard',\n", + " 'street_name_short': 'Wilson Blvd',\n", + " 'street_number': '2200',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health',\n", + " 'Human/Civil Rights',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Peace & Conflict Resolution',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ashoka.org'},\n", + " {'address': 'Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 '\n", + " '95977 Roissy France',\n", + " 'country': '',\n", + " 'email': 'fondation@raja.fr',\n", + " 'geo_locations': {'Europe (Western / General)': ['France'],\n", + " 'Worldwide': ['Worldwide']},\n", + " 'id': 19430,\n", + " 'link': 'https://philea.eu/members/fondation-raja-daniele-marcovici/',\n", + " 'name': 'Fondation RAJA-Danièle Marcovici',\n", + " 'philea_info': {'About': 'The Foundation is the oldest foundation created in '\n", + " 'France in favor of women. We are active in France '\n", + " 'and around the world, and we finance actions '\n", + " 'committed to the fight against violence against '\n", + " 'women, access to education, empowerment and '\n", + " 'integration of women. For 18 years, we have been '\n", + " 'able to mobilize a budget of more than 15 million '\n", + " 'euros, under the presidency of Danièle '\n", + " 'Kapel-Marcovici, its President. Danièle '\n", + " 'Kapel-Marcovici is also the CEO of the RAJA Group, '\n", + " 'which is present in 19 European countries, with 26 '\n", + " 'subsidiaries.',\n", + " 'Geographic Focus': '40% in France, 60% in other countries '\n", + " 'worldwide',\n", + " 'Mission': 'Conscious of the social and environmental role '\n", + " 'of the company, Danièle Kapel-Marcovici, '\n", + " 'President of the RAJA Group, created the '\n", + " 'RAJA-Danièle Marcovici Foundation in 2006. To '\n", + " 'promote the empowerment of women and improve '\n", + " 'their living conditions, the Foundation develops '\n", + " 'partnerships with associations working in France '\n", + " 'and abroad, provides financial support for '\n", + " 'projects and conducts awareness and information '\n", + " 'campaigns for its partners and the general '\n", + " 'public.',\n", + " 'Programme Areas': 'Women’s rights and gender equality'},\n", + " 'position': {'address': 'Fondation RAJA-Danièle Marcovici 16 Rue de l’étang '\n", + " 'Paris Nord 2 95977 Roissy France',\n", + " 'city': 'Roissy-en-France',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 49.00363,\n", + " 'lng': 2.516978,\n", + " 'place_id': 'ChIJA3Nv1oQV5kcRrYuF0xf2gzU',\n", + " 'post_code': '95700',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Human/Civil Rights'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondation-raja-marcovici.com/accueil.html'},\n", + " {'address': 'Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany',\n", + " 'country': '',\n", + " 'email': 'kontakt@schoepflin-stiftung.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany']},\n", + " 'id': 19429,\n", + " 'link': 'https://philea.eu/members/schopflin-stiftung/',\n", + " 'name': 'Schöpflin Stiftung',\n", + " 'philea_info': {'About': 'The Schoepflin Foundation is an independent and '\n", + " 'non-profit foundation based in Lörrach, Germany. '\n", + " 'Besides running our own in-house projects and '\n", + " 'programs we also provide grants to external '\n", + " 'initiatives and organizations. In our in-house '\n", + " 'facilities in Lörrach, we use innovative solutions '\n", + " 'and formats to empower children and young people; '\n", + " 'we offer sociopolitical (thought) impetus; and we '\n", + " 'test out forms of participation. As a '\n", + " 'supra-regional funding foundation, we use social '\n", + " 'venture capital to facilitate experiments and '\n", + " 'ensure their dissemination in civil society.',\n", + " 'Geographic Focus': 'Europe, Germany',\n", + " 'Mission': 'We invest in courageous people and bold ideas – '\n", + " 'for critical awareness, a vibrant democracy and '\n", + " 'a diverse society. Now and in the future.',\n", + " 'Programme Areas': 'Our main expertise are in the fields of '\n", + " 'education, of addiction prevention, of '\n", + " 'culture and the arts, of democracy, of '\n", + " 'media and consumer protection. Our key '\n", + " 'methodological elements are social '\n", + " 'venture capital and capacity building.'},\n", + " 'position': {'address': 'Schoepflin Stiftung Industriestraße 2 D-79541 '\n", + " 'Lörrach Germany',\n", + " 'city': 'Lörrach',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 47.6352322,\n", + " 'lng': 7.6800016,\n", + " 'place_id': 'ChIJId3VtESwkUcR8DfHFU8WNUg',\n", + " 'post_code': '79541',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Industriestraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.schoepflin-stiftung.de/'},\n", + " {'address': 'Quäker-Hilfe Stiftung Rosenstraße 2 32257 Bünde Germany',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 19428,\n", + " 'link': 'https://philea.eu/members/quaker-hilfe-stiftung/',\n", + " 'name': 'Quäker-Hilfe Stiftung',\n", + " 'philea_info': {'About': 'The Quaker Aid Foundation (QHS) is part of a '\n", + " 'worldwide network of Quaker philanthropies and '\n", + " 'organizations dedicated to social justice, world '\n", + " 'peace, and humanitarian aid. Today, QHS and its '\n", + " 'partners support projects in more than 20 '\n", + " 'countries. With different focal points, all '\n", + " 'projects aim to advance lasting peace and justice '\n", + " 'in the world.\\n'\n", + " 'The Quaker Aid Foundation is one of very few '\n", + " 'philanthropies that directly supports programs '\n", + " 'that are carried out or supported by Quaker '\n", + " 'organizations and Meetings. Supported projects and '\n", + " 'activities my contribute to the objectives of '\n", + " 'peace and justice.',\n", + " 'Mission': 'The Quaker Aid Foundation (QHS) is part of a '\n", + " 'worldwide network of Quaker philanthropies and '\n", + " 'organizations dedicated to social justice, world '\n", + " 'peace, and humanitarian aid. Today, QHS and its '\n", + " 'partners support projects in more than 20 '\n", + " 'countries. With different focal points, all '\n", + " 'projects aim to advance lasting peace and '\n", + " 'justice in the world.\\n'\n", + " 'The Quaker Aid Foundation is one of very few '\n", + " 'philanthropies that directly supports programs '\n", + " 'that are carried out or supported by Quaker '\n", + " 'organizations and Meetings. Supported projects '\n", + " 'and activities my contribute to the objectives '\n", + " 'of peace and justice.',\n", + " 'Programme Areas': '1. Promoting an international spirit, '\n", + " 'tolerance in all areas of culture and '\n", + " 'the idea of international understanding. '\n", + " 'This purpose is realized through '\n", + " 'reconciliation and peace work, also '\n", + " 'between states or hostile groups, '\n", + " 'organizations or individuals.\\n'\n", + " '2. Promoting or caring for the '\n", + " 'politically, racially or religiously '\n", + " 'persecuted, for refugees, displaced '\n", + " 'persons, war victims, war survivors, war '\n", + " 'and physically disabled and blind '\n", + " 'persons, prisoners of war who are still '\n", + " 'abroad and returnees and by promoting '\n", + " 'old-age welfare. This purpose is pursued '\n", + " 'in particular abroad and in crisis '\n", + " 'areas.\\n'\n", + " '3. Promoting the welfare of prisoners '\n", + " 'and former prisoners. This purpose is '\n", + " 'pursued at home and abroad.\\n'\n", + " '4. Conducting public relations work, in '\n", + " 'order to raise awareness of the causes '\n", + " 'of poverty and need worldwide and to '\n", + " 'strengthen the social responsibility and '\n", + " 'willingness to help of citizens in the '\n", + " 'Federal Republic of Germany. In '\n", + " 'addition, a better understanding of the\\n'\n", + " 'living conditions of people, primarily '\n", + " 'in developing countries, international '\n", + " 'understanding and tolerance are '\n", + " 'promoted.'},\n", + " 'position': {'address': 'Quäker-Hilfe Stiftung, Rosenstraße 2, 32257 Bünde, '\n", + " 'Germany',\n", + " 'city': 'Bünde',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.2082519,\n", + " 'lng': 8.568406800000002,\n", + " 'name': 'Quäker-Hilfe Stiftung',\n", + " 'place_id': 'ChIJ31AA28JRqEcRjq81O0GBmXo',\n", + " 'post_code': '32257',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Rosenstraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Peace & Conflict Resolution',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.quaeker-stiftung.de'},\n", + " {'address': 'Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein',\n", + " 'country': '',\n", + " 'email': 'contact@interogofoundation.com',\n", + " 'geo_locations': {},\n", + " 'id': 19427,\n", + " 'link': 'https://philea.eu/members/interogo-foundation/',\n", + " 'name': 'Interogo Foundation',\n", + " 'philea_info': {'About': 'Interogo Foundation focuses on governing the '\n", + " 'investment business and providing the financial '\n", + " 'reserves required to secure independence and '\n", + " 'longevity of the IKEA Concept. Interogo Foundation '\n", + " 'shall, through its investment business, secure a '\n", + " 'financial reserve for rainy days for when the IKEA '\n", + " 'Concept at some time in the future were to face '\n", + " 'very serious challenges.',\n", + " 'Mission': 'The purpose of Interogo Foundation is to secure '\n", + " 'the independence and the longevity of the IKEA '\n", + " 'Concept and the financial reserves needed to '\n", + " 'ensure this.'},\n", + " 'position': {'address': 'Interogo Foundation Kirchstrasse 79 9490 Vaduz '\n", + " 'Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.1364154,\n", + " 'lng': 9.5137852,\n", + " 'place_id': 'ChIJeUmgUGExm0cR0NhlTwn4z_o',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Kirchstrasse',\n", + " 'street_number': '79',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.interogofoundation.com/'},\n", + " {'address': 'Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari '\n", + " 'Italy',\n", + " 'country': '',\n", + " 'email': 'fondazione@fondazionedisardegna.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 19426,\n", + " 'link': 'https://philea.eu/members/fondazione-di-sardegna-2/',\n", + " 'name': 'Fondazione di Sardegna',\n", + " 'philea_info': {'About': 'In pursuing its objectives, the Foundation '\n", + " 'directly supports infrastructure development and '\n", + " 'management, moreover they assist the production of '\n", + " 'services that could improve the quality of life of '\n", + " 'his community, the endogenous growth of the area '\n", + " 'in all its aspects and the settlement of both '\n", + " 'economic and social activities.',\n", + " 'Geographic Focus': 'Sardinia',\n", + " 'Mission': 'Under the principles of self-organization and '\n", + " 'subsidiarity, the foundation promotes social and '\n", + " 'economic development of Sardinia by financing '\n", + " 'both third parties’ initiatives and its own '\n", + " 'initiatives and projects mainly within '\n", + " 'Sardinia’s geographical boundaries.',\n", + " 'Programme Areas': 'The foundation supports initiatives in '\n", + " 'the following areas: • Scientific and '\n", + " 'technological research\\n'\n", + " '• Public health\\n'\n", + " '• Art and cultural heritage\\n'\n", + " '• Philanthropy, charity and '\n", + " 'volunteering'},\n", + " 'position': {'address': 'Fondazione Banco di Sardegna Via Carlo Alberto 7 '\n", + " '07100 Sassari Italy',\n", + " 'city': 'Sassari',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 40.7246173,\n", + " 'lng': 8.563093799999999,\n", + " 'place_id': 'ChIJGfsi5fxj3BIRPIs5rQ61EwY',\n", + " 'post_code': '07100',\n", + " 'state': 'Sardegna',\n", + " 'state_short': 'SS',\n", + " 'street_name': 'Via Carlo Alberto',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionedisardegna.it/'},\n", + " {'address': 'Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 '\n", + " 'Geneva 3 Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Switzerland']},\n", + " 'id': 19425,\n", + " 'link': 'https://philea.eu/members/fondation-salvia/',\n", + " 'name': 'Fondation Salvia',\n", + " 'philea_info': {'About': '',\n", + " 'Geographic Focus': 'Switzerland and Europe, including '\n", + " 'European neighbourhoods',\n", + " 'Mission': 'To support the development of better protection '\n", + " 'for the global environment based on the study of '\n", + " 'nature using a holistic approach (scientific, '\n", + " 'systemic and qualitative); to support the '\n", + " 'education of young people from the same holistic '\n", + " 'perspective, with the aim of encouraging the '\n", + " 'full development of all the child’s and '\n", + " 'student’s capacities – intellectual, emotional '\n", + " 'and social – by promoting proven alternative '\n", + " 'teaching methods; to encourage studies on the '\n", + " 'phenomenon of consciousness and to support '\n", + " 'initiatives promoting the evolution of '\n", + " 'consciousness and a better understanding of '\n", + " 'personal and transpersonal psychology; to '\n", + " 'encourage improvements in the democratic '\n", + " 'organisation of society and in electoral and '\n", + " 'parliamentary systems that promote the common '\n", + " 'good, inter alia by promoting direct democracy '\n", + " 'and studying ways of improving the various '\n", + " 'electoral systems, and to support and promote '\n", + " 'the protection of animals, in particular but not '\n", + " 'exclusively with the aim of combating cruelty to '\n", + " 'animals that may result from various practices, '\n", + " 'experiments and/or manipulations likely to cause '\n", + " 'suffering.',\n", + " 'Programme Areas': 'Animal-Related\\n'\n", + " 'Citizenship, Social Justice & Public '\n", + " 'Affairs\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector\\n'\n", + " 'Education\\n'\n", + " 'Environment/Climate\\n'\n", + " 'Food, Agriculture & Nutrition\\n'\n", + " 'Human/Civil Rights\\n'\n", + " 'Sciences & Research\\n'\n", + " 'Social/Human Services\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Fondation Salvia 1, Place de St. Gervais case '\n", + " 'postale 5017 1211 Geneva 3 Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2057902,\n", + " 'lng': 6.143098999999999,\n", + " 'place_id': 'ChIJJfuPPChljEcRiDAUJoXWCho',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Saint-Gervais',\n", + " 'street_name_short': 'Pl. de Saint-Gervais',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'The Partnering Initiative 21B Park End Steet OX1 1HU Oxford '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@tpiglobal.org',\n", + " 'geo_locations': {},\n", + " 'id': 19064,\n", + " 'link': 'https://philea.eu/members/the-partnering-initiative/',\n", + " 'name': 'The Partnering Initiative',\n", + " 'philea_info': {'About': 'The Partnering Initiative (TPI) was initiated in '\n", + " '2003 with the passionate belief that only through '\n", + " 'systematic, effective collaboration among '\n", + " 'business, government, NGOs, the UN, foundations '\n", + " 'and others can the world achieve a collective, '\n", + " 'all-of-society vision of thriving societies '\n", + " 'underpinned by a prosperous economy and a healthy '\n", + " 'environment.',\n", + " 'Mission': 'Our mission is to unleash the power of '\n", + " 'partnership by systematising and '\n", + " 'professionalising the practice of collaboration '\n", + " 'and building the capabilities and supportive '\n", + " 'infrastructure that allow partnering to thrive.',\n", + " 'Programme Areas': 'Through our programmes of action '\n", + " 'research, we systematise the essential '\n", + " 'processes of partnering and develop '\n", + " 'reference standards and practical tools '\n", + " 'to help all sectors identify new '\n", + " 'opportunities, learn how to collaborate '\n", + " 'and implement effective partnerships. '\n", + " 'Our training and capacity-building '\n", + " 'programmes promote new standards of '\n", + " 'professional partnering practice and '\n", + " 'build the skills of practitioners around '\n", + " 'the world. The strategic advice and '\n", + " 'support we provide to leading '\n", + " 'international companies, development '\n", + " 'agencies, foundations, governments, and '\n", + " 'international NGOs helps them rethink '\n", + " 'and adjust their approaches to become '\n", + " '‘fit for partnering’ and fully harness '\n", + " 'the power of partnership to support '\n", + " 'their missions. The services we provide '\n", + " 'directly to partnerships help a wide '\n", + " 'range of collaborations to transform '\n", + " 'into strong, efficient and highly '\n", + " 'effective mechanisms that are yielding '\n", + " 'benefits well beyond their original '\n", + " 'objectives.'},\n", + " 'position': {'address': 'The Partnering Initiative, 21B Park End Street, '\n", + " 'Oxford OX1 1HU, United Kingdom',\n", + " 'city': 'Oxford',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.75251379999999,\n", + " 'lng': -1.2685284,\n", + " 'name': 'The Partnering Initiative',\n", + " 'place_id': 'ChIJ95fJfE7BdkgR1A3osMbUerY',\n", + " 'post_code': 'OX1 1HU',\n", + " 'state': 'England',\n", + " 'street_name': 'Park End Street',\n", + " 'street_name_short': 'Park End St',\n", + " 'street_number': '21B',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Sciences & Research'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://tpiglobal.org/'},\n", + " {'address': 'Lloyd’s Register Foundation 71 Fenchurch Street EC3M 4BS London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 19063,\n", + " 'link': 'https://philea.eu/members/lloyds-register-foundation/',\n", + " 'name': 'Lloyd’s Register Foundation',\n", + " 'philea_info': {'About': 'Lloyd’s Register Foundation is an independent '\n", + " 'global charity with a unique structure and an '\n", + " 'important mission: engineering a safer world.* We '\n", + " 'reduce risk and enhance the safety of the critical '\n", + " 'infrastructure that modern society relies upon in '\n", + " 'areas such as energy, transport and food. We do '\n", + " 'this by supporting high quality research, '\n", + " 'accelerating technology to application and through '\n", + " 'education and public outreach.* Our unique '\n", + " 'structure comes from the fact that we own a '\n", + " 'significant trading company, Lloyd’s Register '\n", + " 'Group (LRG). We share the same mission and work '\n", + " 'together to make the world a safer place.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'The foundation aims to secure for the benefit of '\n", + " 'the community high technical standards of '\n", + " 'design, manufacture, construction, maintenance, '\n", + " 'operation and performance for the purpose of '\n", + " 'enhancing the safety of life and property at sea '\n", + " 'and on land and in the air.\\n'\n", + " 'The foundation also pursue the advancement of '\n", + " 'public education including within the '\n", + " 'transportation industries and any other '\n", + " 'engineering and technological disciplines The '\n", + " 'Foundation’s purpose is to provide public '\n", + " 'benefit in the following specific areas, which '\n", + " 'are listed in its Articles of Association:* (a) '\n", + " 'to secure for the benefit of the community high '\n", + " 'technical standards of design, manufacture, '\n", + " 'construction, maintenance, operation and '\n", + " 'performance, for the purpose of enhancing the '\n", + " 'safety of life and property at sea and on land '\n", + " 'and in the air; or* (b) the advancement of '\n", + " 'public education including within the '\n", + " 'transportation industries and any other '\n", + " 'engineering and technological disciplines.',\n", + " 'Programme Areas': 'Safety, Ocean Economy, Maritime and '\n", + " 'Infrastructure'},\n", + " 'position': {'address': \"Lloyd's Register Foundation, 71 Fenchurch Street, \"\n", + " 'London EC3M 4BS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51243349999999,\n", + " 'lng': -0.07900689999999998,\n", + " 'name': \"Lloyd's Register Foundation\",\n", + " 'place_id': 'ChIJnepqXKgDdkgRqbSHjgmq5PE',\n", + " 'post_code': 'EC3M 4BS',\n", + " 'state': 'England',\n", + " 'street_name': 'Fenchurch Street',\n", + " 'street_name_short': 'Fenchurch St',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.lrfoundation.org.uk/'},\n", + " {'address': 'Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels '\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 19062,\n", + " 'link': 'https://philea.eu/members/africa-europe-foundation/',\n", + " 'name': 'Africa-Europe Foundation',\n", + " 'philea_info': {'About': 'The Foundation’s aim is to become the platform of '\n", + " 'platforms for the future of the Africa-Europe '\n", + " 'Partnership. The Africa-Europe Foundation’s '\n", + " 'ambition is to become a network of networks to '\n", + " 'catalyse partnership between the two continents. '\n", + " 'Our purpose is to bring together new voices, fresh '\n", + " 'thinking, and to reinvigorate the partnership '\n", + " 'though our growing network of like-minded '\n", + " 'stakeholder and partners.',\n", + " 'Geographic Focus': 'Africa and Europe',\n", + " 'Mission': 'The purpose of the Africa-Europe Foundation is '\n", + " 'to facilitate multi-stakeholder dialogue, '\n", + " 'catalyse partnerships and unlock new '\n", + " 'opportunities that can transform Africa-Europe '\n", + " 'relations into action.',\n", + " 'Programme Areas': 'Education,\\n'\n", + " 'Employment/Workforce\\n'\n", + " 'Environment/Climate\\n'\n", + " 'Food, Agriculture & Nutrition\\n'\n", + " 'Health\\n'\n", + " 'Peace & Conflict Resolution\\n'\n", + " 'Sciences & Research\\n'\n", + " 'Youth/Children Development\\n'\n", + " 'Digital Transformation, and Migration '\n", + " 'and Mobility'},\n", + " 'position': {'address': 'Africa-Europe Foundation Square de Meeûs 5-6 1000 '\n", + " 'Brussels Belgium',\n", + " 'city': 'Brussels',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8476424,\n", + " 'lng': 4.3571696,\n", + " 'place_id': 'ChIJZ2jHc-2kw0cRpwJzeGY6i8E',\n", + " 'state': 'Brussels',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health',\n", + " 'Peace & Conflict Resolution',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.africaeuropefoundation.org/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 '\n", + " 'Fologno Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecarifol.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 19061,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-foligno/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Foligno',\n", + " 'philea_info': {'About': 'Nonprofit activities for the purpose of economic '\n", + " 'development and social benefit.',\n", + " 'Geographic Focus': 'Italy and Europe',\n", + " 'Mission': 'Nonprofit activities for the purpose of economic '\n", + " 'development and social benefit.',\n", + " 'Programme Areas': 'Arts & Culture\\n'\n", + " 'Civil society, Voluntarism & Non-Profit '\n", + " 'Sector\\n'\n", + " 'Education\\n'\n", + " 'Food, Agriculture & Nutrition\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Foligno Corso '\n", + " 'Cavour 36 06034 Fologno Italy',\n", + " 'city': 'Foligno',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.9547732,\n", + " 'lng': 12.7051368,\n", + " 'place_id': 'ChIJT8G4q9uFLhMRdNVFwIORbzU',\n", + " 'post_code': '06034',\n", + " 'state': 'Umbria',\n", + " 'state_short': 'PG',\n", + " 'street_name': 'Corso Camillo Benso Conte di Cavour',\n", + " 'street_number': '36',\n", + " 'zoom': 8},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionecarifol.it/'},\n", + " {'address': 'Aids Fonds Condensatorweg 54 1014 AX Amsterdam Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe', 'Netherlands'],\n", + " 'Latin America & Caribbean': ['Caribbean']},\n", + " 'id': 18539,\n", + " 'link': 'https://philea.eu/members/aidsfonds/',\n", + " 'name': 'Aidsfonds',\n", + " 'philea_info': {'About': 'Every day Aidsfonds works all over the world to '\n", + " 'end AIDS before 2030. Wherever we work, we know we '\n", + " 'must accelerate, focus and boost our efforts now '\n", + " 'in order to achieve this ultimate goal. We have '\n", + " 'the knowledge to end the epidemic. What is lacking '\n", + " 'is funding, awareness and political will to stop '\n", + " 'the epidemic in its tracks for good. For years, '\n", + " 'Aidsfonds has been playing a pioneering role in '\n", + " 'focusing the HIV/AIDS response on those population '\n", + " 'groups who are affected the most by the HIV '\n", + " 'epidemic due to stigma and discrimination. We make '\n", + " 'a stand against injustice. We tackle hurdles that '\n", + " 'others cannot attempt to overcome.\\n'\n", + " 'We put topics on the agenda that others will not '\n", + " 'discuss and we give support to people who others '\n", + " 'dare not support. We put communities first!',\n", + " 'Geographic Focus': 'The Netherlands, Caribbean part of the '\n", + " 'Kingdom of the Netherlands, Africa, '\n", + " 'Eastern Europe and Central Asia',\n", + " 'Mission': 'We strive for a world where there are no longer '\n", + " 'any deaths from AIDS and where people enjoy good '\n", + " 'sexual health. A world in which everyone can '\n", + " 'love freely and without fear. We do this by '\n", + " 'working together with the people who are hit '\n", + " 'hardest by HIV, STIs, discrimination and '\n", + " 'exclusion. We strengthen their voice and support '\n", + " 'them with information, knowledge and funding. '\n", + " 'For all that is love.',\n", + " 'Programme Areas': '– Health\\n'\n", + " '– Human/Civil Rights\\n'\n", + " '– Socio-economic Development\\n'\n", + " '– Poverty\\n'\n", + " '– Youth/Children Development'},\n", + " 'position': {'address': 'Aidsfonds - Soa Aids Nederland, Condensatorweg 54, '\n", + " '1014 AX Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.38975629999999,\n", + " 'lng': 4.8458377,\n", + " 'name': 'Aidsfonds - Soa Aids Nederland',\n", + " 'place_id': 'ChIJzWIc8MIJxkcRp4cGS8EN6_U',\n", + " 'post_code': '1014 AX',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Condensatorweg',\n", + " 'street_number': '54',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health',\n", + " 'Human/Civil Rights',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://aidsfonds.org/'},\n", + " {'address': 'The Center for Effective Philanthropy 675 Massachusetts Avenue, '\n", + " 'Floor 7 MA 02139 Cambridge United States',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 18478,\n", + " 'link': 'https://philea.eu/members/the-center-for-effective-philanthropy/',\n", + " 'name': 'The Center for Effective Philanthropy',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'The Center for Effective Philanthropy 675 '\n", + " 'Massachusetts Avenue, Floor 7 MA 02139 Cambridge '\n", + " 'United States',\n", + " 'city': 'Cambridge',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 42.3658993,\n", + " 'lng': -71.1039725,\n", + " 'place_id': 'ChIJfXD4ZlF344kRrJ7D5X296-A',\n", + " 'post_code': '02139',\n", + " 'state': 'Massachusetts',\n", + " 'state_short': 'MA',\n", + " 'street_name': 'Massachusetts Avenue',\n", + " 'street_name_short': 'Massachusetts Ave',\n", + " 'street_number': '675',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.effectivephilanthropy.org'},\n", + " {'address': 'AMREF via Alberico II n. 4 00193 Roma Italy',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 18475,\n", + " 'link': 'https://philea.eu/members/amref-health-africa-ets/',\n", + " 'name': 'Amref Health Africa ETS',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'AMREF via Alberico II n. 4 00193 Roma Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.9053109,\n", + " 'lng': 12.4617487,\n", + " 'place_id': 'ChIJ1YGl4l1gLxMR04XZGI4kge4',\n", + " 'post_code': '00193',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via Alberico II',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.amref.it'},\n", + " {'address': 'Tobaksvejen 10 DK-2860 Søborg Denmark',\n", + " 'country': '',\n", + " 'email': 'info@villumfonden.dk',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 18474,\n", + " 'link': 'https://philea.eu/members/villum-foundation/',\n", + " 'name': 'Villum Foundation',\n", + " 'philea_info': {'About': 'The VILLUM FOUNDATION is a non-profit foundation '\n", + " 'created by Villum Kann Rasmussen in 1971. The '\n", + " 'foundation is the principal shareholder of VKR '\n", + " 'Holding, the parent company of VELUX A/S and other '\n", + " 'companies in the VKR Group.',\n", + " 'Geographic Focus': 'Denmark and other European countries',\n", + " 'Mission': 'Its mission is to bring daylight, fresh air and '\n", + " 'a better environment into people’s everyday '\n", + " 'lives.',\n", + " 'Programme Areas': 'Technical and scientific research as '\n", + " 'well as environmental, social and '\n", + " 'cultural projects in Denmark and '\n", + " 'internationally.'},\n", + " 'position': {'address': 'Tobaksvejen 10 DK-2860 Søborg Denmark',\n", + " 'city': 'Søborg',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7406342,\n", + " 'lng': 12.4804293,\n", + " 'place_id': 'ChIJ-ynjlN1RUkYRMLr71Wn-j4Q',\n", + " 'post_code': '2860',\n", + " 'street_name': 'Tobaksvejen',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'Lautrupvang 10 2750 Ballerup Denmark',\n", + " 'country': '',\n", + " 'email': 'Direktion@vellivforeningen.dk',\n", + " 'geo_locations': {},\n", + " 'id': 18472,\n", + " 'link': 'https://philea.eu/members/velliv-foreningen/',\n", + " 'name': 'Velliv Foreningen',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Lautrupvang 10 2750 Ballerup Denmark',\n", + " 'city': 'Ballerup',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7289135,\n", + " 'lng': 12.3927329,\n", + " 'place_id': 'ChIJF7wP_21QUkYRFS6MXAtNbKo',\n", + " 'post_code': '2750',\n", + " 'street_name': 'Lautrupvang',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.vellivforeningen.dk/for-ansoegere/'},\n", + " {'address': \"26 St James's Square SW1Y 4JH London United Kingdom\",\n", + " 'country': '',\n", + " 'email': 'info@nilofoundation.org',\n", + " 'geo_locations': {},\n", + " 'id': 18471,\n", + " 'link': 'https://philea.eu/members/nilo-foundation/',\n", + " 'name': 'NILO Foundation',\n", + " 'philea_info': {'About': 'At NILO Foundation, we partner with charities '\n", + " 'worldwide that help to sustain humanity and '\n", + " 'planet, with a strong focus on developing inner '\n", + " 'potential, building community and transitioning '\n", + " 'towards a just and sustainable economy.',\n", + " 'Mission': 'At NILO Foundation, we partner with charities '\n", + " 'worldwide that help to sustain humanity and '\n", + " 'planet, with a strong focus on developing inner '\n", + " 'potential, building community and transitioning '\n", + " 'towards a just and sustainable economy. We draw '\n", + " 'upon two main traditions in philanthropy, which '\n", + " 'are systems change and venture philanthropy.',\n", + " 'Programme Areas': 'ACCOMPANYING AND TRUSTING PARTNERS\\n'\n", + " 'We look for social leaders that align '\n", + " 'with our mission and values and build '\n", + " 'close ties with them. In addition to '\n", + " 'evergreen funding, we accompany our '\n", + " 'partners throughout and provide '\n", + " 'strategic support in a range of areas, '\n", + " 'including networking opportunities and '\n", + " 'fundraising. This approach is designed '\n", + " 'to encourage them to tackle issues in a '\n", + " 'bold and innovative way, and to enhance '\n", + " 'their organisational development and '\n", + " 'impact. SUPPORTING SYSTEMS-CHANGE\\n'\n", + " 'We adopt a systemic view of a problem by '\n", + " 'conducting in-depth research and '\n", + " 'connecting with experts and people at '\n", + " 'the heart of it. We then build a '\n", + " 'portfolio of partners among frontline '\n", + " 'charities, advocacy groups and think '\n", + " 'tanks, with the aim of acting on '\n", + " 'different levers of the ecosystem. '\n", + " 'ENCOURAGING COLLABORATION\\n'\n", + " 'Our high-level viewpoint as a funder '\n", + " 'working in different regions of the '\n", + " 'world gives us access to a rich '\n", + " 'ecosystem of philanthropic initiatives. '\n", + " 'We regularly exchange with peers to '\n", + " 'explore opportunities for co-learning '\n", + " 'and co-action, and we encourage our '\n", + " 'partners to convene regularly. LEARNING '\n", + " 'AND REFLECTING\\n'\n", + " 'A core element of our approach is to '\n", + " 'experiment, reflect, and iterate. We aim '\n", + " 'to draw upon many traditions of '\n", + " 'philanthropy, thoughtfully using '\n", + " 'theories and schools of thought that '\n", + " 'feel most appropriate to the given '\n", + " 'context and issue, and regularly '\n", + " 'reviewing our posture and methods as a '\n", + " 'funder.'},\n", + " 'position': {'address': \"26 St James's Square SW1Y 4JH London United Kingdom\",\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.50669389999999,\n", + " 'lng': -0.1344662,\n", + " 'place_id': 'ChIJXUDS0NAEdkgRPVdkJHnC_ik',\n", + " 'post_code': 'SW1Y 4JH',\n", + " 'state': 'England',\n", + " 'street_name': \"Saint James's Square\",\n", + " 'street_name_short': \"St James's Square\",\n", + " 'street_number': '26',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nilofoundation.org'},\n", + " {'address': 'Omidyar Network 1991 Broadway Street, Suite 200 CA 94063 Redwood '\n", + " 'City United States',\n", + " 'country': 'United States',\n", + " 'email': 'hello@luminategroup.com',\n", + " 'geo_locations': {},\n", + " 'id': 18435,\n", + " 'link': 'https://philea.eu/members/luminate/',\n", + " 'name': 'Luminate',\n", + " 'philea_info': {'About': 'Our mission is to ensure that everyone – '\n", + " 'especially those who are underrepresented – has '\n", + " 'the information, rights, and power to influence '\n", + " 'the decisions that affect their lives. Our work '\n", + " 'focuses on enabling people to fully participate in '\n", + " 'civic and political life, to safely challenge '\n", + " 'power, and to access accurate, trustworthy '\n", + " 'information. Across our work, we seek to ensure '\n", + " 'that technology works for and not against '\n", + " 'democracy.',\n", + " 'Mission': 'Our mission is to ensure that everyone – '\n", + " 'especially those who are underrepresented – has '\n", + " 'the information, rights, and power to influence '\n", + " 'the decisions that affect their lives. Our work '\n", + " 'focuses on enabling people to fully participate '\n", + " 'in civic and political life, to safely challenge '\n", + " 'power, and to access accurate, trustworthy '\n", + " 'information. Across our work, we seek to ensure '\n", + " 'that technology works for and not against '\n", + " 'democracy.',\n", + " 'Programme Areas': 'Citizenship, Social Justice & Public '\n", + " 'Affairs, Civil society, Voluntarism & '\n", + " 'Non-Profit Sector, Democracy, digital '\n", + " 'rights.'},\n", + " 'position': {'address': 'Omidyar Network, 1991 Broadway # 200, Redwood City, '\n", + " 'CA 94063, United States',\n", + " 'city': 'Redwood City',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 37.4863992,\n", + " 'lng': -122.2259237,\n", + " 'name': 'Omidyar Network',\n", + " 'place_id': 'ChIJB25ooKyjj4ARhSlz72Tfib8',\n", + " 'post_code': '94063',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'street_name': 'Broadway',\n", + " 'street_number': '1991',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://luminategroup.com/about'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 17761,\n", + " 'link': 'https://philea.eu/members/swiss-philanthropy-foundation/',\n", + " 'name': 'Swiss Philanthropy Foundation',\n", + " 'philea_info': {'About': 'As an umbrella foundation (donor-advised fund), '\n", + " 'SwissPhilanthropy Foundation facilitates access to '\n", + " 'philanthropy by creating and managing '\n", + " 'philanthropic funds on behalf of private and '\n", + " 'institutional clients. It leads to a '\n", + " 'professionalisation of the philanthropic sector '\n", + " 'and greater impact.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'To pursue public-interest goals in Switzerland '\n", + " 'and abroad by encouraging the development of '\n", + " 'philanthropy and by supporting charitable '\n", + " 'organisations and programmes in the areas of:\\n'\n", + " '– humanitarian and social aids\\n'\n", + " '– medicine\\n'\n", + " '– education\\n'\n", + " '– research\\n'\n", + " '– environmental protection\\n'\n", + " '– sustainable development\\n'\n", + " '– culture and the arts',\n", + " 'Programme Areas': 'Values:\\n'\n", + " '• Dynamism: the Foundation seeks to '\n", + " 'encourage and support dynamic giving. It '\n", + " 'asks donors who have set up funds to '\n", + " 'maintain regular philanthropic '\n", + " 'activity.\\n'\n", + " '• Coherency: through its network of '\n", + " 'partnerships with experts in the field, '\n", + " 'the Foundation proposes a comprehensive '\n", + " 'service which ensures the impact of '\n", + " 'donations.\\n'\n", + " '• Responsibility: the Foundation is '\n", + " 'responsible for the funds entrusted to '\n", + " 'it and undertakes to actively respect '\n", + " 'the donor’s initial intention. The '\n", + " 'financial management of the donor’s fund '\n", + " 'is assumed by the Foundation or by an '\n", + " 'external manager depending on the amount '\n", + " 'or the agreement between the parties.\\n'\n", + " '• Discretion: the Foundation offers '\n", + " 'donors a way of facilitating their '\n", + " 'commitment by promoting efficiency and '\n", + " 'ensures discretion. The Foundation '\n", + " 'offers 2 services to facilitate your '\n", + " 'philanthropy.\\n'\n", + " '• Sheltered funds: a simple and '\n", + " 'effective structure for donors\\n'\n", + " '• European network: donate in Europe as '\n", + " 'if you donate in Switzerland, donate in '\n", + " 'Switzerland from other European '\n", + " 'countries'},\n", + " 'position': {'address': 'Swiss Philanthropy Foundation Mael Steiner c/o wise '\n", + " '- philanthropy advisers P.O. BOX 2124 1211 Geneva 1 '\n", + " 'Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2084926,\n", + " 'lng': 6.1428645,\n", + " 'place_id': 'ChIJI5dq4ddkjEcR_z3_-mSdQaA',\n", + " 'post_code': '1201',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Place de Cornavin',\n", + " 'street_name_short': 'Pl. de Cornavin',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.swissphilanthropy.ch/en/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland']},\n", + " 'id': 17760,\n", + " 'link': 'https://philea.eu/members/stiftelsen-brita-maria-renlunds-minne-sr/',\n", + " 'name': 'Stiftelsen Brita Maria Renlunds minne sr',\n", + " 'philea_info': {'About': 'We support the health and well-being of children '\n", + " 'and young people.',\n", + " 'Geographic Focus': 'Finland, especially Swedish speaking '\n", + " 'minority',\n", + " 'Mission': 'To support and develop care that promotes the '\n", + " 'well-being of children regardless of the '\n", + " 'nationality, religion or language of the '\n", + " 'guardians.\\n'\n", + " 'To promote early childhood pedagogy, school '\n", + " 'environments and well-being for children and '\n", + " 'young people, who receive their upbringing and '\n", + " 'education in Swedish.',\n", + " 'Programme Areas': '– Arts & Culture\\n'\n", + " '– Education\\n'\n", + " '– Health\\n'\n", + " '– Recreation\\n'\n", + " '– Sport & Well-being\\n'\n", + " '– Youth/Children Development'},\n", + " 'position': {'address': 'Stiftelsen Brita Maria Renlunds minne sr Annegatan '\n", + " '12, 4 vån 00120 Helsinki Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.16463510000001,\n", + " 'lng': 24.9398198,\n", + " 'place_id': 'EixBbm5hbmthdHUgMTIgNCB2w6VuLCAwMDEyMCBIZWxzaW5raSwgRmlubGFuZCIiGiAKFgoUChIJTWwcLMoLkkYRkL2E5qrN52cSBjQgdsOlbg',\n", + " 'post_code': '00120',\n", + " 'state': 'Uusimaa',\n", + " 'street_name': 'Annankatu',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Health',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bmr.fi'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 17759,\n", + " 'link': 'https://philea.eu/members/bolton-hope-foundation/',\n", + " 'name': 'Be for Education Foundation',\n", + " 'philea_info': {'About': 'The Be for Education Foundation\\xa0promotes '\n", + " 'quality education and education for sustainable '\n", + " 'development and prevents early school leaving '\n", + " 'through a semi-functional and operating approach',\n", + " 'Geographic Focus': 'Italy',\n", + " 'Mission': 'Promoting quality education and education for '\n", + " 'sustainable development, preventing early school '\n", + " 'leaving',\n", + " 'Programme Areas': 'Education'},\n", + " 'position': {'address': 'Bolton Hope Foundation Via G.B. Pirelli 19 20124 '\n", + " 'Milan Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.48368900000001,\n", + " 'lng': 9.199039299999999,\n", + " 'place_id': 'ChIJrY4HrM_GhkcRUe1V3QZbhUA',\n", + " 'post_code': '20124',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Giovanni Battista Pirelli',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.beforeducation.org'},\n", + " {'address': 'Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 '\n", + " 'Vilnius Lithuania',\n", + " 'country': 'Lithuania',\n", + " 'email': 'info@mjjfondas.lt',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Lithuania']},\n", + " 'id': 17758,\n", + " 'link': 'https://philea.eu/members/marius-jakulis-jason-foundation/',\n", + " 'name': 'Marius Jakulis Jason Foundation',\n", + " 'philea_info': {'About': 'Help everyone to be successful by staying in '\n", + " 'Lithuania or coming in.\\n'\n", + " 'To do this, the foundation is giving support, '\n", + " 'mentoring, networking, financial support and for '\n", + " 'different profiles.',\n", + " 'Geographic Focus': 'Lithuania',\n", + " 'Mission': 'Supports talented entrepreneurs, academics and '\n", + " 'students who want to and can contribute to the '\n", + " 'economic growth of Lithuania.',\n", + " 'Programme Areas': '– Education\\n'\n", + " '– Sciences & Research\\n'\n", + " '– Youth/Children development\\n'\n", + " '– Entrepreneurship'},\n", + " 'position': {'address': 'Marius Jakulis Jason Foundation Liepyno str. 25A 5a '\n", + " 'LT-08108 Vilnius Lithuania',\n", + " 'city': 'Vilnius',\n", + " 'country': 'Lithuania',\n", + " 'country_short': 'LT',\n", + " 'lat': 54.6991928,\n", + " 'lng': 25.2524047,\n", + " 'place_id': 'EitMaWVweW5vIGcuIDI1YS01YSwgMDgxMDggVmlsbml1cywgTGl0aHVhbmlhIh4aHAoWChQKEgmRXrIX-5PdRhFrciarVovwwxICNWE',\n", + " 'post_code': '08108',\n", + " 'state': 'Vilniaus apskritis',\n", + " 'state_short': 'Vilniaus apskr.',\n", + " 'street_name': 'Liepyno gatvė',\n", + " 'street_name_short': 'Liepyno g.',\n", + " 'street_number': '25a',\n", + " 'zoom': 19},\n", + " 'tags_focus': ['Education',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://mjjfondas.lt/'},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': 'info@moleskinefoundation.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Mexico'],\n", + " 'North America': ['Canada'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 17756,\n", + " 'link': 'https://philea.eu/members/moleskine-foundation/',\n", + " 'name': 'Moleskine Foundation',\n", + " 'philea_info': {'About': 'The Foundation operates as an independent '\n", + " 'self-governing organization, but thanks to our '\n", + " 'partnership with the Moleskine brand we are able '\n", + " 'to ensure 100% of the funds raised go directly to '\n", + " 'support our programs.\\n'\n", + " 'In our work we promote a new philanthropic model '\n", + " 'of operation: by considering both “what” we do and '\n", + " '“how we do it” we want to liberate creativity, '\n", + " 'develop creative skills and support our '\n", + " 'communities to drive greater social impact beyond '\n", + " 'the traditional philanthropic approach. In '\n", + " 'particular, the Creativity Pioneers Fund (CPF) '\n", + " 'constitutes a unique opportunity to test and learn '\n", + " 'from a more progressive philanthropic approach '\n", + " 'based on trust, unrestricted funding, valorization '\n", + " 'of intersectionality, simple and inclusive '\n", + " 'paperwork both at the selection process and M&E, '\n", + " 'and a strong focus on building long-lasting '\n", + " 'networks and ecosystems.\\n'\n", + " 'The CPF consists in a micro-granting scheme that '\n", + " 'provides unrestricted and unearmarked funding: '\n", + " 'this allows to shift the decision-making power on '\n", + " 'the use of funds to the organization because they '\n", + " 'are best suited to determine how to effectively '\n", + " 'spend the funds received. Moreover, this model of '\n", + " 'unrestricted granting enables us to move away from '\n", + " 'project-based funding, and to support creative '\n", + " 'organizations in their identity and entirety, '\n", + " 'preserving their often hybrid and therefore '\n", + " 'peculiar nature.\\n'\n", + " 'Access to funding represents only a starting point '\n", + " 'for a larger collaboration system, towards a '\n", + " 'platform model where Moleskine Foundation and its '\n", + " 'partners act as ecosystem builders.',\n", + " 'Geographic Focus': 'Global (Europe, Africa, US, Canada, '\n", + " 'Mexico)',\n", + " 'Mission': 'Inspire a new generation of creative thinkers '\n", + " 'and doers to change themselves and their '\n", + " 'communities.\\n'\n", + " 'We believe in Creativity for Social Change, and '\n", + " 'our mission is to inspire youth worldwide to '\n", + " 'make a difference in their communities.\\n'\n", + " 'We support spaces where criticality and '\n", + " 'imagination can occur, so that novel solutions '\n", + " 'can be discovered for today’s challenges.',\n", + " 'Programme Areas': '– Arts and Culture\\n'\n", + " '– Citizenship\\n'\n", + " '– Social Justice & Public Affairs\\n'\n", + " '– Education'},\n", + " 'position': {'address': 'Moleskine Foundation Onlus, Via Bergognone, 34, '\n", + " '20144 Milan, Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4524972,\n", + " 'lng': 9.164271500000002,\n", + " 'name': 'Moleskine Foundation Onlus',\n", + " 'place_id': 'ChIJJ8q9z9rDhkcRj84mpcEyto8',\n", + " 'post_code': '20144',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Bergognone',\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://moleskinefoundation.org/'},\n", + " {'address': 'Stiftung Mercator Schweiz Gartenstrasse 33 8027 Zürich '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Switzerland']},\n", + " 'id': 16610,\n", + " 'link': 'https://philea.eu/members/stiftung-mercator-schweiz/',\n", + " 'name': 'Stiftung Mercator Schweiz',\n", + " 'philea_info': {'About': 'Based on a systemic and collaborative approach, we '\n", + " 'look for the most effective levers for societal '\n", + " 'transformation in our thematic ecosystems. We work '\n", + " 'with an iterative strategy model including '\n", + " '“ongoing” Monitoring, Evaluation, Learning, '\n", + " 'Adaption and Sharing and want to contribute to '\n", + " 'solutions for ecological and societal problems as '\n", + " 'stimuli for societal change. For the '\n", + " 'implementation of our theories of change we work '\n", + " 'with four levers: empowerment of the individual, '\n", + " 'strengthening of civil society and it’s '\n", + " 'organizations, digitalization and art and culture.',\n", + " 'Geographic Focus': 'Switzerland, Europe',\n", + " 'Mission': 'Sustainable society based on the principles of '\n", + " 'solidarity, equal opportunities and the '\n", + " 'possibility of active participation for all.',\n", + " 'Programme Areas': 'DEMOCRACY – We support new ideas and '\n", + " 'promising initiatives (both analog and '\n", + " 'digital) for a sustainable and resilient '\n", + " 'democracy DIVERSITY – we focus on gender '\n", + " 'and cultural background. In the field of '\n", + " 'diversity, we aim to reduce structural '\n", + " 'discrimination due to origin and/or '\n", + " 'gender. CLIMATE AND BIODIVERSITY '\n", + " 'PROTECTION – sufficiency, nutrition '\n", + " 'systems. Regarding both climate and '\n", + " 'biodiversity, we support '\n", + " 'comprehensive/systemic solution '\n", + " 'approaches that are borne by '\n", + " 'decision-makers in the worlds of '\n", + " 'politics, public administration, science '\n", + " 'and business as well as by civil '\n", + " 'society, and that do justice to the '\n", + " 'urgency of the ecological challenges we '\n", + " 'face. DIGITALISATION & SOCIETY – digital '\n", + " 'self-determination, algorithmic systems, '\n", + " 'digital public sphere, digital '\n", + " 'participation. We empower people to '\n", + " 'handle their data in a self-determined '\n", + " 'way. We seek ways of promoting political '\n", + " 'solutions and data protection '\n", + " 'regulations that ensure the right to '\n", + " 'digital self-determination. We also work '\n", + " 'on solutions that enable companies and '\n", + " 'public authorities to take ethical and '\n", + " 'public welfare considerations into '\n", + " 'account when handling personal data.'},\n", + " 'position': {'address': 'Stiftung Mercator Schweiz, Gartenstrasse, Zürich, '\n", + " 'Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3678088,\n", + " 'lng': 8.532472,\n", + " 'name': 'Stiftung Mercator Schweiz',\n", + " 'place_id': 'ChIJZfulegIKkEcRo4ONX65lX3o',\n", + " 'post_code': '8002',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Gartenstrasse',\n", + " 'street_number': '33',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.stiftung-mercator.ch'},\n", + " {'address': 'The END Fund 495 Green Lanes N13 4BS London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@end.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Afghanistan', 'India'],\n", + " 'Latin America & Caribbean': ['Guyana'],\n", + " 'Middle East & North Africa (MENA)': ['Yemen']},\n", + " 'id': 13608,\n", + " 'link': 'https://philea.eu/members/the-end-fund/',\n", + " 'name': 'The END Fund',\n", + " 'philea_info': {'About': 'The END Fund focuses on delivering neglected '\n", + " 'tropical disease (NTD) treatments to those in need '\n", + " 'by growing and engaging a community of '\n", + " 'activist-philanthropists, managing high-impact '\n", + " 'strategic investments, and working in '\n", + " 'collaboration with government, NGO, '\n", + " 'pharmaceutical, and academic partners. We aim to '\n", + " 'take a systems approach to understanding, engaging '\n", + " 'with, and influencing the broad ecosystem of '\n", + " 'stakeholders.',\n", + " 'Geographic Focus': '26 countries, predominantly in Africa '\n", + " 'but also Afghanistan, India, Yemen and '\n", + " 'Guyana.',\n", + " 'Mission': 'The END Fund is the only private philanthropic '\n", + " 'initiative dedicated to ending the five most '\n", + " 'common neglected tropical diseases (NTDs) – a '\n", + " 'group of parasitic and bacterial infectious '\n", + " 'diseases, such as river blindness and intestinal '\n", + " 'worms. By engaging a community of '\n", + " 'activist-philanthropists and taking a systems '\n", + " 'approach, we are working in collaboration with '\n", + " 'governments, NGOs, pharmaceutical, and academic '\n", + " 'partners to end these diseases in our lifetime. '\n", + " 'Since our founding in 2012 through 2020, with '\n", + " 'our partners, the END Fund has provided over 1 '\n", + " 'billion treatments for NTDs worth more than $1.3 '\n", + " 'billion. In 2020 alone, we reached more than 91 '\n", + " 'million people with more than 133 million NTD '\n", + " 'treatments, which represents an almost 8-fold '\n", + " 'increase from 2012.',\n", + " 'Programme Areas': 'The END Fund efficiently puts private '\n", + " 'capital to work, advocating for NTD '\n", + " 'programs that are innovative, integrated '\n", + " 'and cost-effective. We facilitate\\n'\n", + " 'strong partnerships with the private '\n", + " 'sector, government partners, and local '\n", + " 'implementing partners to collaboratively '\n", + " 'support national disease programs. This '\n", + " 'is done through a proven implementation '\n", + " 'model that is tailored to meet the needs '\n", + " 'of individual countries. The NTDs we '\n", + " 'work on are: intestinal worms, '\n", + " 'Schistosomiasis, Onchoceriasis and '\n", + " 'Lymphatic Filariasis. We have also '\n", + " 'recently taken on some funding for '\n", + " 'Visceral Leishmaniasis programmes, '\n", + " 'following the FCDO cuts.'},\n", + " 'position': {'address': '495 Green Lanes, London N13 4BS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.6230729,\n", + " 'lng': -0.1051977,\n", + " 'name': '495 Green Lanes',\n", + " 'place_id': 'ChIJ5YfndjcZdkgRXTek7Bo7hIg',\n", + " 'post_code': 'N13 4BS',\n", + " 'state': 'England',\n", + " 'street_name': 'Green Lanes',\n", + " 'street_number': '495',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.end.org/'},\n", + " {'address': 'Anglo American Foundation 17 Charterhouse Street EC1N 6RA London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['South Africa', 'Zimbabwe'],\n", + " 'Asia & Pacific': ['Australia', 'China', 'India'],\n", + " 'Europe (Nordic Region)': ['Finland'],\n", + " 'Latin America & Caribbean': ['Brazil', 'Peru'],\n", + " 'North America': ['Canada']},\n", + " 'id': 13606,\n", + " 'link': 'https://philea.eu/members/anglo-american-foundation/',\n", + " 'name': 'Anglo American Foundation',\n", + " 'philea_info': {'About': 'The Anglo American Group Foundation (AAF) was '\n", + " 'established in 2018/19 by merging the activities '\n", + " 'of the Anglo American Chairman’s Fund (a highly '\n", + " 'respected South Africa-based entity) and the Anglo '\n", + " 'American Group Foundation to form a single '\n", + " 'Group-level Foundation for Anglo American '\n", + " 'operating as a single entity with a common '\n", + " 'strategy and set of trustees. The operations in '\n", + " 'the UK are managed by Anglo American internally '\n", + " 'while the South African entity is managed by '\n", + " 'Tshikululu Social Investments. In July 2021 Anglo '\n", + " 'American committed to endowing AAF with a $100 '\n", + " 'million donation, significantly boosting the '\n", + " 'Foundation’s ability to support progress towards '\n", + " 'the UN Sustainable Development Goals. This '\n", + " 'donation presents an opportunity to redefine AAF’s '\n", + " 'strategy, including governance and operating '\n", + " 'model, to ensure it can deliver to an entirely new '\n", + " 'level – creating systemic impact at scale. Guided '\n", + " 'by Anglo American’s Purpose, AAF will become a '\n", + " 'strategic grant-maker focusing on long-term '\n", + " 'system-level change within three themes:\\n'\n", + " '• Clean water and energy: sustainable water '\n", + " 'resource management; access to (clean) energy / '\n", + " 'off-grid solutions\\n'\n", + " '• Skills and job creation for growth: development '\n", + " 'of relevant skills for current and future jobs '\n", + " '(focus on youth); incubating innovative tech and '\n", + " 'supporting SMEs and entrepreneurs\\n'\n", + " '• Healthy living: access to primary health care; '\n", + " 'preventative health care',\n", + " 'Geographic Focus': 'Australia, Botswana, Brazil, Canada, '\n", + " 'Chile, China, India, Finland, Namibia, '\n", + " 'Peru, Singapore, South Africa, UK, '\n", + " 'Zimbabwe (plus future countries of '\n", + " 'operation of Anglo American)',\n", + " 'Mission': 'The Foundation supports programmes that work to '\n", + " 'address the UN’s Sustainable Development Goals '\n", + " 'and that are aligned to Anglo American’s '\n", + " 'Purpose: Re-imagining mining to improve people’s '\n", + " 'lives\\n'\n", + " 'Mining has a smarter future – a future where you '\n", + " 'may barely notice some mines at all. And that’s '\n", + " 'a good thing. Out of sight, but never out of '\n", + " 'mind, tomorrow’s ultimate mine will long provide '\n", + " 'the precious raw materials our modern society '\n", + " 'needs. The Foundation is undertaking a strategic '\n", + " 'review with the intent to be more independent '\n", + " 'from the founding company. This will include '\n", + " 'developing the Foundation’s own vision and '\n", + " 'mission statement and Theory of Change',\n", + " 'Programme Areas': 'Interconnected themes: Access to clean '\n", + " 'water and energy\\n'\n", + " 'Health and Wellbeing\\n'\n", + " 'Skills and job creation\\n'\n", + " 'With cross-cutting themes – gender, '\n", + " 'youth, inclusivity, climate change '\n", + " 'resilience\\n'\n", + " 'Types of intervention approaches are '\n", + " 'expected to be employed to achieve such '\n", + " 'systems level change: i) enabling '\n", + " 'systems development, ii) capacity '\n", + " 'enhancement and skills development and '\n", + " 'iii) behavior change.'},\n", + " 'position': {'address': 'Anglo American PLC, 17 Charterhouse Street, London '\n", + " 'EC1N 6RA, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5184283,\n", + " 'lng': -0.1063213,\n", + " 'name': 'Anglo American PLC',\n", + " 'place_id': 'ChIJ7ycpArgbdkgRg_p5S-TCD0g',\n", + " 'post_code': 'EC1N 6RA',\n", + " 'state': 'England',\n", + " 'street_name': 'Charterhouse Street',\n", + " 'street_name_short': 'Charterhouse St',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.angloamericangroupfoundation.org/'},\n", + " {'address': 'The Fidelity UK Foundation Beech Gate, Millfield Lane Lower '\n", + " 'Kingswood KT20 6RP Tadworth, Surrey United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['United Kingdom']},\n", + " 'id': 12992,\n", + " 'link': 'https://philea.eu/members/fidelity-uk-foundation/',\n", + " 'name': 'Fidelity UK Foundation',\n", + " 'philea_info': {'About': 'The Foundation’s aim is to help strengthen the '\n", + " 'impact, effectiveness and/or sustainability of '\n", + " 'charitable organisations – enhancing their ability '\n", + " 'to achieve their mission and their objectives. As '\n", + " 'such, the Foundation has a focus on the capacity '\n", + " 'of charities, by which we mean the capability, '\n", + " 'knowledge and resources that charities need to be '\n", + " 'effective.',\n", + " 'Geographic Focus': 'UK',\n", + " 'Mission': 'The Fidelity UK Foundation helps build the '\n", + " 'capacity of charitable organisations active in '\n", + " 'the fields of: enabling disadvantaged children '\n", + " 'and young people to achieve their potential; '\n", + " 'health; and arts, culture and heritage.',\n", + " 'Programme Areas': 'The foundation’s charitable investments '\n", + " 'are primarily allocated to the following '\n", + " 'sectors: Enabling disadvantaged children '\n", + " 'and young people to achieve their '\n", + " 'potential\\n'\n", + " 'Health and wellbeing\\n'\n", + " 'Arts, culture and heritage'},\n", + " 'position': {'address': 'Millfield Lane, Lower Kingswood, Tadworth, Surrey '\n", + " 'KT20 6RP, United Kingdom',\n", + " 'city': 'Tadworth',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.2784529,\n", + " 'lng': -0.2068448,\n", + " 'name': 'Millfield Lane',\n", + " 'place_id': 'EiNNaWxsZmllbGQgTG4sIFRhZHdvcnRoIEtUMjAgNlJQLCBVSyIuKiwKFAoSCTNXWI9B43VIESEh-XZ45Bx3EhQKEgn58JtuQuN1SBGMsxM1jCzF9g',\n", + " 'post_code': 'KT20 6RP',\n", + " 'state': 'England',\n", + " 'street_name': 'Millfield Lane',\n", + " 'street_name_short': 'Millfield Ln',\n", + " 'zoom': 9},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://filfoundations.fidelityinternational.com/'},\n", + " {'address': 'Central European University Quellenstraße 51 1100 Vienna Austria',\n", + " 'country': 'Austria',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 12935,\n", + " 'link': 'https://philea.eu/members/central-european-university/',\n", + " 'name': 'Central European University',\n", + " 'philea_info': {'About': 'Central European University is an institution of '\n", + " 'advanced research and teaching, dedicated to '\n", + " 'socially and morally responsible intellectual '\n", + " 'inquiry. Having launched a new undergraduate offer '\n", + " 'in 2020, CEU’s distinctive educational program '\n", + " 'builds on the research tradition of the great '\n", + " 'American universities; on the most valuable '\n", + " 'Central European intellectual traditions; on the '\n", + " 'international diversity of its faculty and '\n", + " 'students; on its commitment to social service; and '\n", + " 'on its own history of academic and policy '\n", + " 'achievements in transforming the closed communist '\n", + " 'inheritance. George Soros founded CEU after the '\n", + " 'fall of the iron curtain during a time of great '\n", + " 'optimism and hope for the future.\\n'\n", + " 'CEU empowers students from around the world and '\n", + " 'challenge them to think critically and create new '\n", + " 'knowledge with the power to transform our world. '\n", + " 'Today, as societies are radically tested, we '\n", + " 'fulfill this purpose with urgency. With a global '\n", + " 'pandemic stoking fear and exclusion, our role to '\n", + " 'foster a passion for knowledge — the '\n", + " 'distinguishing feature of an open society — is '\n", + " 'vital to countering these forces.',\n", + " 'Mission': 'CEU is committed to promoting the values of open '\n", + " 'society and self-reflective critical thinking. '\n", + " 'It aims at excellence in the mastery of '\n", + " 'established knowledge, courage to pursue the '\n", + " 'creation of new knowledge in the humanities, the '\n", + " 'social sciences, law and management, and '\n", + " 'engagement in promoting applications for each, '\n", + " 'in particular through their policy implications. '\n", + " 'CEU is a new model for international education, '\n", + " 'a center for the study of contemporary economic, '\n", + " 'social and political challenges, and a source of '\n", + " 'support for building open and democratic '\n", + " 'societies that respect human rights and human '\n", + " 'dignity.\\n'\n", + " 'CEU’s mission—to advance and build open and '\n", + " 'democratic societies that respect human '\n", + " 'rights—draws students from more than 100 '\n", + " 'countries and across five continents. Often the '\n", + " 'first in their families to pursue a graduate '\n", + " 'education, our students come to CEU to study '\n", + " 'law, humanities, social sciences, public policy, '\n", + " 'and management. This diverse group of '\n", + " 'exceptional students share a commonly held '\n", + " 'desire: to make a difference after graduation in '\n", + " 'their respective countries.'},\n", + " 'position': {'address': 'Central European University, Quellenstraße 51, 1100 '\n", + " 'Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.17394590000001,\n", + " 'lng': 16.3880969,\n", + " 'name': 'Central European University',\n", + " 'place_id': 'ChIJWXRULX-pbUcRGlulmPW2N1A',\n", + " 'post_code': '1100',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Quellenstraße',\n", + " 'street_number': '51',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.ceu.edu'},\n", + " {'address': '120 West 45th Street 25th Floor 10027 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@hfg.org',\n", + " 'geo_locations': {'North America': ['United States'], 'Worldwide': ['World']},\n", + " 'id': 11209,\n", + " 'link': 'https://philea.eu/members/the-harry-frank-guggenheim-foundation/',\n", + " 'name': 'The Harry Frank Guggenheim Foundation',\n", + " 'philea_info': {'About': 'The Foundation is the only organization of its '\n", + " 'kind focused solely on the study and amerloration '\n", + " 'of violence. It awards research grants to support '\n", + " 'distinguished and emerging scholars studying '\n", + " 'urgent matters of violence around the world. It '\n", + " 'likewise conducts and commissions original '\n", + " 'research and publishes research and policy '\n", + " 'reports. The Foundation hosts conferences, '\n", + " 'research seminars, and public conversations on '\n", + " 'topics of violence, often in collaboration with '\n", + " 'peers in academia, philanthropy, and civil '\n", + " 'society.',\n", + " 'Geographic Focus': 'United States; World',\n", + " 'Mission': 'The Harry Frank Guggenheim Foundation examines '\n", + " 'enduring and urgent problems of violence, such '\n", + " 'as war, crime, and human aggression. Through '\n", + " 'basic and applied research, the Foundation aims '\n", + " 'to understand the causes, manifestation, and '\n", + " 'control of violence, to spread this knowledge to '\n", + " 'inform policy, practice, and public discourse '\n", + " 'and to advance scholarship.',\n", + " 'Programme Areas': 'The Foundation conducts programs to '\n", + " 'support violence research, including its '\n", + " 'Distinguished Scholars, Emerging '\n", + " 'Scholars, African Fellows, Distinguished '\n", + " 'Fellow of Practice, Pembroke Research '\n", + " 'Fellow at Cambridge, the Salzburg Global '\n", + " 'Seminar’s Global Innovations on Youth '\n", + " 'Violence, Safety and Justice initiative, '\n", + " 'a Violent Crime Working Group at the '\n", + " 'Council on Criminal Justice, a National '\n", + " 'Gun Violence Research Collaborative at '\n", + " 'the RAND Corporation, an annual '\n", + " 'Sympoisium on Crime in America, research '\n", + " 'and policy reports, online articles, and '\n", + " 'speakers series.'},\n", + " 'position': {'address': '120 West 45th Street 25th Floor 10027 New York '\n", + " 'United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.75704,\n", + " 'lng': -73.9838798,\n", + " 'place_id': 'EjExMjAgVyA0NXRoIFN0IDI1dGggRmxvb3IsIE5ldyBZb3JrLCBOWSAxMDAzNiwgVVNBIiYaJAoWChQKEgkBOH9tVVjCiRHTjQ7ex4woThIKMjV0aCBGbG9vcg',\n", + " 'post_code': '10036',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'West 45th Street',\n", + " 'street_name_short': 'W 45th St',\n", + " 'street_number': '120',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hfg.org/'},\n", + " {'address': 'Moncalvo 1 10131 Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionepaideia.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 11208,\n", + " 'link': 'https://philea.eu/members/fondazione-paideia/',\n", + " 'name': 'Fondazione Paideia',\n", + " 'philea_info': {'About': 'Paideia Foundation adopts a perspective of '\n", + " 'intervention towards the beneficiaries that is '\n", + " 'placed, from a theoretical and methodological '\n", + " 'point of view, in the systemic and network '\n", + " 'approach, in which it is essential to turn the '\n", + " 'gaze not only to the child in difficulty, but to '\n", + " 'all those who take care of it in different ways: '\n", + " 'first of all the family unit, then the parental '\n", + " 'and friendly network and the socio-health, '\n", + " 'educational and associative resources with which '\n", + " 'the family comes into contact. This type of '\n", + " 'approach intends to promote the development of '\n", + " 'those peculiar capacities that each one, over '\n", + " 'time, may be able to recognize and enhance. Taking '\n", + " 'charge of the family is inspired by the FCC '\n", + " '(Family Centred Care) work model, started in '\n", + " 'Canada and subsequently developed in different '\n", + " 'geographical areas.',\n", + " 'Geographic Focus': 'Italy, particularly on Piedmont region',\n", + " 'Mission': 'For over twenty years, Paideia has been working '\n", + " 'every day alongside families and children in '\n", + " 'difficulty, promoting effective and innovative '\n", + " 'projects, ensuring the creation of attentive and '\n", + " 'respectful contexts for the needs of children. '\n", + " 'So that no family can feel alone and no child '\n", + " 'excluded.\\n'\n", + " 'Paideia’s aim and objective is to spread a '\n", + " 'culture of childhood and participate in the '\n", + " 'construction of a more inclusive and responsible '\n", + " 'society. Paideia in particular strives daily '\n", + " 'to:\\n'\n", + " '– offer support to the family in difficulty;\\n'\n", + " '– experiment with effective and innovative '\n", + " 'models of social intervention;\\n'\n", + " '– create contexts that favour the serene growth '\n", + " 'of children and the development of their '\n", + " 'potential.',\n", + " 'Programme Areas': 'Training and culture initiatives aimed '\n", + " 'at strengthening the value of inclusion, '\n", + " 'diversity, equal rights and '\n", + " 'possibilities for all, with particular '\n", + " 'attention to the needs of children and '\n", + " 'those who care for them.\\n'\n", + " 'PAIDEIA CENTER: it is an initiative '\n", + " 'started in 2018, which adopts a family '\n", + " 'centerd approach, confirming the '\n", + " 'constant commitment of the Foundation '\n", + " 'alongside families with children with '\n", + " 'disabilities or illness. Each family can '\n", + " 'count on tailor-made support, ensured by '\n", + " 'a project coordinator and a '\n", + " 'multi-professional team. The Center also '\n", + " 'has a library for inclusion where people '\n", + " 'can access books and stories that '\n", + " 'encourage the participation of every '\n", + " 'reader.\\n'\n", + " 'PAIDEIA SOCIAL FARM: the Farm was '\n", + " 'inaugurated in 2019 in Baldissero '\n", + " 'Torinese, just outside the city of '\n", + " 'Torino. It is configured as a space to '\n", + " 'learn, experiment and share together '\n", + " 'experiences in close contact with '\n", + " 'nature. It is a place meant to offer '\n", + " 'opportunities to meet adults and '\n", + " 'children, with particular attention to '\n", + " 'children, young people and young people '\n", + " 'with disabilities and their families, to '\n", + " 'teach them to become protagonists in the '\n", + " 'care of plants and animals, experiment '\n", + " 'experiences of autonomy, and develop '\n", + " 'skills, with a view to empowerment and '\n", + " 'generative welfare. The farm is equipped '\n", + " 'with donkeys, chickens, vegetable '\n", + " 'gardens where aromatic herbs, small '\n", + " 'fruits and saffron are grown. The '\n", + " 'vegetable gardens are all accessible, so '\n", + " 'that everyone can discover the wonder of '\n", + " 'growth and the flowering of nature.'},\n", + " 'position': {'address': 'Via Moncalvo, 1, 10131 Turin, Metropolitan City of '\n", + " 'Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0616438,\n", + " 'lng': 7.702081499999998,\n", + " 'name': 'Via Moncalvo, 1',\n", + " 'place_id': 'ChIJpSp9MZlyiEcRS9_Guuacc6w',\n", + " 'post_code': '10131',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via Moncalvo',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Health',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionepaideia.it'},\n", + " {'address': 'Netherlands',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9508,\n", + " 'link': 'https://philea.eu/members/association-of-foundations-in-the-netherlands-fin/',\n", + " 'name': 'Association of Foundations in the Netherlands (FIN)',\n", + " 'philea_info': {'About': 'The Association of Foundations in the Netherlands '\n", + " '(FIN) is the sector organisation for Dutch '\n", + " 'charitable endowment funds, uniting 355 members in '\n", + " 'the Netherlands.',\n", + " 'Mission': 'The association’s main purpose is to represent '\n", + " 'the members, their interests and the interest of '\n", + " 'philanthropy in general towards the Dutch '\n", + " 'government and politicians. FIN facilitates '\n", + " 'networking between its members and provides a '\n", + " 'platform for the exchange of knowledge, '\n", + " 'experience and new trends in philanthropy.'},\n", + " 'position': {'address': 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.132633,\n", + " 'lng': 5.291265999999999,\n", + " 'name': 'Netherlands',\n", + " 'place_id': 'ChIJu-SH28MJxkcRnwq9_851obM',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://fondseninnederland.nl/'},\n", + " {'address': 'Denmark',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9496,\n", + " 'link': 'https://philea.eu/members/knowledge-centre-for-danish-foundations/',\n", + " 'name': 'Knowledge Centre for Danish Foundations',\n", + " 'philea_info': {'About': 'Knowledge Centre for Danish Foundations (Fondenes '\n", + " 'Videnscenter) was founded in December 2017 by 34 '\n", + " 'of the largest industrial foundations and public '\n", + " 'benefit foundations in Denmark.',\n", + " 'Mission': 'Knowledge Centre for Danish Foundations is a '\n", + " 'member organisation with the purpose of '\n", + " 'supporting a high information level, knowledge '\n", + " 'sharing and co-operation among its members as '\n", + " 'well as monitoring and informing the foundation '\n", + " 'sector and decision makers about Danish '\n", + " 'foundations to further the working conditions of '\n", + " 'Danish foundations.'},\n", + " 'position': {'address': 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 56.26392,\n", + " 'lng': 9.501785,\n", + " 'name': 'Denmark',\n", + " 'place_id': 'ChIJ-1-U7rYnS0YRzZLgw9BDh1I',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': ''},\n", + " {'address': ' Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 '\n", + " 'Wien',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9490,\n", + " 'link': 'https://philea.eu/members/austrian-foundations-association-verband-fur-gemeinnutziges-stiften/',\n", + " 'name': 'Austrian Foundations Association (Verband für Gemeinnütziges '\n", + " 'Stiften)',\n", + " 'philea_info': {'About': 'The Austrian Foundations Association (Verband für '\n", + " 'Gemeinnütziges Stiften) was founded in 2015 to '\n", + " 'improve the amplitude, quality and acceptance of '\n", + " 'charitable funding in Austria.\\xa0 The association '\n", + " 'works independently on supporting and developing '\n", + " 'the local foundation sector. In its work for its '\n", + " 'over 100 member organisations, the association '\n", + " 'concentrates on charitable giving foundations and '\n", + " 'funds, as they are important drivers for '\n", + " 'sustainability and social innovations.',\n", + " 'Mission': 'The Austrian Foundations Association represents '\n", + " 'and connects charitable stakeholders in and for '\n", + " 'Austria and wants to form a movement that '\n", + " 'actively works for Austria’s society in order to '\n", + " 'make it resilient and sustainable.'},\n", + " 'position': {'address': ' Verband für gemeinnütziges Stiften Schottenring '\n", + " '16/3. OG, 1010 Wien',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.2151846,\n", + " 'lng': 16.366538,\n", + " 'place_id': 'ChIJWUNmvrwHbUcRwiwzHXndics',\n", + " 'post_code': '1010',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Schottenring',\n", + " 'street_number': '16',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.gemeinnuetzig-stiften.at/'},\n", + " {'address': 'Croatia',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9486,\n", + " 'link': 'https://philea.eu/members/croatian-foundation-forum/',\n", + " 'name': 'Croatian Foundation Forum',\n", + " 'philea_info': {'About': 'The Croatian Foundations Forum ‘For Wellbeing!’ '\n", + " 'was established in 2008\\n'\n", + " 'and now has 37 members: 21 private foundations, 14 '\n", + " 'public foundations\\n'\n", + " 'and 2 corporate foundations. In 2018 the Forum has '\n", + " 'established the Philanthropy Academy and opened '\n", + " 'the Croatian Philanthropy House in city of Zadar '\n", + " '(Croatia) where the programmees of the Academy '\n", + " 'will be implemented.',\n", + " 'Mission': 'The purpose of the Croatian Foundation Forum '\n", + " '‘For Wellbeing!’ is to support philanthropy '\n", + " 'development in Croatia, provide expert support '\n", + " 'and capacity building to foundations in Croatia '\n", + " 'and individual philantropists, investments in '\n", + " 'social innovations, youth and local community '\n", + " 'development. The Forum is run and co-managed by '\n", + " 'the National Foundation for Civil Society '\n", + " 'Development and the European Foundation for '\n", + " 'Philanthropy and Society Development, both based '\n", + " 'in Zagreb, Croatia.'},\n", + " 'position': {'address': 'Croatia',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.1,\n", + " 'lng': 15.2,\n", + " 'name': 'Croatia',\n", + " 'place_id': 'ChIJ7ZXdCghBNBMRfxtm4STA86A',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': ''},\n", + " {'address': '',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9482,\n", + " 'link': 'https://philea.eu/members/association-of-norwegian-foundations/',\n", + " 'name': 'Association of Norwegian Foundations',\n", + " 'philea_info': {'About': 'Association of Norwegian Foundations '\n", + " '(Stiftelsesforeningen), founded in 2003, is a '\n", + " 'union for all Norwegian foundations, whether these '\n", + " 'are non-profit, gift-giving or own businesses or '\n", + " 'hospitals.',\n", + " 'Mission': 'The purpose of the Association of Norwegian '\n", + " 'Foundation is to support Norwegian foundations '\n", + " 'through issuing statements about legal changes '\n", + " 'affecting foundations, enabling its members to '\n", + " 'exchange information and ideas also strive to '\n", + " 'emphasize the altruistic work of foundations and '\n", + " 'to show the important role of foundations in '\n", + " 'Norwegian society. The association seeks to '\n", + " 'foster dialogue with political authorities, '\n", + " 'government and training of board members and '\n", + " 'daily managers. In addition, the association '\n", + " 'works out templates for good management of '\n", + " 'foundations. It also provides services to '\n", + " 'members in the area of issues related to '\n", + " 'legislation.'},\n", + " 'position': {'address': 'Norway',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 60.47202399999999,\n", + " 'lng': 8.468945999999999,\n", + " 'name': 'Norway',\n", + " 'place_id': 'ChIJv-VNj0VoEkYRK9BkuJ07sKE',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://stiftelsesforeningen.no/medlemmer/stiftelser'},\n", + " {'address': 'Baštová 5, 811 03, Bratislava, Slovak Republic ',\n", + " 'country': 'Slovakia',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9472,\n", + " 'link': 'https://philea.eu/members/center-for-philanthropy/',\n", + " 'name': 'Center for Philanthropy',\n", + " 'philea_info': {'About': 'The\\xa0Center\\xa0for Philanthropy (CpF) was '\n", + " 'founded in August 2002 as a nonprofit\\xa0'\n", + " 'organisation\\u202fto develop philanthropy and '\n", + " 'civil society in Slovakia and to\\xa0make an active '\n", + " 'contribution in developing and cultivating '\n", + " 'charitable giving.',\n", + " 'Mission': 'The\\xa0Centre for Philanthropy (CpF) serves as a '\n", + " 'philanthropic infrastructure to foundations and '\n", + " 'non-profit\\xa0organisations, stimulates giving '\n", + " 'and civic engagement, contributes to the policy '\n", + " 'debate on the legal and fiscal framework for '\n", + " 'civil society. We network active citizens and '\n", + " 'non- governmental\\xa0organisations\\xa0that '\n", + " 'search for resources with donors and facilitate '\n", + " 'the flow of these resources, knowledge and '\n", + " 'information to pursue their public benefit '\n", + " 'goals.\\n'\n", + " 'CpF focuses on the development of corporate '\n", + " 'giving\\xa0through grant programs and services '\n", + " 'provided for corporate donors, companies or '\n", + " 'individuals who want to give their financial '\n", + " 'means, time, energy or abilities to help people '\n", + " 'in need. We provide them with consultancy '\n", + " 'services in identification of themes and their '\n", + " 'processing in the context of grant programs, we '\n", + " 'provide the assistance with resources’ '\n", + " 'distribution through effective and transparent '\n", + " 'grant\\xa0programmes\\xa0and support their '\n", + " 'activities.\\n'\n", + " 'Another focus is on the support of\\xa0individual '\n", + " 'giving\\xa0by developing the online fundraising '\n", + " 'platforms (DARUJME.sk, ludialudom.sk) and online '\n", + " 'crowd-funding platform.\\xa0StartLab, launched in '\n", + " '2015, is a unique and first non-commercial '\n", + " 'crowdfunding platform in Slovakia.\\n'\n", + " 'Together with the\\xa0Pontis Foundation, CpF were '\n", + " 'the initiator of the establishment of the '\n", + " 'Association of Corporate Foundations, an '\n", + " 'informal platform to network members and defend '\n", + " 'the interests of the corporate foundation '\n", + " 'community in Slovakia. Its purpose is to '\n", + " 'contribute to maximizing efficiency and '\n", + " 'transparency in the achievement of their public '\n", + " 'service purpose.'},\n", + " 'position': {'address': 'Baštová 5, 811 03 Bratislava, Slovakia',\n", + " 'country': 'Slovakia',\n", + " 'country_short': 'SK',\n", + " 'lat': 48.1447852,\n", + " 'lng': 17.1058538,\n", + " 'name': 'Baštová 5',\n", + " 'place_id': 'EihCYcWhdG92w6EgNSwgODExIDAzIEJyYXRpc2xhdmEsIFNsb3Zha2lhIlASTgo0CjIJhXAm71yJbEcRogLxSbysQtUaHgsQ7sHuoQEaFAoSCUVKC4NYiWxHEdk5ba82M8wGDBAFKhQKEgl5tSnpXIlsRxF_crYoQE8aZw',\n", + " 'post_code': '811 03',\n", + " 'state': 'Bratislavský kraj',\n", + " 'street_name': 'Baštová',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.cpf.sk/en/'},\n", + " {'address': 'Association for Community Relations Bd. 1 Decembrie 1918, nr.4, '\n", + " 'ap.7 400699 Cluj-Napoca Romania',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 9468,\n", + " 'link': 'https://philea.eu/members/association-for-community-relations-arc/',\n", + " 'name': 'Association for Community Relations (ARC)',\n", + " 'philea_info': {'About': 'ARC is a resource centre for foundations '\n", + " '(corporate and otherwise), individual and family '\n", + " 'philanthropy and a network of community '\n", + " 'foundations. It is not membership- but '\n", + " 'partnership- and coalition-based. For ARC, '\n", + " 'strategic philanthropy, which is rooted in ones’ '\n", + " 'values, changes relations between people and the '\n", + " 'causes they support and creates a strong relation '\n", + " 'between nonprofits and private donors, both '\n", + " 'individuals and companies. And this leads to a '\n", + " 'transformation in the trust fiber of the society; '\n", + " 'creates confidence in our own power and in our '\n", + " 'chance to make a better life for all.',\n", + " 'Mission': 'ARC is about giving hope, with strength from '\n", + " 'all. Responsible philanthropy has the capacity '\n", + " 'to make people think. About the why, about the '\n", + " 'how and about the impact of their giving. But '\n", + " 'most of all, they realise that their giving has '\n", + " 'to be part of a larger context and they start to '\n", + " 'think about alliances, systemic change and '\n", + " 'durability of change.'},\n", + " 'position': {'address': 'Association for Community Relations Bd. 1 Decembrie '\n", + " '1918, nr.4, ap.7 400699 Cluj-Napoca Romania',\n", + " 'city': 'Cluj-Napoca',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 46.7710854,\n", + " 'lng': 23.5756899,\n", + " 'place_id': 'Ej03LCBCdWxldmFyZHVsIDEgRGVjZW1icmllIDE5MTggNCwgQ2x1ai1OYXBvY2EgNDAwNjk5LCBSb21hbmlhIh0aGwoWChQKEgkDxlb5jw5JRxE-UimExciUhBIBNw',\n", + " 'post_code': '400699',\n", + " 'state': 'Județul Cluj',\n", + " 'state_short': 'CJ',\n", + " 'street_name': 'Bulevardul 1 Decembrie 1918',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.arcromania.ro'},\n", + " {'address': 'Zagoriy Foundation 6 Rylskyi Alley 02091 Kyiv Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'info@zagoriy.foundation',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Ukraine']},\n", + " 'id': 5375,\n", + " 'link': 'https://philea.eu/members/zagoriy-foundation/',\n", + " 'name': 'Zagoriy Foundation',\n", + " 'philea_info': {'About': 'Zagoriy Foundation is the only charitable '\n", + " 'organisation that conducts social research about '\n", + " 'charity in Ukraine. They regularly provide grants '\n", + " 'for smaller organisations with the goal of '\n", + " 'developing a culture of charitable giving in '\n", + " 'Ukraine. Furthermore, Zagoriy Foundation helps '\n", + " 'Ukraine’s third sector to develop effective '\n", + " 'capacity building process. Also, the Foundation '\n", + " 'coordinates the “Giving Tuesday” movement in '\n", + " 'Ukraine.',\n", + " 'Geographic Focus': 'Ukraine',\n", + " 'Mission': 'To develop a culture of giving in Ukraine',\n", + " 'Programme Areas': 'Zagoriy Foundation’s activities aim at '\n", + " 'implementing the best European '\n", + " 'philanthropy practices in Ukraine. Main '\n", + " 'programmes are:\\n'\n", + " '– providing grants to non-profits\\n'\n", + " '– supporting organisations which '\n", + " 'activities are crucial for the '\n", + " 'sustainable development of Ukraine\\n'\n", + " '– conducting philanthropy research and '\n", + " 'analytics\\n'\n", + " '– preserving and promoting cultural '\n", + " 'heritage\\n'\n", + " '– strengthening public-private '\n", + " 'cooperation\\n'\n", + " '– implementing information campaigns'},\n", + " 'position': {'address': \"Zagoriy Foundation, Ryl's'kyi Lane, 6, Kyiv, \"\n", + " 'Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.4545967,\n", + " 'lng': 30.51540429999999,\n", + " 'name': 'Zagoriy Foundation',\n", + " 'place_id': 'ChIJVVUVQ1vO1EAROz9Wbz5Kg6o',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv City',\n", + " 'street_name': \"Ryl's'kyi Lane\",\n", + " 'street_name_short': \"Ryl's'kyi Ln\",\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://zagoriy.foundation/'},\n", + " {'address': 'ZEIT-Stiftung Ebelin und Gerd Bucerius Feldbrunnenstraße 56 '\n", + " '20148 Hamburg Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'zeit-stiftung@zeit-stiftung.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Middle East & North Africa (MENA)': ['Israel']},\n", + " 'id': 5357,\n", + " 'link': 'https://philea.eu/members/zeit-stiftung-ebelin-und-gerd-bucerius/',\n", + " 'name': 'ZEIT-Stiftung Ebelin und Gerd Bucerius',\n", + " 'philea_info': {'About': 'The ZEIT-Stiftung promotes research and '\n", + " 'scholarship, art and culture, as well as education '\n", + " 'and training. It also initiates debates on '\n", + " 'political and social topics and provides forums '\n", + " 'for digital development. The foundation realizes '\n", + " 'its aims through its own projects and '\n", + " 'institutions, but it also grants funding to '\n", + " 'individuals and organizations who dare to '\n", + " 'innovate, and thus inspire change in science and '\n", + " 'research, culture and education. The foundation’s '\n", + " 'international activities are centred on Central '\n", + " 'and Eastern Europe as well as Israel, with a '\n", + " 'strong emphasis on intercultural dialogue.',\n", + " 'Geographic Focus': 'Northern Germany, Eastern Europe, '\n", + " 'Israel and US',\n", + " 'Mission': 'They lend their support to creative endeavour '\n", + " 'and open-ended experimentation, but also invest '\n", + " 'in the preservation of our cultural heritage. '\n", + " 'The Foundation helps highly gifted and motivated '\n", + " 'individuals – especially young people – to '\n", + " 'discover and realize their potential. The aim is '\n", + " 'to stimulate intercultural debates and provide '\n", + " 'networking opportunities in the spirit of '\n", + " 'cosmopolitan exchange. The Foundation is '\n", + " 'motivated by the need for open debates on '\n", + " 'current issues in politics, society, culture and '\n", + " 'science, and by the need to find '\n", + " 'interdisciplinary solutions to local as well as '\n", + " 'global challenges.',\n", + " 'Programme Areas': 'The foundation provides support for the '\n", + " 'following areas:\\n'\n", + " '• Research and scholarship\\n'\n", + " '• Art and culture\\n'\n", + " '• Education and training\\n'\n", + " '• Digital Development Research and '\n", + " 'Scholarship\\n'\n", + " 'Supports ground-breaking international '\n", + " 'structures of teaching and research in '\n", + " 'the fields of law, history, and '\n", + " 'humanities and arts; sponsors new fields '\n", + " 'of study; and promotes the talented '\n", + " 'up-and-coming young generation by '\n", + " 'applying an international and '\n", + " 'interdisciplinary approach. In 2000, the '\n", + " 'foundation established the Bucerius Law '\n", + " 'School, the first privately operated law '\n", + " 'school in Germany, with the goal to '\n", + " 'provide prospective law students with an '\n", + " 'alternative to the legal education '\n", + " 'programmes available at German state '\n", + " 'universities. The school offers an '\n", + " 'academically accomplished, '\n", + " 'practice-oriented, and bi-lingual legal '\n", + " 'education with a focus on international '\n", + " 'business law. Furthermore, the '\n", + " 'ZEIT-Stiftung invites 30 students and '\n", + " 'PhD candidates each year to its annual '\n", + " 'summer academy ‘History Takes Place’. In '\n", + " 'addition, it offers a grant programme '\n", + " 'for postgraduates in the fields of law '\n", + " 'and history. Arts and Culture\\n'\n", + " 'Provides funding mainly directed to art '\n", + " 'exhibitions, contemporary music as well '\n", + " 'as literature. In 2002, the foundation '\n", + " 'established its own arts forum, the '\n", + " 'Bucerius Kunst Forum, which presents '\n", + " 'exhibitions ranging from the art of the '\n", + " 'Ancient World to classic modern art. '\n", + " 'Another important funding objective is '\n", + " 'the preservation of cultural heritage, '\n", + " 'such as the restoration of classical '\n", + " 'organs in East Germany, historic '\n", + " 'buildings and churches or precious '\n", + " 'manuscripts. Education and Training\\n'\n", + " 'Supports school projects that prepare '\n", + " 'young people for their professional '\n", + " 'career. Activities include an annual '\n", + " 'summer school which brings together '\n", + " 'young leaders from around the world to '\n", + " 'discuss issues of global governance with '\n", + " 'international experts; a writing '\n", + " 'competition “”Schreibmal”” (time for '\n", + " 'writing); the Gerd Bucerius National '\n", + " 'Library Prize which promotes the '\n", + " 'importance of books as vital '\n", + " 'communicators of education, culture, '\n", + " 'knowledge, tradition and confidence in '\n", + " 'the future; and the Gerd Bucerius Prize '\n", + " '‘Free Press of Eastern Europe’ which '\n", + " 'supports eastern European media and '\n", + " 'journalists in an effort to promote a '\n", + " 'free press under restricted conditions – '\n", + " 'the latter prize is awarded in '\n", + " 'cooperation with the Institusjonen Fritt '\n", + " 'Ord, Oslo. The foundation also runs the '\n", + " 'Dönhoff Scholarship Programme which '\n", + " 'enables young and talented journalists '\n", + " 'from eastern European countries to work '\n", + " 'for the German media and gain experience '\n", + " 'for two months, while their German '\n", + " 'counterparts work at their respective '\n", + " 'editorial offices in return.'},\n", + " 'position': {'address': 'ZEIT-Stiftung Ebelin und Gerd Bucerius, '\n", + " 'Feldbrunnenstraße 56, 20148 Hamburg, Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.56795,\n", + " 'lng': 9.99104,\n", + " 'name': 'ZEIT-Stiftung Ebelin und Gerd Bucerius',\n", + " 'place_id': 'ChIJk0XmyjqPsUcRfRK1jbRx6Bc',\n", + " 'post_code': '20148',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Feldbrunnenstraße',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.zeit-stiftung.de'},\n", + " {'address': 'Wellcome Trust 215 Euston Road NW1 2BE London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'contact@wellcome.ac.uk',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia', 'India'],\n", + " 'Worldwide': ['Worldwide']},\n", + " 'id': 5352,\n", + " 'link': 'https://philea.eu/members/wellcome-trust/',\n", + " 'name': 'Wellcome Trust',\n", + " 'philea_info': {'About': 'The Wellcome Trust was established in 1936 upon '\n", + " 'the death of Sir Henry Wellcome. In his will, '\n", + " 'Wellcome vested the entire share capital of the '\n", + " 'drug company, The Wellcome Foundation Limited, in '\n", + " 'individual trustees. The trustees were charged '\n", + " 'with spending the income according to Sir Henry '\n", + " 'Wellcome’s wishes.',\n", + " 'Geographic Focus': 'UK, but also worldwide including major '\n", + " 'initiatives in Africa, India and '\n", + " 'South-east Asia.',\n", + " 'Mission': 'To achieve extraordinary improvements in human '\n", + " 'and animal health.',\n", + " 'Programme Areas': 'The Trust supports the brightest minds '\n", + " 'in biomedical research and the medical '\n", + " 'humanities, with the aim of improving '\n", + " 'human and animal health. It offers a '\n", + " 'wide variety of funding schemes, '\n", + " 'including Investigator Awards, '\n", + " 'fellowships and Strategic Awards, and '\n", + " 'also supports several major initiatives. '\n", + " 'There are six funding areas: • '\n", + " 'Biomedical science – Investigating '\n", + " 'health and disease in humans and '\n", + " 'animals\\n'\n", + " '• Technology transfer – Helping the '\n", + " 'development of innovative, early-stage '\n", + " 'projects with potential medical '\n", + " 'applications\\n'\n", + " '• International – Supporting research, '\n", + " 'capacity building and engagement '\n", + " 'activities in low- and middle-income '\n", + " 'countries.\\n'\n", + " '• Public engagement – Imaginative and '\n", + " 'experimental projects that bring biology '\n", + " 'and medicine to new audiences\\n'\n", + " '• Medical history and humanities – '\n", + " 'Research at the interface of medical '\n", + " 'science, history and the wider '\n", + " 'humanities\\n'\n", + " '• Biomedical ethics – Supporting '\n", + " 'research into ethical dilemmas in the '\n", + " 'development and delivery of healthcare'},\n", + " 'position': {'address': 'Wellcome Trust, 215 Euston Road, London NW1 2BE, '\n", + " 'United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5255527,\n", + " 'lng': -0.1351949,\n", + " 'name': 'Wellcome Trust',\n", + " 'place_id': 'ChIJt_RE_iUbdkgRJUATGZFZC40',\n", + " 'post_code': 'NW1 2BE',\n", + " 'state': 'England',\n", + " 'street_name': 'Euston Road',\n", + " 'street_name_short': 'Euston Rd',\n", + " 'street_number': '215',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.wellcome.ac.uk'},\n", + " {'address': 'VolkswagenStiftung Kastanienallee 35 30519 Hannover Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@volkswagenstiftung.de',\n", + " 'geo_locations': {'Worldwide': ['International']},\n", + " 'id': 5350,\n", + " 'link': 'https://philea.eu/members/volkswagenstiftung/',\n", + " 'name': 'VolkswagenStiftung',\n", + " 'philea_info': {'About': 'VolkswagenStiftung was established in 1961, and '\n", + " 'started its activities in the spring of 1962. Its '\n", + " 'origins are based on a government treaty between '\n", + " 'the Federal Republic of Germany and the State of '\n", + " 'Lower Saxony, which settled the controversy over '\n", + " 'the ownership of the Volkswagen factories after '\n", + " '1945. The then Volkswagen GmbH was converted into '\n", + " 'a joint stock company under German law. The '\n", + " 'proceeds were transferred to the Volkswagen '\n", + " 'Foundation.',\n", + " 'Geographic Focus': 'International',\n", + " 'Mission': 'VolkswagenStiftung is dedicated to the support '\n", + " 'of the humanities and social sciences as well as '\n", + " 'science and technology in higher education and '\n", + " 'research. It funds research projects and '\n", + " 'provides assistance to academic institutions for '\n", + " 'the improvement of the structural conditions for '\n", + " 'their work. In particular, the Foundation '\n", + " 'perceives its mission in supporting aspiring '\n", + " 'young researchers and in promoting '\n", + " 'interdisciplinary and international '\n", + " 'collaboration.',\n", + " 'Programme Areas': 'The Foundation focuses its funding '\n", + " 'activities on selected initiatives. By '\n", + " 'means of these initiatives, it '\n", + " 'endeavours to provide effective stimuli '\n", + " 'for research and to establish '\n", + " 'forward-looking topics. The funding '\n", + " 'initiatives are grouped into the areas: '\n", + " '• Persons and Structures\\n'\n", + " '• Challenges – for Academia and Society\\n'\n", + " '• International Focus\\n'\n", + " '• Research in the Digital Age\\n'\n", + " '• Completed Initiatives In addition to '\n", + " 'its funding initiatives, the Foundation '\n", + " 'is providing support for: • Research '\n", + " 'institutions in Lower Saxony: '\n", + " 'Niedersächsisches Vorab\\n'\n", + " '• Outstanding projects which do not fit '\n", + " 'into its current funding initiatives: '\n", + " 'Off the beaten track\\n'\n", + " '• Supporting grantees’ interaction with '\n", + " 'the public and with the scientific '\n", + " 'community at large: Communicating '\n", + " 'Science and Research The Foundation '\n", + " 'organise also a program of events. '\n", + " 'Events of the Volkswagen Foundation are '\n", + " 'aimed at strengthening the bond between '\n", + " 'science and society at large and '\n", + " 'generating fresh impetus for the '\n", + " 'transfer of research results. Persons '\n", + " 'and Structures • Lichtenberg '\n", + " 'professorships: provides support to '\n", + " 'junior academics in connection with '\n", + " 'innovative fields of research located '\n", + " 'between the disciplines as well as new '\n", + " 'teaching concepts within the respective '\n", + " 'research environment\\n'\n", + " '• Opus Magnum: the initiative aims at '\n", + " 'providing more freedom for writing a '\n", + " 'larger scholarly treatise to professors '\n", + " 'from the humanities and social sciences '\n", + " 'who have already achieved a degree of '\n", + " 'renown by virtue of (a first) '\n", + " 'outstanding research performance.\\n'\n", + " '• ‘Freigeist’ Fellowships: The '\n", + " '‘Freigeist’ scheme is deliberately left '\n", + " 'open to all disciplines and topics. The '\n", + " 'main focus is on junior researchers (up '\n", + " 'to 5 years of postdoctoral experience). '\n", + " 'It offers freedom for creative thinking, '\n", + " 'whilst at the same time security for at '\n", + " 'least 5 years and in the long run the '\n", + " 'opportunity to establish a career within '\n", + " 'a scientific research organization or '\n", + " 'university in Germany.\\n'\n", + " '• Research in Museums\\n'\n", + " '• University of the Future: aims to '\n", + " 'support projects on structural '\n", + " 'innovation and to promote the '\n", + " 'internationalization of German '\n", + " 'universities.\\n'\n", + " '• Call: Arts and Science Challenges – '\n", + " 'For Academia and Society • Symposia and '\n", + " 'SummerSchools: to support events in all '\n", + " 'subject areas dealing with new ideas and '\n", + " 'research approaches in order to '\n", + " 'encourage innovative event formats as '\n", + " 'well as new ways of supporting '\n", + " 'interaction and networking among the '\n", + " 'participants. Future Issues of Our '\n", + " 'Society: analysis, advice and '\n", + " 'communication between academia and '\n", + " 'practice.\\n'\n", + " '• Macroscopic Functional Systems … : to '\n", + " 'promote the advancement of molecular or '\n", + " 'nanoscale units to more complex '\n", + " 'functional systems at a macroscopic '\n", + " 'scale.\\n'\n", + " '• Experiment!\\n'\n", + " '• “Original – isn’t it?” : to promote '\n", + " 'the exploration of research ideas of '\n", + " 'groundbreaking originality in the '\n", + " 'humanities and cultural studies.\\n'\n", + " '• Life? : encourages projects that '\n", + " 'contribute to comprehending fundamental '\n", + " 'principles of life by working with '\n", + " 'systems resembling those of living ones '\n", + " 'or by exploring chemical and physical '\n", + " 'cellular processes. International Focus '\n", + " 'The funding initiatives relating to '\n", + " 'other countries serve international '\n", + " 'cooperation and the systematic support '\n", + " 'of institutions and projects outside '\n", + " 'Germany.\\n'\n", + " '• Knowledge for Tomorrow: cooperative '\n", + " 'research projects in Sub-Saharan Africa\\n'\n", + " '• Between Europe and the Orient: a focus '\n", + " 'on research and higher education in/on '\n", + " 'Central Asia and the Caucasus\\n'\n", + " '• Europe and Global Challenges\\n'\n", + " '• Call : Arab World : support for '\n", + " 'cooperative research projects focusing '\n", + " 'on the Arab world and addressing issues '\n", + " 'related to “experience of violence”, '\n", + " '“trauma relief”, and “commemorative '\n", + " 'culture”.\\n'\n", + " '• “Postdoctoral Fellowships in the '\n", + " 'Humanities at Universities and Research '\n", + " 'Institutes in Germany and the USA” aims '\n", + " 'to strengthen transatlantic academic '\n", + " 'relations, especially in the field of '\n", + " 'the Humanities. In this funding '\n", + " 'initiative, the Volkswagen Foundation '\n", + " 'works closely with the Andrew W. Mellon '\n", + " 'Foundation, New York. Research in the '\n", + " 'Digital Age International Research in '\n", + " 'Computational Social Sciences\\n'\n", + " '‘Mixed Methods’ in the Humanities\\n'\n", + " 'Science and Data-Driven Journalism '\n", + " 'Events Since 2012 the Volkswagen '\n", + " 'Foundation has been holding all its '\n", + " 'funded international scientific '\n", + " 'conferences and public events in the '\n", + " 'Herrenhausen Palace Conference Center in '\n", + " 'Hannover. The background idea is to '\n", + " 'further discourses on current research '\n", + " 'issues and provide stimulus for the '\n", + " 'transfer of knowledge to the general '\n", + " 'public. The Foundation also welcomes '\n", + " 'proposals to hold symposia and summer '\n", + " 'schools at the Herrenhausen Palace '\n", + " 'Conference Center.'},\n", + " 'position': {'address': 'VolkswagenStiftung, Kastanienallee 35, 30519 '\n", + " 'Hannover, Germany',\n", + " 'city': 'Hannover',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.3325449,\n", + " 'lng': 9.7682695,\n", + " 'name': 'VolkswagenStiftung',\n", + " 'place_id': 'ChIJ48hYtucKsEcR2nkI49fN6hU',\n", + " 'post_code': '30519',\n", + " 'state': 'Niedersachsen',\n", + " 'state_short': 'NDS',\n", + " 'street_name': 'Kastanienallee',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.volkswagenstiftung.de'},\n", + " {'address': 'Vodafone Stiftung Deutschland Ferdinand-Braun-Platz 1 40549 '\n", + " 'Düsseldorf Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@vodafone-stiftung.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Germany']},\n", + " 'id': 5349,\n", + " 'link': 'https://philea.eu/members/vodafone-stiftung-deutschland/',\n", + " 'name': 'Vodafone Stiftung Deutschland',\n", + " 'philea_info': {'About': 'The Vodafone Stiftung is one of the largest '\n", + " 'company-related foundations in Germany. It '\n", + " 'supports and initiates projects with the goaI of '\n", + " 'providing impetus to social progress in order to '\n", + " 'assume social policy responsibility.',\n", + " 'Geographic Focus': 'Germany',\n", + " 'Mission': 'To recognise challenges and chances, to give '\n", + " 'support and eventually to make a difference.',\n", + " 'Programme Areas': 'The Vodafone Foundation Germany '\n", + " 'concentrates on the areas of education, '\n", + " 'integration and social mobility. The '\n", + " 'Foundation is committed to these areas, '\n", + " 'with long-term programme funding, '\n", + " 'awards, competitions and grants, as well '\n", + " 'as a think tank. The Foundation is '\n", + " 'concerned with realising ideas and '\n", + " 'programmes that provide answers to '\n", + " 'societal problems and challenges. A '\n", + " 'particular focus of the Foundations work '\n", + " 'are young people—children, youths and '\n", + " 'young adults—whose development the '\n", + " 'Foundation wants to support and foster. '\n", + " 'The programmes are the following: – '\n", + " 'Vodafone Scholarship Programme\\n'\n", + " '– Deutscher Lehrerpreis – German Award '\n", + " 'for Innovative Teaching\\n'\n", + " '– Ideas for the educational republic\\n'\n", + " '– Vodafone Talents\\n'\n", + " '– buddY Programme\\n'\n", + " '– familY Programme\\n'\n", + " '– Off Road Kids\\n'\n", + " '– Düsseldorf ist ARTig – Düsseldorf is '\n", + " 'arty\\n'\n", + " '– Paediatric Pain Therapy Vodafone '\n", + " 'Scholarship Programme\\n'\n", + " 'The Vodafone Foundation Germany wants to '\n", + " 'open new educational opportunities to '\n", + " 'young people with migrant backgrounds '\n", + " 'who want to live and work in Germany. '\n", + " 'Since the winter term 2006/2007, the '\n", + " 'Foundation has offered the Vodafone '\n", + " 'Scholarship Programme, the nationwide '\n", + " 'only scholarship programme for students '\n", + " 'with migrant backgrounds at selected '\n", + " 'universities. German Award for '\n", + " 'Innovative Teaching\\n'\n", + " 'A nationwide competition for dedicated '\n", + " 'and creative teachers at German schools. '\n", + " 'Teachers present ideas for innovative '\n", + " 'lessons — and students join in. Society '\n", + " 'as a whole and the life of each student '\n", + " 'is unimaginable without the great '\n", + " 'personal commitment of teachers. School '\n", + " 'shapes one for life. To do their jobs, '\n", + " 'teachers require more than just support, '\n", + " 'they also need recognition. The German '\n", + " 'Award for Innovative Teaching has the '\n", + " 'aim of increasing public appreciation of '\n", + " 'the teaching profession. Ideas for the '\n", + " 'educational republic\\n'\n", + " 'The competition recognises initiatives, '\n", + " 'institutions and societies/associations '\n", + " 'which are demonstrating a long-term '\n", + " 'commitment to a level playing field in '\n", + " 'education for children and young people. '\n", + " 'Vodafone Talents\\n'\n", + " 'The Think Tank project, Vodafone Talents '\n", + " 'creates a conversation between education '\n", + " 'researchers, politicians and experts '\n", + " 'from school administration and education '\n", + " 'ministries, as well as practitioners '\n", + " 'from schools and work with parents. This '\n", + " 'is to develop instruments that equip '\n", + " 'parents to make decisions and sensitise '\n", + " 'teachers to social differences, and '\n", + " 'provide support when recommending '\n", + " 'schools. To do this, Vodafone Talents '\n", + " 'takes a holistic view of decision-making '\n", + " 'skills and the decision architecture. '\n", + " 'The buddY Programme\\n'\n", + " '“Looking out for each other. – Being '\n", + " 'there for one another. Learning '\n", + " 'together.” This is the motto of the '\n", + " 'buddY Programme to develop the social '\n", + " 'skills of schoolchildren, which has been '\n", + " 'running and continuously expanding since '\n", + " '1999. The familY Programme\\n'\n", + " 'This new pilot project consciously '\n", + " 'approaches the family as a central '\n", + " 'institution for learning. The '\n", + " 'overarching aim of the familY Programme '\n", + " 'is to improve children’s starting '\n", + " 'conditions for learning, to increase '\n", + " 'educational opportunities, and to '\n", + " 'strengthen equal opportunities in our '\n", + " 'society. Families, children and parents '\n", + " 'benefit from this Programme in different '\n", + " 'ways. Off Road Kids\\n'\n", + " 'No child in Germany should have to live '\n", + " 'on the streets. This is the declared '\n", + " 'goal of the Off Road Kids aid '\n", + " 'organisation. The Vodafone Foundation '\n", + " 'Germany helps energetically and finances '\n", + " 'the four Off Road Kids Street Work '\n", + " 'Stations in Berlin, Hamburg, Dortmund '\n", + " 'and Cologne. Düsseldorf ist ARTig\\n'\n", + " 'Funded by the Vodafone Foundation '\n", + " 'Germany, this major art competition '\n", + " 'offers young people in and around '\n", + " 'Dusseldorf the opportunity to realise '\n", + " 'their own artistic ideas with the '\n", + " 'support of experienced artists. '\n", + " 'DÜSSELDORF IST ARTIG has established '\n", + " 'itself as an integral component of '\n", + " 'fostering young artistic talent. The aim '\n", + " 'is “give us room for artistic ideas, '\n", + " 'view young culture as a resource, not a '\n", + " 'threat, and listen to the experts — to '\n", + " 'young people!” Paediatric Pain Therapy\\n'\n", + " 'Recognise responsibility. Support the '\n", + " 'disadvantaged. Minimising the suffering '\n", + " 'of children with chronic pain or '\n", + " 'life-shortening illnesses through '\n", + " 'research and therapy is the goal of the '\n", + " 'Vodafone Foundation Institute for '\n", + " 'Paediatric Pain Therapy in Datteln. With '\n", + " 'this Institute, the Foundation is taking '\n", + " 'responsibility for an interdisciplinary '\n", + " 'concept that is both new and unique in '\n", + " 'Germany. It includes in- and out-patient '\n", + " 'treatment of children who are in pain, '\n", + " 'as well as clinical research. '\n", + " 'Witten/Herdecke university has set up '\n", + " 'the world´s first Chair of Paediatric '\n", + " 'Palliative Medicine, financed by the '\n", + " 'Foundation. The medical and psychosocial '\n", + " 'care of children who are suffering from '\n", + " 'life-shortening illnesses is only '\n", + " 'beginning in Germany. The Chair ensures '\n", + " 'an interdisciplinary knowledge transfer '\n", + " 'into the healthcare system. In this '\n", + " 'regard, the Chair of Paediatric '\n", + " 'Palliative Medicine is performing '\n", + " 'pioneering work.'},\n", + " 'position': {'address': 'Vodafone Office, Ferdinand-Braun-Platz, Düsseldorf, '\n", + " 'Germany',\n", + " 'city': 'Düsseldorf',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.2351599,\n", + " 'lng': 6.732056399999999,\n", + " 'name': 'Vodafone Office',\n", + " 'place_id': 'ChIJCyBxiOG1uEcRBQ2qhl38B1Y',\n", + " 'post_code': '40549',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Ferdinand-Braun-Platz',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vodafone-stiftung.de'},\n", + " {'address': 'The VELUX Foundations Tobaksvejen 10 2860 Søborg Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'info@veluxfoundations.dk',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5346,\n", + " 'link': 'https://philea.eu/members/velux-foundations-the/',\n", + " 'name': 'VELUX Foundations, The',\n", + " 'philea_info': {'About': 'The Velux Foundations are comprised of the two '\n", + " 'non-profit, private charitable foundations Velux '\n", + " 'Fonden (1971) and Villum Fonden (1981). Both '\n", + " 'foundations were created by Villum Kann Rasmussen '\n", + " '– the Danish founder of Velux and other companies '\n", + " 'in the VKR Group. The VKR Group expanded from a '\n", + " 'one-man business to an international corporation '\n", + " 'that today employs over 13,500 people in 40 '\n", + " 'countries. Today, the VKR Group is owned by '\n", + " 'foundations and family members of Mr Kann '\n", + " 'Rasmussen, and its focus remains on providing '\n", + " 'people with more daylight, fresh air and a better '\n", + " 'indoor environment. The major shareholder of VKR '\n", + " 'Holding is the foundation VILLUM FONDEN. During '\n", + " 'its history, VILLUM FONDEN and VELUX FONDEN have '\n", + " 'made a total of DKK 7.4 billion in grants to all '\n", + " 'manner of non-profit projects.',\n", + " 'Geographic Focus': 'Primarily Denmark but increasingly '\n", + " 'international.',\n", + " 'Mission': 'The mission of the Foundations is to support '\n", + " 'non-profit organisations or individuals in '\n", + " 'carrying out projects that support fundamental '\n", + " 'areas of the civil society such as research in '\n", + " 'technical, natural, health and human sciences '\n", + " 'along with environmental, social, cultural '\n", + " 'purposes. It is therefore a precondition for the '\n", + " 'activities that the grants seek to make a '\n", + " 'significant difference to those areas in the '\n", + " 'civil society and to the individual grantees.',\n", + " 'Programme Areas': 'The foundations have separate programme '\n", + " 'areas: VILLUM Foundation:\\n'\n", + " 'The foundation supports research in the '\n", + " 'technical and natural sciences, as well '\n", + " 'as environmental, social and cultural '\n", + " 'projects in Denmark and abroad. The '\n", + " 'foundation is responsible for awarding '\n", + " 'the Villum Kann Rasmussen Annual Award '\n", + " 'in Science and Technology. VELUX '\n", + " 'Foundation:\\n'\n", + " 'The foundation supports scientific, '\n", + " 'cultural, social and environmental '\n", + " 'projects that seek to advance an '\n", + " 'informed, open, inclusive and '\n", + " 'sustainable society. The foundation’s '\n", + " 'priority areas are: active senior '\n", + " 'citizens, ophthalmology and '\n", + " 'gerontology.'},\n", + " 'position': {'address': 'THE VELUX FOUNDATIONS, Tobaksvejen 10, 2860 Søborg, '\n", + " 'Denmark',\n", + " 'city': 'Søborg',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.74046800000001,\n", + " 'lng': 12.480344,\n", + " 'name': 'THE VELUX FOUNDATIONS',\n", + " 'place_id': 'ChIJjZFSlN1RUkYRfCw0SHUZkhE',\n", + " 'post_code': '2860',\n", + " 'street_name': 'Tobaksvejen',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.veluxfoundations.dk'},\n", + " {'address': 'Vehbi Koç Vakfi Nakkastepe, Azizbey Sokak No.1, Kuzguncuk 34674 '\n", + " 'Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@vkv.org.tr',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Turkey']},\n", + " 'id': 5345,\n", + " 'link': 'https://philea.eu/members/vehbi-koc-foundation/',\n", + " 'name': 'Vehbi Koç Foundation',\n", + " 'philea_info': {'About': 'The Vehbi Koç Foundation (Vehbi Koç Vakfı) was '\n", + " 'first endowed on 17 January 1969. Its '\n", + " 'establishment made it the first major private '\n", + " 'foundation of the Turkish Republic and brought '\n", + " 'about a revival of the age-old tradition of the '\n", + " 'Vakıf – philanthropic endowments for the public '\n", + " 'good. The foundation has since then carried out a '\n", + " 'large number of activities in the fields of '\n", + " 'education, healthcare and culture – all of which '\n", + " 'are of utmost importance to the nation’s wellbeing '\n", + " 'and further development – and has become a role '\n", + " 'model to a great many other philanthropists. In '\n", + " 'its first years, the foundation used its resources '\n", + " 'to fund the establishment of several schools, '\n", + " 'student dormitories, libraries and clinics, '\n", + " 'handing each over to the relevant public '\n", + " 'administration. Later, it pioneered the setting up '\n", + " 'of a number of major not-for-profit institutions '\n", + " 'in each of its focus areas of education, '\n", + " 'healthcare and culture. Throughout its history, '\n", + " 'the foundation has provided thousands of '\n", + " 'scholarships to help talented students in need '\n", + " 'attain equal opportunity in education.\\n'\n", + " 'With significant investments and commitments made '\n", + " 'in the field of education, healthcare and culture, '\n", + " 'the Koç Family and the Vehbi Koç Foundation take '\n", + " 'pride in being appreciated by many reputable '\n", + " 'institutions in the international arena. The Koç '\n", + " 'Family and the Vehbi Koç Foundation is the only '\n", + " 'Family and Institution to receive all three of '\n", + " 'these prominent awards: World Monument Fund – '\n", + " '‘Hadrian Award’ (2007), Carnegie Foundation -‘ '\n", + " 'Carnegie Medal of Philanthropy’ (2009), BNP '\n", + " 'Paribas – ‘Grand Prize for Individual '\n", + " 'Philanthropy’ (2011).',\n", + " 'Geographic Focus': 'Turkey',\n", + " 'Mission': 'To create institutionalised and sustainable '\n", + " 'charitable services to serve the Turkish people '\n", + " 'in the areas of education, health care and '\n", + " 'cultural heritage.',\n", + " 'Programme Areas': 'The foundation serves the community by '\n", + " 'supporting existing active organisations '\n", + " 'in its fields of interest and providing '\n", + " 'scholarships to financially '\n", + " 'disadvantaged youth, as well as forming '\n", + " 'and operating other establishments. Its '\n", + " 'activities are concentrated in the '\n", + " 'following areas:\\n'\n", + " '• Education\\n'\n", + " '• Health care\\n'\n", + " '• Cultural heritage Education\\n'\n", + " 'Strives to raise the society’s standards '\n", + " 'to a higher level by establishing '\n", + " 'educational institutions which focus on '\n", + " 'achieving top quality. In line with the '\n", + " 'above principle, the foundation founded '\n", + " 'the Vehbi Koç Vakfi University, Koç '\n", + " 'Private Elementary and High School. The '\n", + " 'foundation also awards scholarships to '\n", + " 'talented students in need of financial '\n", + " 'support, with the aim of establishing '\n", + " 'the principle of equal opportunity in '\n", + " 'education. In addition, the foundation '\n", + " 'completed the ‘Eight Year Continuous '\n", + " 'Education’ campaign by building 13 '\n", + " 'primary schools in 10 provinces in 2001. '\n", + " 'Health Care\\n'\n", + " 'Seeks to create models that provide a '\n", + " 'high standard of health care and create '\n", + " 'permanent facilities for the benefit of '\n", + " 'the country. Activities include the '\n", + " 'purchase and expansion of the American '\n", + " 'Hospital in Istanbul and the opening of '\n", + " 'the Italian Oncology and Rehabilitation '\n", + " 'Hospital. The Semahat Arsel Nursing '\n", + " 'Education and Research Centre was added '\n", + " 'on to the hospital to raise the level of '\n", + " 'knowledge in the nursing profession and '\n", + " 'to improve the quality of patient care. '\n", + " 'Scholarships are granted to nurses to '\n", + " 'continue their training. Cultural '\n", + " 'Heritage\\n'\n", + " 'Concentrates on preserving Turkey’s '\n", + " 'cultural heritage through various '\n", + " 'museums and research centres including '\n", + " 'the Sadberk Hanim Museum, Turkey’s first '\n", + " 'private museum with an expansive '\n", + " 'archaeological and fine arts collection; '\n", + " 'the Suna-Inan Kiraç Research Institute '\n", + " 'on Mediterranean Civilisations, which '\n", + " 'carries out research in archaeology and '\n", + " 'indigenous cultures, and a research '\n", + " 'centre on Vehbi Koç and Ankara. Support '\n", + " 'is also given for cultural and artistic '\n", + " 'projects that seek to enrich the '\n", + " 'cultural life of the nation and for '\n", + " 'archaeological excavations in Turkey.'},\n", + " 'position': {'address': 'Kuzguncuk, Vehbi Koç Vakfı, Nakkaştepe, Aziz Bey '\n", + " 'Sokak No: 1, 34674 Üsküdar/İstanbul, Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0318529,\n", + " 'lng': 29.0384855,\n", + " 'name': 'Vehbi Koç Vakfı',\n", + " 'place_id': 'ChIJDySJjRq3yhQRQwAq8FxSSoA',\n", + " 'post_code': '34674',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Aziz Bey Sokak',\n", + " 'street_name_short': 'Aziz Bey Sk.',\n", + " 'street_number': 'No: 1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vkv.org.tr'},\n", + " {'address': 'Van Leer Group Foundation Lange Houtstraat 2 2511 CW Den Haag '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'mail@vanleergroup.org',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5344,\n", + " 'link': 'https://philea.eu/members/van-leer-group-foundation/',\n", + " 'name': 'Van Leer Group Foundation',\n", + " 'philea_info': {'About': 'The Van Leer Group Foundation is a privately '\n", + " 'endowed charitable organisation established in '\n", + " '1979 by Oscar Van Leer. It performs the holding '\n", + " 'function for all the Van Leer charitable '\n", + " 'activities and as such supervises its investment '\n", + " 'portfolio and the governance of its charitable '\n", + " 'activities. The Van Leer charitable activities are '\n", + " 'presently embodied in the Van Leer Group '\n", + " 'Foundation in Amstelveen, the Bernard Van Leer '\n", + " 'Foundation in The Hague, Van Leer Jerusalem '\n", + " 'Institute and Jerusalem Film Centre.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'To promote the optimum development of socially '\n", + " 'and economically disadvantaged children up to '\n", + " 'the age of eight, with the objective of '\n", + " 'developing their innate potential to the '\n", + " 'greatest possible extent; to contribute to the '\n", + " 'development and strengthening of a Jewish, '\n", + " 'democratic national home in Israel committed to '\n", + " 'a free, equitable and just society for all of '\n", + " 'its citizens, and to contribute to the pursuit '\n", + " 'of regional peace for the benefit of social, '\n", + " 'cultural and individual lives in Israel; and to '\n", + " 'promote and further the continuity and the '\n", + " 'preservation of the identity of the Van Leer '\n", + " 'Entity.',\n", + " 'Programme Areas': 'The foundation’s programmes focus on its '\n", + " 'three objectives: • Early childhood '\n", + " 'development\\n'\n", + " '• The improvement of social and cultural '\n", + " 'conditions in Israel\\n'\n", + " '• The promotion of the Van Leer Entity '\n", + " 'Early Childhood Development\\n'\n", + " 'Promotes the optimum development of '\n", + " 'socially and economically disadvantaged '\n", + " 'children up to the age of 8, with the '\n", + " 'objective of developing their innate '\n", + " 'potential to the greatest extent '\n", + " 'possible. The Improvement of Social and '\n", + " 'Cultural Conditions in Israel\\n'\n", + " 'Contributes to the development and '\n", + " 'strengthening of a Jewish democratic '\n", + " 'national home in Israel committed to a '\n", + " 'free, equitable and just society for all '\n", + " 'its citizens; and contributes to the '\n", + " 'pursuit of regional peace, for the '\n", + " 'benefit and betterment of social, '\n", + " 'cultural and individual lives in Israel. '\n", + " 'The Promotion of the Van Leer Entity\\n'\n", + " 'The Van Leer Entity embodies the '\n", + " 'philanthropic goals of the Van Leer '\n", + " 'family. VLGF takes a particular '\n", + " 'responsibility with respect to the way '\n", + " 'in which the legacy of the Van Leer '\n", + " 'family is translated into existing and '\n", + " 'new humanitarian ventures and income '\n", + " 'generating activities. As a holding '\n", + " 'foundation, VLGF is responsible for the '\n", + " 'governance issues, such as the board '\n", + " 'composition, profile of members, '\n", + " 'geographical composition and tenure of '\n", + " 'itself and of the Bernard Van Leer '\n", + " 'Foundation and Crecor B.V.'},\n", + " 'position': {'address': 'Bernard van Leer Foundation, Lange Houtstraat 2, '\n", + " '2511 CW Den Haag, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0807884,\n", + " 'lng': 4.3156968,\n", + " 'name': 'Bernard van Leer Foundation',\n", + " 'place_id': 'ChIJ5WRAtDy3xUcRG3BgSnLCbdc',\n", + " 'post_code': '2511 CW',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Lange Houtstraat',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.vanleergroupfoundation.nl'},\n", + " {'address': 'UniCredit Foundation Piazza Gae Aulenti, 3 – Tower A, 25th floor '\n", + " '20154 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@unicreditfoundation.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Burkina Faso'],\n", + " 'Europe (Central & Eastern / Balkans)': ['Bulgaria',\n", + " 'Croatia',\n", + " 'Czech Republic',\n", + " 'Hungary',\n", + " 'Poland',\n", + " 'Romania',\n", + " 'Slovakia',\n", + " 'Slovenia'],\n", + " 'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Europe (Western / General)': ['Austria', 'Germany']},\n", + " 'id': 5337,\n", + " 'link': 'https://philea.eu/members/unicredit-foundation/',\n", + " 'name': 'UniCredit Foundation',\n", + " 'philea_info': {'About': 'UniCredit Foundation works through the promotion '\n", + " 'of social cohesion processes in the territories '\n", + " 'and through social entrepreneurship, considered a '\n", + " 'capable tool for producing and delivering goods '\n", + " 'and services for social utility.\\n'\n", + " 'The Foundation is a competence center for '\n", + " 'UniCredit on issues of philanthropy and the third '\n", + " 'sector. In particular, the foundation offers '\n", + " 'advice and organises activities for the Group '\n", + " 'companies and their customers.\\n'\n", + " 'Lastly, UniCredit Foundation promotes a culture of '\n", + " 'volunteering and giving to the community through '\n", + " 'the dedicated efforts of all the employees, '\n", + " 'encouraging their participation in social '\n", + " 'activities and projects.',\n", + " 'Geographic Focus': 'The 22 countries were UniCredit Group '\n", + " 'is present. In the last few years '\n", + " 'initiatives have mainly been in '\n", + " 'Austria, Bosnia and Herzegovina, '\n", + " 'Bulgaria, Croatia, Czech Republic, '\n", + " 'Germany, Hungary, Italy, Poland, '\n", + " 'Romania, Russia, Serbia, Slovakia, '\n", + " 'Slovenia. The foundation also operates '\n", + " 'in Burkina Faso and Benin.',\n", + " 'Mission': 'UniCredit Foundation is a corporate foundation '\n", + " 'that was established in 2003 in order to '\n", + " 'contribute to the development of solidarity and '\n", + " 'philanthropy in the communities and territories '\n", + " 'where UniCredit operates, primarily in the '\n", + " 'regions where UniCredit is present (17 countries '\n", + " 'including Europe and Central Asia). Through the '\n", + " 'transfer of financial resources and the typical '\n", + " 'management skills of a company, UniCredit '\n", + " 'Foundation supports projects of significant '\n", + " 'social impact and innovation, implemented by '\n", + " 'local non-profit organizations.',\n", + " 'Programme Areas': 'The foundation focuses on the following '\n", + " 'areas of interest: • Primary healthcare\\n'\n", + " '• Migrations Programme\\n'\n", + " '• Social Business\\n'\n", + " '• Social enterprise\\n'\n", + " '• Other initiatives Primary Healthcare\\n'\n", + " 'UniCredit Foundation’s projects promote '\n", + " 'a multi-sector approach, which combines '\n", + " 'actions designed to restore public '\n", + " 'healthcare and extend the coverage of '\n", + " 'essential health services, with actions '\n", + " 'aimed at improving social and economic '\n", + " 'conditions of the local communities. The '\n", + " 'foundation’s main initiatives are '\n", + " 'focused on the rural areas of Benin and '\n", + " 'Burkina Faso. Migrations Programme\\n'\n", + " 'The Migrations Programme has been '\n", + " 'promoted by UniCredit Foundation within '\n", + " 'UniCredit, with the main goal of '\n", + " 'increasing awareness and culture about '\n", + " 'the phenomenon of international '\n", + " 'migrations. This multi-year programme '\n", + " 'targets the 22 countries where UniCredit '\n", + " 'is present – which are to some extent '\n", + " 'affected by migrations flows and '\n", + " 'effects. The programme consists of the '\n", + " 'following main components: • Development '\n", + " 'Projects to support, in each country, '\n", + " 'social initiatives focusing on relevant '\n", + " 'local issues related to migration\\n'\n", + " '• Employee Community Involvement (ECI) '\n", + " 'activities to offer for direct '\n", + " 'involvement of UniCredit Colleagues, '\n", + " 'giving them different possibilities to '\n", + " 'learn, express their passions and engage '\n", + " 'directly Visit the dedicated website '\n", + " 'migrations.unicreditfoundation.org '\n", + " 'Social Business\\n'\n", + " 'Since 2008 UniCredit Foundation has '\n", + " 'dedicated particular attention to the '\n", + " 'concept of microcredit as the only '\n", + " 'relevant instrument to fight poverty and '\n", + " 'promote social inclusion based on '\n", + " 'mechanisms characteristic of the banking '\n", + " 'world. In June of that year, a '\n", + " 'feasibility study was launched in '\n", + " 'collaboration with the University of '\n", + " 'Bologna and Grameen Trust to verify the '\n", + " 'opportunity to set up a micro finance '\n", + " 'initiative according to Grameen’s best '\n", + " 'practices. In February 2009 it was '\n", + " 'agreed that the preconditions exist for '\n", + " 'effectively implementing the Grameen '\n", + " 'Italia project and the second phase was '\n", + " 'initiated to define the various '\n", + " 'structural, financial and organisational '\n", + " 'aspects. Social Enterprise\\n'\n", + " 'Since 2007 UniCredit Foundation has '\n", + " 'launched a number of initiatives '\n", + " 'centered on the concept of social '\n", + " 'business, a concept that represents a '\n", + " 'natural connection between the for '\n", + " 'profit and the non-profit sectors, an '\n", + " 'intermediate form – often defined as '\n", + " '“not only for profit” – which attempts '\n", + " 'to create a virtuous combination of '\n", + " 'techniques and methodologies typical of '\n", + " 'the for profit sector and aspirations '\n", + " 'and ideals of the non-profit sector. '\n", + " 'Social purpose can be pursued through '\n", + " 'the direct production of services such '\n", + " 'as care living, education, healthcare, '\n", + " 'etc. or through the production of goods '\n", + " 'or services to aid the creation of job '\n", + " 'opportunities for vulnerable persons '\n", + " '(former convicts, people with '\n", + " 'disabilities, former drug addicts, '\n", + " 'etc.). Other initiatives\\n'\n", + " 'In addition to the main areas of '\n", + " 'intervention, UniCredit Foundation also '\n", + " 'supports: • Social projects of Casa '\n", + " 'della carità Foundation and the cultural '\n", + " 'activities of the Accademia della '\n", + " 'carità\\n'\n", + " '• United Colours of Futsal\\n'\n", + " '• The Afro project\\n'\n", + " '• The project of social cohesion '\n", + " 'Conoscere per essere of the School '\n", + " 'Association of the G.Giusti Institute'},\n", + " 'position': {'address': 'UniCredit Foundation, Piazza Gae Aulenti, 3, Milan, '\n", + " 'Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4837646,\n", + " 'lng': 9.189772000000001,\n", + " 'name': 'UniCredit Foundation',\n", + " 'place_id': 'ChIJW2rauq3GhkcRFxc5GrT2yII',\n", + " 'post_code': '20124',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Piazza Gae Aulenti',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.unicreditfoundation.org'},\n", + " {'address': 'TrustAfrica Lot 4 Almadies Ngor Dakar Senegal',\n", + " 'country': 'Senegal',\n", + " 'email': 'info@trustafrica.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa']},\n", + " 'id': 5335,\n", + " 'link': 'https://philea.eu/members/trustafrica/',\n", + " 'name': 'TrustAfrica',\n", + " 'philea_info': {'About': 'TrustAfrica, first known as the Special Initiative '\n", + " 'for Africa, began in 2001 under the aegis of the '\n", + " 'Ford Foundation. The premise was that Africans '\n", + " 'need a greater voice in the international donor '\n", + " 'community as well as philanthropic resources that '\n", + " 'Africans control. In 2006, TrustAfrica became a '\n", + " 'truly African foundation with the opening of new '\n", + " 'headquarters in Dakar, Senegal. The Ford '\n", + " 'Foundation continues to provide support, but the '\n", + " 'organisation is now independent and governed '\n", + " 'solely by Africans. TrustAfrica works mainly '\n", + " 'through collaboration and partnership with '\n", + " 'like-minded institutions and donors, and promotes '\n", + " 'good governance and management practices among '\n", + " 'African NGOs.',\n", + " 'Geographic Focus': 'Africa',\n", + " 'Mission': 'To strengthen African initiatives that address '\n", + " 'the most difficult challenges confronting the '\n", + " 'continent.',\n", + " 'Programme Areas': 'TrustAfrica is active in the following '\n", + " 'areas: • Democratic Governance\\n'\n", + " '• Equitable development\\n'\n", + " '• African philanthropy • Grants '\n", + " 'Democratic Governance\\n'\n", + " 'Secures the conditions for democracy by '\n", + " 'strengthening the capacity of civil '\n", + " 'society organizations and by ensuring '\n", + " 'that citizens are fully engaged in '\n", + " 'governance processes—not just in their '\n", + " 'respective countries but also at the '\n", + " 'regional level. Equitable development\\n'\n", + " 'Supports initiatives to foster African '\n", + " 'enterprise and extend the benefits of '\n", + " 'economic growth to all members of '\n", + " 'society. This includes:\\n'\n", + " '– Agricultural Development Project\\n'\n", + " '– Higher Education Reform\\n'\n", + " '– Women’s Rights\\n'\n", + " '– Investment Climate and Business '\n", + " 'Environment (ICBE) Research Fund\\n'\n", + " '– Early Learning Innovations African '\n", + " 'philanthropy\\n'\n", + " 'Seeks to align external philanthropic '\n", + " 'resources with African agendas as well '\n", + " 'as to cultivate indigenous resources '\n", + " 'that support the continent’s own '\n", + " 'priorities for democracy and '\n", + " 'development.'},\n", + " 'position': {'address': '4 Route des Almadies, Ngor, Dakar, Senegal',\n", + " 'city': 'Dakar',\n", + " 'country': 'Senegal',\n", + " 'country_short': 'SN',\n", + " 'lat': 14.7385274,\n", + " 'lng': -17.5131516,\n", + " 'name': '4 Rte des Almadies',\n", + " 'place_id': 'EiI0IFJ0ZSBkZXMgQWxtYWRpZXMsIERha2FyLCBTZW5lZ2FsIjASLgoUChIJ237NBsUSwQ4Ry2kdRtvYFHIQBCoUChIJ3fD3cNwSwQ4RhVXVpkjXcuM',\n", + " 'state': 'Dakar',\n", + " 'street_name': 'Route des Almadies',\n", + " 'street_name_short': 'Rte des Almadies',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.trustafrica.org'},\n", + " {'address': 'Tiina and Antti Herlin Foundation Kartanontie 1 00330 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'info@tahsaatio.fi',\n", + " 'geo_locations': {},\n", + " 'id': 5330,\n", + " 'link': 'https://philea.eu/members/tiina-and-antti-herlin-foundation/',\n", + " 'name': 'Tiina and Antti Herlin Foundation',\n", + " 'philea_info': {'About': 'During their first years of activity they have '\n", + " 'mostly funded research and projects related to '\n", + " 'environmental matters, human rights, and climate '\n", + " 'change mitigation in particular.',\n", + " 'Mission': 'Tiina and Antti Herlin Foundation is an '\n", + " 'independent foundation, founded in 2014 to '\n", + " 'support and promote social welfare, culture, the '\n", + " 'environment and science, as well as their '\n", + " 'teaching and research.'},\n", + " 'position': {'address': 'Kartanontie 1, 00330 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1943706,\n", + " 'lng': 24.8812471,\n", + " 'name': 'Kartanontie 1',\n", + " 'place_id': 'ChIJKfo3xgMKkkYR0XpLC79q_c8',\n", + " 'post_code': '00330',\n", + " 'street_name': 'Kartanontie',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.tahsaatio.fi/en/'},\n", + " {'address': 'Thousand Currents 1330 Broadway Suite #301 94612 Oakland, CA '\n", + " 'United States',\n", + " 'country': 'United States',\n", + " 'email': 'rajiv@thousandcurrents.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa',\n", + " 'Ethiopia',\n", + " 'South Africa',\n", + " 'Zimbabwe'],\n", + " 'Asia & Pacific': ['Asia', 'India', 'Nepal'],\n", + " 'Latin America & Caribbean': ['Brazil',\n", + " 'Colombia',\n", + " 'Latin America',\n", + " 'Mexico',\n", + " 'Peru']},\n", + " 'id': 5329,\n", + " 'link': 'https://philea.eu/members/thousand-currents/',\n", + " 'name': 'Thousand Currents',\n", + " 'philea_info': {'About': 'Since its founding in 1985, Thousand Currents '\n", + " 'invested in over 750 community-led initiatives in '\n", + " '37 countries in Africa, Asia, and Latin America. '\n", + " 'Thousand Currents was the inspiration of a group '\n", + " 'of returned Peace Corps volunteers who had a '\n", + " 'vision for a different kind of international '\n", + " 'development model. In 1985, they created '\n", + " 'International Development Exchange (IDEX, our '\n", + " 'former name) after seeing that small grants '\n", + " 'targeted to grassroots groups—who had the trust of '\n", + " 'their neighbors and the knowledge of what was '\n", + " 'needed in their own\\n'\n", + " 'communities—were often more effective than '\n", + " 'traditional, large-scale philanthropy. In the '\n", + " 'subsequent decade, this model grew into a '\n", + " 'long-term partnership approach. Thousand Currents’ '\n", + " 'partnership approach to grantmaking inverts the '\n", + " 'paradigm of\\n'\n", + " 'how international “aid” efforts have historically '\n", + " 'been conducted by relying on the wisdom and '\n", + " 'strength of local people to tackle powerlessness '\n", + " 'and exclusion. Most large-scale development '\n", + " 'efforts are still, however, initiated and led by '\n", + " 'people external to the community with results that '\n", + " 'are often limited or short-lived. Local initiative '\n", + " 'ensures a readiness for change and ownership of '\n", + " 'the change process; it reflects cultural, social, '\n", + " 'political, geographic, and economic realities, a '\n", + " 'nuance of understanding that outsiders cannot '\n", + " 'possess.\\n'\n", + " 'Over time, our strategies and practices have '\n", + " 'evolved as we have learned from the insights of '\n", + " 'our partners. For example, initially we provided '\n", + " 'short-term, project grants. However, in 2000, we '\n", + " 'transitioned to a partnership model, committing to '\n", + " 'long-term, flexible funding. In 2014, we adopted a '\n", + " 'revised theory of change that integrated feedback '\n", + " 'from our partners, crystallized the partnership '\n", + " 'model, and strengthened our philanthropic advocacy '\n", + " 'work. Our new strategy process commenced in 2017, '\n", + " 'when we held discussions with board, staff, and '\n", + " 'partners to gauge our direction (as elaborated in '\n", + " 'our goals above). Our work to channel flexible, '\n", + " 'general, long-term support to grassroots groups',\n", + " 'Geographic Focus': 'Thousand Currents works with grassroots '\n", + " 'leaders, organizations, organizations, '\n", + " 'and movements in urban, suburban, and '\n", + " 'rural communities in Nepal, India, Fiji '\n", + " 'in Asia; South Africa, Ethiopia and '\n", + " 'Zimbabwe in Africa; and in Mexico, '\n", + " 'Guatemala, Peru, Brazil and Colombia in '\n", + " 'Latin America.',\n", + " 'Mission': 'Our Vision: Thousand Currents envisions a world '\n", + " 'in which self-determined and connected people '\n", + " 'share and uphold the abundance of life. There is '\n", + " 'enough – for all and for future generations.\\n'\n", + " 'Our Mission: Thousand Currents supports '\n", + " 'grassroots organizations and movements led by '\n", + " 'women, youth, and Indigenous Peoples that are '\n", + " 'creating lasting solutions toshared global '\n", + " 'challenges. Their work addresses the '\n", + " 'interdependent issues of food sovereignty, '\n", + " 'alternative economies, climate justice, and '\n", + " 'human rights.\\n'\n", + " 'What we do: We work with our grassroots partners '\n", + " 'to scale their successes by building their '\n", + " 'capacity and leadership; and linking them to '\n", + " 'broader social change movements at the regional, '\n", + " 'national, and global levels. Through our '\n", + " 'Philanthropic Partnerships program, we work with '\n", + " 'donors to adopt transformative practices that '\n", + " 'dismantle injustice and inequity. We are a vocal '\n", + " 'and visible advocate for grassrootsled social '\n", + " 'change, bridging emerging approaches and '\n", + " 'learnings from the Global South with '\n", + " 'philanthropic models and practices in the Global '\n", + " 'North.\\n'\n", + " 'Our partners resist government and corporate '\n", + " 'abuses of human and natural resources that '\n", + " 'perpetuate inequality, poverty, and injustice. '\n", + " 'They reimagine wealth, power, and well being to '\n", + " 'offer solutions that draw from ancestral wisdom. '\n", + " 'Through their\\n'\n", + " 'innovations, they reflect the needs of today and '\n", + " 'the possibilities of tomorrow. They move with '\n", + " 'steadfast dignity, resolve, and courage to build '\n", + " 'new sources of power through ingenuity and '\n", + " 'vision. They leave a lasting impact.\\n'\n", + " 'Our Goals: Thousand Currents work is guided by '\n", + " 'our new three-year strategy, from 2018-2020.\\n'\n", + " 'We commit to use our resources, access, and '\n", + " 'influence to deepen the core and turn up the '\n", + " 'volume through more funding, stronger '\n", + " 'partnerships and initiatives, streamlined '\n", + " 'communications, and bolder philanthropic '\n", + " 'advocacy.\\n'\n", + " 'We will:\\n'\n", + " '· Build a stronger, more interconnected, and '\n", + " 'better-resourced ecosystem of partners in '\n", + " 'Africa, Asia, and Latin America.\\n'\n", + " '· Elevate our partners’',\n", + " 'Programme Areas': 'Thousand Currents’ programs build the '\n", + " 'power and leadership of indigenous '\n", + " 'women, create alternative economic '\n", + " 'solutions, as well as advance food '\n", + " 'sovereignty and climate justice.\\n'\n", + " '1. Building the Power of Indigenous '\n", + " 'Women\\n'\n", + " 'From grassroots social movements to '\n", + " 'United Nations organizations, there is '\n", + " 'clear agreement on the key role '\n", + " 'indigenous women play in advancing human '\n", + " 'rights and social change. However, '\n", + " 'indigenous women continue to suffer the '\n", + " 'greatest brunt of state sanctioned '\n", + " 'repression. Our partners strengthen and '\n", + " 'increase rights, opportunities, '\n", + " 'self-worth, choices, resources, '\n", + " 'autonomy, and power of indigenous women '\n", + " 'through their programs and practices. '\n", + " 'They work to educate adolescent girls, '\n", + " 'eliminate domestic violence, increase '\n", + " 'women’s participation in civil society, '\n", + " 'and improve women’s access to wealth and '\n", + " 'resources. In 2014, after deep '\n", + " 'consultation with grassroots leaders, '\n", + " 'social movement activists, allies, and '\n", + " 'donors, we adopted a revised Theory of '\n", + " 'Change. It reinforced our partnership '\n", + " 'model and put Indigenous Peoples’ '\n", + " 'self-determination at the center of our '\n", + " 'community self-determination goal (for '\n", + " 'more detail on our Theory of Change, '\n", + " 'please see: '\n", + " 'https://thousandcurrents.org/about/#toc). '\n", + " 'Today our three-year strategy aims to '\n", + " 'strengthen our support of Indigenous '\n", + " 'Peoples and Women-led organizations by '\n", + " 'moving more resources to our partners, '\n", + " 'building and expanding stronger '\n", + " 'partnerships, and engaging in strategic '\n", + " 'philanthropic advocacy to bolster '\n", + " 'sector-wide grassroots support (for '\n", + " 'details on our new strategy, see: '\n", + " 'https://thousandcurrents.org/wp-content/uploads/2018/02/TC-Strategy-2018-20-\\n'\n", + " '1.pdf). Similarly, our regional '\n", + " 'strategies in Asia, Latin America, and '\n", + " 'Africa are expanding or deepening '\n", + " 'partnerships with organizations that are '\n", + " 'led-by and work for Indigenous women and '\n", + " 'communities.\\n'\n", + " 'For instance, in 2017, Thousand Currents '\n", + " 'invited four Peru grantee organizations '\n", + " 'for long-term partnerships, all of which '\n", + " 'are led-by or work for Indigenous Women: '\n", + " 'Red Ñuqanchik Maronijei Noshaninka, El '\n", + " 'Grupo Género y Economía (GGE or Gender '\n", + " 'and Economy Group), and Federación '\n", + " 'Nacional de Mujeres Campesinas, '\n", + " 'Artesanas, Indígenas, Nativas y '\n", + " 'Asalariadas del Perú (National '\n", + " 'Federation of Indigenous, Peasants, '\n", + " 'Artisans, Native and Wage-earning Women '\n", + " 'of Peru, or FENMUCARINAP), and '\n", + " 'Asociación para la Naturaleza y el '\n", + " 'Desarrollo Sostenible (the Association '\n", + " 'for Nature and Sustainable Development, '\n", + " 'or ANDES). Our partners have had much '\n", + " 'success in uplifting Indigenous Women in '\n", + " 'their communities. For instance in '\n", + " 'Guatemala, our partners have politically '\n", + " 'organized and trained the first '\n", + " 'democratically elected indigenous woman '\n", + " 'mayor of a small town. In partnership '\n", + " 'with a countrywide women’s rights '\n", + " 'political alliance, they have been '\n", + " 'instrumental in passing the landmark '\n", + " 'Anti-Femicide Law in Guatemala.\\n'\n", + " 'Indigenous women farmers in Mexico and '\n", + " 'India are leading the way in '\n", + " 'agricultural innovations, training '\n", + " 'community members in reclaiming native '\n", + " 'seeds, increasing their '\n", + " 'self-sufficiency, and providing '\n", + " 'alternatives to the big agri-business '\n", + " 'model. In Nepal and South Africa, rural '\n", + " 'women are leveraging small-scale savings '\n", + " 'into community development by building '\n", + " 'locally controlled assets and advocating '\n", + " 'for women’s political empowerment.\\n'\n", + " '2. Alternative Economic Models\\n'\n", + " 'We prioritize producers and consumers, '\n", + " 'not shareholders. Thousand Currents '\n", + " 'envisions a world in which all '\n", + " 'communities not only have economic '\n", + " 'security, but also prosperity. Thousand '\n", + " 'Currents and its partners, especially '\n", + " 'organizations led by indigenous women, '\n", + " 'are developing economic solutions that '\n", + " 'enrich grassroots communities, build '\n", + " 'their economic power, and promote '\n", + " 'harmony between humans and the '\n", + " 'environment in the pursuit of dignified '\n", + " 'livelihoods. Our partners are active '\n", + " 'participants in creating change and '\n", + " 'building wealth—not just income—for '\n", + " 'their communities. Our partners help '\n", + " 'create local economies organized around '\n", + " 'solidarity and collective interests, '\n", + " 'rather than entrepreneurial principles.\\n'\n", + " 'They also:\\n'\n", + " '● build skills to use existing land and '\n", + " 'other natural resources in sustainable '\n", + " 'ways;\\n'\n", + " '● create access to collective savings '\n", + " 'and affordable credit through village '\n", + " 'banking;\\n'\n", + " '● generate income based on sustainably '\n", + " 'produced traditional arts and food '\n", + " 'production;\\n'\n", + " '● support collective manufacturing and '\n", + " 'capital generation to enter local and '\n", + " 'international markets;\\n'\n", + " '● train each other in financial '\n", + " 'management and cooperative development '\n", + " 'to survive employment discrimination;\\n'\n", + " '● ensure healthy and safe working '\n", + " 'conditions; and\\n'\n", + " '● equitably distribute decision-making '\n", + " 'power among all economic players.\\n'\n", + " 'An economic development model that many '\n", + " 'of our partners practice is the concept '\n", + " 'of “Solidarity Economy”, which is guided '\n", + " 'by equitable and sustainable development '\n", + " 'solutions. Individuals work in an '\n", + " 'organized, communal manner toward '\n", + " 'improving the lives of the entire group, '\n", + " 'seeking unity, promoting democracy, and '\n", + " 'considering the natural ecological '\n", + " 'equilibrium during production. This '\n", + " 'model shares common characteristics with '\n", + " 'efforts in the United States and in '\n", + " 'other parts of the world, such as worker '\n", + " 'cooperatives, community land trusts, and '\n", + " 'common pasturelands that democratize '\n", + " 'wealth and build a community-sustaining '\n", + " 'economy. For more information on '\n", + " 'Solidarity Economy, please see:\\n'\n", + " 'https://thousandcurrents.org/supporting-the-solidarity-economy/.\\n'\n", + " '3. Food Sovereignty\\n'\n", + " 'Food sovereignty allows communities have '\n", + " 'the autonomy to define their food '\n", + " 'systems, contextualized within a '\n", + " 'community’s cultural, traditional, '\n", + " 'political, and economic realities and '\n", + " 'traditions. It gives them the freedom to '\n", + " 'choose how their food is grown. Around '\n", + " 'the world, Thousand Currents partners in '\n", + " 'Africa, Asia, and Latin America have '\n", + " 'been reclaiming their food systems for '\n", + " 'decades. They focus on small-scale '\n", + " 'agroecological farming that leads to '\n", + " 'improved yields, better quality '\n", + " 'vegetables, lowered costs, and effective '\n", + " 'management of land, water, soil, and '\n", + " 'seeds.\\n'\n", + " 'Our partners work to:\\n'\n", + " '● sharing sustainable and organic food '\n", + " 'production methods;\\n'\n", + " '● organizing to sell their food '\n", + " 'collectively at fair prices;\\n'\n", + " '● protecting biodiversity and genetic '\n", + " 'resources within ecosystems;\\n'\n", + " '● lowering costs while improving the '\n", + " 'quality and quantity of their yields; '\n", + " 'and\\n'\n", + " '● educating their governments to put '\n", + " 'smallholder farmers’ interests before '\n", + " 'those of multinational corporations.\\n'\n", + " '4. Climate Justice\\n'\n", + " 'For many of the communities where '\n", + " 'Thousand Currents partners work, climate '\n", + " 'change has led to contamination of water '\n", + " 'sources and air, deforestation of '\n", + " 'ancestral lands, and an increase of '\n", + " 'natural disasters and erratic weather '\n", + " 'patterns, which affect a community’s '\n", + " 'ability to grow enough food. Thousand '\n", + " 'Currents partners adopt a holistic '\n", + " 'approach to environmental challenges '\n", + " 'that not only honors our planet, but '\n", + " 'also creates opportunities for '\n", + " 'communities to manage the land, water, '\n", + " 'and seeds on which their lives and '\n", + " 'livelihoods depend. Further, '\n", + " 'agroecological practices are paramount '\n", + " 'in combating the enormous amount of '\n", + " 'greenhouse gas emissions, between 44% '\n", + " 'and 57%, resulting from the global food '\n", + " 'system. Also, our partners are also '\n", + " 'demanding accountability from polluting '\n", + " 'industries and fiercely lobbying the '\n", + " 'government to take responsibility for '\n", + " 'their environmental degradation.\\n'\n", + " 'Our partners work to:\\n'\n", + " '● reduce communities’ vulnerability to '\n", + " 'natural disasters;\\n'\n", + " '● reclaim ancestral knowledge of land '\n", + " 'stewardship and food production;\\n'\n", + " '● share sustainable farming and grazing '\n", + " 'practices;\\n'\n", + " '● learn new technologies to rebuild '\n", + " 'healthy communities;\\n'\n", + " '● combat toxic waste and pollution;\\n'\n", + " '● address environmental racism; and\\n'\n", + " '● create ecologically sound alternative '\n", + " 'economies.\\n'\n", + " 'Women farmers form the backbone of the '\n", + " 'rural economy. As FAO research shows, '\n", + " 'bridging the gender gap in agriculture '\n", + " 'can significantly boost food security, '\n", + " 'and contribute to overall well-being. By '\n", + " 'fostering harmony between humans and '\n", + " 'their environment, Thousand '\n", + " 'Currents-supported communities are also '\n", + " 'successfully building wealth, local '\n", + " 'leadership, especially among women and '\n", + " 'indigenous groups, and broader community '\n", + " 'involvement in their initiatives.'},\n", + " 'position': {'address': 'Oakland, CA, United States',\n", + " 'city': 'Oakland',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 37.8043514,\n", + " 'lng': -122.2711639,\n", + " 'name': 'Oakland',\n", + " 'place_id': 'ChIJA-2qKIt9hYARZ5N1NdUVtHE',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://thousandcurrents.org/'},\n", + " {'address': 'Third Sector Foundation of Turkey Bankalar Caddesi Nº2. Minerva '\n", + " 'Han Kat:5 Karaköy 34420 Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@tusev.org.tr',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Turkey'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5328,\n", + " 'link': 'https://philea.eu/members/third-sector-foundation-of-turkey/',\n", + " 'name': 'Third Sector Foundation of Turkey (TUSEV)',\n", + " 'philea_info': {'About': 'TUSEV was set up in 1993 by 23 leading foundations '\n", + " 'and associations in Turkey. TUSEV now has over 110 '\n", + " 'organisations in its network. It is a private, '\n", + " 'non-profit foundation set up to promote the third '\n", + " 'sector in Turkey at national and international '\n", + " 'levels. It is an officially recognised, '\n", + " 'non-religious and non-political foundation '\n", + " 'independent of the state and governed by private '\n", + " 'statute with its own endowment.',\n", + " 'Geographic Focus': 'Turkey and international',\n", + " 'Mission': 'To strengthen the operational, legal and fiscal '\n", + " 'infrastructure of the third sector in Turkey.',\n", + " 'Programme Areas': 'The foundation seeks to achieve its '\n", + " 'mission of strengthening the third '\n", + " 'sector in Turkey through its four main '\n", + " 'programme areas: • Civil Society Law '\n", + " 'Reform: Enabling Civil Society\\n'\n", + " '• Social Investment: Promoting Strategic '\n", + " 'and Effective Giving\\n'\n", + " '• International Relations and '\n", + " 'Networking: Fostering Linkages\\n'\n", + " '• Research and Publications: Assessing '\n", + " 'and Understanding the Sector National '\n", + " 'Activities\\n'\n", + " 'Develops and distributes key reports and '\n", + " 'updates on legislative issues and '\n", + " 'changes; conducts research on civil '\n", + " 'society and philanthropy; organises '\n", + " 'meetings, seminars and conferences on '\n", + " 'topics regarding third sector '\n", + " 'development; provides consultation to '\n", + " 'NGOs on matters regarding regulations '\n", + " 'and formation; promotes local donor '\n", + " 'activity. International Activities\\n'\n", + " 'Participates in research programmes with '\n", + " 'international foundations and NGOs; '\n", + " 'develops/produces literature for the '\n", + " 'international community regarding the '\n", + " 'third sector in Turkey; organises '\n", + " 'meetings, seminars and conferences with '\n", + " 'international foundations and NGOs on '\n", + " 'topics regarding the third sector; '\n", + " 'participates in networks such as '\n", + " 'Worldwide Initiatives for Grantmaker '\n", + " 'Support (WINGS), World Alliance for '\n", + " 'Civil Participation (CIVICUS), '\n", + " 'International Society for Third Sector '\n", + " 'Research (ISTR) and the European '\n", + " 'Foundation Centre (EFC); collaborates '\n", + " 'with institutions such as the World Bank '\n", + " 'on strengthening civil society dialogue; '\n", + " 'and organises activities to '\n", + " 'encourage/facilitate closer links '\n", + " 'between Turkish foundations and NGOs and '\n", + " 'foreign foundations and NGOs. Also '\n", + " 'provides support to foreign foundations '\n", + " 'wishing to make grants/operate in '\n", + " 'Turkey.'},\n", + " 'position': {'address': 'İstanbul, Turkey',\n", + " 'city': 'İstanbul',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0082376,\n", + " 'lng': 28.9783589,\n", + " 'name': 'İstanbul',\n", + " 'place_id': 'ChIJawhoAASnyhQR0LABvJj-zOE',\n", + " 'state': 'İstanbul',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.tusev.org.tr'},\n", + " {'address': 'The Nando and Elsa Peretti Foundation Allgemeines '\n", + " 'Treuunternehmen (ATU) Aeulestrasse 5 9490 Vaduz Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'peter.prast@atu.li',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5326,\n", + " 'link': 'https://philea.eu/members/the-nando-and-elsa-peretti-foundation/',\n", + " 'name': 'The Nando and Elsa Peretti Foundation',\n", + " 'philea_info': {'About': 'Elsa Peretti, born in Florence, is the youngest '\n", + " 'daughter of Nando Peretti. She was educated in '\n", + " 'Rome and Switzerland. Elsa’s outspoken '\n", + " 'personality, intolerant of the conventions of her '\n", + " 'milieu, led her to seek a different approach to '\n", + " 'life. This search marked her restless youth, '\n", + " 'during which she lived in many different '\n", + " 'countries. Two places are particularly important '\n", + " 'to her: Barcelona, where she started her career as '\n", + " 'a fashion model, and New York, where she started '\n", + " 'what was to become her main activity: designing. '\n", + " 'After working with such leading fashion designers '\n", + " 'such as Giorgio di Sant’Angelo, Halston, and many '\n", + " 'more, she joined Tiffany and Co. in 1974. Since '\n", + " 'then she continues adding new items to her '\n", + " 'collection. The main source of inspiration for '\n", + " 'Elsa has always been nature. The same gift, which '\n", + " 'enables her to abstract the essence of a shape '\n", + " 'from the details surrounding it has brought her to '\n", + " 'develop a particular attention to life even in its '\n", + " 'humblest forms. Over time, this aesthetic '\n", + " 'enchantment grew into an active concern over the '\n", + " 'future of our planet. In this process, two major '\n", + " 'challenges stand out as the core of her struggle '\n", + " 'to give concrete help to our future: the '\n", + " 'protection of our environment and the empowerment '\n", + " 'of children by protecting their rights to '\n", + " 'education and health. At the beginning of the new '\n", + " 'millennium she realized what she considers today '\n", + " 'the most ambitious achievement of her life: to '\n", + " 'assemble a staff of motivated people in a '\n", + " 'Foundation passionate to take up these challenges.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'The Nando and Elsa Peretti Foundation commits '\n", + " 'its resources mostly to small and specific '\n", + " 'projects for the benefit of local, disadvantaged '\n", + " 'communities that also address issues of global '\n", + " 'relevance. The purposes of the foundation are '\n", + " 'exclusively charitable, scientific and '\n", + " 'educational. In particular, the NaEPF provides '\n", + " 'grant support in the following areas: – '\n", + " 'Environmental and animal protection, with focus '\n", + " 'on the area of organic farming, climate change '\n", + " 'mitigation and wildlife preservation;\\n'\n", + " '– Social inclusion and social welfare, including '\n", + " 'relief of poverty with a focus on elderly and '\n", + " 'children;\\n'\n", + " '– Global education;\\n'\n", + " '– Humanitarian or disaster relief;\\n'\n", + " '– Promotion and protection of human rights and '\n", + " 'the rule of law, with a special consideration to '\n", + " 'women’s right to education and equal treatment;\\n'\n", + " '– Health, medical care and scientific research;\\n'\n", + " '– Arts, culture or historical preservation',\n", + " 'Programme Areas': '‘- Environmental and animal protection, '\n", + " 'with focus on the area of organic '\n", + " 'farming, climate change mitigation and '\n", + " 'wildlife preservation;\\n'\n", + " '– Social inclusion and social welfare, '\n", + " 'including relief of poverty with a focus '\n", + " 'on elderly and children;\\n'\n", + " '– Global education;\\n'\n", + " '– Humanitarian or disaster relief;\\n'\n", + " '– Promotion and protection of human '\n", + " 'rights and the rule of law, with a '\n", + " 'special consideration to women’s right '\n", + " 'to education and equal treatment;\\n'\n", + " '– Health, medical care and scientific '\n", + " 'research;\\n'\n", + " '– Arts, culture or historical '\n", + " 'preservation'},\n", + " 'position': {'address': 'Allgemeines Treuunternehmen (ATU), Aeulestrasse 5, '\n", + " '9490 Vaduz, Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.140606,\n", + " 'lng': 9.521298,\n", + " 'name': 'Allgemeines Treuunternehmen (ATU)',\n", + " 'place_id': 'ChIJKRSZjWcxm0cRuxoXjh3PbSA',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.nandoandelsaperettifoundation.org/en/page.php'},\n", + " {'address': 'The Ethos Foundation 18 Buckingham Palace Road SW1W 0QP London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'ethosfoundation.uk@gmail.com',\n", + " 'geo_locations': {'Europe (Western / General)': ['United Kingdom']},\n", + " 'id': 5383,\n", + " 'link': 'https://philea.eu/members/the-ethos-foundation/',\n", + " 'name': 'The Ethos Foundation',\n", + " 'philea_info': {'About': 'The Founders are Grant and Brigitte Gordon.\\n'\n", + " 'The Foundation’s giving is informed by a '\n", + " 'multi-generational family commitment to '\n", + " 'philanthropy.',\n", + " 'Geographic Focus': 'No geographic exclusions; current '\n", + " 'programmes focus on UK, with particular '\n", + " 'interest in London and Scotland',\n", + " 'Mission': 'OUR MISSION\\n'\n", + " 'To support local communities and UK society in '\n", + " 'general.\\n'\n", + " 'WE VALUE\\n'\n", + " 'Knowledge – learning every day\\n'\n", + " 'Sustainability – building a lasting legacy\\n'\n", + " 'Humility – staying grounded',\n", + " 'Programme Areas': 'PHILANTHROPY INFRASTRUCTURE IN THE UK: '\n", + " 'The Beacon Collaborative increases UK '\n", + " 'philanthropy and social investment '\n", + " 'through peer influence, public '\n", + " 'awareness, professional advice, '\n", + " 'political engagement, and research into '\n", + " 'giving and social investment. '\n", + " 'https://www.beaconawards.org.uk/\\n'\n", + " 'CHILD POVERTY IN LONDON: The Childhood '\n", + " 'Trust provides matching funding for '\n", + " 'projects that operate throughout London '\n", + " 'and help to provide vital support to '\n", + " 'children living in poverty. '\n", + " 'https://www.childhoodtrust.org.uk/\\n'\n", + " 'HERITAGE: The Cabrach Trust works to '\n", + " 'regenerate a thriving, sustainable '\n", + " 'community with its history, heritage and '\n", + " 'place in Scottish history celebrated and '\n", + " 'shared by all, through the creation of a '\n", + " 'Heritage Centre and historic working '\n", + " 'distillery providing much-needed local '\n", + " 'employment. '\n", + " 'https://www.cabrachtrust.org/ Grant '\n", + " 'Making\\n'\n", + " 'The Foundation does not accept '\n", + " 'unsolicited grant applications or '\n", + " 'proposals for funding.\\n'\n", + " 'The Foundation normally applies its '\n", + " 'annual income to charitable causes '\n", + " 'proactively selected by its trustees. '\n", + " 'Grant-making decisions aim to honour the '\n", + " 'family’s historical philanthropy and to '\n", + " 'make a positive impact going forward.\\n'\n", + " 'From time to time, the Foundation may '\n", + " 'identify new focus areas and conduct '\n", + " 'research and due diligence to identify '\n", + " 'charities and programmes best placed to '\n", + " 'make a difference. Those identified will '\n", + " 'be invited to apply for support. The '\n", + " 'Foundation will work with prospective '\n", + " 'grantees in preparing materials and '\n", + " 'developing proposals for review by the '\n", + " 'trustees.\\n'\n", + " 'Grants are normally made to a registered '\n", + " 'UK charity or CIO. The Ethos Foundation '\n", + " 'will generally not fund:\\n'\n", + " 'Individuals\\n'\n", + " 'Fundraising events\\n'\n", + " 'Medical causes or scientific research\\n'\n", + " 'Religious causes\\n'\n", + " 'Animal-related causes'},\n", + " 'position': {'address': '18 Buckingham Palace Road, London SW1W 0QP, United '\n", + " 'Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4977045,\n", + " 'lng': -0.1443356,\n", + " 'name': '18 Buckingham Palace Rd',\n", + " 'place_id': 'ChIJHXL6GCEFdkgRrvnbRBZYkh8',\n", + " 'post_code': 'SW1W 0QP',\n", + " 'state': 'England',\n", + " 'street_name': 'Buckingham Palace Road',\n", + " 'street_name_short': 'Buckingham Palace Rd',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Environment/Climate',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': ''},\n", + " {'address': 'The Association of Swedish Foundations P.O. Box 3615 10359 '\n", + " 'Stockholm Sweden',\n", + " 'country': 'Sweden',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5207,\n", + " 'link': 'https://philea.eu/members/the-association-of-swedish-foundations/',\n", + " 'name': 'The Association of Swedish Foundations',\n", + " 'philea_info': {'About': 'The Association of Swedish Foundations was founded '\n", + " 'in 1989, and is a uniting force and a meeting '\n", + " 'place for Swedish foundations. Both foundations '\n", + " 'and individuals interested in topics regarding '\n", + " 'foundations may become members of the association. '\n", + " 'Furthermore, the Association of Swedish '\n", + " 'Foundations is one of the organizations consulted '\n", + " 'by the Swedish government on new legislation '\n", + " 'proposals.',\n", + " 'Mission': 'The Association of Swedish Foundations is an '\n", + " 'association of foundations and individuals '\n", + " 'dedicated to creating a supportive legal and '\n", + " 'fiscal environment for foundations. We also '\n", + " 'strive to emphasize the altruistic work of '\n", + " 'foundations and to show the important role of '\n", + " 'foundations in Swedish society. In order to '\n", + " 'achieve this we support cooperation, both among '\n", + " 'foundations and between foundations and other '\n", + " 'actors in society.'},\n", + " 'position': {'address': 'Stockholm, Sweden',\n", + " 'city': 'Stockholm',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 59.32932349999999,\n", + " 'lng': 18.0685808,\n", + " 'name': 'Stockholm',\n", + " 'place_id': 'ChIJywtkGTF2X0YRZnedZ9MnDag',\n", + " 'state': 'Stockholm County',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.stiftelserisamverkan.se'},\n", + " {'address': 'Stichting Terre des Hommes Nederland Grote Marktstraat 43\\xa0'\n", + " '2511\\xa0BH Den Haag Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@tdh.nl',\n", + " 'geo_locations': {},\n", + " 'id': 5323,\n", + " 'link': 'https://philea.eu/members/terre-des-hommes-netherlands/',\n", + " 'name': 'Terre des Hommes - Netherlands',\n", + " 'philea_info': {'About': 'In 1965, Dutch volunteers copied Frenchman Edmond '\n", + " 'Kaiser’s initiative in the Netherlands. In the '\n", + " 'beginning, Terre des Hommes Netherlands mainly '\n", + " 'helped children in emergency situations in '\n", + " 'developing countries via Dutch doctors. Over the '\n", + " 'years, however, the focus has shifted to '\n", + " 'structural aid through local project partners.',\n", + " 'Mission': 'To prevent child exploitation, removes children '\n", + " 'from exploitative situations and ensures these '\n", + " 'children can develop themselves in a safe '\n", + " 'environment.',\n", + " 'Programme Areas': 'Child exploitation is about serious '\n", + " 'violations of the rights of the child. '\n", + " 'The definition covers:\\n'\n", + " '– worst forms of child labour (according '\n", + " 'to Convention 182 of the ILO);\\n'\n", + " '– child trafficking;\\n'\n", + " '– sexual exploitation of children;\\n'\n", + " '– child abuse\\n'\n", + " 'Stopping child exploitation, the most '\n", + " 'serious violations of the rights of the '\n", + " 'child, has now become the main focus of '\n", + " 'Terre des Hommes Netherlands. This is '\n", + " 'not an easy fight; poverty can drive '\n", + " 'people to despair and prosecuting '\n", + " 'perpetrators of child exploitation is '\n", + " 'rarely a priority for local authorities. '\n", + " 'But Terre des Hommes is working, with '\n", + " 'its local partners, to build a world '\n", + " 'without child exploitation.'},\n", + " 'position': {'address': 'Grote Marktstraat 43, The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0760376,\n", + " 'lng': 4.31123,\n", + " 'name': 'Grote Marktstraat 43',\n", + " 'place_id': 'ChIJUb3-LyS3xUcR4MZsZqFklQ0',\n", + " 'post_code': '2511 BH',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Grote Marktstraat',\n", + " 'street_number': '43',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.terredeshommes.nl'},\n", + " {'address': 'Fundacja TechSoup ul. Bracka 25 00-028 Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5322,\n", + " 'link': 'https://philea.eu/members/fundacja-techsoup/',\n", + " 'name': 'Fundacja TechSoup',\n", + " 'philea_info': {'About': 'Fundacja TechSoup (FTS) helps civil society '\n", + " 'organizations benefit from technology to achieve '\n", + " 'their missions. FTS supports nonprofits by '\n", + " 'providing ICT resources, organizing and providing '\n", + " 'access to data, convening activists, and sharing '\n", + " 'knowledge.',\n", + " 'Mission': 'Fundacja TechSoup (FTS) helps civil society '\n", + " 'organizations benefit from technology to achieve '\n", + " 'their missions. FTS supports nonprofits by '\n", + " 'providing ICT resources, organizing and '\n", + " 'providing access to data, convening activists, '\n", + " 'and sharing knowledge.',\n", + " 'Programme Areas': '– Technology: FTS provides cheaper '\n", + " 'access to legal, up-to-date software, '\n", + " 'hardware, solutions and services to '\n", + " 'nonprofits, libraries and museums in '\n", + " 'Poland through TechSoup Polska.\\n'\n", + " '– Education: We also teach how to use '\n", + " 'new technologies. We organize training '\n", + " 'and international events for our '\n", + " 'partners, civil society organizations '\n", + " 'and grass-root activists that learn how '\n", + " 'technology helps to tell their stories, '\n", + " 'attract allies, earn money or boost '\n", + " 'their media literacy skills (Akademia '\n", + " 'Dobrej Komunikacji, DIGILEAD, MEGAPHONE, '\n", + " 'Hive Mind).\\n'\n", + " '– Tech4Good Solutions: Together with '\n", + " 'organizations, activists, IT '\n", + " 'specialists, local administration, and '\n", + " 'funders we build social applications and '\n", + " 'civic tech products and take care of '\n", + " 'their development (eg. Apps4Warsaw, '\n", + " 'Appss4Cities, TransparenCEE).\\n'\n", + " '– CSR Services: Fundacja TechSoup '\n", + " 'facilitates collaborations and the flow '\n", + " 'of technological knowledge, between the '\n", + " 'business, non-governmental and public '\n", + " 'sectors. Thanks to local connections, '\n", + " 'relevant expertise, and large capacity '\n", + " 'to quickly develop meaningful and '\n", + " 'far-reaching CSR projects, Fundacja '\n", + " 'Techsoup collaborates with corporations '\n", + " 'locally, regionally, and globally and '\n", + " 'create, curate, and scale CSR projects '\n", + " 'and solutions across many communities '\n", + " '(Meet and Code).'},\n", + " 'position': {'address': 'TechSoup Polska, Bracka, Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2321134,\n", + " 'lng': 21.0155602,\n", + " 'name': 'TechSoup Polska',\n", + " 'place_id': 'ChIJcUsEvvrMHkcRMAdUE5sRqlU',\n", + " 'post_code': '00-028',\n", + " 'state': 'Województwo mazowieckie',\n", + " 'street_name': 'Bracka',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.techsoup.pl/content/fundacja'},\n", + " {'address': 'SwissFoundations Haus der Stiftungen, Kirchgasse 42, 8001 '\n", + " 'Zürich, Switzerland ',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@swissfoundations.ch',\n", + " 'geo_locations': {},\n", + " 'id': 5321,\n", + " 'link': 'https://philea.eu/members/swissfoundations/',\n", + " 'name': 'SwissFoundations',\n", + " 'philea_info': {'About': 'Founded in 2001, SwissFoundations gives '\n", + " 'Switzerland’s charitable grant-making foundations '\n", + " 'a strong and independent voice.',\n", + " 'Mission': 'The association is committed to liberal '\n", + " 'political framework conditions and a positive '\n", + " 'public perception of charitable grant-making '\n", + " 'foundations. It connects foundations with each '\n", + " 'other and with other relevant stakeholders from '\n", + " 'politics, science, business and society and '\n", + " 'provides them with practical support in their '\n", + " 'day-to-day foundation work. SwissFoundations '\n", + " 'promotes self-reflection and a culture of '\n", + " 'learning and inspires foundations to engage in '\n", + " 'impact-orientated, professional and transparent '\n", + " 'funding activities. SwissFoundations is the '\n", + " 'publisher of numerous studies and publications, '\n", + " 'including the Swiss Foundation Code.'},\n", + " 'position': {'address': 'SwissFoundations, Kirchgasse 42, 8001 Zürich, '\n", + " 'Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3705033,\n", + " 'lng': 8.546036599999997,\n", + " 'name': 'SwissFoundations',\n", + " 'place_id': 'ChIJMYQG6qugmkcR5_rSmVty-qU',\n", + " 'post_code': '8001',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Kirchgasse',\n", + " 'street_number': '42',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.swissfoundations.ch'},\n", + " {'address': 'Svenska Kulturfonden Simonsgatan 8 A, 5:e våningen PB 439 00101 '\n", + " 'Helsingfors Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'kansliet@kulturfonden.fi',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5319,\n", + " 'link': 'https://philea.eu/members/svenska-kulturfonden/',\n", + " 'name': 'Svenska Kulturfonden',\n", + " 'philea_info': {'About': 'Svenska kulturfonden (Swedish Cultural Foundation '\n", + " 'in Finland) was established in 1908, at a time in '\n", + " 'history when the right of the Swedish-speaking '\n", + " 'population to use their own language and have '\n", + " 'their own culture was at risk. Today, the '\n", + " 'foundation plays a bridging role in a bilingual '\n", + " 'society, and, through its work, wants to enhance '\n", + " 'the understanding of the value of living in a '\n", + " 'country with two languages.',\n", + " 'Geographic Focus': 'Primarily the coastal areas of Finland '\n", + " 'where Swedish is spoken as a '\n", + " 'mothertongue. Cooperation with and '\n", + " 'support to projects in the rest of the '\n", + " 'country as well as the Nordic countries '\n", + " 'and the rest of Europe.',\n", + " 'Mission': 'To support and strengthen the culture and '\n", + " 'education of the Swedish-speaking minority in '\n", + " 'Finland.',\n", + " 'Programme Areas': 'The work of the foundation is divided '\n", + " 'into five lines of action: • Arts and '\n", + " 'culture\\n'\n", + " '• Education\\n'\n", + " '• The Swedish language\\n'\n", + " '• Social cohesion through NGOs and other '\n", + " 'third sector associations\\n'\n", + " '• International activities Annually, '\n", + " 'they contribute around 33 million Euros '\n", + " 'of funding. and about 8,000 applications '\n", + " 'are received annually. According to the '\n", + " 'rules and regulations of the around 460 '\n", + " 'individual funds that together form the '\n", + " 'Swedish Cultural Foundation in Finland, '\n", + " 'the foundation awards grants both to '\n", + " 'institutions, associations and '\n", + " 'individuals with educational and '\n", + " 'cultural activities and interests. In '\n", + " 'addition to its grant making activities, '\n", + " 'the foundation initiates larger projects '\n", + " 'in the fields of culture and education, '\n", + " 'organises conferences on varying themes '\n", + " 'for key froups, and awards a number of '\n", + " 'prizes each year.'},\n", + " 'position': {'address': 'Finlandia-talo Oy, Mannerheimintie, Helsingfors, '\n", + " 'Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1756992,\n", + " 'lng': 24.9336092,\n", + " 'name': 'Finlandia Hall',\n", + " 'place_id': 'ChIJMSt58zIKkkYRAOiy0w3BzQ4',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Mannerheimintie',\n", + " 'street_number': '13e',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.kulturfonden.fi'},\n", + " {'address': 'Svenska folkskolans vänner r.f. Annegatan 12 A 00120 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'sfv@sfv.fi',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland']},\n", + " 'id': 5318,\n", + " 'link': 'https://philea.eu/members/svenska-folkskolans-vanner-r-f/',\n", + " 'name': 'Svenska folkskolans vänner r.f.',\n", + " 'philea_info': {'About': 'Originally established to start and support '\n", + " 'primary schools and libraries for the Swedish '\n", + " 'speaking population in Finland, SFV’s mission '\n", + " 'today is much broader (see above). Today SFV has '\n", + " 'more than 9,000 members, publishes its own series '\n", + " 'of books and magazines and organises a wide range '\n", + " 'of seminars and study circles in most parts of the '\n", + " 'country.',\n", + " 'Geographic Focus': 'Finland (mostly the Swedish speaking '\n", + " 'regions) and The Nordic countries',\n", + " 'Mission': 'To promote and endorse Swedish language and '\n", + " 'culture in Finland, through educational '\n", + " 'programmes, grants, scholarships and annual '\n", + " 'competitions in creative writing.',\n", + " 'Programme Areas': '1. Grants and scholarships\\n'\n", + " 'SFV support governments and other '\n", + " 'organisations that provide Swedish '\n", + " 'language courses for children and '\n", + " 'adults. 2. Education, literature and '\n", + " 'culture\\n'\n", + " 'There are several methods used by SFV to '\n", + " 'spread the language and culture. Through '\n", + " 'SFV Formation (an adult education and '\n", + " 'service organisation for 57 NGO’s) they '\n", + " 'run educational programmes, with more '\n", + " 'than 950 courses and workshops, with '\n", + " 'almost 20,000 participants. They also '\n", + " 'own a training programme called Axxel, '\n", + " 'they own one publishing house, Atena, '\n", + " 'and are co-owners of another, WSOY & '\n", + " 'Söderströms. SFV also runs a cultural '\n", + " 'and educational centre called Festal '\n", + " '(Ballroom) G18. 3. Publications\\n'\n", + " 'The organisation produces it’s own '\n", + " 'publications. Members receive the SFV '\n", + " 'magazine and the SFV calendar, plus new '\n", + " 'members will receive a book.'},\n", + " 'position': {'address': 'Svenska folkskolans vänner r.f., Annankatu, '\n", + " 'Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.164536,\n", + " 'lng': 24.9400829,\n", + " 'name': 'Svenska folkskolans vänner r.f.',\n", + " 'place_id': 'ChIJMZciLMoLkkYRQFRdZUwKC7o',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Annankatu',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sfv.fi'},\n", + " {'address': 'Stiftung Mercator GmbH Huyssenallee 40 45128 Essen Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@stiftung-mercator.de',\n", + " 'geo_locations': {'Asia & Pacific': ['China'],\n", + " 'Europe (Southern / Mediterranean)': ['Turkey'],\n", + " 'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Worldwide': ['Global', 'World']},\n", + " 'id': 5317,\n", + " 'link': 'https://philea.eu/members/stiftung-mercator-gmbh/',\n", + " 'name': 'Stiftung Mercator GmbH',\n", + " 'philea_info': {'About': 'Stiftung Mercator in Essen was founded by the '\n", + " 'Schmidt family, which donated a substantial amount '\n", + " 'of its own assets to the foundation. The '\n", + " 'foundation started officiallyiin 1996, with a '\n", + " 'regional focus on the North Rhine-Westfalia region '\n", + " 'in Germany.In 2008, the foundation did a strategic '\n", + " 'review and has focused on three programmatic areas '\n", + " 'and three geographical areas. The review has has '\n", + " 'also resulted in substantial growth, an increase '\n", + " 'in budget and staff numbers. Today, it is one of '\n", + " 'the largest private foundations in Germany.',\n", + " 'Geographic Focus': 'The foundation has, apart from its '\n", + " 'homeland Germany, three regional areas '\n", + " 'of focus, placing Germany in a '\n", + " 'globalised world; Europe, Turkey and '\n", + " 'China.',\n", + " 'Mission': 'To prevent dangerous climate change, promote '\n", + " 'integration and strengthen arts, education, and '\n", + " 'to provide fair and equal opportunities so that '\n", + " 'everyone can participate in today’s society.',\n", + " 'Programme Areas': 'The foundation’s motto is “inspiring '\n", + " 'ideas”, something which it achieves by '\n", + " 'combining advocacy and practical work '\n", + " 'around three areas: science and '\n", + " 'humanities, education and international '\n", + " 'affairs. Overarching these, the '\n", + " 'foundation has defined three '\n", + " 'interdisciplinary thematic clusters to '\n", + " 'further broaden its profile: • '\n", + " 'Integration\\n'\n", + " '• Climate change\\n'\n", + " '• Cultural education Integration\\n'\n", + " 'Aims to reduce by 2025 the inequality in '\n", + " 'Germany in terms of school and '\n", + " 'university qualifications (based on the '\n", + " '2005 level) by 70% for young people of '\n", + " 'migrant background, aged 15-30. As an '\n", + " 'interim target, the foundation is '\n", + " 'working to reduce these discrepancies by '\n", + " '30% by 2015. Climate change\\n'\n", + " 'Aims to reduce man-made greenhouse gas '\n", + " 'emissions in Germany by 40% by 2020 and '\n", + " 'by at least 80% by 2050, measured '\n", + " 'against the 1990 levels. Cultural '\n", + " 'education\\n'\n", + " 'Aims to anchor cultural education '\n", + " 'permanently within the formal '\n", + " 'educational system in North '\n", + " 'Rhine-Westphalia and three other states '\n", + " 'in Germany by 2015, and in all of the '\n", + " 'country’s federal states by 2025.'},\n", + " 'position': {'address': 'Stiftung Mercator GmbH, Huyssenallee 40, 45128 '\n", + " 'Essen, Germany',\n", + " 'city': 'Essen',\n", + " 'city_short': 'E',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.44743,\n", + " 'lng': 7.0099374,\n", + " 'name': 'Stiftung Mercator GmbH',\n", + " 'place_id': 'ChIJ03SNyM7CuEcRNmQ7c8Kw6uw',\n", + " 'post_code': '45128',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Huyssenallee',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.stiftung-mercator.de'},\n", + " {'address': 'Stiftung Deutsche Welthungerhilfe Friedrich Ebert Strasse 1 '\n", + " 'D-53173 Bonn Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@welthungerhilfe.de',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Latin America & Caribbean': ['Caribbean',\n", + " 'Latin America']},\n", + " 'id': 5316,\n", + " 'link': 'https://philea.eu/members/stiftung-deutsche-welthungerhilfe/',\n", + " 'name': 'Stiftung Deutsche Welthungerhilfe',\n", + " 'philea_info': {'About': 'In 1960 the Food and Agriculture Association (FAO) '\n", + " 'of the United Nations decided to launch a ‘freedom '\n", + " 'from hunger campaign’. At the same time it urged '\n", + " 'the Member States to intensify their efforts in '\n", + " 'their fight against deprivation, poverty, and '\n", + " 'hunger with cooperation from non-governmental '\n", + " 'organisations. Consequently, in 1962 the German '\n", + " 'Federal President Heinrich Lübke called together '\n", + " 'important representatives of social organisations '\n", + " 'in the Deutscher Ausschuss für den Kampf gegen den '\n", + " 'Hunger (German Committee for the Fight Against '\n", + " 'Hunger). In 1967 the Committee renamed itself '\n", + " '‘Deutsche Welthungerhilfe e.V.’',\n", + " 'Geographic Focus': 'Asia, Africa, Latin America, Caribbean',\n", + " 'Mission': 'To provide long-term, continuous support to '\n", + " 'Welthungerhilfe’s projects.',\n", + " 'Programme Areas': 'Stiftung Deutsche Welthungerhilfe is '\n", + " 'active in the following areas: • Hunger\\n'\n", + " '• Conflict and Disaster\\n'\n", + " '• Climate\\n'\n", + " '• Development Cooperation\\n'\n", + " '• Education'},\n", + " 'position': {'address': 'Welthungerhilfe, Friedrich-Ebert-Straße, Bonn, '\n", + " 'Germany',\n", + " 'city': 'Bonn',\n", + " 'city_short': 'BN',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 50.6823765,\n", + " 'lng': 7.1605514,\n", + " 'name': 'Welthungerhilfe',\n", + " 'place_id': 'ChIJD6Z5u27kvkcR8ADndtpnmS0',\n", + " 'post_code': '53173',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Friedrich-Ebert-Straße',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.welthungerhilfe.de'},\n", + " {'address': 'Stichting Instituut Gak ‘s-Gravelandseweg 49 1217 EH Hilversum '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@instituutgak.nl',\n", + " 'geo_locations': {'Europe (Western / General)': ['Netherlands']},\n", + " 'id': 5313,\n", + " 'link': 'https://philea.eu/members/stichting-instituut-gak/',\n", + " 'name': 'Stichting Instituut Gak',\n", + " 'philea_info': {'About': 'Foundation Institute Gak is an equity fund that '\n", + " 'provides grants to projects in the areas of social '\n", + " 'security and labour market policy in the '\n", + " 'Netherlands. Foundation Institute Gak gives '\n", + " 'content within the criteria on the one hand, by '\n", + " 'spontaneous (practical) applications. On the other '\n", + " 'hand, the Foundation is funding scientific '\n", + " 'research in the framework of the scientific '\n", + " 'research programme (see separate Web page). In '\n", + " 'addition, the Foundation is funding a number of '\n", + " 'special chairs in the field of social security to '\n", + " 'Dutch universities.',\n", + " 'Geographic Focus': 'The Netherlands',\n", + " 'Mission': 'Supporting projects and programms in the field '\n", + " 'of social security and labour market.',\n", + " 'Programme Areas': 'Social Security\\n'\n", + " 'Labour market\\n'\n", + " 'Scientific research'},\n", + " 'position': {'address': \"Instituut Gak, 's-Gravelandseweg 49, 1217 EH \"\n", + " 'Hilversum, Netherlands',\n", + " 'city': 'Hilversum',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.2269437,\n", + " 'lng': 5.1678373,\n", + " 'name': 'Instituut Gak',\n", + " 'place_id': 'ChIJVxUAq2BrxkcRRY0WCkNWJG8',\n", + " 'post_code': '1217 EH',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': \"'s-Gravelandseweg\",\n", + " 'street_number': '49',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Sciences & Research', 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.instituutgak.nl'},\n", + " {'address': 'Stichting Fonds 1818 Riviervismarkt 4 2313 AM The Hague '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@fonds1818.nl',\n", + " 'geo_locations': {'Europe (Western / General)': ['Netherlands']},\n", + " 'id': 5312,\n", + " 'link': 'https://philea.eu/members/stichting-fonds-1818/',\n", + " 'name': 'Stichting Fonds 1818',\n", + " 'philea_info': {'About': 'Fonds 1818 was established in its present form in '\n", + " '1992. It is a private, non-profit organisation '\n", + " 'created to make donations to projects of general '\n", + " 'interest in the area around The Hague in the '\n", + " 'Netherlands. In doing so, the foundation operates '\n", + " 'closely in line with the ideals of its '\n", + " 'predecessors, the original Dutch savings banks at '\n", + " 'the beginning of the 19th Century.',\n", + " 'Geographic Focus': 'The Hague, Delft, Zoetermeer, Leiden, '\n", + " 'Noordwijk and surrounding area',\n", + " 'Mission': 'To support projects that contribute to the '\n", + " 'maintenance and improvement of a liveable Dutch '\n", + " 'society, aimed at a sustainable future.',\n", + " 'Programme Areas': 'The foundation makes donations to '\n", + " 'specific projects in the following '\n", + " 'areas: • Youth\\n'\n", + " '• Culture\\n'\n", + " '• Nature and the environment\\n'\n", + " '• Health\\n'\n", + " '• Social projects'},\n", + " 'position': {'address': 'Fonds 1818, Riviervismarkt, The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0766884,\n", + " 'lng': 4.306905,\n", + " 'name': 'Fonds 1818',\n", + " 'place_id': 'ChIJ52ApXi-3xUcRwS8uuyoaKdg',\n", + " 'post_code': '2513 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Riviervismarkt',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fonds1818.nl'},\n", + " {'address': 'Stefan Batory Foundation ul. Sapiezynska 10a 00-215 Warsaw '\n", + " 'Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'batory@batory.org.pl',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Poland'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5310,\n", + " 'link': 'https://philea.eu/members/stefan-batory-foundation/',\n", + " 'name': 'Stefan Batory Foundation',\n", + " 'philea_info': {'About': 'The Stefan Batory Foundation is an independent '\n", + " 'private Polish foundation established in 1988 by '\n", + " 'American financier and philanthropist George Soros '\n", + " 'and a group of Polish democratic leaders from the '\n", + " '1980’s. Cooperating with the Soros network, it has '\n", + " 'complete autonomy in its decision-making process.',\n", + " 'Geographic Focus': 'Poland and Central and Eastern Europe',\n", + " 'Mission': 'To support the development of an open, '\n", + " 'democratic society in Poland and other Central '\n", + " 'and East European countries.',\n", + " 'Programme Areas': 'The foundations’s work is divided into '\n", + " 'grantmaking and operational programmes: '\n", + " 'Grantmaking programs – Citizens for '\n", + " 'Democracy: the aim of the programme is '\n", + " 'to strengthen civil society development '\n", + " 'and enhance the contribution of '\n", + " 'non-governmental organizations to social '\n", + " 'justice, democracy and sustainable '\n", + " 'development.\\n'\n", + " '– Equal Opportunities: the programme '\n", + " 'consists in the development of a local '\n", + " 'scholarship system for secondary school '\n", + " 'students based on local community '\n", + " 'activity and resources. Through this '\n", + " 'programme the foundation intends to '\n", + " 'contribute to equalize the educational '\n", + " 'opportunities of children from urban and '\n", + " 'rural areas and help talented youth from '\n", + " 'low-income families.\\n'\n", + " '– For Belarus: The program’s objective '\n", + " 'is to support civic initiatives aimed at '\n", + " 'building an open society and preparing '\n", + " 'for democratic changes in Belarus. '\n", + " 'Operational programs – Debates: through '\n", + " 'Batory Foundation’s Debates the '\n", + " 'foundations aims to establish an '\n", + " 'independent meeting and discussion forum '\n", + " 'for politicians, professionals, public '\n", + " 'intellectuals and journalists. The goal '\n", + " 'is to foster public debate on issues '\n", + " 'important to the future of its country '\n", + " 'and region.\\n'\n", + " '– Your Vote, Your Choice: the '\n", + " 'programme’s goal is to increase public '\n", + " 'interest in local affairs and to '\n", + " 'encourage civic participation in public '\n", + " 'life, including an informed and '\n", + " 'responsible participation in local and '\n", + " 'parliamentary elections.\\n'\n", + " '– Public Integrity: the goal of the '\n", + " 'programme is to increase transparency '\n", + " 'and integrity in public life and to '\n", + " 'promote open, accountable governance.\\n'\n", + " '– Open Europe: the goal of the programme '\n", + " 'is to promote an active, coherent and '\n", + " 'friendly Polish and European Union '\n", + " 'policy towards our Eastern neighbors and '\n", + " 'to support democratic processes and '\n", + " 'pro-European trends in Eastern Europe.\\n'\n", + " '– Regional Alcohol and Drug Program: '\n", + " 'launched in 1996, the programme promotes '\n", + " 'innovative addiction treatment '\n", + " 'methodologies in Central and Eastern '\n", + " 'European and Central Asian countries. '\n", + " 'Its main purpose is to provide both '\n", + " 'theory and practice to clinical '\n", + " 'professionals and educators in the field '\n", + " 'of alcohol and drug prevention and '\n", + " 'treatment addressed to the population of '\n", + " 'addicted patients and their families\\n'\n", + " '– ECFR Warsaw: In September 2011, the '\n", + " 'Warsaw Office of the European Council on '\n", + " 'Foreign Relations (ECFR) was opened at '\n", + " 'the Batory Foundation. The goal of the '\n", + " 'ECFR Warsaw Office is to plug Polish '\n", + " 'political and expert milieus into the '\n", + " 'general European debate on EU external '\n", + " 'policy. The Office disseminates ECFR '\n", + " 'analyses and reports and organizes '\n", + " 'debates, discussions and conferences '\n", + " 'about them. It also undertakes its own '\n", + " 'research and expert analyses.'},\n", + " 'position': {'address': 'Foundation. Stefan Batory, Sapieżyńska 10A, 00-215 '\n", + " 'Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2538507,\n", + " 'lng': 21.0024074,\n", + " 'name': 'Foundation. Stefan Batory',\n", + " 'place_id': 'ChIJvafqI3HMHkcRi1KbhyvtFgM',\n", + " 'post_code': '00-215',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Sapieżyńska',\n", + " 'street_number': '10A',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.batory.org.pl'},\n", + " {'address': 'Stavros Niarchos Foundation (SNF) 86A Vas. Sofias Avenue 11528 '\n", + " 'Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': 'info@snf.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia', 'Australia'],\n", + " 'Europe (Southern / Mediterranean)': ['Greece'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5309,\n", + " 'link': 'https://philea.eu/members/stavros-niarchos-foundation/',\n", + " 'name': 'Stavros Niarchos Foundation (SNF)',\n", + " 'philea_info': {'About': 'The Stavros Niarchos Foundation (SNF) is one of '\n", + " 'the world’s leading private, international '\n", + " 'philanthropic organizations, making grants to '\n", + " 'nonprofit organizations in the areas of arts and '\n", + " 'culture, education, health and sports, and social '\n", + " 'welfare. SNF funds organizations and projects '\n", + " 'worldwide that aim to achieve a broad, lasting, '\n", + " 'and positive impact for society at large, and '\n", + " 'exhibit strong leadership and sound management. '\n", + " 'The Foundation also supports projects that '\n", + " 'facilitate the formation of public-private '\n", + " 'partnerships as an effective means for serving '\n", + " 'public welfare.',\n", + " 'Geographic Focus': 'Greece, Europe, Africa, America, South '\n", + " 'Asia, Australia, International',\n", + " 'Mission': 'In 2021, SNF celebrated 25 years of grantmaking. '\n", + " 'Over the past quarter-century, SNF has formed '\n", + " 'thousands of partnerships with organizations '\n", + " 'around the world, seeking to help create lasting '\n", + " 'positive impact for society. In this work, SNF '\n", + " 'has been guided by commitment to an open '\n", + " 'process, accessible to anyone, anytime, and to '\n", + " 'equal opportunity. SNF’s work, in addition to '\n", + " 'making grants to nonprofit organizations around '\n", + " 'the globe, has expanded in recent years to '\n", + " 'include initiatives to help promote civil '\n", + " 'discourse, productive exchange of ideas, and '\n", + " 'civic engagement. Every year, SNF organizes SNF '\n", + " 'Nostos, including the SNF Run and SNF '\n", + " 'Conference, at the SNFCC. In addition to this '\n", + " 'annual gathering, SNF is committed to fostering '\n", + " 'regular opportunities for discussion and '\n", + " 'dialogue and offers the monthly SNF Dialogues '\n", + " 'series in an effort to strengthen public '\n", + " 'discourse by presenting—live and '\n", + " 'online—individuals who inspire with their work '\n", + " 'and a forum for people to engage with them.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: Arts and Culture\\n'\n", + " 'Education\\n'\n", + " 'Health and Sports\\n'\n", + " 'Social Welfare Arts and culture Provides '\n", + " 'funds and grants to cultural and art '\n", + " 'organizations, institutions and museums '\n", + " 'for cultural or art programs and '\n", + " 'projects, performances, publications, '\n", + " 'exhibitions, events, related campaigns, '\n", + " 'renovations and conservation '\n", + " 'initiatives, infrastructure and '\n", + " 'equipment needs. Education Provides '\n", + " 'funds and grants to universities, '\n", + " 'schools, educational institutions and '\n", + " 'non-profit organizations for courses and '\n", + " 'lectures, educational and research '\n", + " 'programs, publications, expeditions, '\n", + " 'facilities and equipment, operating '\n", + " 'support and field staff costs. Health '\n", + " 'and Sports Provides funds and grants to '\n", + " 'medical centers, hospitals, foundations, '\n", + " 'associations and institutions for '\n", + " 'medical research, specialized healthcare '\n", + " 'and treatment programs, equipment and '\n", + " 'operating support. Social welfare '\n", + " 'Provides funds and grants to '\n", + " 'associations, community institutions, '\n", + " 'foundations and public benefit '\n", + " 'organizations for disaster relief '\n", + " 'efforts, water, hygiene and sanitation '\n", + " 'projects, infrastructure, equipment and '\n", + " 'vehicles, operating support; several of '\n", + " 'these projects address handicapped '\n", + " 'people, children and/or women in need.'},\n", + " 'position': {'address': 'Stavros Niarchos Foundation, Vasilissis Sofias, '\n", + " 'Athens 115 28, Greece',\n", + " 'city': 'Athina',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9813085,\n", + " 'lng': 23.7557287,\n", + " 'name': 'SNF Headquarters',\n", + " 'place_id': 'ChIJZfpgIVG9oRQR_O2TmCmVU7I',\n", + " 'post_code': '115 28',\n", + " 'state': 'Kentrikos Tomeas Athinon',\n", + " 'street_name': 'Vasilissis Sofias',\n", + " 'street_number': '86Α',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.snf.org'},\n", + " {'address': 'Special Olympics Europe/Eurasia Avenue Louise 43 B-1050 Brussels '\n", + " 'Belgium',\n", + " 'country': '',\n", + " 'email': 'wbyrne@specialolympics.org',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 5308,\n", + " 'link': 'https://philea.eu/members/special-olympics-europe-eurasia/',\n", + " 'name': 'Special Olympics Europe/Eurasia',\n", + " 'philea_info': {'About': 'Special Olympics Inc. is a global organisation '\n", + " 'registered in the U.S. which has 7 regional '\n", + " 'branches, SOEE being one of them, and provides its '\n", + " 'mission to over 70 Countries around the globe.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'Special Olympics’ mission is to provide '\n", + " 'year-round sports training and athletic '\n", + " 'competition in a variety of Olympic-type sports '\n", + " 'for children and adults with intellectual '\n", + " 'disabilities, giving them continuing '\n", + " 'opportunities to develop physical fitness, '\n", + " 'demonstrate courage, experience joy and '\n", + " 'participate in a sharing of gifts, skills and '\n", + " 'friendship with their families, other Special '\n", + " 'Olympics athletes and the community.'},\n", + " 'position': {'address': 'Avenue Louise 43, Saint-Gilles, Belgium',\n", + " 'city': 'Saint-Gilles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.83394879999999,\n", + " 'lng': 4.3566524,\n", + " 'name': 'Av. Louise 43',\n", + " 'place_id': 'ChIJP7Gk2YnEw0cR0MA9XKNV6Po',\n", + " 'post_code': '1060',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Avenue Louise',\n", + " 'street_name_short': 'Av. Louise',\n", + " 'street_number': '43',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health', 'Youth/Children Development'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.specialolympics.org/Regions/europe-eurasia/_Region-Front/Europe-Eurasia.aspx'},\n", + " {'address': 'Sparebankstiftelsen DnB NOR P.O. Box 555 Sentrum 0105 Oslo '\n", + " 'Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@sparebankstiftelsen.no',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Norway']},\n", + " 'id': 5307,\n", + " 'link': 'https://philea.eu/members/sparebankstiftelsen-dnb/',\n", + " 'name': 'Sparebankstiftelsen DnB',\n", + " 'philea_info': {'About': 'The foundation’s capital is a result of '\n", + " 'accumulated profits from the former Norwegian '\n", + " 'savings banks which are now part of DnB NOR- '\n", + " 'Norway’s largest financial services group. The '\n", + " 'foundation continues the savings banks’ tradition '\n", + " 'of giving monetary gifts to non-profit causes.',\n", + " 'Geographic Focus': 'Norway',\n", + " 'Mission': 'To contribute to charitable causes and invest in '\n", + " 'causes that benefit the general public.',\n", + " 'Programme Areas': 'Funds a wide range of charitable causes '\n", + " 'from community to national projects '\n", + " 'including the support of fine arts, '\n", + " 'children’s activities and heritage '\n", + " 'projects.'},\n", + " 'position': {'address': 'Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.9138688,\n", + " 'lng': 10.7522454,\n", + " 'name': 'Oslo',\n", + " 'place_id': 'ChIJOfBn8mFuQUYRmh4j019gkn4',\n", + " 'state': 'Oslo',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sparebankstiftelsen.no'},\n", + " {'address': 'Spanish Association of Foundations C/ Serrano Anguita, 13 28004 '\n", + " 'Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fundaciones.org',\n", + " 'geo_locations': {},\n", + " 'id': 5086,\n", + " 'link': 'https://philea.eu/members/spanish-association-of-foundations/',\n", + " 'name': 'Spanish Association of Foundations',\n", + " 'philea_info': {'About': 'The Spanish Association of Foundations (AEF) is a '\n", + " 'private and independent association of national '\n", + " 'scope. It brings together nearly 800 Spanish '\n", + " 'foundations of the most diverse dimensions, '\n", + " 'purposes and areas of action. It is the most '\n", + " 'representative entity of the sector at national '\n", + " 'level. AEF was established on 22 January 2003 as a '\n", + " 'result of the merger of the Foundations Center and '\n", + " 'the Spanish Confederation of Foundations. It '\n", + " 'carries out the work and experience of more than '\n", + " '30 years of the two previous associations.',\n", + " 'Mission': 'AEF’s mission is to work for the benefit of the '\n", + " 'whole foundational sector in favor of its '\n", + " 'development and strengthening.\\n'\n", + " 'Three main purposes:\\n'\n", + " 'Represent and defend the interests of Spanish '\n", + " 'foundations; Strengthen and articulate the '\n", + " 'sector; Improve the professionalization and '\n", + " 'management of foundations, contributing to their '\n", + " 'transparency and good governance.'},\n", + " 'position': {'address': 'Spanish Association of Foundations, Impact Hub '\n", + " 'Barceló, Calle de Serrano Anguita, 13, 28004 '\n", + " 'Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4276989,\n", + " 'lng': -3.699074899999999,\n", + " 'name': 'Spanish Association of Foundations',\n", + " 'place_id': 'ChIJ_1huM44oQg0RxXFi6ksN4Gw',\n", + " 'post_code': '28004',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Serrano Anguita',\n", + " 'street_name_short': 'C. de Serrano Anguita',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.fundaciones.org'},\n", + " {'address': 'Society of Swedish Literature in Finland, The Ritarikatus 5 '\n", + " '00170 Helsingfors Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'info@sls.fi',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland']},\n", + " 'id': 5306,\n", + " 'link': 'https://philea.eu/members/society-of-swedish-literature-in-finland-the/',\n", + " 'name': 'Society of Swedish Literature in Finland, The',\n", + " 'philea_info': {'About': 'The Society of Swedish Literature in Finland was '\n", + " 'founded as a learned society in 1885 to preserve, '\n", + " 'develop and mediate the Swedish cultural heritage '\n", + " 'in Finland. Since 1908 the society has held and '\n", + " 'administered the Swedish Cultural Foundation in '\n", + " 'Finland.',\n", + " 'Geographic Focus': 'Finland',\n", + " 'Mission': 'The Society of Swedish Literature in Finland is '\n", + " 'a learned society that preserves, develops and '\n", + " 'mediates the Swedish cultural heritage in '\n", + " 'Finland. The Society is a versatile and '\n", + " 'future-oriented cultural institution of '\n", + " 'Finland-Swedish literature, culture and '\n", + " 'research. The aims of the Society are realised '\n", + " 'through the archives and the library, the '\n", + " 'publishing unit, the research unit, the '\n", + " 'distribution of grants and scholarships and the '\n", + " 'financial administration. The Society of Swedish '\n", + " 'Literature is one of the largest managers of '\n", + " 'public funds in Finland.',\n", + " 'Programme Areas': 'The main programme areas of the '\n", + " 'associoation: – research in the '\n", + " 'humanities and social sciences,\\n'\n", + " '– preserving cultural heritage and '\n", + " 'archives\\n'\n", + " '– academic publishing in the humanities '\n", + " 'and social sciences,\\n'\n", + " '– giving scholarships and prizes for '\n", + " 'research and cultural activities '\n", + " 'Archives:\\n'\n", + " 'The archives of the Society of Swedish '\n", + " 'Literature in Finland strive to preserve '\n", + " 'the central parts of the Swedish '\n", + " 'cultural heritage in Finland, and to '\n", + " 'store this heritage in a safe manner in '\n", + " 'order to further mediate it to '\n", + " 'researchers or other individuals who '\n", + " 'take an interest in the culture, '\n", + " 'language, history and traditions of the '\n", + " 'Finland-Swedish people. Individual '\n", + " 'archives are received primarily as '\n", + " 'donations, but also in part as '\n", + " 'depositions. Publishing and Foreign '\n", + " 'Rights:\\n'\n", + " 'The publishing unit of the Society of '\n", + " 'Swedish Literature publishes scientific '\n", + " 'works of writing within the subjects of '\n", + " 'history, literary history, the Swedish '\n", + " 'language, ethnology, folklore and '\n", + " 'sociology. Historical source editions '\n", + " 'and text-critical editions also make up '\n", + " 'an important part of the publications. '\n", + " 'All of the books published are connected '\n", + " 'to the Swedish-speaking culture in '\n", + " 'Finland.The aim of the Society’s '\n", + " 'publishing unit is to publish culturally '\n", + " 'valuable books for the interest of '\n", + " 'research as well as for the reading '\n", + " 'public. As a scientific publishing '\n", + " 'house, the Society attaches great '\n", + " 'importance to the books fulfilling the '\n", + " 'requirements of scientific accuracy, as '\n", + " 'well as to the quality of the language '\n", + " 'and design. Library:\\n'\n", + " 'The library of the Society of Swedish '\n", + " 'Literature in Finland is a scientific '\n", + " 'library. Several historically valuable '\n", + " 'collections can be found in our '\n", + " 'collection, as well as both old and new '\n", + " 'scientific literature. The library '\n", + " 'contributes actively to research and '\n", + " 'education, especially within its own '\n", + " 'area of emphasis, the history of books. '\n", + " 'Research:\\n'\n", + " 'The research sector represents the most '\n", + " 'significant activity within the Society. '\n", + " 'By having increasingly concentrated on '\n", + " 'individual research since the beginning '\n", + " 'of the millennium, the Society has '\n", + " 'become one of the great financiers of '\n", + " 'research within the fields of humanities '\n", + " 'and social sciences in Finland. Related '\n", + " 'to the Society’s aims and fields of '\n", + " 'interest, research is carried out within '\n", + " 'the subjects of history, literary '\n", + " 'history, social sciences, the Swedish '\n", + " 'language and traditions. Researchers are '\n", + " 'employed for certain projects and with '\n", + " 'the scientific committees. The research '\n", + " 'sector seeks and maintains contact with '\n", + " 'other research institutions and '\n", + " 'financiers in Finland and the Nordic '\n", + " 'countries. The scientific committees of '\n", + " 'the Society of Swedish Literature act as '\n", + " 'mediating links to the Swedish-speaking '\n", + " 'university world in Finland. Prizes and '\n", + " 'Scholarships:\\n'\n", + " 'Upon application and examination, the '\n", + " 'Society of Swedish Literature in Finland '\n", + " 'distributes scholarships and means for '\n", + " 'research out of specific funds, which '\n", + " 'aims have usually been established by '\n", + " 'the donator of the respective funds. '\n", + " 'Upon application, the scientific '\n", + " 'committees distribute research '\n", + " 'scholarships from their own budget. Also '\n", + " 'individuals whose mother tongue is not '\n", + " 'Swedish can apply for means in order to '\n", + " 'carry out research if the planned '\n", + " 'research relates to the fields of '\n", + " 'interest and aims of the Society. The '\n", + " 'Society’s task is to promote scientific '\n", + " 'activity. The Society assigns the '\n", + " 'majority part of its profits to support '\n", + " 'its own activities, such as the archives '\n", + " 'and the library, research, publishing, '\n", + " 'projects and events that relate to these '\n", + " 'activities.'},\n", + " 'position': {'address': 'Finlandia-talo Oy, Mannerheimintie, Helsingfors, '\n", + " 'Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1756992,\n", + " 'lng': 24.9336092,\n", + " 'name': 'Finlandia Hall',\n", + " 'place_id': 'ChIJMSt58zIKkkYRAOiy0w3BzQ4',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Mannerheimintie',\n", + " 'street_number': '13e',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sls.fi'},\n", + " {'address': 'Simavi Naritaweg 135 1043BS Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@simavi.nl',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Ghana',\n", + " 'Kenya',\n", + " 'Malawi',\n", + " 'Tanzania',\n", + " 'Uganda'],\n", + " 'Asia & Pacific': ['Bangladesh', 'India', 'Nepal']},\n", + " 'id': 5303,\n", + " 'link': 'https://philea.eu/members/simavi/',\n", + " 'name': 'Simavi',\n", + " 'philea_info': {'About': 'Simavi was founded in 1925 by two medical doctors, '\n", + " 'Dr. John Van der Spek and Dr. H. Bervoets. Their '\n", + " 'aim was to provide medical assistance for health '\n", + " 'institutions in the former Dutch East Indies. Ever '\n", + " 'since, Simavi has been working to improve '\n", + " 'standards of health in developing countries.\\n'\n", + " 'Simavi was an acronym for Steun Inzake Medische '\n", + " 'Aangelegenheden Voor Inheemschen (Support for '\n", + " 'Medical Affairs for Indonesians). In its early '\n", + " 'years, Simavi shipped medicines, essentiall health '\n", + " 'supplies and resources over the ocean to support '\n", + " 'the work of medical missionary staff.\\n'\n", + " 'Over the course of its history, Simavi expanded '\n", + " 'the scale of their operations and activities.\\n'\n", + " 'Simavi has worked with over 30 million people in '\n", + " 'thousands of high-impact projects and is active in '\n", + " 'nine countries: Bangladesh, Nepal, India, '\n", + " 'Indonesia, Ghana, Malawi, Kenya, Tanzania and '\n", + " 'Uganda.\\n'\n", + " 'Simavi is now working supporting local CSOs and '\n", + " 'initiatives, shifting from transporting medicines '\n", + " 'to working with an integrated approach on local, '\n", + " 'national and international levels.',\n", + " 'Geographic Focus': 'Bangladesh, Nepal, India, Ghana, '\n", + " 'Malawi, Kenya, Tanzania, Uganda',\n", + " 'Mission': 'Simavi believes in A Healthy Life for All. '\n", + " 'Simavi strives for a world in which all women '\n", + " 'and girls are socially and economically '\n", + " 'empowered, and pursue their rights to live a '\n", + " 'healthy life free from discrimination, coercion '\n", + " 'and violence',\n", + " 'Programme Areas': '‘- Bodily autonomy\\n'\n", + " '– Sexual and reproductive health and '\n", + " 'rights\\n'\n", + " '– gender based violence\\n'\n", + " '– women’s social and economic '\n", + " 'empowerment\\n'\n", + " '– water, sanitation and hygiene (WASH)'},\n", + " 'position': {'address': 'Stichting Simavi, Naritaweg 135, 1043 BS Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3877099,\n", + " 'lng': 4.832788499999999,\n", + " 'name': 'Stichting Simavi',\n", + " 'place_id': 'ChIJJ4Y6XjjvxUcRa40lzL0rcYY',\n", + " 'post_code': '1043 BS',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Naritaweg',\n", + " 'street_number': '135',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://simavi.org/'},\n", + " {'address': 'Serbia',\n", + " 'country': 'Serbia',\n", + " 'email': 'office@filantropskiforum.com',\n", + " 'geo_locations': {},\n", + " 'id': 5369,\n", + " 'link': 'https://philea.eu/members/serbian-philanthropy-forum/',\n", + " 'name': 'Serbian Philanthropy Forum',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Serbia',\n", + " 'country': 'Serbia',\n", + " 'country_short': 'RS',\n", + " 'lat': 44.016521,\n", + " 'lng': 21.005859,\n", + " 'name': 'Serbia',\n", + " 'place_id': 'ChIJlYCJ8t8dV0cRXYYjN-pQXgU',\n", + " 'zoom': 7},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.srpskifilantropskiforum.org/'},\n", + " {'address': 'Sabanci Foundation Sabanci Center, 4. Levent Kule:2, Kat:8 34330 '\n", + " 'Istanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': 'info@sabancivakfi.org',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Turkey']},\n", + " 'id': 5299,\n", + " 'link': 'https://philea.eu/members/sabanci-foundation/',\n", + " 'name': 'Sabanci Foundation',\n", + " 'philea_info': {'About': 'The Sabanci family has contributed greatly to '\n", + " 'furthering the Turkish economy with numerous '\n", + " 'industrial conglomerates and investments since the '\n", + " 'establishment of the Sabanci Holding and Sabanci '\n", + " 'Group companies in 1967. Having placed much '\n", + " 'importance on the value of social and cultural '\n", + " 'institutions, the Sabanci family members are '\n", + " 'prominent figures in various charitable '\n", + " 'initiatives. In an attempt to institutionalise '\n", + " 'their philanthropic activities, the Haci Omer '\n", + " 'Sabanci Foundation (Sabanci Foundation) was '\n", + " 'established in 1974 by the sons of the late Haci '\n", + " 'Omer and Sadika Sabanci with a generous '\n", + " 'contribution of Sadika Sabanci’s estate.',\n", + " 'Geographic Focus': 'Turkey',\n", + " 'Mission': 'To promote social development and social '\n", + " 'awareness among current and future generations '\n", + " 'by supporting initiatives that create impact and '\n", + " 'lasting change in people’s lives.',\n", + " 'Programme Areas': 'Sabanci Foundation is active in the '\n", + " 'following areas: Institutions\\n'\n", + " 'Since its establishment, Sabanci '\n", + " 'Foundation has built over 120 '\n", + " 'institutions in 78 residential areas '\n", + " 'among Turkey: – Sabanci University '\n", + " '(www.sabanciuniv.edu)\\n'\n", + " '– 37 Educational institutions\\n'\n", + " '– 19 Dormitories\\n'\n", + " '– 16 Teacher centres\\n'\n", + " '– 5 Health care centres and hospitals\\n'\n", + " '– 16 Cultural Centres\\n'\n", + " '– 8 Social Facilities\\n'\n", + " '– 5 Sports facilities – 9 Contributions '\n", + " 'to Other Institutions Scholarships\\n'\n", + " 'More than 42,500 scholarships have been '\n", + " 'provided by Sabanci Foundation since '\n", + " '1974. Four different types of '\n", + " 'scholarships are given to 400 new '\n", + " 'students and a total of more than 1,500 '\n", + " 'students each year for: • University '\n", + " 'admission\\n'\n", + " '• Underdeveloped provinces\\n'\n", + " '• Students with disabilities\\n'\n", + " '• Sabanci Foundation – Vista Scholarship '\n", + " 'Scholarships are awarded so that '\n", + " 'successful students with financial '\n", + " 'difficulties can pursue a university '\n", + " 'education. Scholarships are not bound to '\n", + " 'any compulsory service or repayment '\n", + " 'obligation. Awards\\n'\n", + " 'Since its establishment the foundation '\n", + " 'has given over 1000 awards, divided into '\n", + " 'three categories: • Educational Awards\\n'\n", + " '• Art Awards\\n'\n", + " '• Sports Awards Arts and Culture\\n'\n", + " 'The foundation supports various '\n", + " 'festivals and contests to promote '\n", + " 'culture and art in Turkey: – Turkish '\n", + " 'Folk Dances Contest\\n'\n", + " '– International Sabanci Adana Theatre '\n", + " 'Festival\\n'\n", + " '– National Youth Philharmonic Orchestra\\n'\n", + " '– Mehtap Ar Children Theatrical Company\\n'\n", + " '– Ankara International Music Festival\\n'\n", + " '– Support for the excavation of the '\n", + " 'ancient city of Metropolis Programmes\\n'\n", + " 'Sabanci Foundation aims to enable social '\n", + " 'inclusion by promoting an equitable '\n", + " 'environment in which women, youth and '\n", + " 'persons with disabilities have access '\n", + " 'and equal opportunities to actively '\n", + " 'participate in society. The foundation '\n", + " 'does this through grantmaking, joint '\n", + " 'partnership programmes, seminars and '\n", + " 'other programme activities: • Social '\n", + " 'Development Grant Program\\n'\n", + " '• “Turkey’s Changemakers” TV Program\\n'\n", + " '• United Nations Joint Program to '\n", + " 'Promote and Protect the Human Rights of '\n", + " 'Women and Girls: Partnership and Grant '\n", + " 'Program\\n'\n", + " '• Grant Program for Multidimensional '\n", + " 'Women’s Empowerment\\n'\n", + " '• Sabanci Foundation Seminars'},\n", + " 'position': {'address': 'İstanbul, Turkey',\n", + " 'city': 'İstanbul',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0082376,\n", + " 'lng': 28.9783589,\n", + " 'name': 'İstanbul',\n", + " 'place_id': 'ChIJawhoAASnyhQR0LABvJj-zOE',\n", + " 'state': 'İstanbul',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sabancivakfi.org'},\n", + " {'address': 'Saastamoinen Foundation Pieni Roobertinkatu 5 B 15 00930 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'petteri.karttunen@saastamoinenfoundation.fi',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5298,\n", + " 'link': 'https://philea.eu/members/saastamoinen-foundation/',\n", + " 'name': 'Saastamoinen Foundation',\n", + " 'philea_info': {'About': 'Saastamoinen Foundation is a family foundation '\n", + " 'with roots deep in the Finnish forest industry. As '\n", + " 'stipulated in its rules, the purpose of the '\n", + " 'Foundation is “to promote and support the '\n", + " 'development of the Finnish economy and the use of '\n", + " 'the natural resources of our country, as well as '\n", + " 'research that is intended to develop the country’s '\n", + " 'spiritual and material life, and to maintain an '\n", + " 'art collection.”See more our history from our web '\n", + " 'pages.',\n", + " 'Geographic Focus': 'Main focus is in Finland. But as stated '\n", + " 'in our mission we support art and '\n", + " 'artists both in Finland and '\n", + " 'internationally. When supporting '\n", + " \"science and education, it's highest aim \"\n", + " 'is to promote international research, '\n", + " 'education and networking. As example we '\n", + " 'have many different residence programs, '\n", + " 'we bring international professors to '\n", + " 'Finland, have three different '\n", + " 'Fullbright programs etc.',\n", + " 'Mission': 'The Saastamoinen Foundation discharges its '\n", + " 'duties today as follows:\\n'\n", + " 'The Foundation maintains, develops and exhibits '\n", + " 'the art collection and thereby supports art and '\n", + " 'artists both in Finland and internationally. The '\n", + " 'Foundation’s art collection is permanently in '\n", + " 'display in EMMA – Espoo Museum of Modern Arts, '\n", + " 'and it is developed actively.\\n'\n", + " 'The Foundation supports and awards grants to '\n", + " 'promote science and education. This it does in '\n", + " 'cooperation with, among others, the University '\n", + " 'of Eastern Finland, Aalto University, and the '\n", + " 'Academy of Fine Arts of the University of Fine '\n", + " 'Arts; its highest aim is to promote '\n", + " 'international research, education and '\n", + " 'networking.\\n'\n", + " 'The Foundation manages its assets in a way that '\n", + " 'allows the implementation of the two '\n", + " 'above-mentioned tasks and their development in '\n", + " 'the long run.',\n", + " 'Programme Areas': 'Broadly Arts & science. The Foundation '\n", + " 'art collection is permanently on display '\n", + " 'in EMMA – Espoo Museum of Modern Art and '\n", + " 'it is developed actively. The '\n", + " 'Foundations main partners in the field '\n", + " 'of grants for promotion of science and '\n", + " 'higher education institutes continue to '\n", + " 'be the University of Easter Finland, '\n", + " 'Aalto University and the Academy of Fine '\n", + " 'Arts at the University of Arts Helsinki. '\n", + " 'We also have other grants and donations. '\n", + " 'As examples of that is Anti Festival '\n", + " 'International Prize for Live Arts and Me '\n", + " '& MYcity learning environment project. '\n", + " 'See more from our web pages and annual '\n", + " 'report.'},\n", + " 'position': {'address': 'Pieni Roobertinkatu 5, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1642976,\n", + " 'lng': 24.9463729,\n", + " 'name': 'Pieni Roobertinkatu 5',\n", + " 'place_id': 'ChIJ9bm4AskLkkYRb_lJS8zoCVc',\n", + " 'post_code': '00130',\n", + " 'street_name': 'Pieni Roobertinkatu',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.saastamoinenfoundation.fi'},\n", + " {'address': 'Romanian-American Foundation 6, Gina Patrichi (former Orlando) '\n", + " 'Street 010449 Bucharest 1 Romania',\n", + " 'country': 'Romania',\n", + " 'email': 'office@rafonline.org',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Romania']},\n", + " 'id': 5296,\n", + " 'link': 'https://philea.eu/members/romanian-american-foundation/',\n", + " 'name': 'Romanian-American Foundation',\n", + " 'philea_info': {'About': 'The Romanian-American Foundation came into being '\n", + " 'in 2009, after approval by the US Congress. The '\n", + " 'Foundation grew out of a 1994 U.S. government '\n", + " 'grant of $50 million establishing the '\n", + " 'Romanian-American Enterprise Fund (RAEF), to '\n", + " 'support Romania’s transition to a free market '\n", + " 'economy. Operating under the provisions of the '\n", + " 'SEED Act (Support to East European Democracy), '\n", + " 'RAEF’s fusion of investments and development '\n", + " 'activities in over fifteen years of active '\n", + " 'presence in Romania resulted in the Foundation’s '\n", + " '$150 million endowment.',\n", + " 'Geographic Focus': 'Romania',\n", + " 'Mission': 'The Romanian-American Foundation’s mission is to '\n", + " 'strengthen and promote conditions for a '\n", + " 'sustainable market economy and a democratic '\n", + " 'society that provide access to opportunities for '\n", + " 'all segments of the population in Romania.',\n", + " 'Programme Areas': 'Rural Economy\\n'\n", + " 'Almost half of the country’s population '\n", + " 'lives in rural areas, with many '\n", + " 'struggling on the verge of subsistence. '\n", + " 'We asked ourselves: What if they thrive? '\n", + " 'The two niches where we believe our '\n", + " 'interventions can help rural communities '\n", + " 'develop and take advantage of the demand '\n", + " 'from urban centers are small farmers and '\n", + " 'ecotourism. Small farmers can generate '\n", + " 'growth while working the land more '\n", + " 'efficiently. Rural areas are also a '\n", + " 'cradle for pristine land and '\n", + " 'centuries-old traditions which make them '\n", + " 'attractive ecotourism destinations. '\n", + " 'Technology & Innovation\\n'\n", + " 'The technology and innovation sectors '\n", + " 'are increasingly relevant for Romania. '\n", + " 'Our programs seek to help the future '\n", + " 'talent of Romania take advantage of '\n", + " 'business opportunities related to '\n", + " 'innovation and new product development, '\n", + " 'a shift that will require higher numbers '\n", + " 'of tech specialists with a new set of '\n", + " 'skills. Our intervention focus '\n", + " 'education, and we work closely with a '\n", + " 'large universe of partners '\n", + " '(universities, NGOs that in turn work '\n", + " 'with teachers and schools, and partners '\n", + " 'from the business sector) to design '\n", + " 'entrepreneurial programs that match the '\n", + " 'educational offer to the industry needs, '\n", + " 'endowing students with the technical and '\n", + " 'soft skills required by competitive '\n", + " 'markets. Civic Engagement\\n'\n", + " 'People involved in the life of the city, '\n", + " 'taking part in the decision-making '\n", + " 'process and contributing to solving '\n", + " 'their communities’ problems, supporting '\n", + " 'the causes they believe in, '\n", + " 'volunteering, choosing their '\n", + " 'representatives and holding them '\n", + " 'accountable, are the corner stones of a '\n", + " 'democratic society. We invest in the '\n", + " 'growth of an infrastructure for '\n", + " 'philanthropy and civic engagement and '\n", + " 'offer civic education programs designed '\n", + " 'to help the younger generations become '\n", + " 'engaged and empowered citizens.'},\n", + " 'position': {'address': 'Romanian-American Foundation, Strada Gina Patrichi '\n", + " '6, Bucharest, Romania',\n", + " 'city': 'București',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 44.4493683,\n", + " 'lng': 26.0894794,\n", + " 'name': 'Romanian-American Foundation',\n", + " 'place_id': 'ChIJzRp3U1T_sUARPs2PXQpkhNE',\n", + " 'post_code': '010449',\n", + " 'state': 'București',\n", + " 'street_name': 'Strada Gina Patrichi',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.RAFonline.org'},\n", + " {'address': 'Rockefeller Philanthropy Advisors 437 Madison Avenue, 37th Floor '\n", + " 'NY 10022 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@rockpa.org',\n", + " 'geo_locations': {},\n", + " 'id': 5294,\n", + " 'link': 'https://philea.eu/members/rockefeller-philanthropy-advisors/',\n", + " 'name': 'Rockefeller Philanthropy Advisors',\n", + " 'philea_info': {'About': 'In 1891, John D. Rockefeller, Sr. set out to '\n", + " 'manage his philanthropy “as if it were a '\n", + " 'business.” RPA maintains that commitment to '\n", + " 'practicality and strategic acumen; RPA believes '\n", + " 'that giving is a natural, enriching part of human '\n", + " 'life.',\n", + " 'Mission': 'To help donors create thoughtful, effective '\n", + " 'philanthropy throughout the world.',\n", + " 'Programme Areas': '‘- Strategy & Consulting\\n'\n", + " '– Management & Implementation\\n'\n", + " '– Fiscal Sponsorship'},\n", + " 'position': {'address': '437 Madison Avenue, NY, New York 10022, United '\n", + " 'States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.7573533,\n", + " 'lng': -73.97524349999999,\n", + " 'name': '437 Madison Ave',\n", + " 'place_id': 'ChIJr8O4RvxYwokR06DPVPxymuc',\n", + " 'post_code': '10022',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Madison Avenue',\n", + " 'street_name_short': 'Madison Ave',\n", + " 'street_number': '437',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.rockpa.org'},\n", + " {'address': 'Rockefeller Brothers Fund 475 Riverside Drive, Suite 900 NY '\n", + " '10115 New York United States',\n", + " 'country': 'United States',\n", + " 'email': 'communications@rbf.org',\n", + " 'geo_locations': {'Asia & Pacific': ['China'],\n", + " 'Europe (Central & Eastern / Balkans)': ['Balkans']},\n", + " 'id': 5293,\n", + " 'link': 'https://philea.eu/members/rockefeller-brothers-fund/',\n", + " 'name': 'Rockefeller Brothers Fund',\n", + " 'philea_info': {'About': 'The Rockefeller Brothers Fund (RBF) was founded in '\n", + " '1940 as a vehicle through which the five sons and '\n", + " 'daughters of John D. Rockefeller Jr could share a '\n", + " 'source of advice and research on charitable '\n", + " 'activities and combine some of their philanthropic '\n", + " 'activities to better effect. John D. Rockefeller '\n", + " 'Jr. made a substantial gift to the fund in 1951, '\n", + " 'and in 1960 the fund received a major bequest from '\n", + " 'his estate. Together these constitute the basic '\n", + " 'endowment of the RBF. In 1952, the founders began '\n", + " 'to include non-family members on the board. In '\n", + " '1958, the first of a number of daughters and sons '\n", + " 'of the founders joined the board, and in 1992 the '\n", + " 'first of their grandchildren. The foundation '\n", + " 'merged with the Charles E. Culpeper Foundation in '\n", + " '1999.',\n", + " 'Geographic Focus': 'US, namely New York City; and Southern '\n", + " 'China, Western Balkans',\n", + " 'Mission': 'To advance social change that contributes to a '\n", + " 'more just, sustainable, and peaceful world.',\n", + " 'Programme Areas': 'RBF’s grantmaking is organised around '\n", + " 'three themes: Democratic Practice, Peace '\n", + " 'and Security, Sustainable Development, '\n", + " 'and three pivotal places: New York City, '\n", + " 'Southern China, and the Western Balkans. '\n", + " '• Democratic Practice\\n'\n", + " '• Sustainable Development\\n'\n", + " '• Peace and Security\\n'\n", + " '• Pivotal Place: New York City\\n'\n", + " '• Pivotal Place: Southern China\\n'\n", + " '• Pivotal Place: Western Balkans '\n", + " 'Democratic Practice\\n'\n", + " 'Seeks to strengthen the vitality of '\n", + " 'democracy in the United States and in '\n", + " 'global governance. The programme’s core '\n", + " 'ideas—that for democracy to flourish and '\n", + " 'deliver on its promises its citizens '\n", + " 'must be engaged, empowered, and '\n", + " 'assertive, and institutions of '\n", + " 'governance must be inclusive, '\n", + " 'transparent, accountable, and '\n", + " 'responsive—provide a frame for the '\n", + " 'Fund’s Democratic Practice work in the '\n", + " 'United States and in global governance. '\n", + " 'Peace and Security\\n'\n", + " 'The Peace and Security programme '\n", + " 'reflects the Fund’s longstanding '\n", + " 'recognition of the complexities and '\n", + " 'possibilities that arise from global '\n", + " 'interdependence, and its enduring '\n", + " 'commitment to helping create the '\n", + " 'conditions for lasting peace in which '\n", + " 'justice and democratic governance '\n", + " 'prevail and sustainable development '\n", + " 'paths lead to shared prosperity in '\n", + " 'societies worldwide. Sustainable '\n", + " 'Development\\n'\n", + " 'Advances global stewardship that is '\n", + " 'ecologically based, economically sound, '\n", + " 'socially just, culturally appropriate, '\n", + " 'and consistent with intergenerational '\n", + " 'equity. Human activity is causing global '\n", + " 'warming, rapid loss of biodiversity, and '\n", + " 'accelerating degradation of Earth’s life '\n", + " 'support systems. With the recognition '\n", + " 'that the impact of unchecked climate '\n", + " 'change threatens all other conservation '\n", + " 'efforts, the programme focuses its '\n", + " 'grantmaking on advancing solutions to '\n", + " 'climate change. Pivotal Place: New York '\n", + " 'City\\n'\n", + " '– The Charles E. Culpeper Arts & Culture '\n", + " 'grants honor the legacy of Charles E. '\n", + " 'Culpeper by supporting the artists and '\n", + " 'arts and cultural organizations that '\n", + " 'make New York City one of the world’s '\n", + " 'most dynamic creative capitals.\\n'\n", + " '– The Pocantico Center is a venue for '\n", + " 'conferences and meetings on critical '\n", + " 'issues related to the Rockefeller '\n", + " 'Brothers Fund’s mission. It also serves '\n", + " 'as a community resource and offers '\n", + " 'public access through a visitation '\n", + " 'program, lectures, and cultural events, '\n", + " 'as well as support to artists and arts '\n", + " 'organizations in the greater New York '\n", + " 'City area. The RBF’s stewardship of the '\n", + " 'Pocantico Historic Area includes '\n", + " 'overseeing the maintenance, care, '\n", + " 'conservation, and restoration of the '\n", + " 'historic buildings, gardens, and '\n", + " 'collections of decorative and fine art. '\n", + " 'Located 20 miles north of Manhattan in '\n", + " 'the Pocantico Historic Area, The '\n", + " 'Pocantico Center is managed by the '\n", + " 'Rockefeller Brothers Fund as part of its '\n", + " 'agreement with the National Trust for '\n", + " 'Historic Preservation. Pivotal Place: '\n", + " 'Southern China\\n'\n", + " 'Assists efforts by the Chinese '\n", + " 'government and people to support '\n", + " 'Southern China’s rapid development and '\n", + " 'the profound challenges, including '\n", + " 'environmental degradation and growing '\n", + " 'disparities between rich and poor, urban '\n", + " 'and rural which, which if not addressed, '\n", + " 'threaten the sustainability of '\n", + " 'development in the region, the country, '\n", + " 'and the world. Pivotal Place: Western '\n", + " 'Balkans\\n'\n", + " 'The Fund’s work in the Balkans, and '\n", + " 'especially in Serbia, Montenegro, and '\n", + " 'Kosovo, gives special attention to '\n", + " 'democratic practice and sustainable '\n", + " 'development requirements.'},\n", + " 'position': {'address': 'Rockefeller Brothers Fund, 475 Riverside Drive, NY, '\n", + " 'New York 10115, United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.8108449,\n", + " 'lng': -73.9640282,\n", + " 'name': 'Rockefeller Brothers Fund',\n", + " 'place_id': 'ChIJObtpQj_2wokRNsvzZVDQfYk',\n", + " 'post_code': '10115',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'Riverside Drive',\n", + " 'street_name_short': 'Riverside Dr',\n", + " 'street_number': '475',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rbf.org'},\n", + " {'address': 'Robert Bosch Stiftung Heidehofstraße 31 70184 Stuttgart Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'rbsg@bosch-stiftung.de',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5292,\n", + " 'link': 'https://philea.eu/members/robert-bosch-stiftung-gmbh/',\n", + " 'name': 'Robert Bosch Stiftung GmbH',\n", + " 'philea_info': {'About': 'The Robert Bosch Stiftung GmbH is one of the major '\n", + " 'German foundations associated with a private '\n", + " 'company in Europe. It works in the areas of '\n", + " 'health, education, and global issues.',\n", + " 'Geographic Focus': 'Germany & Europe, North America, Middle '\n", + " 'East & North Africa, Africa, Asia',\n", + " 'Mission': 'With its charitable activities, it contributes '\n", + " 'to the development of viable solutions to social '\n", + " 'challenges. For this purpose, the Foundation '\n", + " 'implements its own projects, enters into '\n", + " 'alliances with partners, and supports '\n", + " 'third-party initiatives.',\n", + " 'Programme Areas': 'The Robert Bosch Stiftung addresses '\n", + " 'social issues in three areas of '\n", + " 'support:\\n'\n", + " '• Health\\n'\n", + " '• Education\\n'\n", + " '• Global Issues\\n'\n", + " 'Please find more information about the '\n", + " 'Robert Bosch Stiftung here: '\n", + " 'www.bosch-stiftung.de'},\n", + " 'position': {'address': 'Robert Bosch Stiftung GmbH, Heidehofstraße 31, '\n", + " '70184 Stuttgart, Germany',\n", + " 'city': 'Stuttgart',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 48.77749319999999,\n", + " 'lng': 9.1996634,\n", + " 'name': 'Robert Bosch Stiftung GmbH',\n", + " 'place_id': 'ChIJxZbap8fEmUcRQ9lqXktR3YY',\n", + " 'post_code': '70184',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Heidehofstraße',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bosch-stiftung.de'},\n", + " {'address': 'RNW Media Witte Kruislaan 55a 1217 AM Hilversum Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'connect@rnw.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['China'],\n", + " 'Latin America & Caribbean': ['Latin America'],\n", + " 'Middle East & North Africa (MENA)': ['Arab World']},\n", + " 'id': 5291,\n", + " 'link': 'https://philea.eu/members/rnw-media/',\n", + " 'name': 'RNW Media',\n", + " 'philea_info': {'About': 'RNW Media is the former Radio Netherlands '\n", + " 'Worldwide, which was founded as the Dutch '\n", + " 'international public broadcaster. Now RNW is a '\n", + " 'multimedia organisation promoting free speech in '\n", + " 'countries where freedom of expression is '\n", + " 'restricted. They use media to make lives better.',\n", + " 'Geographic Focus': 'China, Sub-Saharan Africa, Latin '\n", + " 'America, Arab World',\n", + " 'Mission': 'RNW Media uses media for change. With innovative '\n", + " 'approaches to media and training we connect '\n", + " 'communities and change-makers, enabling young '\n", + " 'people to make informed choices.',\n", + " 'Programme Areas': 'Three core themes:\\n'\n", + " '-democracy\\n'\n", + " '-good governance\\n'\n", + " '-sexual health and rights, international '\n", + " 'justice'},\n", + " 'position': {'address': 'RNW Media, Witte Kruislaan 55A, 1217 AM Hilversum, '\n", + " 'Netherlands',\n", + " 'city': 'Hilversum',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.24425420000001,\n", + " 'lng': 5.165984100000001,\n", + " 'name': 'RNW Media',\n", + " 'place_id': 'ChIJjZoR0VVrxkcRARGi9Bk9wig',\n", + " 'post_code': '1217 AM',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Witte Kruislaan',\n", + " 'street_number': '55A',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://www.rnw.org/'},\n", + " {'address': 'Riksbankens Jubileumsfond Kungsträdgårdsgatan 18, P.O. Box 5675 '\n", + " '114 86 Stockholm Sweden',\n", + " 'country': 'Sweden',\n", + " 'email': 'rj@rj.se',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Sweden'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5289,\n", + " 'link': 'https://philea.eu/members/riksbankens-jubileumsfond/',\n", + " 'name': 'Riksbankens Jubileumsfond',\n", + " 'philea_info': {'About': 'Stiftelsen Riksbankens Jubileumsfond was endowed '\n", + " 'by the Bank of Sweden in 1962 as an independent '\n", + " 'foundation to commemorate the Bank’s tercentenary. '\n", + " 'In 1993, Riksdag, the Swedish Parliament, approved '\n", + " 'the contribution of a further donation to the '\n", + " 'foundation aimed at encouraging research in the '\n", + " 'humanities and social sciences.',\n", + " 'Geographic Focus': 'Sweden and international',\n", + " 'Mission': 'To support and promote scientific research, '\n", + " 'primarily in the Humanities and Social Sciences, '\n", + " 'Law and Theology.',\n", + " 'Programme Areas': 'The foundation works broadly along two '\n", + " 'lines:\\n'\n", + " '– First, high-quality research proposed '\n", + " 'in applications from the researchers '\n", + " 'themselves is funded within the '\n", + " 'framework of the regular support forms: '\n", + " 'projects, programmes, infrastructure for '\n", + " 'research, and research initiation.\\n'\n", + " '– Second, there are focused initiatives '\n", + " 'serving, in accordance with the '\n", + " 'Statutes, to develop Swedish research '\n", + " 'and enhance its international status. '\n", + " 'Programmes\\n'\n", + " 'Programmes are RJ’s support form for '\n", + " 'major research assignments requiring '\n", + " 'large research groups for six to eight '\n", + " 'years. Projects\\n'\n", + " 'A project is a research assignment '\n", + " 'usually carried out over a maximum of '\n", + " 'three years by a single researcher or '\n", + " 'small research group. Infrastructure for '\n", + " 'research\\n'\n", + " 'Infrastructure for research relates to '\n", + " 'initiatives aimed at making possible and '\n", + " 'promoting future research. Grants are '\n", + " 'awarded for measures to prepare for '\n", + " 'research, such as establishing new '\n", + " 'research environments or creating '\n", + " 'platforms to develop collaboration '\n", + " 'between the research community and other '\n", + " 'institutions. Research initiation\\n'\n", + " 'To meet the research community’s demand '\n", + " 'for grants to cover academic meetings '\n", + " 'and establishment of academic networks, '\n", + " 'RJ awards grants for research '\n", + " 'initiation. The applications span a '\n", + " 'broad range, from contributions to '\n", + " 'international conferences held both in '\n", + " 'Sweden and abroad to working conferences '\n", + " 'on new research areas, seminars, network '\n", + " 'support and preparation of new research '\n", + " 'programmes. FOCUSED INITIATIVES\\n'\n", + " 'Focused (also known as ‘thematic’ or '\n", + " '‘proactive’) initiatives are used to '\n", + " 'develop and strengthen Swedish research. '\n", + " 'They vary in nature, ranging from career '\n", + " 'posts for young researchers to funding '\n", + " 'calls in high-priority research areas. '\n", + " 'These initiatives also provide scope for '\n", + " 'testing new solutions and alternative '\n", + " 'work procedures, and for results being '\n", + " 'used in a subsequent stage to develop '\n", + " 'the researcher-initiated forms of '\n", + " 'support.\\n'\n", + " '– Pro Futura\\n'\n", + " '– RJ Sabbatical\\n'\n", + " '– Europe and Global Challenges\\n'\n", + " '– Flexit\\n'\n", + " '– New Prospects for Humanities and '\n", + " 'Social Sciences'},\n", + " 'position': {'address': 'Stockholm, Sweden',\n", + " 'city': 'Stockholm',\n", + " 'country': 'Sweden',\n", + " 'country_short': 'SE',\n", + " 'lat': 59.32932349999999,\n", + " 'lng': 18.0685808,\n", + " 'name': 'Stockholm',\n", + " 'place_id': 'ChIJywtkGTF2X0YRZnedZ9MnDag',\n", + " 'state': 'Stockholm County',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.rj.se/en/'},\n", + " {'address': 'Realdania Jamers Plads 2 DK-1551 Copenhagen V Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'realdania@realdania.dk',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark']},\n", + " 'id': 5288,\n", + " 'link': 'https://philea.eu/members/realdania/',\n", + " 'name': 'Realdania',\n", + " 'philea_info': {'About': 'Realdania was established in late 2000 following a '\n", + " 'merger between two large financial institutions. '\n", + " 'Realdania is a strategic foundation created with '\n", + " 'the objective of initiating and supporting '\n", + " 'projects that improve the built environment.',\n", + " 'Geographic Focus': 'Denmark',\n", + " 'Mission': 'To improve quality of life for the common good '\n", + " 'through the built environment.',\n", + " 'Programme Areas': 'Realdania contributes to development and '\n", + " 'change within the built environment, '\n", + " 'seeking to improve the quality of life, '\n", + " 'for the benefit of Denmark and its '\n", + " 'inhabitants.\\n'\n", + " 'This is realised through a multitude of '\n", + " 'initiatives that all share a common '\n", + " 'strategic focus. Realdania projects '\n", + " 'focus on issues of general interest, set '\n", + " 'new norms and are oriented towards '\n", + " 'communication and research. Key areas '\n", + " 'are: • Health Through the Built '\n", + " 'Environment\\n'\n", + " '• Sustainable Development in the Built '\n", + " 'Environment\\n'\n", + " '• The Transformation of the Suburbs'},\n", + " 'position': {'address': 'Realdania, Jarmers Plads, Copenhagen Municipality, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.67947599999999,\n", + " 'lng': 12.564626,\n", + " 'name': 'Realdania',\n", + " 'place_id': 'ChIJuzJJ5w5TUkYRzFEwIsUw1EM',\n", + " 'post_code': '1551',\n", + " 'street_name': 'Jarmers Plads',\n", + " 'street_name_short': 'Jarmers Pl.',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.realdania.dk'},\n", + " {'address': 'Prins Claus Fonds for Culture and Development Kingsfordweg 151 '\n", + " '1043 GR Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@princeclausfund.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Caribbean',\n", + " 'Latin America']},\n", + " 'id': 5286,\n", + " 'link': 'https://philea.eu/members/prins-claus-fonds-for-culture-and-development/',\n", + " 'name': 'Prins Claus Fonds for Culture and Development',\n", + " 'philea_info': {'About': 'The Prince Claus Fund was established on 6 '\n", + " 'September 1996 as a tribute to HRH Prince Claus’s '\n", + " 'dedication to culture and development.',\n", + " 'Geographic Focus': 'Latin America, Africa, Asia, the '\n", + " 'Caribbean and Eastern Europe.',\n", + " 'Mission': 'The Prince Claus Fund supports, connects, and '\n", + " 'celebrates artists and cultural practitioners '\n", + " 'where cultural expression is under pressure.',\n", + " 'Programme Areas': 'Cultural Emergency Response\\n'\n", + " 'We provide quick help to evacuate, '\n", + " 'stabilise or rescue cultural heritage '\n", + " 'that is under imminent threat of '\n", + " 'destruction or that has been damaged by '\n", + " 'man-made or natural disasters through '\n", + " 'our Cultural Emergency Response '\n", + " 'programme (CER). Prince Claus Awards\\n'\n", + " 'All over the world there are '\n", + " 'extraordinary people active in the '\n", + " 'cultural field, many are working in '\n", + " 'areas where cultural expression faces '\n", + " 'challenges. Each year we honour a select '\n", + " 'group of these individuals and '\n", + " 'organisations whose excellent work is '\n", + " 'having a positive impact on their '\n", + " 'societies. Grants & Collaborations\\n'\n", + " 'Our Grants & Collaborations programme '\n", + " 'supports cultural practitioners, artists '\n", + " 'and organisations in various ways, often '\n", + " 'in collaboration with other funding '\n", + " 'institutions. Opportunities to apply '\n", + " 'open up throughout the year. Next '\n", + " 'Generation\\n'\n", + " 'The Next Generation is a programme '\n", + " 'created specifically for and with young '\n", + " 'people (ages 15-30).\\n'\n", + " 'Through this programme we are looking '\n", + " 'for partnerships with organisations that '\n", + " 'work with young people to build more '\n", + " 'inclusive, open-minded societies and '\n", + " 'provide safe spaces for young people to '\n", + " 'create their own narratives.'},\n", + " 'position': {'address': '1043 GR Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.38588540000001,\n", + " 'lng': 4.8426952,\n", + " 'name': '1043 GR',\n", + " 'place_id': 'ChIJZSgAZl7ixUcRSOudUzx3YyM',\n", + " 'post_code': '1043 GR',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://princeclausfund.org/'},\n", + " {'address': 'het Cultuurfonds Herengracht 476, 1017 CB Amsterdam, P.O.Box '\n", + " '19750 1000 GT Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@cultuurfonds.nl',\n", + " 'geo_locations': {'Europe (Western / General)': ['Netherlands']},\n", + " 'id': 5285,\n", + " 'link': 'https://philea.eu/members/het-cultuurfonds/',\n", + " 'name': 'het Cultuurfonds',\n", + " 'philea_info': {'About': 'The Cultuurfonds was founded in London in 1940 by '\n", + " 'Prince Bernhard, father of Beatrix of the '\n", + " 'Netherlands, to buy war material for the British '\n", + " 'and Dutch Governments. It continued after the war '\n", + " 'as Prins Bernhard Cultuurfonds aimed at rebuilding '\n", + " 'the war torn cultural life in The Netherlands. '\n", + " 'Headquartered on the Herengracht canal in '\n", + " 'Amsterdam, the foundation has 12 local branches, '\n", + " 'one in each of the Dutch provinces. There is also '\n", + " 'a separate Distribution Committee for projects in '\n", + " 'the Caribbean part of the Kingdom of the '\n", + " 'Netherlands.',\n", + " 'Geographic Focus': 'Netherlands, Netherlands Antilles and '\n", + " 'Aruba',\n", + " 'Mission': 'To support cultural and nature preservation '\n", + " 'projects in The Netherlands, The Netherlands '\n", + " 'Antilles (Curaςao, Bonaire, St. Maarten, St. '\n", + " 'Eustatius, Saba) and Aruba.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: • Domestic initiatives\\n'\n", + " '• Awards and prizes\\n'\n", + " '• Bursaries Domestic Initiatives\\n'\n", + " 'Offers subsidy grants for projects in '\n", + " 'the Netherlands which focus on the '\n", + " 'performing arts, visual arts, the '\n", + " 'restoration of monuments, publications '\n", + " 'and nature conservation. Awards and '\n", + " 'Prizes\\n'\n", + " 'Many of the foundation’s regional '\n", + " 'branches offer their own prizes and '\n", + " 'awards, and in addition the foundation '\n", + " 'itself offers three flagship schemes: • '\n", + " 'The Prince Bernhard Culture Prizes: '\n", + " 'encompasses a variety of prizes under '\n", + " 'the general area of culture, such as the '\n", + " 'Martinus Nijhoff Prize for '\n", + " 'Translation/Interpretation which takes '\n", + " 'place every year. Each prize has its own '\n", + " 'jury and financial reward.\\n'\n", + " '• The Charlotte Köhler Prize: supports '\n", + " 'and encourages young talent artists, '\n", + " 'architects and dramatists up to 35 years '\n", + " 'old.\\n'\n", + " '• The Silver Carnation Award: this '\n", + " 'annual prize is awarded to those who '\n", + " 'have done the most work in promoting '\n", + " 'Dutch culture, and the culture of the '\n", + " 'Netherlands Antilles and Aruba. '\n", + " 'Bursaries\\n'\n", + " 'Offers study bursaries to young, '\n", + " 'talented students to allow them to '\n", + " 'pursue courses at university and high '\n", + " 'school, particularly if the course is '\n", + " 'based outside of the Netherlands.'},\n", + " 'position': {'address': 'Herengracht 476, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3650263,\n", + " 'lng': 4.891598,\n", + " 'name': 'Herengracht 476',\n", + " 'place_id': 'ChIJMRKh8eoJxkcRR7pqJMuQYIU',\n", + " 'post_code': '1017 CB',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Herengracht',\n", + " 'street_number': '476',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cultuurfonds.nl'},\n", + " {'address': 'Portuguese Foundation Centre Centro Cultural de Belém, Sala D, '\n", + " 'Praça do Império, 1449-003 Lisbon, Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'cpf@cpf.org.pt',\n", + " 'geo_locations': {},\n", + " 'id': 5283,\n", + " 'link': 'https://philea.eu/members/portuguese-foundation-centre/',\n", + " 'name': 'Portuguese Foundation Centre',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Portuguese Foundation Centre Centro Cultural de '\n", + " 'Belém, Sala D, Praça do Império, 1449-003 Lisbon, '\n", + " 'Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.6955029,\n", + " 'lng': -9.208354199999999,\n", + " 'place_id': 'ChIJW51RQkPLHg0RNpVMhpDspDY',\n", + " 'post_code': '1449-003',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Praça do Império',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.cpf.org.pt'},\n", + " {'address': 'Porticus P.O. Box 7867 1008 AB Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@porticus.com',\n", + " 'geo_locations': {'Worldwide': ['International']},\n", + " 'id': 5282,\n", + " 'link': 'https://philea.eu/members/porticus/',\n", + " 'name': 'Porticus',\n", + " 'philea_info': {'About': 'Porticus builds on a heritage of charitable '\n", + " 'engagement that dates back to Clemens and August '\n", + " 'Brenninkmeijer, the two brothers who founded the '\n", + " 'clothing retailer C&A in 1841. In fact, the first '\n", + " 'record of a gift can be found in the personal '\n", + " 'ledger of August who, only months after founding '\n", + " 'the company, recorded a donation “to the poor”. It '\n", + " 'was from these modest beginnings that the culture '\n", + " 'of responsibility and engagement developed. As '\n", + " 'natural as it was for the company’s founders to '\n", + " 'share their good fortune with the needy, so too '\n", + " 'was it natural for them to do so quietly. As the '\n", + " 'business grew and expanded globally, the '\n", + " 'generations of family entrepreneurs that followed '\n", + " 'continued and solidified the tradition of '\n", + " 'charitable giving.',\n", + " 'Geographic Focus': 'International',\n", + " 'Mission': 'Porticus manages the grant-giving programmes of '\n", + " 'the charitable entities established by '\n", + " 'Brenninkmeijer family entrepreneurs. They look '\n", + " 'to foster the development of citizens and make a '\n", + " 'contribution to their own development as well '\n", + " 'that of their communities. They focus on the '\n", + " 'areas of education, society, care and faith in '\n", + " 'order to promote respect of human dignity and '\n", + " 'social justice',\n", + " 'Programme Areas': 'Every year, approximately 3,000 projects '\n", + " 'are supported in more than 80 countries '\n", + " 'around the world.\\n'\n", + " 'The programme areas they are active in '\n", + " 'are:\\n'\n", + " '-Education\\n'\n", + " '-Society\\n'\n", + " '-Faith\\n'\n", + " '-Climate.'},\n", + " 'position': {'address': 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'name': 'Amsterdam',\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.porticus.com'},\n", + " {'address': 'Polish Donors Forum ul. Mokotowska 65/7 00-533 Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'poczta@forumdarczyncow.pl',\n", + " 'geo_locations': {},\n", + " 'id': 5281,\n", + " 'link': 'https://philea.eu/members/polish-donors-forum/',\n", + " 'name': 'Polish Donors Forum',\n", + " 'philea_info': {'About': 'Established in 2004, the Polish Donors Forum\\u200b '\n", + " 'is an \\u200bassociation of\\xa0 independent '\n", + " 'grant-making organisations for public-benefit '\n", + " 'purposes.',\n", + " 'Mission': 'The main statutory objective of the Polish '\n", + " 'Donors Forum is to support institutional '\n", + " 'philanthropy in Poland and to promote the best '\n", + " 'practices of grantmaking. The Forum undertakes '\n", + " 'activities aimed at creating a friendly '\n", + " 'operating environment for donors and their '\n", + " 'grantees. It also acts as a platform for '\n", + " 'experience sharing and exchange of information '\n", + " 'and expertise, encouraging peer learning and '\n", + " 'promotion of good practices in the donor '\n", + " 'community.'},\n", + " 'position': {'address': 'Mokotowska 65, Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.2266891,\n", + " 'lng': 21.0221065,\n", + " 'name': 'Mokotowska 65',\n", + " 'place_id': 'ChIJ9S1defDMHkcRA6OQ_tVeX0Y',\n", + " 'post_code': '00-530',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Mokotowska',\n", + " 'street_number': '65',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.forumdarczyncow.pl'},\n", + " {'address': 'PLAN BØRNE FONDEN Mimersgade 47, 4. 2200 N Copenhagen Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'mail@planbornefonden.dk',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa', 'Burkina Faso']},\n", + " 'id': 5280,\n", + " 'link': 'https://philea.eu/members/plan-borne-fonden/',\n", + " 'name': 'Plan Børne Fonden',\n", + " 'philea_info': {'About': 'Plan Børne Fonden is established out of an '\n", + " 'international movement to support children in need '\n", + " 'in developing countries. Our ambition is to '\n", + " 'provide children and their families from poor '\n", + " 'communities with the possibility to make a '\n", + " 'brighter future for themselves. As such Plan Børne '\n", + " 'Fonden works in local communities with local '\n", + " 'partners, authorities and stakeholders to ensure a '\n", + " 'sustainable and well rooted development.\\n'\n", + " 'Plan Børne Fonden is managing and operating its '\n", + " 'own programmes and activities through its local '\n", + " 'offices in each of the 5 programme countries. Thus '\n", + " 'our own staff works directly with beneficiaries, '\n", + " 'partners and local stakeholders.\\n'\n", + " 'Plan Børne Fonden is financed by individual '\n", + " 'sponsorship and from external grants, and often '\n", + " 'co-fund its activities in cooperation with '\n", + " 'international, national and institutional donors.',\n", + " 'Geographic Focus': 'Western Africa - Mali, Burkina Faso, '\n", + " 'Benin, Togo and Cape Verde',\n", + " 'Mission': 'Plan Børne Fonden works to improve the living '\n", + " 'conditions for children and young people in the '\n", + " 'poorest countries in the world. They work to '\n", + " 'enhance the opportunities of poor people to a '\n", + " 'healthier and safer upbringing and a brighter '\n", + " 'future.',\n", + " 'Programme Areas': 'Children and youth empowerment and '\n", + " 'development\\n'\n", + " 'Rights of children and youth\\n'\n", + " 'Health (including healthcare, nutrition, '\n", + " 'water and sanitation, sexual and '\n", + " 'reproductive health)\\n'\n", + " 'Education and Entrepreneurship'},\n", + " 'position': {'address': 'PlanBørnefonden, Mimersgade, København N, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6992115,\n", + " 'lng': 12.5476594,\n", + " 'name': 'Plan International Denmark',\n", + " 'place_id': 'ChIJUX1VjqdTUkYRMxyd9gTbtfI',\n", + " 'post_code': '2200',\n", + " 'street_name': 'Mimersgade',\n", + " 'street_number': '47',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://planbornefonden.dk/'},\n", + " {'address': 'Philanthropy Ireland Ltd 56 Fitzwilliam Square 2 Dublin Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': 'info@philanthropyireland.ie',\n", + " 'geo_locations': {},\n", + " 'id': 5279,\n", + " 'link': 'https://philea.eu/members/philanthropy-ireland-ltd/',\n", + " 'name': 'Philanthropy Ireland',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': '2 Fitzwilliam Square Dublin, Dublin 2, Dublin, '\n", + " 'Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.33428699999999,\n", + " 'lng': -6.251283499999999,\n", + " 'name': '2 Fitzwilliam Pl',\n", + " 'place_id': 'ChIJD0ctTL0OZ0gRmjdgB2o6Arg',\n", + " 'post_code': 'D02 K227',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Fitzwilliam Place',\n", + " 'street_name_short': 'Fitzwilliam Pl',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.philanthropyireland.ie'},\n", + " {'address': 'PeaceNexus Foundation Rt de Lausanne 107 CH-1197 Prangings '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@peacenexus.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Central & Eastern / Balkans)': ['Balkans'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5277,\n", + " 'link': 'https://philea.eu/members/peacenexus-foundation/',\n", + " 'name': 'PeaceNexus Foundation',\n", + " 'philea_info': {'About': 'PeaceNexus was founded by Anne Gloor and has been '\n", + " 'supported since its inception by an endowment fund '\n", + " 'granted by the philanthropist Hansjörg Wyss '\n", + " 'through the Wyss Foundation.',\n", + " 'Geographic Focus': 'Work at the international level and in '\n", + " 'four focus regions: West Africa, '\n", + " 'Western Balkans, Central Asia and South '\n", + " 'East Asia',\n", + " 'Mission': 'PeaceNexus’ mission is to strengthen the '\n", + " 'competencies and collaboration of organisations '\n", + " 'to increase their effectiveness and contribution '\n", + " 'to building peace.',\n", + " 'Programme Areas': 'PeaceNexus provides services to multiply '\n", + " 'the peacebuilding impact of their '\n", + " 'partners through: – organisational '\n", + " 'development for peacebuilding '\n", + " 'champions;\\n'\n", + " '– developing capacities for conflict '\n", + " 'sensitivity, and\\n'\n", + " '– supporting inclusive dialogue with '\n", + " 'business and other partners to develop '\n", + " 'solutions to local peacebuilding '\n", + " 'challenges.'},\n", + " 'position': {'address': 'PEACENEXUS, Route de Lausanne 107, 1197 Prangins, '\n", + " 'Switzerland',\n", + " 'city': 'Prangins',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.3918994,\n", + " 'lng': 6.254621799999999,\n", + " 'name': 'PEACENEXUS',\n", + " 'place_id': 'ChIJG5nGiBlDjEcRS7BfVtOg5jE',\n", + " 'post_code': '1197',\n", + " 'state': 'Vaud',\n", + " 'state_short': 'VD',\n", + " 'street_name': 'Route de Lausanne',\n", + " 'street_name_short': 'Rte de Lausanne',\n", + " 'street_number': '107',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Peace & Conflict Resolution'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.peacenexus.org'},\n", + " {'address': 'The Paul Hamlyn Foundation 5-11 Leeke Street WC1X 9HY London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'information@phf.org.uk',\n", + " 'geo_locations': {'Asia & Pacific': ['India'],\n", + " 'Europe (Western / General)': ['United Kingdom']},\n", + " 'id': 5276,\n", + " 'link': 'https://philea.eu/members/paul-hamlyn-foundation/',\n", + " 'name': 'Paul Hamlyn Foundation',\n", + " 'philea_info': {'About': 'Paul Hamlyn set up the Foundation in 1987 and left '\n", + " 'a substantial sum on his death to enlarge it. His '\n", + " 'values were summarised in the motto – ‘There must '\n", + " 'be a better way’, words which we have adapted in '\n", + " 'our strapline to describe what we want to achieve '\n", + " '– ‘Towards a better way’. That way is towards '\n", + " 'being a society that is fair, allows people to '\n", + " 'realise their potential, fights prejudice, '\n", + " 'encourages and assists participation in and '\n", + " 'enjoyment of the arts and learning, and '\n", + " 'understands the importance of the quality of life '\n", + " 'for all communities.',\n", + " 'Geographic Focus': 'United Kingdom and India',\n", + " 'Mission': 'Their mission is to help people to realise their '\n", + " 'potential and enjoy a better quality of life, '\n", + " 'now and in the future.',\n", + " 'Programme Areas': 'Arts; with special initiatives focused '\n", + " 'on organisational change in museums and '\n", + " 'galleries, supporting artists and '\n", + " 'innovation in the art sector and artists '\n", + " 'working in participatory setting.\\n'\n", + " 'Education & Learning; with special '\n", + " 'initiatives focused on music education, '\n", + " 'residential learning and good practice '\n", + " 'in the HR sector.\\n'\n", + " 'Social Justice; with special initiatives '\n", + " 'focused on refugee/migrant rights, the '\n", + " 'criminal justice system and supporting '\n", + " 'young people with mental health issues.\\n'\n", + " 'India; open grants focused on building '\n", + " 'capacity in NGOS working with vulnerable '\n", + " 'groups.'},\n", + " 'position': {'address': 'Paul Hamlyn Foundation, Leeke Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.53029950000001,\n", + " 'lng': -0.1180191,\n", + " 'name': 'Paul Hamlyn Foundation',\n", + " 'place_id': 'ChIJS71-rjgbdkgRn29H_3pkr7o',\n", + " 'post_code': 'WC1X 9HY',\n", + " 'state': 'England',\n", + " 'street_name': 'Leeke Street',\n", + " 'street_name_short': 'Leeke St',\n", + " 'street_number': '5-11',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.phf.org.uk'},\n", + " {'address': 'Open Society Foundations OSIFE, C/Elisabets, 24 08001 Barcelona '\n", + " 'Spain',\n", + " 'country': 'Germany',\n", + " 'email': 'info@opensocietyfoundations.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Caribbean', 'Latin America'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5274,\n", + " 'link': 'https://philea.eu/members/open-society-foundations/',\n", + " 'name': 'Open Society Foundations',\n", + " 'philea_info': {'About': 'Open Society Institute OSI was created in 1993 by '\n", + " 'investor and philanthropist George Soros to '\n", + " 'support his foundations in Central and Eastern '\n", + " 'Europe and the former Soviet Union. Those '\n", + " 'foundations were established, starting in 1984, to '\n", + " 'help countries make the transition from communism. '\n", + " 'OSI has expanded the activities of the Soros '\n", + " 'foundations network to other areas of the world '\n", + " 'where the transition to democracy is of particular '\n", + " 'concern. The Soros foundations network encompasses '\n", + " 'more than 60 countries, including the United '\n", + " 'States. In August 2010, it started using the name '\n", + " 'of Open Society Foundations (OSF) to better '\n", + " 'reflect its role as a funder for civil society '\n", + " 'groups around the world.',\n", + " 'Geographic Focus': 'Africa; Asia; Central, South and '\n", + " 'Eastern Europe; Central Eurasia; Latin '\n", + " 'America and the Caribbean; the Middle '\n", + " 'East; US',\n", + " 'Mission': 'To build vibrant and tolerant societies whose '\n", + " 'governments are accountable and open to the '\n", + " 'participation of all people; to strengthen the '\n", + " 'rule of law; respect for human rights, '\n", + " 'minorities, and a diversity of opinions; '\n", + " 'democratically elected governments; and a civil '\n", + " 'society that helps keep government power in '\n", + " 'check; to shape public policies that assure '\n", + " 'greater fairness in political, legal, and '\n", + " 'economic systems and safeguard fundamental '\n", + " 'rights; to advance justice, education, public '\n", + " 'health, and independent media; to protect and '\n", + " 'improve the lives of people in marginalized '\n", + " 'communities.',\n", + " 'Programme Areas': 'The Open Society Foundations’ '\n", + " 'initiatives address specific issue areas '\n", + " 'on a regional or network-wide basis. '\n", + " 'Many of them are implemented in '\n", + " 'cooperation with Soros foundations in '\n", + " 'various countries. Key areas of '\n", + " 'intervention include: • Children & '\n", + " 'Youth\\n'\n", + " '• Education\\n'\n", + " '• Socio-economic development\\n'\n", + " '• Democratic governance and '\n", + " 'transparency\\n'\n", + " '• Public Health\\n'\n", + " '• Human Rights, Civil Liberties and '\n", + " 'Citizens Security\\n'\n", + " '• Law & Justice\\n'\n", + " '• Media’s freedom\\n'\n", + " '• Women’s Rights'},\n", + " 'position': {'address': \"Carrer d'Elisabets, 24, Barcelona, Spain\",\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3830253,\n", + " 'lng': 2.1679675,\n", + " 'name': \"Carrer d'Elisabets, 24\",\n", + " 'place_id': 'ChIJ6wVnsfWipBIR9Sd2UXoKRNM',\n", + " 'post_code': '08001',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': \"Carrer d'Elisabets\",\n", + " 'street_number': '24',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health', 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.opensocietyfoundations.org'},\n", + " {'address': 'Open Estonia Foundation Estonia Avenue pst 5A 10143 Tallinn '\n", + " 'Estonia',\n", + " 'country': 'Estonia',\n", + " 'email': 'info@oef.org.ee',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Estonia']},\n", + " 'id': 5273,\n", + " 'link': 'https://philea.eu/members/open-estonia-foundation/',\n", + " 'name': 'Open Estonia Foundation',\n", + " 'philea_info': {'About': 'Open Estonia Foundation was set up in 1990 with '\n", + " 'the support of George Soros, who has closely '\n", + " 'followed the reforms in Central and Eastern Europe '\n", + " '(CEE) and now has a network of Open Society '\n", + " 'foundations operating in CEE countries. The '\n", + " 'foundation is an operating and grantgiving '\n", + " 'organisation.',\n", + " 'Geographic Focus': 'Estonia, also Russia.',\n", + " 'Mission': 'The mission of the foundation is the development '\n", + " 'of an open society in Estonia and in other '\n", + " 'countries. The foundation’s programs are driven '\n", + " 'by a vision of democracy, civil society, social '\n", + " 'responsibility, and equal opportunities in the '\n", + " 'democratic decision making process.',\n", + " 'Programme Areas': 'For the period 2018-2020 OEF focuses on '\n", + " 'two priority areas:\\n'\n", + " '1. vibrant and sustainable civil '\n", + " 'society;\\n'\n", + " '2. social cohesion. In the Vibrant and '\n", + " 'sustainable civil society priority area, '\n", + " 'OEF aims at:\\n'\n", + " '• strengthening civic space and capacity '\n", + " 'building for CSOs;\\n'\n", + " '• improving and developing capacity, '\n", + " 'advocacy skills and greater '\n", + " 'sustainability of civil society actors; '\n", + " 'aiming for a more active citizenship;\\n'\n", + " '• promoting the adoption of new, more '\n", + " 'participatory, transparent and '\n", + " 'accountable models of democracy;\\n'\n", + " '• open, transparent and accountable '\n", + " 'governance OEF’s strategic goals in the '\n", + " 'Fundamental Rights and Social Cohesion '\n", + " 'area include:\\n'\n", + " '• building a better understanding of '\n", + " 'democratic values among the public, '\n", + " 'particularly youth, and increasing their '\n", + " 'dedication to democratic practices as a '\n", + " 'key to social cohesion.\\n'\n", + " '• striving towards more open, tolerant '\n", + " 'and diverse society;\\n'\n", + " '• combating discrimination and '\n", + " 'prejudice, intolerance and xenophobia, '\n", + " 'especially against vulnerable and '\n", + " 'minority groups;\\n'\n", + " '• creating a better awareness of and '\n", + " 'compliance with fundamental rights and '\n", + " 'freedoms; The Foundation runs and '\n", + " 'supports initiatives in line with its '\n", + " 'strategic priorities, i.e achieving a '\n", + " 'greater engagement of civil society in '\n", + " 'policy processes and improving the '\n", + " 'capacity of citizens, civil society '\n", + " 'actors and the government to interact in '\n", + " 'creating policy solutions that uphold '\n", + " 'the values of open an society and best '\n", + " 'serve the public interest and generate a '\n", + " 'positive social change.\\n'\n", + " 'Open Estonia Foundation is the lead '\n", + " 'partner of Active Citizens Fund in '\n", + " 'Estonia, in cooperation with Network of '\n", + " 'Estonian Nonprofit organizations. '\n", + " 'Support to civil society is a key '\n", + " 'priority for the EEA and Norway Grants '\n", + " '2014-2021, funded by Iceland, '\n", + " 'Liechtenstein and Norway in 15 EU Member '\n", + " 'States in Central and Southern Europe '\n", + " 'and the Baltics. Full info on the '\n", + " 'program https://acf.ee/en/'},\n", + " 'position': {'address': 'Estonia puiestee 5a, Tallinn, Estonia',\n", + " 'city': 'Tallinn',\n", + " 'country': 'Estonia',\n", + " 'country_short': 'EE',\n", + " 'lat': 59.4348507,\n", + " 'lng': 24.7531709,\n", + " 'name': 'Estonia pst 5a',\n", + " 'place_id': 'ChIJ-09SImCTkkYRyBerMSOActE',\n", + " 'post_code': '10145',\n", + " 'state': 'Harju maakond',\n", + " 'street_name': 'Estonia puiestee',\n", + " 'street_name_short': 'Estonia pst',\n", + " 'street_number': '5a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Human/Civil Rights',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oef.org.ee'},\n", + " {'address': 'Oeuvre Nationale de Secours Grande-Duchess Charlotte 18, rue '\n", + " 'Leon Laval L-3372 Leudelange Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': 'secretariat@oeuvre.lu',\n", + " 'geo_locations': {'Europe (Western / General)': ['Luxembourg']},\n", + " 'id': 5271,\n", + " 'link': 'https://philea.eu/members/oeuvre-nationale-de-secours-grande-duchesse-charlotte/',\n", + " 'name': 'Oeuvre Nationale de Secours Grande-Duchesse Charlotte',\n", + " 'philea_info': {'About': 'Art.2 decree “London Christmas 1944” stipulates '\n", + " 'that the purpose of the work is to help the '\n", + " 'Luxembourg victims of the war in all cases where '\n", + " 'sufficient support from the public authorities is '\n", + " 'not yet organized or is not indicated.',\n", + " 'Geographic Focus': 'National - Luxembourg',\n", + " 'Mission': 'Since 1944, l’Oeuvre Nationale de Secours '\n", + " 'Grande-Duchesse Charlotte (Grand-Duchess '\n", + " 'Charlotte Aid Organization) has assumed a '\n", + " 'prominent role in organizing and financing '\n", + " 'philanthropy and solidarity in Luxembourg. The '\n", + " 'initial goal of helping the victims of the '\n", + " 'Second World War has been expanded over the '\n", + " 'years to support the many philanthropic '\n", + " 'activities and projects led by foundations and '\n", + " 'associations in the social, welfare and social '\n", + " 'protection fields, as well as environment, '\n", + " 'culture and sport. The financial means necessary '\n", + " 'for this purpose are essentially generated by '\n", + " 'the National Lottery. The law of May 22, 2009 '\n", + " 'related to the Oeuvre and the National Lottery '\n", + " 'confirmed to the Oeuvre both the status of '\n", + " 'public establishment enjoying legal personality '\n", + " 'under the tutelage of the Prime Minister, '\n", + " 'Minister of State the following main '\n", + " 'tasks/goals:\\n'\n", + " '– to help the Luxembourg victims of the Second '\n", + " 'World War;\\n'\n", + " '– to support organizations working in the social '\n", + " 'field to achieve the objectives that these '\n", + " 'organizations have set in their statutes;\\n'\n", + " '– to support organizations working at the '\n", + " 'national level in the fields of culture, sport '\n", + " 'and environmental protection;\\n'\n", + " '– to participate in the expenses of the '\n", + " 'municipal social offices and the Fonds national '\n", + " 'de solidarite (free translation: the National '\n", + " 'Solidarity Fund), and;\\n'\n", + " '– to organize and manage the National Lottery.',\n", + " 'Programme Areas': '‘- to help the Luxembourg victims of the '\n", + " 'Second World War;\\n'\n", + " '– support organizations working in the '\n", + " 'social field to achieve the objectives '\n", + " 'that these organizations have set in '\n", + " 'their statutes;\\n'\n", + " '– support organizations working at the '\n", + " 'national level in the fields of culture, '\n", + " 'sport and environmental protection;\\n'\n", + " '– to participate in the expenses of the '\n", + " 'communal social offices and the Fonds '\n", + " 'nationale de solidarite One-off aid: '\n", + " 'Specific aid is intended for '\n", + " 'not-for-profit organizations working at '\n", + " 'the national level in the social field, '\n", + " 'culture, sport and protection of the '\n", + " 'environment. In order to determine unmet '\n", + " 'needs that are not adequately covered or '\n", + " 'not covered at all, l’ Oeuvre regularly '\n", + " 'undertakes investigations together with '\n", + " 'prominent actors of the civil society '\n", + " 'and the associate sector. To address '\n", + " 'those shortcomings call for projects are '\n", + " 'launched. Call for projects: The Oeuvre '\n", + " 'regularly offers help through calls for '\n", + " 'projects dedicated to specific themes. '\n", + " 'The calls for projecs since 2014 have '\n", + " 'included the environmental commitment '\n", + " '(“Yes We Can Care”), the integration of '\n", + " 'applicants for international protection '\n", + " '(“mateneen”), the fight against '\n", + " 'addictions (“Addictions”), tolerance '\n", + " '(“Respect”) or prevention in the field '\n", + " 'of health (“Sports-Sante”). stART-UP '\n", + " 'Fund: The start-up fund of the Oeuvre is '\n", + " 'aimed at young and creative artists '\n", + " 'under the age of 36 to support their '\n", + " 'professionalization and the export of '\n", + " 'their work. Projects coming directly '\n", + " 'from not for profit organizations are '\n", + " 'eligible. Projects must have a link with '\n", + " 'Luxembourg, residence or nationality of '\n", + " 'the artist and be of public interest. '\n", + " 'The aid is one shot.'},\n", + " 'position': {'address': 'Œuvre Nationale de Secours Grande-Duchesse '\n", + " 'Charlotte, 18 Rue Léon Laval, 3372 Leudelange, '\n", + " 'Luxembourg',\n", + " 'city': 'Leudelange',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.5705961,\n", + " 'lng': 6.080992199999999,\n", + " 'name': 'Œuvre Nationale de Secours Grande-Duchesse Charlotte',\n", + " 'place_id': 'ChIJQf9Bup1JlUcRKk0YneA2F88',\n", + " 'post_code': '3372',\n", + " 'state': 'District de Luxembourg',\n", + " 'street_name': 'Rue Léon Laval',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oeuvre.lu'},\n", + " {'address': 'Oak Foundation Oak Philanthropy Ltd., Case postale 115 58, '\n", + " 'Avenue Louis Casaï 1216 Cointrin, Geneva Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@oakfnd.ch',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['India'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5270,\n", + " 'link': 'https://philea.eu/members/oak-foundation/',\n", + " 'name': 'Oak Foundation',\n", + " 'philea_info': {'About': 'The resources of the Oak Foundation originated '\n", + " 'from an interest in the Duty Free Shoppers '\n", + " 'business which Alan M. Parker helped to build up.',\n", + " 'Geographic Focus': 'International, Africa, India',\n", + " 'Mission': 'To address issues of global social and '\n", + " 'environmental concern, particularly those that '\n", + " 'have a major impact on the lives of the '\n", + " 'disadvantaged.',\n", + " 'Programme Areas': 'The foundation works in the following '\n", + " 'areas: – Child Abuse\\n'\n", + " '– Environment\\n'\n", + " '– Housing and Homelessness\\n'\n", + " '– International Human Rights\\n'\n", + " '– Issues Affecting Women\\n'\n", + " '– Learning Differences\\n'\n", + " '– Special Interest\\n'\n", + " '– Joint India Programme\\n'\n", + " '– Denmark\\n'\n", + " '– Zimbabwe Child Abuse: the foundation '\n", + " 'supports initiatives that aim to '\n", + " 'eliminate the sexual exploitation of '\n", + " 'children; engage men and boys in '\n", + " 'combating the sexual abuse of children; '\n", + " 'and promote the prevention of violence '\n", + " 'against children. Environment: the '\n", + " 'foundation’s grant-making focuses on '\n", + " 'three main areas: climate change '\n", + " 'mitigation; wildlife conservation; and '\n", + " 'the conservation of marine resources. '\n", + " 'Housing and Homelessness: the foundation '\n", + " 'focuses on preventing homelessness by '\n", + " 'funding sustainable solutions that '\n", + " 'improve the economic and social '\n", + " 'wellbeing of marginalised youth, adults '\n", + " 'and families. The programme has three '\n", + " 'priorities: promoting economic '\n", + " 'self-sufficiency; increasing the '\n", + " 'availability and supply of affordable '\n", + " 'housing; and preventing homelessness. '\n", + " 'International Human Rights: for this '\n", + " 'programme the foundation works with '\n", + " 'partners to end impunity for the gross '\n", + " 'violations of human rights; uphold '\n", + " 'prohibitions on arbitrary detention and '\n", + " 'torture; protect human rights defenders '\n", + " 'at risk; and multiply and amplify '\n", + " 'influential voices on IHRP global '\n", + " 'priorities. Issues Affecting Women: the '\n", + " 'foundation supports organisations that '\n", + " 'work to end patterns of violence and '\n", + " 'exploitation that disrupt women’s lives '\n", + " 'by ensuring that rights-based laws and '\n", + " 'policies guarantee an environment free '\n", + " 'from violence, and by transforming '\n", + " 'harmful social norms. This is '\n", + " 'complemented by support to a range of '\n", + " 'comprehensive services that empower '\n", + " 'women to recover from the trauma of '\n", + " 'violence and rebuild their lives. '\n", + " 'Learning Differences: the foundation '\n", + " 'supports teacher development, student '\n", + " 'engagement and parental understanding to '\n", + " 'enable students to follow their own '\n", + " 'individual paths to lifelong learning '\n", + " 'success. The foundation seeks partners '\n", + " 'who design and create learning '\n", + " 'environments that are informed by '\n", + " 'student voices, neuroscience, '\n", + " 'personalised learning best practices and '\n", + " 'universal design concepts. Special '\n", + " 'Interest: Special Interest grants cover '\n", + " 'a wide range of fields, including '\n", + " 'health, humanitarian relief, education '\n", + " 'and the arts. They are made to '\n", + " 'organisations whose activities the '\n", + " 'Trustees wish to support, irrespective '\n", + " 'of country or region. Joint India '\n", + " 'Programme: it consists of five Oak '\n", + " 'Programmes that work together to address '\n", + " 'a combination of issues that affect '\n", + " 'populations with less access to '\n", + " 'resources in Jharkhand and West Bengal '\n", + " 'located in east India. Denmark: Oak '\n", + " 'Foundation Denmark is a national '\n", + " 'programme through which the foundation '\n", + " 'provides grants to organisations in '\n", + " 'Denmark and Greenland. Through this '\n", + " 'programme the foundation seeks '\n", + " 'innovative solutions that improve the '\n", + " 'daily lives and future prospects of '\n", + " 'socially vulnerable and marginalised '\n", + " 'groups. In particular, it\\n'\n", + " 'focuses on initiatives that target '\n", + " 'ethnic minority women, homeless people, '\n", + " 'mothers, children, immigrants and '\n", + " 'refugees. Zimbabwe: Oak Zimbabwe '\n", + " 'Foundation is a national programme '\n", + " 'through which the foundation funds local '\n", + " 'organisations involved in caring and '\n", + " 'providing for the most disadvantaged and '\n", + " 'vulnerable people in Zimbabwean society. '\n", + " 'It gives support to organisations '\n", + " 'operating in the following priority '\n", + " 'areas: healthcare, including HIV/AIDS; '\n", + " 'rural water supplies; special needs '\n", + " 'education; and services that help '\n", + " 'vulnerable women, children and elderly '\n", + " 'persons.'},\n", + " 'position': {'address': 'Oak Philanthropy Ltd, Avenue Louis-Casaï 58, 1216 '\n", + " 'Cointrin, Geneva, Switzerland',\n", + " 'city': 'Cointrin',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.22375090000001,\n", + " 'lng': 6.1094305,\n", + " 'name': 'Oak Philanthropy Ltd',\n", + " 'place_id': 'ChIJP4QtKZpkjEcR3Fv6NcAOzdI',\n", + " 'post_code': '1216',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Avenue Louis-Casaï',\n", + " 'street_name_short': 'Av. Louis-Casaï',\n", + " 'street_number': '58',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Health',\n", + " 'Human/Civil Rights',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.oakfnd.org'},\n", + " {'address': 'Novo Nordisk Foundation Tuborg Havnevej 19 2900 Hellerup Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'nnfond@novo.dk',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Nordic Region)': ['Denmark'],\n", + " 'Worldwide': ['World']},\n", + " 'id': 5269,\n", + " 'link': 'https://philea.eu/members/novo-nordisk-foundation-the/',\n", + " 'name': 'Novo Nordisk Foundation, The',\n", + " 'philea_info': {'About': 'The Novo Nordisk Foundation is an independent '\n", + " 'Danish foundation with corporate interests. The '\n", + " 'objective of the Novo Nordisk Foundation is '\n", + " 'twofold: To provide a stable basis for the '\n", + " 'commercial and research activities conducted by '\n", + " 'the companies within the Novo Group and to support '\n", + " 'scientific and humanitarian purposes.',\n", + " 'Geographic Focus': 'Denmark, Scandinavia and certain parts '\n", + " 'of the developing world (Africa)',\n", + " 'Mission': 'To provide a stable basis for the commercial and '\n", + " 'research activities conducted by the companies '\n", + " 'within the Novo Group and to support scientific '\n", + " 'and humanitarian purposes.',\n", + " 'Programme Areas': 'The foundation supports scientific, '\n", + " 'humanitarian and social purposes. The '\n", + " 'majority of grants are given to medical '\n", + " 'and scientific projects and to other '\n", + " 'selected research areas. The '\n", + " 'foundation’s grants for research are '\n", + " 'apportioned as support for the '\n", + " 'following: • Specific project\\n'\n", + " '• Scholarships\\n'\n", + " '• Symposia\\n'\n", + " '• The Novo Nordisk Prize Funding areas: '\n", + " '– Art Research\\n'\n", + " '– Biomedicine and health sciences\\n'\n", + " '– Biotechnology\\n'\n", + " '– Conferences, symposia and workshops\\n'\n", + " '– Education and outreach\\n'\n", + " '– Life science innovation and '\n", + " 'entrepreneurship\\n'\n", + " '– Natural and technical science research '\n", + " 'and interdisciplinarity\\n'\n", + " '– Patient-centered and research-based '\n", + " 'care\\n'\n", + " '– Social and humanitarian initiatives\\n'\n", + " '– Social science research'},\n", + " 'position': {'address': 'Novo Nordisk Foundation, Tuborg Havnevej 19, 2900 '\n", + " 'Hellerup, Denmark',\n", + " 'city': 'Hellerup',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7270213,\n", + " 'lng': 12.5836844,\n", + " 'name': 'Novo Nordisk Foundation',\n", + " 'place_id': 'ChIJadmjE4ZSUkYRqwhCS5p5HKA',\n", + " 'post_code': '2900',\n", + " 'street_name': 'Tuborg Havnevej',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.novonordiskfonden.dk'},\n", + " {'address': 'Nordea-fonden Overgaden Neden Vandet 11 1414 Copenhagen K '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'kontakt@nordeafonden.dk',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark']},\n", + " 'id': 5268,\n", + " 'link': 'https://philea.eu/members/nordea-fonden/',\n", + " 'name': 'Nordea-fonden',\n", + " 'philea_info': {'About': 'Nordea-fonden was established when 3 major banks '\n", + " 'merged and turned into a limited company. The '\n", + " 'capital of the banks were the funding capital for '\n", + " 'the foundation. There is no organisational '\n", + " 'relationship with the commercial bank Nordea AB. '\n", + " 'The only relationship today is, that the '\n", + " 'predominant part of the capital in the foundation '\n", + " 'is invested in Nordea AB, which makes the '\n", + " 'Nordea-fonden the second largest investor in '\n", + " 'Nordea AB. All of profits arising from the '\n", + " 'invested capital are donated to non-profit '\n", + " 'purposes.',\n", + " 'Geographic Focus': 'Within the boundaries of Denmark',\n", + " 'Mission': 'To promote good quality of life in Demark, '\n", + " 'through support and engagement in a non-profit '\n", + " 'charity.',\n", + " 'Programme Areas': 'Under the current strategy (2013-15) our '\n", + " 'effort and donations are focused on four '\n", + " 'themes: Nature, Culture, Health and '\n", + " 'Sports.\\n'\n", + " 'They also provide grants for Danish '\n", + " 'students to study abroad. Nature\\n'\n", + " 'Nordea-fonden support projects to get '\n", + " 'Danes to spend more time in nature in '\n", + " 'urban and rural areas. The aim to '\n", + " 'improve access to natural areas, through '\n", + " 'infrastructure and other methods, such '\n", + " 'as educational classes in forests or '\n", + " 'city parks. Health\\n'\n", + " 'The organisation backs projects that '\n", + " 'promote health, focussing on food as a '\n", + " 'central feature of health and quality of '\n", + " 'life. They aim to support projects that: '\n", + " 'promote healthy eating habits by '\n", + " 'spreading knowledge and awareness of '\n", + " 'produce, crafts, taste and appreciation '\n", + " 'of cuisine in school, at home and '\n", + " 'leisure. Culture\\n'\n", + " 'They encourage participation in arts and '\n", + " 'culture, in order to strengthen the '\n", + " 'populations sense of creativity and '\n", + " 'playfulness in everyday life. They '\n", + " 'endorse this through the mediums of '\n", + " 'music, dance, film, visual arts and '\n", + " 'cultural heritage. Sports\\n'\n", + " 'Nordea-fonden fund and support '\n", + " 'activities that promote exercise, play, '\n", + " 'recreation and physical activity in '\n", + " 'general. They focus and value projects '\n", + " 'that: encourage all to engage in sports '\n", + " 'and physical activities, educate and '\n", + " 'share knowledge on exercise and outdoor '\n", + " 'activities.'},\n", + " 'position': {'address': 'Nordea Fonden, Overgaden Neden Vandet 11, 1414 '\n", + " 'Copenhagen, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6722099,\n", + " 'lng': 12.5897326,\n", + " 'name': 'Nordea Fonden',\n", + " 'place_id': 'ChIJpwlMZa1TUkYR_7yi9OXdh58',\n", + " 'post_code': '1414',\n", + " 'street_name': 'Overgaden Neden Vandet',\n", + " 'street_number': '11',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nordeafonden.dk/'},\n", + " {'address': 'Postcode Lottery Group Beethovenstraat 200 1077 JZ Amsterdam '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Norway', 'Sweden'],\n", + " 'Europe (Western / General)': ['Germany', 'Netherlands'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 5265,\n", + " 'link': 'https://philea.eu/members/postcode-lottery-group/',\n", + " 'name': 'Postcode Lottery Group',\n", + " 'philea_info': {'About': 'The Postcode Lottery Group\\xa0is a private '\n", + " 'company, fully owned by a foundation, with a '\n", + " 'social purpose that brings together business and '\n", + " 'ideals. Its sole mission is to raise funds for '\n", + " 'charities working to build a fair, green, and '\n", + " 'healthy world in which everyone can participate '\n", + " 'fully and with a thriving cultural sector. It\\xa0'\n", + " 'sets up and operates subscription-based charity '\n", + " 'lotteries worldwide to raise funds for good '\n", + " 'causes.',\n", + " 'Geographic Focus': 'Global, with a specific focus on the '\n", + " 'countries where the lotteries are '\n", + " 'active: Netherlands, Sweden, Great '\n", + " 'Britain, Germany, Norway',\n", + " 'Mission': 'To raise long-term funding for local and '\n", + " 'international charity partners and increase '\n", + " 'awareness of their work.',\n", + " 'Programme Areas': 'The Postcode Lottery Group provides '\n", + " 'long-term institutional support to '\n", + " 'organisations worldwide working in the '\n", + " 'areas of (girls’) education, human '\n", + " 'rights, poverty alleviation, social '\n", + " 'cohesion, preservation of cultural '\n", + " 'heritage, nature conservation and '\n", + " 'environment, species protection and '\n", + " 'health.'},\n", + " 'position': {'address': 'Beethovenstraat 200, 1077 JZ Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3414279,\n", + " 'lng': 4.8758224,\n", + " 'name': 'Beethovenstraat 200',\n", + " 'place_id': 'ChIJ3Y1aWwMKxkcRbP6rYT-zZ1Y',\n", + " 'post_code': '1077 JZ',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Beethovenstraat',\n", + " 'street_number': '200',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.postcodelotterygroup.com'},\n", + " {'address': 'National Foundation for Civil Society Development- Croatia '\n", + " 'Strigina 1a 10000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'zaklada@civilnodrustvo.hr',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Croatia'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5263,\n", + " 'link': 'https://philea.eu/members/national-foundation-for-civil-society-development-croatia/',\n", + " 'name': 'National Foundation for Civil Society Development - Croatia',\n", + " 'philea_info': {'About': 'Nacionalna Zaklada za Razvoj Civilnoga Drustva is '\n", + " 'a public foundation founded by a special act '\n", + " 'passed by the Croatian Parliament on 16 October '\n", + " '2003. The foundation carries out a mix of '\n", + " 'operating and grantmaking activities funded by the '\n", + " 'Croatian lottery, state budget and EU funds.',\n", + " 'Geographic Focus': 'Croatia and Central and Eastern Europe',\n", + " 'Mission': 'To promote and develop civil society in Croatia.',\n", + " 'Programme Areas': 'Goals that the National Foundation aims '\n", + " 'to achieve through its activities are: – '\n", + " 'Encouraging citizens to action, '\n", + " 'involvement and participation in '\n", + " 'community development;\\n'\n", + " '– Building the capacities of civil '\n", + " 'society;\\n'\n", + " '– Development of cross-sectoral '\n", + " 'cooperation and cooperation between '\n", + " 'civil society organisations;\\n'\n", + " '– Increasing public influence and '\n", + " 'visibility of the work of civil society '\n", + " 'organisations;\\n'\n", + " '– Development of social entrepreneurship '\n", + " 'and employment in the non-profit '\n", + " 'sector;\\n'\n", + " '– Increasing the influence of civil '\n", + " 'society in the process of adopting '\n", + " 'public policies.'},\n", + " 'position': {'address': 'Štrigina ulica 1A, 10000, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.8119848,\n", + " 'lng': 16.0047961,\n", + " 'name': 'Štrigina ul. 1A',\n", + " 'place_id': 'ChIJFU6InrTXZUcRAq4aroZVdCA',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Štrigina ulica',\n", + " 'street_name_short': 'Štrigina ul.',\n", + " 'street_number': '1A',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://zaklada.civilnodrustvo.hr'},\n", + " {'address': 'Mozaik Foundation Soukbunar 42 71000 Sarajevo Bosnia and '\n", + " 'Herzegovina',\n", + " 'country': 'Bosnia and Herzegovina',\n", + " 'email': 'info@mozaik.ba',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Balkans']},\n", + " 'id': 5262,\n", + " 'link': 'https://philea.eu/members/mozaik-foundation/',\n", + " 'name': 'Mozaik Foundation',\n", + " 'philea_info': {'About': 'Mozaik Foundation was established in 2002, as a '\n", + " 'foundation for the development of non-governmental '\n", + " 'organisations (NGOs). The objective of the '\n", + " 'founders was to create a local indigenous '\n", + " 'institution, which would assist all the citizens '\n", + " 'of Bosnia and Herzegovina long after international '\n", + " 'organisations have left the country.',\n", + " 'Geographic Focus': 'Rural areas and small communities '\n", + " 'throughout Bosnia and Herzegovina',\n", + " 'Mission': 'To encourage people to organise and advance '\n", + " 'their own communities.',\n", + " 'Programme Areas': 'The foundation works to mobilize local '\n", + " 'resources and to support the sustainable '\n", + " 'socio-economic development through two '\n", + " 'programmes: Youth Bank and All Inclusive '\n", + " 'Youth Bank\\n'\n", + " 'Aims to increase the participation of '\n", + " 'young people in the local development '\n", + " 'processes of Bosnia and Herzegovina’s '\n", + " 'rural communities. Working in '\n", + " 'partnership with Community Foundation '\n", + " 'for Northern Ireland (CFNI), this '\n", + " 'innovative small grant-making programme '\n", + " 'is run by young people for young people. '\n", + " 'Youth Bank creates opportunities for '\n", + " 'youth-led groups according to the needs '\n", + " 'in their communities- working on '\n", + " 'projects (cultural, sports etc.), '\n", + " 'participating as active citizens in '\n", + " 'their communities and developing '\n", + " 'professional governance and management '\n", + " 'skills through capacity building '\n", + " 'exercises and practical experience in '\n", + " 'operating a small grants program that '\n", + " 'directly supports young people in rural '\n", + " 'areas. All Inclusive\\n'\n", + " 'Through this programme the foundation '\n", + " 'provides financial and technical support '\n", + " 'to formal youth groups. The foundation '\n", + " 'has also launched two social businesses, '\n", + " 'EkoMozaik Ltd. and Agency MaŠta.'},\n", + " 'position': {'address': 'Soukbunar 42, Sarajevo 71000, Bosnia and '\n", + " 'Herzegovina',\n", + " 'city': 'Sarajevo',\n", + " 'country': 'Bosnia and Herzegovina',\n", + " 'country_short': 'BA',\n", + " 'lat': 43.8522829,\n", + " 'lng': 18.4145591,\n", + " 'name': 'Soukbunar 42',\n", + " 'place_id': 'EjRTb3VrYnVuYXIgNDIsIFNhcmFqZXZvIDcxMDAwLCBCb3NuaWEgYW5kIEhlcnplZ292aW5hIlASTgo0CjIJC6SFI93IWEcRuPXr_MyO7woaHgsQ7sHuoQEaFAoSCctVmj6fzlhHEUxZlCbE4Qv0DBAqKhQKEgkxLbDMwshYRxHBqxt2zhaUgA',\n", + " 'post_code': '71000',\n", + " 'state': 'Federacija Bosne i Hercegovine',\n", + " 'street_name': 'Soukbunar',\n", + " 'street_number': '42',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mozaik.ba'},\n", + " {'address': 'Medicor Foundation Landstrasse 11 P.\\u2009O. Box 130 9495 '\n", + " 'Triesen Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': 'info@medicor.li',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Caribbean',\n", + " 'Latin America']},\n", + " 'id': 5261,\n", + " 'link': 'https://philea.eu/members/medicor-foundation/',\n", + " 'name': 'Medicor Foundation',\n", + " 'philea_info': {'About': 'Medicor Foundation is an independent and '\n", + " 'charitable foundation based in Liechtenstein. '\n", + " 'Medicor Foundation is subject to the Liechtenstein '\n", + " 'Foundation Supervisory Authority (STIFA) and is a '\n", + " 'founding member of the Association of Charitable '\n", + " 'Foundations in Liechtenstein.',\n", + " 'Geographic Focus': 'Africa, Latin America and The '\n", + " 'Caribbean, and Eastern Europe',\n", + " 'Mission': 'Medicor Foundation aims to:\\n'\n", + " '• improve the living conditions of vulnerable '\n", + " 'and disadvantaged people and\\n'\n", + " '• empower them in a sustainable manner.\\n'\n", + " 'The donations are financed according to the '\n", + " 'returns on the investment of the foundation’s '\n", + " 'capital. The foundation has committed itself to '\n", + " 'sustainable development and strives to invest '\n", + " 'its capital in socially and ecologically '\n", + " 'responsible companies.\\n'\n", + " 'Medicor Foundation cultivates a broad network of '\n", + " 'international and national organisations and '\n", + " 'institutions, but is not an implementing agency.',\n", + " 'Programme Areas': 'Medicor Foundation focuses on '\n", + " 'international development. They select '\n", + " 'convincing projects in the fields of '\n", + " 'education, health and social care in '\n", + " 'countries in Africa, Latin America and '\n", + " 'The Caribbean, as well as in Eastern '\n", + " 'Europe. • Education: they support '\n", + " 'projects promote early child development '\n", + " 'and improve access and quality of '\n", + " 'primary and secondary education. '\n", + " 'Moreover, they fund projects that enable '\n", + " 'people to develop their professional '\n", + " 'skills or acquire relevant income '\n", + " 'generating skills and thereby start '\n", + " 'their working life.\\n'\n", + " '• Health: they provide funding for '\n", + " 'preventive and curative interventions '\n", + " 'with an emphasis on health education, '\n", + " 'the training of health personnel, as '\n", + " 'well as the development and maintenance '\n", + " 'of health infrastructure.\\n'\n", + " '• Social Care: they support projects '\n", + " 'that provide expert care and '\n", + " 'counselling, facilitate reintegration '\n", + " 'into society, and opens awareness and '\n", + " 'opportunities for a life in dignity and '\n", + " 'hope.\\n'\n", + " '• Emergency Relief: as a consequence of '\n", + " 'natural or man-made disasters people '\n", + " 'continually experience life-threatening '\n", + " 'situations. Medicor Foundation provides '\n", + " 'funding for immediate assistance where '\n", + " 'people are in distress.\\n'\n", + " '• Research: they support, through '\n", + " 'selected institutions, the applied '\n", + " 'research of widespread or neglected '\n", + " 'diseases in developing countries and '\n", + " 'rare diseases in industrialised '\n", + " 'countries. Applied research that will '\n", + " 'contribute to a healthier diet is also '\n", + " 'considered. Overall, Medicor Foundation '\n", + " 'approved 58 projects in 28 countries.'},\n", + " 'position': {'address': '9495 Triesen, Liechtenstein',\n", + " 'city': 'Triesen',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.0842296,\n", + " 'lng': 9.5572841,\n", + " 'name': '9495',\n", + " 'place_id': 'ChIJjVLKgfY0m0cRt2kRKBJQdA8',\n", + " 'post_code': '9495',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.medicor.li'},\n", + " {'address': 'Mama Cash Foundation P.O. Box 15686 1001 ND Amsterdam '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@mamacash.org',\n", + " 'geo_locations': {'Worldwide': ['International']},\n", + " 'id': 5260,\n", + " 'link': 'https://philea.eu/members/mama-cash-foundation/',\n", + " 'name': 'Mama Cash Foundation',\n", + " 'philea_info': {'About': 'Mama Cash is the oldest international women’s '\n", + " 'foundation in the world and one of two in the '\n", + " 'world that is exclusively dedicated to advancing '\n", + " 'women’s human rights globally. For 25 years, Mama '\n", + " 'Cash has played an important role in advancing the '\n", + " 'human rights of women in Europe and around the '\n", + " 'world and in building stronger and more '\n", + " 'sustainable communities. Since 1983, Mama Cash has '\n", + " 'granted over €30 million to approximately 6,000 '\n", + " 'women’s groups around the world. In the last four '\n", + " 'years alone, almost €10m in grants were made to '\n", + " 'groups in 122 countries.',\n", + " 'Geographic Focus': 'International',\n", + " 'Mission': 'To mobilise resources from individuals and '\n", + " 'institutions and makes grants to women and '\n", + " 'girls’ human rights organisations and '\n", + " 'initiatives.\\n'\n", + " 'To help grantees to build the partnerships and '\n", + " 'networks needed to successfully defend and '\n", + " 'advance women and girls’ human rights globally.\\n'\n", + " 'To help to realise the dreams of women and men '\n", + " 'who want to provide financial resources to '\n", + " 'strengthen women and girls’ human rights '\n", + " 'movements.',\n", + " 'Programme Areas': 'Mama Cash Foundation’s activities '\n", + " 'include:\\n'\n", + " '– Grantmaking\\n'\n", + " '– Accompaniment\\n'\n", + " '– Influencing philanthropy\\n'\n", + " '– Learning for change\\n'\n", + " '– Special Initiatives Grantmaking\\n'\n", + " 'Grantees of Mama Cash focus on '\n", + " 'injustices that would otherwise go '\n", + " 'unnoticed, that need to be challenged '\n", + " 'and that demand courage and vision to '\n", + " 'change. Mama Cash’s grantees create and '\n", + " 'build upon strategic opportunities to '\n", + " 'bring about change at the community, '\n", + " 'national, regional and global level.\\n'\n", + " 'Thematic portfolios:\\n'\n", + " '– Body: bodily integrity and autonomy\\n'\n", + " '– Money: economic justice\\n'\n", + " '– Voice: agency and participation\\n'\n", + " '– Women’s Funds: access to a feminist '\n", + " 'resource base for organising women, '\n", + " 'girls, and trans people Accompaniment\\n'\n", + " 'This includes providing and facilitating '\n", + " 'trainings, asking questions that help '\n", + " 'grantees link their activities to '\n", + " 'long-term objectives and connecting '\n", + " 'grantees to each other and to other '\n", + " 'funders. Influencing philanthropy\\n'\n", + " 'Mama Cash commissions research, initiate '\n", + " 'conversations and ask questions that '\n", + " 'encourage foundations and governments to '\n", + " 'provide support to women, girls and '\n", + " 'trans people. Learning for change\\n'\n", + " 'Mama Cash is committed to understanding '\n", + " 'how social change happens through their '\n", + " 'Learning and Evaluation framework, '\n", + " 'developed in collaboration with donors '\n", + " 'and grantees. Special Initiatives\\n'\n", + " 'Mama Cash supports women’s, girls’ and '\n", + " 'trans people’s rights beyond their four '\n", + " 'grantmaking portfolios, usually in '\n", + " 'collaboration with other organisations '\n", + " 'or funders that promote human rights '\n", + " 'activism. They are currently involved in '\n", + " 'two special initiatives: the Red '\n", + " 'Umbrella Fund and the Mesoamerican '\n", + " 'Initiative of Women Human Rights '\n", + " 'Defenders.'},\n", + " 'position': {'address': 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3675734,\n", + " 'lng': 4.9041389,\n", + " 'name': 'Amsterdam',\n", + " 'place_id': 'ChIJVXealLU_xkcRja_At0z9AGY',\n", + " 'state': 'North Holland',\n", + " 'state_short': 'NH',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mamacash.nl'},\n", + " {'address': 'Maj and Tor Nessling Foundation Fredrikinkatu 20 B 16 FIN-00120 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'toimisto@nessling.fi',\n", + " 'geo_locations': {},\n", + " 'id': 5259,\n", + " 'link': 'https://philea.eu/members/maj-and-tor-nessling-foundation/',\n", + " 'name': 'Maj and Tor Nessling Foundation',\n", + " 'philea_info': {'About': 'Tor Nessling was one of the pioneers of the '\n", + " 'Finnish motor industry. Until his death in 1971 he '\n", + " 'served as managing director and chairman of the '\n", + " 'board of Oy Suomen Autoteollisuus Ab (Finnish '\n", + " 'Motors Ltd.). With no children of their own, Tor '\n", + " 'Nessling and his wife Greta Maj wished that their '\n", + " 'estate should be used in the promotion of Finnish '\n", + " 'science and culture. The charter establishing the '\n", + " 'Maj and Tor Nessling Foundation was signed by '\n", + " 'Greta Maj Nessling in July 1972 and the Foundation '\n", + " 'began its work of furthering environmental '\n", + " 'protection in 1976.',\n", + " 'Mission': 'To support scientific research in all areas of '\n", + " 'environmental protection.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas:\\n'\n", + " '• Research\\n'\n", + " '• Environmental symposia Research\\n'\n", + " 'Distributes grants and awards and '\n", + " 'extends other forms of recognition to '\n", + " 'scientific research in all areas of '\n", + " 'environmental protection. Mainly gives '\n", + " 'support to research focusing on local '\n", + " 'environmental problems (Finland and its '\n", + " 'nearby countries such as Estonia, '\n", + " 'Latvia, Lithuania). The research areas '\n", + " 'supported are:\\n'\n", + " '• Air pollutants, composition and '\n", + " 'behaviour, monitoring and evaluation of '\n", + " 'climate change\\n'\n", + " '• Water environment structure, '\n", + " 'functioning and diversity of ecosystems, '\n", + " 'and the impact of environmental loading\\n'\n", + " '• Soil ecosystems and groundwater\\n'\n", + " '• Environmental technology\\n'\n", + " '• Environmental social science\\n'\n", + " 'In addition, the foundatiion '\n", + " 'disseminates these research findings and '\n", + " 'produces publications on these themes.\\n'\n", + " 'Environmental symposia\\n'\n", + " 'Organises symposia on current '\n", + " 'environmental problems and the search '\n", + " 'for solutions. The goal of these '\n", + " 'symposia is to make known current '\n", + " 'environmental research being carried out '\n", + " 'in Finland and elsewhere in the world. '\n", + " 'Finnish researchers and leading '\n", + " 'international figures are invited as '\n", + " 'lecturers. The symposia provide a forum '\n", + " 'for discussion for researchers, students '\n", + " 'and government\\n'\n", + " 'officials and seek to heighten the '\n", + " 'awareness of the general public about '\n", + " 'environmental research.'},\n", + " 'position': {'address': 'Maj ja Tor Nesslingin Säätiö, Fredrikinkatu 20 B '\n", + " '16, 00120 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1627741,\n", + " 'lng': 24.93902,\n", + " 'name': 'Maj ja Tor Nesslingin Säätiö',\n", + " 'place_id': 'ChIJQXtfHcoLkkYRL99-h8bfUq8',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Fredrikinkatu',\n", + " 'street_number': '20 B 16',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.nessling.fi'},\n", + " {'address': 'Maecenata Foundation Rungestrasse 17 10115 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'mst@maecenata.eu',\n", + " 'geo_locations': {'Worldwide': ['International']},\n", + " 'id': 5258,\n", + " 'link': 'https://philea.eu/members/maecenata-foundation/',\n", + " 'name': 'Maecenata Foundation',\n", + " 'philea_info': {'About': 'The foundation was established in 2010 as an '\n", + " 'umbrella and legal body for two existing long-term '\n", + " 'programmes:\\n'\n", + " '• The Maecenata Institute for Philantropy and '\n", + " 'Civil Society, established in 1197.\\n'\n", + " '• Maecenata International, the German partner in '\n", + " 'the Transnational Europe Giving network.',\n", + " 'Geographic Focus': 'National and international',\n", + " 'Mission': 'The mission of the Foundation is to enhance the '\n", + " 'role of civil society in promoting the '\n", + " 'development of an open society.',\n", + " 'Programme Areas': '1) Maecenata Institute: an indipendent '\n", + " 'think-tank and centre for academic '\n", + " 'research, teaching, policy, and public '\n", + " 'information related to philantropiy and '\n", + " 'civil society. (The Maecenata Institute '\n", + " 'is affiliated to Humboldt University, '\n", + " 'Berlin).\\n'\n", + " 'The main focus areas include:\\n'\n", + " '– philantropy and foundations,\\n'\n", + " '– civil society policy,\\n'\n", + " '– civil society and other areas of '\n", + " 'public activities,\\n'\n", + " '– European and International exchanges.\\n'\n", + " '2) Maecenata International: a service to '\n", + " 'funders world-wide to facilitate '\n", + " 'donations across national boundaries, '\n", + " 'including tax advanteges in the country '\n", + " 'of residence and reporting system. 3) '\n", + " 'Europe Bottom-up: a programme designed '\n", + " 'to promote citizens’ acceptance of and '\n", + " 'involvement in the building of Europe '\n", + " 'through projects, publications tec.'},\n", + " 'position': {'address': 'Maecenata Stiftung, Rungestraße, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5121218,\n", + " 'lng': 13.4195188,\n", + " 'name': 'Maecenata Stiftung',\n", + " 'place_id': 'ChIJxW08IztOqEcRYCu3_FheCrw',\n", + " 'post_code': '10179',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Rungestraße',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.maecenata.eu'},\n", + " {'address': 'Lundbeckfonden 7 Scherfigsvej 2100 Copenhagen O Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'lb@lundbeckfonden.com',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark']},\n", + " 'id': 5257,\n", + " 'link': 'https://philea.eu/members/lundbeckfonden/',\n", + " 'name': 'Lundbeckfonden',\n", + " 'philea_info': {'About': 'The Lundbeck Foundation was established in 1954 by '\n", + " 'Grete Lundbeck, the widow of the founder of H '\n", + " 'Lundbeck A/S. The commercial activities are '\n", + " 'carried out through the wholly owned subsidiary '\n", + " 'LFI a/s, which holds a major interest in the share '\n", + " 'capital of H Lundbeck A/S and Alk-Abelló A/S. Both '\n", + " 'companies respectively are listed on the '\n", + " 'Copenhagen Stock Exchange.',\n", + " 'Geographic Focus': 'Denmark',\n", + " 'Mission': 'The Lundbeck Foundation is a Danish-based '\n", + " 'commercial foundation that is striving to '\n", + " 'significantly improve the population’s health '\n", + " 'and wellbeing by: • Supporting independent '\n", + " 'Danish research primarily within biomedicine and '\n", + " 'the natural sciences, at the highest level, and '\n", + " 'promoting its internationalisation\\n'\n", + " '• Creating shareholder value in the Lundbeck '\n", + " 'Group and other internationally renowned '\n", + " 'companies and helping them become world leaders '\n", + " 'in their respective fields',\n", + " 'Programme Areas': 'THIS WAS PROBABLY LAST UPDATE IN 2010 _ '\n", + " 'EF 7/10/206 The foundation is active in '\n", + " 'the following areas: • Scientific '\n", + " 'projects\\n'\n", + " '• Grants of Excellence\\n'\n", + " '• Junior Group Leader Fellowships\\n'\n", + " '• Visiting Professorships\\n'\n", + " '• Stipends\\n'\n", + " '• Centres of Excellence\\n'\n", + " '• Education and communication activities '\n", + " 'Scientific projects\\n'\n", + " 'Supports concrete research projects in '\n", + " 'biomedical sciences and closely related '\n", + " 'areas of natural sciences, in addition '\n", + " 'to non-biological projects in chemistry '\n", + " 'and physics. Grants of Excellence\\n'\n", + " 'In the Spring of 2010 the Lundbeck '\n", + " 'Foundation invited applications for two '\n", + " 'Grants of Excellence within the area of '\n", + " 'neuroscience, including clinical '\n", + " 'neuroscience and psychiatry. The grants '\n", + " 'were awarded for five years, and each '\n", + " 'grant amounts to € 3 million. Junior '\n", + " 'Group Leader Fellowships SEEMS THAT THE '\n", + " 'SCHEME STOPPED IN 2014 ( fellowships '\n", + " '2010-2014)\\n'\n", + " 'Offers five fellowships for particularly '\n", + " 'promising young researchers in their '\n", + " 'thirties who are qualified to establish '\n", + " 'or develop their own research groups '\n", + " 'within the health- or natural sciences. '\n", + " 'Visiting Professorships\\n'\n", + " 'Provides funding to attract foreign '\n", + " 'guest researchers at the professor level '\n", + " 'to Denmark for 2-6 months. Stipends\\n'\n", + " 'Supports the following types of stipends '\n", + " 'when applied for through the '\n", + " 'foundation’s Electronic Application '\n", + " 'System: • Scholarships\\n'\n", + " '• Ph.D. scholarships\\n'\n", + " '• Travel Stipends Centres of Excellence\\n'\n", + " 'For a number of years, the Lundbeck '\n", + " 'Foundation established Centres of '\n", + " 'Excellence focusing on subjects within '\n", + " 'biomedical or natural sciences '\n", + " 'determined by the Board of Trustees. The '\n", + " 'foundation established research centers '\n", + " 'in Neuroscience in 2005, Quantum Systems '\n", + " 'Research in 2006, Translational Science '\n", + " 'in Clinical Medicine in 2007, '\n", + " 'Interventional Research in Clinical '\n", + " 'Medicine in 2008 and Nanomedicine in '\n", + " '2009. Education and communication '\n", + " 'activities\\n'\n", + " 'The Lundbeck Foundation has a special '\n", + " 'focus on supporting projects that '\n", + " 'promote young people’s interest in the '\n", + " 'natural sciences in Denmark. Since 1987 '\n", + " 'The Lundbeck Foundation has also awarded '\n", + " 'research prizes to honour and encourage '\n", + " 'outstanding researchers in biomedicine '\n", + " 'and natural sciences and thus draw '\n", + " 'attention to the significance of '\n", + " 'research for society.'},\n", + " 'position': {'address': 'Lundbeckfonden, Scherfigsvej 7, 2100 Copenhagen, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7219251,\n", + " 'lng': 12.5798535,\n", + " 'name': 'Lundbeckfonden',\n", + " 'place_id': 'ChIJZwPg6J3U3UMROSJadjNrJhY',\n", + " 'post_code': '2100',\n", + " 'street_name': 'Scherfigsvej',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.lundbeckfonden.com'},\n", + " {'address': 'LEGO Foundation Koldingvej 2 7190 Billund Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': 'LEGOFoundation@LEGO.com',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5255,\n", + " 'link': 'https://philea.eu/members/lego-foundation/',\n", + " 'name': 'LEGO Foundation',\n", + " 'philea_info': {'About': 'Ole Kirk Christiansen founded the LEGO® Company in '\n", + " '1932 and defined the set of values which have '\n", + " 'characterised the company since. ”Only the best is '\n", + " 'good enough, for children deserve the best”.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'To inspire and develop the builders of tomorrow.',\n", + " 'Programme Areas': 'The LEGO Foundation is active in the '\n", + " 'fields of education and early childhood '\n", + " 'development, in particular by: • '\n", + " 'Donating LEGO products all over the '\n", + " 'world\\n'\n", + " '• Contributing with activities that '\n", + " 'offer children and adults good '\n", + " 'experiences and insight into the many '\n", + " 'creative learning opportunities inherent '\n", + " 'in the LEGO products\\n'\n", + " '• Enhancing children’s education via '\n", + " 'research programs, new, systematic '\n", + " 'learning materials and supplementary '\n", + " 'education of teachers in developing '\n", + " 'countries'},\n", + " 'position': {'address': 'LEGO Fonden, Koldingvej 2, 7190 Billund, Denmark',\n", + " 'city': 'Billund',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.7247517,\n", + " 'lng': 9.130263599999997,\n", + " 'name': 'LEGO Fonden',\n", + " 'place_id': 'ChIJiYUmuXdxS0YRFEhS8jHnJ_M',\n", + " 'post_code': '7190',\n", + " 'street_name': 'Koldingvej',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.legofoundation.com/'},\n", + " {'address': 'Learning for Well-being Foundation 56 Milletstraat 2nd floor '\n", + " '1077 ZG Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@learningforwellbeing.org',\n", + " 'geo_locations': {'Worldwide': ['International']},\n", + " 'id': 5254,\n", + " 'link': 'https://philea.eu/members/learning-for-well-being-foundation/',\n", + " 'name': 'Learning for Well-being Foundation',\n", + " 'philea_info': {'About': 'The Learning for Well-being Foundation is a '\n", + " 'private operating foundation, registered in the '\n", + " 'Netherlands as a non-profit organization, with the '\n", + " 'head office in Amsterdam and a branch in '\n", + " 'Brussels.\\n'\n", + " 'Our team and associates work remotely, running '\n", + " 'activities across Europe, Middle East, Latin '\n", + " 'America and the United States. The foundation’s '\n", + " 'collaborators include lead practitioners in the '\n", + " 'field of child participation and child well-being.',\n", + " 'Geographic Focus': 'International',\n", + " 'Mission': 'We act as a catalyst through mutually '\n", + " 'reinforcing competent partnerships aimed at '\n", + " 'bringing the voice and actions of children more '\n", + " 'fully into creating well-being for themselves '\n", + " 'and their communities. Our programs cultivate '\n", + " 'the capacities of children, and the adults who '\n", + " 'interact with them, so that together they are '\n", + " 'able to contribute to a fairer and sustainable '\n", + " 'world, while realizing their unique potential '\n", + " 'throughout their lives. We focus on the '\n", + " 'intersection between well-being (as '\n", + " 'self-knowing) and social change through '\n", + " 'partnership between children and adults (an '\n", + " 'intergenerational competent approach to child '\n", + " 'participation).” The foundation was created '\n", + " 'after the aspirations of two changemakers who '\n", + " 'met in an event exploring “Issues and '\n", + " 'opportunities for Peace in the Middle East” in '\n", + " '2004, Prof. Marwan Awartani (today Palestinian '\n", + " 'Minister of Education) and Daniel Kropf, founder '\n", + " 'of several healthcare technology companies.',\n", + " 'Programme Areas': 'Learning for Well-being Foundation has '\n", + " 'developed all of its programs with the '\n", + " 'aim of supporting child and societal '\n", + " 'well-being through child and youth '\n", + " 'participation. Its flagship activities '\n", + " 'include: 1. School Wellbeing Survey & '\n", + " 'Community Development\\n'\n", + " 'A unique survey with accompanying '\n", + " 'interventions, based on the L4WB '\n", + " 'approach, that measures and improves the '\n", + " 'level of well-being in the school '\n", + " 'community, impacting all stakeholders.\\n'\n", + " 'With the hope of encouraging decision '\n", + " 'makers, stakeholders and heads of '\n", + " 'educational bodies to adopt a holistic '\n", + " 'approach to education, the Learning for '\n", + " 'Well-being Foundation (L4WB-F) together '\n", + " 'with Education for Life in Israel, have '\n", + " 'developed a tool (the L4WB survey) and '\n", + " 'interventions which bring together the 3 '\n", + " 'key partners in the school community: '\n", + " 'Pupils, Professionals and Parents '\n", + " '(3Ps’), giving them the knowledge on how '\n", + " 'to increase their experience of '\n", + " 'well-being and engaged participation '\n", + " 'within their community.\\n'\n", + " 'Particular focus was put on the L4WB '\n", + " 'Core Capacities in order to obtain '\n", + " 'information on the quality and quantity '\n", + " 'of these elements in the school so that '\n", + " 'we can then understand which of the '\n", + " 'capacities need further development. 2. '\n", + " 'ACT2GETHER\\n'\n", + " 'Our purpose with ACT2gether is to '\n", + " 'develop global alliances for creating a '\n", + " 'social movement promoting partnership '\n", + " 'between generations (children and '\n", + " 'adults). We want this in all sectors '\n", + " '(including education, health, welfare, '\n", + " 'justice, etc.) and addressing issues '\n", + " 'affecting children and\\n'\n", + " 'adults in ways that are holistic and '\n", + " 'systemic.\\n'\n", + " 'We believe that when generations work in '\n", + " 'partnership, including peer to peer '\n", + " 'support, both children and adults '\n", + " 'benefit from each other’s qualities: '\n", + " 'spontaneity, curiosity, creativity and '\n", + " 'joy, but also fairness, accountability '\n", + " 'and drive become available to both, as '\n", + " 'shared resources.\\n'\n", + " 'Children and adults feel empowered to '\n", + " 'contribute fully – with their whole '\n", + " 'selves – to the creation of better '\n", + " 'spaces to live. Our strategic priorities '\n", + " 'are:\\n'\n", + " '• Create an international social '\n", + " 'movement that promotes and supports '\n", + " 'partnership between generations '\n", + " '(children and adults)\\n'\n", + " '• Facilitate global, regional and '\n", + " 'national gatherings to promote children '\n", + " 'and adults working together\\n'\n", + " '• Provide learning experiences for '\n", + " 'people to understand and develop '\n", + " 'participatory practice\\n'\n", + " '• Create alliances both off and online '\n", + " 'that link an international community and '\n", + " 'shares stories promoting child-adult '\n", + " 'partnerships\\n'\n", + " 'ACT2gether is a global brand to which '\n", + " 'local initiatives can associate '\n", + " 'themselves, as part of social movement '\n", + " 'promoting partnership between '\n", + " 'generations. The 3 activities that '\n", + " 'support the movement internationally '\n", + " 'are: 2getherLand (event); 2getherLearn '\n", + " '(training) and 2getherLink (off-line and '\n", + " 'online platform for alliances), all '\n", + " 'supported by transversal research. All '\n", + " 'ACT2gether activities:\\n'\n", + " '• are organized through partnership '\n", + " 'between children and adults\\n'\n", + " '• combine personal development and '\n", + " 'social action\\n'\n", + " '• create fairness and sustainability '\n", + " 'Currently there are active ACT2gether '\n", + " 'sites in Latin America, Germany, '\n", + " 'Palestine and the Netherlands. 3. '\n", + " 'Measuring What Matters – Research on '\n", + " 'Core Capacities\\n'\n", + " 'The purpose of this research, has been '\n", + " 'to assess what a comprehensive review of '\n", + " 'the existing literature can tell us '\n", + " 'about core capacities, using the L4WB '\n", + " 'framework as the conceptual frame.\\n'\n", + " 'The aim is to understand if such '\n", + " 'precursors to life skills can add value '\n", + " 'to concepts designed to promote child '\n", + " 'development, and related public '\n", + " 'policies, and further to identify what '\n", + " 'constitutes good practice for promotion '\n", + " 'and protection of these skills.\\n'\n", + " 'L4WB-F is partnering with UNICEF’s '\n", + " 'Office of Research, Innocenti, and the '\n", + " 'US based Fetzer Foundation for this '\n", + " 'research effort. 4. Workgroup on '\n", + " 'Personalized and Formative Assessment '\n", + " 'Practices\\n'\n", + " 'This project aims at identifying and '\n", + " 'documenting assessment practices that '\n", + " 'are aligned with the L4WB approach. The '\n", + " 'outcome will produce knowledge and '\n", + " 'practices transferable to all our '\n", + " 'well-being and intergenerational '\n", + " 'collaboration programs.\\n'\n", + " 'This project aims to look for and into '\n", + " 'already existing innovative and '\n", + " 'interesting good assessment practices. '\n", + " 'We know that there are teachers and '\n", + " 'schools who work efficiently with '\n", + " 'alternative assessment methods, and it '\n", + " 'would be inspirational for educational '\n", + " 'settings to get acquainted with those in '\n", + " 'a well-documented way by adding '\n", + " 'information.\\n'\n", + " 'This project is done in cooperation with '\n", + " 'the Hungarian Waldorf Federation and the '\n", + " 'European Council of Steiner Waldorf '\n", + " 'Education. 5. Learning for Well-being '\n", + " 'Community\\n'\n", + " 'We have been building relationships '\n", + " 'around the Learning for Well-being '\n", + " 'perspective and framework with selected '\n", + " 'education, health, and child welfare '\n", + " 'organisations that are operating at '\n", + " 'European and national levels for many '\n", + " 'years now. Several of these '\n", + " 'relationships have been formalized '\n", + " 'through Memoranda of Understanding. In '\n", + " 'January 2015 the L4WB Community was '\n", + " 'formally established through a meeting '\n", + " 'of all partners in Caux, Switzerland. '\n", + " 'This created an opportunity for the '\n", + " 'partners to know each other and their '\n", + " 'work, to experiment with tools and '\n", + " 'practices together, and to envision '\n", + " 'joint projects inspired by the '\n", + " 'L4WB-Foundation. These meetings are for '\n", + " 'organisations that are actively seeking '\n", + " 'new ways to work together, specifically '\n", + " 'to develop capacities for competent '\n", + " 'relationships and systems for children '\n", + " 'and those who support them. From these '\n", + " 'gatherings, new partnerships and '\n", + " 'projects are born, using the Learning '\n", + " 'for Well-being principles to inspire a '\n", + " 'common language.'},\n", + " 'position': {'address': 'Learning for Well-being, Milletstraat 56, 1077 ZG '\n", + " 'Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.34611239999999,\n", + " 'lng': 4.868931599999999,\n", + " 'name': 'Learning for Well-being',\n", + " 'place_id': 'ChIJd2CK3AEKxkcRmHkI0N-rfw8',\n", + " 'post_code': '1077 ZG',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Milletstraat',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.learningforwellbeing.org'},\n", + " {'address': 'Laudes Foundation Grafenauweg 10 6300 Zug Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'grants@candafoundation.org',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 5253,\n", + " 'link': 'https://philea.eu/members/laudes-foundation/',\n", + " 'name': 'Laudes Foundation',\n", + " 'philea_info': {'About': 'Laudes Foundation is an independent foundation '\n", + " 'launched in 2020 and part of the Brenninkmeijer '\n", + " 'family entreprise.\\n'\n", + " 'Although independent from the COFRA businesses and '\n", + " 'the family’s other private philantropic '\n", + " 'activities, Laudes Foundation learns from its past '\n", + " 'and present experiences. In particular Laudes '\n", + " 'Foundation will advance the industry-changing work '\n", + " 'of C&A Foundation, and build on the experience of '\n", + " 'its flagship initiative, Fashion for Good.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'To transform the global economic system and the '\n", + " 'way it defines value. Laudes Foundation supports '\n", + " 'initiatives that work with the actors who have '\n", + " 'the power to change it.',\n", + " 'Programme Areas': 'New Economy (New Economic Thinking, New '\n", + " 'Models – Business and Value and '\n", + " 'Regulation, Policy and Taxation) Fashion '\n", + " '(Labour Rights and Materials) Built '\n", + " 'Environment (Net zero carbon new '\n", + " 'buildings, A lighthouse for the built '\n", + " 'environment)'},\n", + " 'position': {'address': 'Grafenauweg 10, 6300 Zug, Switzerland',\n", + " 'city': 'Zug',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.17444639999999,\n", + " 'lng': 8.512388199999998,\n", + " 'name': 'Grafenauweg 10',\n", + " 'place_id': 'ChIJGRIo1l6qmkcRZ347UaNc4Z4',\n", + " 'post_code': '6300',\n", + " 'state': 'Zug',\n", + " 'state_short': 'ZG',\n", + " 'street_name': 'Grafenauweg',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.laudesfoundation.org'},\n", + " {'address': 'Kultura Nova Foundation Gajeva 2/6 10 000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@kulturanova.hr',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Croatia'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5252,\n", + " 'link': 'https://philea.eu/members/kultura-nova-foundation/',\n", + " 'name': 'Kultura Nova Foundation',\n", + " 'philea_info': {'About': 'Kultura Nova Foundation was founded as an answer '\n", + " 'to the existing situation within the system of '\n", + " 'culture with the aim of ensuring an efficient '\n", + " 'measure that would allow for the improvement and '\n", + " 'further development of the position of civil '\n", + " 'sector in culture. With the support of the Council '\n", + " 'of New Media Culture, the idea of a new foundation '\n", + " 'was presented to the Ministry of Culture, which, '\n", + " 'after careful consideration, instituted a working '\n", + " 'group responsible for developing a Draft of the '\n", + " 'Proposal of the Law on Kultura Nova Foundation. '\n", + " 'The founding of a special foundation for civil '\n", + " 'sector in culture was anticipated in the National '\n", + " 'Program for the Youth for 2009 – 2013 Period. The '\n", + " 'process of founding Kultura Nova, extending over '\n", + " 'several years, included representatives of civil '\n", + " 'society organizations, different state '\n", + " 'administration bodies, public government bodies '\n", + " 'and experts, and its purpose, activities, core '\n", + " 'assets, financing, as well as other regulations '\n", + " 'concerning the foundation’s activities are defined '\n", + " 'by the Law on Kultura Nova Foundation which was '\n", + " 'adopted by the Croatian Parliament in 2011 '\n", + " '(Official Gazette of the Republic of Croatia, No. '\n", + " '90/11).',\n", + " 'Geographic Focus': 'Croatia, Southeastern European Region',\n", + " 'Mission': 'Kultura Nova Foundation provides professional '\n", + " 'and financial support to civil society '\n", + " 'organisations in the Republic of Croatia in the '\n", + " 'fields of contemporary arts and culture.',\n", + " 'Programme Areas': 'Kultura Nova is an operational and grant '\n", + " 'making foundation and it provides '\n", + " 'professional and financial support to '\n", + " 'civil society (non-governmental and '\n", + " 'no-profit associations in the fields of '\n", + " 'contemporary art and culture in '\n", + " 'Croatia.\\n'\n", + " 'The foundation publishes open calls for '\n", + " 'artistic and cultural project and '\n", + " 'programme proposals of civil society '\n", + " 'organizations on an annual basis through '\n", + " 'its Support Programme that has a number '\n", + " 'of Programme areas. The Foundation '\n", + " 'publishes open calls for project and '\n", + " 'programme proposals on an annual basis. '\n", + " 'The Support Programme is currently '\n", + " 'realized through four Programme areas: '\n", + " 'Programme area 1: Development Support '\n", + " 'for Organizations\\n'\n", + " 'Programme area 2: Conception and '\n", + " 'Preparation of New Projects/Programmes\\n'\n", + " 'Programme area 3: Development of '\n", + " 'Cooperation Platforms in the Republic of '\n", + " 'Croatia\\n'\n", + " 'Programme area 4: Development of '\n", + " 'Cooperation Platforms in Southeastern '\n", + " 'Europe Kultura Nova Foundation '\n", + " 'implements Development programmes and '\n", + " 'projects within the framework of its '\n", + " 'operational functioning. Development '\n", + " 'programmes and projects activities '\n", + " 'currently include: – research\\n'\n", + " '– educational programmes\\n'\n", + " '– development of new models of '\n", + " 'institutions'},\n", + " 'position': {'address': 'Gajeva ulica 2, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.81273760000001,\n", + " 'lng': 15.9763028,\n", + " 'name': 'Gajeva ul. 2',\n", + " 'place_id': 'ChIJebV5t_3WZUcRHBpVYboricI',\n", + " 'post_code': '10000',\n", + " 'state': 'Grad Zagreb',\n", + " 'street_name': 'Gajeva ulica',\n", + " 'street_name_short': 'Gajeva ul.',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://kulturanova.hr/'},\n", + " {'address': 'Körber-Stiftung Kehrwieder, 12 20457 Hamburg Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@koerber-stiftung.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5251,\n", + " 'link': 'https://philea.eu/members/korber-stiftung/',\n", + " 'name': 'Körber-Stiftung',\n", + " 'philea_info': {'About': 'Körber-Stiftung was established in 1959 by the '\n", + " 'industrialist and inventor, Dr Kurt A. Körber. Dr '\n", + " 'Körber founded Hauni-Werke in Hamburg-Bergedorf in '\n", + " '1946, which has since developed into the Körber AG '\n", + " 'group with 28 companies worldwide. In accordance '\n", + " 'with his will the foundation became sole '\n", + " 'shareholder of Körber AG after his death in 1992. '\n", + " 'The Körber Foundation is politically independent '\n", + " 'and ideologically neutral.',\n", + " 'Geographic Focus': 'Germany, Europe, International',\n", + " 'Mission': 'The Körber Foundation promotes and supports '\n", + " 'people and initiatives that aims to change the '\n", + " 'status quo. It focuses on exchange and dialogue, '\n", + " 'the power of sound arguments and willingness to '\n", + " 'communicate. By recognising role models, by '\n", + " 'identifying good examples and by developing '\n", + " 'paradigms it provides stimuli not only for '\n", + " 'ideas, but also for actions.',\n", + " 'Programme Areas': 'Through its operational projects, in its '\n", + " 'networks and in conjunction with '\n", + " 'cooperation partners, the Körber '\n", + " 'Foundation takes on current social '\n", + " 'challenges in areas of action '\n", + " 'comprising:\\n'\n", + " '– Demographic change,\\n'\n", + " '– Innovation,\\n'\n", + " '– International dialogue. Demographic '\n", + " 'Change\\n'\n", + " 'If our society is ageing and its origins '\n", + " 'and lifestyles are becoming more '\n", + " 'diverse, what implications does this '\n", + " 'have for our social interaction? How do '\n", + " 'we create more social justice? How can '\n", + " 'we recruit new people for the employment '\n", + " 'market? Who will look after the '\n", + " 'interests of others if the population is '\n", + " 'dwindling? The Körber Foundation '\n", + " 'addresses such issues with its '\n", + " 'activities, events and publications – '\n", + " 'and also encourages people to see the '\n", + " 'opportunities presented by these '\n", + " 'changes. The Foundation itself is also '\n", + " 'investigating new and constructive '\n", + " 'solutions in the light of demographic '\n", + " 'change: It supports local politics and '\n", + " 'administration on the path to becoming a '\n", + " 'demographically strong city and '\n", + " 'initiates networks for involvement. It '\n", + " 'promotes the potential of the older '\n", + " 'generation to employers and presents '\n", + " 'models for integration and diversity. It '\n", + " 'promotes citizen participation and '\n", + " 'brings together civil society, the '\n", + " 'economy and the state in new alliances. '\n", + " 'And last but not least, the Körber '\n", + " 'Foundation operates its own culture and '\n", + " 'district centre for the participation of '\n", + " 'the 50 plus generation. Innovation\\n'\n", + " 'Innovations are prerequisites for the '\n", + " 'existence and success of modern '\n", + " 'societies. They ensure their '\n", + " 'sustainability, form the basis for '\n", + " 'prosperity and are essential for '\n", + " 'addressing key problems of humanity. The '\n", + " 'Körber foundation therefore explores the '\n", + " 'conditions and processes under which the '\n", + " 'new emerges, invests in young talent, '\n", + " 'honours innovative approaches and shapes '\n", + " 'the framework conditions for a society '\n", + " 'open to innovation. International '\n", + " 'Dialogue\\n'\n", + " 'The Körber Foundation is committed to '\n", + " 'international dialogue and dialogue '\n", + " 'across political, national and religious '\n", + " 'boundaries and aims at helping to build '\n", + " 'bridges to overcome the absence of '\n", + " 'discussion and to initiate debate. At '\n", + " 'present its work focuses on three '\n", + " 'topics: “Russia in Europe”, “New Working '\n", + " 'Lifetime” and “Digital Literacy”.'},\n", + " 'position': {'address': 'Körber-Stiftung, Kehrwieder 12, 20457 Hamburg, '\n", + " 'Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.54348539999999,\n", + " 'lng': 9.9839361,\n", + " 'name': 'Körber-Stiftung',\n", + " 'place_id': 'ChIJ7a9K6QWPsUcRCDvuO6g9228',\n", + " 'post_code': '20457',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Kehrwieder',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.koerber-stiftung.de'},\n", + " {'address': 'Kone Foundation Otavantie 10 00200 Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'koneensaatio@koneensaatio.fi',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Central & '\n", + " 'Eastern Europe']},\n", + " 'id': 5250,\n", + " 'link': 'https://philea.eu/members/kone-foundation/',\n", + " 'name': 'Kone Foundation',\n", + " 'philea_info': {'About': 'Kone Foundation was founded in 1956 by Heikki H. '\n", + " 'Herlin and Pekka Herlin. The founders were '\n", + " 'simultaneously in charge of Kone Foundation and '\n", + " 'Kone Corp., and hence there was a close '\n", + " 'relationship between the organizations. Nowadays '\n", + " 'the foundation is independent and unaffiliated. '\n", + " 'From a modest start in the early years, Kone '\n", + " 'Foundation began to award grants for academic '\n", + " 'research, with a specific focus on humanities, '\n", + " 'social sciences, environmental sciences and '\n", + " 'artistic research. During the 2000s the Foundation '\n", + " 'has made an active effort to find new ways to '\n", + " 'support academic research, the arts and culture. '\n", + " 'One outcome is the Saari Residence for artists and '\n", + " 'researchers, founded in 2006.',\n", + " 'Geographic Focus': 'Especially the regions around the '\n", + " 'Baltic Sea (but researchers and artists '\n", + " 'of other regions are also supported).',\n", + " 'Mission': 'Kone Foundation is an independent and '\n", + " 'unaffiliated organisation, the aim of which is '\n", + " 'to promote Finnish research, arts and culture.',\n", + " 'Programme Areas': 'In humanities, social sciences, artistic '\n", + " 'research and environmental research. All '\n", + " 'fields of the arts.\\n'\n", + " 'They have a residence for artists and '\n", + " 'researchers.'},\n", + " 'position': {'address': 'Otavantie 10, 00200 Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.15905369999999,\n", + " 'lng': 24.8791507,\n", + " 'name': 'Otavantie 10',\n", + " 'place_id': 'ChIJEUfVDF0KkkYRvV00UH89E5U',\n", + " 'post_code': '00200',\n", + " 'street_name': 'Otavantie',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.koneensaatio.fi/en'},\n", + " {'address': 'King Baudouin Foundation 21, rue Brederode 1000 Brussels Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@kbs-frb.be',\n", + " 'geo_locations': {'Europe (Western / General)': ['Belgium', 'Europe'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5249,\n", + " 'link': 'https://philea.eu/members/king-baudouin-foundation/',\n", + " 'name': 'King Baudouin Foundation',\n", + " 'philea_info': {'About': 'The King Baudouin Foundation was established in '\n", + " '1976 on the occasion of the 25th anniversary of '\n", + " 'King Baudouin’s reign. It is an independent '\n", + " 'foundation, administered by a Board of Governors.',\n", + " 'Geographic Focus': 'Belgium, Europe and international',\n", + " 'Mission': 'To work together for a better society. Helping '\n", + " 'to improve living conditions of the population. '\n", + " 'Supporting projects and citizens who are '\n", + " 'committed to create a better society. In order '\n", + " 'to make a lasting contribution towards greater '\n", + " 'justice, democracy and respect for diversity.',\n", + " 'Programme Areas': 'With an annual budget of 40 million '\n", + " 'euros, 92% of which is earmarked for '\n", + " 'projects, the foundation supports '\n", + " 'priority issues related to the following '\n", + " 'subjects: • Poverty & Social Justice\\n'\n", + " '• Democracy in Belgium\\n'\n", + " '• Democracy in the Balkans\\n'\n", + " '• Heritage\\n'\n", + " '• Philanthropy\\n'\n", + " '• Health\\n'\n", + " '• Leadership\\n'\n", + " '• Local engagement\\n'\n", + " '• Migration\\n'\n", + " '• Development\\n'\n", + " '• Specific projects'},\n", + " 'position': {'address': 'King Baudouin Foundation, Rue Brederode 21, 1000 '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.84035859999999,\n", + " 'lng': 4.362291999999999,\n", + " 'name': 'King Baudouin Foundation',\n", + " 'place_id': 'ChIJyb9ijYbEw0cRwolM9JVA0zc',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue Brederode',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.kbs-frb.be'},\n", + " {'address': 'John S. Latsis Public Benefit Foundation Xenias 4 14562 Athens '\n", + " 'Greece',\n", + " 'country': 'Greece',\n", + " 'email': 'info@latsis-foundation.org',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Greece']},\n", + " 'id': 5244,\n", + " 'link': 'https://philea.eu/members/john-s-latsis-public-benefit-foundation/',\n", + " 'name': 'John S. Latsis Public Benefit Foundation',\n", + " 'philea_info': {'About': 'John Latsis entrepreneurial activities extended '\n", + " 'over approximately seven decades from the end of '\n", + " 'the 1920s to the mid-1990s. His many business '\n", + " 'activities included agricultural products, '\n", + " 'industrial goods, petroleum and petroleum products '\n", + " 'trading, as well as coastal shipping, passenger '\n", + " 'and commercial deep-sea shipping, petroleum '\n", + " 'refining, construction, and banking. His '\n", + " 'entrepreneurial activity was accompanied by '\n", + " 'numerous public benefit initiatives. Among his '\n", + " 'first coordinated actions was the creation of the '\n", + " 'John S. Latsis Ileians’ Scholarships Foundation to '\n", + " 'assist students from his home region. From 1991 '\n", + " 'until 2012 the Foundation for the Rehabilitation '\n", + " 'of Albanians of Greek Descent, established after '\n", + " 'the opening of the Greek borders with Albania to '\n", + " 'support Albanians of Greek descent, housed and '\n", + " 'trained more than 1,000 Albanians of Greek descent '\n", + " 'from the neighbouring country.\\n'\n", + " 'At the same time, he also contributed extensively '\n", + " 'during emergencies, such as the earthquakes that '\n", + " 'struck the areas of Kalamata in 1986, Pyrgos, '\n", + " 'Ileia in 1988, and Grevena in 1995. The Hellenic '\n", + " 'Fire Brigade, Hellenic Police and the Seamen’s '\n", + " 'Pension Fund also received large-scale donations.\\n'\n", + " 'In 1995, the building complex of the Latsio '\n", + " 'Elementary School was donated to the HAEF-Athens '\n", + " 'College; in 2005, two years after the death of '\n", + " 'John Latsis, the Latsio Burn Centre was completed '\n", + " 'and integrated into in the Thriasio General '\n", + " 'Hospital of Eleusis.',\n", + " 'Geographic Focus': 'Greece',\n", + " 'Mission': 'The Foundation plans, manages, and funds '\n", + " 'programmes that cover a broad range of fields, '\n", + " 'such as education, science, health, social '\n", + " 'welfare, culture and the environment, in '\n", + " 'collaboration with civil society partners and '\n", + " 'key players within these areas. An additional, '\n", + " 'diversified branch of activities is the '\n", + " 'operation of the Neraida Floating Museum, which, '\n", + " 'by offering visitors free access and organising '\n", + " 'various events, seeks to highlight the maritime '\n", + " 'and entrepreneurial history of Greece, '\n", + " 'familiarise youth with the maritime profession, '\n", + " 'and promote environmental awareness.\\n'\n", + " 'The Foundation’s approach to grant-making '\n", + " 'prioritises the emergency relief of citizens in '\n", + " 'need, infrastructural improvement, NGO capacity '\n", + " 'building and community development, academic and '\n", + " 'research output reward, and highlighting of the '\n", + " 'cultural wealth of Greece.',\n", + " 'Programme Areas': 'Quality of education\\n'\n", + " 'access to education\\n'\n", + " 'social welfare\\n'\n", + " 'public health\\n'\n", + " 'community development\\n'\n", + " 'science and research'},\n", + " 'position': {'address': 'John S. Latsis Public Benefit Foundation, Xenias, '\n", + " 'Kifisia, Greece',\n", + " 'city': 'Kifisia',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 38.0762191,\n", + " 'lng': 23.8199362,\n", + " 'name': 'John S. Latsis Public Benefit Foundation',\n", + " 'place_id': 'ChIJB3Dq1OueoRQRAD04Z8VSTqk',\n", + " 'post_code': '145 62',\n", + " 'state': 'Vorios Tomeas Athinon',\n", + " 'street_name': 'Xenias',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.latsis-foundation.org'},\n", + " {'address': 'John D. and Catherine T. MacArthur Foundation 140 S. Dearborn '\n", + " 'Street 12th floor IL 60603-5285 Chicago United States',\n", + " 'country': 'United States',\n", + " 'email': '4answers@macfound.org',\n", + " 'geo_locations': {'Asia & Pacific': ['India'],\n", + " 'Latin America & Caribbean': ['Mexico']},\n", + " 'id': 5243,\n", + " 'link': 'https://philea.eu/members/john-d-and-catherine-t-macarthur-foundation/',\n", + " 'name': 'John D. and Catherine T. MacArthur Foundation',\n", + " 'philea_info': {'About': 'The organisation is a private, independent, '\n", + " 'grantmaking foundation created in 1978 by John D. '\n", + " 'MacArthur, who developed and owned an array of '\n", + " 'businesses, principally Bankers Life and Casualty '\n", + " 'Company, as well as considerable property in '\n", + " 'Florida and New York.\\n'\n", + " 'MacArthur is placing a few big bets that truly '\n", + " 'significant progress is possible on some of the '\n", + " 'world’s most pressing social challenges, including '\n", + " 'advancing global climate solutions, decreasing '\n", + " 'nuclear risk, promoting local justice reform in '\n", + " 'the U.S., and reducing corruption in Africa’s most '\n", + " 'populous country, Nigeria.\\xa0The Foundation also '\n", + " 'continues its historic commitments to the role of '\n", + " 'journalism in a responsive democracy as well as '\n", + " 'the vitality of our headquarters city, Chicago.',\n", + " 'Geographic Focus': 'USA, India, Mexico, and Nigeria',\n", + " 'Mission': 'The John D. and Catherine T. MacArthur '\n", + " 'Foundation supports creative people, effective '\n", + " 'institutions, and influential networks building '\n", + " 'a more just, verdant, and peaceful world.',\n", + " 'Programme Areas': 'Chicago Commitment, Climate Solutions, '\n", + " 'Criminal Justice, Journalism and Media, '\n", + " 'Nuclear Challenges, Technology in the '\n", + " 'Public Interest The foundation is '\n", + " 'involved in the following programmes:\\n'\n", + " '• Global security and sustainability '\n", + " '(International)\\n'\n", + " '• Human and community development (US)\\n'\n", + " '• General programme\\n'\n", + " '• MacArthur Fellows Global Security and '\n", + " 'Sustainability\\n'\n", + " 'Seeks to promote peace within and among '\n", + " 'countries, healthy ecosystems worldwide, '\n", + " 'responsible reproductive choices, and '\n", + " 'the protection of human rights. The '\n", + " 'foundation encourages work that '\n", + " 'recognises the interactions among these '\n", + " 'global problems. The programme has '\n", + " 'offices in Mexico, India, Russia, and '\n", + " 'Nigeria. It focuses on the following '\n", + " 'priorities: • Conservation and '\n", + " 'Sustainable Development: focuses '\n", + " 'exclusively on dealing with the problems '\n", + " 'of endangered tropical ecosystems. These '\n", + " 'are the regions with the greatest degree '\n", + " 'of species diversity, but are also '\n", + " 'plagued by acute human poverty and are '\n", + " 'often experiencing rapid population '\n", + " 'growth\\n'\n", + " '• Human Rights and International '\n", + " 'Justice:addresses human rights through '\n", + " 'grants to selected U.S.-based '\n", + " 'organisations that work internationally '\n", + " 'and to projects that seek to further the '\n", + " 'development of an international justice '\n", + " 'system. In addition, the foundation '\n", + " 'supports human rights organisations in '\n", + " 'Mexico, Nigeria, and Russia\\n'\n", + " '• International Peace and Security: '\n", + " 'helps to reduce the dangers posed by the '\n", + " 'development, stockpiling, and '\n", + " 'proliferation of the world’s most '\n", + " 'destructive weapons, in particular '\n", + " 'nuclear weapons, dangerous pathogens, '\n", + " 'and new biotechnologies\\n'\n", + " '• Population and Reproductive Health: '\n", + " 'seeks to reduce maternal mortality and '\n", + " 'morbidity; and advance young people’s '\n", + " 'sexual and reproductive health and '\n", + " 'rights\\n'\n", + " '• Universities in Russia and Nigeria: In '\n", + " 'Russia, the foundation seeks to support '\n", + " 'universities and other elements of '\n", + " 'scholarly infrastructure to enhance the '\n", + " 'skills and capacities of '\n", + " 'scholar-practitioners, and to support '\n", + " 'the development of modern '\n", + " 'university-based science and social '\n", + " 'science research and training '\n", + " 'capabilities. In Nigeria, the foundation '\n", + " 'is providing long-term support for four '\n", + " 'leading Nigerian universities, helping '\n", + " 'them to rebuild and upgrade their '\n", + " 'facilities, curricula, and faculty Human '\n", + " 'and Community Development\\n'\n", + " 'Supports the development of healthy '\n", + " 'individuals and effective communities. '\n", + " 'Grantmaking strategies focus on: • '\n", + " 'Community Change: supports organisations '\n", + " 'in Chicago in their efforts to make '\n", + " 'neighbourhoods healthy and sustainable '\n", + " 'places for family life and economic '\n", + " 'success. It also seeks to learn from '\n", + " 'these activities, and to communicate '\n", + " 'lessons learned through practical '\n", + " 'experience to multiple audiences, '\n", + " 'including policymakers, practitioners, '\n", + " 'and other funders\\n'\n", + " '• Stable and Affordable Housing: '\n", + " 'preserves and improves affordable rental '\n", + " 'housing across the country through the '\n", + " '$50 million initiative, Window of '\n", + " 'Opportunity: Preserving Affordable '\n", + " 'Rental Housing. The initiative’s '\n", + " 'immediate goal is to help large '\n", + " 'non-profit housing organisations '\n", + " 'purchase and maintain 100,000 units of '\n", + " 'existing, affordable rental housing that '\n", + " 'might otherwise deteriorate or become '\n", + " 'too expensive for low- and '\n", + " 'moderate-income households. Further '\n", + " 'objectives are to demonstrate that '\n", + " 'preservation of affordable rental '\n", + " 'housing can be cost-effective and to '\n", + " 'encourage future public and private '\n", + " 'investment in this area\\n'\n", + " '• Juvenile Justice: supports research, '\n", + " 'model programmes, policy analysis, and '\n", + " 'public education related to juvenile '\n", + " 'justice. Works to promote an effective '\n", + " 'juvenile justice system that is linked '\n", + " 'to relevant agencies, is acknowledged to '\n", + " 'play a critical role in the community, '\n", + " 'and is held accountable for public '\n", + " 'safety and the rehabilitation of young '\n", + " 'offenders\\n'\n", + " '• Mental Health: focuses on improving '\n", + " 'access to high-quality, effective mental '\n", + " 'health services by helping to move the '\n", + " 'most promising advances in research to '\n", + " 'policy and practice\\n'\n", + " '• Education: supports systemwide reform '\n", + " 'that improves student learning through '\n", + " 'better instruction and by disseminating '\n", + " 'useful information about school and '\n", + " 'system practices to multiple audiences, '\n", + " 'including policymakers, practitioners, '\n", + " 'and other funders\\n'\n", + " '• Policy Research: complements and '\n", + " 'strengthens other foundation work by '\n", + " 'helping to increase the likelihood that '\n", + " 'research and other evidence inform '\n", + " 'public policy, with a special emphasis '\n", + " 'on urban policy General Programme\\n'\n", + " 'Supports public interest media, '\n", + " 'including public radio and the '\n", + " 'production of independent documentary '\n", + " 'film; and makes grants to arts and '\n", + " 'cultural institutions in the Chicago '\n", + " 'area. The foundation also makes the '\n", + " 'MacArthur Award for Creative and '\n", + " 'Effective Institutions. MacArthur '\n", + " 'Fellows\\n'\n", + " 'Awards five-year, unrestricted '\n", + " 'fellowships to individuals across all '\n", + " 'ages and fields who show exceptional '\n", + " 'merit and promise of continued creative '\n", + " 'work.'},\n", + " 'position': {'address': '140 South Dearborn Street, Chicago, IL, USA',\n", + " 'city': 'Chicago',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 41.8797985,\n", + " 'lng': -87.62954719999999,\n", + " 'name': '140 S Dearborn St',\n", + " 'place_id': 'ChIJ2f-rorwsDogRrKRi53x4VbM',\n", + " 'post_code': '60603',\n", + " 'state': 'Illinois',\n", + " 'state_short': 'IL',\n", + " 'street_name': 'South Dearborn Street',\n", + " 'street_name_short': 'S Dearborn St',\n", + " 'street_number': '140',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Health',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.macfound.org'},\n", + " {'address': 'Joachim Herz Stiftung Langenhorner Chaussee 384 22419 Hamburg '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@joachim-herz-stiftung.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Germany']},\n", + " 'id': 5242,\n", + " 'link': 'https://philea.eu/members/joachim-herz-stiftung/',\n", + " 'name': 'Joachim Herz Stiftung',\n", + " 'philea_info': {'About': 'The Joachim Herz Stiftung owes its existence to '\n", + " 'the Hamburg entrepreneur Joachim Herz, who died in '\n", + " 'May 2008, and to his wife Petra Herz. Together '\n", + " 'they made the Foundation’s significant financial '\n", + " 'outfitting possible. The assets of the Foundation '\n", + " 'are primarily invested in an entrepreneurial '\n", + " 'manner. This includes an indirect share in '\n", + " 'Beiersdorf AG held via maxingvest ag.',\n", + " 'Geographic Focus': 'Germany, USA',\n", + " 'Mission': 'The Foundation’s purpose is the advancement of '\n", + " 'education, science and research in the fields of '\n", + " 'business administration, economics, law, '\n", + " 'medicine, chemistry, physics and biology. '\n", + " 'Furthermore, the Foundation seeks to foster and '\n", + " 'promote educational institutions and students '\n", + " 'within the context of general primary and '\n", + " 'secondary school education. The Foundation’s '\n", + " 'purpose is also the procurement and transfer of '\n", + " 'funds for the benefit of other non-profit '\n", + " 'organisations and public entities with '\n", + " 'preferential tax status in order to achieve '\n", + " 'non-profit goals. The purpose of the Foundation '\n", + " 'also extends to those disciplines, which can '\n", + " 'objectively be regarded as belonging to the '\n", + " 'enumerated areas supra.',\n", + " 'Programme Areas': 'The Foundation’s purpose is the '\n", + " 'advancement of education, science and '\n", + " 'research in the fields of business '\n", + " 'administration, economics, law, '\n", + " 'medicine, chemistry, physics and '\n", + " 'biology. Furthermore, the Foundation '\n", + " 'seeks to foster and promote educational '\n", + " 'institutions and students within the '\n", + " 'context of general primary and secondary '\n", + " 'school education. The Foundation’s '\n", + " 'purpose is also the procurement and '\n", + " 'transfer of funds for the benefit of '\n", + " 'other nonprofit organisations and public '\n", + " 'entities with preferential tax status in '\n", + " 'order to achieve nonprofit goals. The '\n", + " 'purpose of the Foundation also extends '\n", + " 'to those disciplines, which can '\n", + " 'objectively be regarded as belonging to '\n", + " 'the enumerated areas supra. In '\n", + " 'particular, the following shall be used '\n", + " 'in order to advance the Foundation’s '\n", + " 'intended purpose:\\n'\n", + " 'a) the award of research grants, '\n", + " 'scholarships or other donations to '\n", + " 'qualified (prospective) students and '\n", + " 'pupils;\\n'\n", + " 'b) creative and financial participation '\n", + " 'in research and teaching programs as '\n", + " 'well as scholarship programs that are '\n", + " 'awarded by qualified academic '\n", + " 'institutions (universities or similarly '\n", + " 'situated institutions);\\n'\n", + " 'c) the creative and financial support '\n", + " 'for qualified educational, scientific '\n", + " 'and research institutions;\\n'\n", + " 'd) establishment of conditions for '\n", + " 'scholarship programs as well as their '\n", + " 'organisation and realisation for '\n", + " 'qualified students and pupils, '\n", + " 'especially in the promotion of '\n", + " 'international exchanges,\\n'\n", + " 'e) conducting competitions and awarding '\n", + " 'prizes'},\n", + " 'position': {'address': 'Joachim-Herz-Stiftung, Langenhorner Chaussee 384, '\n", + " '22419 Hamburg, Germany',\n", + " 'city': 'Hamburg',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 53.66087,\n", + " 'lng': 10.0038701,\n", + " 'name': 'Joachim-Herz-Stiftung',\n", + " 'place_id': 'ChIJLahLJeaasUcR5X_lTj2Ge5I',\n", + " 'post_code': '22419',\n", + " 'state': 'Hamburg',\n", + " 'state_short': 'HH',\n", + " 'street_name': 'Langenhorner Chaussee',\n", + " 'street_number': '384',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://joachim-herz-stiftung.de/en/'},\n", + " {'address': 'Jenny and Antti Wihuri Foundation Arkadiankatu, 21A 14 FI-00100 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'toimisto@wihurinrahasto.fi',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland']},\n", + " 'id': 5241,\n", + " 'link': 'https://philea.eu/members/jenny-and-antti-wihuri-foundation/',\n", + " 'name': 'Jenny and Antti Wihuri Foundation',\n", + " 'philea_info': {'About': 'Jenny and Antti Wihuri Foundation is a private, '\n", + " 'general purpose Finnish cultural foundation and '\n", + " 'was established in 1942 by a seacaptain, a '\n", + " 'shipowner and industrialist Antti Wihuri and his '\n", + " 'wife Jenny.',\n", + " 'Geographic Focus': 'Mainly Finland',\n", + " 'Mission': 'The purpose of the Jenny and Antti Wihuri '\n", + " 'Foundation is to promote and support cultural '\n", + " 'and economic development in Finland. The wording '\n", + " 'is not overly specific and so a wide range of '\n", + " 'activities are possible. The Foundation fulfills '\n", + " 'its purpose by distributing grants and awards '\n", + " 'and otherwise by giving financial aid to '\n", + " 'activities, thus furthering the cultural and '\n", + " 'economic life of the country.',\n", + " 'Programme Areas': 'The foundation fulfills its mission by '\n", + " 'through the following means:\\n'\n", + " '• Grants and awards\\n'\n", + " '• Wihuri Research Institute '\n", + " '(http://www.wri.fi/)\\n'\n", + " '• Jenny and Antti Wihuri Foundation Art '\n", + " 'Collection – Modern Finnish Art '\n", + " '(http://www.korundi.fi/in-english/Korundi-house-of-culture/Rovaniemi-Art-Museum '\n", + " ')\\n'\n", + " '• Wihuri Foundation for International '\n", + " 'Prizes Grants and Awards\\n'\n", + " 'Distributes grants and awards annually '\n", + " 'on Antti Wihuri’s birthday, October 9th. '\n", + " 'In 2004, 7,000,000 euros were '\n", + " 'distributed to various associations and '\n", + " 'individual scientists and artists.\\n'\n", + " 'Wihuri Research Institute The Wihuri '\n", + " 'Research Institute (WRI) (www.wri.fi) '\n", + " 'was founded in 1944. It works to create '\n", + " 'conditions for Finnish scientists '\n", + " 'considered to be especially talented in '\n", + " 'the fields of natural sciences, medicine '\n", + " 'or technology to devote themselves '\n", + " 'entirely to their research. The WRI has '\n", + " 'become widely known in medical circles '\n", + " 'for its work on diseases of the heart '\n", + " 'and circulatory system. Contacts with '\n", + " 'researchers overseas are extensive. '\n", + " 'Jenny and Antti Wihuri Foundation Art '\n", + " 'Collection\\n'\n", + " 'Since 1957 the Foundation has assembled '\n", + " 'an important and valuable collection of '\n", + " 'Finnish art. The collection has been '\n", + " 'donated to the City of Rovaniemi '\n", + " '(www.rovaniemi.fi) and named as the '\n", + " 'Jenny and Antti Wihuri Foundation Art '\n", + " 'Collection. It contains more than 2, 300 '\n", + " 'works of art and, guided by experts, the '\n", + " 'foundation continues to purchase the '\n", + " 'work of living Finnish artists. Wihuri '\n", + " 'Foundation for International Prizes\\n'\n", + " 'Established in 1953 with capital donated '\n", + " 'by Antti Wihuri, the founder of the '\n", + " 'Jenny and Antti Wihuri Foundation, the '\n", + " 'foundation promotes and sustains the '\n", + " 'cultural and economic development of '\n", + " 'society through international prizes in '\n", + " 'recognition of creative work. These '\n", + " 'include the Wihuri Sibelius Prize, '\n", + " 'awarded to prominent composers who have '\n", + " 'become internationally known and '\n", + " 'acknowledged. These prizes may be '\n", + " 'awarded to private individuals or '\n", + " 'organisations regardless of nationality, '\n", + " 'religion, race or language. The '\n", + " 'foundation shares the same Board of '\n", + " 'Trustees and Executive Director as the '\n", + " 'Jenny and Antti Wihuri Foundation.'},\n", + " 'position': {'address': 'Arkadiankatu 21a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.17141220000001,\n", + " 'lng': 24.9259645,\n", + " 'name': 'Arkadiankatu 21a',\n", + " 'place_id': 'ChIJAQDw-jMKkkYRyy3Som8bZZ8',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Arkadiankatu',\n", + " 'street_number': '21a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.wihurinrahasto.fi'},\n", + " {'address': 'Jacobs Foundation Seefeldquai 17 8034 Zürich Switzerland',\n", + " 'country': '',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 5240,\n", + " 'link': 'https://philea.eu/members/jacobs-foundation/',\n", + " 'name': 'Jacobs Foundation',\n", + " 'philea_info': {'About': 'The Jacobs Foundation is one of the world’s '\n", + " 'leading charitable foundations dedicated to '\n", + " 'facilitating innovations for children and youth. '\n", + " 'The Foundation was established in 1989 by Klaus J. '\n", + " 'Jacobs and his family in an effort to benefit '\n", + " 'future generations by providing young people with '\n", + " 'better opportunities for development. The Jacobs '\n", + " 'Foundation supports research and intervention of '\n", + " 'the highest quality leading to significant and '\n", + " 'vital outcomes for children and youth worldwide. '\n", + " 'The foundation promotes public dialogue by '\n", + " 'connecting people from the fields of science, '\n", + " 'policy, society and economy, creating platforms '\n", + " 'for discussion and raising awareness for the needs '\n", + " 'and opportunities to improve the living conditions '\n", + " 'of next generations. With its investment of € 200 '\n", + " 'million in the Jacobs University Bremen in Germany '\n", + " '(2006) it set new standards in private funding in '\n", + " 'Europe’s Higher Education sector.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'Positive Child and Youth Developmentand create '\n", + " 'networks to bring about social changes in the '\n", + " 'area of child and youth development.',\n", + " 'Programme Areas': 'Education\\n'\n", + " 'Sciences & Research\\n'\n", + " 'Social/Human Services\\n'\n", + " 'Youth/Children Development'},\n", + " 'position': {'address': 'Jacobs Foundation, Seefeldquai, Zürich, Switzerland',\n", + " 'city': 'Zürich',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.3597658,\n", + " 'lng': 8.5479411,\n", + " 'name': 'Jacobs Foundation',\n", + " 'place_id': 'ChIJdxeGo1GnmkcRiO-Du-uGFU4',\n", + " 'post_code': '8008',\n", + " 'state': 'Zürich',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Seefeldquai',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://jacobsfoundation.org/en/'},\n", + " {'address': 'International Rescue Committee 3 Bloomsbury Place WC1A 2QL '\n", + " 'London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5381,\n", + " 'link': 'https://philea.eu/members/international-rescue-committee/',\n", + " 'name': 'International Rescue Committee',\n", + " 'philea_info': {'About': 'Since being founded in 1933, the IRC has responded '\n", + " 'when crises erupt in the world’s poorest and most '\n", + " 'remote regions. Following an emergency, the IRC '\n", + " 'deploys its emergency response team within 72 '\n", + " 'hours to assess critical survival needs and mount '\n", + " 'an effective response.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'The International Rescue Committee (IRC) '\n", + " 'responds to the world’s worst humanitarian '\n", + " 'crises and helps people to survive and rebuild '\n", + " 'their lives. For 80 years the IRC has offered '\n", + " 'lifesaving care and life-changing assistance to '\n", + " 'refugees forced to flee from war, persecution or '\n", + " 'natural disaster.',\n", + " 'Programme Areas': '‘- emergency response\\n'\n", + " '– health\\n'\n", + " '– safety\\n'\n", + " '– education\\n'\n", + " '– economic wellbeing\\n'\n", + " '– power\\n'\n", + " '– climate change\\n'\n", + " '– refugee crisis'},\n", + " 'position': {'address': '3 Bloomsbury Place, London WC1A 2QL, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5198666,\n", + " 'lng': -0.1226827,\n", + " 'name': '3 Bloomsbury Pl',\n", + " 'place_id': 'ChIJqXi5BDQbdkgR8eW_ADQ4mho',\n", + " 'post_code': 'WC1A 2QA',\n", + " 'state': 'England',\n", + " 'street_name': 'Bloomsbury Place',\n", + " 'street_name_short': 'Bloomsbury Pl',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.rescue.org'},\n", + " {'address': 'International Renaissance Foundation 46 Artema Street 04053 Kiev '\n", + " 'Ukraine',\n", + " 'country': 'Ukraine',\n", + " 'email': 'irf@irf.kiev.ua',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Ukraine']},\n", + " 'id': 5237,\n", + " 'link': 'https://philea.eu/members/international-renaissance-foundation/',\n", + " 'name': 'International Renaissance Foundation',\n", + " 'philea_info': {'About': 'The International Renaissance Foundation was '\n", + " 'founded in 1990 as part of the Soros Foundations '\n", + " 'Network dedicated to building and maintaining the '\n", + " 'infrastructure and institutions necessary for an '\n", + " 'open society in Ukraine.',\n", + " 'Geographic Focus': 'Primarily Ukraine',\n", + " 'Mission': 'To foster, both financially and '\n", + " 'organisationally, the formation of a democratic, '\n", + " 'open society in Ukraine by supporting civil '\n", + " 'initiatives that have a strong impact on civil '\n", + " 'society development.',\n", + " 'Programme Areas': 'The foundation supports and operates '\n", + " 'programmes and initiatives that promote '\n", + " 'the process of national rebirth and '\n", + " 'democratic development in the following '\n", + " 'areas: – Democratic Practice\\n'\n", + " '– Human Rights and Justice\\n'\n", + " '– Public Health\\n'\n", + " '– Roma Programme Initiative\\n'\n", + " '– European programme\\n'\n", + " '– Civic Initiatives of new Ukraine '\n", + " 'Democratic Practice\\n'\n", + " 'Creates effective tools to combat '\n", + " 'corruption and increase government '\n", + " 'accountability Human Rights and Justice\\n'\n", + " 'Seeks to prevent human rights '\n", + " 'violations, promote effective '\n", + " 'anti-discrimination legislation and '\n", + " 'practices, and ensure disadvantaged and '\n", + " 'vulnerable groups have access to justice '\n", + " 'and legal aid Public Health\\n'\n", + " 'Seeks to promote the development of a '\n", + " 'cost-effective and non-discriminatory '\n", + " 'healthcare system, transparent and '\n", + " 'rational spending of public funds, '\n", + " 'ensure equal access to essential '\n", + " 'medicines and proper treatment, '\n", + " 'including vulnerable groups Roma '\n", + " 'Programme Initiative\\n'\n", + " 'Supports NGOs and activists in involving '\n", + " 'representatives of the Roma community in '\n", + " 'social processes and combating '\n", + " 'discrimination European Programme\\n'\n", + " 'Focuses on raising the level of '\n", + " 'familiarisation of representatives of '\n", + " 'civil society institutions in Ukraine '\n", + " 'with European neighbourhood policy, and '\n", + " 'facilitation of information-sharing on '\n", + " 'various civic initiatives related to '\n", + " 'European integration.'},\n", + " 'position': {'address': 'International Fund \"Renaissance\", Artema Street, '\n", + " '46, Kyiv, Ukraine',\n", + " 'city': 'Kyiv',\n", + " 'country': 'Ukraine',\n", + " 'country_short': 'UA',\n", + " 'lat': 50.45654439999999,\n", + " 'lng': 30.493665,\n", + " 'name': 'International Fund \"Renaissance\"',\n", + " 'place_id': 'ChIJMwMydGTO1EARULC_pmQi7AQ',\n", + " 'post_code': '02000',\n", + " 'state': 'Kyiv City',\n", + " 'street_name': 'Sichovykh Striltsiv Street',\n", + " 'street_name_short': 'Sichovykh Striltsiv St',\n", + " 'street_number': '46',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.irf.kiev.ua'},\n", + " {'address': 'International Committe of the Red Cross 19 Avenue de la paix CH '\n", + " '1202 Geneva Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'webmaster@icrc.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia', 'Pacific'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5235,\n", + " 'link': 'https://philea.eu/members/international-committee-of-the-red-cross/',\n", + " 'name': 'International Committee of the Red Cross',\n", + " 'philea_info': {'About': 'Established in 1863, the ICRC is at the origin of '\n", + " 'the Geneva Conventions and the International Red '\n", + " 'Cross and Red Crescent Movement. It directs and '\n", + " 'coordinates the international activities conducted '\n", + " 'by the Movement in armed conflicts and other '\n", + " 'situations of violence.\\n'\n", + " 'Main beneficiaries of our multidisciplinary '\n", + " 'programs are: civilians, children, detainees, '\n", + " 'internally displaced people, migrants, missing '\n", + " 'persons, refugees and people with disabilities.',\n", + " 'Geographic Focus': 'ICRC is present in more than 100 '\n", + " 'countries situated in Africa, the '\n", + " 'Americas, Asia and the Pacific, Europe '\n", + " 'and Central Asia as well as the Near '\n", + " 'and Middle East',\n", + " 'Mission': 'The International Committee of the Red Cross '\n", + " '(ICRC) is an impartial, neutral and independent '\n", + " 'organization whose exclusively humanitarian '\n", + " 'mission is to protect the lives and dignity of '\n", + " 'victims of armed conflict and other situations '\n", + " 'of violence and to provide them with assistance. '\n", + " 'The ICRC also endeavours to prevent suffering by '\n", + " 'promoting and strengthening humanitarian law and '\n", + " 'universal humanitarian principles.',\n", + " 'Programme Areas': 'Medical / health care and physical '\n", + " 'rehabilitation services for people with '\n", + " 'disabilities\\n'\n", + " 'Fostering economic security\\n'\n", + " 'Restoring family links\\n'\n", + " 'Securing water and habitat\\n'\n", + " 'Addressing weapon contamination\\n'\n", + " 'Humanitarian forensics\\n'\n", + " 'Building respect for humanitarian law '\n", + " 'and engaging in humanitarian diplomacy'},\n", + " 'position': {'address': 'International Committee of the Red Cross (ICRC), '\n", + " 'Avenue de la Paix 19, 1202 Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.2274351,\n", + " 'lng': 6.1375921,\n", + " 'name': 'International Committee of the Red Cross (ICRC)',\n", + " 'place_id': 'ChIJnc-xwvpkjEcRcjLSGUyTJfE',\n", + " 'post_code': '1202',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Avenue de la Paix',\n", + " 'street_name_short': 'Av. de la Paix',\n", + " 'street_number': '19',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.icrc.org'},\n", + " {'address': 'IKEA Foundation Dellaertweg 9G 2316WZ Leiden Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'programmes@ikeafoundation.org',\n", + " 'geo_locations': {'Global South / Majority World': ['Developing Countries']},\n", + " 'id': 5234,\n", + " 'link': 'https://philea.eu/members/ikea-foundation/',\n", + " 'name': 'IKEA Foundation',\n", + " 'philea_info': {'About': 'Founded in 1982, the IKEA Foundation (Stichting '\n", + " 'IKEA Foundation) is a charitable foundation '\n", + " 'headquartered in Leiden, the Netherlands. In the '\n", + " 'early days, the IKEA Foundation focused solely on '\n", + " 'architecture and interior design. Over the years, '\n", + " 'IKEA became active in addressing the root causes '\n", + " 'of child labour as well as endeavours with major '\n", + " 'partners to promote child rights and education. In '\n", + " '2009, the IKEA Foundation was able to expand its '\n", + " 'charter to include a broader mission of improving '\n", + " 'children’s opportunities, to help them ultimately '\n", + " 'take control of their own future. Today, all '\n", + " 'global IKEA social and philanthropic efforts are '\n", + " 'found together under the umbrella of the IKEA '\n", + " 'Foundation.',\n", + " 'Geographic Focus': 'Developing countries mainly',\n", + " 'Mission': 'To create substantial and lasting change by '\n", + " 'funding holistic, long-term programmes in '\n", + " 'developing countries that address children’s '\n", + " 'fundamental needs: home, health, education and a '\n", + " 'sustainable family income.',\n", + " 'Programme Areas': 'The foundation support long-term '\n", + " 'programmes that help turn the cycle of '\n", + " 'poverty into a circle of prosperity. The '\n", + " 'focus is on programmes that address '\n", + " 'children’s fundamental needs: A place to '\n", + " 'call home\\n'\n", + " 'Supports survivors of conflicts and '\n", + " 'large natural disasters – such as the '\n", + " '2010 earthquake in Haiti and flooding in '\n", + " 'Pakistan – to address children’s '\n", + " 'critical needs for a safe place to call '\n", + " 'home.\\n'\n", + " 'Current projects address:\\n'\n", + " '– Improving life and education in '\n", + " 'refugee camps\\n'\n", + " '– Reconnecting displaced families\\n'\n", + " '– Improving emergency shelters A healthy '\n", + " 'start in life\\n'\n", + " 'A healthy start is fundamental for '\n", + " 'children’s development and opportunities '\n", + " 'in life. That is why the foundation '\n", + " 'place such a strong emphasis on '\n", + " 'preventive care, nutrition, and '\n", + " 'sanitation initiatives. A quality '\n", + " 'education\\n'\n", + " 'The foundation funds access to quality '\n", + " 'education with the aim of reducing a '\n", + " 'child’s vulnerability to abuse, '\n", + " 'exploitation and disease. Girls '\n", + " 'particularly are at greater risk of such '\n", + " 'abuse when they aren’t in school. '\n", + " 'Getting girls into schools and ensuring '\n", + " 'they stay and learn has therefore proven '\n", + " 'to be of tremendous importance. Through '\n", + " 'their annual Soft Toys for Education '\n", + " 'campaign, the foundation also helps fund '\n", + " 'UNICEF’s Schools for Africa programme '\n", + " 'and Save the Children’s educational '\n", + " 'projects in Asia and Eastern Europe. A '\n", + " 'sustainable family income\\n'\n", + " 'Women are the most important catalysts '\n", + " 'for change for their children. That’s '\n", + " 'why the IKEA Foundation supports '\n", + " 'programmes that help women gain '\n", + " 'knowledge about children’s rights and '\n", + " 'the importance of education – because '\n", + " 'when they do, women have the power to '\n", + " 'influence the whole community. In '\n", + " 'addition, funding programmes that give '\n", + " 'women a better chance to contribute to '\n", + " 'the family income – by learning a '\n", + " 'marketable skill or getting a micro loan '\n", + " 'to start a small business – helps ensure '\n", + " 'that children can stay in school instead '\n", + " 'of dropping out to help feed their '\n", + " 'family. Donations after natural '\n", + " 'disasters and conflicts\\n'\n", + " 'After major natural disasters and '\n", + " 'conflicts, the foundation donates '\n", + " 'selected IKEA products to support '\n", + " 'humanitarian relief efforts. Later, it '\n", + " 'may contribute financially to projects '\n", + " 'addressing the longer-term '\n", + " 'reconstruction and rehabilitation work '\n", + " 'after disasters such as earthquakes, '\n", + " 'flooding and cyclones. This is done '\n", + " 'through our partners Save the Children, '\n", + " 'UNICEF and UNHCR based on their needs '\n", + " 'assessments. Starting in 2012, the '\n", + " 'foundation also started providing UNICEF '\n", + " 'with educational toys and stationery '\n", + " 'from IKEA for their early childhood '\n", + " 'development (ECD) kits, sent out in '\n", + " 'response to disasters. Depending on the '\n", + " 'need, over two years these kits could '\n", + " 'reach 1.2 million children, giving them '\n", + " 'a child-friendly learning environment to '\n", + " 'help them cope with life in a camp.'},\n", + " 'position': {'address': 'Dellaertweg 9g, 2316 WZ Leiden, Netherlands',\n", + " 'city': 'Leiden',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.1683013,\n", + " 'lng': 4.4860001,\n", + " 'name': 'Dellaertweg 9',\n", + " 'place_id': 'EipEZWxsYWVydHdlZyA5LCAyMzE2IFhCIExlaWRlbiwgTmV0aGVybGFuZHMiUBJOCjQKMgkTIYc-6sbFRxFPU3pjx0tJQhoeCxDuwe6hARoUChIJX7vUhenGxUcRdvVaLdfuxKUMEAkqFAoSCRMhhz7qxsVHEe8HBQ8NhVWW',\n", + " 'post_code': '2316 XB',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Dellaertweg',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ikeafoundation.org'},\n", + " {'address': 'Global Dialogue The Foundry 17 Oval Way SE11 5RR London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'info@global-dialogue.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['United Kingdom'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 5229,\n", + " 'link': 'https://philea.eu/members/global-dialogue/',\n", + " 'name': 'Global Dialogue',\n", + " 'philea_info': {'About': 'Global Dialogue was founded by Andrew Puddephatt '\n", + " 'in 2006 with a wide-ranging brief to promote human '\n", + " 'rights around the world. Its first programme, the '\n", + " 'Strategic Fund for Turkey, enabled several private '\n", + " 'funders to support the emerging human rights '\n", + " 'movement in Turkey at a critical time of '\n", + " 'transition in the region. In 2009 Global Dialogue '\n", + " 'founded Ariadne to bring together funders and '\n", + " 'philanthropists supporting human rights\\n'\n", + " 'and social change into a supportive network '\n", + " 'sharing resources and expertise. They now have '\n", + " 'eight programmes supporting funder collaboration '\n", + " 'and innovation on human rights and social change '\n", + " 'around the world, including our new closing space '\n", + " 'programme, the Funders’ Initiative for Civil '\n", + " 'Society, and a Syria Working Group, both launching '\n", + " 'in 2017.',\n", + " 'Geographic Focus': 'United Kingdom, Middle East, Global',\n", + " 'Mission': '‘-Under review-',\n", + " 'Programme Areas': '• Ariadne, the network of European '\n", + " 'funders for social change and human '\n", + " 'rights.\\n'\n", + " '• The Early Action Funders Alliance, a '\n", + " 'funder collaborative which aims to '\n", + " 'promote a vision of a society that '\n", + " 'prevents problems from occurring rather '\n", + " 'than only coping with the consequences.\\n'\n", + " '• The Funders’ Initiative for Civil '\n", + " 'Society, a funder network which aims to '\n", + " 'coordinate a global response by private '\n", + " 'philanthropy to the closing of civic '\n", + " 'space.\\n'\n", + " '• Our general grant-making, which '\n", + " 'enables funders to make grants for human '\n", + " 'rights and social change worldwide\\n'\n", + " '• IMiX, a project which aims to increase '\n", + " 'communications capacity and coordinate '\n", + " 'communications activities in the UK’s '\n", + " 'migration and integration sectors\\n'\n", + " '• Migration Exchange, a funder '\n", + " 'collaborative which aims to improve the '\n", + " 'lives of migrants and receiving '\n", + " 'communities in the UK by informing '\n", + " 'public debate on migration and creating '\n", + " 'welcoming communities.\\n'\n", + " '• The Thomas Paine Initiative, a funder '\n", + " 'collaborative which aims to increase '\n", + " 'awareness of and support for human '\n", + " 'rights in the UK.\\n'\n", + " '• The Syria Working Group, which aims to '\n", + " 'inform and enable private philanthropic '\n", + " 'support for Syria and the neighbouring '\n", + " 'countries.'},\n", + " 'position': {'address': 'The Foundry | Office Space and Conference Centre, '\n", + " '17 Oval Way, London SE11 5RR, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.4858439,\n", + " 'lng': -0.1163458,\n", + " 'name': 'The Foundry | Office Space and Conference Centre',\n", + " 'place_id': 'ChIJj2Ia2ZIEdkgRBQxKgeXWaQs',\n", + " 'post_code': 'SE11 5RR',\n", + " 'state': 'England',\n", + " 'street_name': 'Oval Way',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Human/Civil Rights',\n", + " 'Humanitarian & Disaster Relief'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.global-dialogue.org'},\n", + " {'address': 'Gjensidigestiftelsen Grundingen 6, Aker Brygge 0250 Oslo Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'mail@gjensidigestiftelsen.no',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Norway']},\n", + " 'id': 5228,\n", + " 'link': 'https://philea.eu/members/gjensidigestiftelsen/',\n", + " 'name': 'Gjensidigestiftelsen',\n", + " 'philea_info': {'About': 'The Gjensidigestiftelsen is the largest foundation '\n", + " 'in Norway, and combines two important roles. It is '\n", + " 'a significant financial player and the principal '\n", + " 'shareholder of Gjensidige Forsikring ASA, and it '\n", + " 'is an important contributor to various socially '\n", + " 'beneficial causes, with the focus on health and '\n", + " 'safety.\\n'\n", + " 'In June 2010 Gjensidige Forsikring became a public '\n", + " 'limited company (ASA). At the same time, the '\n", + " 'Gjensidige Foundation was converted from an '\n", + " 'ordinary foundation to a financial foundation. Up '\n", + " 'until the end of 2010 the Gjensidige Foundation '\n", + " 'owned all the shares in Gjensidige. In connection '\n", + " 'with Gjensidige’s stock market flotation on 10 '\n", + " 'December 2010, the Foundation sold some of its '\n", + " 'shares, and Gjensidige gained approximately 47,000 '\n", + " 'new shareholders. At present, the Foundation owns '\n", + " 'a little over 62 per cent of Gjensidige’s shares.\\n'\n", + " 'The Foundation’s financial objectives are to '\n", + " 'manage its long-term ownership of Gjensidige, to '\n", + " 'pass on a share dividend to Gjensidige’s non-life '\n", + " 'insurance customers, and to manage the revenue '\n", + " 'raised from the sale of shares. The Foundation’s '\n", + " 'non-profit objective is to promote health and '\n", + " 'safety through charitable donations. Such '\n", + " 'donations are made in accordance with the '\n", + " 'Foundation’s fundamental values, which are : '\n", + " '“Preventive – Developing – Activity creating – '\n", + " 'Society building”.\\n'\n", + " 'From its establishment in October 2007 up until '\n", + " '2015, the Foundation has distributed over NOK 1.4 '\n", + " 'billion to more than 5.200 projects that promote '\n", + " 'health and safety initiatives.',\n", + " 'Geographic Focus': 'Norway',\n", + " 'Mission': 'Through its programme of donations the '\n", + " 'Foundation aims to promote safety, health and '\n", + " 'other worthy causes falling under the scope of '\n", + " 'its core values: preventive, developing, '\n", + " 'activity-creating and society-building.',\n", + " 'Programme Areas': 'The 5 Priorities Areas of the foundation '\n", + " 'are the following:\\n'\n", + " '– Safety\\n'\n", + " '– Learning & Sharing\\n'\n", + " '– Social inclusion and diversity\\n'\n", + " '– Physical activity\\n'\n", + " '– Diet Safety\\n'\n", + " 'The foundation supports projects that '\n", + " 'contribute to minimize the potential for '\n", + " 'damage in accidents. The foundation '\n", + " 'looks for all kinds of preventive '\n", + " 'activities for children and youth, for '\n", + " 'example, training in traffic safety. '\n", + " 'Furthermore, it supports measures to '\n", + " 'strengthen the voluntary preparedness '\n", + " 'efforts, as well as measures to '\n", + " 'strengthen the population first aid and '\n", + " 'lifesaving skills. Learning & Sharing\\n'\n", + " 'The foundation supports projects that '\n", + " 'create good social networks and meeting '\n", + " 'places, and that contribute to master '\n", + " 'challenges in everyday life. '\n", + " 'Furthermore, it supports projects that '\n", + " 'contribute to gain a more complete '\n", + " 'secondary education. It also supports '\n", + " 'projects that contribute to the '\n", + " 'recruitment of youth leadership and '\n", + " 'volunteers. Social inclusion and '\n", + " 'diversity\\n'\n", + " 'The foundation supports projects that '\n", + " 'contribute to include groups that do not '\n", + " 'participate on an equal basis as others. '\n", + " 'The same applies to projects which help '\n", + " 'bringing generations together. The '\n", + " 'foundation also looks for projects that '\n", + " 'strengthen children’s and young people’s '\n", + " 'ability to resolve conflicts by peaceful '\n", + " 'means and measures to prevent violence '\n", + " 'and insecurity. Physical activity\\n'\n", + " 'The foundation supports projects that '\n", + " 'contribute to be more physically active. '\n", + " 'Examples include the construction and '\n", + " 'adaptation of facilities and areas for '\n", + " 'different physical activities like '\n", + " 'sports and outdoor activities and sport '\n", + " 'equipment. The objective is that these '\n", + " 'measures should include as many as '\n", + " 'possible, especially those who lack an '\n", + " 'offer. The foundation prioritizes '\n", + " 'projects targeting the community, '\n", + " 'including new groups, and that are open '\n", + " 'and accessible and encourage innovation '\n", + " 'and partnership. Diet\\n'\n", + " 'The foundation supports projects that '\n", + " 'stimulate people to choose a healthy '\n", + " 'diet. Examples of projects that can get '\n", + " 'support are measures that promote good '\n", + " 'dietary habits through knowledge '\n", + " 'dissemination and trainings, in '\n", + " 'particularly targeting children and '\n", + " 'young people.'},\n", + " 'position': {'address': 'Gjensidigestiftelsen, Aker Brygge, Grundingen 6, '\n", + " '0250 Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.91064249999999,\n", + " 'lng': 10.7279563,\n", + " 'name': 'Gjensidigestiftelsen',\n", + " 'place_id': 'ChIJ1V49AYFuQUYRYTyGzG6PQVw',\n", + " 'post_code': '0250',\n", + " 'state': 'Oslo',\n", + " 'street_name': 'Grundingen',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gjensidigestiftelsen.no/english'},\n", + " {'address': 'The German Marshall Fund of the United States 1744 R Street, NW '\n", + " '20009 Washington, DC United States',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Balkans',\n", + " 'Belarus',\n", + " 'Ukraine'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5227,\n", + " 'link': 'https://philea.eu/members/german-marshall-fund-of-the-united-states-the/',\n", + " 'name': 'German Marshall Fund of the United States, The',\n", + " 'philea_info': {'About': 'The German Marshall Fund of the United States '\n", + " '(GMF) is an American public policy and grantmaking '\n", + " 'institution dedicated to promoting greater '\n", + " 'cooperation and understanding between the US and '\n", + " 'Europe. Founded in 1972 through a gift from '\n", + " 'Germany as a permanent memorial to Marshall Plan '\n", + " 'assistance, GMF maintains a strong presence on '\n", + " 'both sides of the Atlantic. In addition to its '\n", + " 'headquarters in Washington DC, GMF has six offices '\n", + " 'in Europe: Berlin, Paris, Brussels, Belgrade, '\n", + " 'Ankara, and Bucharest. GMF also has smaller '\n", + " 'representations in Bratislava, Turin, and '\n", + " 'Stockholm.',\n", + " 'Geographic Focus': 'Balkans, the Black Sea region, Central '\n", + " 'and Eastern Europe, Belarus and '\n", + " 'Ukraine.',\n", + " 'Mission': 'GMF strives to champion democratic values and '\n", + " 'the transatlantic alliance by strengthening '\n", + " 'civil society, forging bold and innovative '\n", + " 'policy ideas, and developing a new generation of '\n", + " 'leaders to tackle global challenges. GMF '\n", + " 'delivers hope by upholding the dignity of the '\n", + " 'individual and defending freedom in the spirit '\n", + " 'of the Marshall Plan.',\n", + " 'Programme Areas': 'GMF’s areas of expertise are '\n", + " 'strengthening and innovating '\n", + " 'transatlantic cooperation in a shifting '\n", + " 'global context, while supporting '\n", + " 'democratic resilience. GMF’s key '\n", + " 'strength lies in its ability to foster '\n", + " 'transatlantic dialogue and cooperation. '\n", + " 'By bringing together policymakers, '\n", + " 'business leaders, and civil society from '\n", + " 'both sides of the Atlantic, GMF helps '\n", + " 'address global challenges through '\n", + " 'collaborative solutions. Our work in '\n", + " 'promoting democracy, security, and '\n", + " 'innovation contributes significantly to '\n", + " 'the stability and prosperity of the '\n", + " 'transatlantic community. With offices in '\n", + " 'Washington, D.C., Berlin, Brussels, '\n", + " 'Ankara, Belgrade, Bucharest, Paris, and '\n", + " 'Warsaw, GMF has a broad geographic '\n", + " 'presence and influence.'},\n", + " 'position': {'address': 'The German Marshall Fund of the United States, 1744 '\n", + " 'R Street Northwest, Washington, DC 20009, United '\n", + " 'States',\n", + " 'city': 'Washington',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 38.9124205,\n", + " 'lng': -77.0402714,\n", + " 'name': 'The German Marshall Fund of the United States',\n", + " 'place_id': 'ChIJc3tDMsS3t4kRn7RO_AoyGbw',\n", + " 'post_code': '20009',\n", + " 'state': 'District of Columbia',\n", + " 'state_short': 'DC',\n", + " 'street_name': 'R Street Northwest',\n", + " 'street_name_short': 'R St NW',\n", + " 'street_number': '1744',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gmfus.org'},\n", + " {'address': 'Gerda Henkel Stiftung Malkastenstrasse 15 40211 Dusseldorf '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@gerda-henkel-stiftung.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Germany'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5226,\n", + " 'link': 'https://philea.eu/members/gerda-henkel-stiftung/',\n", + " 'name': 'Gerda Henkel Stiftung',\n", + " 'philea_info': {'About': 'Gerda Henkel Stiftung was established in June 1976 '\n", + " 'by Lisa Maskell in memory of her mother, Gerda '\n", + " 'Henkel.',\n", + " 'Geographic Focus': 'Germany and international',\n", + " 'Mission': 'To foster research in the historical humanities, '\n", + " 'focusing on the support of academic projects and '\n", + " 'PhD fellowships, primarily in the fields of '\n", + " 'history, art history, archaeology and history of '\n", + " 'Islam.',\n", + " 'Programme Areas': 'The Foundation promotes research '\n", + " 'projects in the historical sciences, '\n", + " 'mainly in the following fields:\\n'\n", + " '• Archaeology\\n'\n", + " '• History\\n'\n", + " '• Art History\\n'\n", + " '• Prehistory and Early History\\n'\n", + " '• History of Islam\\n'\n", + " '• Legal History\\n'\n", + " '• History of Science. The advancement of '\n", + " 'young scholars is a special interest of '\n", + " 'the Foundation. For a number of years, '\n", + " 'the Foundation has also increasingly '\n", + " 'addressed issues of great relevance to '\n", + " 'contemporary life and the future, above '\n", + " 'all as part of its special programmes '\n", + " '“Islam, the Modern Nation State and '\n", + " 'Transnational Movements” and “Security, '\n", + " 'Society and the State”. As part of the '\n", + " 'Lisa Maskell Fellowships, since 2014 the '\n", + " 'Foundation has been supporting young '\n", + " 'scholars in the humanities in both '\n", + " 'Africa and Southeast Asia. Starting in '\n", + " '2015, the Foundation has with its '\n", + " '“Patrimonies” funding initiative focused '\n", + " 'more strongly on the preservation of '\n", + " 'cultural heritage, specifically in '\n", + " 'regions experiencing crisis.'},\n", + " 'position': {'address': 'Gerda Henkel Stiftung, Malkastenstraße 15, 40211 '\n", + " 'Düsseldorf, Germany',\n", + " 'city': 'Düsseldorf',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.2306679,\n", + " 'lng': 6.788907200000001,\n", + " 'name': 'Gerda Henkel Stiftung',\n", + " 'place_id': 'ChIJ9ZOpRCbKuEcRtgW0xqj1p9s',\n", + " 'post_code': '40211',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Malkastenstraße',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gerda-henkel-stiftung.de'},\n", + " {'address': 'Genio Trust Westland Square 19-21 Pearse Street D02 YH27 Dublin '\n", + " '2 Ireland',\n", + " 'country': 'Ireland',\n", + " 'email': 'info@genio.ie',\n", + " 'geo_locations': {},\n", + " 'id': 5225,\n", + " 'link': 'https://philea.eu/members/genio/',\n", + " 'name': 'Genio',\n", + " 'philea_info': {'About': 'Genio works to bring Government and philanthropic '\n", + " 'funders together to develop better ways to support '\n", + " 'disadvantaged people to live full lives in their '\n", + " 'communities. So far they are working to improve '\n", + " 'the lives of people with disabilities, mental '\n", + " 'health difficulties and dementia. In June 2010, '\n", + " 'the Genio Trust was established by Genio as a '\n", + " 'registered charity to facilitate the building and '\n", + " 'distribution of funds to support socially '\n", + " 'innovative projects targeting those at risk of '\n", + " 'social exclusion. Projects supported by the Genio '\n", + " 'Trust are performance-managed and must fulfil '\n", + " 'criteria agreed with funders including '\n", + " 'cost-effectiveness and sustainability beyond an '\n", + " 'initial investment period. In parallel with the '\n", + " 'innovation funding Genio provides support and '\n", + " 'training for key stakeholders to manage and '\n", + " 'implement required changes; and undertakes and '\n", + " 'commissions research to measure impact. Since '\n", + " '2010, they have awarded funding to 226 projects in '\n", + " 'Ireland to provide over 5,500 people with '\n", + " 'individualised supports in the community. In '\n", + " 'addition over 9,000 families, carers and staff '\n", + " 'have attended information and training events '\n", + " 'through the projects they support.',\n", + " 'Mission': 'To increase opportunities for people who are '\n", + " 'marginalised to live purposeful and productive '\n", + " 'lives in their communities.',\n", + " 'Programme Areas': 'Disability, mental health and dementia. '\n", + " 'It is likely that the Genio Trust will '\n", + " 'be funding other areas in the future '\n", + " 'e.g. the children’s area.'},\n", + " 'position': {'address': 'Westland Square, Pearse Street, Dublin 2, Ireland',\n", + " 'city': 'Dublin 2',\n", + " 'country': 'Ireland',\n", + " 'country_short': 'IE',\n", + " 'lat': 53.3443049,\n", + " 'lng': -6.2474485,\n", + " 'name': 'Westland Square',\n", + " 'place_id': 'ChIJIwvWjpEOZ0gRop0AhQYcs1Q',\n", + " 'state': 'County Dublin',\n", + " 'state_short': 'D',\n", + " 'street_name': 'Pearse Street',\n", + " 'street_name_short': 'Pearse St',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.genio.ie'},\n", + " {'address': 'Fundación Ramón Areces Calle Vitruvio, 5 28006 Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'secretaria@fundacionareces.es',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Portugal', 'Spain']},\n", + " 'id': 5222,\n", + " 'link': 'https://philea.eu/members/fundacion-ramon-areces/',\n", + " 'name': 'Fundación Ramón Areces',\n", + " 'philea_info': {'About': 'Fundación Ramón Areces is a non-profit '\n", + " 'organisation whose main objective is to stimulate '\n", + " 'and support scientific and technical research in '\n", + " 'Spain, and to promote education and culture. It '\n", + " 'was constituted by Ramón Areces Rodrígues in 1976. '\n", + " 'It was classified as a private cultural foundation '\n", + " 'under the auspices of the Ministry of Education.',\n", + " 'Geographic Focus': 'Spain and Portugal',\n", + " 'Mission': 'To promote and develop scientific and technical '\n", + " 'research, as well as education and culture.',\n", + " 'Programme Areas': 'The foundation works in three specific '\n", + " 'areas: • Life and Material Sciences\\n'\n", + " '• Social Sciences\\n'\n", + " '• Humanities'},\n", + " 'position': {'address': 'Fundación Ramón Areces, Calle Vitruvio, 5, 28006 '\n", + " 'Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4431182,\n", + " 'lng': -3.6889176,\n", + " 'name': 'Ramón Areces Foundation',\n", + " 'place_id': 'ChIJOeD_Qe8oQg0R5K_qvAR32ME',\n", + " 'post_code': '28006',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Vitruvio',\n", + " 'street_name_short': 'C. de Vitruvio',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionareces.es'},\n", + " {'address': 'Fundación Princesa de Girona C. Juli Garreta, 1, 1r E 17002 '\n", + " 'Girona Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fpdgi.org',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain']},\n", + " 'id': 5221,\n", + " 'link': 'https://philea.eu/members/fundacion-princesa-de-girona/',\n", + " 'name': 'Fundación Princesa de Girona',\n", + " 'philea_info': {'About': 'The Princess of Girona Foundation is a private '\n", + " 'foundation set up by civil society entities in '\n", + " 'Girona in 2009 and backed by 88 distinguished '\n", + " 'trustees. The Honorary Chairman is His Majesty '\n", + " 'Kind Felipe VI of Spain, on behalf of his daughter '\n", + " 'Princess Leonor.',\n", + " 'Geographic Focus': 'Spain',\n", + " 'Mission': 'The Foundation’s mission is to support the '\n", + " 'education, initiative and development of young '\n", + " 'people as a way of empowering new generations to '\n", + " 'build a better and more caring society.',\n", + " 'Programme Areas': 'The FPdGi focuses its activity on three '\n", + " 'areas:\\n'\n", + " '– FPdGi Awards: the awards seek to '\n", + " 'recognise the career of young people '\n", + " 'between 16 and 35 years old in any part '\n", + " 'of the world who stand out for their '\n", + " 'work, their merits and their '\n", + " 'exemplarity.\\n'\n", + " '– Educating entrepreneurial talent: this '\n", + " 'programme aims to raise awareness, '\n", + " 'promote and guide entrepreneurial '\n", + " 'education as a key aspect for young '\n", + " 'people’s future.\\n'\n", + " '– Talent rescuers: this programme '\n", + " 'promotes the employability of young '\n", + " 'people between 20 and 30.'},\n", + " 'position': {'address': 'Fundació Princesa de Girona, Carrer Juli Garreta, '\n", + " '1, 1r E, 17002 Girona, Spain',\n", + " 'city': 'Gerona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.9797082,\n", + " 'lng': 2.8195976,\n", + " 'name': 'Fundació Princesa de Girona',\n", + " 'place_id': 'ChIJRSrtZcrmuhIR1KZjv8tfY4s',\n", + " 'post_code': '17002',\n", + " 'state': 'Cataluña',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Carrer Juli Garreta',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://en.fpdgi.org/'},\n", + " {'address': 'Fundación Princesa de Asturias General Yagüe 2, 1° 33004 Oviedo '\n", + " 'Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fpa.es',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5220,\n", + " 'link': 'https://philea.eu/members/fundacion-princesa-de-asturias/',\n", + " 'name': 'Fundación Princesa de Asturias',\n", + " 'philea_info': {'About': 'The Prince of Asturias Foundation is a Spanish '\n", + " 'non-profit organisation founded in the city of '\n", + " 'Oviedo on 24th September 1980 at a formal ceremony '\n", + " 'presided over by His Royal Highness the Prince of '\n", + " 'Asturias, heir to the throne of Spain, who was '\n", + " 'accompanied by his parents, their Majesties the '\n", + " 'King and Queen of Spain.\\n'\n", + " 'Following the proclamation of HM King Felipe VI '\n", + " 'and the succession of HRH Princess Leonor de '\n", + " 'Borbón y Ortiz, Heir to the Crown of Spain, to the '\n", + " 'title of Prince or Princess of Asturias, the '\n", + " 'Prince of Asturias Foundation and Awards will now '\n", + " 'be respectively called the Princess of Asturias '\n", + " 'Foundation and the Princess of Asturias Awards.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'To consolidate links between the Principality '\n", + " 'and the Prince of Asturias, and to contribute to '\n", + " 'encouraging and promoting scientific, cultural '\n", + " 'and humanistic values that form part of '\n", + " 'mankind’s universal heritage.',\n", + " 'Programme Areas': 'The Prince of Asturias Awards were '\n", + " 'initiated in 1981, and are divided into '\n", + " 'eight categories: • Arts\\n'\n", + " '• Social Sciences\\n'\n", + " '• Communication and Humanities\\n'\n", + " '• International Cooperation\\n'\n", + " '• Technical and Scientific Research\\n'\n", + " '• Literature\\n'\n", + " '• Sport\\n'\n", + " '• Concord The Awards are presented at a '\n", + " 'formal ceremony held each year at the '\n", + " 'Campoamor Theatre in Oviedo. Each of the '\n", + " 'eight international recipients are '\n", + " 'awarded 50,000 euros, a specially '\n", + " 'commissioned Joan Miró sculpture, a '\n", + " 'diploma and an insignia.'},\n", + " 'position': {'address': 'Princess of Asturias Foundation, General Yagüe, '\n", + " 'Oviedo, Spain',\n", + " 'city': 'Oviedo',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 43.3628135,\n", + " 'lng': -5.8532017,\n", + " 'name': 'Princess of Asturias Foundation',\n", + " 'place_id': 'ChIJ25ExJeOMNg0RUcoNBo3_PiA',\n", + " 'post_code': '33004',\n", + " 'state': 'Principado de Asturias',\n", + " 'state_short': 'AS',\n", + " 'street_name': 'General Yagüe',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Health', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fpa.es'},\n", + " {'address': 'Fundación ONCE C/ Sebastián Herrera 15 28012 Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'dae@fundaciononce.es',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5219,\n", + " 'link': 'https://philea.eu/members/fundacion-once/',\n", + " 'name': 'Fundación ONCE',\n", + " 'philea_info': {'About': 'Fundación ONCE was formed from the Organización '\n", + " 'Nacional de Ciegos de España ONCE (the Spanish '\n", + " 'National Organisation for the Blind), which was '\n", + " 'set up in 1938 to provide support for blind people '\n", + " 'in Spain. In 1988, ONCE decided to set up a '\n", + " 'foundation which was publicly presented as an '\n", + " 'instrument for cooperation and social '\n", + " 'responsibility, by which blind people pledged '\n", + " 'their support for other groups of people with '\n", + " 'disabilities, with the aim of improving their '\n", + " 'quality of life.',\n", + " 'Geographic Focus': 'Spain and Europe',\n", + " 'Mission': 'The main objective of Fundación ONCE is to carry '\n", + " 'out job-training integration and employment '\n", + " 'programs for persons with disabilities, and '\n", + " 'global accessibility, promoting the creation of '\n", + " 'environments, products and services that are '\n", + " 'globally accessible.',\n", + " 'Programme Areas': 'The foundation works to establish '\n", + " 'agreements and general frameworks for '\n", + " 'agreements with public and private '\n", + " 'institutions to benefit disabled people, '\n", + " 'assisting their personal development, '\n", + " 'integration into society and employment. '\n", + " 'It supports general welfare activities '\n", + " 'which support these objectives in the '\n", + " 'following areas: – Employment and '\n", + " 'Training\\n'\n", + " '– Universal accessibility\\n'\n", + " '– International Area\\n'\n", + " '– Regulatory Impulse and other '\n", + " 'Initiatives\\n'\n", + " '– University and Disability Employment '\n", + " 'and Training\\n'\n", + " 'The main objective of Fundación ONCE, '\n", + " 'bearing social reality in mind as well '\n", + " 'as the specific needs of persons with '\n", + " 'disabilities in Spain, entails job '\n", + " 'promotion for these persons, as an '\n", + " 'intermediate step that is essential for '\n", + " 'their complete social integration. In '\n", + " 'order to effectively fulfil this goal, '\n", + " 'Fundación ONCE invests each year at '\n", + " 'least 60% of its budget to the Training '\n", + " 'and Employment Plan Universal '\n", + " 'accessibility\\n'\n", + " 'The mission of the Directorate for '\n", + " 'Universal Accessibility is to promote '\n", + " 'the Design for All and achieve universal '\n", + " 'accessibility as an essential condition '\n", + " 'for equal opportunities of persons with '\n", + " 'disabilities. The directorate organizes '\n", + " 'its management structure into three '\n", + " 'areas: accessibility of physical '\n", + " 'resources, culture and leisure (sports '\n", + " 'and tourism) and new technologies. '\n", + " 'International Area\\n'\n", + " 'Guided by its commitment to improve '\n", + " 'quality of life of persons with '\n", + " 'disabilities and its facilities, the '\n", + " 'foundation follows closely the trends in '\n", + " 'Europe with regards to this group, both '\n", + " 'in the scope of European Institutions '\n", + " 'and any forums were work is carried out '\n", + " 'to defend the interests of the 50 '\n", + " 'million European citizens with '\n", + " 'disabilities. Regulatory Impulse and '\n", + " 'other Initiatives\\n'\n", + " 'The foundation commits to support the '\n", + " 'adoption of any regulatory initiatives '\n", + " 'that benefit them and their families. '\n", + " 'University and Disability\\n'\n", + " 'Fundación ONCE has developed a '\n", + " 'University and Disability Strategy in '\n", + " 'order to work with the Spanish '\n", + " 'University System in fulfilling current '\n", + " 'legislation, as well as to promote '\n", + " 'actions that encourage the involvement '\n", + " 'of persons with disabilities at '\n", + " 'Universities.'},\n", + " 'position': {'address': 'Fundación ONCE, Calle de Sebastián Herrera, 15, '\n", + " '28012 Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4040145,\n", + " 'lng': -3.6994322,\n", + " 'name': 'Fundación ONCE',\n", + " 'place_id': 'ChIJcSbqcy0mQg0R9k83WEfJnP4',\n", + " 'post_code': '28012',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de Sebastián Herrera',\n", + " 'street_name_short': 'C. de Sebastián Herrera',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundaciononce.es'},\n", + " {'address': 'Fundacion Maria Cristina Masaveu Peterson Alcalá Galiano 6 28010 '\n", + " 'Madrid Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'secretaria@fundacioncristinamasaveu.com',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain'],\n", + " 'Worldwide': ['World']},\n", + " 'id': 5218,\n", + " 'link': 'https://philea.eu/members/fundacion-maria-cristina-masaveu-peterson/',\n", + " 'name': 'Fundación María Cristina Masaveu Peterson',\n", + " 'philea_info': {'About': 'The founder is María Cristina Masaveu Peterson was '\n", + " 'born in Oviedo on 17 April 1937. She was a woman '\n", + " 'open to modernity, with a liberal spirit, cultured '\n", + " 'and sensitive, generous and committed to a great '\n", + " 'number of social causes, with acute emotional '\n", + " 'intelligence and deep convictions, she lived her '\n", + " 'life with the utmost discretion, simplicity and '\n", + " 'closeness to others. As a businesswoman and '\n", + " 'philanthropist, she engaged in important '\n", + " 'charitable work throughout her life.\\n'\n", + " 'As a result of her experiences and emotions, the '\n", + " 'Foundation that she created on 5 May 2006, which '\n", + " 'bears her name, is a testament to her life and her '\n", + " 'commitment to the Principality of Asturias, Spain '\n", + " 'and society in general. She died in Oviedo on 14 '\n", + " 'November 2006.',\n", + " 'Geographic Focus': 'Spain and Spanish cultural, research '\n", + " 'and education programmes around the '\n", + " 'world',\n", + " 'Mission': 'To promote culture, training and research in '\n", + " 'Spain and to contribute to a better society in '\n", + " 'all aspects.',\n", + " 'Programme Areas': 'The objectives of the Foundation are:\\n'\n", + " '– Promotion, dissemination, conservation '\n", + " 'and restoration of the Spanish '\n", + " 'Historical Heritage, of Music and Art in '\n", + " 'general\\n'\n", + " '– Training of young workers, looking '\n", + " 'after their integral, human and '\n", + " 'professional learning\\n'\n", + " '– Scientific research, paying special '\n", + " 'attention to the technological '\n", + " 'development of the cement manufacturing '\n", + " 'industry and its subsequent '\n", + " 'applications\\n'\n", + " '– Programs of scholarships and grants '\n", + " '”Becas de Excelencia Académica”, '\n", + " 'training scholarship and music programs\\n'\n", + " '– Artistic scholarships and music '\n", + " 'programs\\n'\n", + " '– Exhibition of art, photo and programs '\n", + " 'of loans of works from Masaveu '\n", + " 'Collection\\n'\n", + " '– Support to projects of research '\n", + " 'scientist and oncology\\n'\n", + " '– Program of scholarships for the '\n", + " 'accommodation of students in the United '\n", + " 'States\\n'\n", + " '– Publications of books of art and '\n", + " 'cultural exhibitions'},\n", + " 'position': {'address': 'Fundación María Cristina Masaveu Peterson, Calle '\n", + " 'Alcalá Galiano, 6, 28010 Madrid, Spain',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.426676,\n", + " 'lng': -3.691599,\n", + " 'name': 'Fundación María Cristina Masaveu Peterson',\n", + " 'place_id': 'ChIJJcrHx5EoQg0RXTX908LZ5e8',\n", + " 'post_code': '28010',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle Alcalá Galiano',\n", + " 'street_name_short': 'C. Alcalá Galiano',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacioncristinamasaveu.com/en/'},\n", + " {'address': 'Calle Maria de Molina, 11-13-15, 28006 Madrid, España',\n", + " 'country': 'Spain',\n", + " 'email': 'iefoundation@ie.edu',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Southern / Mediterranean)': ['Spain'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5217,\n", + " 'link': 'https://philea.eu/members/ie-foundation/',\n", + " 'name': 'IE Foundation',\n", + " 'philea_info': {'About': 'IE Foundation is a non-profit organization founded '\n", + " 'in 1997, dedicated to promoting the strategic '\n", + " 'values \\u200b\\u200bof IE University through '\n", + " 'projects and resources primarily dedicated to '\n", + " 'providing scholarships for talented individuals, '\n", + " 'funding world-class research that broadens our '\n", + " 'collective knowledge, and sponsoring initiatives '\n", + " 'with a positive social impact. In the more than '\n", + " 'twenty years since its creation, the Foundation '\n", + " 'has worked to carry out this purpose and expand '\n", + " 'its work to new areas. Geographically speaking, it '\n", + " 'now operates throughout Europe, North and South '\n", + " 'America, the Middle East, Northern Africa and '\n", + " 'Southeast Asia.',\n", + " 'Geographic Focus': 'Primarily Spain, but is also present in '\n", + " 'and focused on North and South America, '\n", + " 'South East Asia, the Middle East, North '\n", + " 'Africa and Europe',\n", + " 'Programme Areas': 'IE Foundation contributes to social '\n", + " 'development for a better tomorrow '\n", + " 'through three main pillars: Talent '\n", + " 'development: Access to education for '\n", + " 'outstanding talent At IE we believe that '\n", + " 'each individual deserves the opportunity '\n", + " 'to achieve his or her full potential. We '\n", + " 'work to eliminate economic barriers to '\n", + " 'education and to offer resources to '\n", + " 'projects that add value to the academic '\n", + " 'community and to society as a whole. Our '\n", + " 'efforts to empower talent focus on three '\n", + " 'main areas: Scholarship programs: We '\n", + " 'offer financial support to talented '\n", + " 'students in every stage of their IE '\n", + " 'educational experience, from their '\n", + " 'undergraduate studies, to their masters, '\n", + " 'doctorates and research initiatives.\\n'\n", + " 'IE Foundation Fellows: We draw the best '\n", + " 'candidates to join the program from a '\n", + " 'large pool of talented and highly '\n", + " 'qualified aspirants worldwide to form a '\n", + " 'community of past and present '\n", + " 'scholarship recipients.\\n'\n", + " 'IE for Life:\\xa0We support the success '\n", + " 'and ongoing talent development of the IE '\n", + " 'Alumni Community through a set of '\n", + " 'resources designed to accompany them at '\n", + " 'every stage of their professional '\n", + " 'journey. Collaborative knowledge '\n", + " 'generation: Finding solutions to the '\n", + " 'social, technological and economic '\n", + " 'issues we face today In order to promote '\n", + " 'change and innovation, it is necessary '\n", + " 'to support cutting-edge research and '\n", + " 'initiatives that use new strategies in '\n", + " 'critical thinking. The Foundation’s '\n", + " 'think tanks, centers for excellence, '\n", + " 'observatories and chairs work to provide '\n", + " 'innovative solutions to the challenges '\n", + " 'faced by the business world and society '\n", + " 'as a whole. Impact initiatives: '\n", + " 'Promoting IE values The IE Foundation is '\n", + " 'more than a source of financial aid for '\n", + " 'students and research initiatives. We '\n", + " 'are committed to fomenting the success '\n", + " 'of all members of the community, '\n", + " 'promoting social change, and reinforcing '\n", + " 'our values of inclusion, innovation and '\n", + " 'an entrepreneurial spirit. In order to '\n", + " 'achieve this goal, we support a wide '\n", + " 'range of social action programs, '\n", + " 'cultural celebrations and '\n", + " 'entrepreneurial initiatives.'},\n", + " 'position': {'address': 'Calle de María de Molina, 11-13-15, 28006 Madrid, '\n", + " 'España',\n", + " 'city': 'Madrid',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 40.4375247,\n", + " 'lng': -3.6894636,\n", + " 'name': 'Calle de María de Molina, 11-13-15',\n", + " 'place_id': 'ChIJVVVlOOwoQg0RnhDE1RKpXl0',\n", + " 'post_code': '28006',\n", + " 'state': 'Comunidad de Madrid',\n", + " 'state_short': 'MD',\n", + " 'street_name': 'Calle de María de Molina',\n", + " 'street_number': '11-13-15',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.ie.edu/ie-foundation/'},\n", + " {'address': 'Fundación Barrié Cantón Grande, 9 15003 A Coruña Spain',\n", + " 'country': 'Spain',\n", + " 'email': 'info@fbarrie.org',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain']},\n", + " 'id': 5216,\n", + " 'link': 'https://philea.eu/members/fundacion-barrie/',\n", + " 'name': 'Fundación Barrié',\n", + " 'philea_info': {'About': 'Pedro Barrié de la Maza, Count of Fenosa, created '\n", + " 'the foundation in 1966, declaring it his universal '\n", + " 'heir. Banker, businessman and promoter of '\n", + " 'outstanding initiatives, he dedicated his life '\n", + " '(1888-1971) to working for the economic, social '\n", + " 'and cultural progress of Galicia, his native '\n", + " 'region. From 1971 to 2009, the foundation was '\n", + " 'presided over by the founder’s widow, Carmela '\n", + " 'Arias y Díaz de Rábago, Countess of Fenosa. Since '\n", + " 'her demise in 2009, José María Arias Mosquera, the '\n", + " 'president of Banco Pastor, is directing the '\n", + " 'foundation.',\n", + " 'Geographic Focus': 'Galicia, Spain',\n", + " 'Mission': 'To foster the sustainable development of '\n", + " 'Galicia, with particular emphasis on human '\n", + " 'capital investments.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: • Heritage and culture\\n'\n", + " '• Education and research\\n'\n", + " '• Social work Heritage and Culture\\n'\n", + " 'The foundation runs projects to conserve '\n", + " 'the heritage of Galicia and increase its '\n", + " 'appreciation, among them the outstanding '\n", + " 'programmes carried out in the Cathedral '\n", + " 'of Santiago de Compostela. It also '\n", + " 'organises free exhibitions, concerts and '\n", + " 'seminars, attracting around 100,000 '\n", + " 'people per year. These cultural '\n", + " 'programmes also include a temporary '\n", + " 'exhibitions programme, designed for '\n", + " 'broad public appeal, in the fields of '\n", + " 'fine arts, photography, architecture and '\n", + " 'design that are accompanied by intense '\n", + " 'educational and complementary activities '\n", + " 'programmes. Education and Research\\n'\n", + " 'Promoting excellent research and '\n", + " 'spreading scientific results while '\n", + " 'favouring the development of a highly '\n", + " 'innovative production environment in '\n", + " 'Galicia are the objectives of the '\n", + " 'research area. It supports a broad range '\n", + " 'of research projects ranging from '\n", + " 'historical heritage research to '\n", + " 'biomedical research. The foundation also '\n", + " 'supports research institutes in other '\n", + " 'areas, such as the Pedro Barrié de la '\n", + " 'Maza Institute for Economic Studies. In '\n", + " 'the Education area, the foundation '\n", + " 'supports excellence and talent through '\n", + " 'comprehensive, high-quality education. '\n", + " 'The foundation offers different '\n", + " 'scholarship programmes, among them the '\n", + " 'scholarship programme for postgraduate '\n", + " 'studies abroad or the High School '\n", + " 'scholarships for studying one academic '\n", + " 'year in the United States. Social Work\\n'\n", + " 'The Social Work area focuses on the '\n", + " 'fight against social exclusion in '\n", + " 'Galicia in collaboration with non-profit '\n", + " 'organisations working with the elderly, '\n", + " 'drug addicts, persons with disabilities, '\n", + " 'prisoners, women and children. The '\n", + " 'foundation provides these organisations '\n", + " 'with financial assistance and training '\n", + " 'opportunities, striving for the social '\n", + " 'and/or labour insertion of the most '\n", + " 'vulnerable sections of the population.'},\n", + " 'position': {'address': 'Fundación Barrié, Rúa Cantón Grande, 9, 15003 A '\n", + " 'Coruña, Spain',\n", + " 'city': 'A Coruña',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 43.36801620000001,\n", + " 'lng': -8.403474800000001,\n", + " 'name': 'Fundación Barrié',\n", + " 'place_id': 'ChIJ_Vr12318Lg0R3jcNUA9hatk',\n", + " 'post_code': '15003',\n", + " 'state': 'Galicia',\n", + " 'state_short': 'GA',\n", + " 'street_name': 'Rúa Cantón Grande',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fundacionbarrie.org'},\n", + " {'address': 'Fundação Luso-Americana para o Desenvolvimento Rua do Sacramento '\n", + " 'à Lapa 21 1249-090 Lisbon Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'fladport@flad.pt',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Portugal']},\n", + " 'id': 5214,\n", + " 'link': 'https://philea.eu/members/fundacao-luso-americana-para-o-desenvolvimento/',\n", + " 'name': 'Fundação Luso-Americana para o Desenvolvimento',\n", + " 'philea_info': {'About': 'Fundação Luso-Americana para o Desenvolvimento '\n", + " '(FLAD) was established in 1985 following a '\n", + " 'cooperation agreement between the governments of '\n", + " 'Portugal and the US. It was established under '\n", + " 'Portuguese law as a private organisation, '\n", + " 'officially recognised as a public service '\n", + " 'institution that is financially and '\n", + " 'administratively independent, to pursue the aims '\n", + " 'of its statutes.',\n", + " 'Geographic Focus': 'Portugal, US and Portuguese speaking '\n", + " 'countries',\n", + " 'Mission': 'To contribute to Portugal’s economic and social '\n", + " 'development by promoting cooperation between '\n", + " 'Portugal and the US in business, education, '\n", + " 'science, technology, environmental protection '\n", + " 'and culture.',\n", + " 'Programme Areas': 'The foundation offers support in the '\n", + " 'following areas: • Education, Science '\n", + " 'and Technology\\n'\n", + " '• Culture\\n'\n", + " '• Environment\\n'\n", + " '• Functions of the State and Civil '\n", + " 'Society\\n'\n", + " '• Transatlantic Relations and European '\n", + " 'Integration\\n'\n", + " '• Cooperation with Portuguese Speaking '\n", + " 'Countries Education, Science and '\n", + " 'Technology\\n'\n", + " 'Supports Portuguese centres of '\n", + " 'scientific research and training for '\n", + " 'qualified professionals. The foundation '\n", + " 'develops exchange programmes with '\n", + " 'foreign countries, particularly the US, '\n", + " 'and contributes towards the creation and '\n", + " 'development of various scientific '\n", + " 'institutes and departments. Culture\\n'\n", + " 'Operates scholarship programmes in the '\n", + " 'areas of fine arts, literature, '\n", + " 'architecture and music and cooperation '\n", + " 'programmes between Portuguese and '\n", + " 'American cultural institutions. The '\n", + " 'foundation sponsors professional '\n", + " 'training for artists and managers in the '\n", + " 'field of culture, and develops a '\n", + " 'contemporary Portuguese art collection '\n", + " 'which it disseminates through exhibits '\n", + " 'and lending works of art abroad. '\n", + " 'Portuguese language and culture are '\n", + " 'promoted in the US through support given '\n", + " 'to Portuguese studies centres at '\n", + " 'American universities. Environment\\n'\n", + " 'Supports public awareness programmes '\n", + " 'involving conferences, workshops and '\n", + " 'publications, and capacity building for '\n", + " 'Portuguese environmental NGOs. The '\n", + " 'foundation also supports environmental '\n", + " 'educational and research by means of '\n", + " 'cooperation agreements between '\n", + " 'Portuguese and American universities, as '\n", + " 'well as scholarships grants. The '\n", + " 'foundation supports transnational '\n", + " 'environmental networks which debate '\n", + " 'environmental issues at an international '\n", + " 'level. Functions of the State and Civil '\n", + " 'Society\\n'\n", + " 'Promotes modernisation and efficiency in '\n", + " 'public administration, focusing on '\n", + " 'innovative management practices and new '\n", + " 'information technologies, in addition to '\n", + " 'improving intervention systems in the '\n", + " 'public sector. The foundation implements '\n", + " 'policies of urban improvement and '\n", + " 'territorial administration and raises '\n", + " 'public and institutional awareness of '\n", + " 'these problems. Transatlantic Relations '\n", + " 'and European Integration\\n'\n", + " 'Collaborates with Portuguese and '\n", + " 'American universities and think tanks in '\n", + " 'a number of studies on relations between '\n", + " 'the United States and Europe, and issues '\n", + " 'involving the enlargement of the '\n", + " 'European Union. Cooperation with '\n", + " 'Portuguese Speaking Countries\\n'\n", + " 'Throughout its history, the foundation '\n", + " 'has developed and promoted a vast number '\n", + " 'of initiatives to spark cooperation '\n", + " 'among Portuguese-speaking countries. In '\n", + " 'most instances, Lusophone Africa has '\n", + " 'been the main target of FLAD’s '\n", + " 'attention.'},\n", + " 'position': {'address': 'Rua Sacramento à Lapa 21, Lisbon, Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.708293,\n", + " 'lng': -9.162948499999999,\n", + " 'name': 'R. Sacramento à Lapa 21',\n", + " 'place_id': 'ChIJu2jwj540GQ0RpMgVt3mWgcs',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Rua Sacramento à Lapa',\n", + " 'street_name_short': 'R. Sacramento à Lapa',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.flad.pt'},\n", + " {'address': 'Fundação Calouste Gulbenkian Avenida de Berna 45ª 1067-001 '\n", + " 'Lisbon Portugal',\n", + " 'country': 'Portugal',\n", + " 'email': 'info@gulbenkian.pt',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Southern / Mediterranean)': ['Portugal'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Worldwide': ['International', 'Worldwide']},\n", + " 'id': 5213,\n", + " 'link': 'https://philea.eu/members/fundacao-calouste-gulbenkian/',\n", + " 'name': 'Fundação Calouste Gulbenkian',\n", + " 'philea_info': {'About': 'Established in 1956 as a Portuguese foundation for '\n", + " 'the whole of humanity, the Gulbenkian Foundation '\n", + " 'was bequeathed by the last will and testament of '\n", + " 'Calouste Sarkis Gulbenkian. The foundation is of '\n", + " 'perpetual duration and undertakes its activities '\n", + " 'structured around its headquarters in Lisbon '\n", + " '(Portugal) and its delegations in Paris (France) '\n", + " 'and London (UK).',\n", + " 'Geographic Focus': 'Portugal, Europe, Portuguese-speaking '\n", + " 'African countries, East Timor, '\n", + " 'worldwide Armenian communities, and '\n", + " 'international',\n", + " 'Mission': 'The foundation is a perpetual institution of '\n", + " 'Portuguese nationality with charitable, '\n", + " 'artistic, educational and scientific statutory '\n", + " 'aims. It is committed to full independence and '\n", + " 'preservation of its heritage, and its main '\n", + " 'priority is defined as the development of a '\n", + " 'society that provides equal opportunities and '\n", + " 'that is sustainable.',\n", + " 'Programme Areas': 'Aligned with a national, European and '\n", + " 'global agenda, the foundation engages in '\n", + " 'a transversal approach spanning three '\n", + " 'activity areas: – Art and Culture\\n'\n", + " '– Social Development and Sustainability\\n'\n", + " '– Science, Education and Health Art and '\n", + " 'Culture\\n'\n", + " 'In addition to the permanent Collections '\n", + " 'of the Museums – Calouste Gulbenkian '\n", + " 'Museum and CAM (Modern Art Centre) –, '\n", + " 'the Art Library and Archives, the '\n", + " 'performances featuring in the Gulbenkian '\n", + " 'Music season and in which the Gulbenkian '\n", + " 'Orchestra and Choir always play a '\n", + " 'central role, the foundation also '\n", + " 'carries out a diverse range of other '\n", + " 'activities interconnected with the Arts: '\n", + " 'temporary exhibitions, conferences, '\n", + " 'awarding of grants and scholarships, '\n", + " 'training programmes, the Gulbenkian '\n", + " 'Prize for Heritage (renovation and '\n", + " 'restoration), publishing studies and '\n", + " 'running educational activities represent '\n", + " 'some of the foundation’s initiatives '\n", + " 'ongoing in this field. Social '\n", + " 'Development and Sustainability\\n'\n", + " 'Awarded annually, the Gulbenkian Prize '\n", + " 'for Humanity, to the tune of 1 million '\n", + " 'euros, aims to recognise people, groups '\n", + " 'of people and/or organisations from all '\n", + " 'over the world whose contributions to '\n", + " 'mitigation and adaptation to climate '\n", + " 'change stand out for its novelty, '\n", + " 'innovation and impact. At the national '\n", + " 'level, the Gulbenkian Foundation '\n", + " 'provides incentives and facilitates the '\n", + " 'inclusion of vulnerable groups (the '\n", + " 'elderly, at-risk children and young '\n", + " 'persons, migrants and refugees) through '\n", + " 'the empowerment of people and '\n", + " 'organisations, promoting and '\n", + " 'experimenting with innovative solutions, '\n", + " 'through valuing the role of the arts as '\n", + " 'a means to promote change and social '\n", + " 'transformation, through promoting a '\n", + " 'transition to a more sustainable '\n", + " 'production and consumption (climate '\n", + " 'change, oceans, circular economy) as '\n", + " 'well as testing new financial models for '\n", + " 'social and environmental solutions.\\n'\n", + " 'At the international level, the '\n", + " 'foundation promotes and contributes to '\n", + " 'the preservation of Armenian culture and '\n", + " 'language and, especially in the PALOPs – '\n", + " 'the Portuguese Language Speaking '\n", + " 'Countries in Africa and East Timor, '\n", + " 'strengthens the capacities of people and '\n", + " 'institutions in key areas of social and '\n", + " 'economic development. Science, Education '\n", + " 'and Health\\n'\n", + " 'Science, Education and Health have been '\n", + " 'core areas of activity for the last few '\n", + " 'decades and today the Gulbenkian '\n", + " 'Foundation strives to increase access to '\n", + " 'quality health care and improve the '\n", + " 'efficiency of health services (through '\n", + " 'implementation of science and '\n", + " 'behavioural change techniques), to '\n", + " 'develop and support projects that '\n", + " 'reinforce education and learning (in '\n", + " 'children, young persons and adults). In '\n", + " 'science, the foundation promotes '\n", + " 'world-class biological and biomedical '\n", + " 'scientific research, postgraduate and '\n", + " 'doctoral trainings and strengthens a '\n", + " 'science-society relationship. The '\n", + " 'Gulbenkian Foundation also invests in '\n", + " 'prospective analysis and discussion of '\n", + " 'the main issues concerning the future of '\n", + " 'Portugal, Europe and globally, and '\n", + " 'increasing the number of people capable '\n", + " 'of fostering adaptation and change.'},\n", + " 'position': {'address': 'Avenida de Berna 45 A, Lisbon, Portugal',\n", + " 'city': 'Lisboa',\n", + " 'country': 'Portugal',\n", + " 'country_short': 'PT',\n", + " 'lat': 38.7373239,\n", + " 'lng': -9.1544367,\n", + " 'name': 'Av. de Berna 45 A',\n", + " 'place_id': 'ChIJky4ozw0zGQ0RNNlnB1Kvuo8',\n", + " 'post_code': '1050-078',\n", + " 'state': 'Lisboa',\n", + " 'street_name': 'Avenida de Berna',\n", + " 'street_name_short': 'Av. de Berna',\n", + " 'street_number': '45 A',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gulbenkian.pt'},\n", + " {'address': 'Fritt Ord Foundation Uranienborgveien 2 0258 Oslo Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@frittord.no',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Norway'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5211,\n", + " 'link': 'https://philea.eu/members/fritt-ord-foundation/',\n", + " 'name': 'Fritt Ord Foundation',\n", + " 'philea_info': {'About': 'The Fritt Ord Foundation was established in 1974 '\n", + " 'by Narvesens Kioskkompani, a family owned company, '\n", + " 'to secure an independent distribution of the '\n", + " 'printed word.',\n", + " 'Geographic Focus': 'Norway and Europe',\n", + " 'Mission': 'To protect and promote the freedom of '\n", + " 'expression, and the environment for the freedom '\n", + " 'of expression in Norway; to support other '\n", + " 'aspects of Norwegian Culture, primarily those '\n", + " 'dealing with free speech; and, in special cases, '\n", + " 'to promote the freedom of expression in other '\n", + " 'countries.',\n", + " 'Programme Areas': 'The foundation manages funds for '\n", + " 'projects within the areas of : • Media '\n", + " 'and Democracy\\n'\n", + " '• Information and Public Debate\\n'\n", + " '• Grants and Training\\n'\n", + " '• Art and Culture Media and Democracy\\n'\n", + " 'Promotes freedom of expression, and '\n", + " 'knowledge about media trends and their '\n", + " 'social consequences. The foundation also '\n", + " 'supports diverse programme production '\n", + " 'and alternative modes of organisation as '\n", + " 'means of enriching the cultural '\n", + " 'environment. Information and Public '\n", + " 'Debate\\n'\n", + " 'Promotes access to books, documentary '\n", + " 'films, lectures, seminars and '\n", + " 'conferences as means of determining the '\n", + " 'level of knowledge in society-at-large '\n", + " 'and at the same time providing fora for '\n", + " 'lively debates. The foundation operates '\n", + " 'three prizes on the theme of freedom of '\n", + " 'expression: • The Freedom of Expression '\n", + " 'Prize is awarded to individuals or '\n", + " 'institutions engaged in activities '\n", + " 'deemed especially worthwhile within the '\n", + " 'foundation’s key interests\\n'\n", + " '• The Freedom of Expression Tribute is '\n", + " 'awarded to individuals in '\n", + " 'acknowledgement of efforts made to '\n", + " 'promote free speech, often in connection '\n", + " 'with current affairs\\n'\n", + " '• The Freedom of Expression Foundation’s '\n", + " 'Press Prize for Russia and Eastern '\n", + " 'Europe: The Fritt Ord Foundation, and '\n", + " 'the ZEIT Foundation cooperate to award '\n", + " 'press prizes to journalists and media in '\n", + " 'Russia and Eastern Europe. The press '\n", + " 'prizes are intended to support the '\n", + " 'independent role of journalists, despite '\n", + " 'reprisals and financial difficulties, to '\n", + " 'encourage them not to be intimidated by '\n", + " 'censorship and to resist '\n", + " 'self-censorship. Grants and Training\\n'\n", + " 'Supports young people taking part in '\n", + " 'social debate and gaining awareness of '\n", + " 'the importance of freedom of expression. '\n", + " 'The foundation offers grants to students '\n", + " 'at colleges and universities who '\n", + " 'question issues related to freedom of '\n", + " 'expression, human rights and democracy '\n", + " 'building, and supports initiatives which '\n", + " 'promote social awareness and the '\n", + " 'exchange of ideas. Art and Culture\\n'\n", + " 'Supports catalogues, initiatives for '\n", + " 'exchanging opinions and cross-cultural '\n", + " 'dialogue in connection with artistic '\n", + " 'expressions and debate on cultural '\n", + " 'policy. As part of its promotion of the '\n", + " 'freedom of expression, the foundation '\n", + " 'operates a youth writing competition '\n", + " 'inviting young people between the ages '\n", + " 'of 12 and 20 to explore the constraints '\n", + " 'that have been put on the media and arts '\n", + " 'throughout history.'},\n", + " 'position': {'address': 'Fritt Ord, Uranienborgveien 2, 0258 Oslo, Norway',\n", + " 'city': 'Oslo',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 59.9199598,\n", + " 'lng': 10.7264898,\n", + " 'name': 'Fritt Ord',\n", + " 'place_id': 'ChIJveWuq3huQUYRTOGkJjmrBaA',\n", + " 'post_code': '0258',\n", + " 'state': 'Oslo',\n", + " 'street_name': 'Uranienborgveien',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Human/Civil Rights',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.frittord.no/'},\n", + " {'address': 'Freudenberg Stiftung GmbH Freudenberg Straße 2 69469 Weinheim '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'info@freudenbergstiftung.de',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Bulgaria',\n", + " 'Hungary',\n", + " 'Romania'],\n", + " 'Europe (Western / General)': ['Europe', 'Germany'],\n", + " 'Middle East & North Africa (MENA)': ['Israel']},\n", + " 'id': 5210,\n", + " 'link': 'https://philea.eu/members/freudenberg-stiftung-gmbh/',\n", + " 'name': 'Freudenberg Stiftung GmbH',\n", + " 'philea_info': {'About': 'The Freudenberg Foundation was established in 1984 '\n", + " 'by members of the Freudenberg family who '\n", + " 'bequeathed to the foundation a part of their '\n", + " 'holdings in the Freudenberg Company, which is '\n", + " 'owned exclusively by family members.',\n", + " 'Geographic Focus': 'Germany, Israel, Hungary, South-East '\n", + " 'Europe, Bulgaria and Romania',\n", + " 'Mission': 'To promote science, education, humanities and '\n", + " 'peaceful co-existence in society.',\n", + " 'Programme Areas': 'The Freudenberg Stiftung regards itself '\n", + " 'as an operating foundation which draws '\n", + " 'up, implements, develops, and '\n", + " 'disseminates projects of its own. Its '\n", + " 'work and grantmaking focus on the '\n", + " 'following areas: • Integrative society\\n'\n", + " '• Youth between school and working life\\n'\n", + " '• Democratic culture\\n'\n", + " '• Work for mentally ill persons '\n", + " 'Integrative Society\\n'\n", + " 'Supports the integration of children and '\n", + " 'young people from immigrant families. '\n", + " 'Projects are designed in such a way that '\n", + " 'the families as a whole are assisted and '\n", + " 'that, in particular, the parents become '\n", + " 'active and participate over an extended '\n", + " 'period of time. The aim is to help '\n", + " 'children and young people with an '\n", + " 'immigrant background completely develop '\n", + " 'their potential in the course of their '\n", + " 'education. Secondly, projects work '\n", + " 'towards systematically including the '\n", + " 'special qualifications of immigrants at '\n", + " 'school, jobs, in the community and '\n", + " 'media, so that the strengths of a '\n", + " 'culturally heterogeneous society become '\n", + " 'more visible and usable. Thirdly, the '\n", + " 'foundation aims to strengthen the '\n", + " 'integrative power of communities and '\n", + " 'local civil society through model '\n", + " 'projects in city districts, so that '\n", + " 'children and young people from immigrant '\n", + " 'families will experience a sense of '\n", + " 'belonging, recognition and hope for the '\n", + " 'future at their places of learning and '\n", + " 'living. Youth Between School and Working '\n", + " 'Life\\n'\n", + " 'The foundation is active in the area of '\n", + " 'vocational training and vocational '\n", + " 'integration of underprivileged young '\n", + " 'persons. The foundation supports '\n", + " 'projects that improve vocational '\n", + " 'orientation and counseling at school, '\n", + " 'teach young people how they can take '\n", + " 'more initiative and have more '\n", + " 'entrepreneurial spirit, expand job '\n", + " 'opportunities for young people and '\n", + " 'encourage local authorities and civil '\n", + " 'society to take more, also joint, '\n", + " 'responsibility, so that young people can '\n", + " 'find the most suitable schooling and '\n", + " 'vocational training. Democratic Culture\\n'\n", + " 'This program area involves two aspects: '\n", + " 'on the one hand, it is concerned with '\n", + " 'response strategies whenever democratic '\n", + " 'culture is threatened, e.g. by '\n", + " 'right-wing extremism or religious '\n", + " 'extremism; on the other hand, it focuses '\n", + " 'on having children learn democratic '\n", + " 'culture in kindergarten, school and '\n", + " 'their general surroundings. The '\n", + " 'foundation initiates and supports '\n", + " 'initiatives that aim to strengthen '\n", + " 'democracy as a form of life and help '\n", + " 'develop the skills necessary for this, '\n", + " 'be it in kindergarten, school or the '\n", + " 'community. Work for Mentally Ill '\n", + " 'Persons\\n'\n", + " 'Supports the reintegration of mentally '\n", + " 'ill persons into the labour market and '\n", + " 'promotes model examples of jobs where '\n", + " 'mentally ill people can earn additional '\n", + " 'income. A prize is awarded for '\n", + " 'trend-setting business ideas and company '\n", + " 'organisation models every year. A '\n", + " 'special characteristic of the '\n", + " 'Freudenberg Foundation is that it '\n", + " 'provides support to the selected towns '\n", + " 'over an extended period of time.'},\n", + " 'position': {'address': 'Freudenberg Stiftung GmbH, Freudenbergstraße 2, '\n", + " '69469 Weinheim, Germany',\n", + " 'city': 'Weinheim',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 49.54678930000001,\n", + " 'lng': 8.6686229,\n", + " 'name': 'Freudenberg Stiftung',\n", + " 'place_id': 'ChIJq-Y4QDzbl0cRBks74TPq6jQ',\n", + " 'post_code': '69469',\n", + " 'state': 'Baden-Württemberg',\n", + " 'state_short': 'BW',\n", + " 'street_name': 'Freudenbergstraße',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.freudenbergstiftung.de'},\n", + " {'address': 'Centre Français des Fonds et Fondations 34bis, Rue Vignon (3e '\n", + " 'étage) 75009 Paris France',\n", + " 'country': 'France',\n", + " 'email': 'info@centre-francais-fondations.org',\n", + " 'geo_locations': {},\n", + " 'id': 5113,\n", + " 'link': 'https://philea.eu/members/french-foundation-centre/',\n", + " 'name': 'French Foundation Centre',\n", + " 'philea_info': {'About': 'First initiated in 2002, the French Foundation '\n", + " 'Centre (Centre Français des Fonds et Fondations) '\n", + " 'is an association of french funds and foundations, '\n", + " 'dedicated to promoting the development of '\n", + " 'foundations in France and to enhancing their '\n", + " 'local, national and international representation '\n", + " 'by improving the knowledge of their status and '\n", + " 'action and supporting their developing projects.',\n", + " 'Mission': 'Through its services the French Foundation '\n", + " 'Centre provides a framework, in which endowment '\n", + " 'funds and foundations can learn from each '\n", + " 'other’s experiences, explore matters of common '\n", + " 'concern and achieve good practice in '\n", + " 'grant-making, evaluation, accounting, '\n", + " 'innovation, governance, human resources, '\n", + " 'communications, investment policy, transparency, '\n", + " 'accountability, new trends of philanthropy, '\n", + " 'social entrepreneurship, venture philanthropy or '\n", + " 'impact.'},\n", + " 'position': {'address': 'French Center Funds and Foundations, Rue Vignon, '\n", + " 'Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.87247439999999,\n", + " 'lng': 2.3267006,\n", + " 'name': 'French Center Funds and Foundations',\n", + " 'place_id': 'ChIJA4HSZDRu5kcR3H-xSIWTGUk',\n", + " 'post_code': '75009',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Rue Vignon',\n", + " 'street_number': '34 bis',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.centre-francais-fondations.org'},\n", + " {'address': 'Foundation for Polish Science Ignacego Krasickiego 20/22 02-611 '\n", + " 'Warsaw Poland',\n", + " 'country': 'Poland',\n", + " 'email': 'fnp@fnp.org.pl',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Poland']},\n", + " 'id': 5209,\n", + " 'link': 'https://philea.eu/members/foundation-for-polish-science/',\n", + " 'name': 'Foundation for Polish Science',\n", + " 'philea_info': {'About': 'The Foundation for Polish Science (FNP), formed in '\n", + " '1991, is an independent, self-financing, '\n", + " 'non-profit, non-governmental organisation, with a '\n", + " 'mission of supporting science in Poland. It is the '\n", + " 'largest source of science funding in Poland '\n", + " 'outside the state budget.',\n", + " 'Geographic Focus': 'Poland',\n", + " 'Mission': 'Supporting only the best so that they can become '\n", + " 'even better.',\n", + " 'Programme Areas': 'The foundation runs its own programmes '\n", + " 'and scholarships as well as several on '\n", + " 'behalf of the European Commission: • The '\n", + " 'FNP Prize\\n'\n", + " '• The Copernicus Award\\n'\n", + " '• Grants and Scholarships\\n'\n", + " '• Facilitating Technology Transfer\\n'\n", + " '• Publishing projects and conferences\\n'\n", + " '• Other initiatives\\n'\n", + " '• Programmes financed from the European '\n", + " 'Funds The FNP Prize\\n'\n", + " 'Since 1992, the Foundation for Polish '\n", + " 'Science has awarded individual prizes to '\n", + " 'scientists each year for particular '\n", + " 'achievements and discoveries which have '\n", + " 'made a significant contribution to '\n", + " 'spiritual life and progress of '\n", + " 'civilization in our country and provided '\n", + " 'Poland with a place in world science. '\n", + " 'The prize may be awarded for individual '\n", + " 'achievements which have been attained or '\n", + " 'confirmed within a period of four years '\n", + " 'preceding the date of submission of '\n", + " 'candidacy. The Copernicus Award\\n'\n", + " 'The purpose of the award is to give a '\n", + " 'distinction to the individuals most '\n", + " 'active in Polish-German scientific '\n", + " 'cooperation who have made exceptional '\n", + " 'research achievements as a result of '\n", + " 'that cooperation and who have attained '\n", + " 'significant successes in promoting young '\n", + " 'research personnel. Grants and '\n", + " 'Scholarships\\n'\n", + " 'The foundation runs the following grant '\n", + " 'and scholarship programmes:\\n'\n", + " '• MISTRZ Programme: academic grants for '\n", + " 'professors\\n'\n", + " '• International PhD Projects Programme '\n", + " '(MPD): for projects implemented during '\n", + " 'doctoral studies within the '\n", + " 'international cooperation of scientific '\n", + " 'institutions\\n'\n", + " '• START Programme: stipends for young '\n", + " 'researchers\\n'\n", + " '• PARENT-BRIDGE Programme: grants for '\n", + " 'parents enabling them to return to '\n", + " 'research work and supporting pregnant '\n", + " 'women conducting research\\n'\n", + " '• HOMING Plus Programme: grants for '\n", + " 'young scholars encouraging them to '\n", + " 'conduct research in Poland\\n'\n", + " '• TEAM Programme: projects carried out '\n", + " 'by students, PhD students and postdocs '\n", + " 'in the best research teams in Poland\\n'\n", + " '• KOLUMB Programme: postdoc outgoing '\n", + " 'fellowships\\n'\n", + " '• IDEAS FOR POLAND Programme: for '\n", + " 'winners of the “ERC Starting Grants” '\n", + " 'competition who intend to pursue '\n", + " 'scientific research in Poland\\n'\n", + " '• Conference Grants: grants for '\n", + " 'participation in international symposia, '\n", + " 'conferences and congresses for young '\n", + " 'researchers, whose selection procedure '\n", + " 'is run by the Warsaw Scientific Society\\n'\n", + " '• Alexander von Humboldt Polish Honorary '\n", + " 'Research Fellowships: fellowships for '\n", + " 'German scholars\\n'\n", + " '• Research Fellowships for Scholars from '\n", + " 'CEE Countries: fellowships for foreign '\n", + " 'scholars, mainly from Central and East '\n", + " 'European countries, willing to conduct '\n", + " 'research at Polish scientific '\n", + " 'institutions\\n'\n", + " '• KWERENDA Programme: grants for Archive '\n", + " 'Search Abroad Facilitating Technology '\n", + " 'Transfer\\n'\n", + " 'Operates the VENTURES Programme, '\n", + " 'supporting innovative projects realised '\n", + " 'by young researchers. Publishing '\n", + " 'projects and conferences\\n'\n", + " 'Operates the MONOGRAPHS Programme, '\n", + " 'supporting monographs in the areas of '\n", + " 'the humanities and the social sciences. '\n", + " 'The foundation also hosts debates on '\n", + " 'science and operates a publications '\n", + " 'programme through which various '\n", + " 'multi-volume works edited by research '\n", + " 'institutes documenting Poland’s '\n", + " 'historical, cultural and technological '\n", + " 'heritage are published. Other '\n", + " 'initiatives\\n'\n", + " 'Operates the EXTERIUS Programme, '\n", + " 'providing financial support for '\n", + " 'exceptional initiatives of significant '\n", + " 'importance for science in Poland. '\n", + " 'Programmes financed from the European '\n", + " 'Funds\\n'\n", + " 'Runs a number of programmes operated '\n", + " 'within the Innovative Economy '\n", + " 'Operational Programme 2007-2013.'},\n", + " 'position': {'address': 'Foundation for Polish Science, Ignacego Krasickiego '\n", + " '20/22, 02-611 Warsaw, Poland',\n", + " 'city': 'Warszawa',\n", + " 'country': 'Poland',\n", + " 'country_short': 'PL',\n", + " 'lat': 52.1932676,\n", + " 'lng': 21.02082279999999,\n", + " 'name': 'Foundation for Polish Science',\n", + " 'place_id': 'ChIJIXitbyvNHkcRiWmzoAGXue4',\n", + " 'post_code': '02-611',\n", + " 'state': 'Mazowieckie',\n", + " 'street_name': 'Ignacego Krasickiego',\n", + " 'street_number': '20/22',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fnp.org.pl/en/'},\n", + " {'address': 'Foundation for Future Generations rue des Brasseurs, 182 5000 '\n", + " 'Namur Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'fgf@fgf.be',\n", + " 'geo_locations': {'Europe (Western / General)': ['Belgium']},\n", + " 'id': 5208,\n", + " 'link': 'https://philea.eu/members/foundation-for-future-generations/',\n", + " 'name': 'Foundation for Future Generations',\n", + " 'philea_info': {'About': 'Legally registered in March 1998, the Fondation '\n", + " 'pour les Générations Futures is an independent '\n", + " 'national non-profit foundation. The foundation '\n", + " 'collects and manages funds to support various '\n", + " 'initiatives. It is the only grantmaking foundation '\n", + " 'in Belgium dedicated exclusively to sustainable '\n", + " 'development.',\n", + " 'Geographic Focus': 'Belgium',\n", + " 'Mission': 'To identify and support projects, and implement '\n", + " 'original ideas and actions that take into '\n", + " 'account both tomorrow’s challenges and today’s '\n", + " 'emergencies. Aiming at contributing to pass on a '\n", + " 'liveable world to future generations, the '\n", + " 'Foundation for Future Generations is exclusively '\n", + " 'dedicated to the transition of our society '\n", + " 'towards a sustainable development mode, meeting '\n", + " 'the needs and challenges of a sustainable and '\n", + " 'viable society for all, today and tomorrow, '\n", + " 'locally and globally.\\n'\n", + " 'Facing the complexity of this endeavour, its '\n", + " 'mission is to promote a multi-faceted, systemic '\n", + " 'approach, simultaneously considering 4 '\n", + " 'dimensions: people, planet, prosperity and '\n", + " 'participation. and to strengthen capacities of '\n", + " 'others in this respect.',\n", + " 'Programme Areas': 'The Foundation for Future Generations '\n", + " 'aims at incubating, supporting and '\n", + " 'attracting public attention to concrete '\n", + " 'and pioneering examples of ‘sustainable '\n", + " 'development put into practice’.\\n'\n", + " 'The Foundation is convinced that it is '\n", + " 'possible to pass on a liveable world to '\n", + " 'our children, if we act and think '\n", + " '“360°-wise”, simultaneously considering '\n", + " '4 dimensions (4 P’s): People, Planet, '\n", + " 'Prosperity and Participation.\\n'\n", + " 'It integrates this transversal approach '\n", + " 'across its main programme areas, '\n", + " 'focusing on key societal drivers of '\n", + " 'change rather than specific themes:\\n'\n", + " '• Think 360°-wise: It prepares students '\n", + " 'and researchers to think 360°-wise by '\n", + " 'valorising master theses, PhD theses and '\n", + " 'research that integrate this approach;\\n'\n", + " '• Act 360°-wise: It inspires its fellow '\n", + " 'citizens – especially the younger '\n", + " 'generations – to act today 360 ° by '\n", + " 'stimulating, supporting and valorising '\n", + " 'social entrepreneurship and concrete '\n", + " 'actions;\\n'\n", + " '• Invest 360°: It invests consistently '\n", + " 'with its values (sustainable & '\n", + " 'impact-first financial investments), and '\n", + " 'promotes ‘citizens finance’;\\n'\n", + " '• Participatory democracy: It promotes '\n", + " 'G1000-like deliberative sortition-based '\n", + " 'processes. In order to bring this about, '\n", + " 'the foundation provides the following '\n", + " 'means: • Grantgiving\\n'\n", + " '• Think-tank\\n'\n", + " '• Operations Grantgiving\\n'\n", + " 'Seeks to enhance the capacity of local '\n", + " 'initiatives that bring tangible added '\n", + " 'value to the sustainable development of '\n", + " 'society. Think-tank\\n'\n", + " 'Seeks to facilitate the development of '\n", + " 'new concepts which contribute to '\n", + " 'creating a society that is more united '\n", + " 'and sustainable. This is done through:\\n'\n", + " '• Acting as a convenor, bringing '\n", + " 'together Acts as a convener, bringing '\n", + " 'together the non-profit, business and '\n", + " 'public sectors. It serves as an active '\n", + " 'but impartial intermediary to encourage '\n", + " 'and facilitate debates and cooperation '\n", + " 'among different stakeholders, to build '\n", + " 'confidence and respect between groups '\n", + " 'with very different views\\n'\n", + " '• Developing the University Prize for '\n", + " 'Future Generations, which makes '\n", + " 'scientific advances in the area of '\n", + " 'sustainable development accessible to a '\n", + " 'much wider public.\\n'\n", + " '• Producing publications on topics such '\n", + " 'as micro-finance, education or supported '\n", + " 'projects. Operations\\n'\n", + " 'Promotes innovation in the field of '\n", + " 'citizen participation and citizen '\n", + " 'democratic control in the development of '\n", + " 'society. Towards this end, the '\n", + " 'foundation has staged two citizens’ '\n", + " 'panels; one on territorial development '\n", + " 'in the Walloon Brabant province, and the '\n", + " 'other on Genetically Modified Organisms '\n", + " '(GMO’s). The foundation pursues its '\n", + " 'objectives through an ethical and '\n", + " 'committed management of its capital.'},\n", + " 'position': {'address': 'Rue des Brasseurs 182, 5000 Namur, Belgium',\n", + " 'city': 'Namur',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.4623091,\n", + " 'lng': 4.8615162,\n", + " 'name': 'Rue des Brasseurs 182',\n", + " 'place_id': 'ChIJf3oGvHGZwUcRKku0PAkuwyU',\n", + " 'post_code': '5000',\n", + " 'state': 'Région Wallonne',\n", + " 'state_short': 'NA',\n", + " 'street_name': 'Rue des Brasseurs',\n", + " 'street_number': '182',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Environment/Climate',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.foundationfuturegenerations.org'},\n", + " {'address': 'Ford Foundation 320 East 43rd Street 10017 New York City United '\n", + " 'States',\n", + " 'country': 'United States',\n", + " 'email': 'office-of-communications@fordfoundation.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Latin America & Caribbean': ['Latin America'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5206,\n", + " 'link': 'https://philea.eu/members/ford-foundation/',\n", + " 'name': 'Ford Foundation',\n", + " 'philea_info': {'About': 'The Ford Foundation, founded in 1936, operated '\n", + " 'through local philanthropy in the state of '\n", + " 'Michigan until 1950, when it expanded to become a '\n", + " 'national and international foundation. Since its '\n", + " 'inception, it has been an independent, non-profit, '\n", + " 'non-governmental organisation. The funds derive '\n", + " 'from an investment portfolio that began with gifts '\n", + " 'of Ford Motor Company stock at the bequest of '\n", + " 'Henry and Edsel Ford. The foundation no longer has '\n", + " 'company stock and its diversified portfolio is '\n", + " 'managed to provide a perpetual source of support '\n", + " 'for the foundation’s programmes and operations. '\n", + " 'The trustees of the foundation set policy, '\n", + " 'delegating authority to the president and senior '\n", + " 'staff for the foundation’s grantmaking and '\n", + " 'operations.',\n", + " 'Geographic Focus': 'US, Africa, Middle East, Asia, Latin '\n", + " 'America, Central America',\n", + " 'Mission': 'To strengthen democratic values, reduce poverty '\n", + " 'and injustice, promote international '\n", + " 'cooperation, and advance human achievement.',\n", + " 'Programme Areas': 'All work aims to challenge inequality. '\n", + " 'The foundation is active in 7 programme '\n", + " 'areas:\\n'\n", + " '• Civic Engagement and Government\\n'\n", + " '• Free Expression and Creativity\\n'\n", + " '• Gender, Racial and Ethnic Justice\\n'\n", + " '• Cities and States\\n'\n", + " '• Future of work(ers)\\n'\n", + " '• Natural resources and climate change\\n'\n", + " '• Technology and society'},\n", + " 'position': {'address': 'Ford Foundation, 320 East 43rd Street, Manhattan, '\n", + " 'New York, NY 10017, United States',\n", + " 'city': 'New York',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 40.74979529999999,\n", + " 'lng': -73.9711624,\n", + " 'name': 'Ford Foundation Center for Social Justice',\n", + " 'place_id': 'ChIJ-f_F2txZwokR_cfRXvbXrsI',\n", + " 'post_code': '10017',\n", + " 'state': 'New York',\n", + " 'state_short': 'NY',\n", + " 'street_name': 'East 43rd Street',\n", + " 'street_name_short': 'E 43rd St',\n", + " 'street_number': '320',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fordfound.org'},\n", + " {'address': 'Fondazione Cassa di Risparmio della Provincia di Teramo Largo '\n", + " 'Melatini 17/23 64100 Teramo Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionetercas.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5204,\n", + " 'link': 'https://philea.eu/members/fondazione-tercas/',\n", + " 'name': 'Fondazione Tercas',\n", + " 'philea_info': {'About': 'Fondazione TERCAS (also known as Fondazione Cassa '\n", + " 'di Risparmio della Provincia di Teramo) is the '\n", + " 'result of the transformation required by the '\n", + " '´Amato´ law of 1991.',\n", + " 'Geographic Focus': 'Province of Teramo, Italy (and '\n", + " 'activities co-ordinated by ACRI aimed '\n", + " 'at promoting national solidarity).',\n", + " 'Mission': 'To provide social benefits and to promote the '\n", + " 'economic development of its reference area, the '\n", + " 'Province of Teramo.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: • Scientific research\\n'\n", + " '• Education\\n'\n", + " '• Arts and culture\\n'\n", + " '• Public health and preventative '\n", + " 'medicine\\n'\n", + " '• Conservation and valorisation of '\n", + " 'assets and cultural activities\\n'\n", + " '• Assistance to the elderly\\n'\n", + " '• Philanthropy, charity and '\n", + " 'volunteering'},\n", + " 'position': {'address': 'Fondazione Cassa Di Risparmio Della Provincia Di '\n", + " 'Teramo, Largo Melatino, Teramo, Province of Teramo, '\n", + " 'Italy',\n", + " 'city': 'Teramo',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.65857889999999,\n", + " 'lng': 13.7064468,\n", + " 'name': 'Fondazione Cassa Di Risparmio Della Provincia Di '\n", + " 'Teramo',\n", + " 'place_id': 'ChIJk18pRPXnMRMRc1eECELe7sc',\n", + " 'post_code': '64100',\n", + " 'state': 'Abruzzo',\n", + " 'state_short': 'TE',\n", + " 'street_name': 'Largo Melatino',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionetercas.it'},\n", + " {'address': 'Fondazione Sviluppo e Crescita CRT Via XX Settembre, 31 10121 '\n", + " 'Torino Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@sviluppoecrescitacrt.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5203,\n", + " 'link': 'https://philea.eu/members/fondazione-sviluppo-e-crescita-crt/',\n", + " 'name': 'Fondazione Sviluppo e Crescita CRT',\n", + " 'philea_info': {'About': 'Fondazione Sviluppo e Crescita – CRT (FSC) was '\n", + " 'founded in 2007 through an initiative of '\n", + " 'Fondazione CRT, an endowment foundation with 100+ '\n", + " 'years of grant-making history.\\n'\n", + " 'It is a non-profit organization focused primarily '\n", + " 'on development and growth of the northern Italian '\n", + " 'regions of Piedmont and Aosta Valley. FSC operates '\n", + " 'in accordance with the traditional and '\n", + " 'institutional activities of Fondazione CRT '\n", + " 'including numerous innovative social activities in '\n", + " 'the field of impact investing, green economy and '\n", + " 'urban regeneration.',\n", + " 'Geographic Focus': 'Italy, Piedmont and Aosta Valley '\n", + " 'regions, and international initiatives '\n", + " 'which impact the Piedmontese territory.',\n", + " 'Mission': 'FSC’s mission is to deploy new initiatives which '\n", + " 'can deliver social impact within regional '\n", + " 'ecosystems, aimed at the entrepreneurial world '\n", + " 'as well as the moderate/low income populations.\\n'\n", + " 'FSC pursues to transfer skills, develop new '\n", + " 'content and networks, multiply sustainable '\n", + " 'projects and promote innovation.',\n", + " 'Programme Areas': 'Venture Philanthropy and Social Impact '\n", + " 'Investments are its core competency.\\n'\n", + " 'The thematic areas are: • 1) Social Real '\n", + " 'Estate funds\\n'\n", + " '• 2) Social Housing\\n'\n", + " '• 3) Environment and Development of the '\n", + " 'territory\\n'\n", + " '• 4) Entrepreneurship and Innovation\\n'\n", + " '• 5) Shareholding and Investing • Social '\n", + " 'Real Estate funds\\n'\n", + " 'This branch is characterized by medium / '\n", + " 'long-term real estate investments, to be '\n", + " 'made through the use of a closed-end '\n", + " 'real estate fund for social purposes. '\n", + " 'The interventions are aimed at creating '\n", + " 'residences for elderly people, '\n", + " 'kindergartens and nursery schools, '\n", + " 'libraries, minor museums. One of the '\n", + " 'purposes of these social initiatives is '\n", + " 'the development of “hu-man capital” '\n", + " 'through culture and education. • Social '\n", + " 'Housing\\n'\n", + " 'FCS supports social housing initiatives '\n", + " 'for residential use. The foundation '\n", + " 'provides a con-crete response to housing '\n", + " 'problems by creating high standard '\n", + " 'quality of structures and ser-vices at '\n", + " 'affordable and rent-controlled costs. '\n", + " 'The interventions are mainly aimed at '\n", + " 'the con-struction, renovation and '\n", + " 'functional recovery of buildings '\n", + " 'allocated to socially and / or '\n", + " 'eco-nomically disadvantaged categories. '\n", + " '• Environment and Development of the '\n", + " 'territory\\n'\n", + " 'The thematic area is focused on '\n", + " 'environment, quality of life and '\n", + " 'socioeconomic development of the '\n", + " 'reference territory, renewable energy '\n", + " 'and services to citizens. • '\n", + " 'Entrepreneurship and Innovation\\n'\n", + " 'The Foundation pays attention to the '\n", + " 'sustainability of projects by promoting '\n", + " 'innovation and technology, transferring '\n", + " 'managerial skills, developing new SMEs, '\n", + " 'expanding networks at regional, national '\n", + " 'and international scale. Most of the '\n", + " 'initiatives are focused on '\n", + " 'environ-mental protection, welfare, '\n", + " 'creative industries and cultural '\n", + " 'companies. • Shareholding and Investing\\n'\n", + " 'FSC works with innovative methods of '\n", + " 'investments by using a range of '\n", + " 'financial instruments tailored to the '\n", + " 'needs of organization supported. Among '\n", + " 'them: a) Microcredit: FSC has invested '\n", + " 'in PerMicro since its inception in Turin '\n", + " 'in 2007. PerMi-cro is the first Italian '\n", + " 'company specialized in micro-credit. It '\n", + " 'is part of the Italian and '\n", + " 'inter-national network of Micro-finance '\n", + " 'organizations whose objective is to '\n", + " 'offer micro-credit as a tool for local '\n", + " 'development and social inclusion.\\n'\n", + " 'b) Crowdfunding: FSC has made available '\n", + " 'the crow-funding solution called '\n", + " '“+Resources” developed in partnership '\n", + " 'with Eppela, an Italian crown funding '\n", + " 'platform. This project has ben designed '\n", + " 'for non-profit organizations focused on '\n", + " 'social innovation and cultural '\n", + " 'entre-preneurship.\\n'\n", + " 'c) Pay by Result: FSC has launched a new '\n", + " 'model of Pay by Result that can support '\n", + " 'and revolutionize the social welfare. '\n", + " 'Inspired by the first Social Impact Bond '\n", + " 'in UK and for the first time in Italy, '\n", + " 'this feasibility study is focused on '\n", + " 'social and labour reintegration of '\n", + " 'detainees.\\n'\n", + " 'd) Shareholding in social impact funds '\n", + " 'and equity following impact investing '\n", + " 'principles, with a social venture '\n", + " 'capital approach in the “impact first” '\n", + " 'segment and with a sustainable business '\n", + " 'model.'},\n", + " 'position': {'address': 'Fondazione CRT, Via XX Settembre, 31, 10121 Torino, '\n", + " 'Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0669842,\n", + " 'lng': 7.680321699999999,\n", + " 'name': 'Fondazione CRT',\n", + " 'place_id': 'ChIJg3DDLGxtiEcRCRSv3n0__IY',\n", + " 'post_code': '10121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via XX Settembre',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.sviluppoecrescitacrt.it/'},\n", + " {'address': 'Fondazione Monte dei Paschi di Siena Via Banchi di Sotto 34 '\n", + " '53100 Siena Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fmps@fondazionemps.it',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5201,\n", + " 'link': 'https://philea.eu/members/fondazione-monte-dei-paschi-di-siena/',\n", + " 'name': 'Fondazione Monte dei Paschi di Siena',\n", + " 'philea_info': {'About': 'The Monte dei Paschi Foundation was established on '\n", + " '28 August 1995 when the banking activities of the '\n", + " 'public-law credit institution were transferred to '\n", + " 'Monte dei Paschi Bank, Inc., whose origins date '\n", + " 'back to 1622 when it was founded on behalf of the '\n", + " 'Magistrates and people of Siena “so that it might '\n", + " 'have fertile development and regulations and '\n", + " 'rules, for the private and public advantage of the '\n", + " 'City and State of Siena”. With the approval of its '\n", + " 'new charter on 8 May 2001, the foundation assumed '\n", + " 'the juridical status of a private non-profit '\n", + " 'organisation with full statutory and management '\n", + " 'autonomy.',\n", + " 'Geographic Focus': 'The city of Siena and its province in '\n", + " 'Italy and Africa',\n", + " 'Mission': 'To pursue social welfare projects in the areas '\n", + " 'of scientific research, education, the arts and '\n", + " 'health care; to promote and finance initiatives '\n", + " 'for the benefit of the city of Siena, its '\n", + " 'institutions and its Province, in order to favor '\n", + " 'and encourage the creation and development of '\n", + " 'productive activities and the enhancement of '\n", + " 'economic resources; and to pursue the objective '\n", + " 'of carrying out community service and '\n", + " 'philanthropic work.',\n", + " 'Programme Areas': 'Identity and Culture\\n'\n", + " 'Inclusive Society\\n'\n", + " 'Agricultural System and Territory\\n'\n", + " 'Research and Technology Transfer '\n", + " 'Identity and Culture Objective:\\n'\n", + " 'To give value to cultural and identity '\n", + " 'heritage of the community\\n'\n", + " 'Actions: High musical training as a tool '\n", + " 'for growth; Cultural heritage of the '\n", + " 'territory Inclusive Society Objective:\\n'\n", + " 'To promote social security and personal '\n", + " 'wellbeing for an inclusive society '\n", + " 'Agricultural System and Territory '\n", + " 'Objective\\n'\n", + " 'To promote Territory development and '\n", + " 'agrocultural system throught sustainable '\n", + " 'pattern of production and consumption\\n'\n", + " 'Actions: Life styles and critical '\n", + " 'consumer; Innovationa and territory '\n", + " 'excellences Research and Technology '\n", + " 'Transfer Objective\\n'\n", + " 'To sustain research and technology '\n", + " 'transfer\\n'\n", + " 'Actions are regarding the field of life '\n", + " 'science and other research fields.'},\n", + " 'position': {'address': 'Fondazione Mps, Banchi di Sotto, 34, 53100 Siena, '\n", + " 'Province of Siena, Italy',\n", + " 'city': 'Siena',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.3191491,\n", + " 'lng': 11.3319299,\n", + " 'name': 'Fondazione Mps',\n", + " 'place_id': 'ChIJu71NtWctKhMRG2xgBB9OM_c',\n", + " 'post_code': '53100',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'SI',\n", + " 'street_name': 'Banchi di Sotto',\n", + " 'street_number': '34',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionemps.it'},\n", + " {'address': 'Fondazione Invernizzi Corso Venezia 32 20121 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazioneinvernizzi.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5200,\n", + " 'link': 'https://philea.eu/members/fondazione-invernizzi/',\n", + " 'name': 'Fondazione Invernizzi',\n", + " 'philea_info': {'About': 'The Founder was one of the most successful '\n", + " 'entrepreneur in the Italian Food Industry of the '\n", + " 'XX century. With his spouse he decided to dedicate '\n", + " 'nearly all their wealth to promote the development '\n", + " 'of Lombardy, ”giving back to their Country what '\n", + " 'they receive during their working life”. His main '\n", + " 'interests were agriculture, wellbeing and '\n", + " 'industrial organisation. For this reason the '\n", + " 'Foundation supports projects in the research areas '\n", + " 'of Agriculture, Health and Economics. Notable '\n", + " 'passion of the Founder was the care for Lombardy '\n", + " 'countryside landscape.',\n", + " 'Geographic Focus': 'Lombardy',\n", + " 'Mission': 'Main purpose is to preserve the value of the '\n", + " 'real estate and financial wealth of the late '\n", + " 'Founders (in particular the XVI century Villa in '\n", + " 'Palladian style with 800 hectares of gardens and '\n", + " 'cultivatins in the Milanese countryside and the '\n", + " 'Palace in the city centre) and support '\n", + " 'scientific research in Economics, Health, '\n", + " 'Nutrition & Agriculture.',\n", + " 'Programme Areas': 'Preserve the XVI century villa in '\n", + " 'Palladian style with annexed gardens in '\n", + " 'the Milanese countryside and the '\n", + " 'properties in the city centre.'},\n", + " 'position': {'address': 'Corso Venezia, 32, 20121 Milan, Metropolitan City '\n", + " 'of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.47093,\n", + " 'lng': 9.201731700000002,\n", + " 'name': 'Corso Venezia, 32',\n", + " 'place_id': 'ChIJIV4D27vGhkcR3N5fFVnr_1U',\n", + " 'post_code': '20121',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Corso Venezia',\n", + " 'street_number': '32',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazioneinvernizzi.it/en'},\n", + " {'address': 'Fondazione Generali – The Human Safety Net- Ente Filantropico '\n", + " 'Piazza Duca degli Abruzzi 2, 34132 Trieste Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'contact@thehumansafetynet.org',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5199,\n", + " 'link': 'https://philea.eu/members/fondazione-generali-the-human-safety-net-onlus/',\n", + " 'name': 'The Human Safety Net',\n", + " 'philea_info': {'About': 'We believe that, whatever happens in life, no one '\n", + " 'should be held back from reaching their potential.',\n", + " 'Geographic Focus': '26 countries worldwide',\n", + " 'Mission': 'Our mission is to unlock the potential of people '\n", + " 'living in vulnerable circumstances so that they '\n", + " 'can transform the lives of their families and '\n", + " 'communities. The Human Safety Net programmes '\n", + " 'support families with young children (0-6) and '\n", + " 'integrate refugees through work and '\n", + " 'entrepreneurship. Our work combines the '\n", + " 'strengths of non-profit organizations, the '\n", + " 'public and the private sector, in Europe, Asia '\n", + " 'and South America. We are a foundation initiated '\n", + " 'by Generali, one of the world’s largest '\n", + " 'insurers. Still, we are also an open net and '\n", + " 'welcome companies, organizations and foundations '\n", + " 'who share the same goals. The Human Safety Net '\n", + " 'is a global movement of people helping people. '\n", + " 'It is active in 26 countries, where it is '\n", + " 'present in 650 locations, working closely with a '\n", + " 'network of 77 NGO partners.',\n", + " 'Programme Areas': 'The programme For Families\\xa0supports '\n", + " 'parents living in vulnerable '\n", + " 'circumstances during the first six years '\n", + " 'of their children’s life. The programme '\n", + " 'For Refugees\\xa0contributes to refugees’ '\n", + " 'inclusion through work and '\n", + " 'entrepreneurship into their host '\n", + " 'countries.'},\n", + " 'position': {'address': 'Fondazione Generali – The Human Safety Net- Ente '\n", + " 'Filantropico Piazza Duca degli Abruzzi 2, 34132 '\n", + " 'Trieste Italy',\n", + " 'city': 'Trieste',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.6536226,\n", + " 'lng': 13.7706201,\n", + " 'place_id': 'ChIJd-p2FG5re0cRF2dfC4hfT_8',\n", + " 'post_code': '34132',\n", + " 'state': 'Friuli-Venezia Giulia',\n", + " 'state_short': 'TS',\n", + " 'street_name': 'Piazza Luigi Amedeo Duca degli Abruzzi',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Humanitarian & Disaster Relief',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.thehumansafetynet.org'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Modena Via Emilia Centro 283 '\n", + " '41121 Modena Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionedimodena.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5196,\n", + " 'link': 'https://philea.eu/members/fondazione-di-modena/',\n", + " 'name': 'Fondazione di Modena',\n", + " 'philea_info': {'About': 'To stimulate growth and welfare in the area of '\n", + " 'Modena and contribute to improving the community’s '\n", + " 'conditions',\n", + " 'Geographic Focus': 'Modena, Italy',\n", + " 'Mission': 'To stimulate growth and welfare in the area of '\n", + " 'Modena and contribute to improving the '\n", + " 'community’s conditions',\n", + " 'Programme Areas': 'The foundation focuses on the following '\n", + " 'areas: • Art, cultural activities and '\n", + " 'heritage\\n'\n", + " '• Scientific and technological research\\n'\n", + " '• Activities of considerable social '\n", + " 'value Art, Cultural Activities and '\n", + " 'Heritage\\n'\n", + " 'Supports the following: • Restoration of '\n", + " 'works of architectural and '\n", + " 'historical-artistic interest\\n'\n", + " '• Musical activities promoted by local '\n", + " 'bodies and associations\\n'\n", + " '• Theatrical activities\\n'\n", + " '• The promotion of exhibitions organised '\n", + " 'by the foundation itself or in '\n", + " 'collaboration with other bodies\\n'\n", + " '• The promotion of cultural events\\n'\n", + " '• The publication of monographs and '\n", + " 'series on issues of historical and '\n", + " 'artistic interest\\n'\n", + " '• The promotion of educational '\n", + " 'activities\\n'\n", + " '• The acquisition of unpublished '\n", + " 'manuscripts, negatives and post-1945 '\n", + " 'historical-artistic evidence within the '\n", + " 'framework of the “”ArchivioArte”” '\n", + " 'project Scientific and Technological '\n", + " 'Research\\n'\n", + " 'Supports the following: • The purchase '\n", + " 'of equipment for diagnosing and '\n", + " 'preventing disease\\n'\n", + " '• Financing research projects of '\n", + " 'national standing\\n'\n", + " '• Fellowships to researchers of Modena '\n", + " 'university\\n'\n", + " '• Setting up Centres of Excellence '\n", + " 'co-funded by other bodies Activities of '\n", + " 'Considerable Social Value\\n'\n", + " 'Supports the following: • Initiatives '\n", + " 'targeted at disadvantaged groups (the '\n", + " 'elderly, juveniles and families '\n", + " 'suffering hardship, the physically and '\n", + " 'mentally disabled)\\n'\n", + " '• The building of sheltered facilities, '\n", + " 'residential and social centres\\n'\n", + " '• Renovating property for social use\\n'\n", + " '• Awareness campaigns and educational '\n", + " 'projects for young people\\n'\n", + " '• The purchase of motor vehicles for '\n", + " 'emergency services\\n'\n", + " '• Projects for enhancing sport as an '\n", + " 'educational and non-competitive '\n", + " 'practice'},\n", + " 'position': {'address': 'Via Emilia, Modena, Province of Modena, Italy',\n", + " 'city': 'Modena',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.6467188,\n", + " 'lng': 10.9260543,\n", + " 'name': 'Via Emilia',\n", + " 'place_id': 'EiJWaWEgRW1pbGlhLCA0MTEyMSBNb2RlbmEgTU8sIEl0YWx5Ii4qLAoUChIJie4tfBTvf0cRUVB1UgvdwvUSFAoSCeFkSd0S739HESh_K0l9HnWW',\n", + " 'post_code': '41121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'MO',\n", + " 'street_name': 'Via Emilia',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionedimodena.it/'},\n", + " {'address': 'Fondazione CRT Via XX Settembre 31 10121 Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrt.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5195,\n", + " 'link': 'https://philea.eu/members/fondazione-crt/',\n", + " 'name': 'Fondazione CRT',\n", + " 'philea_info': {'About': 'Fondazione CRT is a private non-profit '\n", + " 'organization established in 1991 by the Cassa di '\n", + " 'Risparmio di Torino. The foundation has a strong, '\n", + " 'but localised, calling and acts in key sectors of '\n", + " 'development in the two regions of Piedmont and '\n", + " 'Valle d´Aosta . Projects range from conservation '\n", + " 'and valorisation of artistic heritage and cultural '\n", + " 'activities to scientific research; from education '\n", + " 'and training to health and assistance to aiding '\n", + " 'the socially needy; from public safety to '\n", + " 'environmental protection to innovation in local '\n", + " 'organisations.',\n", + " 'Geographic Focus': 'The regions of Piedmont and Valle '\n", + " 'd´Aosta in Italy',\n", + " 'Mission': 'To pursue the goals of social and economic '\n", + " 'development, mainly in the regions of Piemonte '\n", + " 'and Valle d’Aosta.',\n", + " 'Programme Areas': 'The foundation is active in three main '\n", + " 'areas: • Arts and Culture\\n'\n", + " '• Research and Education\\n'\n", + " '• Welfare and Environment Arts and '\n", + " 'Culture\\n'\n", + " 'supports local institutions working in '\n", + " 'this field. Music, theatre, '\n", + " 'restorations, museums, contemporary art '\n", + " 'and temporary exhibitions are the fields '\n", + " 'of intervention. Research and '\n", + " 'Education:\\n'\n", + " 'supports funding and projects for '\n", + " 'education, training, scientific and '\n", + " 'technological research. Funding '\n", + " 'internships abroad and scholarships for '\n", + " 'young people and funding for local '\n", + " 'research institutions and universities '\n", + " 'from the regions are fields of '\n", + " 'intervention. Welfare and Environment:\\n'\n", + " 'Supports projects and activities to '\n", + " 'support volunteer work for the weakest '\n", + " 'social groups, public health, civil '\n", + " 'protection, environmental protection and '\n", + " 'the development of the reference '\n", + " 'regions. Recently Fondazione CRT started '\n", + " 'new initiative on the basis of the '\n", + " 'venture philanthropy approach, namely '\n", + " 'through a specific tool: Fondazione '\n", + " 'Sviluppo e Crescita – CRT (CRT '\n", + " 'Development and Growth Foundation).'},\n", + " 'position': {'address': 'Fondazione CRT, Via XX Settembre, 31, 10121 Turin, '\n", + " 'Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0669842,\n", + " 'lng': 7.680321699999999,\n", + " 'name': 'Fondazione CRT',\n", + " 'place_id': 'ChIJg3DDLGxtiEcRCRSv3n0__IY',\n", + " 'post_code': '10121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via XX Settembre',\n", + " 'street_number': '31',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrt.it'},\n", + " {'address': 'Fondazione CON IL SUD Corso Vittorio Emanuele II, 184 00186 Rome '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazioneconilsud.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5194,\n", + " 'link': 'https://philea.eu/members/fondazione-con-il-sud/',\n", + " 'name': 'Fondazione CON IL SUD',\n", + " 'philea_info': {'About': 'The foundation was established by a Memorandum of '\n", + " 'Understanding for the implementation of a plan of '\n", + " 'social infrastructure in the South of Italy, '\n", + " 'signed in 2005 by ACRI and the “Forum Terzo '\n", + " 'Settore”, which represents the banking '\n", + " 'foundations, and with the accession of: Compagnia '\n", + " 'di San Paolo, Consulta Nazionale Permanente del '\n", + " 'Volontariato presso il Forum, Convol- Conferenza '\n", + " 'Permanente Presidenti Associazioni e Federazioni '\n", + " 'Nazionali di Volontariato, Csv.net-Coordinamento '\n", + " 'Nazionale dei Centri di Servizio per il '\n", + " 'Volontariato, Consulta Nazionale dei Comitati di '\n", + " 'Gestione-Co.Ge.',\n", + " 'Geographic Focus': 'Southern Italy (Basilicata, Calabria, '\n", + " 'Campania, Puglia, Sardinia and Sicily)',\n", + " 'Mission': 'To strengthen and integrate networks of '\n", + " 'voluntary and third sector organisations and '\n", + " 'foundations, without replacing the role of '\n", + " 'public institutions. The foundation promotes and '\n", + " 'enhances the intellectual structures for social '\n", + " 'development, civil and economic development of '\n", + " 'the South of Italy.',\n", + " 'Programme Areas': 'The foundation promotes the intellectual '\n", + " 'structures for social development, civil '\n", + " 'and economic development of the South of '\n", + " 'Italy. In particular the Foundation is '\n", + " 'committed to foster social cohesion '\n", + " 'paths, enhancing the ideas, energies and '\n", + " 'skills already existing in the '\n", + " 'territory.'},\n", + " 'position': {'address': 'Corso Vittorio Emanuele II, 184, 00186 Rome, '\n", + " 'Metropolitan City of Rome, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.89723420000001,\n", + " 'lng': 12.4707195,\n", + " 'name': 'Corso Vittorio Emanuele II, 184',\n", + " 'place_id': 'ChIJOdwzCkVgLxMRa-5qAefkCtE',\n", + " 'post_code': '00186',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Corso Vittorio Emanuele II',\n", + " 'street_number': '184',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazioneconilsud.it/'},\n", + " {'address': 'Compagnia di San Paolo Corso Vittorio Emanuele II, 75 10128 '\n", + " 'Turin Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@compagniadisanpaolo.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5193,\n", + " 'link': 'https://philea.eu/members/fondazione-compagnia-di-san-paolo/',\n", + " 'name': 'Fondazione Compagnia di San Paolo',\n", + " 'philea_info': {'About': 'Compagnia di San Paolo was founded in Turin in '\n", + " '1563 as a charitable lay brotherhood by seven '\n", + " 'citizens who decided their mission was to help the '\n", + " 'poor. Throughout its long history, it has '\n", + " 'supported a range of charitable activities in the '\n", + " 'fields of health, education and social welfare. In '\n", + " '1992, it was transformed into a foundation as a '\n", + " 'consequence of the restructuring of the San Paolo '\n", + " 'Bank Group. After the privatisation of the San '\n", + " 'Paolo Bank, the Compagnia di San Paolo no longer '\n", + " 'holds the controlling shares in the bank.',\n", + " 'Geographic Focus': 'Italy and international',\n", + " 'Mission': 'To support works of public interest and social '\n", + " 'well-being, particularly in the fields of '\n", + " 'scientific, economic and legal research, '\n", + " 'education, art and culture, and health; and to '\n", + " 'provide assistance to, and protection of '\n", + " 'less-privileged social groups.',\n", + " 'Programme Areas': 'The areas in which Compagnia acts are: • '\n", + " 'Research and higher education\\n'\n", + " '• Cultural heritage\\n'\n", + " '• Cultural activities\\n'\n", + " '• Health\\n'\n", + " '• Welfare policy Research and higher '\n", + " 'education\\n'\n", + " 'In terms of research, Compagnia focuses '\n", + " 'on strengthening and aggregating already '\n", + " 'existing structures, and on getting '\n", + " 'mid-term agreements and partnerships '\n", + " 'started, instead of supporting '\n", + " 'individual initiatives. In the field of '\n", + " 'higher education, Compagnia is committed '\n", + " 'to supporting graduate, post-graduate, '\n", + " 'and masters’ programs, as well as '\n", + " 'specialisation schools. These activities '\n", + " 'largely involve the dedication of the '\n", + " 'Compagnia’s instrumental bodies. '\n", + " 'Cultural heritage\\n'\n", + " 'Supports culture as an answer to '\n", + " 'people’s intellectual and spiritual '\n", + " 'needs, as well as an irreplaceable '\n", + " 'factor for the advancement of research '\n", + " 'and knowledge. Within this, Compagnia '\n", + " 'supports the following areas: • '\n", + " 'Architectural, historical and artistic, '\n", + " 'archaeological and landscape heritage\\n'\n", + " '• Civil heritage\\n'\n", + " '• Religious heritage\\n'\n", + " '• The heritage in the territory Cultural '\n", + " 'activities\\n'\n", + " 'Promotes and supports activities that '\n", + " 'have a substantial cultural interest as '\n", + " 'a separate programme area to cultural '\n", + " 'heritage. Within this area, Compagnia '\n", + " 'supports the following: • Archival '\n", + " 'heritage\\n'\n", + " '• Bibliographical heritage\\n'\n", + " '• Cultural institutions\\n'\n", + " '• Music, theater, dance, cinema, books\\n'\n", + " '• Museums Health\\n'\n", + " 'Finances the acquisition of innovative '\n", + " 'equipment for research, diagnosis, and '\n", + " 'cures, and also supports new management '\n", + " 'models in the area of heath care. In '\n", + " 'addition, Compagnia offers smaller '\n", + " 'contributions in areas of specialisation '\n", + " '(neurosurgery, transplants, emergency '\n", + " 'medicine) and in the fight against '\n", + " 'socially relevant pathologies. Welfare '\n", + " 'policy\\n'\n", + " 'Compagnia di San Paolo’s Social Policies '\n", + " 'are aimed at supporting, accompanying '\n", + " 'and creating new opportunities for '\n", + " 'improving the situation of people and '\n", + " 'families in need. Particular areas '\n", + " 'include: • Paths to social autonomy\\n'\n", + " '• Support to youth\\n'\n", + " '• Home care system\\n'\n", + " '• Public space\\n'\n", + " '• Cooperation for development\\n'\n", + " '• Promotion of local philanthropy and of '\n", + " 'community foundations The Compagnia, '\n", + " 'like the other foundations of banking '\n", + " 'origin, is also involved in special '\n", + " 'funds for voluntary work.'},\n", + " 'position': {'address': 'Compagnia di San Paolo, Corso Vittorio Emanuele II, '\n", + " '75, 10128 Turin, Metropolitan City of Turin, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.0644594,\n", + " 'lng': 7.673241600000002,\n", + " 'name': 'Compagnia di San Paolo',\n", + " 'place_id': 'ChIJOdpkvBRtiEcRrWoEhGIxhEU',\n", + " 'post_code': '10128',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Corso Vittorio Emanuele II',\n", + " 'street_number': '75',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.compagniadisanpaolo.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio in Bologna (CARISBO) Via Farini, '\n", + " '15 40124 Bologna Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecarisbo.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5191,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-in-bologna/',\n", + " 'name': 'Fondazione Cassa di Risparmio in Bologna',\n", + " 'philea_info': {'About': 'Fondazione Cassa di Risparmio in Bologna is a '\n", + " 'private non-profit organisation established in '\n", + " '1991 by the Cassa di Risparmio di Bologna. The '\n", + " 'foundation commitment is towards the community, '\n", + " 'supporting organisations and projects aimed at '\n", + " 'social, cultural and economic development.',\n", + " 'Geographic Focus': 'Bologna, Italy',\n", + " 'Mission': 'To pursue the goals of social and economic '\n", + " 'development, mainly in the district of Bologna.',\n", + " 'Programme Areas': 'The foundation works in the following '\n", + " 'areas: • Arts and Culture\\n'\n", + " '• Research and Education\\n'\n", + " '• Welfare'},\n", + " 'position': {'address': 'Via Farini, 15, Bologna, Metropolitan City of '\n", + " 'Bologna, Italy',\n", + " 'city': 'Bologna',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.4914577,\n", + " 'lng': 11.3461144,\n", + " 'name': 'Via Farini, 15',\n", + " 'place_id': 'ChIJHyWcbr_Uf0cR47gNmUfI4Es',\n", + " 'post_code': '40124',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'BO',\n", + " 'street_name': 'Via Farini',\n", + " 'street_number': '15',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecarisbo.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Parma Via al Ponte Caprazucca 4 '\n", + " '43121 Parma Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrp.it',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5188,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-parma/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Parma',\n", + " 'philea_info': {'About': 'Fondazione Cassa di Risparmio di Parma was '\n", + " 'established by Cassa di Risparmio di Parma.',\n", + " 'Geographic Focus': 'Province of Parma, Italy and Africa',\n", + " 'Mission': 'To improve local economic and social development '\n", + " 'and local welfare through grantmaking.',\n", + " 'Programme Areas': 'The foundation supports initiatives in '\n", + " 'the following fields: • Scientific '\n", + " 'research\\n'\n", + " '• Education\\n'\n", + " '• Local welfare\\n'\n", + " '• Health\\n'\n", + " '• Arts'},\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Parma, Strada '\n", + " 'Ponte Caprazucca, Parma, Province of Parma, Italy',\n", + " 'city': 'Parma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.79847959999999,\n", + " 'lng': 10.325979,\n", + " 'name': 'Fondazione Cassa di Risparmio di Parma',\n", + " 'place_id': 'ChIJbdmPU-FqgEcRagAwQ3XrgOE',\n", + " 'post_code': '43121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'PR',\n", + " 'street_name': 'Strada Ponte Caprazucca',\n", + " 'street_name_short': 'Str. Ponte Caprazucca',\n", + " 'street_number': '4/a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrp.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Padova e Rovigo Piazza Duomo, '\n", + " '15 35141 Padova Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionecariparo.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5187,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-padova-e-rovigo/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Padova e Rovigo',\n", + " 'philea_info': {'About': 'Fondazione Cassa di Risparmio di Padova e Rovigo '\n", + " 'was established in 1991 as the continuation of '\n", + " 'Cassa di Risparmio di Padova e Rovigo, which was '\n", + " 'founded in 1822 to support the economic '\n", + " 'development of local communities.',\n", + " 'Geographic Focus': 'Italian provinces of Padua and Rovigo',\n", + " 'Mission': 'To pursue goals of social good and economic '\n", + " 'development.',\n", + " 'Programme Areas': 'The foundation focuses its philanthropic '\n", + " 'activities in the following areas: • '\n", + " 'Scientific research\\n'\n", + " '• Education\\n'\n", + " '• Art and culture\\n'\n", + " '• Health care\\n'\n", + " '• Assistance to the underprivileged '\n", + " 'Scientific Research\\n'\n", + " 'Provides financial support for the '\n", + " 'provision of sophisticated technological '\n", + " 'research equipment and specific research '\n", + " 'projects. The foundation also supports '\n", + " 'the development of the necessary '\n", + " 'research infrastructure, an example of '\n", + " 'which is the University of Padua where '\n", + " 'the foundation fosters and sustains an '\n", + " 'environment that promotes applied '\n", + " 'research and business innovation. '\n", + " 'Education\\n'\n", + " 'Provides financial support to education '\n", + " 'institutions and initiatives that offer '\n", + " 'secondary school pupils and university '\n", + " 'students the best possible opportunities '\n", + " 'to develop their scholarly capacity. Art '\n", + " 'and Culture\\n'\n", + " 'Supports the conservation and promotion '\n", + " 'of the artistic and cultural heritage of '\n", + " 'the region through collaborative '\n", + " 'projects with the region’s principal '\n", + " 'cultural institutions. Health Care\\n'\n", + " 'Seeks to contribute to improving '\n", + " 'prevention, diagnostic and therapeutic '\n", + " 'services in the region’s hospitals and '\n", + " 'clinics, focusing on illnesses that lead '\n", + " 'to loss of self-autonomy and progressive '\n", + " 'disability. Assistance to the '\n", + " 'Underprivileged\\n'\n", + " 'Supports the development of initiatives '\n", + " 'in the area of education, volunteerism '\n", + " 'and social economy for marginalised '\n", + " 'population groups. Specifically, the '\n", + " 'foundation supports the social '\n", + " 'integration of people with disabilities, '\n", + " 'focusing on rehabilitation activities, '\n", + " 'transportation and employment services. '\n", + " 'It also supports projects that target '\n", + " 'the elderly, particularly those who are '\n", + " 'no longer self-sufficient, and '\n", + " 'reinsertion initiatives for victims of '\n", + " 'abuse.'},\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Padova e Rovigo, '\n", + " 'Piazza Duomo, Padua, Province of Padua, Italy',\n", + " 'city': 'Padova',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4071737,\n", + " 'lng': 11.8727611,\n", + " 'name': 'Fondazione Cassa di Risparmio di Padova e Rovigo',\n", + " 'place_id': 'ChIJ9V56vE_afkcRSmb0ohCX3D4',\n", + " 'post_code': '35139',\n", + " 'state': 'Veneto',\n", + " 'state_short': 'PD',\n", + " 'street_name': 'Piazza Duomo',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariparo.it'},\n", + " {'address': 'Ente Cassa di Risparmio di Firenze Via Bufalini 6 I-50122 '\n", + " 'Florence Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'europeanaffairs@fcrf.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5186,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-firenze/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Firenze',\n", + " 'philea_info': {'About': 'The creation of Ente Cassa di Risparmio di Firenze '\n", + " 'in 1992 represented the continuation of the '\n", + " 'traditions of the Cassa di Risparmio di Firenze, '\n", + " 'founded in 1829 by one hundred illustrious '\n", + " 'Florentine citizens who each contributed to the '\n", + " 'founding fund. The main objective was to promote '\n", + " 'saving among the poorer social classes and to '\n", + " 'support socio-economic development by donating '\n", + " 'banking profits to initiatives for the public '\n", + " 'good. In 2000, a new statute and operational '\n", + " 'structure were established in line with prior '\n", + " 'objectives, namely to support those in need of '\n", + " 'solidarity, rehabilitation and assistance.',\n", + " 'Geographic Focus': 'The region of Tuscany in Italy '\n", + " '(specifically Florence, Grosseto and '\n", + " 'Arezzo)',\n", + " 'Mission': 'Fondazione Cassa di Risparmio Firenze (FCRF) is '\n", + " 'a foundation with banking origins, according to '\n", + " 'the It. Law no. 218/1990. Established in 1992, '\n", + " 'FCRF carries on the social and philanthropic '\n", + " 'initiatives in the footsteps of the former '\n", + " 'saving banking (Statute, Article 3, § 1). The '\n", + " 'objectives of its mission are determined by law '\n", + " '(It. Lgs.D. no. 153/1999) and is transposed in '\n", + " 'the Foundation Statute (Statute, Article, §§ '\n", + " '2-3).\\n'\n", + " 'In the specific, FCRC activities converge on 5 '\n", + " 'macro-areas, intending to promote culture and '\n", + " 'art, conserving and enhancing the cultural, '\n", + " 'landscape, environmental and agricultural '\n", + " 'heritage of Florence and Tuscany territories. '\n", + " 'Further, FCRF supports scientific research and '\n", + " 'technological innovation even in the medical and '\n", + " 'health field and the education of young people. '\n", + " 'Finally, it promotes voluntary work and '\n", + " 'associations and is committed to helping those '\n", + " 'in need of solidarity, care and rehabilitation '\n", + " '(Statute, Article, §§ 4-5).\\n'\n", + " 'From the operative perspective, FCRF '\n", + " 'philanthropic activities evolve in two main '\n", + " 'directions. On one side, FCRF directly supports '\n", + " 'its projects or operating entities. On the '\n", + " 'other, it provides contributions to third '\n", + " 'parties initiatives aligned with its own '\n", + " 'statutory and programmatic aims. Additionally, '\n", + " 'FCRF works promoting grants and tenders '\n", + " '(Statute, Article 4).',\n", + " 'Programme Areas': 'FCRC activities converge on 5 '\n", + " 'macro-areas:\\n'\n", + " '1) Arts and Culture – two main sectors: '\n", + " '(A) artistic and cultural initiatives, '\n", + " 'and (B) protection and enhancement of '\n", + " 'national artistic and historical '\n", + " 'heritage. Their activities intend to '\n", + " 'support artistic productions and promote '\n", + " 'the educative, social and economic '\n", + " 'dimension of arts and culture. '\n", + " 'Additionally, FCRF, in these fields, '\n", + " 'encourages community accountability in '\n", + " 'the protection of the local cultural '\n", + " 'heritage.\\n'\n", + " '2) Charities and Volunteering – support '\n", + " 'third-sector and second-welfare '\n", + " 'initiatives. One of the main objectives '\n", + " 'of this area is to promote local '\n", + " 'associations involved in contrasting the '\n", + " 'leading causes of social and economic '\n", + " 'vulnerability (i.e. the breakdown of '\n", + " 'family relationships, unemployment, '\n", + " 'economic instability, housing crisis). '\n", + " 'The main actions, therefore, converge on '\n", + " 'disadvantage groups (e.g. older people, '\n", + " 'children, migrants and those with any '\n", + " 'kind of disability).\\n'\n", + " '3) Research and Technological Innovation '\n", + " '– focuses its efforts on the '\n", + " 'professional advancement of young '\n", + " 'scholars and researchers and the '\n", + " 'enhancement of the local centers of '\n", + " 'excellence in research. Both these needs '\n", + " 'come out from the local scientific and '\n", + " 'academic contexts, and the investments '\n", + " 'made by FCRF give a significant '\n", + " 'contribution to leading institutions '\n", + " 'activities. In particular, the '\n", + " 'Foundations, in this field, aims to '\n", + " 'bridge the gap between academic research '\n", + " 'and the world of business, fostering '\n", + " 'fruitful partnership among the different '\n", + " 'local actors.\\n'\n", + " '4) Education – promotes accessibility '\n", + " 'and inclusiveness in educational and '\n", + " 'vocational programs–and this to overcome '\n", + " 'the shortcomings due to the current '\n", + " 'weaknesses of the traditional '\n", + " 'educational pathways and options. FCRF '\n", + " 'aims to enhance access to educative '\n", + " 'services; prevent early school leaving '\n", + " 'and develop new capacities in vocational '\n", + " 'consultancy and advisory services.\\n'\n", + " '5) Environmental Protection – carries on '\n", + " 'specific actions, promoting social '\n", + " 'participation and involvement in the '\n", + " 'safeguards the local territories and '\n", + " 'landscapes. In this regard, FCRF '\n", + " 'supports the local actors more involved '\n", + " 'in this field, improving their planning '\n", + " 'and management capacities. Additionally, '\n", + " 'the Foundation even cooperates with '\n", + " 'local public institutions to foster '\n", + " 'sustainable developments initiatives and '\n", + " 'policies.'},\n", + " 'position': {'address': 'Foundation Cassa Di Risparmio di Firenze, Via '\n", + " 'Maurizio Bufalini, 6, 50122 Florence, Metropolitan '\n", + " 'City of Florence, Italy',\n", + " 'city': 'Firenze',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.7737305,\n", + " 'lng': 11.2586293,\n", + " 'name': 'Foundation Cassa Di Risparmio di Firenze',\n", + " 'place_id': 'ChIJW1xocARUKhMR2pMRmrXAHF4',\n", + " 'post_code': '50122',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'FI',\n", + " 'street_name': 'Via Maurizio Bufalini',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondazionecrfirenze.it/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Cuneo Via Roma, 17 12100 Cuneo '\n", + " 'Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecrc.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5185,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-cuneo/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Cuneo',\n", + " 'philea_info': {'About': 'Fondazione Cassa di Risparmio di Cuneo was '\n", + " 'established in 1992 and originated from the former '\n", + " 'Cassa di Risparmio di Cuneo S.p.A (according to '\n", + " 'the Italian reform of savings banks). The '\n", + " 'foundation assumed the juridical status of a '\n", + " 'private, non-profit organisation, focused '\n", + " 'exclusively on public and social benefit '\n", + " 'activities, in the fields of social cohesion, '\n", + " 'welfare, culture, education, and sustainable local '\n", + " 'development, mainly in the district of Cuneo, in '\n", + " 'south Piedmont, Northern Italy.',\n", + " 'Geographic Focus': 'Region of Piemonte, Province of Cuneo',\n", + " 'Mission': 'To improve the quality of life for our '\n", + " 'community’s citizens, working in the areas of '\n", + " 'social cohesion, welfare, culture and '\n", + " 'sustainable local development.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: – Local Development and '\n", + " 'Innovation\\n'\n", + " '– Arts and cultural heritage\\n'\n", + " '– Social Solidarity\\n'\n", + " '– Education, knowledge and training '\n", + " '(including the acquisition of editorial '\n", + " 'materials)\\n'\n", + " '– Public health\\n'\n", + " '– Sport'},\n", + " 'position': {'address': 'Fondazione Cassa Di Risparmio Di Cuneo, Via Roma, '\n", + " '17, 12100 Cuneo, Province of Cuneo, Italy',\n", + " 'city': 'Cuneo',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.39335699999999,\n", + " 'lng': 7.552000299999998,\n", + " 'name': 'Foundation Of Cuneo Savings Bank',\n", + " 'place_id': 'ChIJuc6f3z1pzRIRJCG-oPWv6QI',\n", + " 'post_code': '12100',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'CN',\n", + " 'street_name': 'Via Roma',\n", + " 'street_number': '17',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecrc.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler '\n", + " 'Sparkasse Via Talvera, 18 39100 Bolzano Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazionecassarisparmiobz.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5184,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-bolzano-stiftung-sudtiroler-sparkasse/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler '\n", + " 'Sparkasse',\n", + " 'philea_info': {'About': 'To support the sectors of art, preservation and '\n", + " 'valorisation or cultural goods and cultural '\n", + " 'activities as well as in the sectors of ecology, '\n", + " 'instruction, research, the health system and '\n", + " 'previdence.',\n", + " 'Geographic Focus': 'Local area of Alto Adige',\n", + " 'Mission': 'To support the sectors of art, preservation and '\n", + " 'valorisation or cultural goods and cultural '\n", + " 'activities as well as in the sectors of ecology, '\n", + " 'instruction, research, the health system and '\n", + " 'previdence.',\n", + " 'Programme Areas': 'The foundation works in the following '\n", + " 'areas: • Art\\n'\n", + " '• Preservation and valorisation of '\n", + " 'cultural goods and cultural activities\\n'\n", + " '• Ecology\\n'\n", + " '• Education\\n'\n", + " '• Research\\n'\n", + " '• The Italian health system'},\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Bolzano, Via '\n", + " 'Talvera, 18, 39100 Bolzano, Province of Bolzano - '\n", + " 'South Tyrol, Italy',\n", + " 'city': 'Bolzano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 46.500426,\n", + " 'lng': 11.348563,\n", + " 'name': 'Fondazione Cassa di Risparmio di Bolzano',\n", + " 'place_id': 'ChIJx-xzsn2egkcRgvUEP26hFG0',\n", + " 'post_code': '39100',\n", + " 'state': 'Trentino-Alto Adige',\n", + " 'state_short': 'BZ',\n", + " 'street_name': 'Via Talvera',\n", + " 'street_number': '18',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.stiftungsparkasse.it/'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Ascoli Piceno Corso Mazzini, '\n", + " '190 63100 Ascoli Piceno Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fondazionecarisap@fondazionecarisap.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5183,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-ascoli-piceno/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Ascoli Piceno',\n", + " 'philea_info': {'About': 'To pursue social benefit purposes and promote '\n", + " 'economic development in its defined geographical '\n", + " 'and programmatic areas.',\n", + " 'Geographic Focus': 'Multiple communes in Italy',\n", + " 'Mission': 'To pursue social benefit purposes and promote '\n", + " 'economic development in its defined geographical '\n", + " 'and programmatic areas.',\n", + " 'Programme Areas': 'The foundation supports social benefit '\n", + " 'purposes and the promotion of economic '\n", + " 'development in the following areas: • '\n", + " 'Family and family values; youth '\n", + " 'education and development; education and '\n", + " 'training (including the acquisition of '\n", + " 'publications for schools); voluntary '\n", + " 'activities; philanthropy and charity; '\n", + " 'religion and spiritual development; '\n", + " 'assistance to the elderly and civil '\n", + " 'rights\\n'\n", + " '• Criminal prevention and public safety; '\n", + " 'food safety and quality agriculture; '\n", + " 'local development and low-cost housing; '\n", + " 'consumer protection; civil protection; '\n", + " 'public health; preventive medicine and '\n", + " 'rehabilitation; sports activities; '\n", + " 'prevention of and assistance to drug '\n", + " 'addicts; pathology and psychological and '\n", + " 'mental diseases\\n'\n", + " '• Scientific and technological research; '\n", + " 'protection and preservation of the '\n", + " 'environment\\n'\n", + " '• Arts activities and cultural heritage'},\n", + " 'position': {'address': 'Cassa Di Risparmio Di Ascoli Piceno S.P.A., Corso '\n", + " 'Giuseppe Mazzini, 190, 63100 Ascoli Piceno, '\n", + " 'Province of Ascoli Piceno, Italy',\n", + " 'city': 'Ascoli Piceno',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 42.8550662,\n", + " 'lng': 13.5774481,\n", + " 'name': 'Cassa Di Risparmio Di Ascoli Piceno S.P.A.',\n", + " 'place_id': 'ChIJxfj7EBD9MRMRkaLQ8qO-4VI',\n", + " 'post_code': '63100',\n", + " 'state': 'Marche',\n", + " 'state_short': 'AP',\n", + " 'street_name': 'Corso Giuseppe Mazzini',\n", + " 'street_name_short': 'C. Mazzini',\n", + " 'street_number': '190',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecarisap.it'},\n", + " {'address': 'Fondazione Cassa di Risparmio di Alessandria Piazza della '\n", + " 'Libertà, 28 15121 Alessandria Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'direzione@fondazionecralessandria.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5182,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-di-risparmio-di-alessandria/',\n", + " 'name': 'Fondazione Cassa di Risparmio di Alessandria',\n", + " 'philea_info': {'About': 'Fondazione Cassa di Risparmio di Alessandria was '\n", + " 'set up in 1991 as the continuation of Cassa di '\n", + " 'Risparmio di Alessandria, which was founded in '\n", + " '1838 to support economic development of local '\n", + " 'communities.',\n", + " 'Geographic Focus': 'Piedmont, Italy',\n", + " 'Mission': 'To contribute to the social and economic '\n", + " 'development of the Piedmont Region.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: • Education\\n'\n", + " '• Art and culture\\n'\n", + " '• Public health and preventative '\n", + " 'medicine\\n'\n", + " '• Local development and public housing\\n'\n", + " '• Assistance to the elderly\\n'\n", + " '• Scientific research\\n'\n", + " '• Philanthropy, charity and '\n", + " 'volunteering\\n'\n", + " '• Civil defence\\n'\n", + " '• Environmental preservation'},\n", + " 'position': {'address': 'Fondazione Cassa di Risparmio di Alessandria, '\n", + " 'Piazza della Libertà, 28, 15121 Alessandria, '\n", + " 'Province of Alessandria, Italy',\n", + " 'city': 'Alessandria',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.9140767,\n", + " 'lng': 8.6154444,\n", + " 'name': 'Fondazione Cassa di Risparmio di Alessandria',\n", + " 'place_id': 'ChIJUcK2sz50h0cROmC3ZZgvjns',\n", + " 'post_code': '15121',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'AL',\n", + " 'street_name': 'Piazza della Libertà',\n", + " 'street_number': '28',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecralessandria.it'},\n", + " {'address': 'Fondazione Cassa dei Risparmi di Forli Corso Garibaldi, 45 47121 '\n", + " 'Forli Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'fondazione@pec.fondazionecariforli.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5180,\n", + " 'link': 'https://philea.eu/members/fondazione-cassa-dei-risparmi-di-forli/',\n", + " 'name': 'Fondazione Cassa dei Risparmi di Forlì',\n", + " 'philea_info': {'About': 'The foundation was established in 1992 within the '\n", + " 'framwork of the ´Amato-Carli´ law. Since its '\n", + " 'establishment, the foundation has continued the '\n", + " 'Cassa dei Risparmi di Forli bank’s commitment '\n", + " 'towards the community, supporting organisations '\n", + " 'and projects aimed at social, cultural and '\n", + " 'economic development.',\n", + " 'Geographic Focus': 'Italy; the Emilia-Romagna region '\n", + " 'including the following municipalities: '\n", + " 'Forli, Folimpopoli, Bertinoro, Meldola, '\n", + " 'Santa Sofia, Civitella di Romagna, '\n", + " 'Galeata, Bagno di Romagna, Verghereto, '\n", + " 'Predappio, Premilcuore, Castrocaro '\n", + " 'Terme e Terra del Sole, Dovadola, Rocca '\n", + " 'San Casciano, Portico e San Benedetto, '\n", + " 'Modigliana, Tredozio',\n", + " 'Mission': 'To support projects and activities aimed at '\n", + " 'supporting social, cultural and economic '\n", + " 'development within the foundation’s historical '\n", + " 'territory.',\n", + " 'Programme Areas': 'Since 2006, the foundation decided to '\n", + " 'focus on the following areas: Major '\n", + " 'areas: • Arts and culture\\n'\n", + " '• Scientific and technological research\\n'\n", + " '• Public health, preventive medicine and '\n", + " 'rehabilitation\\n'\n", + " '• Local development and housing '\n", + " 'projects\\n'\n", + " '• Voluntarism, philanthropy and charity '\n", + " 'Arts and Culture\\n'\n", + " 'Supports the enhancement of cultural '\n", + " 'heritage in the community, which is also '\n", + " 'seen as a crucial element for economic '\n", + " 'development. The foundation aims to '\n", + " 'support all the associations and '\n", + " 'institutes that promote various '\n", + " 'activities in the fields of theatre, '\n", + " 'music, dance and museums. Scientific and '\n", + " 'Technological Research\\n'\n", + " 'Supports the development of basic and '\n", + " 'applied research with a particular focus '\n", + " 'on the enhancement of the '\n", + " 'relationship/partnership/cooperation '\n", + " 'between universities, companies, '\n", + " 'research laboratories and institutes on '\n", + " 'the theme of technological transfer. '\n", + " 'Public Health, Preventive Medicine and '\n", + " 'Rehabilitation\\n'\n", + " 'Focuses on the optimisation and '\n", + " 'reorganisation of health services, as '\n", + " 'well as the building and upgrading of '\n", + " 'hospital facilities (particularly '\n", + " 'through the purchase of medical and '\n", + " 'scientific equipment). Local Development '\n", + " 'and Housing Projects\\n'\n", + " 'Focuses mainly on the innovation and '\n", + " 'internationalisation of the local '\n", + " 'economic tissue, most of all through '\n", + " 'partnership, cooperation and '\n", + " 'cross-fertilisation with universities '\n", + " 'and professional associations. '\n", + " 'Voluntarism, Philanthropy and Charity\\n'\n", + " 'Supports mainly the non-profit sector in '\n", + " 'its manifold activity towards '\n", + " 'disadvantaged and disabled people, with '\n", + " 'reference particularly to their '\n", + " 'integration in work, fostering '\n", + " 'innovative projects and cooperation '\n", + " 'between the non-profit and public '\n", + " 'sector. Minor areas: • Aid to the '\n", + " 'elderly\\n'\n", + " '• Sport\\n'\n", + " '• Education, including the purchasing of '\n", + " 'press products for schools\\n'\n", + " '• Food safety and quality agriculture '\n", + " 'Aid to the Elderly\\n'\n", + " 'Focuses on in-home assistance- provided '\n", + " 'essentially by the public sector- and '\n", + " '‘light’ services assistance provided by '\n", + " 'non-profit organisations. Sport\\n'\n", + " 'Supports amateur associations, and '\n", + " 'focuses its attention on broadening '\n", + " 'sports activities among children and '\n", + " 'young people, especially through the '\n", + " 'cooperation between schools and sports '\n", + " 'institutions, and on the renovation and '\n", + " 'upgrading of sports facilities. '\n", + " 'Education, Including the Purchasing of '\n", + " 'Press Products for Schools\\n'\n", + " 'Supports the entire education sector, '\n", + " 'from nursery to university, with a '\n", + " 'particular focus on projects aimed at '\n", + " 'quality and social and cultural '\n", + " 'inclusion. Food Safety and Quality '\n", + " 'Agriculture\\n'\n", + " 'Works mainly on the enhancement and '\n", + " 'diffusion of local quality products.'},\n", + " 'position': {'address': \"Fondazione Cassa Di Risparmio Di Forli', Corso \"\n", + " 'Giuseppe Garibaldi, 45, 47121 Forlì, Province of '\n", + " 'Forlì-Cesena, Italy',\n", + " 'city': 'Forlì',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.2224899,\n", + " 'lng': 12.0386656,\n", + " 'name': \"Fondazione Cassa Di Risparmio Di Forli'\",\n", + " 'place_id': 'ChIJfXwK449XKxMRnPyEXec470Y',\n", + " 'post_code': '47121',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'FC',\n", + " 'street_name': 'Corso Giuseppe Garibaldi',\n", + " 'street_number': '45',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariforli.it'},\n", + " {'address': 'Fondazione Cariplo Via Manin, 23 20121 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteriagenerale@fondazionecariplo.it',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5179,\n", + " 'link': 'https://philea.eu/members/fondazione-cariplo/',\n", + " 'name': 'Fondazione Cariplo',\n", + " 'philea_info': {'About': 'Fondazione Cariplo picked up where its '\n", + " 'predecessor, Cassa di Risparmio delle Provincie '\n", + " 'Lombarde (Savings Bank of the Lombard Provinces), '\n", + " 'left off. Since its establishment in Milan on June '\n", + " '12, 1823, Cassa di Risparmio delle Provincie '\n", + " 'Lombarde fostered the growth of the local economy, '\n", + " 'culture and civil society, conducting its '\n", + " 'activities in accordance with the principles of '\n", + " 'self-organisation and subsidiarity. Officially, '\n", + " 'Fondazione Cariplo was set up in December 1991 as '\n", + " 'part of the reorganisation process resulting from '\n", + " 'the implementation of the Amato-Carli Act for the '\n", + " 'rationalisation and privatisation of Italian '\n", + " 'banks.',\n", + " 'Geographic Focus': 'The region of Lombardy in Italy and '\n", + " 'Africa',\n", + " 'Mission': 'To be a resource that helps social and civil '\n", + " 'organisations better serve their own community.',\n", + " 'Programme Areas': 'To better respond to its users’ needs, '\n", + " 'the Foundation designed its organization '\n", + " 'around four main areas of activity, each '\n", + " 'one with dedicated staff. These four '\n", + " 'areas are: – Environment,\\n'\n", + " '– Arts and Culture,\\n'\n", + " '– Scientific Research and Technology '\n", + " 'Transfer,\\n'\n", + " '– Social Services Environment:\\n'\n", + " 'In this area, the Foundation focuses on '\n", + " 'promoting environmentally-conscious '\n", + " 'lifestyles and behaviors, rather than '\n", + " 'tackling environmental emergencies. The '\n", + " 'Foundation supports cultural innovation '\n", + " 'and the spreading of environmental '\n", + " 'awareness by triggering virtuous circles '\n", + " 'in which information, education, '\n", + " 'awareness and action are mutually '\n", + " 'reinforcing. In so doing it engages '\n", + " 'individuals, institutions, businesses, '\n", + " 'associations, the scientific community '\n", + " 'as well as local communities. Arts and '\n", + " 'Culture:\\n'\n", + " 'The Foundation’s focus in this program '\n", + " 'area is on Italy’s heritage, i.e. our '\n", + " 'archeological, artistic, architectural '\n", + " 'and environmental assets, libraries, '\n", + " 'historical archives and museums as well '\n", + " 'as performing arts and other arts & '\n", + " 'culture events. In the performing arts '\n", + " 'sphere, the Foundation works to increase '\n", + " 'opportunities for artistic expression '\n", + " 'and broaden public participation, '\n", + " 'especially among those who are less '\n", + " 'privileged. Scientific Research and '\n", + " 'Technology Transfer:\\n'\n", + " 'Fondazione Cariplo is keen to contribute '\n", + " 'to a breeding ground for scientific '\n", + " 'research, technology transfer and '\n", + " 'advancement of applied research '\n", + " 'findings. It does so by backing '\n", + " 'initiatives that promote the formation '\n", + " 'of networks and partnerships, '\n", + " 'participation in international projects, '\n", + " 'human capital growth, enhanced '\n", + " 'scientific output as well as improved '\n", + " 'scientific communication and '\n", + " 'dissemination of research outcomes. '\n", + " 'Social Services:\\n'\n", + " 'In this area, Fondazione Cariplo focuses '\n", + " 'on seeing to emerging needs that have '\n", + " 'not yet come to the public attention, '\n", + " 'finding fresh approaches to deep-seated '\n", + " 'needs, responding to needs that are left '\n", + " 'unattended, promoting excellence and '\n", + " 'innovation, catering for those who at '\n", + " 'risk of falling through the cracks and '\n", + " 'facilitating the circulation of '\n", + " 'knowledge and information about access '\n", + " 'to and quality of services.'},\n", + " 'position': {'address': 'Fondazione Cariplo, Via Manin, 23, 20121 Milan, '\n", + " 'Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.4752242,\n", + " 'lng': 9.196740799999999,\n", + " 'name': 'Cariplo Foundation',\n", + " 'place_id': 'ChIJX0YXuLfGhkcRcPD5VaJbfcU',\n", + " 'post_code': '20121',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Daniele Manin',\n", + " 'street_number': '23',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionecariplo.it'},\n", + " {'address': 'Fondazione Bracco Via Cino del Duca, 8 20122 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionebracco.com',\n", + " 'geo_locations': {'Asia & Pacific': ['China'],\n", + " 'Europe (Southern / Mediterranean)': ['Italy'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Latin America & Caribbean': ['Brazil']},\n", + " 'id': 5178,\n", + " 'link': 'https://philea.eu/members/fondazione-bracco/',\n", + " 'name': 'Fondazione Bracco',\n", + " 'philea_info': {'About': 'The Bracco Foundation is proud to have its roots '\n", + " 'embedded in the wealth of values firmly upheld by '\n", + " 'the Bracco family and Bracco Group for over 85 '\n", + " 'years, the primary value being that of corporate '\n", + " 'social responsibility.',\n", + " 'Geographic Focus': 'Mainly Italy but also Europe, China, '\n", + " 'Brazil and USA',\n", + " 'Mission': 'The core mission of the Foundation is to create, '\n", + " 'promote and propagate expressions of culture, '\n", + " 'art and science, as a way to improve quality of '\n", + " 'life and social cohesion.',\n", + " 'Programme Areas': 'The Foundation enhances Italy’s '\n", + " 'cultural, historical and artistic '\n", + " 'heritage at national and global levels. '\n", + " 'It also stimulates environmental '\n", + " 'awareness, promotes scientific research, '\n", + " 'safeguards health, supports education '\n", + " 'and professional training for young '\n", + " 'people and develops welfare and '\n", + " 'solidarity initiatives in order to '\n", + " 'contribute to collective well-being. The '\n", + " 'Foundation develops and implements '\n", + " 'projects, also internationally, within '\n", + " 'the three macro areas “art and culture”, '\n", + " '“science and culture”, “society and the '\n", + " 'social aspect”, with an emphasis on '\n", + " 'research and innovation. Particular '\n", + " 'attention is paid to the role of women '\n", + " 'and the young in the various aspects of '\n", + " 'life. A multidisciplinary approach and '\n", + " 'integration between various forms of '\n", + " 'knowledge are important qualitative '\n", + " 'criteria in both the planning and '\n", + " 'selection of activities.'},\n", + " 'position': {'address': 'Fondazione Bracco, Via Cino del Duca, 8, 20122 '\n", + " 'Milan, Metropolitan City of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.466449,\n", + " 'lng': 9.2003988,\n", + " 'name': 'Fondazione Bracco',\n", + " 'place_id': 'ChIJrxCtUeXHhkcRdnjMaroUQWk',\n", + " 'post_code': '20122',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Via Cino del Duca',\n", + " 'street_number': '8',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionebracco.com'},\n", + " {'address': 'Fondazione Banca del Monte di Lucca Piazza San Martino, 4 55100 '\n", + " 'Lucca Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'segreteria@fondazionebmlucca.it',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Italy']},\n", + " 'id': 5177,\n", + " 'link': 'https://philea.eu/members/fondazione-banca-del-monte-di-lucca/',\n", + " 'name': 'Fondazione Banca del Monte di Lucca',\n", + " 'philea_info': {'About': 'Fondazione Banca del Monte di Lucca is a banking '\n", + " 'foundation, regulated by Law and by the Statute. '\n", + " 'It’s the continuation of Banca del Monte di Lucca, '\n", + " 'Monte di Credito su Pegno (Pledge Bank established '\n", + " 'by the Government of the Lucchese Republic on 25 '\n", + " 'May 1489).',\n", + " 'Geographic Focus': 'Province of Lucca, Italy',\n", + " 'Mission': 'The Foundation mission is focused on social '\n", + " 'issues, welfare, cultural heritage, art, '\n", + " 'culture, education, and sustainable local '\n", + " 'development, mainly in the province of Lucca.',\n", + " 'Programme Areas': 'The foundation focuses on the following '\n", + " 'areas:\\n'\n", + " '– Art and cultural heritage\\n'\n", + " '– Philanthropy and Social Issues\\n'\n", + " '– Education and training\\n'\n", + " '– Local Development'},\n", + " 'position': {'address': 'BANCA DEL MONTE DI LUCCA SEDE DI LUCCA, Piazza San '\n", + " 'Martino, 4, 55100 Lucca, Province of Lucca, Italy',\n", + " 'city': 'Lucca',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.8406001,\n", + " 'lng': 10.5052227,\n", + " 'name': 'BANCA DEL MONTE DI LUCCA SEDE DI LUCCA',\n", + " 'place_id': 'ChIJYdhq7YqD1RIRPoBMM-B5LYs',\n", + " 'post_code': '55100',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'LU',\n", + " 'street_name': 'Piazza San Martino',\n", + " 'street_name_short': 'Piazza S. Martino',\n", + " 'street_number': '4',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazionebmlucca.it'},\n", + " {'address': 'Corso Vittorio Emanuele II, 75 - 10128 TORINO',\n", + " 'country': 'Italy',\n", + " 'email': 'info@fondazione1563.it',\n", + " 'geo_locations': {},\n", + " 'id': 5175,\n", + " 'link': 'https://philea.eu/members/fondazione-1563-per-larte-e-la-cultura-della-compagnia-di-san-paolo/',\n", + " 'name': '1563 Foundation for Art and Culture',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Via Passo Buole, 175, 10135 Torino TO, Italy',\n", + " 'city': 'Torino',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.02806036236005,\n", + " 'lng': 7.642274377783158,\n", + " 'place_id': 'ChIJ8wTPnSATiEcRaipJq8UkwwM',\n", + " 'post_code': '10135',\n", + " 'state': 'Piemonte',\n", + " 'state_short': 'TO',\n", + " 'street_name': 'Via Passo Buole',\n", + " 'street_number': '175',\n", + " 'zoom': 16},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondazione1563.it'},\n", + " {'address': 'Fondation Lombard Odier 11, rue de la Corraterie 1204 Geneva '\n", + " 'Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'contact@fondationlombardodier.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['Switzerland']},\n", + " 'id': 5170,\n", + " 'link': 'https://philea.eu/members/fondation-lombard-odier/',\n", + " 'name': 'Fondation Lombard Odier',\n", + " 'philea_info': {'About': 'Fondation Lombard Odier is Lombard Odier Group’s '\n", + " 'corporate foundation.',\n", + " 'Geographic Focus': 'Mainly Switzerland, but also overseas',\n", + " 'Mission': 'The Foundation funds innovative solutions to '\n", + " 'address the most pressing challenges in the '\n", + " 'humanitarian and environmental sectors. Our '\n", + " 'objective is to work with quality partners and '\n", + " 'offer global support that goes beyond simply the '\n", + " 'financial.',\n", + " 'Programme Areas': 'The foundation supports projects in the '\n", + " 'following areas: humanitarian work\\n'\n", + " 'the environment\\n'\n", + " 'the communities where the Group is '\n", + " 'present'},\n", + " 'position': {'address': 'Lombard Odier, Rue de la Corraterie 11, 1204 '\n", + " 'Geneva, Switzerland',\n", + " 'city': 'Genève',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.20300879999999,\n", + " 'lng': 6.144163300000001,\n", + " 'name': 'Lombard Odier',\n", + " 'place_id': 'ChIJd5-6gilljEcRVp3cHm2TLKI',\n", + " 'post_code': '1204',\n", + " 'state': 'Genève',\n", + " 'state_short': 'GE',\n", + " 'street_name': 'Rue de la Corraterie',\n", + " 'street_number': '11',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Humanitarian & Disaster Relief'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.lombardodier.com/home/private-clients/philanthropy/fondation-lombard-odier.html'},\n", + " {'address': 'Fondation de Luxembourg 12 Rue Erasme 1468 Luxembourg Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'email': 'secr@fdlux.lu',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Luxembourg'],\n", + " 'Worldwide': ['Worldwide']},\n", + " 'id': 5167,\n", + " 'link': 'https://philea.eu/members/fondation-de-luxembourg/',\n", + " 'name': 'Fondation de Luxembourg',\n", + " 'philea_info': {'About': 'Fondation de Luxembourg was created in December '\n", + " '2008 by the Luxembourg State and the Oeuvre '\n", + " 'Nationale de Secours Grande-Duchesse Charlotte. '\n", + " 'The structure was set up to meet the growing need '\n", + " 'for a centre of expertise in philanthropy and to '\n", + " 'encourage and facilitate philanthropic commitments '\n", + " 'made by private individuals and businesses.',\n", + " 'Geographic Focus': 'Luxembourg, Europe, Worldwide',\n", + " 'Mission': 'To promote the private philanthropic commitment, '\n", + " 'to encourage, support and guide donors who wish '\n", + " 'to make a long term commitment to the '\n", + " 'development of significant philanthropic '\n", + " 'projects, to provide personalised accompaniment '\n", + " 'for structured philanthropic investment projects '\n", + " 'in a simplified framework and with the assurance '\n", + " 'of countinuous follow up.',\n", + " 'Programme Areas': 'The foundation operates the following '\n", + " 'areas: • Research and Health\\n'\n", + " '• Poverty and Social Inclusion\\n'\n", + " '• Arts and Culture\\n'\n", + " '• Education\\n'\n", + " '• Biodiversity and climate changes'},\n", + " 'position': {'address': 'Fondation de Luxembourg Fondation, 12 Rue Erasme, '\n", + " '1468 Luxembourg, Luxembourg',\n", + " 'city': 'Luxembourg',\n", + " 'country': 'Luxembourg',\n", + " 'country_short': 'LU',\n", + " 'lat': 49.6244038,\n", + " 'lng': 6.149720599999999,\n", + " 'name': 'Fondation de Luxembourg Fondation',\n", + " 'place_id': 'ChIJ3ZFrujhPlUcRLoJlWNJ3pdM',\n", + " 'post_code': '1468',\n", + " 'state': 'District de Luxembourg',\n", + " 'street_name': 'Rue Erasme',\n", + " 'street_number': '12',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fdlux.lu'},\n", + " {'address': 'Fondation de France 40, Avenue Hoche 75008 Paris France',\n", + " 'country': 'France',\n", + " 'email': 'fondation@fdf.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'France'],\n", + " 'Global South / Majority World': ['Developing Countries']},\n", + " 'id': 5165,\n", + " 'link': 'https://philea.eu/members/fondation-de-france/',\n", + " 'name': 'Fondation de France',\n", + " 'philea_info': {'About': 'Fondation de France was established as a private '\n", + " 'foundation, on the initiative of General de Gaulle '\n", + " 'and André Malraux, to help private donors- '\n", + " 'individuals and companies- to carry out '\n", + " 'philanthropic activities in any field of general '\n", + " 'interest. In particular, Fondation de France '\n", + " 'enables donors to create their own foundation '\n", + " 'under its umbrella, offering different services '\n", + " 'from management to advices on philanthropic '\n", + " 'priorities. In 2015, Fondation de France hosted '\n", + " '808 donor advised funds and dedicated about 150 '\n", + " 'million euros to social activities. Fondation the '\n", + " 'France is the French partner of Transnational '\n", + " 'giving Europe.',\n", + " 'Geographic Focus': 'France, Europe and developing countries',\n", + " 'Mission': 'Fondation de France is ‘the foundation of all '\n", + " 'causes’, Its mission consists in supporting all '\n", + " 'the fields of general interest, and helping any '\n", + " 'private donor to carry out philanthropic '\n", + " 'activity in any of those fields.',\n", + " 'Programme Areas': 'The foundation develops programmes in 4 '\n", + " 'main fields of activities: Helping '\n", + " 'vulnerable individuals\\n'\n", + " 'Pledges to help people grappling with '\n", + " 'sickness, economic difficulties, '\n", + " 'advanced age and unemployment meet basic '\n", + " 'needs, such as housing, healthcare and '\n", + " 'work. The foundation also endeavours to '\n", + " 'help them remain active members of their '\n", + " 'communities, sharing their interests, '\n", + " 'feelings and projects. Developing '\n", + " 'knowledge\\n'\n", + " 'Promotes scientific and medical '\n", + " 'research, culture, education and '\n", + " 'training, at a time when many young '\n", + " 'people face a dim job outlook, when '\n", + " 'progress in research is a vital issue '\n", + " 'for humanity, and culture is needed to '\n", + " 'forge a collective identity. Acting for '\n", + " 'the environment\\n'\n", + " 'Encourages people to live in greater '\n", + " 'harmony with their surroundings, mindful '\n", + " 'of the environmental crisis caused by '\n", + " 'increased human activity. Favouring a '\n", + " 'citizen-based approach, the foundation '\n", + " 'supports group endeavours, scientific '\n", + " 'research and educational projects in '\n", + " 'France and abroad. Developing '\n", + " 'philanthropy\\n'\n", + " 'Founded to encourage the development of '\n", + " 'philanthropy, the foundation is mainly '\n", + " 'known for housing and managing funds and '\n", + " 'foundations, and collecting resources to '\n", + " 'support social innovation. However, to '\n", + " 'develop philanthropy, foundations must '\n", + " 'be promoted and defended to help them '\n", + " 'grow, become more professional, and '\n", + " 'extend their activities abroad. This is '\n", + " 'the mandate of Fondation de France.'},\n", + " 'position': {'address': 'Fondation de France, 40 Avenue Hoche, 75008 Paris, '\n", + " 'France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8755259,\n", + " 'lng': 2.298763799999999,\n", + " 'name': 'Fondation de France',\n", + " 'place_id': 'ChIJ11j25Opv5kcRzrMBr1Vw3Ds',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Hoche',\n", + " 'street_name_short': 'Av. Hoche',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationdefrance.org'},\n", + " {'address': 'Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens',\n", + " 'country': 'Switzerland',\n", + " 'email': 'contact.paris@fph.ch',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5164,\n", + " 'link': 'https://philea.eu/members/fondation-charles-leopold-mayer-pour-le-progres-de-lhomme/',\n", + " 'name': 'Fondation Charles Léopold Mayer pour le progrès humain',\n", + " 'philea_info': {'About': 'The founder, Charles Léopold Mayer, was a '\n", + " 'philanthropist and financier. He believed in the '\n", + " 'progress of humankind and used his whole fortune '\n", + " 'to create the foundation and a science award in '\n", + " 'the French Science Academy. This legacy led to the '\n", + " 'establishment in 1982 of the foundation. In 1996, '\n", + " 'as a tribute to its founder, the foundation was '\n", + " 'renamed the Charles Léopold Mayer Foundation for '\n", + " 'the Progress of Humankind.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'To finance, by granting awards or loans, '\n", + " 'research and other activities that contribute in '\n", + " 'a significant and innovative way to the progress '\n", + " 'of humankind through science and social '\n", + " 'development.',\n", + " 'Programme Areas': 'The foundation is committed to '\n", + " 'contributing to long-term societal '\n", + " 'changes. It supports and underpins the '\n", + " 'emergence of a global community in terms '\n", + " 'of:\\n'\n", + " '• Governance\\n'\n", + " '• Ethics\\n'\n", + " '• Alternative development models '\n", + " 'Governance\\n'\n", + " 'Promotes and supports the development of '\n", + " 'new social, political, and institutional '\n", + " 'regulations at local and global levels '\n", + " 'to ensure social cohesion, justice, '\n", + " 'peace, diversity, and individual '\n", + " 'development. Ethics\\n'\n", + " 'Building a viable world society assumes '\n", + " 'an agreement on common ethical '\n", + " 'principles. The foundation seeks to '\n", + " 'present and implement proposals for the '\n", + " 'establishment of a common ethical '\n", + " 'foundation, namely the Charter of Human '\n", + " 'Responsibilities. Alternative '\n", + " 'Development Models\\n'\n", + " 'Promotes new development, economic, '\n", + " 'scientific, and technological models '\n", + " 'tailored to meet the lifestyle, consumer '\n", + " 'and production needs of a global '\n", + " 'community. In 2012-2013, the foundation '\n", + " 'went through a substantial evaluation of '\n", + " 'its strategy and programmes since 2003.\\n'\n", + " '• Ecological Transition\\n'\n", + " '• Governance & Regional cooperations\\n'\n", + " '• Responsibility/Ethics\\n'\n", + " '• Tools/Methods/Information'},\n", + " 'position': {'address': 'Vortex, Route de Praz-Véguey 29, 1022 '\n", + " 'Chavannes-près-Renens',\n", + " 'city': 'Chavannes-près-Renens',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 46.52449619999999,\n", + " 'lng': 6.575196999999999,\n", + " 'place_id': 'ChIJ7cI3BSUxjEcRi4sMQykHFvk',\n", + " 'post_code': '1022',\n", + " 'state': 'Vaud',\n", + " 'state_short': 'VD',\n", + " 'street_name': 'Route de Praz Véguey',\n", + " 'street_name_short': 'Rte de Praz Véguey',\n", + " 'street_number': '29',\n", + " 'zoom': 12},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fph.ch'},\n", + " {'address': 'Fondation d’entreprise Chanel 135 Av. Charles de Gaulle 92200 '\n", + " 'Neuilly-sur-Seine France',\n", + " 'country': 'France',\n", + " 'email': 'info@fondationchanel.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['China', 'India', 'Thailand'],\n", + " 'Europe (Western / General)': ['France'],\n", + " 'Worldwide': ['Global']},\n", + " 'id': 5163,\n", + " 'link': 'https://philea.eu/members/fondation-chanel/',\n", + " 'name': 'Fondation Chanel',\n", + " 'philea_info': {'About': 'The establishment in France of Fondation Chanel '\n", + " 'positioned the issue of women’s empowerment at the '\n", + " 'heart of CHANEL’s corporate giving and commitment '\n", + " 'in the non-profit sector. The Foundation bases its '\n", + " 'actions on two complementary approaches:\\n'\n", + " '-financial philanthropy and guidance for '\n", + " 'non-profit projects promoting the economic '\n", + " 'independence and social well-being of girls and '\n", + " 'women.\\n'\n", + " '-direct technical assistance and the transfer of '\n", + " 'know-how mobilizing CHANEL employees within their '\n", + " 'various areas of expertise.\\n'\n", + " 'The Foundation is 100% funded by the company '\n", + " 'CHANEL',\n", + " 'Geographic Focus': 'Global, China, Thailand, India, Brasil, '\n", + " 'Colombie, Africa, France',\n", + " 'Mission': 'Fondation Chanel supports and accompanies '\n", + " 'projects improving the living standards and '\n", + " 'economic independence of women and their '\n", + " 'communities. It also plays a role in promoting '\n", + " 'women in the arts and culture.',\n", + " 'Programme Areas': 'Promoting the access of girls and women '\n", + " 'to:\\n'\n", + " '– economic resources and '\n", + " 'entrepreneurship,\\n'\n", + " '– education and training,\\n'\n", + " '– leadership and decision making,\\n'\n", + " '– health and social protection\\n'\n", + " '– sports and culture Supporting social '\n", + " 'and economic integration\\n'\n", + " 'Encouraging the role of women in the '\n", + " 'arts and culture'},\n", + " 'position': {'address': 'CHANEL, 135 Av. Charles de Gaulle, 92200 '\n", + " 'Neuilly-sur-Seine, France',\n", + " 'city': 'Neuilly-sur-Seine',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8832639,\n", + " 'lng': 2.266366699999999,\n", + " 'name': 'CHANEL',\n", + " 'place_id': 'ChIJr2D0GABl5kcRPWZ1Aww1YVM',\n", + " 'post_code': '92200',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Charles de Gaulle',\n", + " 'street_name_short': 'Av. Charles de Gaulle',\n", + " 'street_number': '135',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationchanel.org/'},\n", + " {'address': 'Fondation Botnar St. Alban-Vorstadt 56 4052 Basel Switzerland',\n", + " 'country': 'Switzerland',\n", + " 'email': 'info@fondationbotnar.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Ghana', 'Tanzania'],\n", + " 'Asia & Pacific': ['Indonesia', 'Vietnam'],\n", + " 'Europe (Central & Eastern / Balkans)': ['Romania'],\n", + " 'Europe (Western / General)': ['Switzerland'],\n", + " 'Latin America & Caribbean': ['Colombia', 'Ecuador'],\n", + " 'Middle East & North Africa (MENA)': ['Israel']},\n", + " 'id': 5162,\n", + " 'link': 'https://philea.eu/members/fondation-botnar/',\n", + " 'name': 'Fondation Botnar',\n", + " 'philea_info': {'About': 'Fondation Botnar is a philanthropic foundation '\n", + " 'founded to continue the philanthropic work of the '\n", + " 'Botnar family.',\n", + " 'Geographic Focus': 'Colombia, Ecuador, Ghana, Indonesia, '\n", + " 'Israel, Occupied Palestinian '\n", + " 'Territories (OPT), Romania, Senegal, '\n", + " 'Switzerland, Tanzania, Vietnam.',\n", + " 'Mission': 'Fondation Botnar is dedicated to the wellbeing '\n", + " 'of young people who live, learn, work, connect '\n", + " 'and play in urban and digital spaces around the '\n", + " 'world. Enabling the meaningful participation of '\n", + " 'young people, the foundation invests in and '\n", + " 'supports innovative initiatives and research, '\n", + " 'bringing together actors from across sectors to '\n", + " 'create purposeful dialogue and partnerships.',\n", + " 'Programme Areas': 'Fondation Botnar’s mission is to ensure '\n", + " 'that young people live, work, connect, '\n", + " 'and play in inclusive societies that '\n", + " 'fulfil their rights and enable them to '\n", + " 'shape decisions and drive '\n", + " 'accountability. To this end, Fondation '\n", + " 'Botnar focuses on four interrelated '\n", + " 'thematic areas: Enabling liveable and '\n", + " 'sustainable city systems.\\n'\n", + " 'Enabling a human rights-based digital '\n", + " 'transformation.\\n'\n", + " 'Promoting mental health.\\n'\n", + " 'Strengthening quality public education.'},\n", + " 'position': {'address': 'Fondation Botnar, St. Alban-Vorstadt 56, 4052 '\n", + " 'Basel, Switzerland',\n", + " 'city': 'Basel',\n", + " 'country': 'Switzerland',\n", + " 'country_short': 'CH',\n", + " 'lat': 47.554306,\n", + " 'lng': 7.598050300000001,\n", + " 'name': 'Fondation Botnar',\n", + " 'place_id': 'ChIJda_IuLK5kUcR0zvp3Ql0EXU',\n", + " 'post_code': '4052',\n", + " 'state': 'Basel-Stadt',\n", + " 'state_short': 'BS',\n", + " 'street_name': 'Sankt Alban-Vorstadt',\n", + " 'street_name_short': 'St. Alban-Vorstadt',\n", + " 'street_number': '56',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.fondationbotnar.org/home'},\n", + " {'address': 'Suomen Kulttuurirahasto P.O. Box 203, Bulevardi 5 A 13 00121 '\n", + " 'Helsinki Finland',\n", + " 'country': 'Finland',\n", + " 'email': 'yleisinfo@skr.fi',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Finland'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5160,\n", + " 'link': 'https://philea.eu/members/finnish-cultural-foundation/',\n", + " 'name': 'Finnish Cultural Foundation',\n", + " 'philea_info': {'About': 'Suomen Kulttuurirahasto was established in 1939, '\n", + " 'and since then more than 800,000 donors have '\n", + " 'contributed to the capital of the foundation. The '\n", + " 'foundation consists of the Central Fund, '\n", + " 'established in 1939, and the 17 Regional Funds, '\n", + " 'set up in the 1950s and 1960s. Together they form '\n", + " 'an umbrella organisation of over 700 separate '\n", + " 'funds, each carrying the name of their donors and '\n", + " 'promoting the areas stipulated by them.',\n", + " 'Geographic Focus': 'Finland and international',\n", + " 'Mission': 'The purpose of the Finnish Cultural Foundation '\n", + " 'is to “promote and develop cultural and economic '\n", + " 'life” in Finland. In line with this, the '\n", + " 'Foundation provides grants to individuals and '\n", + " 'groups working in the sciences and the arts, and '\n", + " 'to people and organisations in other fields of '\n", + " 'intellectual and cultural endeavour.',\n", + " 'Programme Areas': 'The foundation provides grants to '\n", + " 'individuals and groups working in the '\n", + " 'sciences and the arts, and to people and '\n", + " 'organisations in other fields of '\n", + " 'intellectual and cultural endeavour. The '\n", + " 'Foundation also supports larger projects '\n", + " 'through substantial grants. In addition '\n", + " 'to providing grants, the Foundation also '\n", + " 'arranges courses, lectures, and other '\n", + " 'events in the arts, sciences, and other '\n", + " 'fields, and maintains an art collection. '\n", + " 'The Foundation’s most important '\n", + " 'international event is the Mirjam Helin '\n", + " 'International Singing Competition, which '\n", + " 'is held every five years. While the '\n", + " 'Central Fund operates nationally, the '\n", + " 'Foundation’s 17 regional funds '\n", + " 'concentrate on promoting and developing '\n", + " 'the arts, the sciences, and other fields '\n", + " 'of endeavour at the regional level '\n", + " 'through annual grants and awards.'},\n", + " 'position': {'address': 'Bulevardi 5a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1651316,\n", + " 'lng': 24.9387852,\n", + " 'name': 'Bulevardi 5a',\n", + " 'place_id': 'ChIJc721yssLkkYRnTqnktrxEhc',\n", + " 'post_code': '00120',\n", + " 'street_name': 'Bulevardi',\n", + " 'street_number': '5a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.skr.fi'},\n", + " {'address': 'Evens Foundation Stoopstraat 1 5th floor B-2000 Antwerp Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'antwerp@evensfoundation.be',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Poland'],\n", + " 'Europe (Western / General)': ['Belgium', 'France']},\n", + " 'id': 5158,\n", + " 'link': 'https://philea.eu/members/evens-foundation/',\n", + " 'name': 'Evens Foundation',\n", + " 'philea_info': {'About': 'The Evens Foundation is a public-benefit '\n", + " 'foundation started as a family endeavour in 1990. '\n", + " 'Its founders, Irène Evens-Radzyminska and Georges '\n", + " 'Evens, established it because of their commitment '\n", + " 'to the European project. Born in Poland, they '\n", + " 'witnessed the troubled history of the Second World '\n", + " 'War that tore the continent apart. Forced to leave '\n", + " 'their country of birth, they found a new home in '\n", + " 'Belgium. Corinne Evens, daughter of the founders, '\n", + " 'is the Honorary President of the Foundation.',\n", + " 'Geographic Focus': 'EU countries, Belgium, France and '\n", + " 'Poland',\n", + " 'Mission': 'The Evens Foundation aims to contribute to '\n", + " 'rethinking and building a European reality '\n", + " 'committed to the values of diversity, freedom, '\n", + " 'responsibility and solidarity. The Foundation '\n", + " 'identifies and supports innovative ideas and '\n", + " 'achievements through prizes and calls, initiates '\n", + " 'experimental projects bridging the gap between '\n", + " 'research and practice, and facilitates knowledge '\n", + " 'exchange through lectures, seminars, debates and '\n", + " 'publications.',\n", + " 'Programme Areas': 'As an operative foundation, the Evens '\n", + " 'Foundation initiates and runs projects '\n", + " 'together with its partners. Since the '\n", + " 'foundation’s outset, the Foundation has '\n", + " 'opted to take risks and remained solidly '\n", + " 'committed to experimentation — be it '\n", + " 'through designing their own projects or '\n", + " 'supporting independent pioneering ideas. '\n", + " 'The Evens Foundation mainly focuses on '\n", + " 'the development of pilot projects '\n", + " 'testing scientific hypotheses, '\n", + " 'innovative pedagogies or artistic '\n", + " 'processes.\\n'\n", + " 'For almost thirty years, it has been '\n", + " 'active in key fields of intervention '\n", + " 'such as democracy, education, media, '\n", + " 'arts, and science. For the strategic '\n", + " 'plan 2018-2020, two leading initiatives '\n", + " 'were designed: Common Purpose Through '\n", + " 'Differences, and Norms and Values Within '\n", + " 'the European Reality. These concerns '\n", + " 'unfold several thematic axes, exposing '\n", + " 'the challenges that Europe faces today.\\n'\n", + " 'The Foundation’s biennial prizes '\n", + " 'highlight innovative practices and '\n", + " 'achievements. Over the years, these '\n", + " 'prizes have also helped identify new '\n", + " 'challenges, gain new insights and '\n", + " 'perspectives, and expand the '\n", + " 'Foundation’s network. The Evens '\n", + " 'Foundation currently awards prizes in '\n", + " 'the fields of Arts, Journalism, '\n", + " 'Education and Science.'},\n", + " 'position': {'address': 'Antwerp, Belgium',\n", + " 'city': 'Antwerp',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 51.2213404,\n", + " 'lng': 4.4051485,\n", + " 'name': 'Antwerp',\n", + " 'place_id': 'ChIJfYjDv472w0cRuIqogoRErz4',\n", + " 'state': 'Flanders',\n", + " 'state_short': 'AN',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.evensfoundation.be'},\n", + " {'address': 'European University Institute Via della Badia dei Roccettini 9 '\n", + " '50014 Firenze Italy',\n", + " 'country': 'Italy',\n", + " 'email': 'External.Relations@eui.eu',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe'],\n", + " 'Worldwide': ['World', 'Worldwide']},\n", + " 'id': 5380,\n", + " 'link': 'https://philea.eu/members/european-university-institute/',\n", + " 'name': 'European University Institute',\n", + " 'philea_info': {'About': 'EUI is a Social Sciences and Humanities hub '\n", + " 'connecting academic excellence and research '\n", + " 'capabilities across Europe and to the world of '\n", + " 'policy and practice, for the betterment of '\n", + " 'society.\\n'\n", + " 'Founded in 1972 by the six original members of the '\n", + " 'then European Communities, the EUI has earned a '\n", + " 'reputation as a transnational hub of research and '\n", + " 'higher learning.\\n'\n", + " 'The EUI’s distinctly international environment '\n", + " 'offers unique academic training, enriches the '\n", + " 'intellectual experience and provides exceptional '\n", + " 'opportunities for academics across disciplines and '\n", + " 'borders.',\n", + " 'Geographic Focus': 'Worldwide, with an expertise in '\n", + " 'research related to Europe and the '\n", + " 'world.',\n", + " 'Programme Areas': '‘- Research: PhD in Economics, History '\n", + " 'and Civilisation, Law, and Political and '\n", + " 'Social Sciences.\\n'\n", + " '– Policy making'},\n", + " 'position': {'address': 'European University Institute, Via della Badia dei '\n", + " 'Roccettini, 9, 50014 Fiesole, Metropolitan City of '\n", + " 'Florence, Italy',\n", + " 'city': 'Fiesole',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 43.803079,\n", + " 'lng': 11.282959,\n", + " 'name': 'European University Institute',\n", + " 'place_id': 'ChIJPyVxQANUKhMR1WHvAi0UEf4',\n", + " 'post_code': '50014',\n", + " 'state': 'Toscana',\n", + " 'state_short': 'FI',\n", + " 'street_name': 'Via della Badia dei Roccettini',\n", + " 'street_number': '9',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Sciences & Research'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.eui.eu'},\n", + " {'address': 'European Foundation for Philanthropy and Society Development '\n", + " 'Dedici 83 10000 Zagreb Croatia',\n", + " 'country': 'Croatia',\n", + " 'email': 'info@europskazaklada-filantropija.hr',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Croatia'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5151,\n", + " 'link': 'https://philea.eu/members/european-foundation-for-philanthropy-and-society-development/',\n", + " 'name': 'European Foundation for Philanthropy and Society Development',\n", + " 'philea_info': {'About': 'European Foundation for Philanthropy and Society '\n", + " 'Development (hereafter: European Foundation) is '\n", + " 'established in order to develop philanthropy by '\n", + " 'providing expert and financial support to '\n", + " 'philanthropists, foundations and socially '\n", + " 'responsible legal entities through high-quality '\n", + " 'innovative operation models on national and '\n", + " 'European level.',\n", + " 'Geographic Focus': 'Croatia, South-Eastern Europe, '\n", + " 'Euro-Mediterranean',\n", + " 'Mission': 'Mission of the European Foundation is to become '\n", + " 'an institutionalized European and international '\n", + " 'excellence center for the development of '\n", + " 'individual philanthropy and foundations and the '\n", + " 'resource center for the provision of any '\n", + " 'information and expert documentation on '\n", + " 'philanthropy, social innovations and society '\n", + " 'development, as well as the focal location for '\n", + " 'public discussion about issues and directions of '\n", + " 'society development based on philanthropy, '\n", + " 'public innovations and responsible governance',\n", + " 'Programme Areas': 'The main activities are focused on:\\n'\n", + " '-Promotion and public advocacy of '\n", + " 'philanthropy and foundations;\\n'\n", + " '-Informing and providing support to '\n", + " 'interested individuals with regard to '\n", + " 'the development of individual '\n", + " 'philanthropy and foundations;\\n'\n", + " '-Education and training programmes for '\n", + " 'the representatives of foundations from '\n", + " 'the Republic of Croatia and the '\n", + " 'countries of Southeast Europe which will '\n", + " 'be implemented continuously in '\n", + " 'cooperation with international and '\n", + " 'national partner organisations;\\n'\n", + " '-Financing of joint programs related to '\n", + " 'the development of philanthropy and '\n", + " 'social innovations through EU structural '\n", + " 'funds and other international sources;\\n'\n", + " '-Collection and allocation of financial '\n", + " 'resources through the implementation of '\n", + " 'innovative models of activities for the '\n", + " 'common good, such as online donations on '\n", + " 'the global level and other inclusive '\n", + " 'models focused on the development of '\n", + " 'local communities, in cooperation with '\n", + " 'specialised international organisations '\n", + " 'and charity lotteries;\\n'\n", + " '-Organisation of public discussions on '\n", + " 'the topics of the development of '\n", + " 'philanthropy, social innovations and '\n", + " 'social development;\\n'\n", + " '-Specialised and interdisciplinary '\n", + " 'research;\\n'\n", + " '-Technical assistance and '\n", + " 'consultations;\\n'\n", + " '-Publishing.'},\n", + " 'position': {'address': '10000, Zagreb, Croatia',\n", + " 'city': 'Zagreb',\n", + " 'country': 'Croatia',\n", + " 'country_short': 'HR',\n", + " 'lat': 45.8348464,\n", + " 'lng': 15.970761,\n", + " 'name': '10000',\n", + " 'place_id': 'ChIJCeEflHXXZUcRwlEzNVCtABM',\n", + " 'post_code': '10000',\n", + " 'state': 'City of Zagreb',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.europskazaklada-filantropija.hr'},\n", + " {'address': 'European Cultural Foundation Jan van Goyenkade 5 1075 HN '\n", + " 'Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'ask@culturalfoundation.eu',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe']},\n", + " 'id': 5150,\n", + " 'link': 'https://philea.eu/members/european-cultural-foundation/',\n", + " 'name': 'European Cultural Foundation',\n", + " 'philea_info': {'About': 'Our founders created the European Cultural '\n", + " 'Foundation in 1954 as they envisioned a united '\n", + " 'Europe where citizens feel proudly European, a '\n", + " 'place where they can live, express themselves, '\n", + " 'work and dream freely, in diversity and harmony. '\n", + " 'Ever since the ECF promotes a European sentiment '\n", + " 'through developing and supporting cultural '\n", + " 'initiatives that let us share, experience and '\n", + " 'imagine Europe. We believe our mission is as '\n", + " 'urgent now as it was back then.',\n", + " 'Geographic Focus': 'Europe and neighboring regions',\n", + " 'Mission': 'We have a vision for Europe. A continent where '\n", + " 'all can live, work, dream and express themselves '\n", + " 'freely, in diversity and harmony. Where we share '\n", + " 'a sense of belonging based on solidarity, mutual '\n", + " 'respect between people and with collaborations '\n", + " 'across borders of all kinds. We believe in the '\n", + " 'power of culture to achieve this Europe. Culture '\n", + " 'helps us negotiate ways of living together, '\n", + " 'build and understand our multiple identities and '\n", + " 'make Europe our home. We promote a European '\n", + " 'sentiment through developing and supporting '\n", + " 'cultural initiatives that let us share, '\n", + " 'experience and imagine Europe. Our core values – '\n", + " 'cooperation, diversity and solidarity – are '\n", + " 'reflected in everything we do: providing grants, '\n", + " 'building communities, offering incubator '\n", + " 'programs and online platforms, organizing events '\n", + " 'and challenges, publishing books and advocating '\n", + " 'for culture with policymakers. We have pioneered '\n", + " 'in growing a European sentiment for over 65 '\n", + " 'years, and our mission is as urgent as when we '\n", + " 'first started.',\n", + " 'Programme Areas': 'All our programmes work towards '\n", + " 'understanding Europe as a genuine '\n", + " 'cultural community. An emotional sense '\n", + " 'of belonging to such a community, a true '\n", + " 'European sentiment – as our founders '\n", + " 'called it – is a crucial element for '\n", + " 'growing Europe in a spirit and culture '\n", + " 'of solidarity, across national borders '\n", + " 'and social divides. In our programmes, '\n", + " 'Europeans from many different '\n", + " 'backgrounds get to experience the common '\n", + " 'space and future they share, by '\n", + " 'culturally engaging with fellow '\n", + " 'citizens. Europe is both a cultural idea '\n", + " 'and a political project. Our work '\n", + " 'acknowledges the European Union as a '\n", + " 'historical cornerstone of the European '\n", + " 'unification ideas promoted by our '\n", + " 'founders. However, our programmes extend '\n", + " 'beyond the borders of the current EU '\n", + " 'member states and its institutions. Our '\n", + " 'programmes stimulate Europeans to '\n", + " 'imagine their futures freely and '\n", + " 'creatively and to find new answers to '\n", + " 'joint European and systemic global '\n", + " 'challenges. Storytelling, artistic '\n", + " 'expression and cultural debate are '\n", + " 'essential instruments of our work for '\n", + " 'reflecting on the past, examining the '\n", + " 'presence and envisioning the future of '\n", + " 'Europe as a common public sphere. '\n", + " 'Culture of Solidarity In 2020, we '\n", + " 'offered public stakeholders and '\n", + " 'foundations the opportunity to connect '\n", + " 'local/national action with European '\n", + " 'purpose by inviting them to join the '\n", + " 'Culture of Solidarity Fund. It is a '\n", + " 'matter of scale and impact. This echoes '\n", + " 'the words of our founder – Robert '\n", + " 'Schuman – who famously said, “Europe '\n", + " 'will not be made all at once, or '\n", + " 'according to a single plan. It will be '\n", + " 'built through concrete achievements '\n", + " 'which first create a de facto '\n", + " 'solidarity.” Advocacy Advocacy is a '\n", + " 'means to advance our mission and to '\n", + " 'achieve our programmatic goals. We aim '\n", + " 'at influencing public policy and '\n", + " 'decisions on priorities and resource '\n", + " 'allocations within political and '\n", + " 'philanthropic institutions. Within ECF’s '\n", + " '2020-2025 strategy, advocacy focuses on '\n", + " 'the following: #CulturalDealEU campaign\\n'\n", + " 'Influence EU policy and leverage of '\n", + " 'funding\\n'\n", + " 'Philanthropy with a European purpose\\n'\n", + " 'Amsterdam partnership\\n'\n", + " 'Other Strategic Partnerships'},\n", + " 'position': {'address': 'European Cultural Foundation, Jan van Goyenkade 5, '\n", + " '1075 HN Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3521037,\n", + " 'lng': 4.868836099999999,\n", + " 'name': 'European Cultural Foundation',\n", + " 'place_id': 'ChIJZcifLPwJxkcRUH9OYjp85Hk',\n", + " 'post_code': '1075 HN',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Jan van Goyenkade',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.culturalfoundation.eu'},\n", + " {'address': 'European Climate Foundation Riviervismarkt 5 2513 AM The Hague '\n", + " 'Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@europeanclimate.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'European Union']},\n", + " 'id': 5148,\n", + " 'link': 'https://philea.eu/members/european-climate-foundation/',\n", + " 'name': 'European Climate Foundation',\n", + " 'philea_info': {'About': 'The European Climate Foundation is dedicated to '\n", + " 'developing and implementing well-crafted climate '\n", + " 'and energy policies that greatly reduce Europe’s '\n", + " 'global greenhouse gas emissions. Key elements of a '\n", + " 'sustainable energy future include: (1) a '\n", + " 'substantial increase in energy efficiency, (2) a '\n", + " 'successful transition from conventional to '\n", + " 'renewable energy; (3) maintenance of the earth’s '\n", + " 'ecological systems and the life-supporting '\n", + " 'services they provide; and, (4) equitable '\n", + " 'distribution of energy services to different '\n", + " 'members of the population, both internationally '\n", + " 'and within nations.',\n", + " 'Geographic Focus': 'Europe; European Union',\n", + " 'Mission': 'To promote climate and energy policies that '\n", + " 'greatly reduce Europe’s greenhouse gas emissions '\n", + " 'and help Europe play an even stronger '\n", + " 'international leadership role in mitigating '\n", + " 'climate change.',\n", + " 'Programme Areas': 'The European Climate Foundation has '\n", + " 'identified four priority programmes '\n", + " 'within its strategy: • Energy '\n", + " 'Efficiency\\n'\n", + " '• Low-Carbon Power Generation\\n'\n", + " '• Transportation\\n'\n", + " '• EU Climate Policies and Diplomacy\\n'\n", + " '• Global Climate Policy • Energy '\n", + " 'Efficiency\\n'\n", + " 'The foundation aims to ensure that '\n", + " 'effective energy policies are adopted '\n", + " 'and implemented at the EU and national '\n", + " 'levels by leveraging a network of '\n", + " 'political contacts, grantees and other '\n", + " 'experts in Brussels and Member States. '\n", + " 'Technical and policy advice is targeted '\n", + " 'at the most winnable political '\n", + " 'opportunities such as a) creating the '\n", + " 'regulatory and market framework for '\n", + " 'large-scale energy efficiency '\n", + " 'investments, b) energy-efficiency in '\n", + " 'buildings and c) energy-efficiency in '\n", + " 'products. • Low-Carbon Power Generation\\n'\n", + " 'The Power Programme focuses on policies '\n", + " 'that will fully de-carbonise Europe’s '\n", + " 'power supply by 2050 at the latest. '\n", + " 'These policies include prohibition of '\n", + " 'new unabated coal plant construction, '\n", + " 'support for commercialization of '\n", + " 'carbon-capture-and-storage technology, '\n", + " 'advancing large-scale end-use efficiency '\n", + " 'and accelerating deployment of renewable '\n", + " 'energy. • Transportation\\n'\n", + " 'The ECF’s Transport Programme aims to '\n", + " 'reduce Europe’s vehicle emissions by '\n", + " 'increasing fuel efficiency and '\n", + " 'decreasing the carbon content of fuels. '\n", + " 'Initiatives of the programme focus on:\\n'\n", + " '1. Car emissions standards\\n'\n", + " '2. Different means for reducing the '\n", + " 'carbon footprint of road-freight '\n", + " 'traffic\\n'\n", + " '3. Biofuels/Low-Carbon Fuel Standard • '\n", + " 'EU Climate Policies and Diplomacy\\n'\n", + " 'The EU Climate Policies Programme aims '\n", + " 'to secure pan-European and in-country '\n", + " 'policy frameworks and political '\n", + " 'conditions that ensure European climate '\n", + " 'leadership. The Programme’s activities '\n", + " 'focus on ensuring that the EU commits to '\n", + " 'reducing CO¬¬¬¬¬2 emissions by at least '\n", + " '30% domestically by 2020, and that '\n", + " 'Member States deliver practical policies '\n", + " 'to that effect. In this framework the '\n", + " 'foundation uses targeted grants and '\n", + " 'contributes to the coordination of other '\n", + " 'organisations in order to maximise '\n", + " 'collective influence on European '\n", + " 'policy.'},\n", + " 'position': {'address': 'Stichting European Climate Foundation, '\n", + " 'Riviervismarkt 5, 2513 AM The Hague, Netherlands',\n", + " 'city': 'Den Haag',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0766884,\n", + " 'lng': 4.306905,\n", + " 'name': 'Stichting European Climate Foundation',\n", + " 'place_id': 'ChIJzwwgWTu3xUcRHgynkalZKEY',\n", + " 'post_code': '2513 AM',\n", + " 'state': 'Zuid-Holland',\n", + " 'state_short': 'ZH',\n", + " 'street_name': 'Riviervismarkt',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.europeanclimate.org'},\n", + " {'address': 'Europe Foundation - 3 Kavsadze Street, Tbilisi 0179 Georgia',\n", + " 'country': 'Georgia',\n", + " 'email': 'info@epfound.ge',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Georgia']},\n", + " 'id': 5146,\n", + " 'link': 'https://philea.eu/members/europe-foundation/',\n", + " 'name': 'Europe Foundation',\n", + " 'philea_info': {'About': 'The Europe Foundation (EF) creates positive and '\n", + " 'lasting change through civic engagement. Through '\n", + " 'its programming and grantmaking, the Foundation '\n", + " 'strives to promote civic participation and '\n", + " 'democratic governance in Georgia. It does so by '\n", + " 'strengthening the capacities of civil society '\n", + " 'actors, so that they contribute to more inclusive, '\n", + " 'transparent, and accountable policy making. If '\n", + " 'civil society capacity and sustainability is '\n", + " 'strengthened and viable mechanisms of '\n", + " 'participation are created locally and nationally, '\n", + " 'then citizens will be better able to enjoy their '\n", + " 'human rights and freedoms and hold duty-bearers '\n", + " 'accountable. It is with this rationale in mind '\n", + " 'that the Foundation’s programs equip CSOs and '\n", + " 'civic activists with skills, capacities and '\n", + " 'resources to define and achieve positive outcomes '\n", + " 'for themselves and their communities. EF employs a '\n", + " 'participatory approach, which allows civil society '\n", + " 'actors to determine the issues that are of '\n", + " 'importance to the right-holders and to develop '\n", + " 'interventions that will be effective in addressing '\n", + " 'identified needs – a critical factor in building a '\n", + " 'vibrant democracy. At the same time, EF is mindful '\n", + " 'of rising threats to human rights and fundamental '\n", + " 'freedoms and mobilizes communities and interest '\n", + " 'groups around specific issue areas to create '\n", + " 'demand for good governance and democratic change.',\n", + " 'Geographic Focus': 'Georgia, Eastern Partnership region',\n", + " 'Mission': 'Europe Foundation’s mission is to empower people '\n", + " 'to effect change for social justice and economic '\n", + " 'prosperity through hands-on programs, helping '\n", + " 'them to improve their communities and their own '\n", + " 'lives. EF engages citizens in social, economic, '\n", + " 'and political developments, in order to effect '\n", + " 'substantive and sustainable positive '\n", + " 'socio-economic change at the local, regional, '\n", + " 'and national level through both operational '\n", + " 'programs and grantmaking.',\n", + " 'Programme Areas': 'Europe Foundation conducts operating '\n", + " 'programs and strategic grantmaking. The '\n", + " 'primary difference between the two is '\n", + " 'the locus of responsibility for program '\n", + " 'outputs, and the mechanisms controlling '\n", + " 'financial expenditure. In running '\n", + " 'operating programs, the Foundation '\n", + " 'directly manages project activities and '\n", + " 'takes upon itself ultimate '\n", + " 'responsibility for delivery of outputs '\n", + " 'and project results. Grants allocate '\n", + " 'funding to outside partner organizations '\n", + " 'through a grant agreement, and the '\n", + " 'responsibility for delivery of project '\n", + " 'outputs rests entirely with the grantee. '\n", + " 'Operating programs maintain the '\n", + " 'Foundation’s focus on revitalization of '\n", + " 'the civic sector and strengthening '\n", + " 'linkages between civic groups, private '\n", + " 'sector, public authorities, and '\n", + " 'communities, but they target these areas '\n", + " 'from a different angle than grants '\n", + " 'alone. In addition to the Open Door '\n", + " 'Grantmaking Program, three main areas of '\n", + " 'operating programs are the Civil Society '\n", + " 'and Governance, Institutional and '\n", + " 'Thematic Capacity Development of Civil '\n", + " 'Society Actors, and Youth Empowerment.'},\n", + " 'position': {'address': 'Europe Foundation, 3 Lado Kavsadze Street, Tbilisi, '\n", + " 'Georgia',\n", + " 'city': \"T'bilisi\",\n", + " 'country': 'Georgia',\n", + " 'country_short': 'GE',\n", + " 'lat': 41.7097949,\n", + " 'lng': 44.76136189999999,\n", + " 'name': 'Europe Foundation',\n", + " 'place_id': 'ChIJM27xrTZzREARCNWG_0EXO5M',\n", + " 'state': 'Tbilisi',\n", + " 'street_name': 'Lado Kavsadze Street',\n", + " 'street_name_short': 'Lado Kavsadze St',\n", + " 'street_number': '3',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.epfound.ge'},\n", + " {'address': 'Rue de la Charité 22, 1210 Brussels',\n", + " 'country': 'Belgium',\n", + " 'email': 'info@eurochild.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe']},\n", + " 'id': 5145,\n", + " 'link': 'https://philea.eu/members/eurochild/',\n", + " 'name': 'Eurochild',\n", + " 'philea_info': {'About': 'Currently, Eurochild has 190 members, of which 142 '\n", + " 'are full members, 44 associate members and 4 '\n", + " 'honorary members in 37 countries. 23 national '\n", + " 'networks of children’s rights organisations have '\n", + " 'been appointed as National Partner Networks '\n", + " '(NPNs).',\n", + " 'Geographic Focus': 'Europe',\n", + " 'Mission': 'Eurochild is a network of organisations and '\n", + " 'individuals working in and across Europe to '\n", + " 'promote the rights and well-being of children '\n", + " 'and young people. The vision is of a society '\n", + " 'where children and young people grow up happy, '\n", + " 'healthy and confident and respected as '\n", + " 'individuals in their own right. The mission is '\n", + " 'to promote the rights and well-being of children '\n", + " 'in policy and practice through advocacy, '\n", + " 'membership exchange and research.\\n'\n", + " 'Our work is underpinned by the United Nations '\n", + " 'Convention on the Rights of the Child (UNCRC). '\n", + " 'An international human rights treaty that grants '\n", + " 'all children and young people a comprehensive '\n", + " 'set of rights. The network is co-funded by the '\n", + " 'European Union’s programme for Employment and '\n", + " 'Social Innovation (EaSI).',\n", + " 'Programme Areas': 'Social Inclusion and social protection '\n", + " '(child poverty and social exclusion)\\n'\n", + " 'European Economic and Thematic '\n", + " 'Governance and funding\\n'\n", + " 'Child protection policies\\n'\n", + " 'Promotion of quality alternative care '\n", + " 'for children and young people\\n'\n", + " 'Family and parenting support services\\n'\n", + " 'Investing in quality early years '\n", + " 'education and care\\n'\n", + " 'Promoting the participation of children '\n", + " 'in policy and decision making\\n'\n", + " 'Education, youth, justice, health '\n", + " 'policies'},\n", + " 'position': {'address': 'Rue de la Charité 22, 1210 Saint-Josse-ten-Noode, '\n", + " 'Brussels, Belgium',\n", + " 'city': 'Saint-Josse-ten-Noode',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8481605,\n", + " 'lng': 4.370557499999999,\n", + " 'name': 'Rue de la Charité 22',\n", + " 'place_id': 'ChIJefxwSX3Dw0cR7dBO3d-x2-A',\n", + " 'post_code': '1210',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue de la Charité',\n", + " 'street_number': '22',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.eurochild.org'},\n", + " {'address': 'Essl Foundation MGE gemeinnützige Privatstiftung Haus der '\n", + " 'Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift '\n", + " '5&6 Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'office@zeroproject.org',\n", + " 'geo_locations': {'Worldwide': ['Worldwide']},\n", + " 'id': 5144,\n", + " 'link': 'https://philea.eu/members/essl-foundation-mge-gemeinnutzige-privatstiftung/',\n", + " 'name': 'Essl Foundation MGE gemeinnützige Privatstiftung',\n", + " 'philea_info': {'About': 'The Essl Foundation MGE gemeinnützige '\n", + " 'Privatstiftung is an Austrian Foundation '\n", + " 'established in 2007 by Martin and Gerda Essl, and '\n", + " 'their children, for social purposes and scientific '\n", + " 'research.',\n", + " 'Geographic Focus': 'Worldwide',\n", + " 'Mission': 'The mission of the Essl Foundation is to support '\n", + " 'social innovation, social entrepreneurship, and '\n", + " 'persons with disabilities. The mission of the '\n", + " 'Zero Project is working for a world with zero '\n", + " 'barriers. Worldwide, the Zero Project finds and '\n", + " 'share solutions that improve the daily lives and '\n", + " 'legal rights of all persons with disabilities.',\n", + " 'Programme Areas': 'The foundation works in the following '\n", + " 'areas: Financing and further development '\n", + " 'of the Zero Project.\\n'\n", + " 'Support for social projects, especially '\n", + " 'in Austria, with a focus on education, '\n", + " 'employment, and accessibility for people '\n", + " 'with disabilities, as well as '\n", + " 'barrier-free art education.\\n'\n", + " 'Active participation in the activities '\n", + " 'of the Sinnstiftern and member of the '\n", + " 'association for non-profit foundations.\\n'\n", + " 'Co-founder of the Haus der '\n", + " 'Philanthropie, Vienna – an office '\n", + " 'community for non-profit foundations and '\n", + " 'related organizations.'},\n", + " 'position': {'address': 'Essl Foundation MGE gemeinnützige Privatstiftung '\n", + " 'Haus der Philanthropie Schottenring 16/3.OG 1010 '\n", + " 'Wien Zugang über Lift 5&6 Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.2151846,\n", + " 'lng': 16.366538,\n", + " 'place_id': 'ChIJ1V1cvPkHbUcRjDLTlO5Q9JQ',\n", + " 'post_code': '1010',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Schottenring',\n", + " 'street_number': '16',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://zeroproject.org/about/the-essl-foundation-and-zero-project'},\n", + " {'address': 'ERSTE Stiftung Am Belvedere 1 1100 Vienna Austria',\n", + " 'country': 'Austria',\n", + " 'email': 'office@erstestiftung.org',\n", + " 'geo_locations': {'Europe (Western / General)': ['Austria', 'Europe']},\n", + " 'id': 5143,\n", + " 'link': 'https://philea.eu/members/erste-stiftung/',\n", + " 'name': 'ERSTE Stiftung',\n", + " 'philea_info': {'About': 'In 2003, ERSTE Foundation evolved out of the Erste '\n", + " 'Oesterreichische Spar-Casse, the first Austrian '\n", + " 'savings bank. Currently, ERSTE Foundation is the '\n", + " 'main shareholder of Erste Group. The foundation '\n", + " 'invests part of its dividends in the development '\n", + " 'of societies in Austria and Central and South '\n", + " 'Eastern Europe. It supports social participation '\n", + " 'and civil-society engagement; it aims to bring '\n", + " 'people together and disseminate knowledge of the '\n", + " 'recent history of a region that has been '\n", + " 'undergoing dramatic changes since 1989. As an '\n", + " 'active foundation, it develops its own projects '\n", + " 'within the framework of three programmes: Social '\n", + " 'Development, Culture and Europe.',\n", + " 'Geographic Focus': 'Austria, Central and South Eastern '\n", + " 'Europe',\n", + " 'Mission': 'To invest in lasting structures and '\n", + " 'relationships; to reinforce individual and '\n", + " 'organisational autonomy, to cooperate on an '\n", + " 'equal footing and take joint responsibility for '\n", + " 'the common good.\\n'\n", + " 'Furthermore, the foundation firmly believes that '\n", + " 'a prosperous community provides the basis for '\n", + " 'social, individual and economic development.',\n", + " 'Programme Areas': 'The foundation is active in three key '\n", + " 'areas: • Social Development\\n'\n", + " '• Culture\\n'\n", + " '• Europe Social Development\\n'\n", + " 'The foundation encourages the '\n", + " 'development of fairer and stronger '\n", + " 'societies, where nobody is left behind. '\n", + " 'It has developed two complementary '\n", + " 'strategies of social intervention: the '\n", + " 'integration of individuals and groups '\n", + " 'who live on the margins of society and '\n", + " 'research into social change. The '\n", + " 'foundation’s activities create fair '\n", + " 'prospects for people in difficult social '\n", + " 'conditions and situations of extreme '\n", + " 'need with regard to education and '\n", + " 'participation. Culture\\n'\n", + " 'The foundation believes in culture as a '\n", + " 'driving force for a democratic society '\n", + " 'and in its ability to forge links '\n", + " 'between diverse linguistic and '\n", + " 'geographical regions. Culturally '\n", + " 'speaking, the countries of Central and '\n", + " 'South Eastern Europe are a highly '\n", + " 'diverse area which shares a past of '\n", + " 'enforced political conformity. The '\n", + " 'foundation offers a platform to reflect '\n", + " 'on the ambivalence between a newly '\n", + " 'acquired, regional identity, the '\n", + " 'centrifugal forces of nationalist '\n", + " 'fragmentation and common monocultural '\n", + " 'historical experiences. Europe\\n'\n", + " 'ERSTE Stitung promotes the process of '\n", + " 'European integration by providing a '\n", + " 'platform for exchanging ideas, knwoledge '\n", + " 'and initiatives. The foundation would '\n", + " 'like Europeans to live according to '\n", + " 'common values, to freely share ideas, to '\n", + " 'work together and to learn from one '\n", + " 'another. Its work thus focuses on '\n", + " 'establishing a lively culture of '\n", + " 'dialogue. In an environment insisting on '\n", + " 'differences, the foundation enables '\n", + " 'people to experience feelings of '\n", + " 'solidarity, connection and cooperation.'},\n", + " 'position': {'address': 'Am Belvedere 1, 1100 Vienna, Austria',\n", + " 'city': 'Wien',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 48.1873204,\n", + " 'lng': 16.3792082,\n", + " 'name': 'Am Belvedere 1',\n", + " 'place_id': 'ChIJ1bgQlNepbUcRQfhnsHyl03Y',\n", + " 'post_code': '1100',\n", + " 'state': 'Wien',\n", + " 'street_name': 'Am Belvedere',\n", + " 'street_number': '1',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.erstestiftung.org'},\n", + " {'address': 'Foundation DOTS Alberta iela, 13 LV-1010 Riga Latvia',\n", + " 'country': 'Latvia',\n", + " 'email': 'dots@fondsdots.lv',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Latvia']},\n", + " 'id': 5137,\n", + " 'link': 'https://philea.eu/members/dots-foundation-for-an-open-society/',\n", + " 'name': 'DOTS Foundation for an Open Society',\n", + " 'philea_info': {'About': 'Previously known as “The Soros Foundation Latvia”, '\n", + " 'it was established in 1992 by the philanthropist '\n", + " 'George Soros as part of the Open Society '\n", + " 'Foundations (OSF) spanning Europe, the Americas, '\n", + " 'Africa and Asia. After the Central and East '\n", + " 'European countries joined the European Union, the '\n", + " 'family of developed democratic nations, George '\n", + " 'Soros chose to redirect greater resources to open '\n", + " 'society development needs in Africa, South America '\n", + " 'and Asia. In 2011 a decision was made that the '\n", + " 'foundations located in the EU countries would no '\n", + " 'longer be members of OSF, but remain affiliated '\n", + " 'with the broader network. This necessitated a name '\n", + " 'change by the close of 2014. DOTS Foundation’s '\n", + " 'mission is to strengthen the quality and culture '\n", + " 'of democracy in Latvia.',\n", + " 'Geographic Focus': 'Latvia',\n", + " 'Mission': 'DOTS Foundation for an Open Society unites '\n", + " 'people devoted to strengthening the quality and '\n", + " 'culture of democracy in Latvia.\\n'\n", + " 'We believe that diversity and a plurality of '\n", + " 'opinions make Latvia a better place.\\n'\n", + " 'We believe in an open and inclusive public '\n", + " 'sphere as the cornerstone for a resilient '\n", + " 'society able to stand up to the challenges of '\n", + " 'tomorrow.\\n'\n", + " 'We believe in trust, dignity, integrity and '\n", + " 'sustainability, and we work with passion and joy '\n", + " 'to bring these values to life.\\n'\n", + " 'We believe in deliberation as the best tool for '\n", + " 'fair decision-making, and we pursue cooperation '\n", + " 'and co-creation among our team and with our '\n", + " 'partners.',\n", + " 'Programme Areas': 'DOTS engages in the promotion of '\n", + " 'participatory democracy by: • inspiring '\n", + " 'a democratic conversation and advancing '\n", + " 'the culture of discussion\\n'\n", + " '• inciting people’s interest in societal '\n", + " 'and political processes\\n'\n", + " '• fostering people’s active '\n", + " 'participation in public life DOTS is the '\n", + " 'founder and co-organiser of the open-air '\n", + " 'LAMPA Conversation festival. The biggest '\n", + " 'discussion event in Latvia, LAMPA '\n", + " 'creates a motivating atmosphere for '\n", + " 'constant self-improvement in an '\n", + " 'ever-changing world. Since its creation '\n", + " 'in 2015, each summer LAMPA has brought '\n", + " 'together tens of thousands of '\n", + " 'participants who spend two joyful days '\n", + " 'sharpening their minds, expanding their '\n", + " 'horizons and challenging their views. '\n", + " 'LAMPA is an inspiring and exciting '\n", + " 'platform for anyone who has something to '\n", + " 'say — for all those who want to learn '\n", + " 'about and discuss the central issues for '\n", + " 'Latvia, Europe and the world.'},\n", + " 'position': {'address': 'LATO Latvian Transatlantic Organisation, Alberta '\n", + " 'iela 13, Central District, Rīga, LV-1010, Latvia',\n", + " 'city': 'Rīga',\n", + " 'country': 'Latvia',\n", + " 'country_short': 'LV',\n", + " 'lat': 56.9593018,\n", + " 'lng': 24.1080334,\n", + " 'name': 'LATO Latvian Transatlantic Organisation',\n", + " 'place_id': 'ChIJjSB_ecTP7kYROV-i4kWpXC4',\n", + " 'post_code': '1010',\n", + " 'street_name': 'Alberta iela',\n", + " 'street_number': '13',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondsdots.lv/en'},\n", + " {'address': 'Channel 4 BRITDOC Foundation 50 Frith Street WID 4SQ London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'beadie@britdoc.org',\n", + " 'geo_locations': {'Worldwide': ['International']},\n", + " 'id': 5135,\n", + " 'link': 'https://philea.eu/members/doc-society/',\n", + " 'name': 'Doc Society',\n", + " 'philea_info': {'About': 'The Channel 4 BRITDOC has produced over fifty '\n", + " 'documentaries and have worked with experienced '\n", + " 'talents in the movie sector. Some of their films '\n", + " 'have been used as educational tools in schools, to '\n", + " 'trig Government policy reviews and used '\n", + " 'strategically in the social justice campaigns to '\n", + " 'inspire action.',\n", + " 'Geographic Focus': 'based in UK, but it works '\n", + " 'internationally',\n", + " 'Mission': 'Channel 4 BRITDOC Foundation is a non-profit '\n", + " 'organisation established in 2004 titled '\n", + " 'sponsored by Channel 4 Television and supported '\n", + " 'by UK and Usa foundations. Its main mission of '\n", + " 'Channel 4 BRITDOC is to build a diverse future '\n", + " 'for documentary. In order to do this, they '\n", + " 'create films and engage new partners to ensure '\n", + " 'that these fims have a global impact.',\n", + " 'Programme Areas': 'Through documentaries they cover the '\n", + " 'following areas:\\n'\n", + " '– Human rights\\n'\n", + " '– Environment\\n'\n", + " '– Health\\n'\n", + " '– Education'},\n", + " 'position': {'address': 'Frith Street, Soho, London, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5135376,\n", + " 'lng': -0.1314486,\n", + " 'name': 'Frith Street',\n", + " 'place_id': 'EhRGcml0aCBTdCwgTG9uZG9uLCBVSyIuKiwKFAoSCZFhf93SBHZIEXXreDcc1L2pEhQKEgmbf0uf1AR2SBHSXX5TzFdO5A',\n", + " 'state': 'England',\n", + " 'street_name': 'Frith Street',\n", + " 'street_name_short': 'Frith St',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'https://docsociety.org'},\n", + " {'address': 'Deutsche Bundesstiftung Umwelt An der Bornau 2 49090 Osnabrück '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': 'c.soetbeer@dbu.de',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany']},\n", + " 'id': 5132,\n", + " 'link': 'https://philea.eu/members/deutsche-bundesstiftung-umwelt/',\n", + " 'name': 'Deutsche Bundesstiftung Umwelt',\n", + " 'philea_info': {'About': 'Deutsche Bundesstiftung Umwelt (DBU) was founded '\n", + " 'in 1991 following an initiative by Dr Theo Waigel, '\n", + " 'the then Federal Minister of Finance, and '\n", + " 'supported by the German government. The foundation '\n", + " 'began with assets amounting to nearly 1.3 billion '\n", + " 'euros from the proceeds of privatisation of the '\n", + " 'former steel group, Salzgitter AG, making it one '\n", + " 'of the largest foundation trusts in Europe.',\n", + " 'Geographic Focus': 'Germany, its neighbouring countries and '\n", + " 'Central and Eastern Europe',\n", + " 'Mission': 'To promote model projects that protect the '\n", + " 'environment with particular consideration given '\n", + " 'to small and medium-sized enterprises.',\n", + " 'Programme Areas': 'The foundation supports environmental '\n", + " 'projects giving particular consideration '\n", + " 'to small and medium-sized enterprises. '\n", + " 'The foundation is active in the '\n", + " 'following fieldsMain fields of '\n", + " 'promotional activities are: • '\n", + " 'Environmental technology\\n'\n", + " '• Environmental research / nature '\n", + " 'protection\\n'\n", + " '• Environmental communication\\n'\n", + " '• International activities Within these, '\n", + " 'the foundation supports nine special '\n", + " 'fields: • Environmentally friendly '\n", + " 'applications and procedures, energy '\n", + " 'technology\\n'\n", + " '• Architecture and building and '\n", + " 'construction industry\\n'\n", + " '• Material stream management and '\n", + " 'emission reduction\\n'\n", + " '• Applied environmental research\\n'\n", + " '• Nature protection\\n'\n", + " '• Environmentally friendly use of land\\n'\n", + " '• Scholarship programme\\n'\n", + " '• Environmental communication and '\n", + " 'environmental management within small '\n", + " 'and medium sized enterprises\\n'\n", + " '• Dissemination of environmental '\n", + " 'information\\n'\n", + " '• Environmental education and '\n", + " 'environment and cultural assets'},\n", + " 'position': {'address': 'Deutsche Bundesstiftung Umwelt, An der Bornau 2, '\n", + " '49090 Osnabrück, Germany',\n", + " 'city': 'Osnabrück',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.2863704,\n", + " 'lng': 8.032082899999999,\n", + " 'name': 'German Federal Environmental Foundation',\n", + " 'place_id': 'ChIJSz4JYMTluUcRL2asjbrjmuo',\n", + " 'post_code': '49090',\n", + " 'state': 'Niedersachsen',\n", + " 'state_short': 'NDS',\n", + " 'street_name': 'An der Bornau',\n", + " 'street_name_short': 'An d. Bornau',\n", + " 'street_number': '2',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.dbu.de'},\n", + " {'address': \"Degroof Petercam Foundation 44 rue de l'industrie 1040 Brussels \"\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': 'foundation@degroofpetercam.com',\n", + " 'geo_locations': {'Europe (Western / General)': ['Belgium',\n", + " 'Europe',\n", + " 'France',\n", + " 'Luxembourg']},\n", + " 'id': 5363,\n", + " 'link': 'https://philea.eu/members/degroof-petercam-foundation/',\n", + " 'name': 'Degroof Petercam Foundation',\n", + " 'philea_info': {'About': 'Founded by Degroof Petercam private Bank, Degroof '\n", + " 'Petercam Foundation has access to the corporate’s '\n", + " 'network and resources. The Foundation focuses on '\n", + " '“big bets” by selecting one top project every year '\n", + " 'to which is consented a considerable grant and '\n", + " 'five years of support.',\n", + " 'Geographic Focus': 'Europe (especially Belgium, France, '\n", + " 'Luxembourg)',\n", + " 'Mission': 'To support social innovation for employment.',\n", + " 'Programme Areas': 'Degroof Petercam Foundation supports '\n", + " 'social innovation for employment in '\n", + " 'three fields:\\n'\n", + " '– Skills for tomorrow\\n'\n", + " '– Entrepreneurs for tomorrow\\n'\n", + " '– Job accessibility for tomorrow'},\n", + " 'position': {'address': \"Banque Degroof Petercam, Rue de l'Industrie 44, \"\n", + " '1040 Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.8441235,\n", + " 'lng': 4.370583000000001,\n", + " 'name': 'Bank/Banque Degroof Petercam',\n", + " 'place_id': 'ChIJIbVk0pzEw0cRFTwXA3u0cVM',\n", + " 'post_code': '1040',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': \"Rue de l'Industrie\",\n", + " 'street_number': '44',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.degroofpetercam.com/en/social-impact/degroof-petercam-foundation'},\n", + " {'address': 'Daniel and Nina Carasso Foundation 40, avenue Hoche 75008 Paris '\n", + " 'France',\n", + " 'country': 'France',\n", + " 'email': 'contact@fondationcarasso.org',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain'],\n", + " 'Europe (Western / General)': ['France']},\n", + " 'id': 5131,\n", + " 'link': 'https://philea.eu/members/daniel-and-nina-carasso-foundation/',\n", + " 'name': 'Daniel and Nina Carasso Foundation',\n", + " 'philea_info': {'About': 'The Daniel and Nina Carasso Foundation was founded '\n", + " 'in early 2010, under the aegis of umbrella '\n", + " 'organization, the Fondation de France. It was '\n", + " 'created in memory of Daniel Carasso – founder of '\n", + " 'Danone and his wife, Nina. It is a family '\n", + " 'organization that is independent of the food '\n", + " 'company. The Foundation is grant making and does '\n", + " 'not raise funds.',\n", + " 'Geographic Focus': 'France and Spain',\n", + " 'Mission': 'It aims to act in furtherance of general '\n", + " 'interest projects and create the right '\n", + " 'conditions for co‑operation between the projects '\n", + " 'it funds and the beneficiaries of such projects.',\n", + " 'Programme Areas': 'Its objective is to fund projects in two '\n", + " 'areas critical to human well-being:\\n'\n", + " '– Sustainable food and diets, to nourish '\n", + " 'the body\\n'\n", + " '– Art, to nourish the mind. The Daniel '\n", + " 'and Nina Carasso Foundation seeks both '\n", + " 'to support completed projects which can '\n", + " 'be put to practical effect in the real '\n", + " 'world and to foster nascent projects. '\n", + " 'The Foundation seeks to facilitate '\n", + " 'encounters and opportunities that bring '\n", + " 'together fields of enquiry whose paths '\n", + " 'do not always cross. The field of action '\n", + " 'of the foundation is primarily France '\n", + " 'and Spain, however, it reserves the '\n", + " 'right to act elsewhere, particularly in '\n", + " 'countries facing post-emergency '\n", + " 'situations, especially in the wake of '\n", + " 'environmental crises, supporting '\n", + " 'projects related to two major areas.\\n'\n", + " 'SUSTAINABLE FOOD PROGRAM\\n'\n", + " '1) Promotion of the systemic approach of '\n", + " 'food: support to research, advocacy '\n", + " 'work, training, etc.\\n'\n", + " '2) Territorial approach and social '\n", + " 'justice\\n'\n", + " '3) From production to consumption=agro '\n", + " 'ecology, food education ART IN THE '\n", + " 'COMMUNITY PROGRAM\\n'\n", + " '1) Art and Education: art education '\n", + " 'programs in schools\\n'\n", + " '2) Art, Science and Society: call for '\n", + " 'projects with artist and scientists\\n'\n", + " '3) Committed artists'},\n", + " 'position': {'address': '40 Avenue Hoche, 75008 Paris, France',\n", + " 'city': 'Paris',\n", + " 'country': 'France',\n", + " 'country_short': 'FR',\n", + " 'lat': 48.8755934,\n", + " 'lng': 2.2987615,\n", + " 'name': '40 Av. Hoche',\n", + " 'place_id': 'ChIJu35D5Opv5kcRsvSuZmBfpV4',\n", + " 'post_code': '75008',\n", + " 'state': 'Île-de-France',\n", + " 'state_short': 'IDF',\n", + " 'street_name': 'Avenue Hoche',\n", + " 'street_name_short': 'Av. Hoche',\n", + " 'street_number': '40',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Citizenship, Social Justice & Public Affairs',\n", + " 'Education',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.fondationcarasso.org/fr'},\n", + " {'address': 'Czech Donors Forum Lucerna Palace, 5th floor Stepanska 61 11602 '\n", + " 'Prague 1 Czech Republic',\n", + " 'country': 'Czech Republic',\n", + " 'email': 'donorsforum@donorsforum.cz',\n", + " 'geo_locations': {},\n", + " 'id': 5129,\n", + " 'link': 'https://philea.eu/members/czech-donors-forum/',\n", + " 'name': 'Czech Donors Forum',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Štěpánská 61, New Town, Czechia',\n", + " 'country': 'Czechia',\n", + " 'country_short': 'CZ',\n", + " 'lat': 50.0809618,\n", + " 'lng': 14.4263343,\n", + " 'name': 'Štěpánská 61',\n", + " 'place_id': 'ChIJ42jlTe2UC0cRksIDVfNomKs',\n", + " 'post_code': '110 00',\n", + " 'state': 'Hlavní město Praha',\n", + " 'street_name': 'Štěpánská',\n", + " 'street_number': '61',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.donorsforum.cz'},\n", + " {'address': 'Cultiva - Kristiansand Kommunes Energiverksstiftelse Vestre '\n", + " 'Strandgate 27 4611 Kristiansand Norway',\n", + " 'country': 'Norway',\n", + " 'email': 'post@cultiva.no',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Norway']},\n", + " 'id': 5128,\n", + " 'link': 'https://philea.eu/members/cultiva-kristiansand-kommunes-energiverksstiftelse/',\n", + " 'name': 'Cultiva - Kristiansand Kommunes Energiverksstiftelse',\n", + " 'philea_info': {'About': 'Cultiva – Kristiansand Kommunes '\n", + " 'Energiverks-Stiftelse was established in 2000 by '\n", + " 'the local authority to ensure that the profit made '\n", + " 'by selling shares in the local energy corporation '\n", + " 'is of lasting benefit to the community of '\n", + " 'Kristiansand.',\n", + " 'Geographic Focus': 'Kristiansand, Norway',\n", + " 'Mission': 'To secure jobs and good living conditions in '\n", + " 'Kristiansand by providing grants to projects '\n", + " 'which set up art, cultural, and educational '\n", + " 'institutions or organisations that contribute to '\n", + " 'innovation, development and competence-building '\n", + " 'within the creative milieu of Kristiansand.',\n", + " 'Programme Areas': 'The foundation provides grants to '\n", + " 'projects which set up art, cultural and '\n", + " 'educational institutions or '\n", + " 'organisations that contribute to '\n", + " 'innovation, development and '\n", + " 'competence-building within the creative '\n", + " 'milieu of Kristiansand.'},\n", + " 'position': {'address': 'Cultiva, Vestre Strandgate 27, 4611 Kristiansand, '\n", + " 'Kristiansand, Norway',\n", + " 'city': 'Kristiansand',\n", + " 'country': 'Norway',\n", + " 'country_short': 'NO',\n", + " 'lat': 58.14399330000001,\n", + " 'lng': 7.992162299999999,\n", + " 'name': 'Cultiva',\n", + " 'place_id': 'ChIJo_wsh2ACOEYRndP7xHpdPZc',\n", + " 'post_code': '4611',\n", + " 'state': 'Agder',\n", + " 'street_name': 'Vestre Strandgate',\n", + " 'street_number': '27',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cultiva.no'},\n", + " {'address': 'Conrad N. Hilton Foundation 30440 Agoura Road 91301 Agoura Hills '\n", + " 'United States',\n", + " 'country': 'United States',\n", + " 'email': 'alecia@hiltonfoundation.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa']},\n", + " 'id': 5125,\n", + " 'link': 'https://philea.eu/members/conrad-n-hilton-foundation/',\n", + " 'name': 'Conrad N. Hilton Foundation',\n", + " 'philea_info': {'About': 'The foundation was originally established in 1944 '\n", + " 'as a Trust, with Conrad N. Hilton, the builder of '\n", + " 'the world’s first chain of hotels, as the founder '\n", + " 'and grantor. On 21 February 1950, all assets were '\n", + " 'transferred over to a nonprofit corporation. The '\n", + " 'foundation remained relatively small until Mr '\n", + " 'Hilton’s death on 3 January 1979 when in '\n", + " 'accordance to his Will, the bulk of his estate was '\n", + " 'left to the foundation.',\n", + " 'Geographic Focus': 'Africa (several countries), New York, '\n", + " 'Los Angeles',\n", + " 'Mission': 'The alleviation of human suffering, particularly '\n", + " 'among disadvantaged children.',\n", + " 'Programme Areas': 'The foundation focuses primarily on the '\n", + " 'following activities:\\n'\n", + " '• Hilton/Perkins programme\\n'\n", + " '• Fund for sisters\\n'\n", + " '• Hotel and restaurant management\\n'\n", + " '• Water development\\n'\n", + " '• Substance abuse prevention and '\n", + " 'research\\n'\n", + " '• Domestic violence\\n'\n", + " '• Homelessness\\n'\n", + " '• Conrad N. Hilton humanitarian prize '\n", + " 'Hilton/Perkins Programme\\n'\n", + " 'Provides direct service and educational '\n", + " 'opportunities for children who are '\n", + " 'multi-handicapped and blind, as well as '\n", + " 'training for teachers and support '\n", + " 'services for parents and family. '\n", + " 'Co-ordinates services for thousands of '\n", + " 'children, parents and teachers in the '\n", + " 'Asia/Pacific region, Africa, Latin '\n", + " 'America, the Caribbean and eastern '\n", + " 'Europe. Fund for Sisters\\n'\n", + " 'Operates a grant awarding system under '\n", + " 'the auspices of the Archdiocese of Los '\n", + " 'Angeles. Supports projects that have one '\n", + " 'or more Catholic Sister working '\n", + " 'full-time towards the alleviation of '\n", + " 'human suffering, mitigation of '\n", + " 'deprivation in the lives of youths and '\n", + " 'achieving systematic change. Hotel and '\n", + " 'Restaurant Management\\n'\n", + " 'Awards benefits to the University of '\n", + " 'Houston to expand physical facilities, '\n", + " 'endow professorships, provide '\n", + " 'scholarships and enhance educational '\n", + " 'programmes in the field of hospitality '\n", + " 'education. Water Development\\n'\n", + " 'Provides a minimum of 1,100 wet wells to '\n", + " 'hundreds or rural villages through the '\n", + " 'Afram plains through the Ghana Rural '\n", + " 'Water Project. Includes instruction for '\n", + " 'villagers on maintenance and repair or '\n", + " 'each well, health, hygiene and '\n", + " 'sanitation education. Technical '\n", + " 'assistance is provided in the '\n", + " 'construction of latrines and laundry '\n", + " 'pads. Substance Abuse Prevention and '\n", + " 'Research\\n'\n", + " 'Teaches middle school students how to '\n", + " 'identify and resist the social pressures '\n", + " 'that lead to experimentation with drugs. '\n", + " 'Provides them with reasons not to use '\n", + " 'and builds social norms against such '\n", + " 'use. Domestic Violence\\n'\n", + " 'Targets the legal system, healthcare '\n", + " 'providers and the religious community in '\n", + " 'an attempt to reduce the '\n", + " 'intergenerational violence, '\n", + " 'psychological problems, medical expenses '\n", + " 'and lost productivity caused by domestic '\n", + " 'violence. Homelessness\\n'\n", + " 'Provides financial support to strengthen '\n", + " 'services for the homeless mentally ill, '\n", + " 'living in New York City. Conrad N. '\n", + " 'Hilton Humanitarian Prize\\n'\n", + " 'Draws attention to exemplary efforts to '\n", + " 'combat the causes or effects of famine, '\n", + " 'wars, disease, extreme human affliction '\n", + " 'or man’ inhumanity to man, by annually '\n", + " 'awarding the Conrad H. Hilton '\n", + " 'Humanitarian Prize to voluntary, '\n", + " 'charitable or NGOs. By focusing on a '\n", + " 'notable organisation the foundation '\n", + " 'hopes to motivate support for this cause '\n", + " 'and stimulate other organisations '\n", + " 'helping those in need.'},\n", + " 'position': {'address': 'The Conrad Hilton Foundation offices, 30440 Agoura '\n", + " 'Road, Agoura Hills, CA 91301, United States',\n", + " 'city': 'Agoura Hills',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 34.1443268,\n", + " 'lng': -118.7849945,\n", + " 'name': 'The Conrad Hilton Foundation offices',\n", + " 'place_id': 'ChIJEwQzr1Al6IARUjUi658Ae44',\n", + " 'post_code': '91301',\n", + " 'state': 'California',\n", + " 'state_short': 'CA',\n", + " 'street_name': 'Agoura Road',\n", + " 'street_name_short': 'Agoura Rd',\n", + " 'street_number': '30440',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.hiltonfoundation.org'},\n", + " {'address': 'Clean Clothes Campaign Nieuwezijds Voorburgwal 292-sous 11584 '\n", + " 'Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': 'info@cleanclothes.org',\n", + " 'geo_locations': {'Worldwide': ['Global']},\n", + " 'id': 5359,\n", + " 'link': 'https://philea.eu/members/clean-clothes-campaign/',\n", + " 'name': 'Clean Clothes Campaign',\n", + " 'philea_info': {'About': 'The Clean Clothes Campaign was created in the late '\n", + " 'eighties, during a transition period for the '\n", + " 'garment industry. Between 1980 and 1990, garment '\n", + " 'prices worldwide fell by as much as 70%. At the '\n", + " 'same time, many garment companies were looking for '\n", + " 'cheaper production options and moved their '\n", + " 'production to low-wage countries. These processes '\n", + " 'did not go unnoticed. Activists began to hold '\n", + " 'garment companies to account for their '\n", + " 'responsibility in the late 1980s and media '\n", + " 'increasingly published stories of exploitation in '\n", + " 'the chains of well-known brands. In the fall of '\n", + " '1988, a group of concerned citizens in the '\n", + " 'Netherlands drew attention to the working '\n", + " 'conditions in a garment factory in the '\n", + " 'Philippines. The activists followed the garment '\n", + " 'from the factory to the store and discovered that '\n", + " 'the garment was destined for the Dutch brand C&A. '\n", + " 'After two years of action and pressure on the '\n", + " 'factory owner and powerful players in other parts '\n", + " 'of the production chain, the garment workers '\n", + " 'reached an agreement with the factory owner for '\n", + " 'salary compensation. This was a major victory for '\n", + " 'the garment workers, but not a systemic change in '\n", + " 'the garment industry. The factory owner himself '\n", + " 'opened a new factory in a new location not long '\n", + " 'after, with new garment workers earning at least '\n", + " '30% below the minimum wage. Research revealed '\n", + " 'similar cases in Bangladesh, India and Western '\n", + " 'Europe, and more organizations became involved. '\n", + " 'The Clean Clothes Campaign movement quickly found '\n", + " 'more allies in both consumer and production '\n", + " 'countries and from 1991 an ever-expanding global '\n", + " 'network was created: Clean Clothes Campaign, whose '\n", + " 'international office is located in Amsterdam and '\n", + " 'now includes 235 human rights and consumer '\n", + " 'interest groups, women’s groups and trade unions '\n", + " 'in both garment producing and consuming countries.',\n", + " 'Geographic Focus': 'Global',\n", + " 'Mission': 'The Clean Clothes Campaign Network works to '\n", + " 'structurally improve working conditions and '\n", + " 'support the empowerment of manufacturing workers '\n", + " 'in global garment and sportswear supply chains '\n", + " 'so that governments protect employment rights '\n", + " 'and human rights, companies respect these rights '\n", + " 'and workers have access to remedy for violations '\n", + " 'of these rights.',\n", + " 'Programme Areas': 'To achieve our vision, we:\\n'\n", + " '• Put pressure on companies to respect '\n", + " 'workers’ rights and use responsible '\n", + " 'purchasing practices;\\n'\n", + " '• Take up specific cases of violations '\n", + " 'of the rights of workers and activists '\n", + " 'in support of workers’ demands upon '\n", + " 'their request, and integrate learning '\n", + " 'from these cases into our strategy;\\n'\n", + " '• Raise awareness, campaign and mobilise '\n", + " 'people to undertake individual and '\n", + " 'collective action linked to their role '\n", + " 'as consumers, citizens, investors, '\n", + " 'workers or in other areas of life;\\n'\n", + " '• Use judicial mechanisms, lobby for '\n", + " 'legislation and regulation and call for '\n", + " 'binding mechanisms for corporate '\n", + " 'accountability to protect workers’ '\n", + " 'rights;\\n'\n", + " '• Develop alliances, including those '\n", + " 'with workers throughout the global '\n", + " 'garment and sportswear supply chain, to '\n", + " 'transform the business model and '\n", + " 'strengthen the global movement for '\n", + " 'workers’'},\n", + " 'position': {'address': 'Nieuwezijds Voorburgwal 292, Amsterdam, Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.3707599,\n", + " 'lng': 4.8898692,\n", + " 'name': 'Nieuwezijds Voorburgwal 292',\n", + " 'place_id': 'ChIJY0coasEJxkcRuMIaX-FXMeY',\n", + " 'post_code': '1012 RT',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Nieuwezijds Voorburgwal',\n", + " 'street_number': '292',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.cleanclothes.org'},\n", + " {'address': 'City of London, PO Box 270, Guildhall, London EC2P 2EJ',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'funding@cityoflondon.gov.uk',\n", + " 'geo_locations': {'Europe (Western / General)': ['United Kingdom']},\n", + " 'id': 5123,\n", + " 'link': 'https://philea.eu/members/city-bridge-foundation/',\n", + " 'name': 'City Bridge Foundation',\n", + " 'philea_info': {'About': 'City Bridge Foundation is one of London’s largest '\n", + " 'independent charitable funders, with a heritage '\n", + " 'spanning over 900 years. While it is responsible '\n", + " 'for maintaining five Thames bridges, its primary '\n", + " 'focus today is on philanthropy—using income from '\n", + " 'investments to support organisations tackling '\n", + " 'inequality and injustice across Greater London.',\n", + " 'Geographic Focus': 'Greater London, supporting initiatives '\n", + " 'that improve lives and opportunities '\n", + " 'across the capital.',\n", + " 'Mission': 'The Foundation’s mission is to stand with '\n", + " 'Londoners by promoting fairness, equity and '\n", + " 'opportunity. Through its ten-year strategy '\n", + " 'Standing with Londoners, it seeks to empower '\n", + " 'communities, reduce inequalities and foster a '\n", + " 'city where everyone can thrive.',\n", + " 'Programme Areas': 'The Foundation’s work is guided by four '\n", + " 'interconnected priorities: Climate '\n", + " 'Justice – Supporting communities most '\n", + " 'affected by environmental challenges, '\n", + " 'ensuring they have a voice in shaping a '\n", + " 'fair and inclusive transition to '\n", + " 'sustainability.\\n'\n", + " 'Access to Justice – Funding initiatives '\n", + " 'that help Londoners understand and '\n", + " 'exercise their rights, providing support '\n", + " 'in areas such as housing, employment, '\n", + " 'immigration and social welfare.\\n'\n", + " 'Racial Justice – Addressing structural '\n", + " 'inequalities and discrimination by '\n", + " 'backing organisations that promote '\n", + " 'equity and inclusion across education, '\n", + " 'health, housing and the justice system.\\n'\n", + " 'Economic Justice – Tackling poverty and '\n", + " 'economic disparity by supporting '\n", + " 'projects that create pathways to '\n", + " 'employment, improve financial resilience '\n", + " 'and enable all Londoners to share in the '\n", + " 'city’s prosperity.'},\n", + " 'position': {'address': 'City of London, PO Box 270, Guildhall, London EC2P '\n", + " '2EJ',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5159245,\n", + " 'lng': -0.0913715,\n", + " 'place_id': 'ChIJH08KIlUbdkgRsAqh3GUSyT4',\n", + " 'post_code': 'EC2V 7HH',\n", + " 'state': 'England',\n", + " 'street_name': 'Basinghall Street',\n", + " 'street_name_short': 'Basinghall St',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.citybridgefoundation.org.uk/'},\n", + " {'address': \"Children's Investment Fund Foundation 7 Clifford Street W1S 2FT \"\n", + " 'London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'hnouss@ciff.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa',\n", + " 'Ethiopia',\n", + " 'Ghana',\n", + " 'Kenya',\n", + " 'Malawi',\n", + " 'Tanzania'],\n", + " 'Asia & Pacific': ['Asia', 'Bangladesh', 'China', 'India'],\n", + " 'Latin America & Caribbean': ['Brazil']},\n", + " 'id': 5120,\n", + " 'link': 'https://philea.eu/members/childrens-investment-fund-foundation/',\n", + " 'name': \"Children's Investment Fund Foundation\",\n", + " 'philea_info': {'About': 'SMART PHILANTHROPY\\n'\n", + " 'The Children’s Investment Fund Foundation was '\n", + " 'established in 2002 by Chris Hohn and Jamie '\n", + " 'Cooper. The co-founders set out to improve the '\n", + " 'lives of children living in poverty in developing '\n", + " 'countries through strategies that have lasting '\n", + " 'impact. With a rigorous business-like approach to '\n", + " 'philanthropic funding, the foundation was focused '\n", + " 'on clear returns for children from the outset. The '\n", + " 'emphasis on data to measure impact has been widely '\n", + " 'adopted by other development funders.',\n", + " 'Geographic Focus': 'Asia, including India, Bangladesh and '\n", + " 'China - Africa, including Kenya, '\n", + " 'Ethiopia, Tanzania, Malawi, Nigeria, '\n", + " 'Ghana - South America, including Brazil',\n", + " 'Mission': 'CIFF is the world’s largest philanthropy that '\n", + " 'focuses specifically on improving children’s '\n", + " 'lives. “The original mission in setting up CIFF '\n", + " 'was to improve the lives of children in '\n", + " 'developing countries who live in poverty.” '\n", + " 'Championing Children – We are an independent '\n", + " 'philanthropic organisation, headquartered in '\n", + " 'London with offices in Nairobi and New Delhi. We '\n", + " 'work with a range of partners seeking to '\n", + " 'transform the lives of vulnerable children and '\n", + " 'adolescents in developing countries. '\n", + " 'Partnerships are critical, because it will take '\n", + " 'the combined efforts of many to tackle urgently '\n", + " 'the challenges faced by children and their '\n", + " 'families every day. Our programmes are designed '\n", + " 'to support bold ideas to seemingly intractable '\n", + " 'problems. We know that the returns on smart '\n", + " 'investments in areas such as children’s early '\n", + " 'development and adolescent girls are especially '\n", + " 'high. So we aim to play a catalytic role as a '\n", + " 'funder and influencer to deliver urgent and '\n", + " 'lasting change at scale. Areas of work include '\n", + " 'maternal and child health, adolescent sexual '\n", + " 'health, nutrition, education, and deworming, '\n", + " 'tackling child slavery and exploitation, and '\n", + " 'supporting smart ways to slow down and stop '\n", + " 'climate change. We place significant emphasis on '\n", + " 'quality data and evidence. For many of our '\n", + " 'grants, we work with partners to measure and '\n", + " 'evaluate progress to achieve large scale and '\n", + " 'sustainable impact. Transparency is also an '\n", + " 'important part of our grant-making. We publish '\n", + " 'information about our grants along with data, '\n", + " 'evidence and evaluations in a variety of ways, '\n", + " 'including on our comprehensive grant portfolio '\n", + " 'tool.',\n", + " 'Programme Areas': 'SURVIVE & THRIVE\\n'\n", + " '– Nutrition\\n'\n", + " '– Health\\n'\n", + " '– Education\\n'\n", + " '– Deworming CLIMATE CHANGE\\n'\n", + " '– Energy\\n'\n", + " '– Urbanisation\\n'\n", + " '– Fluorinated Gases\\n'\n", + " '– Land Use CHILD PROTECTION\\n'\n", + " '– fight to end child slavery and '\n", + " 'prostitution'},\n", + " 'position': {'address': '7 Clifford Street, London W1S 2FT, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.51110310000001,\n", + " 'lng': -0.1419121,\n", + " 'name': '7 Clifford St',\n", + " 'place_id': 'ChIJ94G6bSoFdkgRyWA5sxpEAoc',\n", + " 'post_code': 'W1S 2FT',\n", + " 'state': 'England',\n", + " 'street_name': 'Clifford Street',\n", + " 'street_name_short': 'Clifford St',\n", + " 'street_number': '7',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.ciff.org'},\n", + " {'address': 'Paolo Chiesi Foundation Largo Belloli 11A 43122 Parma Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa']},\n", + " 'id': 5119,\n", + " 'link': 'https://philea.eu/members/chiesi-foundation/',\n", + " 'name': 'Paolo Chiesi Foundation',\n", + " 'philea_info': {'About': 'To be an Integrated Foundation, the Paolo Chiesi '\n", + " 'Foundation has numerous strong links to the '\n", + " 'founding company. This decision has been driven by '\n", + " 'the will to harness the business acumen and '\n", + " 'networks of the founding company to create '\n", + " 'positive, impactful social change in the field of '\n", + " 'global health. For this reason, Paolo Chiesi '\n", + " 'Foundation promotes their mission beyond the '\n", + " 'borders, in those countries where the company does '\n", + " 'not have a commercial reach, and access to quality '\n", + " 'of care is not yet guaranteed.',\n", + " 'Geographic Focus': 'Low and middle income countries, '\n", + " 'specific focus on French-speaking '\n", + " 'sub-saharan African countries and South '\n", + " 'American countries',\n", + " 'Mission': 'To promote health and alleviate the suffering of '\n", + " 'patients affected by respiratory and neonatal '\n", + " 'diseases.',\n", + " 'Programme Areas': 'The foundations’s mission is pursued '\n", + " 'through scientific research and '\n", + " 'international cooperation programs. It '\n", + " 'works in partnership with local and '\n", + " 'international organisations by '\n", + " 'co-designing scientific research project '\n", + " 'and implementing two different models to '\n", + " 'improve the quality of neonatal care and '\n", + " 'to enhance the management of Chronic '\n", + " 'Respiratory Disease.\\n'\n", + " '• The NEST (Neonatal Essential Survival '\n", + " 'Technology) is a project designed by the '\n", + " 'Chiesi Foundation that aims to reduce '\n", + " 'neonatal mortality rates by improving '\n", + " 'the quality of neonatal care in '\n", + " 'countries with limited resources, paying '\n", + " 'specific attention to premature, sick, '\n", + " 'unwell and small for gestational age '\n", + " 'babies. The NEST project is currently '\n", + " 'implemented in Burkina Faso, Burundi, '\n", + " 'Togo and Benin.\\n'\n", + " '• The GASP (Global Access to Spirometry '\n", + " 'Project) is a project focused on the '\n", + " 'development of specific clinical skills '\n", + " 'for the diagnosis and management of '\n", + " 'chronic respiratory diseases such as '\n", + " 'asthma and chronic obstructive pulmonary '\n", + " 'disease (COPD), through the introduction '\n", + " 'of spirometry capacity and training '\n", + " 'activities. The GASP project is '\n", + " 'currently implemented in Guyana and '\n", + " 'Peru.'},\n", + " 'position': {'address': 'CHIESI Foundation onlus, Largo Francesco Belloli, '\n", + " '11a, 43122 Parma, Province of Parma, Italy',\n", + " 'city': 'Parma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 44.837427,\n", + " 'lng': 10.3429247,\n", + " 'name': 'CHIESI Foundation onlus',\n", + " 'place_id': 'ChIJ-9YF_CJAgEcRtk16ZtI7nJ4',\n", + " 'post_code': '43122',\n", + " 'state': 'Emilia-Romagna',\n", + " 'state_short': 'PR',\n", + " 'street_name': 'Largo Francesco Belloli',\n", + " 'street_number': '11a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education',\n", + " 'Health',\n", + " 'Sciences & Research',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://www.paolochiesifoundation.org/'},\n", + " {'address': 'Charles Stewart Mott Foundation 503 South Saginaw St., Suite '\n", + " '1200 48502 Flint, MI United States',\n", + " 'country': 'United States',\n", + " 'email': 'info@mott.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['South Africa'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5118,\n", + " 'link': 'https://philea.eu/members/charles-stewart-mott-foundation/',\n", + " 'name': 'Charles Stewart Mott Foundation',\n", + " 'philea_info': {'About': 'The Charles Stewart Mott Foundation, a private '\n", + " 'philanthropy, was established by an automotive '\n", + " 'pioneer in 1926 in Flint, Michigan. Over the past '\n", + " 'two decades, it has greatly expanded its '\n", + " 'programming to support nonprofit programs '\n", + " 'throughout the United States and internationally.',\n", + " 'Geographic Focus': 'Flint, Michigan; US; Central and '\n", + " 'eastern Europe (CEE); South Africa',\n", + " 'Mission': 'To support efforts that promote a just, '\n", + " 'equitable and sustainable society through its '\n", + " 'programs.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: – Civil Society\\n'\n", + " '– Environment\\n'\n", + " '– Flint Area\\n'\n", + " '– Education\\n'\n", + " '– Exploratory and Special Projects Civil '\n", + " 'Society\\n'\n", + " 'Helps strengthening the role of '\n", + " 'philanthropy and the nonprofit sector in '\n", + " 'increasing civic engagement and '\n", + " 'improving communities and societies. '\n", + " 'Environment\\n'\n", + " 'Helps to create accountable and '\n", + " 'responsive institutions, sound public '\n", + " 'policies and sustainable models of '\n", + " 'development that protect communities, as '\n", + " 'well as the diversity and integrity of '\n", + " 'selected ecosystems in North America and '\n", + " 'around the world. Flint Area\\n'\n", + " 'Helps the foundation’s hometown of '\n", + " 'Flint, Michigan, develop into a '\n", + " 'well-functioning, connected community '\n", + " 'that’s capable of meeting economic, '\n", + " 'social and racial challenges. Education\\n'\n", + " 'Aims to create an environment in which '\n", + " 'all children and young people, '\n", + " 'particularly those from low- and '\n", + " 'moderate-income households, have access '\n", + " 'to quality educational experiences that '\n", + " 'help them achieve academic and economic '\n", + " 'success. Exploratory and Special '\n", + " 'Projects\\n'\n", + " 'Supports unusual or unique opportunities '\n", + " 'addressing significant national and '\n", + " 'international problems. Proposals are by '\n", + " 'invitation only.'},\n", + " 'position': {'address': 'Charles Stewart Mott Foundation, 503 S Saginaw St '\n", + " '#1200, Flint, MI 48502, United States',\n", + " 'city': 'Flint',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 43.0158607,\n", + " 'lng': -83.6904,\n", + " 'name': 'Charles Stewart Mott Foundation',\n", + " 'place_id': 'ChIJO107KheCI4gRTYacAc2ko6Q',\n", + " 'post_code': '48502',\n", + " 'state': 'Michigan',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Saginaw Street',\n", + " 'street_name_short': 'Saginaw St',\n", + " 'street_number': '503',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.mott.org'},\n", + " {'address': 'Charities Aid Foundation 25 Kings Hill Avenue ME19 4TA Kings '\n", + " 'Hill United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': 'enquiries@cafonline.org',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['South Africa'],\n", + " 'Asia & Pacific': ['Australia', 'India'],\n", + " 'Europe (Central & Eastern / Balkans)': ['Bulgaria'],\n", + " 'Latin America & Caribbean': ['Brazil'],\n", + " 'North America': ['Canada']},\n", + " 'id': 5117,\n", + " 'link': 'https://philea.eu/members/charities-aid-foundation/',\n", + " 'name': 'Charities Aid Foundation',\n", + " 'philea_info': {'About': 'The origins of the Charities Aid Foundation (CAF) '\n", + " 'date back to 1924, when the National Council of '\n", + " 'Social Service set up a Charities Department to '\n", + " 'encourage more efficient giving to charity. In '\n", + " '1974, the department was re-constituted as the '\n", + " 'Charities Aid Foundation and registered as a '\n", + " 'charity with a board of independent trustees. We '\n", + " 'help individual donors to give more effectively; '\n", + " 'we support businesses to achieve greater impact '\n", + " 'with their giving and we help charities to thrive. '\n", + " 'We operate globally, distributing over £440m in '\n", + " 'donations a year to 100 countries. We work with '\n", + " '50,000 non-profit organisations. Drawing on our '\n", + " 'research and our practical experience of working '\n", + " 'with donors and charities, we work to protect the '\n", + " 'enabling environment for philanthropy in developed '\n", + " 'markets, and to build a culture of philanthropy in '\n", + " 'emerging markets.',\n", + " 'Geographic Focus': 'Offices in : America, Australia, '\n", + " 'Brazil, Bulgaria, Canada, India, '\n", + " 'Russia, South Africa the UK and '\n", + " 'partners across the globe.',\n", + " 'Mission': 'The Charities Aid Foundation’s mission is to '\n", + " 'motivate society to give ever more effectively, '\n", + " 'helping to transform lives and communities '\n", + " 'around the world. We help people and businesses '\n", + " 'support the causes they care about, and for '\n", + " 'charities, we provide simple and straightforward '\n", + " 'day-to-day banking and fundraising services, '\n", + " 'freeing them up to concentrate on the real work '\n", + " 'of making a difference.\\n'\n", + " 'For 90 years, we’ve found the most effective and '\n", + " 'efficient ways to connect donors to the causes '\n", + " 'that matter to them and for money to get where '\n", + " 'it’s needed. As a charity, making an impact in '\n", + " 'the charitable sector is what drives us.',\n", + " 'Programme Areas': 'CAF operates in the following areas: • '\n", + " 'Individual giving\\n'\n", + " '• Company giving\\n'\n", + " '• Working with charities\\n'\n", + " '• Grantmaking\\n'\n", + " '• Advisory and Consulting\\n'\n", + " '• Research and policy\\n'\n", + " '• International services Individual '\n", + " 'Giving\\n'\n", + " 'Helps individuals plan their charitable '\n", + " 'giving, using means such as the CAF '\n", + " 'Charity Account, a system which acts '\n", + " 'like a current account for '\n", + " 'charitable-giving; Give As You Earn, a '\n", + " 'pre-tax payroll giving scheme; gift '\n", + " 'vouchers; legacy services; services for '\n", + " 'individuals who wish to make non-cash '\n", + " 'gifts; and a scheme to enable donors to '\n", + " 'provide enduring support for the causes '\n", + " 'they care about. Company Giving\\n'\n", + " 'Offers advice and support to companies '\n", + " 'to help them engage more effectively '\n", + " 'with their employees and the community. '\n", + " 'Initiatives include the design and '\n", + " 'promotion of employee giving; matched '\n", + " 'giving; volunteer programmes; and '\n", + " 'special charity accounts. Working with '\n", + " 'Charities\\n'\n", + " 'Provides charities with access to '\n", + " 'carefully selected fund management '\n", + " 'services, from banking and investments, '\n", + " 'to loan finance and donations '\n", + " 'management. Grantmaking\\n'\n", + " 'Helps smaller charitable organisations '\n", + " 'manage themselves more effectively '\n", + " 'through the provision of development '\n", + " 'grants, training and consultancy '\n", + " 'support. Advisory and Consulting\\n'\n", + " 'Provides charities with access to '\n", + " 'tailored consultancy services ranging '\n", + " 'from quick organisational reviews to '\n", + " 'longer-term assistance with charity '\n", + " 'mergers. Internationally, CAF Consulting '\n", + " 'works to increase the skill levels, '\n", + " 'enhance the flow of funds, and improve '\n", + " 'the long-term sustainability of NGOs. '\n", + " 'Research and Policy\\n'\n", + " 'Publishes facts, information and '\n", + " 'analysis on the voluntary sector. The '\n", + " 'publications are targeted towards '\n", + " 'informing the decisions made by donors, '\n", + " 'charities, businesses and the '\n", + " 'government. International Services\\n'\n", + " 'Delivers international donor services, '\n", + " 'including private and corporate social '\n", + " 'investment, and seeks to create a '\n", + " 'framework that enables giving to '\n", + " 'flourish.'},\n", + " 'position': {'address': 'Charities Aid Foundation, 25 Kings Hill Avenue, '\n", + " 'Kings Hill, West Malling ME19 4TA, United Kingdom',\n", + " 'city': 'West Malling',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.2776417,\n", + " 'lng': 0.3949744000000001,\n", + " 'name': 'Charities Aid Foundation',\n", + " 'place_id': 'ChIJw6Pi7Ok130cRZoEb5rjdvhY',\n", + " 'post_code': 'ME19 4TA',\n", + " 'state': 'England',\n", + " 'street_name': 'Kings Hill Avenue',\n", + " 'street_name_short': 'Kings Hill Ave',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Sciences & Research',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cafonline.org'},\n", + " {'address': 'Carnegie United Kingdom Trust Andrew Carnegie House, '\n", + " 'Pittencrieff Street KY12 8AW Dunfermline, Fife United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Ireland'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5108,\n", + " 'link': 'https://philea.eu/members/carnegie-uk-trust/',\n", + " 'name': 'Carnegie UK Trust',\n", + " 'philea_info': {'About': 'Founded in 1913, the Carnegie United Kingdom Trust '\n", + " 'was established as a think-tank and grantmaking '\n", + " 'organisation in the UK and Ireland. The trust is '\n", + " 'one of 22 based in the US and Europe, established '\n", + " 'by the Scottish-American, Andrew Carnegie. The '\n", + " 'Carnegie UK Trust has links with the network of '\n", + " 'sister trusts, one example being through '\n", + " 'co-organising the International Carnegie Medal for '\n", + " 'Philanthropy.',\n", + " 'Geographic Focus': 'UK and Ireland, also part of the '\n", + " 'international network of Carnegie '\n", + " 'foundations.',\n", + " 'Mission': 'To improve the welbeing of people throughout the '\n", + " 'UK and Ireland, by changing minds through '\n", + " 'influencing policy, and by changing lives '\n", + " 'through innovative practice and partnership '\n", + " 'work.',\n", + " 'Programme Areas': 'The 2016-2020 Strategic Plan sets three '\n", + " 'Strategic Objectives for the work of the '\n", + " 'trust: 1.Be a recognised leader in '\n", + " 'wellbeing and its links to public '\n", + " 'policy\\n'\n", + " '2.Be a champion for sharing learning '\n", + " 'between all jurisdictions of the UK and '\n", + " 'Ireland\\n'\n", + " '3.Make working across the public, '\n", + " 'private and voluntary sector more normal '\n", + " 'and valued These objectives are embedded '\n", + " 'across all of the trust’s work and '\n", + " 'through its strategic category of '\n", + " 'Enabling Wellbeing. The trust has '\n", + " 'selected three specific work areas in '\n", + " 'which to pursue its objectives. These '\n", + " 'are: Digital Futures, Flourishing Towns, '\n", + " 'Fulfilling Work – Digital Futures theme '\n", + " 'explores how the rapid advances in '\n", + " 'digital technology can be exploited to '\n", + " 'optimise improvements in wellbeing for '\n", + " 'people across the UK and Ireland\\n'\n", + " '– Flourising Towns: the trust seeks to '\n", + " 'play a leading role in supporting '\n", + " 'influential policy development and '\n", + " 'innovative practice in our towns\\n'\n", + " '– Enabling Wellbeing: theme explores the '\n", + " 'links between work and wellbeing the '\n", + " 'mechanisms for ensuring that the work '\n", + " 'has a positive influence on our '\n", + " 'wellbeing.'},\n", + " 'position': {'address': 'Carnegie UK Trust, Andrew Carnegie House, '\n", + " 'Pittencrieff Street, Dunfermline, Fife KY12 8AW, '\n", + " 'United Kingdom',\n", + " 'city': 'Dunfermline',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 56.0715426,\n", + " 'lng': -3.4705687,\n", + " 'name': 'Carnegie UK Trust',\n", + " 'place_id': 'ChIJW_D-_iXSh0gRnGT6ssOIskI',\n", + " 'post_code': 'KY12 8AW',\n", + " 'state': 'Scotland',\n", + " 'street_name': 'Pittencrieff Street',\n", + " 'street_name_short': 'Pittencrieff St',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs', 'Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.carnegieuktrust.org.uk'},\n", + " {'address': 'Carlsbergfondet H.C. Andersens Boulevard 35 1553 Copenhagen V '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Denmark']},\n", + " 'id': 5107,\n", + " 'link': 'https://philea.eu/members/carlsberg-foundation/',\n", + " 'name': 'Carlsberg Foundation',\n", + " 'philea_info': {'About': 'CarlsbergFondet was established in 1876 by Brewer '\n", + " 'J.C. Jacobsen. Following his death in 1887, the '\n", + " 'Foundation became the sole owner of the Old '\n", + " 'Carlsberg Brewery. In 1902, the Carlsberg '\n", + " 'Foundation also became the owner of Carl '\n", + " 'Jacobsen’s New Carlsberg Brewery. When Carlsberg '\n", + " 'merged with Tuborg in 1970, the Carlsberg '\n", + " 'Foundation was awarded a mandatory ownership of at '\n", + " 'least 51% of the shares in Carlsberg A/S.',\n", + " 'Geographic Focus': 'Denmark',\n", + " 'Mission': 'The Carlsberg Foundation supports excellent '\n", + " 'basic research within the fields of natural '\n", + " 'science, the humanities and social science. '\n", + " 'Furthermore, the Foundation works to maintain '\n", + " 'and develop the Museum of National History at '\n", + " 'Frederiksborg Castle; to grant funds for '\n", + " 'socially beneficial objectives through the '\n", + " 'Tuborg Foundation; and to fund and manage the '\n", + " 'Carlsberg Laboratory, which is an independent '\n", + " 'unit under the Carlsberg Research Centre. '\n", + " 'Finally, the Carlsberg Foundation supports the '\n", + " 'arts through the New Carlsberg Foundation',\n", + " 'Programme Areas': 'The foundation supports basic scholarly '\n", + " 'objectives, helping to finance projects, '\n", + " 'apparatus and equipment, thesis '\n", + " 'printing, and travel and research '\n", + " 'visits. The Carlsberg Foundation funds '\n", + " 'scientific research within the natural '\n", + " 'sciences, humanities and social '\n", + " 'sciences. Through yearly grants the '\n", + " 'Foundations funds also funds research at '\n", + " 'its departments: Carlsberg Laboratory, '\n", + " 'The Museum of National History at '\n", + " 'Frederiksborg Castle, The Tuborg '\n", + " 'Foundation The foundation is active in '\n", + " 'the following areas: • Natural science, '\n", + " 'including mathematics and philosophy\\n'\n", + " '• Humanities and social sciences '\n", + " 'Scientific Social Responsibility (SSR) '\n", + " 'is a new approach that can best be '\n", + " 'described as a third dimension of '\n", + " 'scientists’ traditional responsibility '\n", + " 'for research and education.\\n'\n", + " 'SSR means that the research supported by '\n", + " 'the Carlsberg Foundation must be '\n", + " 'visionary and innovative and must help '\n", + " 'solve a number of fundamental and '\n", + " 'universal social problems. This applies '\n", + " 'to the natural sciences as well as to '\n", + " 'the humanities and social sciences.'},\n", + " 'position': {'address': 'Carlsbergfondet, H. C. Andersens Boulevard, '\n", + " 'Copenhagen Municipality, Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6731157,\n", + " 'lng': 12.5738124,\n", + " 'name': 'Carlsbergfondet',\n", + " 'place_id': 'ChIJG6lQChNTUkYRuHvELW4UWjE',\n", + " 'post_code': '1553',\n", + " 'street_name': 'H. C. Andersens Boulevard',\n", + " 'street_name_short': 'H. C. Andersens Blvd.',\n", + " 'street_number': '35',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture', 'Education', 'Sciences & Research'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.carlsbergfondet.dk'},\n", + " {'address': '',\n", + " 'country': 'Austria',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Europe (Western / General)': ['Austria', 'Europe']},\n", + " 'id': 5376,\n", + " 'link': 'https://philea.eu/members/caritas-foundation-austria/',\n", + " 'name': 'Caritas Foundation Austria',\n", + " 'philea_info': {'About': 'Because distress has a different face in every '\n", + " 'country, Caritas Foundation Austria, as a part of '\n", + " 'Caritas Austria, is involved in the international '\n", + " 'Caritas network in its foreign and disaster '\n", + " 'relief, in which more than 160 Caritas '\n", + " 'organizations worldwide are serving humanity.',\n", + " 'Geographic Focus': 'Austria, Europe, Africa',\n", + " 'Mission': 'The core mission of Caritas is to see hardship '\n", + " 'and act against it. And to stand up and speak '\n", + " 'for those people who have no voice. This means '\n", + " 'respecting and protecting human life from '\n", + " 'beginning to end and helping people in distress, '\n", + " 'regardless of their background, religion or '\n", + " 'gender to lead a dignified and self-determined '\n", + " 'life. The objectives of Caritas Foundation '\n", + " 'Austria are:\\n'\n", + " 'a) The direct support of people in need;\\n'\n", + " 'b) Helping people in need – regardless of their '\n", + " 'background, religion or gender;\\n'\n", + " 'c) Providing assistance in national and '\n", + " 'international disaster situations;\\n'\n", + " 'd) Combating poverty and hardship in developing '\n", + " 'countries by promoting economic and social '\n", + " 'development, which shall lead to a sustainable '\n", + " 'economic development and growth, combined with '\n", + " 'structural and social change.',\n", + " 'Programme Areas': '‘- Help for people in need\\n'\n", + " '– Care and support\\n'\n", + " '– Help for people with disabilities\\n'\n", + " '– Support for refugees and asylum '\n", + " 'seekers\\n'\n", + " '– Foreign aid'},\n", + " 'position': {'address': 'Austria',\n", + " 'country': 'Austria',\n", + " 'country_short': 'AT',\n", + " 'lat': 47.516231,\n", + " 'lng': 14.550072,\n", + " 'name': 'Austria',\n", + " 'place_id': 'ChIJfyqdJZsHbUcRr8Hk3XvUEhA',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Humanitarian & Disaster Relief'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.caritas-foundation.at'},\n", + " {'address': 'Captain Vassilis and Carmen Constantakopoulos Foundation Zefyrou '\n", + " '60 P. Faliro 17564 Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Greece'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5106,\n", + " 'link': 'https://philea.eu/members/captain-vassilis-and-carmen-constantakopoulos-foundation/',\n", + " 'name': 'Captain Vassilis and Carmen Constantakopoulos Foundation',\n", + " 'philea_info': {'About': 'The aim of the Foundation is to establish Messinia '\n", + " 'as a model for sustainable development, by '\n", + " 'supporting and promoting related projects. In '\n", + " 'addition to that it supports similar efforts '\n", + " 'nationwide.\\n'\n", + " 'The Foundation focuses on three main axes, namely '\n", + " 'agricultural development, social support, and '\n", + " 'cultural development, while it supported '\n", + " 'environmental activities as well.\\n'\n", + " 'The Foundation works on a “bottom up” basis while '\n", + " 'keeping in close contact with all technical '\n", + " 'experts on its fields, ensuring relevance and '\n", + " 'technical expertise in its actions.',\n", + " 'Geographic Focus': 'Greece, Southern Europe',\n", + " 'Mission': 'The aim of the Foundation is to establish '\n", + " 'Messinia as a model for sustainable development, '\n", + " 'by supporting and promoting related projects. In '\n", + " 'addition to that it supports similar efforts '\n", + " 'nationwide.\\n'\n", + " 'The Foundation focuses on three main axes, '\n", + " 'namely agricultural development, social support, '\n", + " 'and cultural development, while it supported '\n", + " 'environmental activities as well.\\n'\n", + " 'The Foundation works on a “bottom up” basis '\n", + " 'while keeping in close contact with all '\n", + " 'technical experts on its fields, ensuring '\n", + " 'relevance and technical expertise in its '\n", + " 'actions.',\n", + " 'Programme Areas': 'Agriculture:\\n'\n", + " '– Centre for agricultural '\n", + " 'entrepreneurship: Since 2016 the '\n", + " 'Foundation with the technical advise of '\n", + " 'the American Farm School, has '\n", + " 'established and operates the Messinian '\n", + " 'Centre for Agricultural Entrepreneurship '\n", + " '(KAEM).\\n'\n", + " 'The Center’s main goals are to teach the '\n", + " '“art of entrepreneurship,” to support '\n", + " 'outreach and to develop collaborations '\n", + " 'with businesses in the agri-food sector, '\n", + " 'through actions pertaining to:\\n'\n", + " '1. The development of experiential '\n", + " 'seminars on agri-food topics.\\n'\n", + " '2. The development of entrepreneurial '\n", + " 'thinking and consulting services.\\n'\n", + " '3. The start of entrepreneurial '\n", + " 'activities, and observation of their '\n", + " 'progress.\\n'\n", + " '4. The creation of a pool of similar '\n", + " 'collaborative entrepreneurial '\n", + " 'activities.\\n'\n", + " '5. The grouping and interconnection for '\n", + " 'the outreach of producers and products '\n", + " 'in collaboration with other relevant '\n", + " 'sectors.\\n'\n", + " '– Precision Farming: Since 2018 we '\n", + " 'started a pilot project of precision '\n", + " 'farming in the area to train local '\n", + " 'farmers in the new technologies of '\n", + " 'farming. The project has delivered and '\n", + " 'soon we will move to more extensive '\n", + " 'coverage as well as new cultivations '\n", + " '(grapes etc) Culture:\\n'\n", + " 'The Foundation supports a series of '\n", + " 'cultural contemporary events in the area '\n", + " 'such as the Kalamata Dance Festival, the '\n", + " 'Oxbelly initiative (film initiative) as '\n", + " 'well as a series of excavations of '\n", + " 'archaeological importance such as the '\n", + " 'Nestor’s Palace, the Thuria excavation, '\n", + " 'Iklaena excavation, Ancient Messini etc '\n", + " 'Social support:\\n'\n", + " 'The Foundation runs together with '\n", + " 'Children SOS Villages a Centre for '\n", + " 'Family and Employment Support. Its aim '\n", + " 'is to support families in all aspects. '\n", + " 'Children follow up activities after '\n", + " 'school while parents follow capacity '\n", + " 'building projects with a social worker, '\n", + " 'psychologist and employment consultant. '\n", + " 'In Athens together with “Metadrasi” the '\n", + " 'Foundation supports “Stepping Stone” a '\n", + " 'refugee integration project through '\n", + " 'employment and capacity building. CVCCF '\n", + " 'also supports a series of projects that '\n", + " 'support and engage people with special '\n", + " 'needs. Environment:\\n'\n", + " 'The Foundation supports WWF to monitor '\n", + " 'cetaceans in the Ionian sea. CVCCF also '\n", + " 'supports “Enaleia” organization in '\n", + " 'training fisherman in sustainable '\n", + " 'fishing. The Foundation also runs a '\n", + " 'series of local clean ups to enhance '\n", + " 'awareness and capacity building to the '\n", + " 'Municipalities.'},\n", + " 'position': {'address': 'CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS '\n", + " 'FOUNDATION, Zefirou, Palaio Faliro, Greece',\n", + " 'city': 'Paleo Faliro',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9385836,\n", + " 'lng': 23.6953717,\n", + " 'name': 'CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION',\n", + " 'place_id': 'ChIJGyhnAT-8oRQRswlTl7h3aXs',\n", + " 'post_code': '175 64',\n", + " 'state': 'Notios Tomeas Athinon',\n", + " 'street_name': 'Zefirou',\n", + " 'street_number': '60',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Arts & Culture',\n", + " 'Education',\n", + " 'Food, Agriculture & Nutrition',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty',\n", + " 'Youth/Children Development'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.cvf.gr'},\n", + " {'address': \"Calala Women's Fund Girona 25 08010 Barcelona Spain\",\n", + " 'country': 'Spain',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Spain']},\n", + " 'id': 5104,\n", + " 'link': 'https://philea.eu/members/calala-womens-fund/',\n", + " 'name': \"Calala Women's Fund\",\n", + " 'philea_info': {'About': 'Calala gives grants to grassroots women’s '\n", + " 'organizations in Central America and Spain, mainly '\n", + " 'focused on migrant, young, indigenous, domestic '\n", + " 'workers women’s organizations. Calala also runs '\n", + " 'Cooperation Development projects with women’s '\n", + " 'organizations in Central America.',\n", + " 'Geographic Focus': 'Spain and Central America',\n", + " 'Mission': 'Calala is a women’s fund based in Barcelona that '\n", + " 'promotes rights, empowerment and leadership of '\n", + " 'women in Central America, the Caribbean and '\n", + " 'Spain by mobilising resources set aside for '\n", + " 'strengthening their organisations, networks and '\n", + " 'movements.',\n", + " 'Programme Areas': 'Calala focuses on Women’s Rights, Sexual '\n", + " 'and Reproductive Rights, Women Human '\n", + " 'Rights Defenders, Migrant women.'},\n", + " 'position': {'address': 'Carrer de Girona, 25, 08010 Barcelona, Spain',\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3916922,\n", + " 'lng': 2.1747488,\n", + " 'name': 'Carrer de Girona, 25',\n", + " 'place_id': 'ChIJ28kmXOWipBIRr6lTJkuhwZw',\n", + " 'post_code': '08010',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Carrer de Girona',\n", + " 'street_number': '25',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Human/Civil Rights'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.calala.org'},\n", + " {'address': 'Bulgarian Donors Forum 4B Leonardo da Vinchi Str., floor 2 1124 '\n", + " 'Sofia Bulgaria',\n", + " 'country': 'Bulgaria',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5102,\n", + " 'link': 'https://philea.eu/members/bulgarian-donors-forum/',\n", + " 'name': 'Bulgarian Donors Forum',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': '1124 Sofia, Bulgaria',\n", + " 'city': 'Sofia',\n", + " 'country': 'Bulgaria',\n", + " 'country_short': 'BG',\n", + " 'lat': 42.6874493,\n", + " 'lng': 23.3457036,\n", + " 'name': '1124',\n", + " 'place_id': 'ChIJv7yyXpiFqkAR2XFfjYGgBdQ',\n", + " 'post_code': '1124',\n", + " 'state': 'Sofia City Province',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.dfbulgaria.org'},\n", + " {'address': 'Both ENDS Nieuwe Keizersgracht 45 1018 VC Amsterdam Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5101,\n", + " 'link': 'https://philea.eu/members/both-ends/',\n", + " 'name': 'Both ENDS',\n", + " 'philea_info': {'About': 'In 1986, representatives from 15 Dutch '\n", + " 'environmental organisations met to discuss the '\n", + " 'daily reality that thousands of nature- and '\n", + " 'environmental organisations in developing '\n", + " 'countries have to cope with. utch environmental '\n", + " 'organisations created Both ENDS: Environment and '\n", + " 'Development Service. The former IUCN-ledencontact '\n", + " '(now IUCN Netherlands) adopted Both ENDS as a '\n", + " 'project and gave it a home. The project’s goal was '\n", + " 'to offer support and guidance to organisations '\n", + " 'around the world. Since 1986, Both ENDS has '\n", + " 'supported many hundreds of environmental '\n", + " 'organisations in Africa, Asia, Latin America and '\n", + " 'countries in Central- and Eastern Europe.',\n", + " 'Mission': 'Both ENDS is an independent non-governmental '\n", + " 'organisation (NGO) that works towards a '\n", + " 'sustainable future for the planet. They do so by '\n", + " 'identifying and strengthening civil society '\n", + " 'organisations (CSOs), mostly in developing '\n", + " 'countries, that come up with sustainable '\n", + " 'solutions for environmental and poverty-related '\n", + " 'issues.',\n", + " 'Programme Areas': 'WATER Both ENDS supports Southern civil '\n", + " 'society organisations and networks that '\n", + " 'are fighting against non-sustainable '\n", + " 'solutions and trying to come up with '\n", + " 'alternative approaches to sustainable '\n", + " 'water management. LAND Deforestation and '\n", + " 'forest degradation, the production of '\n", + " 'soy and palm oil: the challenges that '\n", + " 'are created by this as well as the '\n", + " 'strive for Social Responsibility are '\n", + " 'central focus areas for Both ENDS in its '\n", + " 'sustainable land usage programmes. '\n", + " 'CAPITAL FLOWS Human interaction with the '\n", + " 'environment and natural resources is '\n", + " 'often largely determined by developments '\n", + " 'and decisions made on an economic- '\n", + " '(trade and investment) and political '\n", + " '(macro-economic policy, budget) level. '\n", + " 'Both ENDS does it utmost to influence '\n", + " 'decision-making processes and to '\n", + " 'anticipate the processes that generate '\n", + " 'trade- and international funding.'},\n", + " 'position': {'address': 'Nieuwe Keizersgracht 45, 1018 VC Amsterdam, '\n", + " 'Netherlands',\n", + " 'city': 'Amsterdam',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.36574659999999,\n", + " 'lng': 4.906903300000001,\n", + " 'name': 'Nieuwe Keizersgracht 45',\n", + " 'place_id': 'ChIJVYVl5JcJxkcRkroYCcBnqIA',\n", + " 'post_code': '1018 VC',\n", + " 'state': 'Noord-Holland',\n", + " 'state_short': 'NH',\n", + " 'street_name': 'Nieuwe Keizersgracht',\n", + " 'street_number': '45',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Associate member', 'value': 'member'},\n", + " 'website': 'http://www.bothends.org'},\n", + " {'address': 'Bodossaki Foundation Mourouzi 14 10674 Athens Greece',\n", + " 'country': 'Greece',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Greece']},\n", + " 'id': 5100,\n", + " 'link': 'https://philea.eu/members/bodossaki-foundation/',\n", + " 'name': 'Bodossaki Foundation',\n", + " 'philea_info': {'About': 'The Bodossaki Foundation was established in 1973 '\n", + " 'and is one of the most respected privately owned '\n", + " 'public-benefit organisations in Greece. It exists '\n", + " 'and thrives thanks to the long-standing, '\n", + " 'determined and consistent efforts of its founder, '\n", + " 'Prodromos Bodossakis – Athanassiades to support '\n", + " 'the state, society and his fellow people. It is a '\n", + " 'legacy of the tradition he himself maintained, '\n", + " 'together with many other Greek benefactors and '\n", + " 'representatives of the Greek diaspora.\\n'\n", + " 'Prodromos Bodossakis – Athanassiades was one of '\n", + " 'the most important Greeks of the 20th century. A '\n", + " 'talented entrepreneur, gifted with imagination, '\n", + " 'vision and courage, he generated an important '\n", + " 'personal fortune, which he dedicated to the '\n", + " 'progress of the Greek people. The Bodossaki '\n", + " 'Foundation is the culmination of his personal '\n", + " 'journey and the continuity and evolution of his '\n", + " 'personal vision for a better Greece.',\n", + " 'Geographic Focus': 'Greece',\n", + " 'Mission': 'The Bodossaki Foundation is currently active in '\n", + " 'four main strategic pillars: education, health, '\n", + " 'protection of the environment and the '\n", + " 'empowerment of civil society.\\n'\n", + " 'The Foundation has deep knowledge of the '\n", + " 'non-profit sector in Greece and since its '\n", + " 'inception it has managed more than €450 million, '\n", + " 'which has been disbursed placing great emphasis '\n", + " 'on increasing equal opportunities, on '\n", + " 'contributing to the education of young people, '\n", + " 'on improving medical and research infrastructure '\n", + " 'and on promoting environmental protection.\\n'\n", + " 'Its vision is to enable human and social '\n", + " 'potential for a better life.',\n", + " 'Programme Areas': 'The foundation is active in the '\n", + " 'following areas: Supporting education '\n", + " 'and scientific excellence\\n'\n", + " 'The Foundation’s scholarship programmes '\n", + " 'offer Greek graduates the opportunity to '\n", + " 'continue their studies at a '\n", + " 'postgraduate, doctoral or post-doctoral '\n", + " 'level. By supporting university research '\n", + " 'laboratories and other research centers, '\n", + " 'the Foundation empowers Greek scientists '\n", + " 'to stay in Greece and continue to '\n", + " 'support their homeland through their '\n", + " 'work. Through the Bodossaki scientific '\n", + " 'awards and prizes, the Foundation '\n", + " 'promotes scientific excellence and '\n", + " 'fosters positive role models for the '\n", + " 'Greek society. Promoting health, the '\n", + " 'environment and innovation\\n'\n", + " 'In the area of health, the Foundation '\n", + " 'funds the development of infrastructure '\n", + " 'and the construction of public hospitals '\n", + " 'and clinics, as well as the acquisition '\n", + " 'of medical and laboratory equipment, '\n", + " 'aiming to ensure equal access to health '\n", + " 'and medical services and to improve the '\n", + " 'quality of healthcare, particularly for '\n", + " 'socially vulnerable groups.\\n'\n", + " 'The Foundation has also supported a '\n", + " 'large number of projects promoting '\n", + " 'environmental protection, working with '\n", + " 'universities and environmental '\n", + " 'organisations. It also supports '\n", + " 'innovation and entrepreneurship, in '\n", + " 'cooperation with universities, banks, '\n", + " 'embassies and innovation clusters. To '\n", + " 'strengthen the connection between '\n", + " 'innovative research and '\n", + " 'entrepreneurship, the Foundation '\n", + " 'implements an innovative funding '\n", + " 'programme for the granting of IP rights '\n", + " '(patents) to researchers in Greek '\n", + " 'universities and research centers. '\n", + " 'Supporting civil society\\n'\n", + " 'The Bodossaki Foundation has deep '\n", + " 'knowledge of the non-profit sector in '\n", + " 'Greece as well as of emerging and '\n", + " 'long-term social needs. The Foundation '\n", + " 'applies a needs assessment methodology '\n", + " 'in the design of each programme. '\n", + " 'Programmes and grants management '\n", + " 'implementation and monitoring is '\n", + " 'executed on the basis of a '\n", + " 'Results-Based-Methodology (RBD). The '\n", + " 'Foundation also works with third parties '\n", + " '(such as businesses and other '\n", + " 'not-for-profit organisations) which are '\n", + " 'active in corporate social '\n", + " 'responsibility, in order to identify, '\n", + " 'develop, implement and monitor social '\n", + " 'investment programmes that match the '\n", + " 'organisation’s strategic needs and '\n", + " 'priorities and can deliver economic and '\n", + " 'social benefits for all stakeholders.\\n'\n", + " 'Through the management of the 7,34m Euro '\n", + " 'funding of the EEA Grants NGO programme '\n", + " 'for Greece (2013 – 2017), Bodossaki has '\n", + " 'directly supported more than 100 NGOs '\n", + " 'which delivered a total number of 75 '\n", + " 'projects across Greece, reaching out to '\n", + " 'more than 205,000 beneficiaries. In '\n", + " 'partnership with SolidarityNow, '\n", + " 'Bodossaki currently acts as the Fund '\n", + " 'Operator of the new EEA Grants NGO fund '\n", + " 'named “Active Citizens Fund”, with a '\n", + " 'total budget of 12m euros for Greece. '\n", + " 'Attracting donations and grants\\n'\n", + " 'Through the Bodossaki Foundation, anyone '\n", + " 'wishing to fund public benefit projects '\n", + " 'in Greece – whether a corporate entity, '\n", + " 'not-for-profit organisation or private '\n", + " 'donor – can do so and benefit from the '\n", + " 'team’s experience and expertise in '\n", + " 'philanthropy consulting and programme '\n", + " 'management. Potential donors will also '\n", + " 'benefit from the Foundation’s mechanisms '\n", + " 'of implementation and monitoring, '\n", + " 'established to secure transparency, '\n", + " 'accountability and maximisation of each '\n", + " 'programme or donation’s impact. '\n", + " 'Sustainability through capacity '\n", + " 'building\\n'\n", + " 'The Foundation closely supports NGOs and '\n", + " 'project partners with learning, '\n", + " 'mentoring and networking opportunities '\n", + " 'through Social Dynamo, its NGO hub '\n", + " 'implemented in cooperation with the '\n", + " 'synAthina team of the Municipality of '\n", + " 'Athens. Thanks to the contribution of a '\n", + " 'wide network of collaborators and '\n", + " 'partners from the non-profit and the '\n", + " 'private sector, NGOs and informal groups '\n", + " 'are supported with training, consulting, '\n", + " 'mentoring and coaching services.'},\n", + " 'position': {'address': 'Bodossaki Foundation, Mourouzi 14, Athens 106 74, '\n", + " 'Greece',\n", + " 'city': 'Athina',\n", + " 'country': 'Greece',\n", + " 'country_short': 'GR',\n", + " 'lat': 37.9749303,\n", + " 'lng': 23.7424664,\n", + " 'name': 'Bodossaki Foundation',\n", + " 'place_id': 'ChIJFaVBWUC9oRQRMIVlYekEh8U',\n", + " 'post_code': '106 74',\n", + " 'state': 'Kentrikos Tomeas Athinon',\n", + " 'street_name': 'Mourouzi',\n", + " 'street_number': '14',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bodossaki.gr/en'},\n", + " {'address': 'BMW Foundation Herbert Quandt Reinhardstrasse 58 10117 Berlin '\n", + " 'Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Western / General)': ['Europe'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5099,\n", + " 'link': 'https://philea.eu/members/bmw-foundation-herbert-quandt/',\n", + " 'name': 'BMW Foundation Herbert Quandt',\n", + " 'philea_info': {'About': 'The BMW Foundation Herbert Quandt was established '\n", + " 'on June 22, 1970, on the occasion of the 60th '\n", + " 'birthday of Herbert Quandt and in recognition of '\n", + " 'his services to BMW AG. Through annual donations, '\n", + " 'BMW AG in addition contributes to the payment of '\n", + " 'the foundation’s personnel and material costs. For '\n", + " 'its further development, the foundation adheres to '\n", + " 'the “Principles of Good Foundation Practice”, '\n", + " 'formulated by the Association of German '\n", + " 'Foundations.',\n", + " 'Geographic Focus': 'Europe, North America, Asia, South '\n", + " 'America, North Africa & Middle East',\n", + " 'Mission': '• The BMW Foundation Herbert Quandt promotes '\n", + " 'responsible leadership and inspires leaders '\n", + " 'worldwide to work towards a peaceful, just and '\n", + " 'sustainable future. Through their activities, '\n", + " 'the Foundation aims to advance the Sustainable '\n", + " 'Development Goals of the United Nations 2030 '\n", + " 'Agenda.\\n'\n", + " '• They INSPIRE leaders, through leadership '\n", + " 'programs and encounters, to take their social '\n", + " 'and political commitment to the next level – '\n", + " 'across communities, cultures and countries.\\n'\n", + " '• They CONNECT leaders through their global BMW '\n", + " 'Foundation Responsible Leaders Network, a '\n", + " 'diverse, collaborative and joyful community that '\n", + " 'drives positive change through collaborative '\n", + " 'action.\\n'\n", + " '• They INVEST in impactful organisations while '\n", + " 'encouraging leaders to embrace venture '\n", + " 'philanthropy and impact investing as effective '\n", + " 'tools for social change.',\n", + " 'Programme Areas': 'The foundation works in the following '\n", + " 'areas: • Social cohesion\\n'\n", + " '• Responsibility in society (Responsible '\n", + " 'leadership)'},\n", + " 'position': {'address': 'BMW Foundation Herbert Quandt, Reinhardtstraße 58, '\n", + " '10117 Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5222139,\n", + " 'lng': 13.3765928,\n", + " 'name': 'BMW Foundation Herbert Quandt',\n", + " 'place_id': 'ChIJK4FKf8BRqEcRSQWAg1ayVZg',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Reinhardtstraße',\n", + " 'street_number': '58',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://bmw-foundation.org/'},\n", + " {'address': 'Gates Foundation, 5th Avenue North, Seattle, WA, USA',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia', 'Australia'],\n", + " 'Europe (Western / General)': ['Europe']},\n", + " 'id': 5098,\n", + " 'link': 'https://philea.eu/members/gates-foundation/',\n", + " 'name': 'Gates Foundation',\n", + " 'philea_info': {'About': 'The foundation was created in 2000 through the '\n", + " 'merger of the Gates Learning Foundation, which '\n", + " 'worked to expand access to technology through '\n", + " 'public libraries, and the William H. Gates '\n", + " 'Foundation, which focused on improving global '\n", + " 'health.',\n", + " 'Geographic Focus': 'Africa, Asia, Australia, Europe and the '\n", + " 'US',\n", + " 'Mission': 'To help all people lead healthy, productive '\n", + " 'lives; to improve people’s health in developing '\n", + " 'countries and to give them the chance to lift '\n", + " 'themselves out of hunger and extreme poverty; '\n", + " 'and to ensure that all people in the United '\n", + " 'States – especially those with the fewest '\n", + " 'resources – have access to the opportunities '\n", + " 'they need to succeed in school and life.',\n", + " 'Programme Areas': 'The foundation supports programmes in '\n", + " 'the following areas: •Global Development '\n", + " 'Program\\n'\n", + " '•Global Health Program\\n'\n", + " '•Global Policy and Advocacy\\n'\n", + " '•United States Program Global '\n", + " 'Development\\n'\n", + " 'Works to help the world’s poorest people '\n", + " 'lift themselves out of hunger and '\n", + " 'poverty. Global Health\\n'\n", + " 'Aims to harness advances in science and '\n", + " 'technology to save lives in developing '\n", + " 'countries. Global Policy and Advocacy\\n'\n", + " 'Seeks to build strategic relationships '\n", + " 'and promote policies that will help '\n", + " 'advance our work. United States\\n'\n", + " 'Works to improve U.S. high school and '\n", + " 'postsecondary education and support '\n", + " 'vulnerable children and families in '\n", + " 'Washington State.'},\n", + " 'position': {'address': 'Gates Foundation, 5th Avenue North, Seattle, WA, '\n", + " 'USA',\n", + " 'city': 'Seattle',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 47.6233319,\n", + " 'lng': -122.3465813,\n", + " 'place_id': 'ChIJM3d0rEcVkFQRHe-TbdJ-y68',\n", + " 'post_code': '98109',\n", + " 'state': 'Washington',\n", + " 'state_short': 'WA',\n", + " 'street_name': '5th Avenue North',\n", + " 'street_name_short': '5th Ave N',\n", + " 'street_number': '500',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.gatesfoundation.org'},\n", + " {'address': 'Bikuben Foundation Otto Mønsteds Gade 5 1571 Copenhagen V '\n", + " 'Denmark',\n", + " 'country': 'Denmark',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Nordic Region)': ['Greenland']},\n", + " 'id': 5097,\n", + " 'link': 'https://philea.eu/members/bikuben-foundation/',\n", + " 'name': 'Bikuben Foundation',\n", + " 'philea_info': {'About': 'The Bikuben Foundation has its historical roots in '\n", + " 'the mission of the savings bank movement. The '\n", + " 'Bikuben savings bank (“Sparekassen Bikuben”) was '\n", + " 'established in 1857 not only with the commercial '\n", + " 'aim of operating as a bank – it was also to use '\n", + " 'some of its profits for charitable purposes.',\n", + " 'Geographic Focus': 'Denamrk and Greenland',\n", + " 'Mission': 'To make lasting improvements to the societies of '\n", + " 'Denmark and Greenland, through the promotion of '\n", + " 'culture, education, natural resources and social '\n", + " 'work.',\n", + " 'Programme Areas': 'Stage art/theatre\\n'\n", + " 'Exhibitions and arts\\n'\n", + " 'Talent development (arts)\\n'\n", + " 'Homeless youngsters and adults\\n'\n", + " 'Poverty and vulnerable families\\n'\n", + " 'Youth community projects\\n'\n", + " 'Children and youngsters in Greenland\\n'\n", + " 'Arts as a Driver of social change\\n'\n", + " 'Nature as a driver of social change'},\n", + " 'position': {'address': 'Otto Mønsteds Gade 5, Copenhagen Municipality, '\n", + " 'Denmark',\n", + " 'city': 'København',\n", + " 'country': 'Denmark',\n", + " 'country_short': 'DK',\n", + " 'lat': 55.6712256,\n", + " 'lng': 12.5728347,\n", + " 'name': 'Otto Mønsteds Gade 5',\n", + " 'place_id': 'ChIJM7NnNxNTUkYRwtqISVdNOuo',\n", + " 'post_code': '1571',\n", + " 'street_name': 'Otto Mønsteds Gade',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bikubenfonden.dk'},\n", + " {'address': 'Bertelsmann Stiftung Carl-Bertelsmann-Straße 256 Postfach 103 '\n", + " '33311 Gütersloh Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Germany'],\n", + " 'Worldwide': ['International']},\n", + " 'id': 5096,\n", + " 'link': 'https://philea.eu/members/bertelsmann-stiftung/',\n", + " 'name': 'Bertelsmann Stiftung',\n", + " 'philea_info': {'About': 'Bertelsmann Stiftung was established by Reinhard '\n", + " 'Mohn in 1977, who in 1993 transferred 68.8% of the '\n", + " 'capital shares in the Bertelsmann Corporation as '\n", + " 'non-voting shares to the foundation. Currently, '\n", + " 'the foundation’s share in Bertelsmann AG is 76.9%. '\n", + " 'The remaining 23.1% belong to the Mohn family. The '\n", + " 'foundation conducts its nonprofit-making '\n", + " 'activities in the philanthropic traditions of the '\n", + " 'founder families, Bertelsmann and Mohn.',\n", + " 'Geographic Focus': 'Germany and International',\n", + " 'Mission': '“Inspiring people. Shaping the future. '\n", + " 'Participating in a globalised world.”\\n'\n", + " 'The foundation aims to perceive problems within '\n", + " 'society, to help solve them by developing '\n", + " 'exemplary models with experts from practical and '\n", + " 'theoretical fields, and to put these models into '\n", + " 'effect in society.',\n", + " 'Programme Areas': 'The foundation initiates and carries out '\n", + " 'projects itself, working with partners '\n", + " 'in business, government and private '\n", + " 'institutions, in the following areas: – '\n", + " 'Discovering Music\\n'\n", + " '– Living Values\\n'\n", + " '– Business in Society\\n'\n", + " '– Leadership and Corporate Culture\\n'\n", + " '– Germany and Asia\\n'\n", + " '– Integration and Education\\n'\n", + " '– Learning for Life\\n'\n", + " '– Effective Investments in Education\\n'\n", + " '– Future of Democracy\\n'\n", + " '– CHE Centre for Higher Education\\n'\n", + " '– Communities for Better Living\\n'\n", + " '– Improving Health Care – Informing '\n", + " 'Patients\\n'\n", + " '– Civil Society\\n'\n", + " '– Shaping Sustainable Economies\\n'\n", + " '– Europe’s Future\\n'\n", + " '– International Fora and Trends'},\n", + " 'position': {'address': 'Carl-Bertelsmann-Straße 256, Gütersloh, Germany',\n", + " 'city': 'Gütersloh',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 51.9086764,\n", + " 'lng': 8.4190329,\n", + " 'name': 'Carl-Bertelsmann-Straße 256',\n", + " 'place_id': 'ChIJ28HLgm0lukcRmopbhV6HgnQ',\n", + " 'post_code': '33311',\n", + " 'state': 'Nordrhein-Westfalen',\n", + " 'state_short': 'NRW',\n", + " 'street_name': 'Carl-Bertelsmann-Straße',\n", + " 'street_number': '256',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bertelsmann-stiftung.de'},\n", + " {'address': 'Network of Belgian Foundations Rue Brederode, 21 1000 Brussels '\n", + " 'Belgium',\n", + " 'country': 'Belgium',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5094,\n", + " 'link': 'https://philea.eu/members/belgian-federation-of-philanthropic-foundations/',\n", + " 'name': 'Belgian Federation of Philanthropic Foundations',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Rue Brederode 21, Brussels, Belgium',\n", + " 'city': 'Bruxelles',\n", + " 'country': 'Belgium',\n", + " 'country_short': 'BE',\n", + " 'lat': 50.84035859999999,\n", + " 'lng': 4.362291999999999,\n", + " 'name': 'Rue Brederode 21',\n", + " 'place_id': 'ChIJhfN5jYbEw0cRHuAIcALpV1M',\n", + " 'post_code': '1000',\n", + " 'state': 'Bruxelles',\n", + " 'street_name': 'Rue Brederode',\n", + " 'street_number': '21',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://www.lesfondations.be'},\n", + " {'address': 'Barrow Cadbury Trust Kean House, 6 Kean Street WC2B 4AS London '\n", + " 'United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['United Kingdom']},\n", + " 'id': 5093,\n", + " 'link': 'https://philea.eu/members/barrow-cadbury-trust/',\n", + " 'name': 'Barrow Cadbury Trust',\n", + " 'philea_info': {'About': 'The Trust was founded in 1920 by Barrow Cadbury '\n", + " 'and his wife Geraldine Southall Cadbury. Barrow '\n", + " 'was the grandson of John Cadbury, the founder of '\n", + " 'the family-run chocolate business in Birmingham '\n", + " 'where Barrow worked for almost 50 years, '\n", + " 'succeeding his uncle George as Chairman in 1918. '\n", + " 'He and Geraldine were committed Quakers who chose '\n", + " 'to live modestly themselves and establish the '\n", + " 'Trust. In time, their children became Trustees and '\n", + " 'their son, Paul Cadbury, took over as Chair in '\n", + " '1959. Paul, his sisters and many of their '\n", + " 'descendants have all given time to being Trustees '\n", + " 'and added generously to the Trust’s endowment. The '\n", + " 'concerns of the founders and five generations of '\n", + " 'their family are still reflected in the work of '\n", + " 'the Trust today.',\n", + " 'Geographic Focus': 'UK, particularly the West Midlands',\n", + " 'Mission': 'The Barrow Cadbury Trust’s vision is of a '\n", + " 'peaceful and equitable society, free from '\n", + " 'discrimination and based on the principle of '\n", + " 'social justice for all.\\n'\n", + " 'The Trust’s mission is to use all of its assets '\n", + " 'to work with others to bring about structural '\n", + " 'change for a more just and equal society.',\n", + " 'Programme Areas': 'The Trust has three programmes :\\n'\n", + " '– Criminal justice,\\n'\n", + " '– Migration,\\n'\n", + " '– Economic justice,\\n'\n", + " '– An additional social investment '\n", + " 'programme which operates in a different '\n", + " 'way from the other three programmes. '\n", + " 'Criminal Justice\\n'\n", + " 'Through its Criminal Justice Programme, '\n", + " 'Barrow Cadbury Trust’s principal aim is '\n", + " 'to strengthen the evidence base for '\n", + " 'structural and practical change for '\n", + " 'young adults and women and increase the '\n", + " 'criminal justice system’s ability to '\n", + " 'support their rehabilitation and '\n", + " 'desistance from crime. Migration\\n'\n", + " 'The aim of the migration programme is to '\n", + " 'promote an immigration system that is '\n", + " 'fair to both migrants and established '\n", + " 'residents and a policy and public debate '\n", + " 'on migration and integration that is '\n", + " 'based on shared values as well as '\n", + " 'evidence. Economic Justice\\n'\n", + " 'By exploring good practice and '\n", + " 'innovation in financial systems that '\n", + " 'actively promote financial inclusion the '\n", + " 'foundation intends spread creative '\n", + " 'solutions and encourage new '\n", + " 'conversations and partnerships. Social '\n", + " 'Investment\\n'\n", + " 'In 2010 the trustees decided to use part '\n", + " 'of the foundation’s endowment to further '\n", + " 'the aims of the Trust through '\n", + " 'investments in charities and social '\n", + " 'enterprises, aiming to achieve both a '\n", + " 'social and a financial return with the '\n", + " 'funds.'},\n", + " 'position': {'address': 'Barrow Cadbury, Kean House, 6 Kean Street, London '\n", + " 'WC2B 4AS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5136092,\n", + " 'lng': -0.1184067,\n", + " 'name': 'Barrow Cadbury',\n", + " 'place_id': 'ChIJiRKposoEdkgRvZQxZ2hmaSQ',\n", + " 'post_code': 'WC2B 4AS',\n", + " 'state': 'England',\n", + " 'street_name': 'Kean Street',\n", + " 'street_name_short': 'Kean St',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Humanitarian & Disaster Relief',\n", + " 'Socio-economic Development, Poverty'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.barrowcadbury.org.uk'},\n", + " {'address': 'Bader Philanthropies, Inc. 3300 N. Dr. Martin Luther King Jr. '\n", + " 'Drive WI 53212 Milwaukee United States',\n", + " 'country': 'United States',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Central & Eastern / Balkans)': ['Czech Republic'],\n", + " 'Middle East & North Africa (MENA)': ['Israel'],\n", + " 'North America': ['United States']},\n", + " 'id': 5091,\n", + " 'link': 'https://philea.eu/members/bader-philanthropies-inc/',\n", + " 'name': 'Bader Philanthropies, Inc.',\n", + " 'philea_info': {'About': 'Bader Philanthropies, Inc. encompass two distinct '\n", + " 'philanthropic funds to reflect the values and '\n", + " 'interests of their respective namesakes:\\n'\n", + " 'The Helen Daniels Bader Fund (HDBF) will focus its '\n", + " 'interest in healthier older adults, as well the '\n", + " 'passion for the arts and creativity. HDBF will '\n", + " 'further healthy aging in Wisconsin, particularly '\n", + " 'with respect to the impact of Alzheimer’s disease, '\n", + " 'as well as its efforts to address Alzheimer’s in '\n", + " 'Israel. In Milwaukee, HDBF will bring community '\n", + " 'arts to underserved audiences, while the Helen '\n", + " 'Bader Scholarship Fund will continue to help keep '\n", + " 'a Jewish day school education in reach for local '\n", + " 'families.',\n", + " 'Geographic Focus': 'United States, Israel, Czech Republic',\n", + " 'Mission': 'Bader Philanthropies, Inc. strives to be a '\n", + " 'philanthropic leader in improving the quality of '\n", + " 'life of the diverse communities in which it '\n", + " 'works. Through the Helen Daniels Bader Fund and '\n", + " 'the Isabel & Alfred Bader Fund, the Foundation '\n", + " 'makes grants, convenes partners, shares '\n", + " 'knowledge to affect emerging issues in key '\n", + " 'areas.',\n", + " 'Programme Areas': '‘- Alzheimer’s and aging;\\n'\n", + " '– Youth education;\\n'\n", + " '– Workforce development;\\n'\n", + " '– Community improvement;\\n'\n", + " '– Arts'},\n", + " 'position': {'address': 'Bader Philanthropies, Inc., 3300 North Dr. Martin '\n", + " 'Luther King Jr. Drive, Milwaukee, WI 53212, United '\n", + " 'States',\n", + " 'city': 'Milwaukee',\n", + " 'country': 'United States',\n", + " 'country_short': 'US',\n", + " 'lat': 43.0793942,\n", + " 'lng': -87.9161896,\n", + " 'name': 'Bader Philanthropies, Inc.',\n", + " 'place_id': 'ChIJfYyA86MZBYgRRYfOsetMQ-o',\n", + " 'post_code': '53212',\n", + " 'state': 'Wisconsin',\n", + " 'state_short': 'WI',\n", + " 'street_name': 'North Doctor Martin Luther King Junior Drive',\n", + " 'street_name_short': 'N Doctor M.L.K. Jr Dr',\n", + " 'street_number': '3300',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.bader.org'},\n", + " {'address': 'Aydin Dogan Vakfi Burhaniye Mah. Kısıklı Cad. No:65 PK 34676 '\n", + " 'Üsküdar-İstanbul Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Turkey']},\n", + " 'id': 5090,\n", + " 'link': 'https://philea.eu/members/aydin-dogan-vakfi/',\n", + " 'name': 'Aydin Dogan Vakfi',\n", + " 'philea_info': {'About': 'The Aydın Doğan Foundation believes and works '\n", + " 'toward the ideal that democracy is an '\n", + " 'administrative style that cannot be given up, and '\n", + " 'that a powerful, respected modern society can be '\n", + " 'created through the efforts of modern generations '\n", + " 'educated a) to honour universal values and b) to '\n", + " 'contribute to the solutions of social and economic '\n", + " 'problems.',\n", + " 'Geographic Focus': 'Turkey',\n", + " 'Mission': 'To improve the quality of education, support '\n", + " 'media studies, and promote cultural and social '\n", + " 'advancement in Turkey.',\n", + " 'Programme Areas': 'The foundation works in the following '\n", + " 'areas: • Education, including support to '\n", + " 'schools and dormitories\\n'\n", + " '• Competitions (Aydin Dogan '\n", + " 'International Cartoon Competition; The '\n", + " 'Young Communications Award; The Aydin '\n", + " 'Dogan Awards)'},\n", + " 'position': {'address': 'Burhaniye, Kısıklı Caddesi No:65, Üsküdar/İstanbul, '\n", + " 'Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0237261,\n", + " 'lng': 29.0487789,\n", + " 'name': 'Kısıklı Cd. No:65',\n", + " 'place_id': 'ChIJx2Saqh3IyhQRMDPMMiEeYXs',\n", + " 'post_code': '34676',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Kısıklı Caddesi',\n", + " 'street_name_short': 'Kısıklı Cd.',\n", + " 'street_number': '65',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.aydindoganvakfi.org.tr'},\n", + " {'address': 'Associazione di Fondazioni e di Casse di Risparmio via del Corso '\n", + " '267 00186 Rome Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5088,\n", + " 'link': 'https://philea.eu/members/associazione-di-fondazioni-e-di-casse-di-risparmio-spa/',\n", + " 'name': 'Associazione di Fondazioni e di Casse di Risparmio Spa',\n", + " 'philea_info': {'About': 'The Association of Italian Foundations and Savings '\n", + " 'Banks (Associazione di Fondazioni e di Casse di '\n", + " 'Risparmio Spa, ACRI) was established in 1912 by '\n", + " 'Savings banks. Starting from 1990, the association '\n", + " 'shifted gradually its focus from savings banks to '\n", + " 'foundations of banking origin (established in the '\n", + " 'early ’90 by a specifc law called ‘Amato law’ by '\n", + " 'the name of the Prime Minister who promoted it). '\n", + " 'ACRI promotes and supports the activity of '\n", + " 'foundations of banking origin and savings bank, '\n", + " 'providing them with services, training, advocacy '\n", + " 'actions and running common projects at a national '\n", + " 'level.',\n", + " 'Mission': 'ACRI’s statutory goals are: to represent and '\n", + " 'protect the interests of its members, so that '\n", + " 'they can achieve their institutional goals, '\n", + " 'safeguard their assets and pursue economic and '\n", + " 'technical development; to coordinate its '\n", + " 'members’ activities in their areas of interest '\n", + " 'for greater effectiveness as well as to '\n", + " 'encourage the implementation of joint and '\n", + " 'common-interest projects; to search and foster '\n", + " 'cooperation opportunities between members and '\n", + " 'Italian and foreign entities, companies and '\n", + " 'relevant organisations; to negotiate the terms '\n", + " 'and conditions of conventions and agreements to '\n", + " 'be submitted to the members for approval.'},\n", + " 'position': {'address': 'Via del Corso, 267, 00186 Rome, Metropolitan City '\n", + " 'of Rome, Italy',\n", + " 'city': 'Roma',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 41.8980305,\n", + " 'lng': 12.4818649,\n", + " 'name': 'Via del Corso, 267',\n", + " 'place_id': 'ChIJE5Gwek1gLxMRuYkby5jT9eQ',\n", + " 'post_code': '00186',\n", + " 'state': 'Lazio',\n", + " 'state_short': 'RM',\n", + " 'street_name': 'Via del Corso',\n", + " 'street_number': '267',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs', 'Education'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.acri.it'},\n", + " {'address': 'Vereinigung Liechtesteiner gemeinnütziger Stiftungen '\n", + " 'Aeulestrasse 6 Postfach 882 9490 Vaduz Liechtenstein',\n", + " 'country': 'Liechtenstein',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5367,\n", + " 'link': 'https://philea.eu/members/association-of-liechtenstein-charitable-foundation-and-trusts/',\n", + " 'name': 'Association of Liechtenstein Charitable Foundations and Trusts',\n", + " 'philea_info': {'About': 'The association is a advocacy group for non-profit '\n", + " 'foundations. It functions as a partner to '\n", + " 'political authorities and other organisations and '\n", + " 'promotes the reputation of non-profit foundations '\n", + " 'in Liechtenstein across its borders.',\n", + " 'Mission': 'The purpose of the association is to promote and '\n", + " 'increase awareness of the foundation concept, in '\n", + " 'particular of the possibilities and benefits of '\n", + " 'non-profit foundations in Liechtenstein. As '\n", + " 'means to achieving this purpose, there are plans '\n", + " 'to build a network of non-profit foundations, '\n", + " 'exercise political influence to promote the '\n", + " 'concept of the foundation in general and promote '\n", + " 'the issue of charitable causes in general via '\n", + " 'collaboration between various non-profit '\n", + " 'foundations. Interests will also be represented '\n", + " 'towards the authorities and supported in general '\n", + " 'by public relations work.'},\n", + " 'position': {'address': 'Aeulestrasse 6, Vaduz, Liechtenstein',\n", + " 'city': 'Vaduz',\n", + " 'country': 'Liechtenstein',\n", + " 'country_short': 'LI',\n", + " 'lat': 47.1404575,\n", + " 'lng': 9.5207958,\n", + " 'name': 'Aeulestrasse 6',\n", + " 'place_id': 'ChIJCyeE9mcxm0cRe985CDnHZLk',\n", + " 'post_code': '9490',\n", + " 'state': 'Vaduz',\n", + " 'street_name': 'Aeulestrasse',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.vlgs.li'},\n", + " {'address': 'Bundesverband Deutscher Stiftungen e.V Haus Deutscher '\n", + " 'Stiftungen, Mauerstr. 93 10117 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5103,\n", + " 'link': 'https://philea.eu/members/association-of-german-foundations/',\n", + " 'name': 'Association of German Foundations',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Mauerstraße 93, Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.50816870000001,\n", + " 'lng': 13.3897489,\n", + " 'name': 'Mauerstraße 93',\n", + " 'place_id': 'ChIJj9hKDdFRqEcRBcYFO9DX_SY',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Mauerstraße',\n", + " 'street_number': '93',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.stiftungen.org'},\n", + " {'address': 'Council of Finnish Foundations Fredrikinkatu 61A 00100 Helsinki '\n", + " 'Finland',\n", + " 'country': 'Finland',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5126,\n", + " 'link': 'https://philea.eu/members/association-of-finnish-foundations/',\n", + " 'name': 'Association of Finnish Foundations',\n", + " 'philea_info': {'About': 'The Association of Finnish Foundations (Säätiöt ja '\n", + " 'rahastot ry in Finnish) is an association for '\n", + " 'Finnish grant providers, the only benefit and '\n", + " 'support organisation for foundations in Finland. '\n", + " 'The association, founded in 1970, now has a '\n", + " 'membership comprising 250 grant-making foundations '\n", + " 'and associations. The members support Finnish '\n", + " 'research, art, and societal development annually '\n", + " 'with over half a billion euros. The association '\n", + " 'has no grant-making programme of its own.',\n", + " 'Programme Areas': 'The Council represents grant-making '\n", + " 'foundations in their relations with '\n", + " 'public authorities, and oversees the '\n", + " 'interests of its membership in various '\n", + " 'ways, such as by issuing opinions on '\n", + " 'proposals to reform the laws that govern '\n", + " 'the interests of foundations and other '\n", + " 'grant-making organizations. The Council '\n", + " 'also enables its members to exchange '\n", + " 'information and views on questions of '\n", + " 'common concern. The Council of Finnish '\n", + " 'Foundations arranges Training for '\n", + " 'fiduciaries and functionaries working in '\n", + " 'member organisations and also a biannual '\n", + " 'seminar on matters of topical concern in '\n", + " 'the field of foundations and grants. The '\n", + " 'Council also published guidelines, '\n", + " 'reports and studies on foundations.'},\n", + " 'position': {'address': 'Fredrikinkatu 61a, Helsinki, Finland',\n", + " 'city': 'Helsinki',\n", + " 'city_short': 'HKI',\n", + " 'country': 'Finland',\n", + " 'country_short': 'FI',\n", + " 'lat': 60.1679008,\n", + " 'lng': 24.9322093,\n", + " 'name': 'Fredrikinkatu 61a',\n", + " 'place_id': 'ChIJ1T8VyjQKkkYRSXGQebWTgUk',\n", + " 'post_code': '00100',\n", + " 'street_name': 'Fredrikinkatu',\n", + " 'street_number': '61a',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Civil society, Voluntarism & Non-Profit Sector', 'Education'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://saatiotrahastot.fi/'},\n", + " {'address': 'Association of Charitable Foundations 28 Commercial Street '\n", + " '(Fourth Floor) E1 6LS London United Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5087,\n", + " 'link': 'https://philea.eu/members/association-of-charitable-foundations/',\n", + " 'name': 'Association of Charitable Foundations (ACF)',\n", + " 'philea_info': {'About': 'Association of Charitable Foundations (ACF) is the '\n", + " 'membership body for UK foundations and '\n", + " 'grant-making charities. Driven by a belief that '\n", + " 'foundations are a vital source for social good, '\n", + " 'our mission is to support them to be ambitious and '\n", + " 'effective in the way that they use their '\n", + " 'resources. We do this through the provision of '\n", + " 'policy and advocacy, research and information, and '\n", + " 'a wide-ranging programme of events and learning. '\n", + " 'Our 380 members collectively hold assets of around '\n", + " '£50bn and give over £2.5bn annually. They range in '\n", + " 'size from large foundations with paid staff '\n", + " 'distributing over £20m a year each, to small often '\n", + " 'local volunteer-run trusts distributing less than '\n", + " '£100,000 a year.',\n", + " 'Mission': 'Driven by the belief that foundations are a '\n", + " 'vital source for social good:\\n'\n", + " 'ACF SUPPORTS foundations in achieving their '\n", + " 'charitable objectives\\n'\n", + " 'ACF ADVOCATES on behalf of foundations for an '\n", + " 'enabling policy, legislative and operating '\n", + " 'environment;\\n'\n", + " 'ACF CONNECTS foundations to people, '\n", + " 'organisations, governments and movements '\n", + " 'relevant to their work;\\n'\n", + " 'ACF INSPIRES foundations to be ambitious and '\n", + " 'effective in the way that they use their '\n", + " 'resources.\\n'\n", + " 'In order to achieve this, it must be ensured '\n", + " 'that …\\n'\n", + " 'ACF THRIVES and is sustainable, supporting '\n", + " 'members over the longer term.'},\n", + " 'position': {'address': 'Association Of Charitable Foundations, 28 '\n", + " 'Commercial Street, London E1 6LS, United Kingdom',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5164153,\n", + " 'lng': -0.0725896,\n", + " 'name': 'Association Of Charitable Foundations',\n", + " 'place_id': 'ChIJ4wwCOCUbdkgRWMUs6rJXWfg',\n", + " 'post_code': 'E1 6LS',\n", + " 'state': 'England',\n", + " 'street_name': 'Commercial Street',\n", + " 'street_name_short': 'Commercial St',\n", + " 'street_number': '28',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Citizenship, Social Justice & Public Affairs',\n", + " 'Civil society, Voluntarism & Non-Profit Sector',\n", + " 'Education',\n", + " 'Sciences & Research'],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.acf.org.uk'},\n", + " {'address': '',\n", + " 'country': 'Romania',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5366,\n", + " 'link': 'https://philea.eu/members/association-for-the-practice-of-transformation/',\n", + " 'name': 'Association for the Practice of Transformation',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Romania',\n", + " 'country': 'Romania',\n", + " 'country_short': 'RO',\n", + " 'lat': 45.943161,\n", + " 'lng': 24.96676,\n", + " 'name': 'Romania',\n", + " 'place_id': 'ChIJw3aJlSb_sUARlLEEqJJP74Q',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'https://inspire-change.org/'},\n", + " {'address': 'Assifero (Associazione delle fondazioni di erogazione) Corso '\n", + " 'Magenta, 71 20123 Milan Italy',\n", + " 'country': 'Italy',\n", + " 'email': '',\n", + " 'geo_locations': {},\n", + " 'id': 5089,\n", + " 'link': 'https://philea.eu/members/assifero-associazione-italiana-delle-fondazioni-ed-enti-filantropici/',\n", + " 'name': 'Assifero – Associazione italiana delle fondazioni ed enti '\n", + " 'filantropici',\n", + " 'philea_info': {'About': ''},\n", + " 'position': {'address': 'Corso Magenta, 71, 20123 Milan, Metropolitan City '\n", + " 'of Milan, Italy',\n", + " 'city': 'Milano',\n", + " 'country': 'Italy',\n", + " 'country_short': 'IT',\n", + " 'lat': 45.465581,\n", + " 'lng': 9.16976,\n", + " 'name': 'Corso Magenta, 71',\n", + " 'place_id': 'ChIJG2aISlrBhkcRs3Ut_WEAd2w',\n", + " 'post_code': '20123',\n", + " 'state': 'Lombardia',\n", + " 'state_short': 'MI',\n", + " 'street_name': 'Corso Magenta',\n", + " 'street_number': '71',\n", + " 'zoom': 14},\n", + " 'tags_focus': [],\n", + " 'type': {'label': 'Philanthropy infrastructure organisation',\n", + " 'value': 'affiliate'},\n", + " 'website': 'http://www.assifero.org'},\n", + " {'address': 'Arcadia Fund 5 Young Street Sixth Floor W8 5EH London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Worldwide': ['World']},\n", + " 'id': 5084,\n", + " 'link': 'https://philea.eu/members/arcadia/',\n", + " 'name': 'Arcadia',\n", + " 'philea_info': {'About': 'Arcadia is a family charitable foundation. It was '\n", + " 'founded by Lisbet Rausing and Peter Baldwin in '\n", + " '2002. They are led by their donor board and '\n", + " 'supported by an expert advisory board and a small '\n", + " 'London-based team.',\n", + " 'Geographic Focus': 'World',\n", + " 'Mission': 'Arcadia helps people to record cultural '\n", + " 'heritage, to conserve and restore nature, and to '\n", + " 'promote open access to knowledge. We want future '\n", + " 'generations to enjoy the diversity of human '\n", + " 'culture and the natural world.',\n", + " 'Programme Areas': '1. Conserving and restoring nature: We '\n", + " 'want nature to survive and flourish. Our '\n", + " 'grants support solutions to the global '\n", + " 'biodiversity and climate crises.\\n'\n", + " '2. Recording cultural heritage: We want '\n", + " 'future generations to have knowledge of '\n", + " 'the world’s cultural diversity. Our '\n", + " 'grants support digital documentation of '\n", + " 'cultural heritage which is poorly '\n", + " 'recorded and under threat.\\n'\n", + " '3. Promoting open access: We want '\n", + " 'knowledge to be free for anyone, '\n", + " 'anywhere to access and use. Our grants '\n", + " 'help make knowledge available for free '\n", + " 'online, and help people find and use '\n", + " 'it.'},\n", + " 'position': {'address': '5 Young Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.5017685,\n", + " 'lng': -0.1897595,\n", + " 'name': '5 Young St',\n", + " 'place_id': 'ChIJ6cpZs_cPdkgRjPeW5vL9LFI',\n", + " 'post_code': 'W8 5EH',\n", + " 'state': 'England',\n", + " 'street_name': 'Young Street',\n", + " 'street_name_short': 'Young St',\n", + " 'street_number': '5',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://arcadiafund.org.uk/'},\n", + " {'address': 'Anadolu Eğitim ve Sosyal Yardım Vakfı Fatih Sultan Mehmet Mah. '\n", + " 'Balkan Cad. No:58 Buyaka E Blok 34771 Tepeüstü / Ümraniye Turkey',\n", + " 'country': 'Turkey',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Southern / Mediterranean)': ['Turkey']},\n", + " 'id': 5082,\n", + " 'link': 'https://philea.eu/members/anadolu-egitim-ve-sosyal-yardim-vakfi/',\n", + " 'name': 'Anadolu Eğitim ve Sosyal Yardım Vakfı',\n", + " 'philea_info': {'About': 'The Anadolu Group was founded in 1950 by Azici and '\n", + " 'Ozilhan families and is today the fifth bottling '\n", + " 'company in the world, in terms of the production, '\n", + " 'marketing and sales operations. The Anaddolu '\n", + " 'Foundation was established in 1979 with the goal '\n", + " 'to create a permanent programme of free services '\n", + " 'in an aray of areas, including health and '\n", + " 'education. The foundation has developed more than '\n", + " '40 projects in Turkey in the last 25 years: '\n", + " 'providing support to more than 15,000 students '\n", + " 'through scholarships and the construction of '\n", + " 'schools. The Foundation also provides support to '\n", + " 'earthquake victims and disabled citizens.',\n", + " 'Geographic Focus': 'Turkey',\n", + " 'Mission': 'To share wealth in society.',\n", + " 'Programme Areas': 'The main programme areas of the '\n", + " 'Foundation are:\\n'\n", + " '– Education and scholarships\\n'\n", + " '– Health\\n'\n", + " '– Social responsibility'},\n", + " 'position': {'address': 'Fatih Sultan Mehmet, E, Balkan Caddesi, '\n", + " 'Ümraniye/İstanbul, Turkey',\n", + " 'country': 'Turkey',\n", + " 'country_short': 'TR',\n", + " 'lat': 41.0232852,\n", + " 'lng': 29.12607,\n", + " 'name': 'E',\n", + " 'place_id': 'ChIJt3hC9dnIyhQReD4eaI97HyA',\n", + " 'post_code': '34770',\n", + " 'state': 'İstanbul',\n", + " 'street_name': 'Balkan Caddesi',\n", + " 'street_name_short': 'Balkan Cd.',\n", + " 'street_number': '62',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.anadoluvakfi.org.tr'},\n", + " {'address': 'Allianz Kulturstiftung Pariser Platz 6 10117 Berlin Germany',\n", + " 'country': 'Germany',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Europe', 'Germany']},\n", + " 'id': 5080,\n", + " 'link': 'https://philea.eu/members/allianz-kulturstiftung/',\n", + " 'name': 'Allianz Foundation',\n", + " 'philea_info': {'About': 'The Allianz Kulturstiftung was officially '\n", + " 'registered as a non-profit organisation in Munich '\n", + " 'by the then Allianz AG (now Allianz SE) in the '\n", + " 'year 2000. In January 2012, the foundation moved '\n", + " 'into the Berlin Allianz Forum at Pariser Platz. '\n", + " 'The Allianz Kulturstiftung both funds outside '\n", + " 'projects and runs its own initiatives. Our general '\n", + " 'focus is on projects that promote exchange and '\n", + " 'encounters in Europe and around the Mediterranean, '\n", + " 'as well as discursive events in the field of '\n", + " 'European educational work, contemporary visuals '\n", + " 'and performing arts, literature and music.',\n", + " 'Geographic Focus': 'Germany and Europe, with a focus on the '\n", + " 'countries bordering the Mediterranean '\n", + " 'Sea.',\n", + " 'Mission': 'The non profit Allianz Kulturstiftung initiates '\n", + " 'and funds multilateral art, culture and '\n", + " 'education projects in Europe and the '\n", + " 'Mediterranean fostering mutual understanding and '\n", + " 'dialogue that transcends borders. Our main focus '\n", + " 'is on cross-disciplinary and contemporary '\n", + " 'projects that put innovative approaches in art, '\n", + " 'culture and education into practice and that '\n", + " 'help shape social change in the spirit of '\n", + " 'European integration. We particularly support '\n", + " 'programs that promote exchange, encounters and '\n", + " 'digitization, that ignite enthusiasm for the '\n", + " 'European project in young people and that forge '\n", + " 'ties between participating players.',\n", + " 'Programme Areas': 'The foundation sponsors and initiates '\n", + " 'projects in the following areas: • '\n", + " 'Project that help shape social change in '\n", + " 'the spirit of European integration\\n'\n", + " '• Projects that promote exchange and '\n", + " 'encounters in Europe and around the '\n", + " 'Mediterranean\\n'\n", + " '• Projects that put innovative '\n", + " 'approaches in art, culture, education '\n", + " 'and training into practice\\n'\n", + " '• Support and fellowships for artists at '\n", + " 'risk\\n'\n", + " '• Discursive events in the field of '\n", + " 'European integration, contemporary '\n", + " 'visual and performing arts, literature '\n", + " 'and music'},\n", + " 'position': {'address': 'Allianz Kulturstiftung, Pariser Platz 6, 10117 '\n", + " 'Berlin, Germany',\n", + " 'city': 'Berlin',\n", + " 'country': 'Germany',\n", + " 'country_short': 'DE',\n", + " 'lat': 52.5171015,\n", + " 'lng': 13.3784056,\n", + " 'name': 'Allianz Kulturstiftung',\n", + " 'place_id': 'ChIJ5amUQ-JRqEcRD6w0Jm6_he4',\n", + " 'post_code': '10117',\n", + " 'state': 'Berlin',\n", + " 'state_short': 'BE',\n", + " 'street_name': 'Pariser Platz',\n", + " 'street_number': '6',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://allianzfoundation.org/'},\n", + " {'address': 'Aga Khan Foundation 10 Handyside Street N1C 4DN London United '\n", + " 'Kingdom',\n", + " 'country': 'United Kingdom',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Middle East & North Africa (MENA)': ['Middle East']},\n", + " 'id': 5077,\n", + " 'link': 'https://philea.eu/members/aga-khan-foundation/',\n", + " 'name': 'Aga Khan Foundation',\n", + " 'philea_info': {'About': 'His Highness the Aga Khan, the founder and '\n", + " 'chairman of the Aga Khan Development Network, is '\n", + " 'the 49th hereditary Imam (spiritual leader) of the '\n", + " 'Shia Ismaili Muslims. The Aga Khan has a deep '\n", + " 'commitment to improving the quality of life for '\n", + " 'all through the agencies of the Aga Khan '\n", + " 'Development Network.\\n'\n", + " 'AKF (UK) is a registered charity and affiliate of '\n", + " 'the international Aga Khan Foundation and the Aga '\n", + " 'Khan Development Network',\n", + " 'Geographic Focus': 'Africa, Asia and the Middle East',\n", + " 'Mission': 'The UK office of the Aga Khan Foundation '\n", + " 'supports the broader Aga Khan Development '\n", + " 'Network (AKDN) by forming strategic partnerships '\n", + " 'with UK and European institutional partners '\n", + " 'including government agencies, policy '\n", + " 'institutes, corporations, foundations, NGOs, '\n", + " 'universities, associations and professional '\n", + " 'networks and mobilising resources. AKF (UK) also '\n", + " 'serves as a learning institution for programme '\n", + " 'enhancement, policy dialogue, education, and '\n", + " 'disseminating best practices in international '\n", + " 'development. Through its series of events and '\n", + " 'talks, AKF helps raise awareness about '\n", + " 'particular issues with the development community '\n", + " 'and with the UK public. In the developing world '\n", + " 'countries in which the AKDN implements '\n", + " 'programmes and builds institutions, the '\n", + " 'principal activities of the organisation are to '\n", + " 'break the cycle of poverty, promote pluralism, '\n", + " 'and improve the quality of life.',\n", + " 'Programme Areas': 'Agriculture, Access to Finance, Civil '\n", + " 'Society, Culture, Disaster Risk '\n", + " 'Reduction, Enterprise Development, '\n", + " 'Education, Governance, Health, '\n", + " 'Humanitarian Assistance, Infrastructure, '\n", + " 'Natural Resource Management, Sanitation, '\n", + " 'Water'},\n", + " 'position': {'address': 'Aga Khan Foundation UK, Aga Khan Centre, Handyside '\n", + " 'Street, London, UK',\n", + " 'city': 'London',\n", + " 'country': 'United Kingdom',\n", + " 'country_short': 'GB',\n", + " 'lat': 51.53753189999999,\n", + " 'lng': -0.1249714,\n", + " 'name': 'Aga Khan Foundation UK',\n", + " 'place_id': 'ChIJGYC8ByYbdkgRgy67bB9iKLM',\n", + " 'post_code': 'N1C 4DN',\n", + " 'state': 'England',\n", + " 'street_name': 'Handyside Street',\n", + " 'street_name_short': 'Handyside St',\n", + " 'street_number': '10',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Education', 'Environment/Climate', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.akf.org.uk'},\n", + " {'address': 'Adessium Foundation P.O. Box 76 2810 AB Reeuwijk Netherlands',\n", + " 'country': 'Netherlands',\n", + " 'email': '',\n", + " 'geo_locations': {'Europe (Western / General)': ['Netherlands'],\n", + " 'Worldwide': ['Worldwide']},\n", + " 'id': 5075,\n", + " 'link': 'https://philea.eu/members/adessium-foundation/',\n", + " 'name': 'Adessium Foundation',\n", + " 'philea_info': {'About': 'Adessium foundation is a privately funded '\n", + " 'public-benefit organisation recognised by the '\n", + " 'Dutch tax authority as an ‘Algemeen Nut Beogende '\n", + " 'Instelling’ (ANBI), a tax-exempt status equivalent '\n", + " 'to the American 501(c)(3) designation. The '\n", + " 'foundation was established in 2005 by the Van '\n", + " 'Vliet family after the sale of an asset management '\n", + " 'company.',\n", + " 'Geographic Focus': 'Netherlands and Worldwide',\n", + " 'Mission': 'Adessium Foundation aspires to a world in which '\n", + " 'people live in harmony with each other and with '\n", + " 'their environments.\\n'\n", + " 'The Foundation works to create a balanced '\n", + " 'society characterized by integrity, a balance '\n", + " 'between people and nature, and social harmony.',\n", + " 'Programme Areas': 'The foundation supports projects in the '\n", + " 'following areas:\\n'\n", + " '– Public Interest: Adessium Foundation '\n", + " 'aspires to an open, democratic society, '\n", + " 'in which the availability of independent '\n", + " 'and factual information safeguards the '\n", + " 'public interest and encourages ethical '\n", + " 'behavior.\\n'\n", + " '– People and Nature: Adessium Foundation '\n", + " 'aspires to a society that makes '\n", + " 'responsible use of nature and natural '\n", + " 'resources. Humanity’s dependence on '\n", + " 'healthy ecological systems is a central '\n", + " 'focus.\\n'\n", + " '– Social Initiatives: Adessium '\n", + " 'Foundation aspires to a society that '\n", + " 'provides everyone with equal '\n", + " 'opportunities, with a focus on human '\n", + " 'dignity, self-sufficiency, and '\n", + " 'solidarity.'},\n", + " 'position': {'address': 'Reeuwijk, Netherlands',\n", + " 'city': 'Reeuwijk',\n", + " 'country': 'Netherlands',\n", + " 'country_short': 'NL',\n", + " 'lat': 52.0459962,\n", + " 'lng': 4.7235288,\n", + " 'name': 'Reeuwijk',\n", + " 'place_id': 'ChIJo6aJ-1bWxUcRQ3EvxL90ZVw',\n", + " 'state': 'South Holland',\n", + " 'state_short': 'ZH',\n", + " 'zoom': 14},\n", + " 'tags_focus': ['Environment/Climate'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'http://www.adessium.org'},\n", + " {'address': 'Avinguda Diagonal, 621, Barcelona, Spain',\n", + " 'country': 'ESP',\n", + " 'email': '',\n", + " 'geo_locations': {'Africa / Sub-Saharan Africa': ['Africa'],\n", + " 'Asia & Pacific': ['Asia'],\n", + " 'Europe (Southern / Mediterranean)': ['Portugal', 'Spain'],\n", + " 'Latin America & Caribbean': ['Latin America']},\n", + " 'id': 5071,\n", + " 'link': 'https://philea.eu/members/la-caixa-foundation/',\n", + " 'name': '“la Caixa” Foundation',\n", + " 'philea_info': {'About': 'The Fundación Bancaria Caixa d’Estalvis i Pensions '\n", + " 'de Barcelona, “la Caixa”, is the result of the '\n", + " 'transformation of Caixa d’Estalvis i Pensions de '\n", + " 'Barcelona, “la Caixa” into “la Caixa” Banking '\n", + " 'Foundation, in compliance with the Savings Banks '\n", + " 'and Banking Foundations Law, of 27 December 2013.',\n", + " 'Geographic Focus': 'Spain, Portugal, Africa, Asia and Latin '\n", + " 'America',\n", + " 'Mission': 'To build a better, more just society, that '\n", + " 'offers greater opportunities to the people who '\n", + " 'most need them.',\n", + " 'Programme Areas': 'The foundation operates in the following '\n", + " 'areas:\\n'\n", + " '• Poverty and Social Action\\n'\n", + " '• Research & Health\\n'\n", + " '• Education & Scholarships\\n'\n", + " '• Culture\\n'\n", + " '• Science\\n'\n", + " '• International Poverty and Social '\n", + " 'Action: In this area the foundation '\n", + " 'carries out social initiatives that help '\n", + " 'people overcome difficult situations, '\n", + " 'with particular attention to those '\n", + " 'living in poverty. This includes the '\n", + " 'following programmes:\\n'\n", + " '– Poverty\\n'\n", + " '– Employment integration\\n'\n", + " '– The elderly\\n'\n", + " '– Volunteering\\n'\n", + " '– Housing Programme\\n'\n", + " '– Social Organisations and Companies\\n'\n", + " '– Intercultural Relations and Social '\n", + " 'Cohesion\\n'\n", + " '– Violence: Zero Tolerance Research and '\n", + " 'Health: by supporting research '\n", + " 'programmes they aim to find new '\n", + " 'solutions to prevent, treat and '\n", + " 'eradicate diseases such as AIDS, cancer '\n", + " 'and cardiovascular disorders. Their '\n", + " 'hospital care programmes are aimed at '\n", + " 'supporting and accompanying the most '\n", + " 'vulnerable patients: hospitalised '\n", + " 'children and people at the most advanced '\n", + " 'stage of their illness. This are '\n", + " 'includes the following programmes:\\n'\n", + " '– Research in Life and Health Science: '\n", + " 'Infectious diseases; Oncology, '\n", + " 'Cardiovascular Diseases, Neuroscience, '\n", + " 'Medical Sciences\\n'\n", + " '– Comprehensive care for people with '\n", + " 'advanced diseases\\n'\n", + " '– Research in Life and Health Sciences – '\n", + " 'RecerCaixa\\n'\n", + " '– Child Hospitalization – Hospital Ciber '\n", + " 'Caixas\\n'\n", + " '– Innovation and Technological Transfer '\n", + " '– CaixaImpulse\\n'\n", + " '– Postgraduate scholarships Education '\n", + " 'and Scholarships: the foundation invests '\n", + " 'in the talent of young people by '\n", + " 'offering scholarships and training '\n", + " 'opportunities. The activities connected '\n", + " 'with this area are:\\n'\n", + " '– Educaixa\\n'\n", + " '– Scholarships Culture: the foundation '\n", + " 'aims at giving access to culture though '\n", + " 'its permanent centres and an extensive '\n", + " 'programme of activities in all towns and '\n", + " 'cities where it is active.\\n'\n", + " '– CAIXAFORUM (Barcelona, Madrid, Palma, '\n", + " 'Girona, Terragona, Lleida, Zaragoza)\\n'\n", + " '– Travelling Exhibitions\\n'\n", + " '– Cultural Alliances\\n'\n", + " '– Music\\n'\n", + " '– CaixaEscena\\n'\n", + " '– FotoPres\\n'\n", + " '– Contemporary Art Collection\\n'\n", + " '– Calls for Applications (Art for Change '\n", + " '“La Caixa and Comisart) Science: within '\n", + " 'this area the foundation develops and '\n", + " 'support projects that help create a '\n", + " 'scientific culture among citizens and an '\n", + " 'attitude of personal commitment to the '\n", + " 'planet’s sustainable development. This '\n", + " 'includes the following activities:\\n'\n", + " '– CosmoCaixa\\n'\n", + " '– Travelling Exhibitions\\n'\n", + " '– Science and Society: RRI Tools, Xplore '\n", + " 'Health, Science City, Scientist Camp, '\n", + " 'Educational Innovation, Collaborating '\n", + " 'Centers\\n'\n", + " '– The Environment: Conservation of '\n", + " 'Natural Areas; Gardens of Cap Roig; '\n", + " 'Safeguarding the Local Area, '\n", + " 'Ecoinnovation laboratory, ClimaDat, '\n", + " 'MedClic, The Sea in Depth International: '\n", + " 'the foundation promotes projects that '\n", + " 'generate sustainable economies and '\n", + " 'contribute to the development of the '\n", + " 'most vulnerable countries in Asia, '\n", + " 'Africa and South America. These are the '\n", + " 'activites included in this area:\\n'\n", + " '– Calls for Applications: Socio-Economic '\n", + " 'Development programme, Programme for '\n", + " 'Training projects in Africa, '\n", + " 'CooperantesCaixa, Humanitarian action: '\n", + " 'Children malnutrition programme\\n'\n", + " '– Global Development\\n'\n", + " '– Global Health'},\n", + " 'position': {'address': 'Avinguda Diagonal, 621, Barcelona, Spain',\n", + " 'city': 'Barcelona',\n", + " 'country': 'Spain',\n", + " 'country_short': 'ES',\n", + " 'lat': 41.3876748,\n", + " 'lng': 2.1265478,\n", + " 'place_id': 'ChIJ0VySQGeYpBIRwTsa9qq_FHQ',\n", + " 'post_code': '08028',\n", + " 'state': 'Catalunya',\n", + " 'state_short': 'CT',\n", + " 'street_name': 'Avinguda Diagonal',\n", + " 'street_name_short': 'Av. Diagonal',\n", + " 'street_number': '621',\n", + " 'zoom': 18},\n", + " 'tags_focus': ['Education', 'Health'],\n", + " 'type': {'label': 'Foundation and philanthropic organisation',\n", + " 'value': 'foundation'},\n", + " 'website': 'https://obrasociallacaixa.org/en/home'}]\n" + ] + } + ], + "source": [ + "pprint.pprint(members)" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "687339dfdffa9777", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:45:39.939537Z", + "start_time": "2026-06-10T09:45:39.911781Z" + }, + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "--- Women Win ---\n", + "Women Win is operates globally, but with a majority focus on Global South and East.\n", + "--- Toni Piëch Foundation ---\n", + "Global\n", + "--- Thomson Reuters Foundation ---\n", + "Global\n", + "--- The Social Change Nest ---\n", + "We tear down the barriers that prevent communities from creating change. We take care of the finance and administration, freeing groups to focus on their core mission, and work closely with funders to enable them to support social impact with confidence and transparency.\n", + "--- The Global Fund for Children ---\n", + "Global\n", + "--- Suna and İnan Kıraç Foundation ---\n", + "Currently, we are exclusively in Turkiye, though our long-term vision is to extend to neighboring countries, particularly with our education work.\n", + "--- Hidden Universe: Biodiversity Foundation (HUB) ---\n", + "Brazil (initial focus).\n", + "--- Andrea von Braun Stiftung ---\n", + "Europe and Germany, but also worldwide\n", + "--- Philanthropy in Ukraine ---\n", + "Currently, we operate in Ukraine for Ukrainian organizations, but we also provide services and have partnerships with international donors who support Ukraine or need our services for their grantees in Ukraine.\n", + "--- Confederación Española de Cajas de Ahorros ---\n", + "Spain\n", + "--- We Are Purposeful ---\n", + "\n", + "--- SOLIDARNA Foundation ---\n", + "Croatia and Slovenia\n", + "--- Segal Family Foundation ---\n", + "Sub Saharan Africa\n", + "--- Partners for a New Economy ---\n", + "European focus with an established role in the global new economy ecosystem.\n", + "--- KR Foundation ---\n", + "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.\n", + "--- Fundación AVINA ---\n", + "Latin America and the Global South\n", + "--- Fondazione MeSSInA ---\n", + "The MeSSiNa Foundation’s primary target is the region of Sicily in Italy and more generally Southern Italy. Nevertheless, we consider Sicily as a \"natural laboratory\" for socio-environmental experimentation that could be adapted and tested in other contexts facing similar issues. Having this in mind, the Foundation operates within a transnational framework through its partnership with international entities, being already member of the European Federation of Ethical and Alternative Banks and Financiers (FEBEA), the European Network Of Cities And Regions For The Social Economy (REVES) and the Foundations Platform F20. It also runs several EU-funded projects with European and MENA partners.\n", + "--- Volkswagen Slovakia Foundation ---\n", + "Slovakia\n", + "--- Virgin Unite ---\n", + "Global\n", + "--- Romanian Federation for Community Foundations ---\n", + "\n", + "--- Grundfos Foundation ---\n", + "Global, with a focus on Denmark\n", + "--- Exea Impact ---\n", + "\n", + "--- Bulgarian Fund for Women ---\n", + "Bulgaria\n", + "--- Kosovar Civil Society Foundation ---\n", + "Kosovo\n", + "--- Swarovski Foundation ---\n", + "Global\n", + "--- L'Oréal Fund for Women ---\n", + "North America, Latin America, Asia, Europe, Africa, Middle East\n", + "--- Foundever.org ---\n", + "Europe; Africa (Egypt, South Africa, Morocco); Philippines;Latin America.\n", + "--- Fondazione Capellino ---\n", + "EU, America, Africa\n", + "--- Ursimone Wietslibach Foundation ---\n", + "Switzerland and the Mekong Region (Cambodia, Laos, Myanmar and Thailand Border area to Myanmar)\n", + "--- America for Bulgaria Foundation ---\n", + "\n", + "--- Elsevier Foundation ---\n", + "Global\n", + "--- Augustinus Fonden ---\n", + "Denmark, Greenland and The Faroe Islands\n", + "--- Open Society Institute - Sofia ---\n", + "Bulgaria, Western Balkans countries, Ukraine, Georgia, EU member states in Central and Eastern Europe\n", + "--- Kyiv School of Economics Foundation ---\n", + "Ukraine\n", + "--- National Network of Local Philanthropy Development ---\n", + "Ukraine\n", + "--- iac Berlin gGmbH ---\n", + "Global with a focus on Europe\n", + "--- European Fundraising Association ---\n", + "Europe\n", + "--- Famtastisch Stiftung ---\n", + "Germany and Europe with a focus on the EU-level\n", + "--- Wilde Ganzen Foundation ---\n", + "Tanzania, Kenya, Ethiopia, Uganda, South Africa, India, Burkina Faso, Malawi, Ghana, Cambodia, Nepal, Gambia, Sri Lanka, Indonesia, Andes (Colombia, Peru, Bolivia)\n", + "--- Fundación Vertex Bioenergy ---\n", + "France and Spain\n", + "--- Fundación TBA21 ---\n", + "Worldwide\n", + "--- DOB Ecology ---\n", + "Sub-Saharan Africa, South America\n", + "--- Dalyan Foundation ---\n", + "India and Türkiye\n", + "--- Better Way Foundation ---\n", + "The reach of BWF’s funding is present in more than 50 countries, with geographic coverage approximately split between Global North (41%) and Global South (45%) partners in 2024, with 14% directed to groups working worldwide.\n", + "--- Henry Smith Charity, The ---\n", + "\n", + "--- Community Foundation Ireland, The ---\n", + "Ireland and Developing World\n", + "--- Limelight Foundation ---\n", + "Council of Europe, prioritizing countries where press freedom is under threat and/or there is a lack of funding opportunities.\n", + "--- Hempel Foundation ---\n", + "Denmark. Africa: Uganda, Rwanda, Zambia, Sierra Leone, Tanzania, Madagascar, Ethiopia. Asia: Indonesia, Nepal, Bangladesh. South America: Argentina, Brasil, Paraguay\n", + "--- Casa Ronald McDonald Italia ETS ---\n", + "\n", + "--- Seedling Foundation ---\n", + "Switzerland, France, Italy, Germany, Portugal, Eastern Europe\n", + "--- The Nordic Culture Fund ---\n", + "Nordic Region but with a strategic focus on wider exchanges on a global level\n", + "--- Škoda Auto Endowment Fund ---\n", + "Czech Republic (only regions where their founder has his production plants – in the Mladá Boleslav region, Rychnov region and Vrchlabí regions)\n", + "--- Ramboll Foundation ---\n", + "Northern Europe, Southeast Asia, Australia, North America (where Ramboll is present)\n", + "--- Fondation la France s'engage ---\n", + "France (including oversea territories)\n", + "--- Kering Foundation ---\n", + "France, Italy, United Kingdom, United States, Mexico, Korea\n", + "--- Jeremy Coller Foundation ---\n", + "US, UK, Europe, Asia\n", + "--- Fundación Mapfre ---\n", + "International, with programmes and activities in 30 countries (mainly located in Europe and America).\n", + "--- Wildlife Conservation Society EU ---\n", + "Africa, Asia, Latin America and the Caribbean, and the Pacific\n", + "--- Global Greengrants Fund UK ---\n", + "Global, but with particular focus on the Majority World (i.e. beyond Europe and North America).\n", + "--- ISTA Foundation ---\n", + "Austria\n", + "--- Fondazione di Venezia ---\n", + "Italy\n", + "--- Fondazione CDP ---\n", + "Italy\n", + "--- European Forum Alpbach ---\n", + "Europe\n", + "--- European Network of Equality Bodies ---\n", + "EU + accession and candidate countries + Norway + UK + Georgia + Moldova + Ukraine\n", + "--- The Plastic Solutions Fund ---\n", + "Primarily, the US, Europe and Asia. We also fund strategic grants in Latin America and Africa.\n", + "--- Croatia for Children Foundation ---\n", + "Croatia\n", + "--- ChildInvest Foundation ---\n", + "\n", + "--- Schneider Electric Foundation ---\n", + "Global\n", + "--- GivingTuesday ---\n", + "Global\n", + "--- Learning Planet Institute ---\n", + "Global\n", + "--- ENAR Foundation ---\n", + "Europe\n", + "--- Fast Forward Foundation ---\n", + "Europe, and in particular Italy, Poland, France, Spain, Portugal, Greece, Czech Republic, Slovakia, Croatia\n", + "--- TrygFonden ---\n", + "Denmark\n", + "--- Dioraphte Foundation ---\n", + "Both in the Netherlands and Africa (Ethiopia, Kenya, Malawi and Uganda, and and some projects in Sudan).\n", + "--- LEO Foundation ---\n", + "Denmark and global\n", + "--- Helvetas Swiss Intercooperation ---\n", + "Eastern Europe, Asia, Africa and Latin America\n", + "--- Fondation Bernheim ---\n", + "Belgium, Brussels Region\n", + "--- Built by Nature ---\n", + "We are currently growing our network across the European Union, the UK (United Kingdom), Switzerland, and Norway. We are constantly reviewing our strategy and will be looking to expand our scope in the future\n", + "--- André Losch Fondation ---\n", + "Luxembourg\n", + "--- Airbus Foundation ---\n", + "\n", + "--- Ashoka ---\n", + "Global; 13 offices in Europe, Germany the largest.\n", + "--- Fondation RAJA-Danièle Marcovici ---\n", + "40% in France, 60% in other countries worldwide\n", + "--- Schöpflin Stiftung ---\n", + "Europe, Germany\n", + "--- Quäker-Hilfe Stiftung ---\n", + "\n", + "--- Interogo Foundation ---\n", + "\n", + "--- Fondazione di Sardegna ---\n", + "Sardinia\n", + "--- Fondation Salvia ---\n", + "Switzerland and Europe, including European neighbourhoods\n", + "--- The Partnering Initiative ---\n", + "\n", + "--- Lloyd’s Register Foundation ---\n", + "Global\n", + "--- Africa-Europe Foundation ---\n", + "Africa and Europe\n", + "--- Fondazione Cassa di Risparmio di Foligno ---\n", + "Italy and Europe\n", + "--- Aidsfonds ---\n", + "The Netherlands, Caribbean part of the Kingdom of the Netherlands, Africa, Eastern Europe and Central Asia\n", + "--- The Center for Effective Philanthropy ---\n", + "\n", + "--- Amref Health Africa ETS ---\n", + "\n", + "--- Villum Foundation ---\n", + "Denmark and other European countries\n", + "--- Velliv Foreningen ---\n", + "\n", + "--- NILO Foundation ---\n", + "\n", + "--- Luminate ---\n", + "\n", + "--- Swiss Philanthropy Foundation ---\n", + "Worldwide\n", + "--- Stiftelsen Brita Maria Renlunds minne sr ---\n", + "Finland, especially Swedish speaking minority\n", + "--- Be for Education Foundation ---\n", + "Italy\n", + "--- Marius Jakulis Jason Foundation ---\n", + "Lithuania\n", + "--- Moleskine Foundation ---\n", + "Global (Europe, Africa, US, Canada, Mexico)\n", + "--- Stiftung Mercator Schweiz ---\n", + "Switzerland, Europe\n", + "--- The END Fund ---\n", + "26 countries, predominantly in Africa but also Afghanistan, India, Yemen and Guyana.\n", + "--- Anglo American Foundation ---\n", + "Australia, Botswana, Brazil, Canada, Chile, China, India, Finland, Namibia, Peru, Singapore, South Africa, UK, Zimbabwe (plus future countries of operation of Anglo American)\n", + "--- Fidelity UK Foundation ---\n", + "UK\n", + "--- Central European University ---\n", + "\n", + "--- The Harry Frank Guggenheim Foundation ---\n", + "United States; World\n", + "--- Fondazione Paideia ---\n", + "Italy, particularly on Piedmont region\n", + "--- Association of Foundations in the Netherlands (FIN) ---\n", + "\n", + "--- Knowledge Centre for Danish Foundations ---\n", + "\n", + "--- Austrian Foundations Association (Verband für Gemeinnütziges Stiften) ---\n", + "\n", + "--- Croatian Foundation Forum ---\n", + "\n", + "--- Association of Norwegian Foundations ---\n", + "\n", + "--- Center for Philanthropy ---\n", + "\n", + "--- Association for Community Relations (ARC) ---\n", + "\n", + "--- Zagoriy Foundation ---\n", + "Ukraine\n", + "--- ZEIT-Stiftung Ebelin und Gerd Bucerius ---\n", + "Northern Germany, Eastern Europe, Israel and US\n", + "--- Wellcome Trust ---\n", + "UK, but also worldwide including major initiatives in Africa, India and South-east Asia.\n", + "--- VolkswagenStiftung ---\n", + "International\n", + "--- Vodafone Stiftung Deutschland ---\n", + "Germany\n", + "--- VELUX Foundations, The ---\n", + "Primarily Denmark but increasingly international.\n", + "--- Vehbi Koç Foundation ---\n", + "Turkey\n", + "--- Van Leer Group Foundation ---\n", + "Worldwide\n", + "--- UniCredit Foundation ---\n", + "The 22 countries were UniCredit Group is present. In the last few years initiatives have mainly been in Austria, Bosnia and Herzegovina, Bulgaria, Croatia, Czech Republic, Germany, Hungary, Italy, Poland, Romania, Russia, Serbia, Slovakia, Slovenia. The foundation also operates in Burkina Faso and Benin.\n", + "--- TrustAfrica ---\n", + "Africa\n", + "--- Tiina and Antti Herlin Foundation ---\n", + "\n", + "--- Thousand Currents ---\n", + "Thousand Currents works with grassroots leaders, organizations, organizations, and movements in urban, suburban, and rural communities in Nepal, India, Fiji in Asia; South Africa, Ethiopia and Zimbabwe in Africa; and in Mexico, Guatemala, Peru, Brazil and Colombia in Latin America.\n", + "--- Third Sector Foundation of Turkey (TUSEV) ---\n", + "Turkey and international\n", + "--- The Nando and Elsa Peretti Foundation ---\n", + "Worldwide\n", + "--- The Ethos Foundation ---\n", + "No geographic exclusions; current programmes focus on UK, with particular interest in London and Scotland\n", + "--- The Association of Swedish Foundations ---\n", + "\n", + "--- Terre des Hommes - Netherlands ---\n", + "\n", + "--- Fundacja TechSoup ---\n", + "\n", + "--- SwissFoundations ---\n", + "\n", + "--- Svenska Kulturfonden ---\n", + "Primarily the coastal areas of Finland where Swedish is spoken as a mothertongue. Cooperation with and support to projects in the rest of the country as well as the Nordic countries and the rest of Europe.\n", + "--- Svenska folkskolans vänner r.f. ---\n", + "Finland (mostly the Swedish speaking regions) and The Nordic countries\n", + "--- Stiftung Mercator GmbH ---\n", + "The foundation has, apart from its homeland Germany, three regional areas of focus, placing Germany in a globalised world; Europe, Turkey and China.\n", + "--- Stiftung Deutsche Welthungerhilfe ---\n", + "Asia, Africa, Latin America, Caribbean\n", + "--- Stichting Instituut Gak ---\n", + "The Netherlands\n", + "--- Stichting Fonds 1818 ---\n", + "The Hague, Delft, Zoetermeer, Leiden, Noordwijk and surrounding area\n", + "--- Stefan Batory Foundation ---\n", + "Poland and Central and Eastern Europe\n", + "--- Stavros Niarchos Foundation (SNF) ---\n", + "Greece, Europe, Africa, America, South Asia, Australia, International\n", + "--- Special Olympics Europe/Eurasia ---\n", + "Global\n", + "--- Sparebankstiftelsen DnB ---\n", + "Norway\n", + "--- Spanish Association of Foundations ---\n", + "\n", + "--- Society of Swedish Literature in Finland, The ---\n", + "Finland\n", + "--- Simavi ---\n", + "Bangladesh, Nepal, India, Ghana, Malawi, Kenya, Tanzania, Uganda\n", + "--- Serbian Philanthropy Forum ---\n", + "\n", + "--- Sabanci Foundation ---\n", + "Turkey\n", + "--- Saastamoinen Foundation ---\n", + "Main focus is in Finland. But as stated in our mission we support art and artists both in Finland and internationally. When supporting science and education, it's highest aim is to promote international research, education and networking. As example we have many different residence programs, we bring international professors to Finland, have three different Fullbright programs etc.\n", + "--- Romanian-American Foundation ---\n", + "Romania\n", + "--- Rockefeller Philanthropy Advisors ---\n", + "\n", + "--- Rockefeller Brothers Fund ---\n", + "US, namely New York City; and Southern China, Western Balkans\n", + "--- Robert Bosch Stiftung GmbH ---\n", + "Germany & Europe, North America, Middle East & North Africa, Africa, Asia\n", + "--- RNW Media ---\n", + "China, Sub-Saharan Africa, Latin America, Arab World\n", + "--- Riksbankens Jubileumsfond ---\n", + "Sweden and international\n", + "--- Realdania ---\n", + "Denmark\n", + "--- Prins Claus Fonds for Culture and Development ---\n", + "Latin America, Africa, Asia, the Caribbean and Eastern Europe.\n", + "--- het Cultuurfonds ---\n", + "Netherlands, Netherlands Antilles and Aruba\n", + "--- Portuguese Foundation Centre ---\n", + "\n", + "--- Porticus ---\n", + "International\n", + "--- Polish Donors Forum ---\n", + "\n", + "--- Plan Børne Fonden ---\n", + "Western Africa - Mali, Burkina Faso, Benin, Togo and Cape Verde\n", + "--- Philanthropy Ireland ---\n", + "\n", + "--- PeaceNexus Foundation ---\n", + "Work at the international level and in four focus regions: West Africa, Western Balkans, Central Asia and South East Asia\n", + "--- Paul Hamlyn Foundation ---\n", + "United Kingdom and India\n", + "--- Open Society Foundations ---\n", + "Africa; Asia; Central, South and Eastern Europe; Central Eurasia; Latin America and the Caribbean; the Middle East; US\n", + "--- Open Estonia Foundation ---\n", + "Estonia, also Russia.\n", + "--- Oeuvre Nationale de Secours Grande-Duchesse Charlotte ---\n", + "National - Luxembourg\n", + "--- Oak Foundation ---\n", + "International, Africa, India\n", + "--- Novo Nordisk Foundation, The ---\n", + "Denmark, Scandinavia and certain parts of the developing world (Africa)\n", + "--- Nordea-fonden ---\n", + "Within the boundaries of Denmark\n", + "--- Postcode Lottery Group ---\n", + "Global, with a specific focus on the countries where the lotteries are active: Netherlands, Sweden, Great Britain, Germany, Norway\n", + "--- National Foundation for Civil Society Development - Croatia ---\n", + "Croatia and Central and Eastern Europe\n", + "--- Mozaik Foundation ---\n", + "Rural areas and small communities throughout Bosnia and Herzegovina\n", + "--- Medicor Foundation ---\n", + "Africa, Latin America and The Caribbean, and Eastern Europe\n", + "--- Mama Cash Foundation ---\n", + "International\n", + "--- Maj and Tor Nessling Foundation ---\n", + "\n", + "--- Maecenata Foundation ---\n", + "National and international\n", + "--- Lundbeckfonden ---\n", + "Denmark\n", + "--- LEGO Foundation ---\n", + "Worldwide\n", + "--- Learning for Well-being Foundation ---\n", + "International\n", + "--- Laudes Foundation ---\n", + "Global\n", + "--- Kultura Nova Foundation ---\n", + "Croatia, Southeastern European Region\n", + "--- Körber-Stiftung ---\n", + "Germany, Europe, International\n", + "--- Kone Foundation ---\n", + "Especially the regions around the Baltic Sea (but researchers and artists of other regions are also supported).\n", + "--- King Baudouin Foundation ---\n", + "Belgium, Europe and international\n", + "--- John S. Latsis Public Benefit Foundation ---\n", + "Greece\n", + "--- John D. and Catherine T. MacArthur Foundation ---\n", + "USA, India, Mexico, and Nigeria\n", + "--- Joachim Herz Stiftung ---\n", + "Germany, USA\n", + "--- Jenny and Antti Wihuri Foundation ---\n", + "Mainly Finland\n", + "--- Jacobs Foundation ---\n", + "Global\n", + "--- International Rescue Committee ---\n", + "Worldwide\n", + "--- International Renaissance Foundation ---\n", + "Primarily Ukraine\n", + "--- International Committee of the Red Cross ---\n", + "ICRC is present in more than 100 countries situated in Africa, the Americas, Asia and the Pacific, Europe and Central Asia as well as the Near and Middle East\n", + "--- IKEA Foundation ---\n", + "Developing countries mainly\n", + "--- Global Dialogue ---\n", + "United Kingdom, Middle East, Global\n", + "--- Gjensidigestiftelsen ---\n", + "Norway\n", + "--- German Marshall Fund of the United States, The ---\n", + "Balkans, the Black Sea region, Central and Eastern Europe, Belarus and Ukraine.\n", + "--- Gerda Henkel Stiftung ---\n", + "Germany and international\n", + "--- Genio ---\n", + "\n", + "--- Fundación Ramón Areces ---\n", + "Spain and Portugal\n", + "--- Fundación Princesa de Girona ---\n", + "Spain\n", + "--- Fundación Princesa de Asturias ---\n", + "Worldwide\n", + "--- Fundación ONCE ---\n", + "Spain and Europe\n", + "--- Fundación María Cristina Masaveu Peterson ---\n", + "Spain and Spanish cultural, research and education programmes around the world\n", + "--- IE Foundation ---\n", + "Primarily Spain, but is also present in and focused on North and South America, South East Asia, the Middle East, North Africa and Europe\n", + "--- Fundación Barrié ---\n", + "Galicia, Spain\n", + "--- Fundação Luso-Americana para o Desenvolvimento ---\n", + "Portugal, US and Portuguese speaking countries\n", + "--- Fundação Calouste Gulbenkian ---\n", + "Portugal, Europe, Portuguese-speaking African countries, East Timor, worldwide Armenian communities, and international\n", + "--- Fritt Ord Foundation ---\n", + "Norway and Europe\n", + "--- Freudenberg Stiftung GmbH ---\n", + "Germany, Israel, Hungary, South-East Europe, Bulgaria and Romania\n", + "--- French Foundation Centre ---\n", + "\n", + "--- Foundation for Polish Science ---\n", + "Poland\n", + "--- Foundation for Future Generations ---\n", + "Belgium\n", + "--- Ford Foundation ---\n", + "US, Africa, Middle East, Asia, Latin America, Central America\n", + "--- Fondazione Tercas ---\n", + "Province of Teramo, Italy (and activities co-ordinated by ACRI aimed at promoting national solidarity).\n", + "--- Fondazione Sviluppo e Crescita CRT ---\n", + "Italy, Piedmont and Aosta Valley regions, and international initiatives which impact the Piedmontese territory.\n", + "--- Fondazione Monte dei Paschi di Siena ---\n", + "The city of Siena and its province in Italy and Africa\n", + "--- Fondazione Invernizzi ---\n", + "Lombardy\n", + "--- The Human Safety Net ---\n", + "26 countries worldwide\n", + "--- Fondazione di Modena ---\n", + "Modena, Italy\n", + "--- Fondazione CRT ---\n", + "The regions of Piedmont and Valle d´Aosta in Italy\n", + "--- Fondazione CON IL SUD ---\n", + "Southern Italy (Basilicata, Calabria, Campania, Puglia, Sardinia and Sicily)\n", + "--- Fondazione Compagnia di San Paolo ---\n", + "Italy and international\n", + "--- Fondazione Cassa di Risparmio in Bologna ---\n", + "Bologna, Italy\n", + "--- Fondazione Cassa di Risparmio di Parma ---\n", + "Province of Parma, Italy and Africa\n", + "--- Fondazione Cassa di Risparmio di Padova e Rovigo ---\n", + "Italian provinces of Padua and Rovigo\n", + "--- Fondazione Cassa di Risparmio di Firenze ---\n", + "The region of Tuscany in Italy (specifically Florence, Grosseto and Arezzo)\n", + "--- Fondazione Cassa di Risparmio di Cuneo ---\n", + "Region of Piemonte, Province of Cuneo\n", + "--- Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler Sparkasse ---\n", + "Local area of Alto Adige\n", + "--- Fondazione Cassa di Risparmio di Ascoli Piceno ---\n", + "Multiple communes in Italy\n", + "--- Fondazione Cassa di Risparmio di Alessandria ---\n", + "Piedmont, Italy\n", + "--- Fondazione Cassa dei Risparmi di Forlì ---\n", + "Italy; the Emilia-Romagna region including the following municipalities: Forli, Folimpopoli, Bertinoro, Meldola, Santa Sofia, Civitella di Romagna, Galeata, Bagno di Romagna, Verghereto, Predappio, Premilcuore, Castrocaro Terme e Terra del Sole, Dovadola, Rocca San Casciano, Portico e San Benedetto, Modigliana, Tredozio\n", + "--- Fondazione Cariplo ---\n", + "The region of Lombardy in Italy and Africa\n", + "--- Fondazione Bracco ---\n", + "Mainly Italy but also Europe, China, Brazil and USA\n", + "--- Fondazione Banca del Monte di Lucca ---\n", + "Province of Lucca, Italy\n", + "--- 1563 Foundation for Art and Culture ---\n", + "\n", + "--- Fondation Lombard Odier ---\n", + "Mainly Switzerland, but also overseas\n", + "--- Fondation de Luxembourg ---\n", + "Luxembourg, Europe, Worldwide\n", + "--- Fondation de France ---\n", + "France, Europe and developing countries\n", + "--- Fondation Charles Léopold Mayer pour le progrès humain ---\n", + "Worldwide\n", + "--- Fondation Chanel ---\n", + "Global, China, Thailand, India, Brasil, Colombie, Africa, France\n", + "--- Fondation Botnar ---\n", + "Colombia, Ecuador, Ghana, Indonesia, Israel, Occupied Palestinian Territories (OPT), Romania, Senegal, Switzerland, Tanzania, Vietnam.\n", + "--- Finnish Cultural Foundation ---\n", + "Finland and international\n", + "--- Evens Foundation ---\n", + "EU countries, Belgium, France and Poland\n", + "--- European University Institute ---\n", + "Worldwide, with an expertise in research related to Europe and the world.\n", + "--- European Foundation for Philanthropy and Society Development ---\n", + "Croatia, South-Eastern Europe, Euro-Mediterranean\n", + "--- European Cultural Foundation ---\n", + "Europe and neighboring regions\n", + "--- European Climate Foundation ---\n", + "Europe; European Union\n", + "--- Europe Foundation ---\n", + "Georgia, Eastern Partnership region\n", + "--- Eurochild ---\n", + "Europe\n", + "--- Essl Foundation MGE gemeinnützige Privatstiftung ---\n", + "Worldwide\n", + "--- ERSTE Stiftung ---\n", + "Austria, Central and South Eastern Europe\n", + "--- DOTS Foundation for an Open Society ---\n", + "Latvia\n", + "--- Doc Society ---\n", + "based in UK, but it works internationally\n", + "--- Deutsche Bundesstiftung Umwelt ---\n", + "Germany, its neighbouring countries and Central and Eastern Europe\n", + "--- Degroof Petercam Foundation ---\n", + "Europe (especially Belgium, France, Luxembourg)\n", + "--- Daniel and Nina Carasso Foundation ---\n", + "France and Spain\n", + "--- Czech Donors Forum ---\n", + "\n", + "--- Cultiva - Kristiansand Kommunes Energiverksstiftelse ---\n", + "Kristiansand, Norway\n", + "--- Conrad N. Hilton Foundation ---\n", + "Africa (several countries), New York, Los Angeles\n", + "--- Clean Clothes Campaign ---\n", + "Global\n", + "--- City Bridge Foundation ---\n", + "Greater London, supporting initiatives that improve lives and opportunities across the capital.\n", + "--- Children's Investment Fund Foundation ---\n", + "Asia, including India, Bangladesh and China - Africa, including Kenya, Ethiopia, Tanzania, Malawi, Nigeria, Ghana - South America, including Brazil\n", + "--- Paolo Chiesi Foundation ---\n", + "Low and middle income countries, specific focus on French-speaking sub-saharan African countries and South American countries\n", + "--- Charles Stewart Mott Foundation ---\n", + "Flint, Michigan; US; Central and eastern Europe (CEE); South Africa\n", + "--- Charities Aid Foundation ---\n", + "Offices in : America, Australia, Brazil, Bulgaria, Canada, India, Russia, South Africa the UK and partners across the globe.\n", + "--- Carnegie UK Trust ---\n", + "UK and Ireland, also part of the international network of Carnegie foundations.\n", + "--- Carlsberg Foundation ---\n", + "Denmark\n", + "--- Caritas Foundation Austria ---\n", + "Austria, Europe, Africa\n", + "--- Captain Vassilis and Carmen Constantakopoulos Foundation ---\n", + "Greece, Southern Europe\n", + "--- Calala Women's Fund ---\n", + "Spain and Central America\n", + "--- Bulgarian Donors Forum ---\n", + "\n", + "--- Both ENDS ---\n", + "\n", + "--- Bodossaki Foundation ---\n", + "Greece\n", + "--- BMW Foundation Herbert Quandt ---\n", + "Europe, North America, Asia, South America, North Africa & Middle East\n", + "--- Gates Foundation ---\n", + "Africa, Asia, Australia, Europe and the US\n", + "--- Bikuben Foundation ---\n", + "Denamrk and Greenland\n", + "--- Bertelsmann Stiftung ---\n", + "Germany and International\n", + "--- Belgian Federation of Philanthropic Foundations ---\n", + "\n", + "--- Barrow Cadbury Trust ---\n", + "UK, particularly the West Midlands\n", + "--- Bader Philanthropies, Inc. ---\n", + "United States, Israel, Czech Republic\n", + "--- Aydin Dogan Vakfi ---\n", + "Turkey\n", + "--- Associazione di Fondazioni e di Casse di Risparmio Spa ---\n", + "\n", + "--- Association of Liechtenstein Charitable Foundations and Trusts ---\n", + "\n", + "--- Association of German Foundations ---\n", + "\n", + "--- Association of Finnish Foundations ---\n", + "\n", + "--- Association of Charitable Foundations (ACF) ---\n", + "\n", + "--- Association for the Practice of Transformation ---\n", + "\n", + "--- Assifero – Associazione italiana delle fondazioni ed enti filantropici ---\n", + "\n", + "--- Arcadia ---\n", + "World\n", + "--- Anadolu Eğitim ve Sosyal Yardım Vakfı ---\n", + "Turkey\n", + "--- Allianz Foundation ---\n", + "Germany and Europe, with a focus on the countries bordering the Mediterranean Sea.\n", + "--- Aga Khan Foundation ---\n", + "Africa, Asia and the Middle East\n", + "--- Adessium Foundation ---\n", + "Netherlands and Worldwide\n", + "--- “la Caixa” Foundation ---\n", + "Spain, Portugal, Africa, Asia and Latin America\n" + ] + } + ], + "source": [ + "# Gleiches jetzt auch für Geographic:\n", + "for member in members:\n", + " print(\"---\", member[\"name\"], \"---\")\n", + " print(member.get(\"philea_info\", {}).get(\"Geographic Focus\", \"\"))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1a22e6c96b05cdfa", + "metadata": { + "ExecuteTime": { + "end_time": "2026-06-10T09:45:40.494766Z", + "start_time": "2026-06-10T09:45:40.487489Z" + }, + "collapsed": false + }, + "outputs": [], + "source": [ + "import re\n", + "import pprint\n", + "\n", + "# =====================================================================\n", + "# SINGLE SOURCE OF TRUTH: Makro-Region -> { Anzeige-Name: Such-Regex }\n", + "# =====================================================================\n", + "GEO_TAXONOMY = {\n", + " \"Worldwide\": {\n", + " \"Global\": r\"global\\w*\",\n", + " \"Worldwide\": r\"worldwide\",\n", + " \"World\": r\"\\bworld\\b\"\n", + " },\n", + " \"Global South / Majority World\": {\n", + " \"Global South\": r\"global south\",\n", + " \"Majority World\": r\"majority world\",\n", + " \"Developing Countries\": r\"developing world|developing countr\\w+|low and middle income\"\n", + " },\n", + " \"Europe (Western / General)\": {\n", + " \"Europe\": r\"europ\\w+\",\n", + " \"European Union\": r\"european union|\\beu\\b\",\n", + " \"United Kingdom\": r\"\\buk\\b|united kingdom|great britain|london|scotland|west midlands|english\", \n", + " \"Ireland\": r\"ireland|irish\",\n", + " \"France\": r\"franc\\w+\",\n", + " \"Germany\": r\"german\\w+\",\n", + " \"Switzerland\": r\"switzerland|swiss\",\n", + " \"Austria\": r\"austria\\w*\",\n", + " \"Luxembourg\": r\"luxembourg\\w*\",\n", + " \"Belgium\": r\"belgium\\w*|belgian\\w*|brussels\",\n", + " \"Netherlands\": r\"netherlands|dutch|the hague|delft|zoetermeer|leiden|noordwijk\"\n", + " },\n", + " \"Europe (Nordic Region)\": {\n", + " \"Nordic Region\": r\"nordic\",\n", + " \"Denmark\": r\"denmark|danish\",\n", + " \"Finland\": r\"finland|finnish|herlin\", # fängt Herlin-Stiftung ab\n", + " \"Sweden\": r\"sweden|swedish|\\bse\\b\",\n", + " \"Norway\": r\"norway|norwegian|kristiansand\",\n", + " \"Greenland\": r\"greenland\",\n", + " \"Faroe Islands\": r\"faroe islands\"\n", + " },\n", + " \"Europe (Southern / Mediterranean)\": {\n", + " \"Spain\": r\"spain|spanish|galicia\",\n", + " \"Italy\": r\"ital\\w+|sicily|sardinia|piedmont|aosta valley|modena|parma|padua|rovigo|tuscany|florence|grosseto|arezzo|cuneo|alto adige|lucca|lombardy|torino|bologna\",\n", + " \"Greece\": r\"gree\\w+\",\n", + " \"Portugal\": r\"portug\\w+\",\n", + " \"Turkey\": r\"turk\\w+|türkiye\"\n", + " },\n", + " \"Europe (Central & Eastern / Balkans)\": {\n", + " \"Balkans\": r\"balkans?|western balkans|serbian?|croatian?|slovenian?|bosnia\\w*\",\n", + " \"Central & Eastern Europe\": r\"cee\\b|eastern europe|central and eastern europe|baltic\\w*\",\n", + " \"Slovakia\": r\"slovakia\\w*\",\n", + " \"Bulgaria\": r\"bulgari\\w*\",\n", + " \"Kosovo\": r\"kosovo\\w*\",\n", + " \"Croatia\": r\"croatia\\w*\",\n", + " \"Slovenia\": r\"slovenia\\w*\",\n", + " \"Ukraine\": r\"ukrain\\w*\",\n", + " \"Estonia\": r\"estonia\\w*\",\n", + " \"Lithuania\": r\"lithuania\\w*\",\n", + " \"Poland\": r\"pol\\w+|fundacja\", # 'fundacja' deutet direkt auf Polen hin\n", + " \"Latvia\": r\"latvia\\w*\",\n", + " \"Georgia\": r\"georgia\\w*\",\n", + " \"Czech Republic\": r\"czech\\w*\",\n", + " \"Romania\": r\"romani\\w*\",\n", + " \"Hungary\": r\"hungar\\w*\",\n", + " \"Belarus\": r\"belarus\\w*\",\n", + " \"Moldova\": r\"moldova\\w*\"\n", + " },\n", + " \"North America\": {\n", + " \"United States\": r\"united states|\\busa\\b|\\bus\\b|america\\w*|flint|michigan\",\n", + " \"Canada\": r\"canada\\w*\"\n", + " },\n", + " \"Latin America & Caribbean\": {\n", + " \"Latin America\": r\"latin america|south america|central america\",\n", + " \"Caribbean\": r\"caribbean\",\n", + " \"Brazil\": r\"brazil\\w*\",\n", + " \"Mexico\": r\"mexico\\w*\",\n", + " \"Colombia\": r\"colombia\\w*\",\n", + " \"Peru\": r\"peru\\w*\",\n", + " \"Bolivia\": r\"bolivia\\w*\",\n", + " \"Ecuador\": r\"ecuador\\w*\",\n", + " \"Guyana\": r\"guyana\\w*\"\n", + " },\n", + " \"Africa / Sub-Saharan Africa\": {\n", + " \"Africa\": r\"afric\\w+\",\n", + " \"Sub-Saharan Africa\": r\"sub-saharan\",\n", + " \"Tanzania\": r\"tanzania\\w*\",\n", + " \"Kenya\": r\"kenya\\w*\",\n", + " \"Ethiopia\": r\"ethiopia\\w*\",\n", + " \"Uganda\": r\"uganda\\w*\",\n", + " \"Malawi\": r\"malawi\\w*\",\n", + " \"Ghana\": r\"ghana\\w*\",\n", + " \"Burkina Faso\": r\"burkina faso\",\n", + " \"Zambia\": r\"zambia\\w*\",\n", + " \"Sierra Leone\": r\"sierra leone\",\n", + " \"Madagascar\": r\"madagascar\\w*\",\n", + " \"Rwanda\": r\"rwanda\\w*\",\n", + " \"Zimbabwe\": r\"zimbabwe\\w*\",\n", + " \"South Africa\": r\"south africa|botswana|namibia|senegal|gambia|togo|benin|mali\"\n", + " },\n", + " \"Asia & Pacific\": {\n", + " \"Asia\": r\"asia\\w*\",\n", + " \"Pacific\": r\"pacific\",\n", + " \"India\": r\"india\\w*\",\n", + " \"China\": r\"china\\w*\",\n", + " \"Vietnam\": r\"vietnam\\w*\",\n", + " \"Cambodia\": r\"cambodia\\w*\",\n", + " \"Laos\": r\"laos\\w*\",\n", + " \"Myanmar\": r\"myanmar\\w*\",\n", + " \"Thailand\": r\"thailand\\w*\",\n", + " \"Nepal\": r\"nepal\\w*\",\n", + " \"Sri Lanka\": r\"sri lanka\",\n", + " \"Indonesia\": r\"indonesia\\w*\",\n", + " \"Bangladesh\": r\"bangladesh\\w*\",\n", + " \"Philippines\": r\"philippines?\",\n", + " \"Afghanistan\": r\"afghanistan\\w*\",\n", + " \"Australia\": r\"australia\\w*|singapore\"\n", + " },\n", + " \"Middle East & North Africa (MENA)\": {\n", + " \"Middle East\": r\"middle east\",\n", + " \"MENA\": r\"mena\\b\",\n", + " \"Arab World\": r\"arab world\",\n", + " \"Israel\": r\"israel\\w*\",\n", + " \"Palestine\": r\"palestin\\w+\",\n", + " \"Yemen\": r\"yemen\\w*\"\n", + " }\n", + "}\n", + "\n", + "# HILFS-STRUKTUREN AUTOMATISCH GENERIERT (Keine doppelte Pflege nötig!)\n", + "ALL_COUNTRIES = []\n", + "COUNTRY_TO_MACRO = {}\n", + "for macro_region, country_dict in GEO_TAXONOMY.items():\n", + " for country_name in country_dict.keys():\n", + " ALL_COUNTRIES.append(country_name)\n", + " COUNTRY_TO_MACRO[country_name] = macro_region\n", + "\n", + "# Sortierung nach Länge (absteigend) schützt \"Sub-Saharan Africa\" vor \"Africa\"\n", + "SORTED_COUNTRIES = sorted(ALL_COUNTRIES, key=len, reverse=True)\n", + "\n", + "\n", + "def extract_geos_robust(raw_text):\n", + " \"\"\" Stufe 1: Sucht nach exakten Begriffen im Header-Bereich \"\"\"\n", + " if not raw_text:\n", + " return {}\n", + " \n", + " zone = raw_text.lower()\n", + " zone_clean = re.sub(r'[\\s\\–\\—\\-]+', ' ', zone)\n", + " found = {}\n", + " \n", + " for country in SORTED_COUNTRIES:\n", + " c_clean = country.lower()\n", + " if c_clean in zone_clean:\n", + " is_match = False\n", + " if len(c_clean) <= 5: # Für kurze Token wie UK, US, Spain\n", + " pattern = r'(?=2.31.0 +beautifulsoup4>=4.12.0 +google-genai>=2.0.0 +pydantic>=2.0.0 +flake8>=7.0.0 diff --git a/src/data/preprocessed/consolidated_members_preprocessed.json b/src/data/preprocessed/consolidated_members_preprocessed.json new file mode 100644 index 0000000..58a464c --- /dev/null +++ b/src/data/preprocessed/consolidated_members_preprocessed.json @@ -0,0 +1,2579 @@ +[ + { + "name": "Women Win", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.womenwin.org", + "email": "", + "address": "Rapenburgerstraat 173, Amsterdam, Netherlands", + "city": "Amsterdam", + "state": "Noord-Holland", + "country": "Netherlands", + "latitude": 52.368106, + "longitude": 4.9061522, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Health", + "Human/Civil Rights" + ], + "geographic_focus": { + "Global South / Majority World": [ + "Global South" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "Toni Piëch Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.tonipiechfoundation.org/", + "email": "", + "address": "Untermüli 7, Zug, Switzerland", + "city": "Zug", + "state": "Zug", + "country": "Switzerland", + "latitude": 47.1804502, + "longitude": 8.517739599999999, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Environment/Climate" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "Thomson Reuters Foundation", + "source": "Philea", + "type": { + "value": "member", + "label": "Associate member" + }, + "website": "http://www.trust.org/", + "email": "", + "address": "5 Canada Square, Canary Wharf, London, UK", + "city": "London", + "state": "England", + "country": "United Kingdom", + "latitude": 51.5053031, + "longitude": -0.0184089, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Human/Civil Rights" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "The Social Change Nest", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://thesocialchangenest.org/", + "email": "", + "address": "C/O Sedulo Office 605, Albert House 256-260 OldStreet", + "city": "London", + "state": "England", + "country": "United Kingdom", + "latitude": 51.52586489999999, + "longitude": -0.0851961, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "The Global Fund for Children", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.globalfundforchildren.org", + "email": "", + "address": "1411 K Street Northwest suite 1200, Washington, DC, USA", + "city": "Washington", + "state": "District of Columbia", + "country": "United States", + "latitude": 38.9028791, + "longitude": -77.0325632, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Health", + "Human/Civil Rights", + "Youth/Children Development" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "Suna and İnan Kıraç Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.sunaveinankiracvakfi.org.tr/", + "email": "", + "address": "Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul", + "city": "", + "state": "İstanbul", + "country": "Türkiye", + "latitude": 41.0328293, + "longitude": 28.9752418, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Arts & Culture", + "Education", + "Health", + "Sciences & Research", + "Youth/Children Development" + ], + "geographic_focus": { + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "name": "Hidden Universe: Biodiversity Foundation (HUB)", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.hu-b.org/", + "email": "", + "address": "Grimmereds by 5, Västra Frölunda, Sweden", + "city": "Västra Frölunda", + "state": "Västra Götalands län", + "country": "Sweden", + "latitude": 57.6651926, + "longitude": 11.8938683, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Latin America & Caribbean": [ + "Brazil" + ] + } + }, + { + "name": "Andrea von Braun Stiftung", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.avbstiftung.de/en/", + "email": "", + "address": "Mauerkircherstraße 12, Munich-Bogenhausen, Germany", + "city": "München", + "state": "Bayern", + "country": "Germany", + "latitude": 48.1497328, + "longitude": 11.6012926, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Peace & Conflict Resolution", + "Sciences & Research" + ], + "geographic_focus": { + "Worldwide": [ + "Worldwide" + ], + "Europe (Western / General)": [ + "Europe", + "Germany" + ] + } + }, + { + "name": "Philanthropy in Ukraine", + "source": "Philea", + "type": { + "value": "member", + "label": "Associate member" + }, + "website": "http://philanthropy.in.ua", + "email": "", + "address": "Salyutna St. 5, office 49 Kyiv, 04111 Ukraine", + "city": "Kyiv", + "state": "Kyiv city", + "country": "Ukraine", + "latitude": 50.4503596, + "longitude": 30.5245025, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Sciences & Research" + ], + "geographic_focus": { + "Worldwide": [ + "International" + ], + "Europe (Central & Eastern / Balkans)": [ + "Ukraine" + ] + } + }, + { + "name": "Confederación Española de Cajas de Ahorros", + "source": "Philea", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "website": "http://www.ceca.es", + "email": "", + "address": "Calle de Alcalá, 27, Madrid, Spain", + "city": "Madrid", + "state": "Comunidad de Madrid", + "country": "Spain", + "latitude": 40.41845850000001, + "longitude": -3.6986681, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "name": "We Are Purposeful", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://wearepurposeful.org/", + "email": "", + "address": "Blue House Yard, River Park Road, London, UK", + "city": "London", + "state": "England", + "country": "United Kingdom", + "latitude": 51.5972015, + "longitude": -0.1116638, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "Worldwide": [ + "Global", + "World" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "SOLIDARNA Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.solidarna.hr", + "email": "", + "address": "Jurkovićeva ulica 3, Zagreb, Croatia", + "city": "Zagreb", + "state": "Grad Zagreb", + "country": "Croatia", + "latitude": 45.81490180000001, + "longitude": 15.9903851, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Croatia", + "Slovenia" + ] + } + }, + { + "name": "Segal Family Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.segalfamilyfoundation.org", + "email": "", + "address": "67 Mountain Blvd suite 201, Warren, NJ, USA", + "city": "Warren", + "state": "New Jersey", + "country": "United States", + "latitude": 40.6161249, + "longitude": -74.49897480000001, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "name": "Partners for a New Economy", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://p4ne.org/", + "email": "", + "address": "Place de Cornavin 2, Geneva, Switzerland", + "city": "Genève", + "state": "Genève", + "country": "Switzerland", + "latitude": 46.2084926, + "longitude": 6.1428645, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Environment/Climate" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "name": "KR Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.krfnd.org", + "email": "", + "address": "Læderstræde 20, Copenhagen, Denmark", + "city": "København", + "state": "", + "country": "Denmark", + "latitude": 55.67819679999999, + "longitude": 12.5780295, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Environment/Climate" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "Fundación AVINA", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.avina.net", + "email": "", + "address": "Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de Panamá ", + "city": "Panamá", + "state": "Provincia de Panamá", + "country": "Panama", + "latitude": 8.9971189, + "longitude": -79.5823125, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Environment/Climate" + ], + "geographic_focus": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Global South / Majority World": [ + "Global South" + ], + "Worldwide": [ + "Global" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "Fondazione MeSSInA", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://fdcmessina.org/", + "email": "", + "address": "Forte Petrazza, Località Forte Petrazza, Camaro Superiore, Metropolitan City of Messina, Italy", + "city": "Camaro Superiore", + "state": "Sicilia", + "country": "Italy", + "latitude": 38.1814676, + "longitude": 15.5276218, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Europe", + "European Union" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ], + "Middle East & North Africa (MENA)": [ + "MENA" + ] + } + }, + { + "name": "Volkswagen Slovakia Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.nadacia-volkswagen.sk/", + "email": "", + "address": "Jána Jánoša 1 bratislava", + "city": "Bratislava", + "state": "Bratislava Region", + "country": "Slovakia", + "latitude": 48.1477745, + "longitude": 17.1071553, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Central & Eastern / Balkans)": [ + "Slovakia" + ] + } + }, + { + "name": "Virgin Unite", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.virginunite.com", + "email": "", + "address": "50a Charlotte Street, London, UK", + "city": "London", + "state": "England", + "country": "United Kingdom", + "latitude": 51.5198393, + "longitude": -0.1358514, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "Romanian Federation for Community Foundations", + "source": "Philea", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "website": "https://ffcr.ro/", + "email": "", + "address": "Int. Dridu nr. 7, bl. F13, sc. B, ap. 68, sector 1", + "city": "Bucharest", + "state": "Bucharest", + "country": "Romania", + "latitude": 44.452444, + "longitude": 26.0856777, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geographic_focus": { + "Europe (Central & Eastern / Balkans)": [ + "Romania" + ] + } + }, + { + "name": "Grundfos Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.pdjf.dk/en/", + "email": "", + "address": "Poul Due Jensens Vej 7, Bjerringbro, Denmark", + "city": "Bjerringbro", + "state": "", + "country": "Denmark", + "latitude": 56.3802866, + "longitude": 9.6690239, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geographic_focus": { + "Europe (Nordic Region)": [ + "Denmark" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "Exea Impact", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.exeaimpact.org", + "email": "", + "address": "Puig Brands Torre 2, Plaça d'Europa, 34, L'Hospitalet de Llobregat, Spain", + "city": "L'Hospitalet de Llobregat", + "state": "Catalunya", + "country": "Spain", + "latitude": 41.357969, + "longitude": 2.1227306, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "name": "Bulgarian Fund for Women", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://bgfundforwomen.org/en/", + "email": "", + "address": "улица „Солунска“ 26, Sofia, Bulgaria", + "city": "Sofia", + "state": "Sofia City Province", + "country": "Bulgaria", + "latitude": 42.6929644, + "longitude": 23.3191476, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria" + ] + } + }, + { + "name": "Kosovar Civil Society Foundation", + "source": "Philea", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "website": "http://www.kcsfoundation.org/", + "email": "", + "address": "MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo", + "city": "Pristina", + "state": "", + "country": "", + "latitude": 42.6673053, + "longitude": 21.1643067, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs" + ], + "geographic_focus": { + "Europe (Central & Eastern / Balkans)": [ + "Kosovo" + ] + } + }, + { + "name": "Swarovski Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.swarovskifoundation.org/", + "email": "", + "address": "Chiswick Business Park, Chiswick High Road, London, UK", + "city": "London", + "state": "England", + "country": "United Kingdom", + "latitude": 51.4930604, + "longitude": -0.2748696, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Environment/Climate" + ], + "geographic_focus": { + "Worldwide": [ + "Global" + ] + } + }, + { + "name": "L'Oréal Fund for Women", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://fondationloreal.com/en", + "email": "", + "address": "14 Rue Royale, Paris, France", + "city": "Paris", + "state": "Île-de-France", + "country": "France", + "latitude": 48.8681213, + "longitude": 2.3233605, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "Foundever.org", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://foundever.org/", + "email": "", + "address": "600 Brickell Ave ste 3200, Miami, FL, USA", + "city": "Miami", + "state": "Florida", + "country": "United States", + "latitude": 25.7679928, + "longitude": -80.19088359999999, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Asia & Pacific": [ + "Philippines" + ], + "Middle East & North Africa (MENA)": [ + "Egypt", + "Morocco" + ], + "Europe (Western / General)": [ + "Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "Fondazione Capellino", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://fondazionecapellino.org/en/fondazione-capellino", + "email": "", + "address": "Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy", + "city": "Genova", + "state": "Liguria", + "country": "Italy", + "latitude": 44.4084736, + "longitude": 8.900479599999999, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Environment/Climate", + "Food, Agriculture & Nutrition" + ], + "geographic_focus": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Western / General)": [ + "European Union" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "Ursimone Wietslibach Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.uswf.ch/", + "email": "", + "address": "Bahnhofstrasse 25, Zug, Switzerland", + "city": "Zug", + "state": "Zug", + "country": "Switzerland", + "latitude": 47.1701744, + "longitude": 8.515627799999999, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Health" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "Switzerland" + ], + "Asia & Pacific": [ + "Cambodia", + "Laos", + "Myanmar", + "Thailand" + ] + } + }, + { + "name": "America for Bulgaria Foundation", + "source": "Philea", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "http://www.us4bg.org/", + "email": "", + "address": "ul. \"Malyovitsa\" 6, Sofia, Bulgaria", + "city": "Sofia", + "state": "Sofia City Province", + "country": "Bulgaria", + "latitude": 42.6892438, + "longitude": 23.3287435, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "#WILLDOES", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.willdoes.co.uk/", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€100,355 (2023-24) (converted from GBP)", + "average_grant": "", + "grant_range": "€4,800 - €12,000 (converted from GBP)", + "funding_model": "No Public Process", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "83629", + "charity_number": "1187099", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Health" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "10 % For The Ocean", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.10percentfortheocean.org", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€255,697 (2024 expenditure) (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly disclosed (described as \"micro-grants\" and \"unrestricted funding\")", + "funding_model": "No public application process", + "application_details": "", + "success_rate": "Not publicly available", + "decision_time": "Not publicly disclosed", + "expenditure": "213081", + "charity_number": "1186488", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Environment/Climate", + "Health", + "Sciences & Research" + ], + "geographic_focus": { + "Worldwide": [ + "Global", + "International", + "Worldwide" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "136193034", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.novartis.com/us-en/esg/corporate-responsibility/novartis-us-foundation", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "$10.18 million (2023)", + "average_grant": "", + "grant_range": "$25,000 - $7,500,000+ (varies by program)", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly disclosed (operates primarily through strategic partnerships)", + "decision_time": "60+ days (for educational grants); strategic partnerships vary", + "expenditure": null, + "charity_number": "136193034", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Food, Agriculture & Nutrition", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "20th International Geographical Congress Fund", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.rgs.org/in-the-field/grants/research-grants/rgs-ibg-small-research-grants", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€4,200 (converted from GBP)", + "average_grant": "", + "grant_range": "Up - €4,200 (converted from GBP)", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly disclosed", + "decision_time": "Approximately 8-12 weeks", + "expenditure": "3500", + "charity_number": "CUSTOM_29E5C29E", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Sciences & Research" + ], + "geographic_focus": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "3R Foundation", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "A G Manly Charitable Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "A H Boulton Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://register-of-charities.charitycommission.gov.uk/charity-search/-/charity-details/219907", + "email": "steven.greenall@ntlworld.com", + "address": "31 Linkside, WIRRAL, Merseyside, CH63 5PE", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "106813", + "charity_number": "219907", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "A J Bell Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "A J H Ashby Will Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "A P Taylor Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.aptaylortrust.org.uk", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€157,333 (converted from GBP)", + "average_grant": "", + "grant_range": "Not specified", + "funding_model": "", + "application_details": "", + "success_rate": "Not available", + "decision_time": "3-4 months (January deadline, May distribution)", + "expenditure": "131111", + "charity_number": "260741", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Health" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "A S Hornby Educational Trust Cio", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "A W Charitable Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=283322&subid=0", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€6,684,000 (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly disclosed", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "Not publicly disclosed", + "expenditure": "5570000", + "charity_number": "283322", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "Europe", + "United Kingdom" + ], + "Worldwide": [ + "International" + ] + } + }, + { + "name": "A Z H R CHARITABLE TRUST", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€196,044 (2025) (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly disclosed", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly available", + "decision_time": "Not publicly available", + "expenditure": "163370", + "charity_number": "280953", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "A G Leventis Foundation", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "Abo Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "ACACIA CHARITABLE TRUST", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€115,138 (2024) (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly specified", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly available", + "decision_time": "At trustees' discretion", + "expenditure": "95948", + "charity_number": "274275", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Academie du Vin Foundation", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.iwsc.net", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€337,230 (2024) (converted from GBP)", + "average_grant": "", + "grant_range": "€3,000 - €6,000 (converted from GBP)", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly available", + "decision_time": "Not publicly specified", + "expenditure": "281025", + "charity_number": "1180436", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Worldwide": [ + "Global", + "International" + ], + "North America": [ + "Canada", + "United States" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Asia & Pacific": [ + "Australia", + "China", + "New Zealand" + ], + "Latin America & Caribbean": [ + "Argentina", + "Brazil", + "Chile" + ], + "Europe (Southern / Mediterranean)": [ + "Italy", + "Portugal", + "Spain" + ], + "Europe (Western / General)": [ + "France", + "Germany", + "Ireland", + "United Kingdom" + ] + } + }, + { + "name": "Academy Of Medical Sciences", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "Access The Foundation For Social Investment", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + }, + { + "name": "ACE Africa (UK)", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.ace-africa.org", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€649,759 (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly disclosed", + "funding_model": "", + "application_details": "", + "success_rate": "Not applicable (invitation only)", + "decision_time": "Not applicable", + "expenditure": "541466", + "charity_number": "1111283", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Health" + ], + "geographic_focus": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Kenya", + "Tanzania" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Achisomoch Aid Company Limited", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://achisomoch.org/", + "email": "admin@achisomoch.org", + "address": "COHEN ARNOLD, NEW BURLINGTON HOUSE, 1075 FINCHLEY ROAD, LONDON, NW11 0PU", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": null, + "charity_number": "278387", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "North America": [ + "Canada", + "United States" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Europe (Central & Eastern / Balkans)": [ + "Lithuania", + "Russia" + ], + "Latin America & Caribbean": [ + "Argentina" + ], + "Europe (Western / General)": [ + "Belgium", + "France", + "Germany", + "Monaco", + "United Kingdom" + ], + "Middle East & North Africa (MENA)": [ + "Israel" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "name": "ACTACC", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.actacc.org", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€115,229 (2024) (converted from GBP)", + "average_grant": "", + "grant_range": "€6,000 - €84,000 (converted from GBP)", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly available", + "decision_time": "Applications adjudicated by Education Committee; announcements at Spring Scientific Meeting", + "expenditure": "96024", + "charity_number": "1098009", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Sciences & Research" + ], + "geographic_focus": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Ireland", + "United Kingdom" + ] + } + }, + { + "name": "ACTION FOR A-T", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.actionforAT.org", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "Not publicly available", + "average_grant": "", + "grant_range": "Up - €300,000 (converted from GBP)", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": null, + "charity_number": "1145303", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Worldwide": [ + "Global", + "International" + ], + "Europe (Western / General)": [ + "Netherlands", + "United Kingdom" + ], + "Asia & Pacific": [ + "Australia" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "ACTION FOR SUSTAINABLE COMMUNITIES FOUNDATION", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€47,117 (2024) (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly specified", + "funding_model": "Invitation Only / No Public Application Process", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "39264", + "charity_number": "1193197", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Environment/Climate", + "Health" + ], + "geographic_focus": { + "Asia & Pacific": [ + "Asia", + "Sri Lanka" + ], + "Europe (Western / General)": [ + "Europe", + "France", + "United Kingdom" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Malawi" + ] + } + }, + { + "name": "ACTION MEDICAL RESEARCH", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.action.org.uk", + "email": "info@action.org.uk", + "address": "Action Medical Research, 5th Floor, 167-169 Great Portland Street, London, W1W 5PF", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€5,088,000 (converted from GBP)", + "average_grant": "", + "grant_range": "Up - €240,000 (converted from GBP)", + "funding_model": "", + "application_details": "", + "success_rate": "33-40% (for full applications)", + "decision_time": "9-10 months (from outline to award)", + "expenditure": "4240000", + "charity_number": "208701", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Health", + "Sciences & Research", + "Youth/Children Development" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "Ireland", + "United Kingdom" + ] + } + }, + { + "name": "Action With Communities In Rural England Acre", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "ACTIS ACTS CIO", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.act.is/people/actis-acts/", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€1,404,000 (converted from GBP)", + "average_grant": "", + "grant_range": "", + "funding_model": "Rolling basis via application form", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "1170000", + "charity_number": "1176455", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education", + "Health", + "Human/Civil Rights", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geographic_focus": { + "Worldwide": [ + "International" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Kenya", + "Mauritius", + "Nigeria", + "South Africa" + ], + "Asia & Pacific": [ + "Australia", + "China", + "India", + "Singapore" + ], + "Middle East & North Africa (MENA)": [ + "Egypt", + "Morocco", + "Tunisia" + ], + "Latin America & Caribbean": [ + "Brazil", + "Mexico" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "ACTIVE CHESHIRE", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.activecheshire.org", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "€240 - €30,000 (converted from GBP)", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": null, + "charity_number": "701764", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Health", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "ADAR CHARITABLE TRUST", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€210,541 (converted from GBP)", + "average_grant": "", + "grant_range": "Not publicly disclosed", + "funding_model": "", + "application_details": "", + "success_rate": "Not publicly available", + "decision_time": "Not publicly available", + "expenditure": "175451", + "charity_number": "328731", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Addenbrooke's Charitable Trust", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.act4addenbrookes.org.uk", + "email": "hello@act4addenbrookes.org.uk", + "address": "BOX 126, ADDENBROOKES HOSPITAL, HILLS ROAD, CAMBRIDGE, CB2 0QQ", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "No minimum - €48,000 (converted from GBP)", + "funding_model": "Rolling basis via online portal", + "application_details": "", + "success_rate": "", + "decision_time": "2 weeks (under £10,000); up to 3 months (£10,000+)", + "expenditure": "3750000", + "charity_number": "1170103", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Sciences & Research" + ], + "geographic_focus": { + "Africa / Sub-Saharan Africa": [ + "Botswana", + "Kenya", + "Sierra Leone", + "Uganda", + "Zimbabwe" + ], + "Latin America & Caribbean": [ + "El Salvador" + ], + "Asia & Pacific": [ + "India", + "Myanmar" + ], + "Middle East & North Africa (MENA)": [ + "Jordan" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Adderbury Feoffee Charity", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://adderburyfeoffee.co.uk/", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "€9,600 - €12,000 (converted from GBP)", + "average_grant": "", + "grant_range": "Not specified", + "funding_model": "Fixed Deadline (Educational) / Rolling (Other funds)", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "8500", + "charity_number": "200902", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [ + "Education" + ], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Additional Curates Society", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "https://www.additionalcurates.co.uk", + "email": "info@additionalcurates.co.uk", + "address": "16 COMMERCIAL STREET, BIRMINGHAM, B1 1RS", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "Not publicly available", + "average_grant": "", + "grant_range": "Not specified", + "funding_model": "", + "application_details": "", + "success_rate": "Not available", + "decision_time": "Not available", + "expenditure": null, + "charity_number": "209448", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Adelphi Genetics Forum", + "source": "Hinchilla", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "website": "", + "email": "", + "address": "", + "city": "", + "state": "", + "country": "", + "latitude": null, + "longitude": null, + "funding_info": { + "annual_giving": "", + "average_grant": "", + "grant_range": "", + "funding_model": "", + "application_details": "", + "success_rate": "", + "decision_time": "", + "expenditure": "", + "charity_number": "", + "application_portal": "", + "sources": [] + }, + "thematic_focus": [], + "geographic_focus": {} + } +] \ No newline at end of file diff --git a/src/data/preprocessed/hinchilla_members_preprocessed.json b/src/data/preprocessed/hinchilla_members_preprocessed.json new file mode 100644 index 0000000..5548865 --- /dev/null +++ b/src/data/preprocessed/hinchilla_members_preprocessed.json @@ -0,0 +1,934 @@ +[ + { + "name": "#WILLDOES", + "link": "https://www.hinchilla.com/funder-directory/willdoes", + "philea_info": { + "About": "", + "Programme Areas": "- Mental health support for young people\n- Counselling and wellbeing services\n- Support for bereaved children\n- Outdoor social spaces and recreational facilities\n- Activities promoting social inclusion\n- Physical and mental health improvements for youth\n\n\n### What They Don't Fund\n\nInformation not publicly available.", + "Geographic Focus": "Area of Operation: Cornwall, Dorset, Somerset, Wiltshire, Devon, Hampshire\n\n- Mental health support for young people\n- Counselling and wellbeing services\n- Support for bereaved children\n- Outdoor social spaces and recreational facilities\n- Activities promoting social inclusion\n- Physical and mental health improvements for youth\n\n\n### What They Don't Fund\n\nInformation not publicly available.\n\n| Metric | Value |\n|--------|-------|\n| Annual Giving | £83,629 (2023-24) |\n| Grant Range | £4,000 - £10,000 |\n| Average Grant | £6,000 |\n| Application Method | No Public Process |\n| Geographic Focus | Dorset, Purbeck, Swanage |", + "charityNumber": "1187099", + "areaOfOperation": "Cornwall, Dorset, Somerset, Wiltshire, Devon, Hampshire", + "expenditure": "83629", + "website": "https://www.willdoes.co.uk/", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£83,629 (2023-24)", + "success_rate": "", + "decision_time": "", + "grant_range": "£4,000 - £10,000", + "funding_model": "No Public Process" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "10 % For The Ocean", + "link": "https://www.hinchilla.com/funder-directory/10-for-the-ocean", + "philea_info": { + "About": "10% For The Ocean is a UK registered charity (CIO - Foundation, Charity No. 1186488) registered on 20 November 2019. The charity operates as a global alliance of over 60 leading ocean charities and initiatives across 27 countries, working to build the world's largest philanthropic fund for ocean conservation. Their mission is to shift ocean charitable funding from 0.3-0.5% to 10% by 2030, which would unlock approximately $80 billion annually for marine ecosystem restoration and protection. The organisation provides catalytic, unrestricted funding to grassroots organisations and researchers on the frontlines of marine protection through their Ocean Recovery Network. As of 2024, the charity reported total income of £145,978 and total expenditure of £213,081.", + "Programme Areas": "### Grant Programs\nThe organisation operates primarily through their **Ocean Recovery Network**, providing unrestricted grants to selected ocean conservation organisations. They describe their grants as \"micro-grants for small, locally focused ocean conservation organisations and projects.\" Selected grantees become part of the Ocean Recovery Network, with additional funds raised distributed equally to network members.\n\n**Funding Model**: Described as \"like a mutual fund for the sea,\" pooling donations from individuals, businesses, and foundations to fund impactful conservation, research, and restoration initiatives worldwide.\n\n### Priority Areas\nAll funded organisations must align with one or more of the 10 targets of the UN's Sustainable Development Goal 14: Life Below Water. Priority areas include:\n\n- **Marine Conservation Programs**: Protecting marine biodiversity and ecosystems\n- **Legal & Advocacy Efforts**: Driving policy change for ocean protection\n- **Education & Awareness**: Bringing people closer to ocean conservation\n- **Research Initiatives**: Supporting scientific research on ocean health\n- **Habitat Restoration**: Focusing on critical issues like coral reefs and seagrass restoration\n- **Fighting Overfishing**: Addressing the fact that 90% of global fish stocks are overfished or exploited\n- **Pollution Prevention**: Tackling plastic pollution and other marine threats\n\nThe charity specifically supports grassroots organisations and locally-focused projects that may struggle to access traditional funding sources.\n\n### What They Don't Fund\nNot publicly specified, though the focus is exclusively on ocean conservation and marine protection aligned with UN SDG 14.", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\nThe organisation operates primarily through their **Ocean Recovery Network**, providing unrestricted grants to selected ocean conservation organisations. They describe their grants as \"micro-grants for small, locally focused ocean conservation organisations and projects.\" Selected grantees become part of the Ocean Recovery Network, with additional funds raised distributed equally to network members.\n\n**Funding Model**: Described as \"like a mutual fund for the sea,\" pooling donations from individuals, businesses, and foundations to fund impactful conservation, research, and restoration initiatives worldwide.\n\n### Priority Areas\nAll funded organisations must align with one or more of the 10 targets of the UN's Sustainable Development Goal 14: Life Below Water. Priority areas include:\n\n- **Marine Conservation Programs**: Protecting marine biodiversity and ecosystems\n- **Legal & Advocacy Efforts**: Driving policy change for ocean protection\n- **Education & Awareness**: Bringing people closer to ocean conservation\n- **Research Initiatives**: Supporting scientific research on ocean health\n- **Habitat Restoration**: Focusing on critical issues like coral reefs and seagrass restoration\n- **Fighting Overfishing**: Addressing the fact that 90% of global fish stocks are overfished or exploited\n- **Pollution Prevention**: Tackling plastic pollution and other marine threats\n\nThe charity specifically supports grassroots organisations and locally-focused projects that may struggle to access traditional funding sources.\n\n### What They Don't Fund\nNot publicly specified, though the focus is exclusively on ocean conservation and marine protection aligned with UN SDG 14.\n\n- **Annual Giving**: £213,081 (2024 expenditure)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly disclosed\n- **Grant Range**: Not publicly disclosed (described as \"micro-grants\" and \"unrestricted funding\")\n- **Geographic Focus**: International (27 countries)\n- **Application Method**: No public application process", + "charityNumber": "1186488", + "areaOfOperation": "England, Wales", + "expenditure": "213081", + "website": "https://www.10percentfortheocean.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£213,081 (2024 expenditure)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly disclosed", + "grant_range": "Not publicly disclosed (described as \"micro-grants\" and \"unrestricted funding\")", + "funding_model": "No public application process" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Environment/Climate", + "Health", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "Global", + "International", + "Worldwide" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "136193034", + "link": "https://www.hinchilla.com/funder-directory/136193034", + "philea_info": { + "About": "The Novartis US Foundation is a 501(c)(3) charitable foundation established by Novartis in 1966 to support philanthropic efforts in the United States. The foundation operates with a mission to improve health in underserved communities by creating innovative and sustainable solutions to expand access to healthcare and build trust within the healthcare system. In 2023, the foundation distributed $10.18 million through 8 awards, with major multi-year commitments exceeding $80 million announced since refocusing its mission.\n\nThe foundation operates primarily through strategic partnerships with major healthcare organisations, HBCUs, and community health initiatives rather than accepting general unsolicited applications. However, Novartis does accept unsolicited applications for Professional Medical Education Grants and Patient Education Grants through its Grants Central Station (NGCS) portal. President Binta Beard leads the foundation with a strong focus on health equity, community-centred approaches, and addressing social determinants of health.", + "Programme Areas": "### Major Initiatives\n\n**Beacon of Hope HBCU Initiative** ($50M+ commitment)\n- Established clinical trial Centres of Excellence at four Historically Black Medical Schools: Morehouse School of Medicine, Howard University College of Medicine, Meharry Medical College, and Charles R. Drew University of Medicine and Science (approximately $31.4 million)\n- Three-year scholarships of $10,000 annually to 120 students at 26 HBCUs and Medical Schools\n- TMCF partnership providing $2.25 million over nine years for faculty research grants ($25,000 each, 10 grants annually)\n- Partnerships with Coursera, National Medical Association, Merck, and Sanofi\n\n**Health Equity Commitment** ($25 million)\n- Focus on reducing health disparities in the US\n- Emphasis on clinical trial diversity\n- Building pathways to better breast, prostate, and cardiovascular health for two million people by 2030\n\n**Community Health Solutions Strategy**\n- **Cardiovascular Health**: HEART program (five-year commitment) in Nashville, Detroit, and San Bernardino; EngAGE with Heart in Baltimore\n- **Prostate Cancer**: Partnership with ZERO Prostate Cancer \"Blitz the Barriers\" initiative ($7.5 million of $20 million total), targeting 12 highest-risk communities, launching in Atlanta and Baltimore\n- **Breast Health**: Community-based screening and education programs\n- Goal: Reach two million people by 2030\n\n**COVID-19 Response Fund** ($5 million, 2020)\n- 40 community organisations received grants totaling $4.89 million\n- 20 programs focused on food security, mental health, and social services\n- Recipients included NAMI, Commons Project ($250,000), Americares ($125,000), Direct Relief ($125,000), and community foundations across the US\n\n### Strategic Partnerships\n- **CDC Foundation**: Signature partnership for health systems strengthening\n- **Institute for Healthcare Improvement (IHI)**: Healthcare transformation partnership\n- **New Jersey Primary Care Association (NJPCA)**: $2 million over two years for telehealth programs at community health centres\n- **Thurgood Marshall College Fund (TMCF)**: Multi-year HBCU alliance\n- **ZERO Prostate Cancer**: $7.5 million commitment for Blitz the Barriers\n\n### Educational Grants (Through NGCS Portal)\n- **Professional Medical Education Grants**: Support for accredited and non-accredited continuing medical education for healthcare professionals\n- **Patient Education Grants**: Support for independent patient education initiatives\n- **Sponsorships and Memberships**: Funding for US nonprofit healthcare organisations (501(c)3, 501(c)4, or 501(c)6)\n\n### Employee Programs\n- **Matching Gifts Program**: Dollar-for-dollar match up to $5,000 per associate annually for contributions to 501(c)(3) organisations\n- **Dollars for Doers**: Volunteer grants including board service grants ($750 after one year of board service, renewable for up to three years)\n- **Science Scholars Program**: Partnership with Independent College Fund of New Jersey providing $3,000 scholarships to 15 undergraduate science majors annually, plus year-long mentoring with Novartis scientists\n\n### Disaster Preparedness\n- Funding through American Red Cross, Americares, and Direct Relief to support disaster response throughout the US\n\n### What They Don't Fund\n- Overhead administrative costs\n- Recreational components (golf, spa, resort activities)\n- Gifts to speakers or attendees\n- Activities allowing speakers/participants to bring spouses or guests to meal functions\n- Requests not submitted at least 60 days prior to event date\n- Direct support to individuals (only to organisations)\n- Projects linked to prescribing, purchasing, formulary status, or reimbursement", + "Geographic Focus": "Area of Operation: United Kingdom\n\n### Major Initiatives\n\n**Beacon of Hope HBCU Initiative** ($50M+ commitment)\n- Established clinical trial Centres of Excellence at four Historically Black Medical Schools: Morehouse School of Medicine, Howard University College of Medicine, Meharry Medical College, and Charles R. Drew University of Medicine and Science (approximately $31.4 million)\n- Three-year scholarships of $10,000 annually to 120 students at 26 HBCUs and Medical Schools\n- TMCF partnership providing $2.25 million over nine years for faculty research grants ($25,000 each, 10 grants annually)\n- Partnerships with Coursera, National Medical Association, Merck, and Sanofi\n\n**Health Equity Commitment** ($25 million)\n- Focus on reducing health disparities in the US\n- Emphasis on clinical trial diversity\n- Building pathways to better breast, prostate, and cardiovascular health for two million people by 2030\n\n**Community Health Solutions Strategy**\n- **Cardiovascular Health**: HEART program (five-year commitment) in Nashville, Detroit, and San Bernardino; EngAGE with Heart in Baltimore\n- **Prostate Cancer**: Partnership with ZERO Prostate Cancer \"Blitz the Barriers\" initiative ($7.5 million of $20 million total), targeting 12 highest-risk communities, launching in Atlanta and Baltimore\n- **Breast Health**: Community-based screening and education programs\n- Goal: Reach two million people by 2030\n\n**COVID-19 Response Fund** ($5 million, 2020)\n- 40 community organisations received grants totaling $4.89 million\n- 20 programs focused on food security, mental health, and social services\n- Recipients included NAMI, Commons Project ($250,000), Americares ($125,000), Direct Relief ($125,000), and community foundations across the US\n\n### Strategic Partnerships\n- **CDC Foundation**: Signature partnership for health systems strengthening\n- **Institute for Healthcare Improvement (IHI)**: Healthcare transformation partnership\n- **New Jersey Primary Care Association (NJPCA)**: $2 million over two years for telehealth programs at community health centres\n- **Thurgood Marshall College Fund (TMCF)**: Multi-year HBCU alliance\n- **ZERO Prostate Cancer**: $7.5 million commitment for Blitz the Barriers\n\n### Educational Grants (Through NGCS Portal)\n- **Professional Medical Education Grants**: Support for accredited and non-accredited continuing medical education for healthcare professionals\n- **Patient Education Grants**: Support for independent patient education initiatives\n- **Sponsorships and Memberships**: Funding for US nonprofit healthcare organisations (501(c)3, 501(c)4, or 501(c)6)\n\n### Employee Programs\n- **Matching Gifts Program**: Dollar-for-dollar match up to $5,000 per associate annually for contributions to 501(c)(3) organisations\n- **Dollars for Doers**: Volunteer grants including board service grants ($750 after one year of board service, renewable for up to three years)\n- **Science Scholars Program**: Partnership with Independent College Fund of New Jersey providing $3,000 scholarships to 15 undergraduate science majors annually, plus year-long mentoring with Novartis scientists\n\n### Disaster Preparedness\n- Funding through American Red Cross, Americares, and Direct Relief to support disaster response throughout the US\n\n### What They Don't Fund\n- Overhead administrative costs\n- Recreational components (golf, spa, resort activities)\n- Gifts to speakers or attendees\n- Activities allowing speakers/participants to bring spouses or guests to meal functions\n- Requests not submitted at least 60 days prior to event date\n- Direct support to individuals (only to organisations)\n- Projects linked to prescribing, purchasing, formulary status, or reimbursement\n\n- **Annual Giving**: $10.18 million (2023)\n- **Success Rate**: Not publicly disclosed (operates primarily through strategic partnerships)\n- **Decision Time**: 60+ days (for educational grants); strategic partnerships vary\n- **Grant Range**: $25,000 - $7,500,000+ (varies by program)\n- **Geographic Focus**: United States, with emphasis on underserved communities", + "charityNumber": "136193034", + "areaOfOperation": "United Kingdom", + "expenditure": null, + "website": "https://www.novartis.com/us-en/esg/corporate-responsibility/novartis-us-foundation", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "$10.18 million (2023)", + "success_rate": "Not publicly disclosed (operates primarily through strategic partnerships)", + "decision_time": "60+ days (for educational grants); strategic partnerships vary", + "grant_range": "$25,000 - $7,500,000+ (varies by program)", + "funding_model": "" + }, + "tags_focus": [ + "Education", + "Food, Agriculture & Nutrition", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "20th International Geographical Congress Fund", + "link": "https://www.hinchilla.com/funder-directory/20th-international-geographical-congress-fund", + "philea_info": { + "About": "The 20th International Geographical Congress Fund was established following the 20th International Geographical Congress held in London in 1964, which was the largest IGC in history at the time, attended by Queen Elizabeth II and numerous dignitaries. The fund is administered by the Royal Geographical Society (with the Institute of British Geographers), a prestigious organisation chartered by Queen Victoria in 1859. Each year, one grant of up to £3,500 is awarded from this fund as part of the RGS-IBG Small Research Grants programme, which collectively supports over 60 fieldwork projects annually across the globe. The fund specifically targets early career researchers conducting geographical research that will advance knowledge and lead to publications. Unlike most RGS grants, this fund notably does not require applicants to be Fellows or Members of the Society, making it more accessible to early career researchers.", + "Programme Areas": "### Grant Programs\n- **20th International Geographical Congress Fund**: One grant of up to £3,500 awarded annually for original desk-based or field-based research in any area of geography\n- **Application Method**: Online application form submission via email to grants@rgs.org\n- **Deadline**: 3 February annually (applications accepted at 11:59pm)\n\n### Priority Areas\n- Original geographical research that advances knowledge in any area of geography\n- Projects that will lead to publications (journal articles, books, reports)\n- Research by early career individuals (within 6 years of PhD completion preferred, though up to 10 years post-PhD considered)\n- Both desk-based and field-based research projects\n\n### What They Don't Fund\n- Equipment grants (specifically excluded for this fund)\n- Postgraduate research (full PhD funding)\n- Conference attendance only\n- Replacement wages\n- Equipment costs exceeding 20% of total award (general RGS policy, though equipment grants cannot be made from this specific fund)", + "Geographic Focus": "Area of Operation: International\n\n### Grant Programs\n- **20th International Geographical Congress Fund**: One grant of up to £3,500 awarded annually for original desk-based or field-based research in any area of geography\n- **Application Method**: Online application form submission via email to grants@rgs.org\n- **Deadline**: 3 February annually (applications accepted at 11:59pm)\n\n### Priority Areas\n- Original geographical research that advances knowledge in any area of geography\n- Projects that will lead to publications (journal articles, books, reports)\n- Research by early career individuals (within 6 years of PhD completion preferred, though up to 10 years post-PhD considered)\n- Both desk-based and field-based research projects\n\n### What They Don't Fund\n- Equipment grants (specifically excluded for this fund)\n- Postgraduate research (full PhD funding)\n- Conference attendance only\n- Replacement wages\n- Equipment costs exceeding 20% of total award (general RGS policy, though equipment grants cannot be made from this specific fund)\n\n- **Annual Giving**: £3,500 (one grant per year from this fund)\n- **Success Rate**: Not publicly disclosed\n- **Decision Time**: Approximately 8-12 weeks\n- **Grant Range**: Up to £3,500 (single grant awarded)\n- **Geographic Focus**: UK-based researchers (must be affiliated with UK Higher Education Institution)", + "charityNumber": "CUSTOM_29E5C29E", + "areaOfOperation": "International", + "expenditure": "3500", + "website": "https://www.rgs.org/in-the-field/grants/research-grants/rgs-ibg-small-research-grants", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£3,500 (one grant per year from this fund)", + "success_rate": "Not publicly disclosed", + "decision_time": "Approximately 8-12 weeks", + "grant_range": "Up to £3,500 (single grant awarded)", + "funding_model": "" + }, + "tags_focus": [ + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "3R Foundation", + "link": "https://www.hinchilla.com/funder-directory/3r-foundation", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "A G Manly Charitable Trust", + "link": "https://www.hinchilla.com/funder-directory/a-g-manly-charitable-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "A H Boulton Trust", + "link": "https://www.hinchilla.com/funder-directory/a-h-boulton-trust", + "philea_info": { + "About": "The A H Boulton Trust is a well-established grant-making trust founded in 1955 and operating in the Wirral area of Merseyside. With an annual income of over £125,000 and expenditure exceeding £106,000, the trust operates through a five-member board of trustees who have close connections to the Boulton Cottage Homes Trust. The trust's primary purpose is to aid the erection and maintenance of buildings used for the preaching of the Gospel, while also providing relief to the sick or needy and offering financial assistance to deserving individuals as determined by the trustees. The trust carries out its charitable purposes primarily through grant-making activities, supporting elderly people and other charities or voluntary bodies. All trustees serve without remuneration, and the charity maintains up-to-date reporting with the Charity Commission.", + "Programme Areas": "### Grant Programs\n\nThe trust operates through trustee-directed grant-making rather than formal application programs. Grants are awarded at the discretion of the trustees based on the trust's charitable objectives.\n\n### Priority Areas\n\n**Religious Buildings and Gospel Work**\n- Erection of new buildings for preaching the Gospel\n- Maintenance and upkeep of existing religious buildings\n- Support for facilities used for Gospel teaching and doctrine\n\n**Social Welfare**\n- Relief of the sick\n- Support for those in need\n- Financial assistance to deserving individuals\n- Prevention or relief of poverty\n- Accommodation and housing support\n\n**Beneficiary Groups**\n- Elderly or old people\n- Other charities and voluntary bodies\n- Individuals deemed deserving by trustees\n\n### What They Don't Fund\n\nThe trust's charitable objects are specific to Gospel-related buildings, poverty relief, and housing. The trust operates with a specific focus on the Wirral area and may not support activities outside these defined purposes.", + "Geographic Focus": "Area of Operation: Wirral\n\n### Grant Programs\n\nThe trust operates through trustee-directed grant-making rather than formal application programs. Grants are awarded at the discretion of the trustees based on the trust's charitable objectives.\n\n### Priority Areas\n\n**Religious Buildings and Gospel Work**\n- Erection of new buildings for preaching the Gospel\n- Maintenance and upkeep of existing religious buildings\n- Support for facilities used for Gospel teaching and doctrine\n\n**Social Welfare**\n- Relief of the sick\n- Support for those in need\n- Financial assistance to deserving individuals\n- Prevention or relief of poverty\n- Accommodation and housing support\n\n**Beneficiary Groups**\n- Elderly or old people\n- Other charities and voluntary bodies\n- Individuals deemed deserving by trustees\n\n### What They Don't Fund\n\nThe trust's charitable objects are specific to Gospel-related buildings, poverty relief, and housing. The trust operates with a specific focus on the Wirral area and may not support activities outside these defined purposes.\n\n- **Registered Charity Number**: 219907\n- **Annual Income**: £125,306 (2024/25)\n- **Annual Expenditure**: £106,813 (2024/25)\n- **Type**: Grant-making trust\n- **Geographic Focus**: Wirral, Merseyside\n- **Established**: 1955 (Trust Deed dated 9 July 1955, amended 18 August 2019)", + "charityNumber": "219907", + "areaOfOperation": "Wirral", + "expenditure": "106813", + "website": "https://register-of-charities.charitycommission.gov.uk/charity-search/-/charity-details/219907", + "phone": "1516081621", + "email": "steven.greenall@ntlworld.com", + "address": "31 Linkside, WIRRAL, Merseyside, CH63 5PE", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "", + "grant_range": "", + "funding_model": "" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "A J Bell Trust", + "link": "https://www.hinchilla.com/funder-directory/a-j-bell-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "A J H Ashby Will Trust", + "link": "https://www.hinchilla.com/funder-directory/a-j-h-ashby-will-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "A P Taylor Trust", + "link": "https://www.hinchilla.com/funder-directory/a-p-taylor-trust", + "philea_info": { + "About": "Established from the estate of Albert Palmer Taylor and founded on 16th July 1969, the A P Taylor Trust is a grant-making charity (registered number 260741) that serves the inhabitants of Hayes and Harlington. With annual expenditure of approximately £131,111 (most recent year), the Trust applies its yearly income to improve conditions of life for local residents without distinction of political, religious, or other opinions. The Trust has been supporting the local community for over 50 years through grants to both individuals and organisations for recreational, leisure, and general charitable purposes.", + "Programme Areas": "### Grant Programs\nThe Trust provides grants in the following areas:\n- Individual grants for residents in need\n- Organisational grants for local charities and community groups\n- Support for recreational and leisure activities\n- General charitable purposes\n\n### Priority Areas\n- General Charitable Purposes\n- Health Advancement and Life-Saving Activities\n- Arts, Culture, Heritage, and Science\n- Amateur Sports\n- Children and Youth Services\n- Elderly Support\n- Support for People with Disabilities\n\n### What They Don't Fund\nNo explicit exclusions documented, though funding is strictly limited to beneficiaries within the historic parishes of Hayes and Harlington as they existed on 9 January 1952.", + "Geographic Focus": "Area of Operation: Hillingdon\n\n### Grant Programs\nThe Trust provides grants in the following areas:\n- Individual grants for residents in need\n- Organisational grants for local charities and community groups\n- Support for recreational and leisure activities\n- General charitable purposes\n\n### Priority Areas\n- General Charitable Purposes\n- Health Advancement and Life-Saving Activities\n- Arts, Culture, Heritage, and Science\n- Amateur Sports\n- Children and Youth Services\n- Elderly Support\n- Support for People with Disabilities\n\n### What They Don't Fund\nNo explicit exclusions documented, though funding is strictly limited to beneficiaries within the historic parishes of Hayes and Harlington as they existed on 9 January 1952.\n\n- **Annual Giving**: £131,111 (most recent year)\n- **Success Rate**: Not available\n- **Decision Time**: 3-4 months (January deadline, May distribution)\n- **Grant Range**: Not specified\n- **Geographic Focus**: Hayes and Harlington parishes (as existed on 9 January 1952)", + "charityNumber": "260741", + "areaOfOperation": "Hillingdon", + "expenditure": "131111", + "website": "https://www.aptaylortrust.org.uk", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£131,111 (most recent year)", + "success_rate": "Not available", + "decision_time": "3-4 months (January deadline, May distribution)", + "grant_range": "Not specified", + "funding_model": "" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "A S Hornby Educational Trust Cio", + "link": "https://www.hinchilla.com/funder-directory/a-s-hornby-educational-trust-cio", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "A W Charitable Trust", + "link": "https://www.hinchilla.com/funder-directory/a-w-charitable-trust", + "philea_info": { + "About": "The A W Charitable Trust was established in October 1981 and is registered with the Charity Commission for England and Wales. With total income of £27.6 million in the financial year ending June 2024 (comprising £10 million in donations and legacies plus £17.6 million from investments), the trust is a substantial grant-making foundation focused specifically on the Orthodox Jewish community. The charity spent £5.57 million on charitable activities in 2024, maintaining a strong charitable spending ratio of 95.11%. The trust operates primarily through investment income and makes grants to institutions supporting the needy and those furthering Orthodox Jewish religion and education. The foundation is governed by three trustees who receive no remuneration for their service, with one or more trustees also serving as directors of subsidiary organisations.", + "Programme Areas": "#### Grant Programs\nThe A W Charitable Trust operates a single grant-making program focused on:\n- Institutions supporting the needy within the Orthodox Jewish community\n- Organisations furthering Orthodox Jewish religion\n- Organisations furthering Orthodox Jewish education\n\nSpecific grant amounts are not publicly disclosed, and grants are awarded at the trustees' absolute discretion.\n\n#### Priority Areas\n- **Orthodox Jewish Education**: Support for educational institutions and programs advancing Orthodox Jewish learning\n- **Orthodox Jewish Religious Activities**: Support for synagogues, religious institutions, and religious education\n- **Poverty Prevention and Relief**: Assistance to those in need within the Orthodox Jewish community\n- **Medical Research**: Some support for medical research initiatives\n- **Support for Children, Young People, and Elderly**: Programs benefiting these age groups within the community\n- **Overseas Aid**: International charitable work aligned with the trust's mission\n\n#### Geographic Focus\nThe trust operates in specific locations:\n- Manchester City\n- Salford City \n- Gateshead\n- Greater London\n\nThe charity also operates outside England and Wales, with a focus on Europe-United Kingdom.\n\n#### What They Don't Fund\nWhile not explicitly stated, the trust's charitable objects are limited to:\n- Institutions and causes outside the Orthodox Jewish community (primary focus is Orthodox Jewish institutions)\n- Individual applications (grants made to institutions, not individuals)\n- General secular education not connected to Orthodox Jewish learning", + "Geographic Focus": "Area of Operation: City of London, Gateshead, London, Salford\n\n#### Grant Programs\nThe A W Charitable Trust operates a single grant-making program focused on:\n- Institutions supporting the needy within the Orthodox Jewish community\n- Organisations furthering Orthodox Jewish religion\n- Organisations furthering Orthodox Jewish education\n\nSpecific grant amounts are not publicly disclosed, and grants are awarded at the trustees' absolute discretion.\n\n#### Priority Areas\n- **Orthodox Jewish Education**: Support for educational institutions and programs advancing Orthodox Jewish learning\n- **Orthodox Jewish Religious Activities**: Support for synagogues, religious institutions, and religious education\n- **Poverty Prevention and Relief**: Assistance to those in need within the Orthodox Jewish community\n- **Medical Research**: Some support for medical research initiatives\n- **Support for Children, Young People, and Elderly**: Programs benefiting these age groups within the community\n- **Overseas Aid**: International charitable work aligned with the trust's mission\n\n#### Geographic Focus\nThe trust operates in specific locations:\n- Manchester City\n- Salford City \n- Gateshead\n- Greater London\n\nThe charity also operates outside England and Wales, with a focus on Europe-United Kingdom.\n\n#### What They Don't Fund\nWhile not explicitly stated, the trust's charitable objects are limited to:\n- Institutions and causes outside the Orthodox Jewish community (primary focus is Orthodox Jewish institutions)\n- Individual applications (grants made to institutions, not individuals)\n- General secular education not connected to Orthodox Jewish learning\n\n- **Registered Charity Number**: 283322\n- **Annual Giving**: £5,570,000 (charitable activities, year ending 30 June 2024)\n- **Total Income**: £27,571,770 (2024)\n- **Decision Time**: Not publicly disclosed\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: Manchester, Salford, Gateshead, and Greater London", + "charityNumber": "283322", + "areaOfOperation": "City of London, Gateshead, London, Salford", + "expenditure": "5570000", + "website": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=283322&subid=0", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£5,570,000 (charitable activities, year ending 30 June 2024)", + "success_rate": "", + "decision_time": "Not publicly disclosed", + "grant_range": "Not publicly disclosed", + "funding_model": "" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "United Kingdom" + ], + "Worldwide": [ + "International" + ] + } + }, + { + "name": "A Z H R CHARITABLE TRUST", + "link": "https://www.hinchilla.com/funder-directory/a-z-h-r-charitable-trust", + "philea_info": { + "About": "The A Z H R CHARITABLE TRUST is a private charitable trust registered with the UK Charity Commission since its establishment. Operating with just 2 trustees who receive no remuneration, the trust distributed £163,370 in grants during the financial year ending April 24, 2025, from a total income of £164,000. The charity operates throughout London, making grants to organisations that align with its four core charitable purposes: relief of poverty, advancement of education, advancement of religion, and other charitable purposes beneficial to the community. The trust operates without trading subsidiaries and maintains a streamlined governance structure focused on grant distribution.", + "Programme Areas": "### Grant Programs\nSpecific grant programs and award amounts are not publicly disclosed. The trust operates through trustee-discretion grants rather than formal, named grant programmes.\n\n### Priority Areas\nThe charity supports work in four main areas:\n\n**Relief of Poverty**\n- Direct payments to needy individuals who satisfy the trustees of their poverty\n- Support for organisations addressing poverty and deprivation\n\n**Advancement of Education**\n- Educational initiatives and institutions\n- Educational programmes benefiting the community\n\n**Advancement of Religion**\n- Religious organisations and activities\n- Faith-based community work\n\n**Other Charitable Purposes**\n- Any other charitable purposes beneficial to the community within London\n\n### What They Don't Fund\nSpecific exclusions are not publicly documented. As the trust operates throughout London, projects outside this geographic area are unlikely to be considered.", + "Geographic Focus": "Area of Operation: London\n\n### Grant Programs\nSpecific grant programs and award amounts are not publicly disclosed. The trust operates through trustee-discretion grants rather than formal, named grant programmes.\n\n### Priority Areas\nThe charity supports work in four main areas:\n\n**Relief of Poverty**\n- Direct payments to needy individuals who satisfy the trustees of their poverty\n- Support for organisations addressing poverty and deprivation\n\n**Advancement of Education**\n- Educational initiatives and institutions\n- Educational programmes benefiting the community\n\n**Advancement of Religion**\n- Religious organisations and activities\n- Faith-based community work\n\n**Other Charitable Purposes**\n- Any other charitable purposes beneficial to the community within London\n\n### What They Don't Fund\nSpecific exclusions are not publicly documented. As the trust operates throughout London, projects outside this geographic area are unlikely to be considered.\n\n- **Registered Charity Number**: 280953\n- **Annual Giving**: £163,370 (2025)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly available\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: London", + "charityNumber": "280953", + "areaOfOperation": "London", + "expenditure": "163370", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£163,370 (2025)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly available", + "grant_range": "Not publicly disclosed", + "funding_model": "" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "A G Leventis Foundation", + "link": "https://www.hinchilla.com/funder-directory/a-g-leventis-foundation", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "Abo Trust", + "link": "https://www.hinchilla.com/funder-directory/abo-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "ACACIA CHARITABLE TRUST", + "link": "https://www.hinchilla.com/funder-directory/acacia-charitable-trust", + "philea_info": { + "About": "The Acacia Charitable Trust is a private grant-making trust established in 1977 (Charity Number 274275) that distributes funds to charitable organisations at the complete discretion of its trustees. Operating for over 45 years, the trust maintains a traditional discretionary grant-making approach without a public application process. With annual expenditure of approximately £95,948 (2024), the trust operates through its three trustees: Angela Gillian Rubens (appointed 1977), Paul Harry Rubens (appointed 2009), and Simon Alexander Rubens (appointed 1990). The trust is administered through H W Fisher & Company, a prominent London-based chartered accountancy firm specialising in charity sector services.", + "Programme Areas": "### Grant Programs\nThe trust operates a single discretionary grant-making programme with no specified funding tiers or formal application deadlines. All grants are made at the trustees' absolute discretion to charitable organisations.\n\n### Priority Areas\nThe trust's charitable objects allow for general charitable purposes throughout England and Wales. Specific funding priorities are not publicly disclosed and appear to be determined on a case-by-case basis by the trustees.\n\n### What They Don't Fund\nNo specific exclusions are publicly stated, though funding is limited to registered charitable organisations.", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\nThe trust operates a single discretionary grant-making programme with no specified funding tiers or formal application deadlines. All grants are made at the trustees' absolute discretion to charitable organisations.\n\n### Priority Areas\nThe trust's charitable objects allow for general charitable purposes throughout England and Wales. Specific funding priorities are not publicly disclosed and appear to be determined on a case-by-case basis by the trustees.\n\n### What They Don't Fund\nNo specific exclusions are publicly stated, though funding is limited to registered charitable organisations.\n\n- **Annual Giving**: £95,948 (2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: At trustees' discretion\n- **Grant Range**: Not publicly specified\n- **Geographic Focus**: England and Wales", + "charityNumber": "274275", + "areaOfOperation": "England, Wales", + "expenditure": "95948", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£95,948 (2024)", + "success_rate": "Not publicly available", + "decision_time": "At trustees' discretion", + "grant_range": "Not publicly specified", + "funding_model": "" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Academie du Vin Foundation", + "link": "https://www.hinchilla.com/funder-directory/academie-du-vin-foundation", + "philea_info": { + "About": "The Academie du Vin Foundation, operating publicly as the IWSC Foundation, is a UK registered charity (CIO number 1180436) established in October 2018. With an annual income of £402,060 and expenditure of £281,025 (financial year ending March 2024), the Foundation serves as the charitable arm of the International Wine & Spirit Competition (IWSC). The Foundation advances education for persons over age 16 through providing access to training, education, and work experience in wine and spirits, viniculture, horticulture, and sustainable agriculture. Additionally, it provides relief of poverty and sickness, particularly for those who have worked in the alcoholic beverage industry, including those affected by alcoholism and alcohol-related diseases. The IWSC is owned by The Conversion Group, which includes Club Oenologique, Fine + Rare, The Whisky Lounge, and Academie du Vin, providing access to a wider community of experts.", + "Programme Areas": "### Grant Programs\n\n**Master of Wine (MW) Scholarships**: £5,000 per scholarship\n- Typically 2-10 scholarships awarded annually to support candidates through their MW studies\n- Application requires an 800-word article on a wine-related theme (e.g., \"a person, place or drink that helped ignite their passion for wine\" or \"a love letter to wine\")\n- Winners have their articles published online by Club Oenologique\n- Awarded annually since 2018\n\n**WSET Scholarships**: Amount varies\n- Annual scholarship to support students furthering their wine education with the Wine & Spirit Education Trust\n- Specific amounts not publicly disclosed\n\n**Emerging Talent Awards**: £2,500 travel bursary per winner\n- Six awards annually covering different categories:\n - Emerging Talent in Wine\n - Emerging Talent in Wine Hospitality\n - Emerging Talent in Spirits\n - Emerging Talent in Spirits Communication\n - Additional categories (specific names vary by year)\n- Open to all ages and professions within the drinks trade\n- Designed for new and exciting voices within the industry\n- Bursaries must be used for educational purposes, such as travel to wine regions, educational trips, or new educational courses\n\n### Priority Areas\n\n- Wine and spirits education and professional development\n- Support for industry professionals pursuing advanced qualifications (MW, WSET, ASI)\n- Emerging talent development across wine and spirits sectors\n- Industry workers facing poverty or sickness, particularly related to alcoholism and alcohol-related diseases\n- Viniculture, horticulture, and sustainable agriculture education\n\n### What They Don't Fund\n\n- Personal or non-career-related activities (for Emerging Talent bursaries)\n- Individuals under 16 years of age\n- Education outside wine and spirits sectorse:", + "Geographic Focus": "Area of Operation: Argentina, Australia, Brazil, Canada, Chile, China, France, Germany, Italy, New Zealand, Portugal, South Africa, Spain, United States, England, Northern Ireland, Scotland, Wales\n\n### Grant Programs\n\n**Master of Wine (MW) Scholarships**: £5,000 per scholarship\n- Typically 2-10 scholarships awarded annually to support candidates through their MW studies\n- Application requires an 800-word article on a wine-related theme (e.g., \"a person, place or drink that helped ignite their passion for wine\" or \"a love letter to wine\")\n- Winners have their articles published online by Club Oenologique\n- Awarded annually since 2018\n\n**WSET Scholarships**: Amount varies\n- Annual scholarship to support students furthering their wine education with the Wine & Spirit Education Trust\n- Specific amounts not publicly disclosed\n\n**Emerging Talent Awards**: £2,500 travel bursary per winner\n- Six awards annually covering different categories:\n - Emerging Talent in Wine\n - Emerging Talent in Wine Hospitality\n - Emerging Talent in Spirits\n - Emerging Talent in Spirits Communication\n - Additional categories (specific names vary by year)\n- Open to all ages and professions within the drinks trade\n- Designed for new and exciting voices within the industry\n- Bursaries must be used for educational purposes, such as travel to wine regions, educational trips, or new educational courses\n\n### Priority Areas\n\n- Wine and spirits education and professional development\n- Support for industry professionals pursuing advanced qualifications (MW, WSET, ASI)\n- Emerging talent development across wine and spirits sectors\n- Industry workers facing poverty or sickness, particularly related to alcoholism and alcohol-related diseases\n- Viniculture, horticulture, and sustainable agriculture education\n\n### What They Don't Fund\n\n- Personal or non-career-related activities (for Emerging Talent bursaries)\n- Individuals under 16 years of age\n- Education outside wine and spirits sectorse:\n\n- **Annual Giving**: £281,025 (2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly specified\n- **Grant Range**: £2,500 - £5,000 (individual scholarships and bursaries)\n- **Geographic Focus**: International (primarily UK-based with global reach)\n- **Total Income**: £402,060 (2024)", + "charityNumber": "1180436", + "areaOfOperation": "Argentina, Australia, Brazil, Canada, Chile, China, France, Germany, Italy, New Zealand, Portugal, South Africa, Spain, United States, England, Northern Ireland, Scotland, Wales", + "expenditure": "281025", + "website": "https://www.iwsc.net", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£281,025 (2024)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly specified", + "grant_range": "£2,500 - £5,000 (individual scholarships and bursaries)", + "funding_model": "" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "Global", + "International" + ], + "North America": [ + "Canada", + "United States" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Asia & Pacific": [ + "Australia", + "China", + "New Zealand" + ], + "Latin America & Caribbean": [ + "Argentina", + "Brazil", + "Chile" + ], + "Europe (Southern / Mediterranean)": [ + "Italy", + "Portugal", + "Spain" + ], + "Europe (Western / General)": [ + "France", + "Germany", + "Ireland", + "United Kingdom" + ] + } + }, + { + "name": "Academy Of Medical Sciences", + "link": "https://www.hinchilla.com/funder-directory/academy-of-medical-sciences", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "Access The Foundation For Social Investment", + "link": "https://www.hinchilla.com/funder-directory/access-the-foundation-for-social-investment", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + }, + { + "name": "ACE Africa (UK)", + "link": "https://www.hinchilla.com/funder-directory/ace-africa-uk", + "philea_info": { + "About": "ACE Africa (UK) was established in 2005 as a UK-registered grant-making charity that supports ACE Africa Kenya (founded 2003) and ACE Africa Tanzania (founded 2008). With total income of £674,983 for the financial year ending December 2024, the charity operates as a fundraising and grant distribution organisation, channelling £541,466 in charitable expenditure to its partner organisations in East Africa. The charity's mission focuses on building resilient, inclusive communities by improving food and economic security, health, and education through sustainable, long-term solutions. ACE Africa works with vulnerable and marginalised people in low-resource settings across Western and Coastal regions of Kenya and the Arusha, Kilimanjaro, and Mwanza regions of Tanzania. Since 2003, ACE Africa has provided services to over 2 million people, particularly women, young people, and children in rural areas. The organisation employs 3 staff in the UK.", + "Programme Areas": "#### Grant Programs\n\nACE Africa (UK) makes grants exclusively to ACE Africa Kenya and ACE Africa Tanzania to support their programming work. The charity also manages grants on behalf of other donors who wish to support these organisations. Grants support three core programming areas:\n\n- **Child Development**: Supporting vulnerable children and young people\n- **Community Health**: Improving health outcomes in rural communities \n- **Community Livelihoods**: Enhancing food security and economic opportunities\n\n#### Priority Areas\n\n- Education and training for children and young people\n- Advancement of health in rural communities\n- Prevention and relief of poverty\n- Overseas aid and development\n- Economic and community development\n- Support for elderly people and vulnerable populations\n\n#### What They Don't Fund\n\nACE Africa (UK) does not make grants to organisations outside of the ACE Africa network. All funding is directed to ACE Africa Kenya and ACE Africa Tanzania.", + "Geographic Focus": "Area of Operation: Kenya, Tanzania\n\n#### Grant Programs\n\nACE Africa (UK) makes grants exclusively to ACE Africa Kenya and ACE Africa Tanzania to support their programming work. The charity also manages grants on behalf of other donors who wish to support these organisations. Grants support three core programming areas:\n\n- **Child Development**: Supporting vulnerable children and young people\n- **Community Health**: Improving health outcomes in rural communities \n- **Community Livelihoods**: Enhancing food security and economic opportunities\n\n#### Priority Areas\n\n- Education and training for children and young people\n- Advancement of health in rural communities\n- Prevention and relief of poverty\n- Overseas aid and development\n- Economic and community development\n- Support for elderly people and vulnerable populations\n\n#### What They Don't Fund\n\nACE Africa (UK) does not make grants to organisations outside of the ACE Africa network. All funding is directed to ACE Africa Kenya and ACE Africa Tanzania.\n\n- **Annual Giving**: £541,466 (financial year ending December 2024)\n- **Success Rate**: Not applicable (invitation only)\n- **Decision Time**: Not applicable\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: Kenya and Tanzania", + "charityNumber": "1111283", + "areaOfOperation": "Kenya, Tanzania", + "expenditure": "541466", + "website": "https://www.ace-africa.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£541,466 (financial year ending December 2024)", + "success_rate": "Not applicable (invitation only)", + "decision_time": "Not applicable", + "grant_range": "Not publicly disclosed", + "funding_model": "" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Kenya", + "Tanzania" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Achisomoch Aid Company Limited", + "link": "https://www.hinchilla.com/funder-directory/achisomoch-aid-company-limited", + "philea_info": { + "About": "Achisomoch Aid Company Limited, founded in 1979 by Yitzchok Katz, operates the UK's largest donor-advised fund serving the Jewish community. The organisation's primary function is to help individuals and companies make tax-efficient charitable donations. Account holders have directed substantial sums to Jewish schools, yeshivot, and educational institutions through the platform, with facilitated giving exceeding £50 million in recent years.\n\nHowever, AAC also functions as a grant maker from its own operational profits. Since its inception, AAC has maintained a policy of donating 100% of its operational surpluses to UK-based Jewish educational institutions. These distributions, typically totalling approximately £850,000-£900,000, are made twice a year at Pesach and Rosh Hashanah to Jewish schools in London and Gateshead Yeshivah.", + "Programme Areas": "### Grant Programmes from AAC's Own Funds\n\n**Bi-Annual Educational Support Distributions**\n- Approximately £850,000 - £900,000 total from operational profits\n- Pesach Distribution: Typically over £400,000\n- Rosh Hashanah Distribution: Remaining balance\n- Trustee discretion - no application process\n- Focus: Jewish schools in London and Gateshead Yeshivah\n\n### Priority Areas\n- Jewish educational institutions (primary and secondary schools)\n- Yeshivot (traditional Jewish educational institutions)\n- Orthodox Jewish education and religious instruction", + "Geographic Focus": "Area of Operation: Argentina, Belgium, Canada, France, Germany, Israel, Italy, Lithuania, Monaco, Russia, South Africa, United States, England, Wales\n\n### Grant Programmes from AAC's Own Funds\n\n**Bi-Annual Educational Support Distributions**\n- Approximately £850,000 - £900,000 total from operational profits\n- Pesach Distribution: Typically over £400,000\n- Rosh Hashanah Distribution: Remaining balance\n- Trustee discretion - no application process\n- Focus: Jewish schools in London and Gateshead Yeshivah\n\n### Priority Areas\n- Jewish educational institutions (primary and secondary schools)\n- Yeshivot (traditional Jewish educational institutions)\n- Orthodox Jewish education and religious instruction\n\n- **Charity Number**: 278387\n- **Founded**: 1979\n- **Total Income**: Fluctuates (exceeded £71 million in recent years)\n- **AAC's Own Annual Grants**: Approximately £850,000 - £900,000 from operational profits\n- **Facilitated Giving**: Exceeded £50 million in recent years\n- **Geographic Focus**: UK (primarily London Jewish community)\n- **Grant Distribution**: Twice yearly (Pesach and Rosh Hashanah)", + "charityNumber": "278387", + "areaOfOperation": "Argentina, Belgium, Canada, France, Germany, Israel, Italy, Lithuania, Monaco, Russia, South Africa, United States, England, Wales", + "expenditure": null, + "website": "https://achisomoch.org/", + "phone": "2087318988", + "email": "admin@achisomoch.org", + "address": "COHEN ARNOLD, NEW BURLINGTON HOUSE, 1075 FINCHLEY ROAD, LONDON, NW11 0PU", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "", + "grant_range": "", + "funding_model": "" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "North America": [ + "Canada", + "United States" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Europe (Central & Eastern / Balkans)": [ + "Lithuania", + "Russia" + ], + "Latin America & Caribbean": [ + "Argentina" + ], + "Europe (Western / General)": [ + "Belgium", + "France", + "Germany", + "Monaco", + "United Kingdom" + ], + "Middle East & North Africa (MENA)": [ + "Israel" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "name": "ACTACC", + "link": "https://www.hinchilla.com/funder-directory/actacc", + "philea_info": { + "About": "ACTACC (Association for Cardiothoracic Anaesthesia and Critical Care) is a UK registered charity founded to promote the highest standard of management and care for patients suffering from cardiothoracic disorders. With an annual expenditure of £96,024 (2024 financial year) and total income of £124,527, the charity focuses on advancing cardiothoracic anaesthesia through education, research, and professional development. The organisation is governed by 9 trustees, with no paid staff receiving benefits over £60,000. ACTACC's mission encompasses holding regular meetings, encouraging presentation of original research, fostering national and international links with like-minded groups, being active in training future cardiothoracic anaesthetists, representing the views of cardiothoracic anaesthetists, and awarding educational and research grants.", + "Programme Areas": "### Grant Programmes\n\n**Bill Pallister Travelling Fellowship**: £5,000 annually (rolling deadline: 31st December each year)\n- Funded through a bequest from Dr Pallister\n- Supports travel to overseas centres of excellence\n- Intended for trainees or consultants within three years of appointment\n\n**Joint Research Grant (VASGBI & ACTACC)**: Up to £70,000 (coordinated by NIAA)\n- Jointly funded with the Vascular Anaesthesia Society of Great Britain & Ireland\n- Administered through ScholarOne application portal\n- Typically participates in the second funding round each year\n- Supports research projects aligned with both organisations' strategies\n\n### Priority Areas\n\n- Cardiothoracic anaesthesia research and innovation\n- Cardiac intensive care and resuscitation\n- Professional development through overseas clinical observerships\n- Projects demonstrating benefit to wider ACTACC membership\n- Research addressing cardiothoracic perioperative care priorities identified by the James Lind Alliance/NIAA Priority Setting Partnership\n\n### What They Don't Fund\n\n- Training courses (e.g., transoesophageal echo courses) unless clear benefit to wider membership\n- Conference attendance unless clear benefit to wider membership\n- Projects not aligned with cardiothoracic anaesthesia or cardiac intensive care focuse:", + "Geographic Focus": "Area of Operation: England, Northern Ireland, Scotland, Wales\n\n### Grant Programmes\n\n**Bill Pallister Travelling Fellowship**: £5,000 annually (rolling deadline: 31st December each year)\n- Funded through a bequest from Dr Pallister\n- Supports travel to overseas centres of excellence\n- Intended for trainees or consultants within three years of appointment\n\n**Joint Research Grant (VASGBI & ACTACC)**: Up to £70,000 (coordinated by NIAA)\n- Jointly funded with the Vascular Anaesthesia Society of Great Britain & Ireland\n- Administered through ScholarOne application portal\n- Typically participates in the second funding round each year\n- Supports research projects aligned with both organisations' strategies\n\n### Priority Areas\n\n- Cardiothoracic anaesthesia research and innovation\n- Cardiac intensive care and resuscitation\n- Professional development through overseas clinical observerships\n- Projects demonstrating benefit to wider ACTACC membership\n- Research addressing cardiothoracic perioperative care priorities identified by the James Lind Alliance/NIAA Priority Setting Partnership\n\n### What They Don't Fund\n\n- Training courses (e.g., transoesophageal echo courses) unless clear benefit to wider membership\n- Conference attendance unless clear benefit to wider membership\n- Projects not aligned with cardiothoracic anaesthesia or cardiac intensive care focuse:\n\n- **Annual Giving**: £96,024 (2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Applications adjudicated by Education Committee; announcements at Spring Scientific Meeting\n- **Grant Range**: £5,000 - £70,000\n- **Geographic Focus**: UK-based, with international collaboration opportunities", + "charityNumber": "1098009", + "areaOfOperation": "England, Northern Ireland, Scotland, Wales", + "expenditure": "96024", + "website": "https://www.actacc.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£96,024 (2024)", + "success_rate": "Not publicly available", + "decision_time": "Applications adjudicated by Education Committee; announcements at Spring Scientific Meeting", + "grant_range": "£5,000 - £70,000", + "funding_model": "" + }, + "tags_focus": [ + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Ireland", + "United Kingdom" + ] + } + }, + { + "name": "ACTION FOR A-T", + "link": "https://www.hinchilla.com/funder-directory/action-for-a-t", + "philea_info": { + "About": "Action for A-T was founded in January 2012 by parents Emily and Toby Read following their daughter's diagnosis with Ataxia-Telangiectasia (A-T), a rare, life-limiting genetic condition affecting the brain. Since inception, the charity has invested over £5.7 million in 60 pioneering research projects across the globe, becoming the leading charitable funder of A-T medical research in the UK. The organisation's singular mission is to identify and fund high-quality peer-reviewed medical research into finding a cure or treatments that delay or prevent the disabling effects of A-T. Action for A-T is a member of the Association of Medical Research Charities (AMRC) and has been awarded a best practice certificate for peer review and research management. In 2024, the charity formed international collaborative partnerships with BrAshA-T (Australia) and AEFAT (Spain), jointly funding £1.3 million in new research studies.", + "Programme Areas": "### Grant Programs\n\n**Project Grants (with Action Medical Research)**\n- **Amount**: Up to £250,000\n- **Duration**: Up to 3 years\n- **Eligible Costs**: Research post, consumables, and essential equipment\n- **Application Schedule**: Fixed deadlines (typically annual)\n- **Eligibility**: Projects must be led by research-active professionals based at universities, hospitals or research institutes in any country\n- **Focus**: Translational medical research with potential to treat or enable medical interventions for A-T in childhood\n- **Not Funded**: Further education (MSc/PhD), course fees, or indirect costs\n\n**Collaborative International Funding**\n- Joint funding opportunities with BrAshA-T (Australia) and AEFAT (Spain)\n- £1.3 million committed to five new research studies in 2024\n- Projects based in UK, Netherlands, USA, Spain, and other countries\n\n### Priority Areas\n\nAction for A-T funds research that has potential to benefit A-T patients, with recent focus on:\n\n- Gene therapy and CRISPR/Cas genome editing approaches\n- Nucleic acid-based interventions targeting biological pathways\n- Drug repurposing and identification of existing therapeutics\n- Biomarker development for early diagnosis and monitoring\n- Immune system function in A-T patients\n- Cancer treatment improvements for A-T patients\n- Assistive technology and quality of life interventions\n- Natural history studies and clinical outcome measures\n\nResearch must be high-quality, peer-reviewed, and demonstrate a clear translational path to patient benefit.\n\n### What They Don't Fund\n\n- Further education including MSc/PhD programs\n- Course fees\n- Indirect costs\n- Basic research without clear translational potential to A-T patientse:", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\n\n**Project Grants (with Action Medical Research)**\n- **Amount**: Up to £250,000\n- **Duration**: Up to 3 years\n- **Eligible Costs**: Research post, consumables, and essential equipment\n- **Application Schedule**: Fixed deadlines (typically annual)\n- **Eligibility**: Projects must be led by research-active professionals based at universities, hospitals or research institutes in any country\n- **Focus**: Translational medical research with potential to treat or enable medical interventions for A-T in childhood\n- **Not Funded**: Further education (MSc/PhD), course fees, or indirect costs\n\n**Collaborative International Funding**\n- Joint funding opportunities with BrAshA-T (Australia) and AEFAT (Spain)\n- £1.3 million committed to five new research studies in 2024\n- Projects based in UK, Netherlands, USA, Spain, and other countries\n\n### Priority Areas\n\nAction for A-T funds research that has potential to benefit A-T patients, with recent focus on:\n\n- Gene therapy and CRISPR/Cas genome editing approaches\n- Nucleic acid-based interventions targeting biological pathways\n- Drug repurposing and identification of existing therapeutics\n- Biomarker development for early diagnosis and monitoring\n- Immune system function in A-T patients\n- Cancer treatment improvements for A-T patients\n- Assistive technology and quality of life interventions\n- Natural history studies and clinical outcome measures\n\nResearch must be high-quality, peer-reviewed, and demonstrate a clear translational path to patient benefit.\n\n### What They Don't Fund\n\n- Further education including MSc/PhD programs\n- Course fees\n- Indirect costs\n- Basic research without clear translational potential to A-T patientse:\n\n- **Annual Giving**: Not publicly available\n- **Total Invested Since 2012**: £5,700,000+\n- **Grant Range**: Up to £250,000\n- **Grant Duration**: Up to 3 years\n- **Geographic Focus**: International (UK-based, funding globally)\n- **Research Projects**: 60 total (19 ongoing, 41 completed)", + "charityNumber": "1145303", + "areaOfOperation": "England, Wales", + "expenditure": null, + "website": "https://www.actionforAT.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "Not publicly available", + "success_rate": "", + "decision_time": "", + "grant_range": "Up to £250,000", + "funding_model": "" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "Global", + "International" + ], + "Europe (Western / General)": [ + "Netherlands", + "United Kingdom" + ], + "Asia & Pacific": [ + "Australia" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ], + "North America": [ + "United States" + ] + } + }, + { + "name": "ACTION FOR SUSTAINABLE COMMUNITIES FOUNDATION", + "link": "https://www.hinchilla.com/funder-directory/action-for-sustainable-communities-foundation", + "philea_info": { + "About": "", + "Programme Areas": "- **Health**: Health clinics in remote areas, health programs, and clean water provision\n- **Environment**: Preservation, conservation and protection of the environment, biodiversity enhancement and conservation practices\n- **Education**: Building schools, language and computer courses, equal access for girls\n- **Economic Development**: Sustainable means of economic growth and regeneration, skills for self-sufficiency including sustainable farming, sewing, and computer literacy\n- **Poverty Relief**: Improvement of conditions of life in socially and economically disadvantaged communities\n\n\n### What They Don't Fund\n\nInformation not publicly available", + "Geographic Focus": "Area of Operation: France, Malawi, Sri Lanka, England, Wales\n\n- **Health**: Health clinics in remote areas, health programs, and clean water provision\n- **Environment**: Preservation, conservation and protection of the environment, biodiversity enhancement and conservation practices\n- **Education**: Building schools, language and computer courses, equal access for girls\n- **Economic Development**: Sustainable means of economic growth and regeneration, skills for self-sufficiency including sustainable farming, sewing, and computer literacy\n- **Poverty Relief**: Improvement of conditions of life in socially and economically disadvantaged communities\n\n\n### What They Don't Fund\n\nInformation not publicly available\n\n| Metric | Value |\n|--------|-------|\n| Annual Giving | £39,264 (2024) |\n| Grant Range | Not publicly specified |\n| Average Grant | Not publicly specified |\n| Application Method | Invitation Only / No Public Application Process |\n| Geographic Focus | Europe, Africa, Asia |", + "charityNumber": "1193197", + "areaOfOperation": "France, Malawi, Sri Lanka, England, Wales", + "expenditure": "39264", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£39,264 (2024)", + "success_rate": "", + "decision_time": "", + "grant_range": "Not publicly specified", + "funding_model": "Invitation Only / No Public Application Process" + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Asia & Pacific": [ + "Asia", + "Sri Lanka" + ], + "Europe (Western / General)": [ + "Europe", + "France", + "United Kingdom" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Malawi" + ] + } + }, + { + "name": "ACTION MEDICAL RESEARCH", + "link": "https://www.hinchilla.com/funder-directory/action-medical-research", + "philea_info": { + "About": "Founded in 1952 by Duncan Guthrie following his daughter's polio diagnosis, Action Medical Research (charity number 208701) has grown into the UK's leading charity dedicated to funding vital research to help sick and disabled babies, children and young people. Over 70 years, the charity has invested over £137 million in medical breakthroughs, including pioneering the first oral polio vaccine, developing ultrasound scanning in pregnancy, and fighting meningitis. With total income of £8.18 million (2024), the organisation currently has over £11 million invested in the work of 190 top researchers working on 55 projects across the UK. The charity prides itself on funding innovative, high-standard research validated through rigorous peer review, with emphasis on clinical research or research at the interface between clinical and basic science that can be translated into clinical solutions in the short to medium term.", + "Programme Areas": "### Grant Programs\n\n**Project Grants**: Up to £200,000 for up to 36 months\n- Application method: Two-stage process (outline followed by invited full applications)\n- Fixed annual deadlines\n- Around 10 projects funded per round\n\n**Co-Funded Programmes**:\n- **Action LifeArc Joint Call**: Up to £200,000\n- **Action DEBRA UK**: Up to £200,000 for epidermolysis bullosa research\n- **Action Borne**: Up to £250,000 for stillbirth and premature birth research\n- **Action Cystic Fibrosis Trust**: Up to £200,000 for cystic fibrosis research\n\n### Priority Areas\n\nAction Medical Research funds research across the breadth of child health, including:\n- Clinical research with short to medium-term translational potential\n- Problems affecting pregnancy, childbirth, babies, children and young people\n- Medical engineering (equipment and techniques for improved diagnosis, therapy and assistive technology)\n- Brain injury and neuroprotection\n- Cancer (particularly brain tumours)\n- Rare diseases\n- Preterm birth prevention\n- Epilepsy and autism\n- Life-threatening infections\n- Cystic fibrosis\n- Heart conditions\n- Asthma\n\nApplicants welcomed from: medical graduates, clinicians, bioengineers, research nurses, physiotherapists and allied health professionals.\n\n### What They Don't Fund\n\n**Educational and Administrative Costs**:\n- Higher education course fees (though Research Training Fellows may independently register for PhDs)\n- Course fees for degrees, subsistence costs, or apprenticeship levy\n- Indirect costs including administrative or institutional overheads\n- Conference attendance costs (separate applications accepted for current grantholders)\n- Advertising, recruitment, or visa costs\n\n**Research Type Exclusions**:\n- Complementary/alternative medicine\n- Very basic research with little likelihood of clinical impact in the short to medium term\n- Human reproductive cloning (illegal in the UK)\n\n**Other Exclusions**:\n- 'Top up' funding for work supported by other funding bodies\n- General appeals from other charities\n- Salary costs for existing salaried positions\n- Standard laboratory equipmente:T6b", + "Geographic Focus": "Area of Operation: England, Northern Ireland, Scotland, Wales\n\n### Grant Programs\n\n**Project Grants**: Up to £200,000 for up to 36 months\n- Application method: Two-stage process (outline followed by invited full applications)\n- Fixed annual deadlines\n- Around 10 projects funded per round\n\n**Co-Funded Programmes**:\n- **Action LifeArc Joint Call**: Up to £200,000\n- **Action DEBRA UK**: Up to £200,000 for epidermolysis bullosa research\n- **Action Borne**: Up to £250,000 for stillbirth and premature birth research\n- **Action Cystic Fibrosis Trust**: Up to £200,000 for cystic fibrosis research\n\n### Priority Areas\n\nAction Medical Research funds research across the breadth of child health, including:\n- Clinical research with short to medium-term translational potential\n- Problems affecting pregnancy, childbirth, babies, children and young people\n- Medical engineering (equipment and techniques for improved diagnosis, therapy and assistive technology)\n- Brain injury and neuroprotection\n- Cancer (particularly brain tumours)\n- Rare diseases\n- Preterm birth prevention\n- Epilepsy and autism\n- Life-threatening infections\n- Cystic fibrosis\n- Heart conditions\n- Asthma\n\nApplicants welcomed from: medical graduates, clinicians, bioengineers, research nurses, physiotherapists and allied health professionals.\n\n### What They Don't Fund\n\n**Educational and Administrative Costs**:\n- Higher education course fees (though Research Training Fellows may independently register for PhDs)\n- Course fees for degrees, subsistence costs, or apprenticeship levy\n- Indirect costs including administrative or institutional overheads\n- Conference attendance costs (separate applications accepted for current grantholders)\n- Advertising, recruitment, or visa costs\n\n**Research Type Exclusions**:\n- Complementary/alternative medicine\n- Very basic research with little likelihood of clinical impact in the short to medium term\n- Human reproductive cloning (illegal in the UK)\n\n**Other Exclusions**:\n- 'Top up' funding for work supported by other funding bodies\n- General appeals from other charities\n- Salary costs for existing salaried positions\n- Standard laboratory equipmente:T6b\n\n- **Annual Giving**: £4.24 million (charitable activities expenditure, 2024)\n- **Success Rate**: 33-40% (for full applications)\n- **Decision Time**: 9-10 months (from outline to award)\n- **Grant Range**: Up to £200,000 (£250,000 for co-funded awards)\n- **Geographic Focus**: UK-wide", + "charityNumber": "208701", + "areaOfOperation": "England, Northern Ireland, Scotland, Wales", + "expenditure": "4240000", + "website": "https://www.action.org.uk", + "phone": "1403210406", + "email": "info@action.org.uk", + "address": "Action Medical Research, 5th Floor, 167-169 Great Portland Street, London, W1W 5PF", + "applicationPortal": "", + "annual_giving": "£4.24 million (charitable activities expenditure, 2024)", + "success_rate": "33-40% (for full applications)", + "decision_time": "9-10 months (from outline to award)", + "grant_range": "Up to £200,000 (£250,000 for co-funded awards)", + "funding_model": "" + }, + "tags_focus": [ + "Education", + "Health", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Ireland", + "United Kingdom" + ] + } + }, + { + "name": "Action With Communities In Rural England Acre", + "link": "https://www.hinchilla.com/funder-directory/action-with-communities-in-rural-england-acre", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "ACTIS ACTS CIO", + "link": "https://www.hinchilla.com/funder-directory/actis-acts-cio", + "philea_info": { + "About": "ACTIS ACTS CIO is the charitable foundation of Actis, a global sustainable infrastructure and private equity investment firm. Launched in 2018 and registered as a UK Charitable Incorporated Organisation (charity number 1176455), the foundation was established to support charitable activities linked to Actis' investee companies, partnerships with charities operating in Actis countries, and local charities nominated by Actis offices. The foundation has committed £1,170,000 across 23 grants to support projects in 21 portfolio companies spanning 13 countries. Actis Acts operates with a broad mandate covering themes including education, gender equality, skills development, entrepreneurship, capacity building, health, environment, financial inclusion, and provision of essential infrastructure, with a focus on leaving positive and sustainable impacts on communities surrounding Actis investments.", + "Programme Areas": "### Grant Programmes\n\nThe foundation operates a single grant programme with three primary funding streams:\n\n1. **Charitable Activities Linked to Actis Investee Companies**: Primary focus area supporting projects connected to companies in Actis's investment portfolio\n2. **Partnerships with Charities in Actis Countries**: Supporting established charities operating in regions where Actis has investments\n3. **Local Charities Nominated by Actis Offices**: Supporting community organisations nominated by Actis's regional offices\n\n**Application Method**: Rolling basis via downloadable application form\n\n### Priority Areas\n\nActis Acts has a broad mandate to provide funding across multiple themes:\n\n- **Education**: Skills development and job readiness training\n- **Gender Equality**: Empowering women and girls\n- **Health**: Community health initiatives and pandemic response\n- **Environment**: Environmental sustainability projects\n- **Financial Inclusion**: Access to financial services for underserved populations\n- **Essential Infrastructure**: Basic services and community facilities\n- **Entrepreneurship**: Business development and capacity building\n- **Community Development**: Supporting marginalised and disadvantaged groups\n\nThe foundation places particular emphasis on projects that:\n- Have clear, measurable outcomes\n- Benefit underserved populations (marginalised groups, youth, women/girls, indigenous people)\n- Demonstrate engagement from Actis investee companies\n- Show potential for scale and sustainability\n- Make unique contributions that wouldn't happen without support\n\n### What They Don't Fund\n\nWhile specific exclusions are not explicitly stated, the foundation's focus on Actis-linked activities suggests limited funding for:\n- Organisations with no connection to Actis operations or investee companies\n- Projects outside regions where Actis operates\n- Individual funding requests\n- Political activities", + "Geographic Focus": "Area of Operation: Brazil, China, Egypt, India, Kenya, Mauritius, Mexico, Morocco, Nigeria, Singapore, South Africa, Tunisia, London\n\n### Grant Programmes\n\nThe foundation operates a single grant programme with three primary funding streams:\n\n1. **Charitable Activities Linked to Actis Investee Companies**: Primary focus area supporting projects connected to companies in Actis's investment portfolio\n2. **Partnerships with Charities in Actis Countries**: Supporting established charities operating in regions where Actis has investments\n3. **Local Charities Nominated by Actis Offices**: Supporting community organisations nominated by Actis's regional offices\n\n**Application Method**: Rolling basis via downloadable application form\n\n### Priority Areas\n\nActis Acts has a broad mandate to provide funding across multiple themes:\n\n- **Education**: Skills development and job readiness training\n- **Gender Equality**: Empowering women and girls\n- **Health**: Community health initiatives and pandemic response\n- **Environment**: Environmental sustainability projects\n- **Financial Inclusion**: Access to financial services for underserved populations\n- **Essential Infrastructure**: Basic services and community facilities\n- **Entrepreneurship**: Business development and capacity building\n- **Community Development**: Supporting marginalised and disadvantaged groups\n\nThe foundation places particular emphasis on projects that:\n- Have clear, measurable outcomes\n- Benefit underserved populations (marginalised groups, youth, women/girls, indigenous people)\n- Demonstrate engagement from Actis investee companies\n- Show potential for scale and sustainability\n- Make unique contributions that wouldn't happen without support\n\n### What They Don't Fund\n\nWhile specific exclusions are not explicitly stated, the foundation's focus on Actis-linked activities suggests limited funding for:\n- Organisations with no connection to Actis operations or investee companies\n- Projects outside regions where Actis operates\n- Individual funding requests\n- Political activities\n\n- **Charity Number**: 1176455\n- **Annual Giving**: £1,170,000 committed (23 grants across 21 portfolio companies)\n- **Geographic Focus**: International (13 countries where Actis operates)\n- **Grant Focus**: Charitable activities linked to Actis investee companies\n- **Application Method**: Rolling basis via application form", + "charityNumber": "1176455", + "areaOfOperation": "Brazil, China, Egypt, India, Kenya, Mauritius, Mexico, Morocco, Nigeria, Singapore, South Africa, Tunisia, London", + "expenditure": "1170000", + "website": "https://www.act.is/people/actis-acts/", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£1,170,000 committed (23 grants across 21 portfolio companies)", + "success_rate": "", + "decision_time": "", + "grant_range": "", + "funding_model": "Rolling basis via application form" + }, + "tags_focus": [ + "Education", + "Health", + "Human/Civil Rights", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Kenya", + "Mauritius", + "Nigeria", + "South Africa" + ], + "Asia & Pacific": [ + "Australia", + "China", + "India", + "Singapore" + ], + "Middle East & North Africa (MENA)": [ + "Egypt", + "Morocco", + "Tunisia" + ], + "Latin America & Caribbean": [ + "Brazil", + "Mexico" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "ACTIVE CHESHIRE", + "link": "https://www.hinchilla.com/funder-directory/active-cheshire", + "philea_info": { + "About": "Active Cheshire is a registered charity (founded as charity number 701764) serving as the lead Active Partnership for sport and physical activity in the Cheshire sub-region. Commissioned by Sport England as a Systems Partner for 2022-2027, Active Cheshire plays a coordinating role in bringing together local people, organisations, and national sports bodies. The organisation uses local knowledge, influence, and insight to ensure national funding and resources reach places where they will have most impact on participation. While primarily a coordinating body, Active Cheshire manages selected grant programmes in partnership with other funders, including the Active Futures Programme (with Cheshire Community Foundation and the Office of Police and Crime Commissioner) and the Active Minds investment fund. The organisation co-developed the All Together Active strategy launched in October 2022, aiming to help 150,000 inactive residents become more physically active by 2026.", + "Programme Areas": "### Grant Programmes\n\n**Active Futures Programme** (in partnership with Cheshire Community Foundation and Office of Police and Crime Commissioner for Cheshire)\n- Tier 1 Grants: £5,000 - £10,000 (for reaching new groups or expanding existing provision)\n- Tier 2 Grants: £10,001 - £25,000 (for developing new, targeted provision in areas of high need)\n- Focus: Early intervention and diversionary activities for young people at risk of Child Criminal Exploitation and Serious Youth Violence\n- Must engage children and young people aged 0-18 through physical activity or sport\n- Geographic coverage: Cheshire East, Cheshire West & Chester, Warrington, and Halton\n- Annual funding round\n- Application method: Online through Cheshire Community Foundation website\n\n**Active Minds Investment Fund**\n- Total available: £30,000\n- Focus: Improving mental health and quality of life through physical activity\n- Part of the Blueprint to Tackle Physical Inactivity in Cheshire and Warrington\n\n**Movement for Change Fund** (in partnership with Sport England)\n- Supports social entrepreneurs helping marginalised communities access sport and physical activity\n- Includes business and leadership skills development support\n\n**Funding Signposting**: Active Cheshire maintains a comprehensive grant funding opportunities page listing various national and local funding sources for sports and physical activity organisations.\n\n### Priority Areas\n\n- Children and young people's physical activity and sport participation\n- Mental health improvement through physical activity (Active Minds pillar)\n- Early intervention and youth violence prevention\n- Tackling physical inactivity and health inequalities\n- Community sport and grassroots participation\n- Supporting inactive populations, particularly those facing barriers due to gender, race, disability, poverty, sexuality, religion, and parental status\n- Economic and community development through sport\n\n### What They Don't Fund\n\nSpecific exclusions not published, but funding is restricted to:\n- Geographic area: Cheshire East, Cheshire West & Chester, and Warrington (Halton is included in the Active Futures Programme partnership)\n- Must involve physical activity or sport as a component\n- Focus on their strategic pillars and the All Together Active strategy prioritiese:T72", + "Geographic Focus": "Area of Operation: Cheshire East, East and West Buckland, Warrington\n\n### Grant Programmes\n\n**Active Futures Programme** (in partnership with Cheshire Community Foundation and Office of Police and Crime Commissioner for Cheshire)\n- Tier 1 Grants: £5,000 - £10,000 (for reaching new groups or expanding existing provision)\n- Tier 2 Grants: £10,001 - £25,000 (for developing new, targeted provision in areas of high need)\n- Focus: Early intervention and diversionary activities for young people at risk of Child Criminal Exploitation and Serious Youth Violence\n- Must engage children and young people aged 0-18 through physical activity or sport\n- Geographic coverage: Cheshire East, Cheshire West & Chester, Warrington, and Halton\n- Annual funding round\n- Application method: Online through Cheshire Community Foundation website\n\n**Active Minds Investment Fund**\n- Total available: £30,000\n- Focus: Improving mental health and quality of life through physical activity\n- Part of the Blueprint to Tackle Physical Inactivity in Cheshire and Warrington\n\n**Movement for Change Fund** (in partnership with Sport England)\n- Supports social entrepreneurs helping marginalised communities access sport and physical activity\n- Includes business and leadership skills development support\n\n**Funding Signposting**: Active Cheshire maintains a comprehensive grant funding opportunities page listing various national and local funding sources for sports and physical activity organisations.\n\n### Priority Areas\n\n- Children and young people's physical activity and sport participation\n- Mental health improvement through physical activity (Active Minds pillar)\n- Early intervention and youth violence prevention\n- Tackling physical inactivity and health inequalities\n- Community sport and grassroots participation\n- Supporting inactive populations, particularly those facing barriers due to gender, race, disability, poverty, sexuality, religion, and parental status\n- Economic and community development through sport\n\n### What They Don't Fund\n\nSpecific exclusions not published, but funding is restricted to:\n- Geographic area: Cheshire East, Cheshire West & Chester, and Warrington (Halton is included in the Active Futures Programme partnership)\n- Must involve physical activity or sport as a component\n- Focus on their strategic pillars and the All Together Active strategy prioritiese:T72\n\n- **Annual Income**: £908,730 (year ending March 2024)\n- **Grant Range**: £200 - £25,000 (through partnership programmes)\n- **Geographic Focus**: Cheshire East, Cheshire West & Chester, and Warrington\n- **Organisation Type**: Active Partnership (Sport England System Partner 2022-2027)\n- **Charity Number**: 701764", + "charityNumber": "701764", + "areaOfOperation": "Cheshire East, East and West Buckland, Warrington", + "expenditure": null, + "website": "https://www.activecheshire.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "", + "grant_range": "£200 - £25,000 (through partnership programmes)", + "funding_model": "" + }, + "tags_focus": [ + "Health", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "ADAR CHARITABLE TRUST", + "link": "https://www.hinchilla.com/funder-directory/adar-charitable-trust", + "philea_info": { + "About": "The ADAR CHARITABLE TRUST is a private grant-making trust registered with the Charity Commission for England and Wales (charity number 328731) since 24 July 1990. The trust operates as an unincorporated charity controlled by a deed of trust and governed by 2 trustees. For the financial year ending 31 October 2024, the trust had total income of £198,030 and made grants totaling £175,451. The charity's mission focuses on three core areas: advancing education in the Orthodox Jewish faith, promoting the Orthodox Jewish religion, and relieving poverty. The trust maintains a low public profile with no website, limited contact information, and no publicly available information about its grant recipients or distribution strategies.", + "Programme Areas": "### Grant Programs\n\nThe trust does not operate named grant programs but makes grants aligned with its three charitable objects. Specific grant amounts and ranges are not publicly disclosed.\n\n### Priority Areas\n\nBased on the trust's registered charitable objects:\n\n- **Orthodox Jewish Education** - Advancing education in the Orthodox Jewish faith\n- **Religious Activities** - Supporting and promoting the Orthodox Jewish religion\n- **Poverty Relief** - Relieving poverty, particularly within the Orthodox Jewish community\n- **Related Charitable Purposes** - Other charitable purposes determined by trustees to be connected with the above areas\n\n### What They Don't Fund\n\nNot publicly specified, but funding is restricted to the trust's charitable objects relating to Orthodox Jewish education, religion, and poverty relief.", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\n\nThe trust does not operate named grant programs but makes grants aligned with its three charitable objects. Specific grant amounts and ranges are not publicly disclosed.\n\n### Priority Areas\n\nBased on the trust's registered charitable objects:\n\n- **Orthodox Jewish Education** - Advancing education in the Orthodox Jewish faith\n- **Religious Activities** - Supporting and promoting the Orthodox Jewish religion\n- **Poverty Relief** - Relieving poverty, particularly within the Orthodox Jewish community\n- **Related Charitable Purposes** - Other charitable purposes determined by trustees to be connected with the above areas\n\n### What They Don't Fund\n\nNot publicly specified, but funding is restricted to the trust's charitable objects relating to Orthodox Jewish education, religion, and poverty relief.\n\n- **Annual Giving**: £175,451 (FY 2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly available\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: England and Wales\n- **Registration Date**: 24 July 1990", + "charityNumber": "328731", + "areaOfOperation": "England, Wales", + "expenditure": "175451", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£175,451 (FY 2024)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly available", + "grant_range": "Not publicly disclosed", + "funding_model": "" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Addenbrooke's Charitable Trust", + "link": "https://www.hinchilla.com/funder-directory/addenbrookes-charitable-trust", + "philea_info": { + "About": "Addenbrooke's Charitable Trust (ACT), registered charity number 1170103, is the only registered charity dedicated to supporting Cambridge University Hospitals NHS Foundation Trust, which includes Addenbrooke's and the Rosie hospitals. With annual income of £13.9 million and charitable expenditure of £3.75 million (2024/25), ACT connects donors with causes that support projects and facilities beyond NHS funding boundaries. The charity focuses on achieving the highest possible standards in patient experience, clinical care, research, and education. Since 1994, ACT has funded major projects including a £1.5 million surgical robot, a £250,000 liver perfusion machine making Addenbrooke's the first UK hospital to routinely use this technology, and £7.5 million towards the Rosie Maternity Hospital extension. In 2024, Charles Packshaw became Chair of Trustees, bringing extensive experience from Prostate Cancer UK and over 30 years in banking. Chief Executive Shelly Thake emphasises ACT's focus on bringing \"firsts to Cambridge that save lives\" and investing in early-career medical professionals.e:Tba", + "Programme Areas": "$e", + "Geographic Focus": "Area of Operation: Botswana, El Salvador, India, Jordan, Kenya, Myanmar, Sierra Leone, Uganda, Zimbabwe, Cambridgeshire, Essex, Hertfordshire, Norfolk, Suffolk\n\n$e\n\n- **Annual Income**: £13.9 million (2024/25)\n- **Charitable Expenditure**: £3.75 million\n- **Decision Time**: 2 weeks (under £10,000); up to 3 months (£10,000+)\n- **Grant Range**: No minimum - £40,000+ (larger grants by discussion)\n- **Geographic Focus**: Cambridge University Hospitals (Addenbrooke's and The Rosie)\n- **Application Method**: Rolling basis via online portal", + "charityNumber": "1170103", + "areaOfOperation": "Botswana, El Salvador, India, Jordan, Kenya, Myanmar, Sierra Leone, Uganda, Zimbabwe, Cambridgeshire, Essex, Hertfordshire, Norfolk, Suffolk", + "expenditure": "3750000", + "website": "https://www.act4addenbrookes.org.uk", + "phone": "01223 217757", + "email": "hello@act4addenbrookes.org.uk", + "address": "BOX 126, ADDENBROOKES HOSPITAL, HILLS ROAD, CAMBRIDGE, CB2 0QQ", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "2 weeks (under £10,000); up to 3 months (£10,000+)", + "grant_range": "No minimum - £40,000+ (larger grants by discussion)", + "funding_model": "Rolling basis via online portal" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Sciences & Research" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Botswana", + "Kenya", + "Sierra Leone", + "Uganda", + "Zimbabwe" + ], + "Latin America & Caribbean": [ + "El Salvador" + ], + "Asia & Pacific": [ + "India", + "Myanmar" + ], + "Middle East & North Africa (MENA)": [ + "Jordan" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Adderbury Feoffee Charity", + "link": "https://www.hinchilla.com/funder-directory/adderbury-feoffee-charity", + "philea_info": { + "About": "", + "Programme Areas": "- **Educational Fund**: School leavers going on to further education or university; support for local primary school (Christopher Rawlins) for IT equipment, resources, breakfast/after school clubs, school trips and residentials\n- **Apprenticeships**: Assistance for those undertaking apprenticeships\n- **Assistance Fund (Needy Clause)**: Help for residents of all ages experiencing hardship\n- **Ecclesiastical Fund**: Supporting St Mary's Church in Adderbury and St John the Evangelist in Milton\n- **Clubs and Societies**: Support for clubs and societies registered in the Adderbury and Milton parishes\n\n\n### What They Don't Fund\n\n- Applications from individuals or organizations outside Adderbury and Milton parishes\n- Applications from those who have lived in the area for less than 3 years", + "Geographic Focus": "Area of Operation: Oxfordshire\n\n- **Educational Fund**: School leavers going on to further education or university; support for local primary school (Christopher Rawlins) for IT equipment, resources, breakfast/after school clubs, school trips and residentials\n- **Apprenticeships**: Assistance for those undertaking apprenticeships\n- **Assistance Fund (Needy Clause)**: Help for residents of all ages experiencing hardship\n- **Ecclesiastical Fund**: Supporting St Mary's Church in Adderbury and St John the Evangelist in Milton\n- **Clubs and Societies**: Support for clubs and societies registered in the Adderbury and Milton parishes\n\n\n### What They Don't Fund\n\n- Applications from individuals or organizations outside Adderbury and Milton parishes\n- Applications from those who have lived in the area for less than 3 years\n\n| Metric | Value |\n|--------|-------|\n| Annual Giving | £8,000 - £10,000 (approx) |\n| Grant Range | Not specified |\n| Average Grant | Not specified |\n| Application Method | Fixed Deadline (Educational) / Rolling (Other funds) |\n| Geographic Focus | Adderbury parish, Oxfordshire, Milton parish, Oxfordshire |", + "charityNumber": "200902", + "areaOfOperation": "Oxfordshire", + "expenditure": "8500", + "website": "https://adderburyfeoffee.co.uk/", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£8,000 - £10,000 (approx)", + "success_rate": "", + "decision_time": "", + "grant_range": "Not specified", + "funding_model": "Fixed Deadline (Educational) / Rolling (Other funds)" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Additional Curates Society", + "link": "https://www.hinchilla.com/funder-directory/additional-curates-society", + "philea_info": { + "About": "Established in 1837 by Christian layman Joshua Watson, the Additional Curates Society is a historic Anglican charity dedicated to supporting the Church of England's ministry by providing grants to parishes that need financial assistance to employ curates. The charity was founded with a £500 subscription from King William IV and was established to provide for the spiritual needs of people moving into new industrial estates during the Industrial Revolution.\n\nThe Society awards grants to poor and populous parishes, as well as parishes in new areas, enabling them to maintain vital ministerial support. Grants are assessed by the Council based on the parishes' financial needs and the number of people living in the parish. The size of a grant is determined by the income of the parish and the amount of money available at the time of the application. Beyond direct financial support, the organisation also works to encourage and foster vocations to the priesthood, playing a strategic role in developing the next generation of Anglican clergy.e", + "Programme Areas": "#### Grant Programs\n- Parish Support Grants: Funding to help parishes employ curates\n- Focus on poor and populous parishes requiring additional clergy support\n- Support for parishes in new ecclesiastical areas and developments\n\n#### Priority Areas\n- Parishes with economic challenges unable to afford curates independently\n- Densely populated parishes requiring additional ministerial support\n- New church plants and developing ecclesiastical areas\n- Supporting vocations to priesthood\n\n#### What They Don't Fund\nInformation not available from current sources", + "Geographic Focus": "Area of Operation: England, Wales\n\n#### Grant Programs\n- Parish Support Grants: Funding to help parishes employ curates\n- Focus on poor and populous parishes requiring additional clergy support\n- Support for parishes in new ecclesiastical areas and developments\n\n#### Priority Areas\n- Parishes with economic challenges unable to afford curates independently\n- Densely populated parishes requiring additional ministerial support\n- New church plants and developing ecclesiastical areas\n- Supporting vocations to priesthood\n\n#### What They Don't Fund\nInformation not available from current sources\n\n- **Annual Giving**: Not publicly available\n- **Success Rate**: Not available\n- **Decision Time**: Not available\n- **Grant Range**: Not specified\n- **Geographic Focus**: England (poor and populous parishes, and parishes in new areas)", + "charityNumber": "209448", + "areaOfOperation": "England, Wales", + "expenditure": null, + "website": "https://www.additionalcurates.co.uk", + "phone": "1213825533", + "email": "info@additionalcurates.co.uk", + "address": "16 COMMERCIAL STREET, BIRMINGHAM, B1 1RS", + "applicationPortal": "", + "annual_giving": "Not publicly available", + "success_rate": "Not available", + "decision_time": "Not available", + "grant_range": "Not specified", + "funding_model": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "name": "Adelphi Genetics Forum", + "link": "https://www.hinchilla.com/funder-directory/adelphi-genetics-forum", + "philea_info": { + "Error": "No sections container in resolved payload" + }, + "tags_focus": [], + "geo_locations": {} + } +] \ No newline at end of file diff --git a/src/data/preprocessed/philea_members_preprocessed.json b/src/data/preprocessed/philea_members_preprocessed.json index c1b6162..a4e66a9 100644 --- a/src/data/preprocessed/philea_members_preprocessed.json +++ b/src/data/preprocessed/philea_members_preprocessed.json @@ -164,7 +164,11 @@ "Geographic Focus": "We tear down the barriers that prevent communities from creating change. We take care of the finance and administration, freeing groups to focus on their core mission, and work closely with funders to enable them to support social impact with confidence and transparency." }, "tags_focus": [], - "geo_locations": {} + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } }, { "id": 24784, @@ -212,5 +216,13755 @@ "Global" ] } + }, + { + "id": 24783, + "name": "Suna and İnan Kıraç Foundation", + "address": "Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul", + "country": "", + "email": "", + "website": "http://www.sunaveinankiracvakfi.org.tr/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul", + "lat": 41.0328293, + "lng": 28.9752418, + "zoom": 14, + "place_id": "ChIJV6w28F-3yhQRQoOqAcLxHTg", + "street_number": "No:47", + "street_name": "Meşrutiyet Caddesi", + "street_name_short": "Meşrutiyet Cd.", + "state": "İstanbul", + "post_code": "34430", + "country": "Türkiye", + "country_short": "TR" + }, + "link": "https://philea.eu/members/suna-and-inan-kirac-foundation/", + "philea_info": { + "About": "The Suna and İnan Kıraç Foundation advances societal development through its institutions of excellence in education, culture, and scientific research:", + "Mission": "The Suna and İnan Kıraç Foundation was established by Suna Kıraç, İnan Kıraç and İpek Kıraç on 27 October, 2003. With the goal of supporting the cultivation of empowered citizens that will contribute to Türkiye and its people, the Foundation supports activities in the areas of education, culture, arts and health.", + "Geographic Focus": "Currently, we are exclusively in Turkiye, though our long-term vision is to extend to neighboring countries, particularly with our education work.", + "Programme Areas": "Arts & Culture\nEducation\nHealth\nSciences & Research\nYouth/Children Development The Suna and İnan Kıraç Foundation operates across three main programme areas:Education and Educational Equity: Designing and implementing evidence-based models that strengthen early childhood development, support girls’ educational participation and empowerment, and contribute to teacher development and systemic improvement.Cultural Heritage and Public Access to Culture: Preserving, researching, and sharing Türkiye’s cultural heritage through museums, research institutes, exhibitions, publications, and public learning programmes.Scientific Research: Advancing high-quality research in neurodegenerative diseases through the Foundation’s Neurodegeneration Research Laboratory (NDAL), contributing to international scientific knowledge and capacity building.Across all areas, the Foundation combines research, institutional excellence, and long-term engagement to generate sustainable societal impact." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 24781, + "name": "Hidden Universe: Biodiversity Foundation (HUB)", + "address": "Grimmereds by 5, Västra Frölunda, Sweden", + "country": "", + "email": "", + "website": "https://www.hu-b.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Grimmereds by 5, Västra Frölunda, Sweden", + "lat": 57.6651926, + "lng": 11.8938683, + "zoom": 14, + "place_id": "ChIJs0Ih5C2NT0YR-dceWQWRP78", + "name": "Grimmereds by 5", + "street_number": "5", + "street_name": "Grimmereds by", + "city": "Västra Frölunda", + "state": "Västra Götalands län", + "post_code": "426 70", + "country": "Sweden", + "country_short": "SE" + }, + "link": "https://philea.eu/members/hidden-universe-biodiversity-foundation-hub/", + "philea_info": { + "About": "Biodiversity research, conservation and restoration. At its core, the Foundation is about advancing and communicating scientific knowledge and using such knowledge to better conserve and restore diverse ecosystems. Much of the diversity of life on Earth remains unknown, and without better knowledge, we cannot hope to restore or conserve it effectively. In its initial phase, the Foundation is focusing on the Atlantic Forest in Brazil, one of the most biodiverse and threatened regions on the planet. Here, it supports field-based research and promotes ecological restoration in ways that are informed by science and grounded in collaboration, including local communities.", + "Mission": "HUB’s mission is advanced through an integrated approach that combines scientific research, conservation initiatives, and community engagement.", + "Geographic Focus": "Brazil (initial focus).", + "Programme Areas": "Animal-Related\nEducation\nEnvironment/Climate\nFood, Agriculture & Nutrition\nSciences & Research\nSocio-economic Development, Poverty 1. Explore and document: HUB uncovers the planet’s hidden life. We partner with scientists to explore and document species, interactions and ecosystems—many still unknown to science—revealing the richness of nature so it can be understood and protected. 2. Protect and restore: HUB turns science into action. Working with local communities, we protect endangered species and restore vital ecosystems, starting in Brazil’s Atlantic rainforest and expanding to other biodiversity hotspots in the future. 3. Share knowledge: HUB connects people with nature. Through training, education, storytelling, and collaboration, we share discoveries that inspire curiosity, awareness, and action for a thriving planet." + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Brazil" + ] + } + }, + { + "id": 24780, + "name": "Andrea von Braun Stiftung", + "address": "Mauerkircherstraße 12, Munich-Bogenhausen, Germany", + "country": "", + "email": "", + "website": "https://www.avbstiftung.de/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Mauerkircherstraße 12, Munich-Bogenhausen, Germany", + "lat": 48.1497328, + "lng": 11.6012926, + "zoom": 14, + "place_id": "ChIJW8XsIJ91nkcRKrCt_VJpuAk", + "name": "Mauerkircherstraße 12", + "street_number": "12", + "street_name": "Mauerkircherstraße", + "city": "München", + "state": "Bayern", + "state_short": "BY", + "post_code": "81679", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/andrea-von-braun-stiftung/", + "philea_info": { + "About": "Our core mission is to promote projects in ecological border areas. By this we mean:", + "Mission": "Our core mission is to promote projects in ecological border areas. By this we mean: Nature-based environmental and climate protection in underfunded ecosystems with image problems.\nConcrete projects that are locally rooted and have both regional and international impact.\nHolistic projects that systematically interlink multiple technical and social perspectives (interdisciplinarity).", + "Geographic Focus": "Europe and Germany, but also worldwide", + "Programme Areas": "Arts & Culture\nCivil society, Voluntarism & Non-Profit Sector\nEducation\nEnvironment/Climate\nPeace & Conflict Resolution\nSciences & Research" + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Peace & Conflict Resolution", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ], + "Europe (Western / General)": [ + "Europe", + "Germany" + ] + } + }, + { + "id": 24510, + "name": "Philanthropy in Ukraine", + "address": "Salyutna St. 5, office 49 Kyiv, 04111 Ukraine", + "country": "", + "email": "", + "website": "http://philanthropy.in.ua", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Salyutna St. 5, office 49 Kyiv, 04111 Ukraine", + "lat": 50.4503596, + "lng": 30.5245025, + "zoom": 14, + "place_id": "ChIJBUVa4U7P1EAR_kYBF9IxSXY", + "city": "Kyiv", + "state": "Kyiv city", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/philanthropy-in-ukraine/", + "philea_info": { + "About": "A platform of ecosystem solutions to strengthen trust in NGOs through verification and open data", + "Mission": "Our major areas of expertise are: verification and due diligence as we’re operating PhilinUA digital platform to vet NGOs against international standards; capacity strengthening as we’re delivering educational programs on governance, finance, and strategic planning for civil society professionals; sectoral analytics as we’re providing research and consultative data to guide systemic improvements in philanthropy. We employ a systemic approach to align Ukrainian philanthropy with global standards. Our primary distinction is the innovative PhilinUA platform, which provides a scalable, technology-driven solution for donor trust and due diligence. Our values are: strategic thinking, co-creation and impact. Our core strength is building trust and transparency. By simplifying the verification process, we directly facilitate the attraction of essential international funding and enhance the long-term resilience of Ukrainian civil society.", + "Geographic Focus": "Currently, we operate in Ukraine for Ukrainian organizations, but we also provide services and have partnerships with international donors who support Ukraine or need our services for their grantees in Ukraine." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Central & Eastern / Balkans)": [ + "Ukraine" + ] + } + }, + { + "id": 24509, + "name": "Confederación Española de Cajas de Ahorros", + "address": "Calle de Alcalá, 27, Madrid, Spain", + "country": "", + "email": "", + "website": "http://www.ceca.es", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Calle de Alcalá, 27, Madrid, Spain", + "lat": 40.41845850000001, + "lng": -3.6986681, + "zoom": 14, + "place_id": "ChIJA_9ksYYoQg0RAu5gh9in4Tw", + "name": "C. Alcalá, 27", + "street_number": "27", + "street_name": "Calle Alcalá", + "street_name_short": "C. Alcalá", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28014", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/confederacion-espanola-de-cajas-de-ahorros/", + "philea_info": { + "About": "CECA is a banking association committed to representing, defending and promoting its member entities’ interests. It provides them with advice and supports them in their endeavour to offer services that promote financial inclusion and access to credit. This work is undertaken with a sustainable approach, notably featuring Obra Social and financial education.", + "Geographic Focus": "Spain", + "Programme Areas": "Our activity is divided into four main areas: Institutional representation: Defense of our member entities’ interests in national and international forums.\nEconomic and regulatory analysis: Exhaustive follow-up regulatory of the national and international agendas and economic studies ad-hoc.\nSustainability and Obra Social: Dissemination and promotion of the Obra Social, financial education and sustainability.\nWorker representation: Defense of member entities that are bound by the sector’s Collective Bargaining Agreement. The Obra Social of CECA’s member entities constitutes Spain’s leading source of private social investment, reflecting a firm commitment to building a more equitable and inclusive society. CECA represents banking institutions and more than thirty banking and ordinary foundations. In 2024, CECA Foundations and associated entities collectively invested over €906 million in social initiatives, positioning them as the country’s largest private social investor. This significant level of investment enables the development of programs that directly address societal needs across a wide range of areas. The social programs implemented by CECA’s entities and foundations encompass fields such as social assistance, financial education, job creation, cultural development, research, and environmental protection, among others. Another major strength of CECA’s contribution to society lies in the extensive territorial presence of its member entities. Thanks to the wide presence of its foundations and banks throughout the country, CECA is able to reach diverse population groups – including those in vulnerable or remote areas – ensuring that its impact is both far-reaching and deeply rooted in local communities. Furthermore, CECA and its associated entities demonstrate a strong commitment to Financial Education and Sustainability. In the field of financial education, CECA, its member entities continue to work on their social vocation with the conviction that financial education is more necessary than ever, as it is vital to have financially responsible citizens, who manage their resources in the most efficient way, and to enhance digitalization when it comes to disseminating knowledge and skills. Also, in terms of sustainability, CECA and its member entities are aware that the financial sector can promote changes that will bring it closer to achieving the 2030 Agenda, which sets out the 17 Sustainable Development Goals to implement actions aimed to social and environmental improvement throughout the world. Furthermore, CECA adheres to the WSBI-ESBG Charter for Responsible and Sustainable Business." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 24508, + "name": "We Are Purposeful", + "address": "Blue House Yard, River Park Road, London, UK", + "country": "", + "email": "", + "website": "https://wearepurposeful.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Blue House Yard, River Park Road, London, UK", + "lat": 51.5972015, + "lng": -0.1116638, + "zoom": 14, + "place_id": "ChIJ0zqdKOIbdkgR0qSLHN8y2Pk", + "name": "Blue House Yard", + "street_number": "5", + "street_name": "River Park Road", + "street_name_short": "River Park Rd", + "city": "London", + "state": "England", + "post_code": "N22 7TB", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/we-are-purposeful/", + "philea_info": { + "About": "Purposeful is an Africa-rooted global hub for girls’ and young feminists organising and leadership. We believe that another world is not only possible, it is already being built right here and now, in the ways that girls and young feminists are organising with each other, imagining with each other, pushing us all a little further towards liberation.", + "Mission": "We resource girls and young feminists priorities in nearly every region of the world. Their priorities are our priorities. This is often a combination of gender-based violence, education, economic opportunity, climate crisis, and ensuring civic spaces stay open.", + "Programme Areas": "Two of our most innovative and distinguishing characteristics are 1) our highly participatory grant-making model that ensures resources reach those most impacted and 2) our inclusive accompaniment model which ensure our grantee partners, who have multiple intersecting vulnerabilities, have with wrap around support." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "Worldwide": [ + "Global", + "World" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 24507, + "name": "SOLIDARNA Foundation", + "address": "Jurkovićeva ulica 3, Zagreb, Croatia", + "country": "", + "email": "", + "website": "http://www.solidarna.hr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Jurkovićeva ulica 3, Zagreb, Croatia", + "lat": 45.81490180000001, + "lng": 15.9903851, + "zoom": 14, + "place_id": "ChIJ61VlCKvXZUcR8czyDuySB1g", + "name": "Jurkovićeva ul. 3", + "street_number": "3", + "street_name": "Jurkovićeva ulica", + "street_name_short": "Jurkovićeva ul.", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/solidarna-foundation/", + "philea_info": { + "About": "The SOLIDARNA Foundation is a philanthropic organization dedicated to protecting and advancing human rights through community-driven support, strategic partnerships, and systemic change.", + "Mission": "We work to transform solidarity into concrete action by providing direct support to individuals and communities, strengthening civil society, and advocating for policies that promote equality, dignity, and social justice.", + "Geographic Focus": "Croatia and Slovenia", + "Programme Areas": "The SOLIDARNA Foundation works at the intersection of human rights, gender equality, and democratic participation, with a strongfocus on translating values into tangible social impact. Our key areas of expertise include: Human rights and social justice – protecting and advancing the rights of women, minorities, migrants, and other marginalized groups through direct support and systemic advocacy.\nGender equality and women’s empowerment – supporting women-led initiatives, addressing gender-based violence, economic inequality, and structural discrimination.\nCivil society strengthening – providing financial support, capacity building, and strategic guidance to grassroots organizations and informal initiatives.\nCivic engagement and democratic participation – fostering active citizenship, community organizing, and protection of democratic values.Strategic philanthropy and grantmaking – designing and managing transparent, impact-oriented funding mechanisms that respond to real needs on the ground.\nPolicy advocacy and cross-sector collaboration – contributing expertise to policy development and building bridges between civil society, institutions, and responsible businesses. What sets SOLIDARNA apart is how we work and where we position ourselves: Community-rooted and trust-based: We do not impose solutions. We create space for solutions to emerge from communities themselves, grounded in lived experience and local knowledge.\nFrom solidarity to systems change: Alongside direct support, we invest in long-term structural change through advocacy, research, and partnerships.\nBridge-builder across sectors: SOLIDARNA connects civil society, public institutions, donors, and the private sector, translating shared values into concrete, measurable action.\nEvidence-based and dignified approach: Our work is informed by data, expertise, and practice, and communicated with respect—never sensationalist or patronizing.\nAgile and responsive: We are able to respond quickly to emerging social challenges while maintaining strategic focus and accountability.\n\nSOLIDARNA’s key strength lies in its ability to combine empathy with expertise, and immediacy with sustainability. We turn solidarity into a reliable social infrastructure—one that provides timely support where it is most needed, while also shaping conditions for a more just, equal, and resilient society. Our contribution is not only in the resources we mobilize, but in the trust we build, the voices we amplify, and the systemic changes we help make possible—in Croatia, the region, and across Europe" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Croatia", + "Slovenia" + ] + } + }, + { + "id": 24506, + "name": "Segal Family Foundation", + "address": "67 Mountain Blvd suite 201, Warren, NJ, USA", + "country": "", + "email": "", + "website": "http://www.segalfamilyfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "67 Mountain Blvd suite 201, Warren, NJ, USA", + "lat": 40.6161249, + "lng": -74.49897480000001, + "zoom": 14, + "place_id": "EjE2NyBNb3VudGFpbiBCbHZkIHN1aXRlIDIwMSwgV2FycmVuLCBOSiAwNzA1OSwgVVNBIiUaIwoWChQKEgk7T-HRTLnDiRH69HeOmheIEBIJc3VpdGUgMjAx", + "name": "67 Mountain Blvd suite 201", + "street_number": "67", + "street_name": "Mountain Boulevard", + "street_name_short": "Mountain Blvd", + "city": "Warren", + "state": "New Jersey", + "state_short": "NJ", + "post_code": "07059", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/segal-family-foundation/", + "philea_info": { + "About": "Segal Family Foundation is a social impact funder and advisor championing African visionaries.", + "Mission": "Segal Family Foundation is a social impact funder and advisor championing African visionaries.", + "Geographic Focus": "Sub Saharan Africa", + "Programme Areas": "Invest: We find, vet, and invest in early-stage social leaders and organizations with huge potential to transform society. Connect: We bring together a rich community of African visionaries and global funders to foster transformative collaboration. Advise: We advance big visions by equipping partners and donors with the resources and advice they need to succeed." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 24505, + "name": "Partners for a New Economy", + "address": "Place de Cornavin 2, Geneva, Switzerland", + "country": "", + "email": "", + "website": "https://p4ne.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Place de Cornavin 2, Geneva, Switzerland", + "lat": 46.2084926, + "lng": 6.1428645, + "zoom": 14, + "place_id": "ChIJk1z4kidljEcRgdv-BG4Y7wc", + "name": "Pl. de Cornavin 2", + "street_number": "2", + "street_name": "Place de Cornavin", + "street_name_short": "Pl. de Cornavin", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1201", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/partners-for-a-new-economy/", + "philea_info": { + "About": "Partners for a New Economy is an international philanthropic collaboration, hosted by the Swiss Philanthropy Foundation. We were founded in 2015 by the MAVA, Oak, Marisla and KR Foundations, to address the root causes of environmental degradation that lie within our economic system. In 2025 we were joined by Seedling Foundation and Regenerative Foundation, and continue to have further support from Laudes and Ford Foundations. Our truly international collaborative funds initiatives that show a deep understanding of planetary boundaries and an urgency to transform our economy to live within them. We are a trusted partner for funders navigating the new economy space, offering insights, connections and pathways that help make economic systems change for the benefit of the planet and its people more tangible and fundable. Whilst our main geographic focus is Europe, we are keen to see a breadth of perspective and global outlook.", + "Mission": "An economy that serves people and nature, now and for future generations.", + "Geographic Focus": "European focus with an established role in the global new economy ecosystem.", + "Programme Areas": "Grant Making: which aims to cultivate the conditions for economic systems change in Europe, to nurture economies in service of people and nature\nField Building: to grow and strengthen the new economy ecosystem, supporting people and organisations to find greater alignment, understanding, deepening their interdependence and building collective power. P4NE hosts an annual New Economies global gathering.\nPartnerships & Learning: P4NE is an international funder collaborative. We are committed to deepening understanding of new economic thinking in order to encourage support of real world solutions." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 24504, + "name": "KR Foundation", + "address": "Læderstræde 20, Copenhagen, Denmark", + "country": "", + "email": "", + "website": "http://www.krfnd.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Læderstræde 20, Copenhagen, Denmark", + "lat": 55.67819679999999, + "lng": 12.5780295, + "zoom": 14, + "place_id": "ChIJ6_tpKRFTUkYRT5AVaL66Ess", + "name": "Læderstræde 20", + "street_number": "20", + "street_name": "Læderstræde", + "city": "København", + "post_code": "1201", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/kr-foundation/", + "philea_info": { + "About": "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.", + "Mission": "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.", + "Geographic Focus": "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.", + "Programme Areas": "Challenge Finance Mission: aligning financial policies and regulation enabling an energy transition away from fossil fuels.\nChallenge Influence mission: Addressing the political influence and social license of fossil fuel actors obstructing climate action\nEconomic Transformation mission: Exploring post-growth economic paradigms that can operate within planetary boundaries." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 24503, + "name": "Fundación AVINA", + "address": "Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de Panamá ", + "country": "", + "email": "", + "website": "http://www.avina.net", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de Panamá ", + "lat": 8.9971189, + "lng": -79.5823125, + "zoom": 15, + "place_id": "ChIJLfCbTzWmrI8Rsl2lERV3mXk", + "street_name": "Calle Evelio Lara", + "street_name_short": "C. Evelio Lara", + "city": "Panamá", + "state": "Provincia de Panamá", + "country": "Panama", + "country_short": "PA" + }, + "link": "https://philea.eu/members/fundacion-avina/", + "philea_info": { + "About": "Fundación Avina is a Latin American philanthropic foundation with over 30 years of experience advancing systemic change in Latin America. We work across three interconnected areas: climate action; just and regenerative economies; and democratic innovation. We act as a grantmaker and strategic intermediary connecting civil society, philanthropy, the private sector, and public institutions. Avina’s distinguishing strength is its role as a bridge between locally led solutions in the Global South and global philanthropic, corporate, and policy agendas. We focus on ecosystem-building, multi-stakeholder collaboration, and long-term systems change rather than isolated projects. Our key contribution is enabling locally led systemic change at scale, ensuring communities most affected by inequality and climate change are co-creators and decision-makers in shaping solutions.", + "Mission": "Rooted in the global South, Fundación Avina works to drive collaborative processes that bring about systemic changes in favor of human dignity and care for the planet.", + "Geographic Focus": "Latin America and the Global South", + "Programme Areas": "Biomes, Water, Climate, Inclusive and Circular Economy, Labor Innovation, Democracies" + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Global South / Majority World": [ + "Global South" + ], + "Worldwide": [ + "Global" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 24502, + "name": "Fondazione MeSSInA", + "address": "Forte Petrazza, Località Forte Petrazza, Camaro Superiore, Metropolitan City of Messina, Italy", + "country": "", + "email": "", + "website": "https://fdcmessina.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Forte Petrazza, Località Forte Petrazza, Camaro Superiore, Metropolitan City of Messina, Italy", + "lat": 38.1814676, + "lng": 15.5276218, + "zoom": 14, + "place_id": "ChIJTT7gPJROFBMRVEOMJ1_wBs4", + "name": "Forte Petrazza", + "street_number": "SNC", + "street_name": "Località Forte Petrazza", + "city": "Camaro Superiore", + "state": "Sicilia", + "state_short": "ME", + "post_code": "98151", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-messina/", + "philea_info": { + "About": "The MeSSiNa Foundation operates as a “Transformation Steward” or catalyst for local development in marginalized territories, primarily in Sicily.", + "Mission": "The official purpose of the MeSSiNa Foundation is to promote social justice and sustainable economic and human development bydesigning, experimenting with, and promoting new socio-economic policies in marginalized territories", + "Geographic Focus": "The MeSSiNa Foundation’s primary target is the region of Sicily in Italy and more generally Southern Italy. Nevertheless, we consider Sicily as a \"natural laboratory\" for socio-environmental experimentation that could be adapted and tested in other contexts facing similar issues. Having this in mind, the Foundation operates within a transnational framework through its partnership with international entities, being already member of the European Federation of Ethical and Alternative Banks and Financiers (FEBEA), the European Network Of Cities And Regions For The Social Economy (REVES) and the Foundations Platform F20. It also runs several EU-funded projects with European and MENA partners.", + "Programme Areas": "The cluster led by the Foundation covers several areas: Social mediation and personalized social support for disadvantaged people (mentally ill people, low-income families, former prisoners, etc.);\nEnergy projects (design and implementation of energy efficiency, production and redistribution interventions, creation of Renewable Energy Communities, etc.);\nCultural production and events, including the creation and management of museums, digital immersive rooms, international festival of performative arts, etc.;\nEducational activities for students of all ages;\nBusiness incubation and consolidation of social enterprises, through training, coaching, temporary management, etc.;\nFinancial services (through a co-funded microcredit institution, a co-funded asset management company, partner banks, etc.);\nTechnological research and innovation on several fields (energy production and distribution, housing, bioplastics, digital immersive rooms, etc.);\nUrban regeneration interventions (regeneration of buildings, urban art, regeneration of green spaces, etc.); etc. In the cluster, the Foundation does not function as a traditional top-down administrator or a simple service provider; instead, it designs the overall local development strategy for and with the target community, providing a theoretical framework based on complexity science and human development. It then structures the financial and operational relationships and framework that allow the cluster to thrive and implement the policies integrating all different activity areas." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Europe", + "European Union" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ], + "Middle East & North Africa (MENA)": [ + "MENA" + ] + } + }, + { + "id": 24349, + "name": "Volkswagen Slovakia Foundation", + "address": "", + "country": "", + "email": "", + "website": "http://www.nadacia-volkswagen.sk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Jána Jánoša 1 bratislava", + "lat": 48.1477745, + "lng": 17.1071553, + "zoom": 12, + "place_id": "ChIJl2HKCjaJbEcRaEOI_YKbH2M", + "city": "Bratislava", + "state": "Bratislava Region", + "country": "Slovakia", + "country_short": "SK" + }, + "link": "https://philea.eu/members/volkswagen-slovakia-foundation/", + "philea_info": { + "About": "Transforming Slovakia into a more educated, open, and engaged society — together and through innovation.", + "Mission": "Transforming Slovakia into a more educated, open, and engaged society — together and through innovation.", + "Geographic Focus": "Slovakia", + "Programme Areas": "Nadácia Volkswagen Slovakia focuses on advancing education, participation of vulnerable groups, and the development of cohesive communities. Our core expertise lies in designing and scaling innovative programmes that strengthen inclusive education, empower underrepresented learners, and build bridges between schools, families, and communities.As a corporate foundation, we act as a connector between philanthropy, business, and public systems, supporting pilot projects that generate learning and evidence for broader policy and practice change. Through strategic partnerships, targeted grantmaking, and capacity-building, we scale promising initiatives and promote long-term, systemic impact.Our key strength is the ability to catalyse systems change — we convene diverse stakeholders from education, government, and civil society to co-create solutions that foster inclusion, equity, and innovation. By combining private-sector agility with social impact goals, Nadácia Volkswagen Slovakia contributes to a more inclusive, resilient, and future-oriented society." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Slovakia" + ] + } + }, + { + "id": 24348, + "name": "Virgin Unite", + "address": "", + "country": "", + "email": "", + "website": "http://www.virginunite.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "50a Charlotte Street, London, UK", + "lat": 51.5198393, + "lng": -0.1358514, + "zoom": 14, + "place_id": "ChIJj2Wr5CsbdkgRDcBQ-Ujjj-0", + "name": "50a Charlotte St.", + "street_number": "50a", + "street_name": "Charlotte Street", + "street_name_short": "Charlotte St.", + "city": "London", + "state": "England", + "post_code": "W1T 2NS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/virgin-unite/", + "philea_info": { + "About": "Virgin Unite was founded in 2004 as the non-profit foundation of the Virgin Group, to unite people and entrepreneurial ideas to create opportunities for a better world. Since launch, together with some great partners, Virgin Unite has inspired and incubated a number of wonderful collaborations – like The Elders, Ocean Unite (now ORRAA), Carbon War Room (now merged with RMI), The B Team, Caribbean Climate Smart Accelerator, Unite BVI and 100% Human at Work – which have spurred much-needed change in the world. We continue to catalyse radical collaboration to challenge the unacceptable as we work for a world where all the planet and all people thrive.", + "Geographic Focus": "Global", + "Programme Areas": "We do philanthropy the Virgin way – that means being a positive disruptor, taking risks, entering spaces that are underfunded or overlooked, and uniting unlikely allies to multiply impact. Our mission is to unite people and entrepreneurial ideas to tackle the world’s most urgent challenges. Whether addressing injustice, reimagining business, or protecting the planet, our approach remains the same: take risks, back the bold, and never act alone. Unlike many traditional non-profit foundations, Virgin Unite doesn’t focus on a single issue. Instead, we look to challenge unacceptable issues or drive systems change in areas that aren’t getting enough attention, mobilising our community, partners, and their resources towards supporting the cause. Crucially, we don’t focus on a particular geography or issue, instead looking to be a positive disruptor in areas where we think we can specifically make a difference due to our unique approach, or because others aren’t currently giving the issue the attention it needs. We act as a positive disruptor by incubating and launching new non-profit initiatives. These organisations address a gap where systemic change is needed and eventually go on to thrive independently, with continued support from Virgin Unite. As of 2024, Virgin Unite has led and supported the incubation of 22 non-profit initiatives – including The Elders, The B Team, Ocean Unite (now ORRAA), Carbon War Room (now merged with RMI), Caribbean Climate Smart Accelerator, Unite BVI, and Planetary Guardians. We also look to embrace the same bold and innovative spirit that Virgin uses to change business for good and apply it to the world’s toughest challenges. This means working with businesses, and backing entrepreneurs, that drive positive social, environmental and economic benefits for people and the planet .A key component of Virgin Unite is our Constellation – a network and community of over 3,500 high net-wealth individuals, philanthropists, business leaders and entrepreneurs who convene to co-create solutions to some of the world’s biggest problems." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 24347, + "name": "Romanian Federation for Community Foundations", + "address": "", + "country": "", + "email": "", + "website": "https://ffcr.ro/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Int. Dridu nr. 7, bl. F13, sc. B, ap. 68, sector 1", + "lat": 44.452444, + "lng": 26.0856777, + "zoom": 16, + "place_id": "ChIJX-KIi7kDskARFJCx_PyWpi4", + "city": "Bucharest", + "state": "Bucharest", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/romanian-federation-for-community-foundations/", + "philea_info": { + "About": "FFCR’s vision is to develop a strong network of Community Foundations that contribute to transforming every community into a welcoming “home” by supporting local philanthropy and civic initiatives. The organization’s mission is to be the network that creates sustainable, active, and inclusive communities through national programs, expertise, strategic partnerships, and collaborative leadership. The Federation promotes strategic philanthropy, cross-sector collaboration (public, private, civil society), social responsibility, and civic engagement, aiming to support individuals and organizations that invest in the development of their own communities. FFCR’s actions are guided by the values of Togetherness, Trust, and Foresight and Leadership.", + "Mission": "To be the network that creates sustainable, active, and inclusive communities through national programs, expertise, strategic partnerships, and collaborative leadership." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Romania" + ] + } + }, + { + "id": 24346, + "name": "Grundfos Foundation", + "address": "", + "country": "", + "email": "", + "website": "https://www.pdjf.dk/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Poul Due Jensens Vej 7, Bjerringbro, Denmark", + "lat": 56.3802866, + "lng": 9.6690239, + "zoom": 14, + "place_id": "ChIJ1faoOTH4S0YRTPoMyHenWaM", + "name": "Poul Due Jensens Vej 7", + "street_number": "7", + "street_name": "Poul Due Jensens Vej", + "city": "Bjerringbro", + "post_code": "8850", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/grundfos-foundation/", + "philea_info": { + "About": "The main purpose of the Grundfos Foundation is to ensure and support healthy economic growth and development of the Grundfos Group. The Foundation fulfils its main purpose through exercising active ownership towards the Grundfos Group.", + "Mission": "The main purpose of the Grundfos Foundation is to ensure and support healthy economic growth and development of the Grundfos Group. The Foundation fulfils its main purpose through exercising active ownership towards the Grundfos Group.", + "Geographic Focus": "Global, with a focus on Denmark", + "Programme Areas": "Philanthropy The Foundation runs its philanthropic business through donations to areas that are in harmony with the will and principles of the founder; contribute positively to the sustainable development of Grundfos and the surrounding community; contribute to the pride of Grundfos’ employeesaffect society and strengthen relationships that support Grundfos’ work; maintain the Foundation and Grundfos as socio-bearing entities. The Foundation’s donations are given primarily in three areas: Research and Learning: The Foundation supports selected research environments, especially within natural and technical science and initiatives that inspire children and young people to explore science and technology\nWater and Sustainable Development: The Foundation strives to provide access to affordable drinking water and sanitation for the world’s poorest. The aim is to contribute to reducing global inequality.\nInclusion and Community Engagement: The Foundation focuses on the Central Jutland Region and the municipalities that are close to Grundfos’ home in Bjerringbro and supports Grundfos companies all over the world building local partnerships with organisations, institutions and associations. Grants from the Foundation must first and foremost benefit the intended beneficiaries. A project may very well cover several areas. For example, it is desirable that follow-up research be linked to projects within water and social inclusion. Likewise, initiatives in the field of water also contribute to social inclusion – in the form of, for example, local workplaces and improved communities. The Foundation not only supports fully designed projects, but also concept development, studies, project and product development." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 24345, + "name": "Exea Impact", + "address": "", + "country": "", + "email": "", + "website": "http://www.exeaimpact.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Puig Brands Torre 2, Plaça d'Europa, 34, L'Hospitalet de Llobregat, Spain", + "lat": 41.357969, + "lng": 2.1227306, + "zoom": 14, + "place_id": "ChIJ-a07tUCZpBIRjPXXZQm5n6c", + "name": "Puig Brands Torre 2", + "street_number": "34", + "street_name": "Plaça d'Europa", + "street_name_short": "Pl. d'Europa", + "city": "L'Hospitalet de Llobregat", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08908", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/exea-impact/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 24344, + "name": "Bulgarian Fund for Women", + "address": "", + "country": "Bulgaria", + "email": "", + "website": "https://bgfundforwomen.org/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "улица „Солунска“ 26, Sofia, Bulgaria", + "lat": 42.6929644, + "lng": 23.3191476, + "zoom": 14, + "place_id": "ChIJUXfHw2yFqkARScaIU7ZQWBI", + "name": "Solunska Street 26", + "street_number": "26", + "street_name": "Solunska Street", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1000", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/bulgarian-fund-for-women/", + "philea_info": { + "About": "The Bulgarian Fund for Women’s major areas of expertise center on grantmaking for women’s rights, building the capacity of civil society organizations, and advancing gender equality and social justice in Bulgaria and the wider region. The organization has developed particular strengths in feminist philanthropy, intersectional advocacy, and supporting grassroots activism across diverse marginalized groups, including LGBTI+, rural women, migrants, and people with disabilities.", + "Mission": "To support the human rights and social justice movements by advancing philanthropy aimed at achieving structural change.", + "Geographic Focus": "Bulgaria", + "Programme Areas": "Distinguishing Characteristics BFW is distinguished as the only indigenous feminist foundation in Bulgaria, independent from any family, corporate, or external donor governance. It leads with an intersectional approach, prioritizing social inclusion and innovative movement building. Its expertise includes developing local resources, nurturing coalitions, and collaborating with both national and European partners to address systemic barriers and deliver impactful, evidence-based programming. Key Strength or Contribution BFW’s key strength is its ability to combine grantmaking with deep local engagement—mobilizing knowledge, networks, and resources to empower underrepresented groups and drive public policy changes. Its contribution to society is seen in capacity building for women’s organizations, cross-sector advocacy, and fostering a resilient ecosystem for gender justice and democracy in Bulgaria. This independent and strategic approach amplifies the voices of the most vulnerable, catalyzes wider social movements, and sustains long-term feminist change. Thematic Areas: Arts & Culture,\nCitizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEmployment/Workforce,\nEnvironment/Climate,\nHuman/Civil Rights,\nGender equality and women’s empowerment Prevention ofgender-based violence and discrimination LGBTI+ rightsadvocacy Intersectional movement building formarginalized groups Activity Areas: Grantmaking: Providing core and project funding to women’s rights and gender justice organizations across Bulgaria.\nCapacity building: Offering training, mentoring, networking, and collective action platforms for grassroots leaders and organizations.\nAdvocacy & research: Conducting research on the status of women’s rights and civil society, and leading advocacy to inform public policy and philanthropy.\nAwareness and movement building: Developing feminist campaigns, convening forums, and supporting collective movement action for gender equality and democracy." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria" + ] + } + }, + { + "id": 23661, + "name": "Kosovar Civil Society Foundation", + "address": "MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo", + "country": "", + "email": "", + "website": "http://www.kcsfoundation.org/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo", + "lat": 42.6673053, + "lng": 21.1643067, + "zoom": 14, + "place_id": "ChIJJwkRBeaeVBMRWrleON-_ZZM", + "city": "Pristina" + }, + "link": "https://philea.eu/members/kosovar-civil-society-foundation/", + "philea_info": { + "About": "Since its establishment in 1998 KCSF has functioned as a civil society hub, initially with significant expertise in financial and capacity building support to civil society and later also with extensive advocacy for protecting and advancing civic space. Within these core areas of work, KCSF’s in-house expertise includes grant making, civic participation, public funding for civil society, civil society-government cooperation, freedom of association, internal governance of CSOs, as well as civil society inclusion in European Integration. While primarily focused in Kosovo, KCSF has actively contributed to these areas also at the regional level in the Balkans, as well as participated in various European and global initiatives. KCSF is recognized for its systematic and holistic approach, namely insisting on building larger and integrated systems rather than one-off solutions. It is also recognized as a vocal supporter and contributor of localized approaches in supporting civil society, by both advocating for and applying support programs that are contextualized, in line with local needs and capacities and mindful of local culture. With a plethora of high-impact success stories over the years, in general KCSF is proud to have had enabled and empowered thousands of CSOs, informal groups and activists to become active and influential actors of Kosovo’s public life through adequate funding and tailor-made capacity building, while providing a crucial contribution through its advocacy to Kosovo being the only country in the Western Balkans to maintain a positive trend of civic space for over two decades now.", + "Mission": "Kosovar Civil Society Foundation (KCSF) is an independent, non-profit organisation which supports the development of civil society and initiatives that promote a democratic culture and respond to socio-economic needs of Kosovo, with particular focus on contributing to the process of integration in the European Union.", + "Geographic Focus": "Kosovo" + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Kosovo" + ] + } + }, + { + "id": 23660, + "name": "Swarovski Foundation", + "address": "Chiswick Business Park, Chiswick High Road, London, UK", + "country": "", + "email": "", + "website": "https://www.swarovskifoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Chiswick Business Park, Chiswick High Road, London, UK", + "lat": 51.4930604, + "lng": -0.2748696, + "zoom": 14, + "place_id": "ChIJ-RcBF8UPdkgRvDCVVgd4zeE", + "name": "Chiswick Business Park", + "street_number": "566", + "street_name": "Chiswick High Road", + "street_name_short": "Chiswick High Rd.", + "city": "London", + "state": "England", + "post_code": "W4 5AN", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/swarovski-foundation/", + "philea_info": { + "About": "Established in 2013, the Swarovski Foundation is inspired by a long history of philanthropy initiated by the company founder Daniel Swarovski who believed that “to achieve lasting change, you must think not only of yourself but also of others”. The Swarovski Foundation’s mission is to promote sustainable livelihoods through education to reduce inequality by supporting work that focuses on Equity, Water, and Creativity, and through initiatives: Action Fund, Waterschool and Creatives for Our Future. Since its inception, the Swarovski Foundation has reached over 2 million people in 93 countries through 85 partnerships to drive progress towards the Sustainable Development Goals set out by the United Nations. The Swarovski Foundation is a UK charity governed and managed by a Board of Trustees and chaired by Marisa Schiestl-Swarovski.", + "Mission": "To promote sustainable livelihoods through education to reduce inequalities", + "Geographic Focus": "Global", + "Programme Areas": "Equity – to empower marginalised groups\nWater – to improve water security\nCreativity – to advance creative talent Own Initiatives Action Fund – The Action Fund supports organisations providing immediate relief to the most marginalised communities affected by urgent crises.\nCreatives For Our Future – Creatives For Our Future empowers the next generation of creative talent to unlock innovative approaches to our global sustainability challenges and drive progress towards the Sustainable Development Goals.\nWaterschool – The Waterschool empowers and educates young people on sustainable practices to address their local water challenges and improve water security globally." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 23659, + "name": "L'Oréal Fund for Women", + "address": "14 Rue Royale, Paris, France", + "country": "", + "email": "", + "website": "http://fondationloreal.com/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "14 Rue Royale, Paris, France", + "lat": 48.8681213, + "lng": 2.3233605, + "zoom": 14, + "place_id": "ChIJfYB-yTJu5kcRdfw3SUPUciI", + "name": "14 Rue Royale", + "street_number": "14", + "street_name": "Rue Royale", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75008", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/loreal-fund-for-women/", + "philea_info": { + "About": "Women & girls dedicated Fund. We’re supporting NGO and grassroot organisations to help women & girls in different areas : training, education, socio professional integration, emergency needs. our main mission is to empower these women and girls worldwide", + "Mission": "Our mission is to support organisations helping women and girls in situation of high vulnerability", + "Geographic Focus": "North America, Latin America, Asia, Europe, Africa, Middle East", + "Programme Areas": "Education,\nEmployment/Workforce,\nSocio-economic Development, Poverty" + }, + "tags_focus": [ + "Education", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 23658, + "name": "Foundever.org", + "address": "600 Brickell Ave ste 3200, Miami, FL, USA", + "country": "", + "email": "", + "website": "https://foundever.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "600 Brickell Ave ste 3200, Miami, FL, USA", + "lat": 25.7679928, + "lng": -80.19088359999999, + "zoom": 14, + "place_id": "Ei82MDAgQnJpY2tlbGwgQXZlIHN0ZSAzMjAwLCBNaWFtaSwgRkwgMzMxMzEsIFVTQSIkGiIKFgoUChIJ4bneW7y32YgRNTylH3ujU3oSCHN0ZSAzMjAw", + "name": "600 Brickell Ave ste 3200", + "street_number": "600", + "street_name": "Brickell Avenue", + "street_name_short": "Brickell Ave", + "city": "Miami", + "state": "Florida", + "state_short": "FL", + "post_code": "33131", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/foundever-org/", + "philea_info": { + "About": "Foundever.org specializes in education, employability, and social inclusion, building on the expertise of Foundever® in the Customer Experience (CX) industry. We focus on developing critical skills — such as digital and AI literacy, financial education, mentoring, and job-readiness — to empower individuals who face barriers to employment. What distinguishes us is our ability to adapt the proven impact sourcing model of the CX industry for the greater good, extending its benefits beyond business needs to support underserved communities. Our key contribution to society is promoting inclusion and equity by helping people gain the skills and confidence needed to access better opportunities.", + "Mission": "Our mission is to build and leverage educational programs to benefit untapped talent in deprived communities around the world and prepare individuals for their next employment opportunities.", + "Geographic Focus": "Europe; Africa (Egypt, South Africa, Morocco); Philippines;Latin America.", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nEducation,\nEmployment/Workforce,\nSocial/Human Services,\nSocio-economic Development, Poverty" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Asia & Pacific": [ + "Philippines" + ], + "Middle East & North Africa (MENA)": [ + "Egypt", + "Morocco" + ], + "Europe (Western / General)": [ + "Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 23656, + "name": "Fondazione Capellino", + "address": "Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy", + "country": "", + "email": "", + "website": "https://fondazionecapellino.org/en/fondazione-capellino", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy", + "lat": 44.4084736, + "lng": 8.900479599999999, + "zoom": 14, + "place_id": "ChIJ-1idExVB0xIRJw8sHBtYXOM", + "name": "Via de Marini, 1", + "street_number": "1", + "street_name": "Via de Marini", + "city": "Genova", + "state": "Liguria", + "state_short": "GE", + "post_code": "16149", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-capellino/", + "philea_info": { + "About": "Their areas of intervention are: Habitat & Biodiverse Corridors, Climate Change, Regenerative Agriculture. The distinguishing characteristics of our organisation in our model called “Reintegration Economy”", + "Mission": "The Foundation’s purpose is:\n(a) the protection of the biosphere and biodiversity, through: (i) targeted initiatives and projects for protection, conservation and renaturalisation as well as for reducing the impact of human activities on the environment;\n(ii) cultural awareness and political activity initiatives;\n(iii) the promotion and experimentation of new alternative socio-economic, productive, cultural and political models that achieve a synthesis between the needs of human beings and the protection of the biosphere and biodiversity; (b) the acquisition of financial and cultural autonomy instrumental to the protection of the biosphere and biodiversity, through: (i) the management and valorization of the shares held in joint-stock companies, through the exercise of the related social rights, ensuring, to the extent of its competence, that the management is in accordance with the values of the Foundation;\n(ii) operations aimed at increasing its assets over time: to this end, it can establish, acquire, participate in capital companies;\n(iii) participation in foundations, associations, other bodies or organizations that comply with the values of the Foundation.", + "Geographic Focus": "EU, America, Africa", + "Programme Areas": "Environment/Climate,\nFood, Agriculture & Nutrition" + }, + "tags_focus": [ + "Environment/Climate", + "Food, Agriculture & Nutrition" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Western / General)": [ + "European Union" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 22839, + "name": "Ursimone Wietslibach Foundation", + "address": "Bahnhofstrasse 25, Zug, Switzerland", + "country": "Switzerland", + "email": "", + "website": "http://www.uswf.ch/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bahnhofstrasse 25, Zug, Switzerland", + "lat": 47.1701744, + "lng": 8.515627799999999, + "zoom": 14, + "place_id": "ChIJb1ehsPeqmkcRtoioJVUTpCc", + "name": "Bahnhofstrasse 25", + "street_number": "25", + "street_name": "Bahnhofstrasse", + "city": "Zug", + "state": "Zug", + "state_short": "ZG", + "post_code": "6300", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/ursimone-wietslibach-foundation/", + "philea_info": { + "About": "They act entrepreneurially and invest in bold ideas and long-term partnerships. This is how they ensure communities have access to holistic health, human development, and active living.", + "Mission": "To help shape a world in which everyone can lead a fulfilling, active life — characterized by meaning, joy, and shared sustainability.", + "Geographic Focus": "Switzerland and the Mekong Region (Cambodia, Laos, Myanmar and Thailand Border area to Myanmar)", + "Programme Areas": "Holistic Health & Prevention Healthcare systems around the world primarily focus on treating diseases, with economic incentives directed towards established medical methods. Human Development For Well-Being Young people aged 15 to 25 in the Mekong region face significant difficulties transitioning from formal education to employment due to a lack of skills and digital literacy in the light of demanding employer requirements. Active Lifestyle People from low-income and challenging backgrounds often face barriers to participating in sports, including high costs, limited access to facilities, and lack of encouragement. Connecting Themes In all our impact areas we strive to include three important themes which intersect our impact areas, namely: inclusion, nutrition and consciousness. Inclusion The foundation aims to promote inclusion by integrating it into all initiatives, recognizing its strategic advantage and essential role in society. Disabilities are often invisible and affect individuals at all stages of life. By 2035, the goal is to be a leading inclusive funding foundation that inspires others. Nutrition The foundation recognizes the fundamental role of nutrition in health, human development, and sports, aiming to establish it as a cross-cutting theme in all funding areas by 2035. Nutrition is crucial for physical and mental health, cognitive development, and athletic performance, and addressing it can help prevent rising issues like obesity, diabetes, and cardiovascular diseases. Consciousness The foundation aims to promote awareness and mindfulness, integrating it into all programme designs by 2035. This involves fostering personal and collective behaviour change through practical knowledge and motivation." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Switzerland" + ], + "Asia & Pacific": [ + "Cambodia", + "Laos", + "Myanmar", + "Thailand" + ] + } + }, + { + "id": 22838, + "name": "America for Bulgaria Foundation", + "address": "ul. \"Malyovitsa\" 6, Sofia, Bulgaria", + "country": "Bulgaria", + "email": "", + "website": "http://www.us4bg.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ul. \"Malyovitsa\" 6, Sofia, Bulgaria", + "lat": 42.6892438, + "lng": 23.3287435, + "zoom": 14, + "place_id": "ChIJAfc9RQuFqkAR6o_IfC7KKpk", + "name": "ul. \"Malyovitsa\" 6", + "street_number": "6", + "street_name": "ulitsa \"Malyovitsa\"", + "street_name_short": "ul. \"Malyovitsa\"", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1000", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/america-for-bulgaria-foundation/", + "philea_info": { + "About": "The America for Bulgaria Foundation works in partnership with Bulgarians to support the country’s private sector and related democratic institutions.", + "Mission": "The America for Bulgaria Foundation works in partnership with Bulgarians to support the country’s private sector and related democratic institutions.", + "Programme Areas": "1. Private Sector Development Supporting entrepreneurship and small business growth.\nPromoting innovation ecosystems.\nEncouraging partnerships between business, academia, and government. 2. Education Enhancing the quality of education at all levels.\nSupporting STEM (Science, Technology, Engineering, Mathematics) programs.\nPromoting entrepreneurship and innovation among youth.\nImproving teacher training and leadership development. 3. Civic Engagement and Democratic Institutions Strengthening civil society and independent media.\nPromoting transparency, rule of law, and anti-corruption efforts.\nEncouraging citizen participation and community building. 4. Cultural Heritage and Tourism Preserving and promoting Bulgaria’s cultural heritage.\nInvesting in historical sites and museums.\nEnhancing Bulgaria’s image as an alternative/cultural and nature tourism destination 5. Leadership Development Nurturing the next generation of leaders across sectors.\nProviding fellowships, exchanges, and professional development programs." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 22835, + "name": "Elsevier Foundation", + "address": "Radarweg 29, Amsterdam, Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://www.elsevierfoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Radarweg 29, Amsterdam, Netherlands", + "lat": 52.3930616, + "lng": 4.8363326, + "zoom": 14, + "place_id": "EitSYWRhcndlZyAyOSwgMTA0MyBOWCBBbXN0ZXJkYW0sIE5ldGhlcmxhbmRzIjASLgoUChIJq2KEVfbixUcRt3nmid8idK4QHSoUChIJD8YwIffixUcRaDKZ2LuKHFg", + "name": "Radarweg 29", + "street_number": "29", + "street_name": "Radarweg", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1043 NX", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/elsevier-foundation/", + "philea_info": { + "About": "The Elsevier Foundation has a strategic focus on advancing inclusion in research and health by increasing the participation of underrepresented and underserved communities. We aim to serve as a catalyst for early stage interventions that are founded in an innovative proof of concept. Ultimately, our goal is to support partners to bring on new funders, scale up and support systemic change. We believe that our pragmatic and agile approach can have a powerful multiplier effect by adopting and accelerating proven ideas.", + "Mission": "We are a catalyst for inclusive research and health partnerships, convening and spotlighting impact makers to accelerate early stage interventions that advance inclusion in research and health.", + "Geographic Focus": "Global", + "Programme Areas": "Inclusive research and health: Our programs address key challenges in research, health and underrepresentation identified by the UN Sustainable Development Goals. The partnerships we support are strongly intersectional and highlight our commitment to supporting underserved communities around the world for better health outcomes and a more sustainable research ecosystem." + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 22834, + "name": "Augustinus Fonden", + "address": "Sankt Annæ Plads 13, Copenhagen, Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.augustinusfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Sankt Annæ Plads 13, Copenhagen, Denmark", + "lat": 55.68190389999999, + "lng": 12.5909885, + "zoom": 14, + "place_id": "ChIJY8VV7SJTUkYRmmLSG77hh9k", + "name": "Sankt Annæ Pl. 13", + "street_number": "13", + "street_name": "Sankt Annæ Plads", + "street_name_short": "Sankt Annæ Pl.", + "city": "København", + "post_code": "1250", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/augustinus-fonden/", + "philea_info": { + "About": "The Augustinus Foundation strengthens its societal responsibility and philanthropic mission by providing funding for other actors so that they can fulfill their social responsibility. The Augustinus Fonden’s raison d’être is based on the fact that the foundation’s task is to realize the visions and missions of others, as it is the professional organizations within the supported areas that are the experts.", + "Mission": "The purpose of the foundation is to work for charitable and humane, artistic, scientific or similar purposes.", + "Geographic Focus": "Denmark, Greenland and The Faroe Islands" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark", + "Faroe Islands", + "Greenland" + ], + "Europe (Southern / Mediterranean)": [ + "Greece" + ] + } + }, + { + "id": 22833, + "name": "Open Society Institute - Sofia", + "address": "Solunska Street 56, Sofia, Bulgaria", + "country": "Bulgaria", + "email": "info@osi.bg", + "website": "https://osis.bg/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Solunska Street 56, Sofia, Bulgaria", + "lat": 42.6935377, + "lng": 23.3159479, + "zoom": 14, + "place_id": "ChIJpS2sRmuFqkARZiEgSzLlBn4", + "name": "Solunska Street 56", + "street_number": "56", + "street_name": "Solunska Street", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1000", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/open-society-institute-sofia/", + "philea_info": { + "About": "Open Society Institute – Sofia is a non-governmental organization, acting for the public benefit, defending the values of the open society in Bulgaria and supporting the integration of the country to the European Union. The Institute is founded in 1990, thanks to a donation of Mr. George Soros.", + "Mission": "To promote, help develop and sustain the values, attitudes and practices of open society in Bulgaria.", + "Geographic Focus": "Bulgaria, Western Balkans countries, Ukraine, Georgia, EU member states in Central and Eastern Europe", + "Programme Areas": "OSIS is a leading operator of regranting programs. In the past years, OSIS was involved in over EUR 20 million in funding administered through initiatives such as the EEA Grants NGO Programme (EUR 11.8 million), Active Citizens Fund Bulgaria (EUR 15.5 million), and EU CERV programs (ProEUvalues, PACT), carried out as a lead organization in partnership with other CSOs. These programs support civil society, democracy, media independence, and EU values. OSIS also implements multi-country schemes that promote regional collaboration and democratic resilience, such as “The Next Mile of European Integration.”, to support think tanks in EU candidate countries. The Enhancing Media Resilience and Quality News Journalism project offers grants in Bulgaria, Croatia, Greece, Hungary, and Slovenia with a call opened in 2024. Beyond grant management, OSIS conducts research and advocacy on democracy, civic participation, and media resilience. It conducts research on media resilience and publishes the annual Media Literacy Index, assessing susceptibility to disinformation across Europe, the U.S., and Canada. OSIS also regularly produces State of Democracy, Hate Speech and state of civil society reports on Bulgaria, used by institutions like FRA. With an ISO 9001-certified quality management system, OSIS ensures high standards of administrative efficiency, accountability, and financial oversight." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Bulgaria", + "Central & Eastern Europe", + "Georgia", + "Ukraine" + ], + "Europe (Western / General)": [ + "Europe", + "European Union" + ] + } + }, + { + "id": 22831, + "name": "Kyiv School of Economics Foundation", + "address": "Mykola Shpak Street, 3 Kyiv Ukraine", + "country": "Ukraine", + "email": "development@kse.ua", + "website": "https://foundation.kse.ua/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Mykola Shpak Street, 3 Kyiv Ukraine", + "lat": 50.4503596, + "lng": 30.5245025, + "zoom": 14, + "place_id": "ChIJBUVa4U7P1EAR_kYBF9IxSXY", + "city": "Kyiv", + "state": "Kyiv city", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/kyiv-school-of-economics-foundation/", + "philea_info": { + "About": "Through education, leadership training, research-driven policy solutions, and humanitarian relief, we empower the next generation of scholars, policymakers, and entrepreneurs who will shape Ukraine’s future and ensure its integration into the global economy. By bridging academia and philanthropy, KSE Foundation not only mitigates the immediate effects of war but also builds the foundation for a resilient, knowledge-driven, and prosperous Ukraine.", + "Mission": "The Kyiv School of Economics Foundation (KSE Foundation) is committed to enhancing social welfare, human capital development, and national resilience while positioning Ukraine as a leading intellectual hub in Europe. Through education, innovation, and strategic partnerships, KSE Foundation strengthens Ukraine’s economic, social, and geopolitical future, ensuring access to world-class education and opportunities for all citizens.", + "Geographic Focus": "Ukraine", + "Programme Areas": "Strategic Priorities: Educational Expansion & Accessibility: Broadening the impact of KSE’s academic programs across Ukraine and internationally.\nSustainable Growth & Funding: Ensuring financial stability to support the expansion of KSE University and key initiatives.\nHuman Capital Development: Supporting young talents, war-affected students, and professionals in STEM, business, and public policy.\nStrengthening National Resilience: Leading projects in humanitarian relief, education, and reconstruction efforts.\nEnhancing Ukraine’s Global Influence: Promoting Ukraine’s intellectual and economic potential through international collaboration and advocacy. Key Programs and Activities: 1. Educational Support and Scholarships – KSE Foundation actively supports talented students, war-affected individuals, and veterans through grants and scholarships, ensuring access to high-quality education and leadership training. Programs Include: Donate to Educate: A global fundraising initiative providing full and partial tuition grants at KSE University.\nMemorial Scholarships: Established in honor of members of the KSE community who lost their lives during the war, offering annual grants for undergraduate and graduate students starting in 2025.\nKhan Academy for Ukraine: A nationwide educational initiative translating and localizing STEM courses from Khan Academy, making high-quality content accessible to Ukrainian schoolchildren.\nDa Vinci Ukraine: A grant program supporting talented youth in mathematics, physics, and STEM fields, fostering participation in international competitions and Olympiads. 2. Humanitarian Initiatives – The KSE Foundation plays a crucial role in supporting Ukraine’s recovery and resilience through humanitarian projects, ensuring safe education environments, medical support, and economic stability. Key Initiatives Include: Safe Education (ЗАХИСТОК): Establishing bomb shelters in schools and kindergartens, restoring offline learning.\nMedical Evacuation and Aid: Providing first-aid kits and tourniquets for medical facilities and frontline responders. Provided 4 medical evacuation helicopters to ensure rapid emergency response.\nTalents for Ukraine: A leadership grant program empowering young leaders dedicated to rebuilding and reforming Ukraine. These individuals have a significant international impact—winning Oscars, representing Ukraine at Eurovision, and even being honored as Nobel Peace Prize laureates.\nCreate Ukraine: A reintegration initiative aimed at bringing back skilled Ukrainian professionals with international experience to contribute to national reforms.\nEntrepreneurship Support: A grant program to scale small and medium-sized women-led businesses in manufacturing, agriculture, IT, and healthcare." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Ukraine" + ] + } + }, + { + "id": 22829, + "name": "National Network of Local Philanthropy Development", + "address": "Dilova Street, Kyiv, Ukraine", + "country": "Ukraine", + "email": "info@philanthropy.com.ua", + "website": "https://philanthropy.com.ua/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Dilova Street, Kyiv, Ukraine", + "lat": 50.4299123, + "lng": 30.5154433, + "zoom": 14, + "place_id": "Eh9EaWxvdmEgU3QsIEt5aXYsIFVrcmFpbmUsIDAyMDAwIi4qLAoUChIJ1yz_nB3P1EARaMS788ZVsPASFAoSCQVFWuFOz9RAEf5GARfSMUl2", + "name": "Dilova Street", + "street_name": "Dilova Street", + "street_name_short": "Dilova St", + "city": "Kyiv", + "state": "Kyiv", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/national-network-of-local-philanthropy-development/", + "philea_info": { + "About": "We are a network of Ukrainian community foundations, a community foundation support organization. We support our members through several services: capacity building & care, communications, advocacy, financing and development of a favorable environment for local philanthropy.", + "Mission": "We are a network of Ukrainian community foundations, a community foundation support organization. We support our members through several services: capacity building & care, communications, advocacy, financing and development of a favorable environment for local philanthropy.", + "Geographic Focus": "Ukraine" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Ukraine" + ] + } + }, + { + "id": 22472, + "name": "iac Berlin gGmbH", + "address": "Linienstraße 65A, Berlin, Germany", + "country": "Germany", + "email": "", + "website": "https://www.iac-berlin.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Linienstraße 65A, Berlin, Germany", + "lat": 52.5289842, + "lng": 13.4040638, + "zoom": 14, + "place_id": "ChIJQci4muNRqEcRG2l7p--nrGY", + "name": "Linienstraße 65A", + "street_number": "65A", + "street_name": "Linienstraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10119", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/iac-berlin-ggmbh/", + "philea_info": { + "About": "As a Do & Think Tank for impact networks, iac Berlin works with foundations, academia, public institutions, and locally rooted non-profit organizations to build networks and alliances with social impact and to initiate new forms of collaboration and engagement.", + "Geographic Focus": "Global with a focus on Europe", + "Programme Areas": "Expertise: Collaborative and relational approaches to social change\nContribution to society: support in understanding the polycrisis and in acting on it in meaning- and impactful ways" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 22471, + "name": "European Fundraising Association", + "address": "James Wattstraat 100, Amsterdam, Netherlands", + "country": "Netherlands", + "email": "", + "website": "http://www.efa-net.eu", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "James Wattstraat 100, Amsterdam, Netherlands", + "lat": 52.3489327, + "lng": 4.9200102, + "zoom": 14, + "place_id": "ChIJD1rgOX8JxkcRYuPQsH_Wods", + "name": "James Wattstraat 100", + "street_number": "100", + "street_name": "James Wattstraat", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1097 DM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/european-fundraising-association/", + "philea_info": { + "About": "EFA works through and with the support of national fundraising associations and organisations; a joint platform for exchange of knowledge, best practice and expertise. By sharing what each nation knows about fundraising, we work to accelerate the growth of the profession and industry. We promote high standards and an accredited qualification programme that enables fundraisers to perform professionally at a consistently high level across Europe, building public trust and confidence and encouraging philanthropy.", + "Mission": "EFA’s mission is to develop fundraising across Europe by strengthening national fundraising associations and national fundraising organisations, and to promote fundraising, philanthropy and the work of not-for-profit organisations at the EU level. EFA serves as a platform and a collective voice for its members.", + "Geographic Focus": "Europe", + "Programme Areas": "Fundraising and philanthropy" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 22470, + "name": "Famtastisch Stiftung", + "address": "Oberer Kehlberg 6, Attendorn, Germany", + "country": "Germany", + "email": "", + "website": "http://www.famtastisch.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Oberer Kehlberg 6, Attendorn, Germany", + "lat": 51.12166990000001, + "lng": 7.8947567, + "zoom": 14, + "place_id": "ChIJkW1EcX9TuUcR32j7vTHKvp0", + "name": "Oberer Kehlberg 6", + "street_number": "6", + "street_name": "Oberer Kehlberg", + "city": "Attendorn", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "57439", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/famtastisch-stiftung/", + "philea_info": { + "About": "We are a funding foundation which means that we support organisations in Germany and Europa who work on food systems tranformation in accordance with our mission and vision. Our key strenght is to provide uncomplicated support grants, capacity building, sparring, co-funding, and more) and to focus on systemic funding (i.e. unrestricted).", + "Mission": "We are driving change towards a fair, balanced and resilient food system resilient food system by bringing encouraging solutions to growth, so that current and future generations generations have a fairer future.", + "Geographic Focus": "Germany and Europe with a focus on the EU-level", + "Programme Areas": "Food, Agriculture & Nutrition. We provide grants in the fields of a) production of food, and b) consumption of food." + }, + "tags_focus": [ + "Food, Agriculture & Nutrition" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "European Union", + "Germany" + ] + } + }, + { + "id": 22469, + "name": "Wilde Ganzen Foundation", + "address": "Stationsplein 4, 3818 LE Amersfoort, Netherlands", + "country": "Netherlands", + "email": "info@wildeganzen.nl", + "website": "https://www.wildeganzen.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stationsplein 4, 3818 LE Amersfoort, Netherlands", + "lat": 52.1526612269682, + "lng": 5.376777648925781, + "zoom": 14, + "place_id": "ChIJQbg3Cx1ExkcRD4O9sCSuDQk", + "street_number": "4", + "street_name": "Stationsplein", + "city": "Amersfoort", + "state": "Utrecht", + "state_short": "UT", + "post_code": "3818 LE", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/wilde-ganzen-foundation/", + "philea_info": { + "About": "Wilde Ganzen is a front-runner in promoting and supporting locally-led development – we’ve been supporting local organisations directly for several decades. We work with around 450 private development initiatives in The Netherlands and in Belgium with projects in more than 50 countries. We are an expert in promoting global citizenship (https://www.wildeganzen.org/programs/global\u0002citizenship) as well as in providing trainings, coaching and networking on local resource mobilisation through the Change the Game Academy – an alliance of 19 local and national organisations in 17 countries (https://www.wildeganzen.org/programs/change-the\u0002game-academy). We are also an active supporter of the Shift the Power movement and we advance community philanthropy as a key strategy and driver of social change (https://www.wildeganzen.org/programs/giving-for-change). We are also a consistent partner of the EU DEAR programme that aims to raise awareness on the role of EU citizens in global development (https://www.connectforglobalchange.eu/).", + "Mission": "Wilde Ganzen is a Dutch Foundation, founded in 1957 with a mission to reduce poverty and inequality through community-led initiatives. We support community-based organisations in the Global South and their Dutch fundraising partners in joint efforts to achieve a better future because we believe that communities should have control over their own development.", + "Geographic Focus": "Tanzania, Kenya, Ethiopia, Uganda, South Africa, India, Burkina Faso, Malawi, Ghana, Cambodia, Nepal, Gambia, Sri Lanka, Indonesia, Andes (Colombia, Peru, Bolivia)" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Burkina Faso", + "Ethiopia", + "Gambia", + "Ghana", + "Kenya", + "Malawi", + "South Africa", + "Tanzania", + "Uganda" + ], + "Asia & Pacific": [ + "Cambodia", + "India", + "Indonesia", + "Nepal", + "Sri Lanka" + ], + "Latin America & Caribbean": [ + "Bolivia", + "Colombia", + "Peru" + ] + } + }, + { + "id": 22468, + "name": "Fundación Vertex Bioenergy", + "address": "Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid", + "country": "Spain", + "email": "", + "website": "https://www.fundacionvertexbioenergy.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid", + "lat": 40.4417766, + "lng": -3.7868106, + "zoom": 14, + "place_id": "ChIJ__-vYVKGQQ0RhN01Pl6ZWFw", + "street_number": "19", + "street_name": "Avenida de Europa", + "street_name_short": "Av. de Europa", + "city": "Pozuelo de Alarcón", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28224", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-vertex-bioenergy/", + "philea_info": { + "About": "Promoting the 17 United Nations Sustainable Development Goals through investments and donations to projects run by foundations, NGOs and universities; promoting, encouraging and supporting the structuring and development of rural areas and communities; and promoting and caring for people at risk of exclusion for physical, economic or cultural reasons.", + "Mission": "Promoting the 17 United Nations Sustainable Development Goals through investments and donations to projects run by foundations, NGOs and universities; promoting, encouraging and supporting the structuring and development of rural areas and communities; and promoting and caring for people at risk of exclusion for physical, economic or cultural reasons.", + "Geographic Focus": "France and Spain", + "Programme Areas": "Help local communities. Main focus on: young talent, vulnerability, climate change (plant trees in areas proximity to our founder plants), etc." + }, + "tags_focus": [ + "Environment/Climate", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "France" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 22467, + "name": "Fundación TBA21", + "address": "Calle Amor de Dios, 1, Madrid, Spain", + "country": "Spain", + "email": "madrid@tba21.org", + "website": "https://tba21.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Calle Amor de Dios, 1, Madrid, Spain", + "lat": 40.41334930000001, + "lng": -3.6981334, + "zoom": 14, + "place_id": "ChIJewKr_oEoQg0RxBicjH9bnRo", + "name": "C. del Amor de Dios, 1", + "street_number": "1", + "street_name": "Calle del Amor de Dios", + "street_name_short": "C. del Amor de Dios", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28014", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-tba21/", + "philea_info": { + "About": "All activity at TBA21 is fundamentally driven by artists and the belief in art and culture as a carrier of social and environmental transformation, ultimately contributing to the creation of spaces for peace.", + "Mission": "To promote art as catalyst for positive change and as a means to address the needs of today’s world, with a vision of social and environmental justice based on collaboration with artists, curators, scientists, thinkers, activists, indigenous voices and scholars, to build a future based on peaceful coexistence, care and generosity", + "Geographic Focus": "Worldwide", + "Programme Areas": "Exhibition and public programs; research; digital platform; new artwork commissions; contemporary art collection management;\nadvocacy" + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 22466, + "name": "DOB Ecology", + "address": "IJsseldijk 1, Veessen, Netherlands", + "country": "Netherlands", + "email": "info@dobecology.nl", + "website": "https://dobecology.nl/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "IJsseldijk 1, Veessen, Netherlands", + "lat": 52.36253480000001, + "lng": 6.0737668, + "zoom": 14, + "place_id": "ChIJg07EdUfDx0cRUwJ6cw84_5M", + "name": "IJsseldijk 1", + "street_number": "1", + "street_name": "IJsseldijk", + "city": "Veessen", + "state": "Gelderland", + "state_short": "GE", + "post_code": "8194 LA", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/dob-ecology/", + "philea_info": { + "About": "To support partners and projects that protect and restore threatened ecosystems and biodiversity in a way that (re)builds the conditions for resilient livelihoods of local communities.", + "Mission": "To support partners and projects that protect and restore threatened ecosystems and biodiversity in a way that (re)builds the conditions for resilient livelihoods of local communities.", + "Geographic Focus": "Sub-Saharan Africa, South America", + "Programme Areas": "Nature conservation in Sub-Saharan Africa and South America, with a focus on forest and wetlands ecosystems and applied research." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Sub-Saharan Africa" + ], + "North America": [ + "United States" + ], + "Latin America & Caribbean": [ + "Latin America" + ] + } + }, + { + "id": 22435, + "name": "Dalyan Foundation", + "address": "Gutenbergstrasse 2, 8002 Zürich, Switzerland", + "country": "Switzerland", + "email": "", + "website": "http://www.dalyanfoundation.ch", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gutenbergstrasse 2, 8002 Zürich, Switzerland", + "lat": 47.3649605, + "lng": 8.531086199999999, + "zoom": 14, + "place_id": "Ei1HdXRlbmJlcmdzdHJhc3NlIDIsIDgwMDIgWsO8cmljaCwgU3dpdHplcmxhbmQiMBIuChQKEgmtPgL--AmQRxFgEMpvwdmLtBACKhQKEgnr9f9T-AmQRxGZH2W1fPJRRg", + "name": "Gutenbergstrasse 2", + "street_number": "2", + "street_name": "Gutenbergstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8002", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/dalyan-foundation/", + "philea_info": { + "About": "To enhance the personal and economic well being of women, adolescents and children from underprivileged backgrounds, and improve their prospects to move towards a life of dignity.", + "Mission": "To enhance the personal and economic well being of women, adolescents and children from underprivileged backgrounds, and improve their prospects to move towards a life of dignity.", + "Geographic Focus": "India and Türkiye", + "Programme Areas": "Economic empowerment of women, mentoring for youth and young adults, improving public education, organisational development. Key strength: as a founder-funded organisation we can support riskier projects and we can enter multiyear partnerships" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Asia & Pacific": [ + "India" + ], + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 22431, + "name": "Better Way Foundation", + "address": "Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz", + "country": "Liechtenstein", + "email": "hello@betterwayfound.org", + "website": "https://www.betterwayfound.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz", + "lat": 47.140606, + "lng": 9.521298, + "zoom": 17, + "place_id": "ChIJKRSZjWcxm0cRuxoXjh3PbSA", + "street_number": "5", + "street_name": "Aeulestrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/better-way-foundation/", + "philea_info": { + "About": "We partner with organisations leveraging solutions that are systemic (they target the root causes and underlying systemic drivers), collaborative (they promote participation of diverse stakeholders) and effectively address the problem.", + "Mission": "BWF’s mission is to foster social and environmental justice by empowering, advocating for and enabling gender-sensitive and community-centred interventions aimed at creating a more inclusive and sustainable world.", + "Geographic Focus": "The reach of BWF’s funding is present in more than 50 countries, with geographic coverage approximately split between Global North (41%) and Global South (45%) partners in 2024, with 14% directed to groups working worldwide.", + "Programme Areas": "BWF’s funding is currently structured along three major work streams: 1) Climate change mitigation, adaptation and climate justice, 2) Gender equality and women empowerment, 3) Education and civil rights." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Global South / Majority World": [ + "Global South" + ], + "Worldwide": [ + "Global", + "Worldwide" + ] + } + }, + { + "id": 21875, + "name": "Henry Smith Charity, The", + "address": "223 Pentonville Road, London, UK", + "country": "United Kingdom", + "email": "", + "website": "http://www.henrysmithcharity.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "223 Pentonville Road, London, UK", + "lat": 51.5311058, + "lng": -0.1177295, + "zoom": 14, + "place_id": "EiUyMjMgUGVudG9udmlsbGUgUmQsIExvbmRvbiBOMSA5SlksIFVLIjESLwoUChIJ311bUT8bdkgRKrgVcp1suFwQ3wEqFAoSCQdNeyhBG3ZIEcT_WQxy9qXB", + "name": "223 Pentonville Rd", + "street_number": "223", + "street_name": "Pentonville Road", + "street_name_short": "Pentonville Rd", + "city": "London", + "state": "England", + "post_code": "N1 9JY", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/henry-smith-charity-the/", + "philea_info": { + "About": "The Henry Smith Charity is an independent grant making trust. We aim to use our resources to help people and communities at a time of need and to bring about positive change. The Charity was founded in 1628 by Henry Smith, a businessman working in the City of London. Since then, we have honoured the spirit of Henry Smith’s will, working to combat disadvantage and meet the challenges and opportunities facing people in need throughout the UK. Today, The Henry Smith Charity is amongst the largest independent grant makers in the UK, distributing £46.4 million in 2023. Our grant holders are at the core of our mission and work. For us, achieving results depends on their work and, as a grant making trust, we can only be as effective as the organisations that we fund.", + "Mission": "Our resources empower people who are economically or socially excluded and support those in adversity to thrive. We work collaboratively to create lasting impact and advance long-term solutions to challenge economic and social disparities.", + "Programme Areas": "0-5 year olds – early intervention\n16-24 year olds – transitions to adulthood\nSafer futures – refugee and asylum seekers; victims of domestic abuse; people leaving prison" + }, + "tags_focus": [ + "Humanitarian & Disaster Relief", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 21874, + "name": "Community Foundation Ireland, The", + "address": "30 Merrion Square North, Dublin 2, Ireland", + "country": "Ireland", + "email": "", + "website": "https://www.communityfoundation.ie/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "30 Merrion Square North, Dublin 2, Ireland", + "lat": 53.3399796, + "lng": -6.2469008, + "zoom": 14, + "place_id": "ChIJhXzOupYOZ0gRLBxH_tehGxg", + "name": "30 Merrion Square N", + "street_number": "30", + "street_name": "Merrion Square North", + "street_name_short": "Merrion Square N", + "city": "Dublin 2", + "state": "County Dublin", + "state_short": "D", + "post_code": "D02 VE40", + "country": "Ireland", + "country_short": "IE" + }, + "link": "https://philea.eu/members/community-foundation-ireland-the/", + "philea_info": { + "About": "At Community Foundation Ireland we know philanthropy. We combine experience and insight to advise donors on strategic giving and manage donations to maximise its long-term impact for individuals, families, trusts and corporates. Our relationships across a network of 5,000 partners enable us to identify patterns, connections, and solutions that others can’t yet see. Our funding strategies drive change at a systemic and societal level, support inclusive communities, , accelerate change, empower generations, and address the challenge of climate change. Community Foundation Ireland and its donors are on a shared mission of equality for all in thriving communities. We have the knowledge, expertise and information to ensure effective and strategic giving in Ireland.", + "Mission": "Our mission is for an Ireland where everyone is equal and communities thrive. We empower people who want to make a difference through a model of strategic giving which is effective and delivers, for all.", + "Geographic Focus": "Ireland and Developing World", + "Programme Areas": "We take an inclusive holistic approach to delivering impact across four key areas, which reflect both long-standing and emerging challenges: — Sustainable Futures places Community Foundation Ireland as leaders on biodiversity and climate-action, working in partnership with communities as well as Government to address the biggest challenges of all. — We nurture Inclusive Communities where everyone is respected and has the opportunity to contribute and thrive. — We Empower Generations to ensure everyone is heard and respected irrespective of age. — Accelerating Change sees us working with change-makers to overcome systematic and societal barriers to equality and fairness." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Ireland" + ], + "Worldwide": [ + "World" + ], + "Global South / Majority World": [ + "Developing Countries" + ] + } + }, + { + "id": 21873, + "name": "Limelight Foundation", + "address": "P.O. Box 15652 1001 ND Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://limelight.foundation", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "P.O. Box 15652 1001 ND Amsterdam Netherlands", + "lat": 52.3675734, + "lng": 4.9041389, + "zoom": 14, + "place_id": "ChIJVXealLU_xkcRja_At0z9AGY", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/limelight-foundation/", + "philea_info": { + "About": "Limelight Foundation supports journalism and civil society organizations committed to a strong and free information ecosystem in the digital age.", + "Mission": "We support public interest journalism and organisations that ensure that technologies strengthen the information ecosystem.", + "Geographic Focus": "Council of Europe, prioritizing countries where press freedom is under threat and/or there is a lack of funding opportunities.", + "Programme Areas": "Public interest journalism, funding newsrooms, cross-border network, infrastructure and organizations working on the enabling environment. Technology and the information ecosystem, tech accountability organizations, expertise/skills organizations needed by the tech accountability org’s., and capacity building organizations focused on diversifying and strengthening the ecosystem (mainly via regranting)." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 21872, + "name": "Hempel Foundation", + "address": "Amaliegade 8, Copenhagen, Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.hempel.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Amaliegade 8, Copenhagen, Denmark", + "lat": 55.68221029999999, + "lng": 12.5919428, + "zoom": 14, + "place_id": "ChIJQ4_o8CJTUkYRJ-clvQyOk9Q", + "name": "Amaliegade 8", + "street_number": "8", + "street_name": "Amaliegade", + "city": "København", + "post_code": "1256", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/hempel-foundation/", + "philea_info": { + "About": "The Hempel Foundation is a commercial foundation and was established in 1948 and has until 2024 been the sole owner of the Hempel Group – a leading supplier of paint solutions worldwide. Today the Hempel Foundation is the majority owner of the Hempel Group.", + "Mission": "We strive to make a difference by empowering children to learn, making coating more efficient and sustainable, sustaining biodiversity and realising great initiatives that bring about positive change", + "Geographic Focus": "Denmark. Africa: Uganda, Rwanda, Zambia, Sierra Leone, Tanzania, Madagascar, Ethiopia. Asia: Indonesia, Nepal, Bangladesh. South America: Argentina, Brasil, Paraguay", + "Programme Areas": "Our main philanthropic focus and expertise are within education [K12 – foundational learning] for children in developing countries and biodiversity on land [Focus on tropical forest but also in Denmark]" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Ethiopia", + "Madagascar", + "Rwanda", + "Sierra Leone", + "Tanzania", + "Uganda", + "Zambia" + ], + "Asia & Pacific": [ + "Asia", + "Bangladesh", + "Indonesia", + "Nepal" + ], + "Latin America & Caribbean": [ + "Argentina", + "Latin America", + "Paraguay" + ], + "Europe (Nordic Region)": [ + "Denmark" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 21871, + "name": "Casa Ronald McDonald Italia ETS", + "address": "Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, Italy", + "country": "Italy", + "email": "", + "website": "http://www.fondazioneronald.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, Italy", + "lat": 45.40910329999999, + "lng": 9.150266199999999, + "zoom": 14, + "place_id": "ChIJZTd90W7DhkcR3ZRwmSUwJUI", + "name": "Via del Bosco Rinnovato, 6", + "street_number": "6", + "street_name": "Via del Bosco Rinnovato", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20057", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/casa-ronald-mcdonald-italia-ets/", + "philea_info": { + "About": "Casa Ronald McDonald Italia ETS is the Italian branch of Ronald McDonald House Charities (RMHC), an international non-profit organization that, since 1974 in the world and since 1999 in Italy, has offered hospitality, services and assistance to sick children and their families during the period of treatment away from home, at Italian pediatric hospitals of excellence. Through its programs – Case Ronald and Family Room – it not only allows access to excellent care, but supports families, allows them to be actively involved in the care of their children and promotes the implementation of the “Family Centered Care” care model, according to which having the family at their side is part of the care process. Ronald McDonald Houses are supportive accommodations born from the idea that nothing else should weigh on families who are dealing with the illness of a child. Staying in a Ronald McDonald House means giving parents the opportunity to communicate better with the medical team treating their child and to follow even the most complex treatment plans more carefully. The Ronald McDonald Family Rooms are welcoming spaces within the pediatric wards of hospitals, which give many families the opportunity to recharge and take a break while remaining close to their child during the treatment period. From 1999 to today, during its 25 years of activity in Italy, the Foundation has supported more than 54,000 children and families, offering over 290,000 overnight stays. Today, the Ronald McDonald Foundation for Childhood has 8 facilities between Case Ronald and Family Rooms, and collaborates with 7 partner hospitals, in 6 Italian cities.", + "Mission": "To provide programs and services that strengthen families, remove obstacles, and support a child’s journey through care.", + "Programme Areas": "Health,\nSocial/Human Services" + }, + "tags_focus": [ + "Health", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "International", + "World" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 21352, + "name": "Seedling Foundation", + "address": "Holbeinstrasse 22, Zürich, Switzerland", + "country": "Switzerland", + "email": "", + "website": "https://www.seedlingfoundation.ch/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Holbeinstrasse 22, Zürich, Switzerland", + "lat": 47.36403809999999, + "lng": 8.5495932, + "zoom": 14, + "place_id": "ChIJkQ5y9FKnmkcR1XFE1E0cLcw", + "name": "Holbeinstrasse 22", + "street_number": "22", + "street_name": "Holbeinstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8008", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/seedling-foundation/", + "philea_info": { + "About": "Seedling Foundation supports initiatives and organizations that develop and implement innovative solutions for climate protection. Our focus is on the food system (agro-food sector) which is the second largest contributor to global climate-damaging emissions following energy production", + "Mission": "Seedling Foundation supports initiatives and organizations that develop and implement innovative solutions for climate protection. Our focus is on the food system (agro-food sector) which is the second largest contributor to global climate-damaging emissions following energy production", + "Geographic Focus": "Switzerland, France, Italy, Germany, Portugal, Eastern Europe", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHealth" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "France", + "Germany", + "Switzerland" + ], + "Europe (Southern / Mediterranean)": [ + "Italy", + "Portugal" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ] + } + }, + { + "id": 21350, + "name": "The Nordic Culture Fund", + "address": "The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K Denmark", + "country": "Denmark", + "email": "kulturfonden@norden.org", + "website": "http://www.nordiskkulturfond.org/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K Denmark", + "lat": 55.6760968, + "lng": 12.5683371, + "zoom": 14, + "place_id": "ChIJIz2AXDxTUkYRuGeU5t1-3QQ", + "city": "Copenhagen", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/the-nordic-culture-fund/", + "philea_info": { + "About": "The Nordic Culture Fund was established by the Nordic Council through a separate agreement between the governments of the Nordic countries in 1966 and began its work in 1967.", + "Mission": "The aim of The Nordic Culture Fund is to promote the cultural cooperation between Denmark, Finland, Iceland, Norway, and Sweden, as well as the self governing areas the Faroe Islands, Greenland, and the Aland Islands. The Fund’s sphere of activities includes Nordic cultural cooperation in its entirety, both inside and outside the Nordic countries.", + "Geographic Focus": "Nordic Region but with a strategic focus on wider exchanges on a global level", + "Programme Areas": "At the Nordic Culture Fund, we work to set the direction for the cultural co-operation of the future. In a time of upheaval, when nations draw in to themselves, art and culture can act as a focal point that opens up, creates links and offers new perspectives – both towards ourselves and towards the world we live in. With our funding programmes, partnerships and cultural policy work, we therefore aim to bring arts and culture into new forms of dialogue, and provide a flexible frameworks for developing new collaborations and initiatives. The Nordic Culture Fund was established as an autonomous organisation shortly after the Second World War, with the aim of working internationally in the Nordic region and beyond. The Fund may therefore be regarded as a public player with independent funds, the distribution of which does not derive from directly politically-controlled decisions. This position is an important starting\u0002point for the Fund’s work. Since its inception in 1966, the Fund’s main mission has been to grant financial support. We are constantly learning more about artistic and cultural life, and the possibilities for practitioners to apply for support. In this way, we ensure that our support is both relevant and targeted. As a Fund, we are willing to take risks and often support the inception and development phases of new artistic and cultural initiatives and networks. Through our various programmes, we currently provide annual support to around 340 cultural projects that build on and develop international and Nordic co-operation. As a Nordic organisation, we are anchored in both the political system and in the field of performing arts and culture. We therefore have the opportunity to take an active role in facilitating new networks and acting as a link between different actors. For several years now, we have also worked to create new contexts for the development of cultural policy at Nordic level. We recognise that the role of art and culture in the welfare society has changed and that there is a need to rethink some of the institutional premises and concepts that have long functioned as the self-evident grammar of cultural policy in the Nordic countries. When, for example, we enter into partnerships across the boundaries of disciplines, interests and national borders, it is all about making visible, developing and disseminating knowledge of arts and culture so that more people can see and understand the vital role that the arts play in our society. Primary programme areas: Arts & Culture,\nCivil society, Voluntarism & Non-Profit Sector,\nHuman/Civil Rights,\nPolicy development" + }, + "tags_focus": [ + "Arts & Culture" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Nordic Region" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 21349, + "name": "Škoda Auto Endowment Fund", + "address": "ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, Czechia", + "country": "Czech Republic", + "email": "nadacnifond@skoda-auto.cz", + "website": "http://www.nfsa.cz", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, Czechia", + "lat": 50.426853, + "lng": 14.9218356, + "zoom": 16, + "place_id": "ChIJj__Bq7JVCUcRafZj7Fmtf3o", + "name": "tř. Václava Klementa 869", + "street_number": "869", + "street_name": "třída Václava Klementa", + "street_name_short": "tř. Václava Klementa", + "city": "Mladá Boleslav 1", + "state": "Středočeský kraj", + "post_code": "293 01", + "country": "Czechia", + "country_short": "CZ" + }, + "link": "https://philea.eu/members/skoda-auto-endowment-fund/", + "philea_info": { + "About": "To transform regions in which Škoda Auto operates into places where people live, work and do business well.", + "Mission": "To transform regions in which Škoda Auto operates into places where people live, work and do business well.", + "Geographic Focus": "Czech Republic (only regions where their founder has his production plants – in the Mladá Boleslav region, Rychnov region and Vrchlabí regions)", + "Programme Areas": "Community development, increase of neighborhood relations and decreasing social anonymity through creating and supporting community centers and places for leisure activities, culture.\nIncrease of quality of education though training of school principal and sharing best practice, and supporting young talents from\nsocially disadvantage environment. Supporting biodiversity and environmental education. Arts & Culture,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nHealth,\nRecreation, Sport & Well-being,\nSocial/Human Services,\nYouth/Children Development" + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Health", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Czech Republic" + ] + } + }, + { + "id": 21348, + "name": "Ramboll Foundation", + "address": "Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark", + "country": "Denmark", + "email": "info@rambollfonden.com", + "website": "http://www.rambollfonden.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark", + "lat": 55.62738719999999, + "lng": 12.5794091, + "zoom": 7, + "place_id": "ChIJr5-Hi7dUUkYRI0z6TWYsvsI", + "name": "Ramboll Head Office", + "street_number": "53", + "street_name": "Hannemanns Allé", + "city": "København", + "post_code": "2300", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/ramboll-foundation/", + "philea_info": { + "About": "To always be the best owner of Ramboll while enabling the foundation together with the company and its employees to address societal challenges, where the Ramboll expertise is relevant.", + "Mission": "To always be the best owner of Ramboll while enabling the foundation together with the company and its employees to address societal challenges, where the Ramboll expertise is relevant.", + "Geographic Focus": "Northern Europe, Southeast Asia, Australia, North America (where Ramboll is present)", + "Programme Areas": "Ownership with a purpose. Through our philanthropy and ownership of Ramboll to address societal challenges with the knowledge of engineering, design and society present in the organization. Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEnvironment/Climate,\nHumanitarian & Disaster Relief,\nSciences & Research,\nSocio-economic Development, Poverty" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate", + "Humanitarian & Disaster Relief", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Asia & Pacific": [ + "Asia", + "Australia" + ], + "Europe (Western / General)": [ + "Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 21347, + "name": "Fondation la France s'engage", + "address": "38 Rue de la Folie-Regnault, Paris, France", + "country": "France", + "email": "contact@fondationlafrancesengage.org", + "website": "http://www.fondationlafrancesengage.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "38 Rue de la Folie-Regnault, Paris, France", + "lat": 48.8587116, + "lng": 2.3874303, + "zoom": 14, + "place_id": "ChIJbYW78fRt5kcRxL6iBM85laE", + "name": "38 Rue de la Folie-Regnault", + "street_number": "38", + "street_name": "Rue de la Folie-Regnault", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75011", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-la-france-sengage-2/", + "philea_info": { + "About": "The Foundation’s aim is to promote the engagement of civil society in innovative, mutually beneficial initiatives serving the greatest number of beneficiaries. In this way, it fosters social cohesion around local services and sustainable territorial development in France. Each year, it identifies and rewards the most innovative projects in all areas of sustainable development. The projects are accelerated by the Foundation, which provides them with funding and support over a three-year period to enable them to scale up and spread.", + "Mission": "The Foundation’s aim is to promote the engagement of civil society in innovative, mutually beneficial initiatives serving the greatest number of beneficiaries. In this way, it fosters social cohesion around local services and sustainable territorial development in France. Each year, it identifies and rewards the most innovative projects in all areas of sustainable development. The projects are accelerated by the Foundation, which provides them with funding and support over a three-year period to enable them to scale up and spread.", + "Geographic Focus": "France (including oversea territories)", + "Programme Areas": "The major areas of expertise of La France s’engage are the following :\nSocial innovation – year after year we detect and select the best local social innovations in France when they are still at an early stage and help them to expand\nSocial impact – when integrated into the La France s’engage program we make sure that the grantees assess their social impact, strenghten their methodologies and reach out to an accrued number of beneficiaries in new territories while increasing the quality of their services and impact\nCapacity Building – La France s’engage provides unrestricted funding for a period of three years. This allows them to use funding exactly how they need it (whether on HR, technology, material, etc…) to develop their capacities. But beside funding the grantees enter a three-year program of capacity building by external suppliers and partners of La France s’engage addressing specifically the needs and wants of our grantees and help them strengthen their governance, legal aspects, social impact measurement, scale changing and many more targeted services to help them grow.\nCommunity network – entering the community of La France s’engage (248 actual and past grantees operating in different fields and regions) is a real asset for the new grantees. La France s’engage acts as a broker and accelerator fostering the peer-to\u0002peer networking, the gathering at events, the capitalization on specific topics, the funding through its networks of private and public donors and the facilitation with administrative stakeholders. We also intend the network of La France s’engage to be a happy and engaging one." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "France" + ] + } + }, + { + "id": 21346, + "name": "Kering Foundation", + "address": "Kering, 40 Rue de Sèvres, 75007 Paris, France", + "country": "France", + "email": "keringfoundation@kering.com", + "website": "http://www.keringfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Kering, 40 Rue de Sèvres, 75007 Paris, France", + "lat": 48.8493753, + "lng": 2.322048200000001, + "zoom": 14, + "place_id": "ChIJ2WJgKNNx5kcRKJ-0GozMdGU", + "name": "Kering", + "street_number": "40", + "street_name": "Rue de Sèvres", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75007", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/kering-foundation/", + "philea_info": { + "About": "Kering Foundation fights gender based violence and violence against children by funding local organizations that offer comprehensive and adapted support to women and children survivors of violence, by working to change behaviors and mentalities by engaging young people, and by creating safe and supportive workplaces for survivors, as well as by mobilizing other companies on this issue.", + "Mission": "Since 2008, the Kering Foundation has been combating gender-based violence, which affects all cultures and social classes. To maximize its impact, Kering Foundation works with a limited number of partners in six main countries: the United States, France, Italy, Mexico, the United Kingdom and Korea. On the occasion of its 15th anniversary, Kering Foundation announced its strengthened commitment and now extends its work to also focus on violence against children, in particular childhood sexual violence.", + "Geographic Focus": "France, Italy, United Kingdom, United States, Mexico, Korea", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nHealth,\nHuman/Civil Rights,\nYouth/Children Development" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Human/Civil Rights", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "France", + "United Kingdom" + ], + "North America": [ + "United States" + ], + "Latin America & Caribbean": [ + "Mexico" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ], + "Asia & Pacific": [ + "South Korea" + ] + } + }, + { + "id": 21345, + "name": "Jeremy Coller Foundation", + "address": "116 Park Street, London W1K 6AF, UK", + "country": "United Kingdom", + "email": "", + "website": "http://www.jeremycollerfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "116 Park Street, London W1K 6AF, UK", + "lat": 51.51337789999999, + "lng": -0.1556058, + "zoom": 14, + "place_id": "ChIJ6QZN4TIFdkgRkbtGcWYNg2Q", + "name": "116 Park St", + "street_number": "116", + "street_name": "Park Street", + "street_name_short": "Park St", + "city": "London", + "state": "England", + "post_code": "W1K 6AF", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/jeremy-coller-foundation/", + "philea_info": { + "About": "The Jeremy Coller Foundation seeks to create positive impact on globally critical issues through strategic action, collaboration, and knowledge-sharing.", + "Mission": "The Jeremy Coller Foundation seeks to create positive impact on globally critical issues through strategic action, collaboration, and knowledge-sharing.", + "Geographic Focus": "US, UK, Europe, Asia", + "Programme Areas": "Three key areas of focus: 1) Educating on Factory Farming 2) Supporting the Coller School of Management and 3) Supporting Education, Culture and Other Causes. Animal-Related,\nEducation,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHealth,\nSocial/Human Services" + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Health", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "United Kingdom" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 21344, + "name": "Fundación Mapfre", + "address": "Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ", + "country": "Spain", + "email": "", + "website": "http://www.fundacionmapfre.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ", + "lat": 40.4225631, + "lng": -3.6921871, + "zoom": 14, + "place_id": "ChIJD3h76EEpQg0RifCjWOgs4ag", + "street_number": "23", + "street_name": "Paseo de Recoletos", + "street_name_short": "P.º de Recoletos", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28004", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-mapfre/", + "philea_info": { + "About": "Fundación Mapfre, founded in 1975, is promoted by Mapfre Mutualidad de Seguros, one of Spain’s leading insurance companies and Mapfre Mutua Patronal de Accidentes de Trabajo (Worker’s Compensation Mutual). It was officially recognised as a private cultural foundation by the Ministry of Education and Science in 1976.", + "Mission": "To contribute to improving people’s quality of life and the progress of society through multinational programs and activities.", + "Geographic Focus": "International, with programmes and activities in 30 countries (mainly located in Europe and America).", + "Programme Areas": "Arts & Culture,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nRoad Safety, Health and Prevention,\nRecreation, Sport & Well-being,\nSciences & Research,\nSocio-economic Development, Poverty,\nYouth/Children Development,\nInsurance and Social Protection" + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 20891, + "name": "Wildlife Conservation Society EU", + "address": "Wildlife Conservation Society EU Boulevard Louis Schmidt 64 1040 Brussels Belgium", + "country": "Belgium", + "email": "", + "website": "https://brussels.wcs.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Boulevard Louis Schmidt 64, 1040 Etterbeek, Brussels, Belgium", + "lat": 50.8297338, + "lng": 4.4023405, + "zoom": 14, + "place_id": "ChIJ22ZKe7TEw0cRVL69dfxF_jc", + "name": "Bd Louis Schmidt 64", + "street_number": "64", + "street_name": "Boulevard Louis Schmidt", + "street_name_short": "Bd Louis Schmidt", + "city": "Etterbeek", + "state": "Bruxelles", + "post_code": "1040", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/wildlife-conservation-society-eu/", + "philea_info": { + "About": "WCS EU was established to engage with EU institutions, European governments and organisations, in support of global conservation. WCS EU aims to influence EU policy and funding initiatives and develop partnerships for conservation impact. It draws upon WCS’s global field and scientific expertise to articulate scientifically-based policy positions and facilitate the development and implementation of conservation projects. WCS is present in over 60 countries and has experience helping to establish, expand or manage over 550 protected areas. It applies biological knowledge, scientific expertise and cultural understanding to ensure that wild places and wildlife thrive alongside local communities.", + "Mission": "The mission of WCS EU is to save wildlife and wild places worldwide through science, conservation action, education, and inspiring people to value nature. The following objectives are taken from our official statutes: 4.1.1 Saving wildlife and wild places worldwide through science, conservation action, education, and inspiring people to value nature. 4.1.2 Protecting and conserving of the natural environment, its flora and fauna including by undertaking innovative approaches thereto. 4.1.3 Educating and instructing the public.", + "Geographic Focus": "Africa, Asia, Latin America and the Caribbean, and the Pacific", + "Programme Areas": "WCS EU is working to influence EU policy and funding initiatives that impact biodiversity conservation in the global south. Major areas of interest include: protected areas, tackling deforestation and forest degradation, wildlife trade and trafficking, implementing One Health initiatives, marine and ocean conservation, biodiversity finance and integrating wildlife protection into EU development aid programmes. WCS EU is involved in a number of projects funded through public grants related to the conservation or sustainable use of biodiversity, including the EU-funded Sustainable Wildlife Management programme (SWM), the EU-funded Niassa special reserve project, and the UK government-funded Forest Governance, Markets and Climate (FGMC) programme." + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Caribbean", + "Latin America" + ], + "Asia & Pacific": [ + "Asia", + "Pacific" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 20754, + "name": "Global Greengrants Fund UK", + "address": "Global Greengrants Fund UK WeWork - Office Space & Coworking, City Road, London, UK", + "country": "United Kingdom", + "email": "info@globalgreengrants.org.uk", + "website": "https://www.greengrants.org/who-we-are/global-greengrants-fund-uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Global Greengrants Fund UK WeWork - Office Space & Coworking, City Road, London, UK", + "lat": 51.5278912, + "lng": -0.0882804, + "zoom": 14, + "place_id": "ChIJ1bq4GBYddkgR45V6NnYZ7jY", + "street_number": "145", + "street_name": "City Road", + "street_name_short": "City Rd", + "city": "London", + "state": "England", + "post_code": "EC1V 1AZ", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/global-greengrants-fund-uk/", + "philea_info": { + "About": "Global Greengrants Fund UK (charity number 1151527) believes solutions to environmental harm and social injustice come from people whose lives are most impacted. Every day, our global network of people on the frontlines and donors comes together to support communities to protect their ways of life and our planet. Because when local people have a say in the health of their food, water, and resources, they are forces for change. Global Greengrants Fund UK is the European sister organisation of Global Greengrants Fund. Founded in 2012 and staffed since 2015, Global Greengrants Fund UK provides those in the United Kingdom and Europe with the opportunity to invest in local change, spearheaded by the same expert advisors that are a hallmark of Global Greengrants. The organisation is an intermediary funder and does not have an endowment or any other source of income beyond what it raises from other grant-making bodies and the general public.", + "Mission": "Global Greengrants Fund UK mobilises resources for communities worldwide to protect our shared planet and work toward a more equitable world.", + "Geographic Focus": "Global, but with particular focus on the Majority World (i.e. beyond Europe and North America)." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Health" + ], + "geo_locations": { + "Global South / Majority World": [ + "Majority World" + ], + "Worldwide": [ + "Global", + "World" + ], + "Europe (Western / General)": [ + "Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 20620, + "name": "ISTA Foundation", + "address": "Institute of Science and Technology Austria (ISTA), Am Campus, Klosterneuburg, Austria", + "country": "Austria", + "email": "foundation@ista.ac.at", + "website": "https://ista.ac.at/en/capital-campaign/the-ista-foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Institute of Science and Technology Austria (ISTA), Am Campus, Klosterneuburg, Austria", + "lat": 48.3095598, + "lng": 16.2595038, + "zoom": 14, + "place_id": "ChIJi8zP6iEMbUcRsygEZMiM3to", + "name": "Institute of Science and Technology Austria (ISTA)", + "street_number": "1", + "street_name": "Am Campus", + "city": "Klosterneuburg", + "state": "Niederösterreich", + "post_code": "3400", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/ista-foundation/", + "philea_info": { + "About": "The mission of our organization is to support research in the natural sciences, formal sciences and engineering sciences, as well as support of graduate and post-graduate education.", + "Mission": "The mission of our organization is to support research in the natural sciences, formal sciences and engineering sciences, as well as support of graduate and post-graduate education.", + "Geographic Focus": "Austria", + "Programme Areas": "Education,\nSciences & Research\nBasic research in the natural sciences, mathematics & computer science" + }, + "tags_focus": [ + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Austria" + ] + } + }, + { + "id": 20619, + "name": "Fondazione di Venezia", + "address": "Via Brenta Vecchia 08 Venice, Italy", + "country": "Italy", + "email": "segreteria@fondazionedivenezia.org", + "website": "http://www.fondazionedivenezia.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Brenta Vecchia 08 venice", + "lat": 45.4920122, + "lng": 12.2413301, + "zoom": 14, + "place_id": "Ei5WaWEgQnJlbnRhIFZlY2NoaWEsIDgsIDMwMTcxIFZlbmV6aWEgVkUsIEl0YWx5IjASLgoUChIJ1SUOvT-0fkcRSzcoNnTsZYwQCCoUChIJ5csiuz-0fkcR8cgOeVrbTSU", + "street_number": "8", + "street_name": "Via Brenta Vecchia", + "city": "Venezia", + "state": "Veneto", + "state_short": "VE", + "post_code": "30171", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-di-venezia/", + "philea_info": { + "About": "Established in 1992, Fondazione di Venezia originates from Cassa di Risparmio di Venezia, the oldest savings bank in Italy, dating back to 1822, which substantially contributed to the social and economic development of the city and its territory.", + "Mission": "The mission of the Foundation is the promotion of civil society and human capital, in the historical, social, economic and cultural dimension of Venice. In order to achieve this aim, the Foundation directs its institutional activities in Italy and abroad towards social utility and the promotion of economic development.", + "Geographic Focus": "Italy", + "Programme Areas": "Arts & Culture,\nCitizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nHuman/Civil Rights,\nSocial/Human Services,\nSocio-economic Development, Poverty,\nYouth/Children Development,\nOther (please specify):\nImmigrants" + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Human/Civil Rights", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 20618, + "name": "Fondazione CDP", + "address": "Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy", + "country": "Italy", + "email": "segreteria.fondazione@fondazionecdp.it", + "website": "https://www.cdp.it/sitointernet/it/fondazione.page", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy", + "lat": 41.90695119999999, + "lng": 12.4995912, + "zoom": 14, + "place_id": "ChIJo3v9wglhLxMRPUtWOuax73A", + "name": "Via Goito, 4", + "street_number": "4", + "street_name": "Via Goito", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00185", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cdp/", + "philea_info": { + "About": "• School – a priority theme with multiple facets, which require, in order o generate impact, to: achieve lower school drop-out rates, decrease university drop-out rates, increase support for disadvantaged students and improve the mental health of young people.\n• Art and Culture as vehicles for development – with the aim of evolving the call for Cultural Ecosystems to select initiatives that are sustainable in the long term, that are based on territorial networks participated in by the public administration and that create job opportunities and social rehabilitation.\n• Assistance and Research Sector – continue with the enabling of PNRR funds and focus on initiatives to increase the attractiveness of the sector and the retention of skills in the country", + "Mission": "Fondazione CDP pursues social, environmental, cultural and economic development objectives. It invests in the country’s strategic\nassets, with a particular focus on initiatives in favour of the younger generations and in support of human capital.", + "Geographic Focus": "Italy", + "Programme Areas": "Arts & Culture,\nEducation,\nEmployment/Workforce,\nHealth,\nHumanitarian & Disaster Relief,\nSciences & Research,\nSocial/Human Services,\nYouth/Children Development" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health", + "Humanitarian & Disaster Relief", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 20334, + "name": "European Forum Alpbach", + "address": "Mariahilfer Straße 47/1 1, Vienna, Austria", + "country": "Austria", + "email": "forum@alpbach.org", + "website": "http://www.alpbach.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Mariahilfer Straße 47/1 1, Vienna, Austria", + "lat": 48.19933379999999, + "lng": 16.3553679, + "zoom": 14, + "place_id": "EitNYXJpYWhpbGZlciBTdHIuIDQ3LzEgMSwgMTA2MCBXaWVuLCBBdXN0cmlhIh8aHQoWChQKEgk7TMYCjwdtRxEAmgsgWkEEBBIDMSAx", + "name": "Mariahilfer Str. 47/1 1", + "street_number": "47", + "street_name": "Mariahilfer Straße", + "street_name_short": "Mariahilfer Str.", + "city": "Wien", + "state": "Wien", + "post_code": "1060", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/european-forum-alpbach/", + "philea_info": { + "About": "The founder of the European Forum Alpbach Foundation is the European Forum Alpbach Association, which took place for the first time in August 1945 as one of the earliest international political and intellectual events in post-WWII Europe. Alpbach was created as an intellectual platform of discussion where Europe’s cultural, scientific and humanitarian heritage could be developed in a future-oriented way and where European integration could be promoted.", + "Mission": "The European Forum Alpbach (EFA) is a space and place for the emergence of reflection and action. It brings together young people from Europe and from all over the world with the most innovative minds from politics, business, civil society, culture, and science to drive ideas for a strong and democratic Europe. With this diverse, intergenerational, and interdisciplinary community, the Forum influences key actors throughout the European continent to facilitate their learning and decisions.", + "Geographic Focus": "Europe", + "Programme Areas": "Scholarships for students of all disciplines" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 20333, + "name": "European Network of Equality Bodies", + "address": "Place Victor Horta 40, Saint-Gilles, Belgium", + "country": "Belgium", + "email": "info@equineteurope.org", + "website": "http://www.equineteurope.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Place Victor Horta 40, Saint-Gilles, Belgium", + "lat": 50.8361342, + "lng": 4.3334527, + "zoom": 14, + "place_id": "ChIJpSVAGG3Ew0cRx_izmCdwvpE", + "name": "Pl. Victor Horta 40", + "street_number": "40", + "street_name": "Place Victor Horta", + "street_name_short": "Pl. Victor Horta", + "city": "Saint-Gilles", + "state": "Bruxelles", + "post_code": "1060", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/european-network-of-equality-bodies/", + "philea_info": { + "About": "Equinet is the European Network of Equality Bodies, a membership organisation of 47 National Equality Bodies. By strengthening and supporting National Equality Bodies, Equinet works towards achieving equality and ensuring nondiscrimination for everyone in Europe, in all aspects of their lives. Equality Bodies are public organisations that assist victims of discrimination. They monitor\nand report on discrimination issues and promote equality. They are legally required to do so in relation to one, some, or all of the grounds of discrimination covered by European Union law – gender, race and ethnicity, age, sexual orientation, religion or belief, and disability. Based on Equinet’s 2023-2026 Strategic Plan developed over the course of 2022 after an extensive evaluation and impact assessment, our main objectives are:\n• Strengthen and support Equality Bodies to achieve equality for all\n• Strengthen Equality Bodies as the cornerstones of national equality infrastructures\n• Support Equality Bodies through knowledge, capacity-building and skills sharing for the enforcement of their mandate Act as an expert voice of Equality Bodies in Europe on equality and nondiscrimination\n• Advance the equality agenda in Europe through strategic engagement and communication\n• Maintain Equinet’s position as a research and knowledge hub drawing on Equality Bodies’ experience of equality and non\u0002discrimination Maintain and improve Equinet’s capacity as a strong, resilient, and innovative Network\n• Ensure an enriching membership experience in Equinet, by tailoring activities and engaging all Members\n• Develop and sustain Equinet’s resources and accountability to better respond to Members’ needs", + "Mission": "Equinet promotes equality in Europe by supporting Equality Bodies to be independent and effective catalysts for more equal societies, and delivers its mission in a way that embodies and promotes its values.", + "Geographic Focus": "EU + accession and candidate countries + Norway + UK + Georgia + Moldova + Ukraine", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nHuman/Civil Rights" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Human/Civil Rights" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Georgia", + "Moldova", + "Ukraine" + ], + "Europe (Nordic Region)": [ + "Norway" + ], + "Europe (Western / General)": [ + "European Union", + "United Kingdom" + ] + } + }, + { + "id": 20331, + "name": "The Plastic Solutions Fund", + "address": "48th Street, New York, NY, USA", + "country": "United States", + "email": "", + "website": "https://plasticsolution.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "48th Street, New York, NY, USA", + "lat": 40.7484533, + "lng": -73.91574659999999, + "zoom": 14, + "place_id": "Ehg0OHRoIFN0LCBRdWVlbnMsIE5ZLCBVU0EiLiosChQKEgl78fjtHl_CiRHeaMoLqjVDDBIUChIJOwg_06VPwokRYv534QaPC8g", + "name": "48th Street", + "street_name": "48th Street", + "street_name_short": "48th St", + "state": "New York", + "state_short": "NY", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/the-plastic-solutions-fund/", + "philea_info": { + "About": "Our major areas of expertise are advocacy and movement building. Our distinguishing characteristic would be our practically unique philanthropic approach to ending plastic pollution. We focus on systemic change, we strongly believe a lasting and working solution for the crisis means turning off the plastics tap for good. We support production reductions, single-use-plastic phase out, economies of reuse, strong toxic chemical prohibitions and regulation, environmental justice for all people and animals affected throughout the plastics supply chain, among other lasting solutions for the problem.", + "Mission": "Reduce the impact of plastic pollution on ocean and terrestrial ecosystems and human health by helping achieve a world with a regenerative and distributive economy where the production and consumption of plastic products and packaging lie within planetary and social boundaries.", + "Geographic Focus": "Primarily, the US, Europe and Asia. We also fund strategic grants in Latin America and Africa.", + "Programme Areas": "The PSF centres its work in two groups of programme areas: Priority Initiative and Power Building. The first is related to subjects and opportunities we believe are in need of direct support from us (petrochemical development opposition, sachets prohibitions, economies of reuse). The second area is related to indirect support we give out to enhance the strength of allied organisations and movements, particularly Break Free From Plastic (BFFP), who we have supported practically since inception. Today there are no global discussions on plastic pollution where BFFP is not involved (to different degrees), and the PSF’s support is crucial to keep that going." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 20330, + "name": "Croatia for Children Foundation", + "address": "Park Stara Trešnjevka 4, Zagreb, Croatia", + "country": "Croatia", + "email": "info@zhzd.hr", + "website": "https://www.zhzd.hr/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Park Stara Trešnjevka 4, Zagreb, Croatia", + "lat": 45.7974746, + "lng": 15.9496377, + "zoom": 14, + "place_id": "ChIJBfeJYZXWZUcR8ZcqapkBkf0", + "name": "Park Stara Trešnjevka 4", + "street_number": "4", + "street_name": "Park Stara Trešnjevka", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/croatia-for-children-foundation/", + "philea_info": { + "About": "Promoting the well-being of children’s personal and property rights and strengthening families in situations of various social, health and educational needs of children. The purpose of the Foundation is achieved by giving grants in money and by supporting cultural, educational, sports, recreational and religious content, as well as giving others forms of support determined by the Foundation’s specific acts.", + "Mission": "Promoting the well-being of children’s personal and property rights and strengthening families in situations of various social, health and educational needs of children. The purpose of the Foundation is achieved by giving grants in money and by supporting cultural, educational, sports, recreational and religious content, as well as giving others forms of support determined by the Foundation’s specific acts.", + "Geographic Focus": "Croatia", + "Programme Areas": "Providing support to families with children who are in low-income financial condition, providing scholarships to pupils and students and announcing a public tender for financing projects of legal entities. Civil society, Voluntarism & Non-Profit Sector,\nHuman/Civil Rights,\nHumanitarian & Disaster Relief,\nSocio-economic Development, Poverty,\nYouth/Children Development" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Human/Civil Rights", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Croatia" + ] + } + }, + { + "id": 20328, + "name": "ChildInvest Foundation", + "address": "Ridlerstraße 55, Munich, Germany", + "country": "Germany", + "email": "info@child-invest-foundation.org", + "website": "http://www.child-invest-foundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ridlerstraße 55, Munich, Germany", + "lat": 48.1339139, + "lng": 11.5316548, + "zoom": 14, + "place_id": "ChIJ4enG2aXYnUcRDxxsSdtiAlQ", + "name": "Ridlerstraße 55", + "street_number": "55", + "street_name": "Ridlerstraße", + "city": "München", + "state": "Bayern", + "state_short": "BY", + "post_code": "80339", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/childinvest-foundation/", + "philea_info": { + "About": "The ChildInvest Foundation is the leading partner for all those who have been committed to a self-determined future for children and young people across generations. Effective and worldwide. The ChildInvest Foundation benefits of the huge network, know-how and expertise of SOS children’s villages worldwide as programmes and projects of SOS children’s villages are sponsored internationally and sustainably by the ChildInvest Foundation.", + "Mission": "We use our full potential for the goals of SOS Children’s Villages worldwide. In doing so, we are making a decisive difference in the lives of disadvantaged children and young people around the world.\nWith our many years of experience, we manage the foundation’s assets professionally and successfully. In close cooperation with our sponsors, we create tailor-made solutions for their philanthropic commitment.", + "Programme Areas": "Education,\nEmployment/Workforce,\nHumanitarian & Disaster Relief,\nYouth/Children Development" + }, + "tags_focus": [ + "Education", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "International", + "Worldwide" + ], + "Europe (Western / General)": [ + "Germany" + ] + } + }, + { + "id": 20259, + "name": "Schneider Electric Foundation", + "address": "Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, France", + "country": "France", + "email": "global-foundation@schneider-electric.com", + "website": "https://www.schneider-electric.com/en/about-us/sustainability/foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, France", + "lat": 48.89122709999999, + "lng": 2.1722213, + "zoom": 14, + "place_id": "ChIJHdYfInJj5kcRuX4C4i6Ddss", + "name": "Schneider Electric", + "street_number": "35", + "street_name": "Rue Joseph Monier", + "city": "Rueil-Malmaison", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "92500", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/schneider-electric-foundation/", + "philea_info": { + "About": "In a world where social and environmental challenges are more widespread and more urgent than ever, the Schneider Electric Foundation supports innovative and forward-looking initiatives to give as many people as possible the energy they need to succeed.\nIt is this pioneering spirit that the Schneider Electric Foundation is seeking to advance. We see our role as a catalyst for technological, social and entrepreneurial innovation helping to close the energy gap and striving for a more equitable energy transition around the world. Ever optimistic, the Schneider Electric Foundation’s aim is to help build a fairer, lower-carbon society to give future generations the keys to transform our world.", + "Mission": "In a world where social and environmental challenges are more widespread and more urgent than ever, the Schneider Electric Foundation supports innovative and forward-looking initiatives to give as many people as possible the energy they need to succeed.\nIt is this pioneering spirit that the Schneider Electric Foundation is seeking to advance. We see our role as a catalyst for technological, social and entrepreneurial innovation helping to close the energy gap and striving for a more equitable energy transition around the world. Ever optimistic, the Schneider Electric Foundation’s aim is to help build a fairer, lower-carbon society to give future generations the keys to transform our world.", + "Geographic Focus": "Global", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nHumanitarian & Disaster Relief,\nSocio-economic Development, Poverty,\nYouth/Children Development" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 20258, + "name": "GivingTuesday", + "address": "GivingTuesday, 165 Court Street, New York, US", + "country": "United States", + "email": "info@givingtuesday.org", + "website": "http://givingtuesday.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "GivingTuesday, 165 Court Street, New York", + "lat": 40.6886093, + "lng": -73.9926709, + "zoom": 14, + "place_id": "ChIJ5eJDuE9awokR7gYe3G91m7U", + "street_number": "165", + "street_name": "Court Street", + "street_name_short": "Court St", + "state": "New York", + "state_short": "NY", + "post_code": "11201", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/givingtuesday/", + "philea_info": { + "About": "Areas of expertise: global grassroots network development; grassroots/localization philanthropy; data and research on generosity; communications. The organization’s key strength has been the combined development of a 100+ strong country network mobilising millions of NGOs and citizens each year to invest their philanthropic time and efforts in leaving their community better than they find it, and having the data and research capabilities to observe, learn, understand, and improve giving ecosystems.", + "Mission": "GivingTuesday reimagines a world built upon shared humanity and generosity. Our global network collaborates year-round to inspire generosity around the world, with a common mission to build a world where generosity is part of everyday life.", + "Geographic Focus": "Global", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nHuman/Civil Rights,\nHumanitarian & Disaster Relief,\nYouth/Children Development" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Human/Civil Rights", + "Humanitarian & Disaster Relief", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 20257, + "name": "Learning Planet Institute", + "address": "Learning Planet Institute, Rue Charles V, Paris, France", + "country": "France", + "email": "team.communication@learningplanetinstitute.org", + "website": "https://www.learningplanetinstitute.org/en/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Learning Planet Institute, Rue Charles V, Paris, France", + "lat": 48.853082, + "lng": 2.3628393, + "zoom": 14, + "place_id": "ChIJqa2L8_5x5kcRntOBJ0fhHgs", + "name": "Learning Planet Institute", + "street_number": "8 bis", + "street_name": "Rue Charles V", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75004", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/learning-planet-institute/", + "philea_info": { + "About": "To achieve its goals, the Learning Planet Institute creates research and educational programmes based on interdisciplinarity, diversity and initiative. This relies on the synergies between its activities: R&D, Education, International Alliance, Transformation of Organisations and Digital Ecosystems.", + "Mission": "The Institute’s mission is to explore, research and share new ways of learning and cooperating in order to respond to the needs of the youth and the planet. By encouraging and disseminating a culture, methods and tools for empowerment, it transforms organisations. Ultimately, it leads communities and supports “Learning Planetizens” to take care of themselves, others and the planet.", + "Geographic Focus": "Global", + "Programme Areas": "Education,\nEnvironment/Climate,\nHealth,\nSciences & Research,\nYouth/Children Development" + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Health", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 20255, + "name": "ENAR Foundation", + "address": "ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium", + "country": "Belgium", + "email": "info@enarfoundation.eu", + "website": "http://enarfoundation.eu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium", + "lat": 50.8485433, + "lng": 4.3697963, + "zoom": 14, + "place_id": "ChIJq6p6QH3Dw0cR0bgFO6FsPbQ", + "street_number": "3", + "street_name": "Avenue des Arts", + "street_name_short": "Av. des Arts", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1210", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/enar-foundation/", + "philea_info": { + "About": "An organisation established by racialised individuals, for racialised communities and individuals alike. Empowering the communities we serve and ensuring they can be their own agents of change is at the heart of who we are and what we do.", + "Mission": "ENAR Foundation is the first pan-European anti-racist foundation, established by the pan-European anti-racist movement itself. We achieve this by facilitating access to funding for grassroots activists and non-profit organisations battling against racism and its effects on communities and individuals alike.", + "Geographic Focus": "Europe", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEmployment/Workforce,\nEnvironment/Climate,\nHuman/Civil Rights,\nPeace & Conflict Resolution,\nSocio-economic Development, Poverty" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate", + "Human/Civil Rights", + "Peace & Conflict Resolution", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 20254, + "name": "Fast Forward Foundation", + "address": "Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy", + "country": "Italy", + "email": "info@fffoundation.eu", + "website": "https://www.fffoundation.eu/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy", + "lat": 45.4734579, + "lng": 9.1502269, + "zoom": 14, + "place_id": "ChIJ5-LDyXHBhkcRWyJ4Vv0Labk", + "name": "Via Domenichino, 5", + "street_number": "5", + "street_name": "Via Domenichino", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20149", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fast-forward-foundation/", + "philea_info": { + "About": "The Foundation’s methodology involves research projects, workshops, pilot projects, awareness campaigns and advocacy activities. This innovative methodology, together with the Foundation’s integrated perspective on integrated welfare, are the distinguishing elements of the Foundation. The Foundation intends to contribute to the well-being of individuals and society as a whole by contributing to the development of more sustainable and inclusive welfare systems.", + "Mission": "To foster the sustainable and inclusive transformation of welfare systems for the protection of individuals and communities", + "Geographic Focus": "Europe, and in particular Italy, Poland, France, Spain, Portugal, Greece, Czech Republic, Slovakia, Croatia", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nEducation,\nEmployment/Workforce,\nHealth,\nSciences & Research,\nSocio-economic Development, Poverty" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Croatia", + "Czech Republic", + "Poland", + "Slovakia" + ], + "Europe (Southern / Mediterranean)": [ + "Greece", + "Italy", + "Portugal", + "Spain" + ], + "Europe (Western / General)": [ + "Europe", + "France" + ] + } + }, + { + "id": 20007, + "name": "TrygFonden", + "address": "Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark", + "country": "Denmark", + "email": "info@trygfonden.dk", + "website": "http://www.trygfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark", + "lat": 55.7751248, + "lng": 12.4944702, + "zoom": 14, + "place_id": "EjhMeW5nYnkgSG92ZWRnYWRlIDQsIDIuIFNhbCwgMjgwMCBLb25nZW5zIEx5bmdieSwgRGVubWFyayIiGiAKFgoUChIJF06CLkJOUkYR3k7-qC9tb_oSBjIuIFNhbA", + "street_number": "4", + "street_name": "Lyngby Hovedgade", + "city": "Kongens Lyngby", + "post_code": "2800", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/trygfonden/", + "philea_info": { + "About": "TrygFonden is a democratically led philanthropical organization with a member base of 1.5 mil. Danes. TrygFonden works strategically through our own programmes, partnerships and grants to create greater peace of mind in Denmark.", + "Mission": "TrygFonden’s mission is to contribute to everyone in Denmark being able to take responsibility for their own peace of mind and the peace of mind of others.", + "Geographic Focus": "Denmark", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nHealth,\nRecreation, Sport & Well-being,\nSciences & Research,\nSocial/Human Services,\nYouth/Children Development" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 20006, + "name": "Dioraphte Foundation", + "address": "Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG Dordrecht Netherlands", + "country": "Netherlands", + "email": "postbus@dioraphte.nl", + "website": "http://www.dioraphte.nl/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG Dordrecht Netherlands", + "lat": 51.81749250000001, + "lng": 4.666106399999999, + "zoom": 14, + "place_id": "ChIJkU_mmswuxEcRMxnRKINOMzk", + "street_number": "169", + "street_name": "Kuipershaven", + "city": "Dordrecht", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "3311 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/dioraphte-foundation/", + "philea_info": { + "About": "Support initiatives that have a significant impact on peoples’ lives.", + "Mission": "Support initiatives that have a significant impact on peoples’ lives.", + "Geographic Focus": "Both in the Netherlands and Africa (Ethiopia, Kenya, Malawi and Uganda, and and some projects in Sudan).", + "Programme Areas": "Arts & Culture,\nEducation,\nHuman/Civil Rights,\nSciences & Research,\nSocial/Human Services,\nSocio-economic Development, Poverty,\nYouth/Children Development,\nOther (please specify):\nNeglected Tropical Diseases" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Netherlands" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Ethiopia", + "Kenya", + "Malawi", + "Sudan", + "Uganda" + ] + } + }, + { + "id": 20005, + "name": "LEO Foundation", + "address": "Lautrupsgade 7, 2100 København, Denmark", + "country": "Denmark", + "email": "info@leo-foundation.org", + "website": "http://leo-foundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": false, + "link": "https://philea.eu/members/leo-foundation/", + "philea_info": { + "About": "The LEO Foundation supports research into skin and skin diseases. We are probably the World’s largest private funder of independent research within this field.", + "Mission": "The LEO Foundation supports research into skin and skin diseases. We are probably the World’s largest private funder of independent research within this field.", + "Geographic Focus": "Denmark and global", + "Programme Areas": "Education,\nHealth,\nSciences & Research" + }, + "tags_focus": [ + "Education", + "Health", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 20004, + "name": "Helvetas Swiss Intercooperation", + "address": "Helvetas Swiss Intercooperation Weinbergstr. 22a 8021 Zurich Switzerland", + "country": "Switzerland", + "email": "info@helvetas.org", + "website": "http://www.helvetas.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Helvetas Swiss Intercooperation, Weinbergstrasse 22a, Zürich, Switzerland", + "lat": 47.3786889, + "lng": 8.544779000000002, + "zoom": 14, + "place_id": "ChIJr5nzgaegmkcRFBVK87C2GJ8", + "name": "Helvetas Swiss Intercooperation (Hauptsitz)", + "street_number": "22a", + "street_name": "Weinbergstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8021", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/helvetas-swiss-intercooperation/", + "philea_info": { + "About": "Helvetas is committed to a just world in which all people determine the course of their lives in dignity and security, using environmental resources in a sustainable manner. Helvetas is an independent organization for development based in Switzerland with affiliated organizations in Germany and the United States. Helvetas supports poor and disadvantaged people and communities in almost 40 developing and transitional countries in Africa, Asia, Latin America and Eastern Europe.\nTogether with our partners, Helvetas tackles global challenges at various levels: with projects on the ground, with expert advice, and by advocating for conducive framework conditions benefiting the poor. This triple commitment is empowering people and transforming lives. Helvetas follows a multi-stakeholder approach by linking civil society actors, governments and the private sector.\nHelvetas is active in the following areas: water, food and climate, education, jobs and private sector development, governance, gender and social equity. Helvetas engages in emergency relief, reconstruction and rehabilitation. In addition to rural areas, Helvetas is increasingly involved in urban development and is focusing its work on young people.", + "Mission": "We support poor and disadvantaged people and communities in developing and transitional countries in their efforts to improve their living conditions.\nThrough development cooperation, we support people in improving their livelihoods themselves in a sustainable manner.\nWe promote equitable access to the resources and services necessary for life, and thus contribute to overcoming the root causes of poverty.\nWe uphold the protection and promotion of social, economic, political, environmental and cultural rights and responsibilities, and seek to ensure their practical implementation.\nWe support our partners in engaging in development policy issues.\nWe advocate for a coherent Swiss foreign and economic policy, responsive to the needs of people in developing and transition countries.\nWe accompany and support our partners on a long-term basis.", + "Geographic Focus": "Eastern Europe, Asia, Africa and Latin America", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHuman/Civil Rights,\nPeace & Conflict Resolution,\nSocio-economic Development, Poverty" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Human/Civil Rights", + "Peace & Conflict Resolution", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 20003, + "name": "Fondation Bernheim", + "address": "Fondation Bernheim rue des Bouchers, 53 1000 Brussels Belgium", + "country": "Belgium", + "email": "info@fondationbernheim.be", + "website": "http://www.fondationbernheim.be", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation Bernheim, Rue des Bouchers 53, 1000 Brussels, Belgium", + "lat": 50.8476462, + "lng": 4.3551247, + "zoom": 20, + "place_id": "ChIJ0fWLfn_Ew0cRyW5kghihGo4", + "name": "Fondation Bernheim", + "street_number": "53", + "street_name": "Rue des Bouchers", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/fondation-bernheim/", + "philea_info": { + "About": "Fondation Bernheim was created in 1974 by Emile Bernheim, who established L’Innovation department store in Brussels. He believed that the money earned during one’s professional life should go back to society, as that is where it came from. Emile Bernheim died in 1985. The foundation became operational in 1998.", + "Mission": "To support economic and social issues; education; culture and research; and peace.", + "Geographic Focus": "Belgium, Brussels Region", + "Programme Areas": "Education,\nSocio-economic Development, Poverty,\nYouth/Children Development" + }, + "tags_focus": [ + "Education", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Belgium" + ] + } + }, + { + "id": 20001, + "name": "Built by Nature", + "address": "Built by Nature Singel 542 1017AZ Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://builtbn.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Built by Nature, Singel 542, 1017 AZ Amsterdam, Netherlands", + "lat": 52.3665859, + "lng": 4.8921853, + "zoom": 14, + "place_id": "ChIJoy0K398JxkcR4vQ7fDg_usU", + "name": "Built by Nature", + "street_number": "542", + "street_name": "Singel", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1017 AZ", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/built-by-nature/", + "philea_info": { + "About": "Built by Nature is a network and grant-making fund dedicated to accelerating the timber building transformation in Europe. We support pioneering developers, architects and engineers, asset owners and managers, investors and insurers, city leaders, academics, researchers, non-profits and policymakers by connecting industry and city frontrunners, creating the networks and opportunities for sector-shaping coalitions, and knowledge sharing. We enable innovation and change by convening teams and funding solutions that highlight the innovation, city-scale projects and advocacy required, and amplify the success stories, case studies and knowledge generated by our networks.", + "Mission": "Built by Nature’s mission is to accelerate the use of sustainable and other biobased materials in the built environment", + "Geographic Focus": "We are currently growing our network across the European Union, the UK (United Kingdom), Switzerland, and Norway. We are constantly reviewing our strategy and will be looking to expand our scope in the future", + "Programme Areas": "Environment/Climate (Networks, Knowledge & Innovation, Demonstrations, Strategic Communications, Policy, and Grant making)" + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "European Union", + "Switzerland", + "United Kingdom" + ], + "Europe (Nordic Region)": [ + "Norway" + ] + } + }, + { + "id": 19999, + "name": "André Losch Fondation", + "address": "32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg", + "country": "Luxembourg", + "email": "", + "website": "https://www.loschfondation.lu/domaines-intervention/recherche-scientifique/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg", + "lat": 49.6119323, + "lng": 6.118839499999999, + "zoom": 13, + "place_id": "ChIJq5jGyNROlUcRDUrKS2jaj94", + "name": "32/34 Bd Grande-Duchesse Charlotte", + "street_number": "32/34", + "street_name": "Boulevard Grande-Duchesse Charlotte", + "street_name_short": "Bd Grande-Duchesse Charlotte", + "city": "Luxembourg", + "state": "Luxembourg", + "post_code": "1330", + "country": "Luxembourg", + "country_short": "LU" + }, + "link": "https://philea.eu/members/andre-losch-fondation/", + "philea_info": { + "About": "The André Losch Foundation provides independent and impartial support for projects dedicated to young people in the Grand Duchy, in the fields of education, social inclusion and health. Its aim is to contribute to the development of a fairer, more sustainable and cohesive society.\nThe Foundation believes in the importance of long-term collaboration with its partners in order to make the most of everyone’s skills and resources. Our aim is to support projects over the long term, to establish a complementary relationship and to move forward together. In this context, we favour long-term partnerships with a limited number of institutions. The relationship of trust that this creates makes it easier to monitor the actions supported and measure their final impact.", + "Mission": "Helping to create a fairer, more sustainable and inclusive society for young people in Luxembourg.", + "Geographic Focus": "Luxembourg", + "Programme Areas": "EDUCATION : fostering critical thinking and initiative through formal and non-formal education, on the themes of learning about science, sustainable development and global citizenship.\nSOCIAL INCLUSION : encouraging the socio-professional inclusion of vulnerable young people\nHEALTH : to bring relief to children and young people affected by illness or disability, and to their families, by making their daily lives easier, improving care and support, and providing moments of joy and relief." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Luxembourg" + ] + } + }, + { + "id": 19998, + "name": "Airbus Foundation", + "address": "2 Rond-Point Emile Dewoitine, 31700 Blagnac, France", + "country": "France", + "email": "", + "website": "https://www.airbus.com/en/sustainability/airbus-foundation", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "2 Rond-Point Emile Dewoitine, 31700 Blagnac, France", + "lat": 43.621905, + "lng": 1.3854504, + "zoom": 14, + "place_id": "ChIJSR5B1be6rhIRYg-1AuSxoLc", + "name": "2 Rdpt Emile Dewoitine", + "street_number": "2", + "street_name": "Rond-Point Emile Dewoitine", + "street_name_short": "Rdpt Emile Dewoitine", + "city": "Blagnac", + "state": "Occitanie", + "post_code": "31700", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/airbus-foundation/", + "philea_info": { + "About": "The Airbus Foundation provides access to Airbus’ unique portfolio of high-tech products, services and know-how to help address some of the world’s most pressing problems, contributing to sustainable solutions for a safe and united world. Humanitarian response, Youth development, Environment (climate change & nature conservation) focus.", + "Mission": "The Airbus Foundation provides access to Airbus’ unique portfolio of high-tech products, services and know-how to help address some of the world’s most pressing problems, contributing to sustainable solutions for a safe and united world. Humanitarian response, Youth development, Environment (climate change & nature conservation) focus.", + "Programme Areas": "Humanitarian Response (Helping the work of disaster relief and emergency responders through use of Airbus products, services and innovation.); Youth Development (Supporting those who inspire the next generation with digital STEM content, through the Airbus Foundation Discovery Space.) Environment (Expanding the Foundation’s scope to partner with NGOs using our products & services that are able to support their climate change mitigation and nature conservation actions.)" + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "France" + ], + "Worldwide": [ + "World" + ] + } + }, + { + "id": 19431, + "name": "Ashoka", + "address": "Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, VA United States", + "country": "", + "email": "", + "website": "http://www.ashoka.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, VA United States", + "lat": 38.8910142, + "lng": -77.0860842, + "zoom": 14, + "place_id": "EjIyMjAwIFdpbHNvbiBCbHZkIDEwMiAzMTMsIEFybGluZ3RvbiwgVkEgMjIyMDEsIFVTQSIjGiEKFgoUChIJB2wlOAy3t4kRtpoV6mrgiecSBzEwMiAzMTM", + "street_number": "2200", + "street_name": "Wilson Boulevard", + "street_name_short": "Wilson Blvd", + "city": "Arlington", + "state": "Virginia", + "state_short": "VA", + "post_code": "22201", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/ashoka/", + "philea_info": { + "About": "Ashoka was founded 1981 by Bill Drayton in the US. Subsequently, the Ashoka network has grown to support leading social entrepreneurs (Ashoka Fellows) in 70 countries, including 13 in Europe. All country offices are fully owned by Ashoka Global. Ashoka is a geographically decentralized and strategically integrated organization hiring only entrepreneurs as leaders.", + "Mission": "Ashoka builds and cultivates a community of Fellows, Young Changemakers, Changemaker Institutions, and beyond who see that the world now requires everyone to be a changemaker – a person that sees themselves as capable of creating large-scale, positive change. Together, amidst the exponential growth of a new inequality in changemaking at a worldwide scale, we mobilize (and accelerate) a movement to build an “Everyone a Changemaker” world where all people have the right and ability to co-lead solutions that transform their societies for the better.", + "Geographic Focus": "Global; 13 offices in Europe, Germany the largest.", + "Programme Areas": "Main programme areas:\nAnimal-Related,\nCitizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHealth,\nHuman/Civil Rights,\nHumanitarian & Disaster Relief,\nPeace & Conflict Resolution,\nRecreation, Sport & Well-being,\nSocial/Human Services,\nSocio-economic Development, Poverty,\nYouth/Children Development Our changemaker community consists of 4,000+ Fellows, 100+ Young Changemakers, 250+ change institutions, and 300+ partners across more than 95 countries. Together, we form a strong, diverse and vibrant ecosystem of change agents collaborating and co-leading to positively transform societies and cultures around the world. Ashoka has pioneered the field of social entrepreneurship, identifying and supporting the world’s leading social entrepreneurs since 1980. Social entrepreneurs are individuals with innovative solutions to society’s most pressing social, cultural, and environmental challenges. Social entrepreneurs are ambitious and persistent — tackling major issues and offering new ideas for systems-level change. They model changemaking behavior, and catalyze organizations and movements where everyone can be changemaker. Ashoka Fellows are social entrepreneurs that directly impact the lives of millions of people across the globe. They provide examples, ideas, and insights that can serve as a roadmap in the new “everyone a changemaker” world. By continuing to develop our expansive network of Fellows — providing financial, knowledge, and logistical support to more than 3,600 change leaders in 90+ countries — Ashoka works to share the wisdom of leading social entrepreneurs with a global audience. Ashoka social entrepreneurs serve as role models and provide the how-to’s that enable individuals, organizations, and whole societies to flourish in a world of rapid change. For more than 35 years, Ashoka has built and nurtured the largest network of leading social entrepreneurs in the world. After a rigorous selection process, they are introduced to a life-long fellowship, where every member is committed to championing new patterns of social good. We encourage Ashoka Fellows to take ownership of the network and we partner with them to co-create Ashoka’s vision of an Everyone a Changemaker world. Powered by Ashoka, Next Now identifies, supports and lifts up these examples, and the changemakers behind them. From a bird’s eye perspective, we see patterns and frontiers of innovation that show a way to a better future. We weave a community of innovators committed to building it, and share our findings and insights with the world. Next Now has started to identify these patterns in the following fields: The New Longevity, Gender, Planet & Climate, Tech & Humanity. Ashoka Changemakers is building a global movement where anyone, anywhere, can take action to solve a social problem in in their community. We work to build this movement by supporting social entrepreneurs, innovators, business leaders, policy makers, and activists who are changemaking, by delivering ground-breaking analysis, by accelerating entrepreneurship, and creating strong partnerships that will drive the movement forward." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Health", + "Human/Civil Rights", + "Humanitarian & Disaster Relief", + "Peace & Conflict Resolution", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 19430, + "name": "Fondation RAJA-Danièle Marcovici", + "address": "Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 95977 Roissy France", + "country": "", + "email": "fondation@raja.fr", + "website": "http://www.fondation-raja-marcovici.com/accueil.html", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 95977 Roissy France", + "lat": 49.00363, + "lng": 2.516978, + "zoom": 14, + "place_id": "ChIJA3Nv1oQV5kcRrYuF0xf2gzU", + "city": "Roissy-en-France", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "95700", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-raja-daniele-marcovici/", + "philea_info": { + "About": "The Foundation is the oldest foundation created in France in favor of women. We are active in France and around the world, and we finance actions committed to the fight against violence against women, access to education, empowerment and integration of women. For 18 years, we have been able to mobilize a budget of more than 15 million euros, under the presidency of Danièle Kapel-Marcovici, its President. Danièle Kapel-Marcovici is also the CEO of the RAJA Group, which is present in 19 European countries, with 26 subsidiaries.", + "Mission": "Conscious of the social and environmental role of the company, Danièle Kapel-Marcovici, President of the RAJA Group, created the RAJA-Danièle Marcovici Foundation in 2006. To promote the empowerment of women and improve their living conditions, the Foundation develops partnerships with associations working in France and abroad, provides financial support for projects and conducts awareness and information campaigns for its partners and the general public.", + "Geographic Focus": "40% in France, 60% in other countries worldwide", + "Programme Areas": "Women’s rights and gender equality" + }, + "tags_focus": [ + "Human/Civil Rights" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ], + "Europe (Western / General)": [ + "France" + ] + } + }, + { + "id": 19429, + "name": "Schöpflin Stiftung", + "address": "Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany", + "country": "", + "email": "kontakt@schoepflin-stiftung.de", + "website": "http://www.schoepflin-stiftung.de/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany", + "lat": 47.6352322, + "lng": 7.6800016, + "zoom": 14, + "place_id": "ChIJId3VtESwkUcR8DfHFU8WNUg", + "street_number": "2", + "street_name": "Industriestraße", + "city": "Lörrach", + "state": "Baden-Württemberg", + "state_short": "BW", + "post_code": "79541", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/schopflin-stiftung/", + "philea_info": { + "About": "The Schoepflin Foundation is an independent and non-profit foundation based in Lörrach, Germany. Besides running our own in-house projects and programs we also provide grants to external initiatives and organizations. In our in-house facilities in Lörrach, we use innovative solutions and formats to empower children and young people; we offer sociopolitical (thought) impetus; and we test out forms of participation. As a supra-regional funding foundation, we use social venture capital to facilitate experiments and ensure their dissemination in civil society.", + "Mission": "We invest in courageous people and bold ideas – for critical awareness, a vibrant democracy and a diverse society. Now and in the future.", + "Geographic Focus": "Europe, Germany", + "Programme Areas": "Our main expertise are in the fields of education, of addiction prevention, of culture and the arts, of democracy, of media and consumer protection. Our key methodological elements are social venture capital and capacity building." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ] + } + }, + { + "id": 19428, + "name": "Quäker-Hilfe Stiftung", + "address": "Quäker-Hilfe Stiftung Rosenstraße 2 32257 Bünde Germany", + "country": "", + "email": "", + "website": "https://www.quaeker-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Quäker-Hilfe Stiftung, Rosenstraße 2, 32257 Bünde, Germany", + "lat": 52.2082519, + "lng": 8.568406800000002, + "zoom": 14, + "place_id": "ChIJ31AA28JRqEcRjq81O0GBmXo", + "name": "Quäker-Hilfe Stiftung", + "street_number": "2", + "street_name": "Rosenstraße", + "city": "Bünde", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "32257", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/quaker-hilfe-stiftung/", + "philea_info": { + "About": "The Quaker Aid Foundation (QHS) is part of a worldwide network of Quaker philanthropies and organizations dedicated to social justice, world peace, and humanitarian aid. Today, QHS and its partners support projects in more than 20 countries. With different focal points, all projects aim to advance lasting peace and justice in the world.\nThe Quaker Aid Foundation is one of very few philanthropies that directly supports programs that are carried out or supported by Quaker organizations and Meetings. Supported projects and activities my contribute to the objectives of peace and justice.", + "Mission": "The Quaker Aid Foundation (QHS) is part of a worldwide network of Quaker philanthropies and organizations dedicated to social justice, world peace, and humanitarian aid. Today, QHS and its partners support projects in more than 20 countries. With different focal points, all projects aim to advance lasting peace and justice in the world.\nThe Quaker Aid Foundation is one of very few philanthropies that directly supports programs that are carried out or supported by Quaker organizations and Meetings. Supported projects and activities my contribute to the objectives of peace and justice.", + "Programme Areas": "1. Promoting an international spirit, tolerance in all areas of culture and the idea of international understanding. This purpose is realized through reconciliation and peace work, also between states or hostile groups, organizations or individuals.\n2. Promoting or caring for the politically, racially or religiously persecuted, for refugees, displaced persons, war victims, war survivors, war and physically disabled and blind persons, prisoners of war who are still abroad and returnees and by promoting old-age welfare. This purpose is pursued in particular abroad and in crisis areas.\n3. Promoting the welfare of prisoners and former prisoners. This purpose is pursued at home and abroad.\n4. Conducting public relations work, in order to raise awareness of the causes of poverty and need worldwide and to strengthen the social responsibility and willingness to help of citizens in the Federal Republic of Germany. In addition, a better understanding of the\nliving conditions of people, primarily in developing countries, international understanding and tolerance are promoted." + }, + "tags_focus": [ + "Arts & Culture", + "Humanitarian & Disaster Relief", + "Peace & Conflict Resolution", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "World", + "Worldwide" + ], + "Europe (Western / General)": [ + "Germany" + ] + } + }, + { + "id": 19427, + "name": "Interogo Foundation", + "address": "Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein", + "country": "", + "email": "contact@interogofoundation.com", + "website": "https://www.interogofoundation.com/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein", + "lat": 47.1364154, + "lng": 9.5137852, + "zoom": 14, + "place_id": "ChIJeUmgUGExm0cR0NhlTwn4z_o", + "street_number": "79", + "street_name": "Kirchstrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/interogo-foundation/", + "philea_info": { + "About": "Interogo Foundation focuses on governing the investment business and providing the financial reserves required to secure independence and longevity of the IKEA Concept. Interogo Foundation shall, through its investment business, secure a financial reserve for rainy days for when the IKEA Concept at some time in the future were to face very serious challenges.", + "Mission": "The purpose of Interogo Foundation is to secure the independence and the longevity of the IKEA Concept and the financial reserves needed to ensure this." + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "Liechtenstein" + ] + } + }, + { + "id": 19426, + "name": "Fondazione di Sardegna", + "address": "Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari Italy", + "country": "", + "email": "fondazione@fondazionedisardegna.it", + "website": "https://www.fondazionedisardegna.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari Italy", + "lat": 40.7246173, + "lng": 8.563093799999999, + "zoom": 14, + "place_id": "ChIJGfsi5fxj3BIRPIs5rQ61EwY", + "street_number": "7", + "street_name": "Via Carlo Alberto", + "city": "Sassari", + "state": "Sardegna", + "state_short": "SS", + "post_code": "07100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-di-sardegna-2/", + "philea_info": { + "About": "In pursuing its objectives, the Foundation directly supports infrastructure development and management, moreover they assist the production of services that could improve the quality of life of his community, the endogenous growth of the area in all its aspects and the settlement of both economic and social activities.", + "Mission": "Under the principles of self-organization and subsidiarity, the foundation promotes social and economic development of Sardinia by financing both third parties’ initiatives and its own initiatives and projects mainly within Sardinia’s geographical boundaries.", + "Geographic Focus": "Sardinia", + "Programme Areas": "The foundation supports initiatives in the following areas: • Scientific and technological research\n• Public health\n• Art and cultural heritage\n• Philanthropy, charity and volunteering" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 19425, + "name": "Fondation Salvia", + "address": "Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 Geneva 3 Switzerland", + "country": "", + "email": "", + "website": "", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 Geneva 3 Switzerland", + "lat": 46.2057902, + "lng": 6.143098999999999, + "zoom": 14, + "place_id": "ChIJJfuPPChljEcRiDAUJoXWCho", + "street_number": "1", + "street_name": "Place de Saint-Gervais", + "street_name_short": "Pl. de Saint-Gervais", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1201", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-salvia/", + "philea_info": { + "About": "", + "Mission": "To support the development of better protection for the global environment based on the study of nature using a holistic approach (scientific, systemic and qualitative); to support the education of young people from the same holistic perspective, with the aim of encouraging the full development of all the child’s and student’s capacities – intellectual, emotional and social – by promoting proven alternative teaching methods; to encourage studies on the phenomenon of consciousness and to support initiatives promoting the evolution of consciousness and a better understanding of personal and transpersonal psychology; to encourage improvements in the democratic organisation of society and in electoral and parliamentary systems that promote the common good, inter alia by promoting direct democracy and studying ways of improving the various electoral systems, and to support and promote the protection of animals, in particular but not exclusively with the aim of combating cruelty to animals that may result from various practices, experiments and/or manipulations likely to cause suffering.", + "Geographic Focus": "Switzerland and Europe, including European neighbourhoods", + "Programme Areas": "Animal-Related\nCitizenship, Social Justice & Public Affairs\nCivil society, Voluntarism & Non-Profit Sector\nEducation\nEnvironment/Climate\nFood, Agriculture & Nutrition\nHuman/Civil Rights\nSciences & Research\nSocial/Human Services\nYouth/Children Development" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Switzerland" + ] + } + }, + { + "id": 19064, + "name": "The Partnering Initiative", + "address": "The Partnering Initiative 21B Park End Steet OX1 1HU Oxford United Kingdom", + "country": "United Kingdom", + "email": "info@tpiglobal.org", + "website": "https://tpiglobal.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "The Partnering Initiative, 21B Park End Street, Oxford OX1 1HU, United Kingdom", + "lat": 51.75251379999999, + "lng": -1.2685284, + "zoom": 14, + "place_id": "ChIJ95fJfE7BdkgR1A3osMbUerY", + "name": "The Partnering Initiative", + "street_number": "21B", + "street_name": "Park End Street", + "street_name_short": "Park End St", + "city": "Oxford", + "state": "England", + "post_code": "OX1 1HU", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/the-partnering-initiative/", + "philea_info": { + "About": "The Partnering Initiative (TPI) was initiated in 2003 with the passionate belief that only through systematic, effective collaboration among business, government, NGOs, the UN, foundations and others can the world achieve a collective, all-of-society vision of thriving societies underpinned by a prosperous economy and a healthy environment.", + "Mission": "Our mission is to unleash the power of partnership by systematising and professionalising the practice of collaboration and building the capabilities and supportive infrastructure that allow partnering to thrive.", + "Programme Areas": "Through our programmes of action research, we systematise the essential processes of partnering and develop reference standards and practical tools to help all sectors identify new opportunities, learn how to collaborate and implement effective partnerships. Our training and capacity-building programmes promote new standards of professional partnering practice and build the skills of practitioners around the world. The strategic advice and support we provide to leading international companies, development agencies, foundations, governments, and international NGOs helps them rethink and adjust their approaches to become ‘fit for partnering’ and fully harness the power of partnership to support their missions. The services we provide directly to partnerships help a wide range of collaborations to transform into strong, efficient and highly effective mechanisms that are yielding benefits well beyond their original objectives." + }, + "tags_focus": [ + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "Worldwide": [ + "World" + ] + } + }, + { + "id": 19063, + "name": "Lloyd’s Register Foundation", + "address": "Lloyd’s Register Foundation 71 Fenchurch Street EC3M 4BS London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.lrfoundation.org.uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lloyd's Register Foundation, 71 Fenchurch Street, London EC3M 4BS, United Kingdom", + "lat": 51.51243349999999, + "lng": -0.07900689999999998, + "zoom": 14, + "place_id": "ChIJnepqXKgDdkgRqbSHjgmq5PE", + "name": "Lloyd's Register Foundation", + "street_number": "71", + "street_name": "Fenchurch Street", + "street_name_short": "Fenchurch St", + "city": "London", + "state": "England", + "post_code": "EC3M 4BS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/lloyds-register-foundation/", + "philea_info": { + "About": "Lloyd’s Register Foundation is an independent global charity with a unique structure and an important mission: engineering a safer world.* We reduce risk and enhance the safety of the critical infrastructure that modern society relies upon in areas such as energy, transport and food. We do this by supporting high quality research, accelerating technology to application and through education and public outreach.* Our unique structure comes from the fact that we own a significant trading company, Lloyd’s Register Group (LRG). We share the same mission and work together to make the world a safer place.", + "Mission": "The foundation aims to secure for the benefit of the community high technical standards of design, manufacture, construction, maintenance, operation and performance for the purpose of enhancing the safety of life and property at sea and on land and in the air.\nThe foundation also pursue the advancement of public education including within the transportation industries and any other engineering and technological disciplines The Foundation’s purpose is to provide public benefit in the following specific areas, which are listed in its Articles of Association:* (a) to secure for the benefit of the community high technical standards of design, manufacture, construction, maintenance, operation and performance, for the purpose of enhancing the safety of life and property at sea and on land and in the air; or* (b) the advancement of public education including within the transportation industries and any other engineering and technological disciplines.", + "Geographic Focus": "Global", + "Programme Areas": "Safety, Ocean Economy, Maritime and Infrastructure" + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 19062, + "name": "Africa-Europe Foundation", + "address": "Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels Belgium", + "country": "Belgium", + "email": "", + "website": "https://www.africaeuropefoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels Belgium", + "lat": 50.8476424, + "lng": 4.3571696, + "zoom": 14, + "place_id": "ChIJZ2jHc-2kw0cRpwJzeGY6i8E", + "city": "Brussels", + "state": "Brussels", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/africa-europe-foundation/", + "philea_info": { + "About": "The Foundation’s aim is to become the platform of platforms for the future of the Africa-Europe Partnership. The Africa-Europe Foundation’s ambition is to become a network of networks to catalyse partnership between the two continents. Our purpose is to bring together new voices, fresh thinking, and to reinvigorate the partnership though our growing network of like-minded stakeholder and partners.", + "Mission": "The purpose of the Africa-Europe Foundation is to facilitate multi-stakeholder dialogue, catalyse partnerships and unlock new opportunities that can transform Africa-Europe relations into action.", + "Geographic Focus": "Africa and Europe", + "Programme Areas": "Education,\nEmployment/Workforce\nEnvironment/Climate\nFood, Agriculture & Nutrition\nHealth\nPeace & Conflict Resolution\nSciences & Research\nYouth/Children Development\nDigital Transformation, and Migration and Mobility" + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Health", + "Peace & Conflict Resolution", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 19061, + "name": "Fondazione Cassa di Risparmio di Foligno", + "address": "Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 Fologno Italy", + "country": "Italy", + "email": "info@fondazionecarifol.it", + "website": "https://www.fondazionecarifol.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 Fologno Italy", + "lat": 42.9547732, + "lng": 12.7051368, + "zoom": 8, + "place_id": "ChIJT8G4q9uFLhMRdNVFwIORbzU", + "street_number": "36", + "street_name": "Corso Camillo Benso Conte di Cavour", + "city": "Foligno", + "state": "Umbria", + "state_short": "PG", + "post_code": "06034", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-foligno/", + "philea_info": { + "About": "Nonprofit activities for the purpose of economic development and social benefit.", + "Mission": "Nonprofit activities for the purpose of economic development and social benefit.", + "Geographic Focus": "Italy and Europe", + "Programme Areas": "Arts & Culture\nCivil society, Voluntarism & Non-Profit Sector\nEducation\nFood, Agriculture & Nutrition\nYouth/Children Development" + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Food, Agriculture & Nutrition", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 18539, + "name": "Aidsfonds", + "address": "Aids Fonds Condensatorweg 54 1014 AX Amsterdam Netherlands", + "country": "", + "email": "", + "website": "https://aidsfonds.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Aidsfonds - Soa Aids Nederland, Condensatorweg 54, 1014 AX Amsterdam, Netherlands", + "lat": 52.38975629999999, + "lng": 4.8458377, + "zoom": 14, + "place_id": "ChIJzWIc8MIJxkcRp4cGS8EN6_U", + "name": "Aidsfonds - Soa Aids Nederland", + "street_number": "54", + "street_name": "Condensatorweg", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1014 AX", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/aidsfonds/", + "philea_info": { + "About": "Every day Aidsfonds works all over the world to end AIDS before 2030. Wherever we work, we know we must accelerate, focus and boost our efforts now in order to achieve this ultimate goal. We have the knowledge to end the epidemic. What is lacking is funding, awareness and political will to stop the epidemic in its tracks for good. For years, Aidsfonds has been playing a pioneering role in focusing the HIV/AIDS response on those population groups who are affected the most by the HIV epidemic due to stigma and discrimination. We make a stand against injustice. We tackle hurdles that others cannot attempt to overcome.\nWe put topics on the agenda that others will not discuss and we give support to people who others dare not support. We put communities first!", + "Mission": "We strive for a world where there are no longer any deaths from AIDS and where people enjoy good sexual health. A world in which everyone can love freely and without fear. We do this by working together with the people who are hit hardest by HIV, STIs, discrimination and exclusion. We strengthen their voice and support them with information, knowledge and funding. For all that is love.", + "Geographic Focus": "The Netherlands, Caribbean part of the Kingdom of the Netherlands, Africa, Eastern Europe and Central Asia", + "Programme Areas": "– Health\n– Human/Civil Rights\n– Socio-economic Development\n– Poverty\n– Youth/Children Development" + }, + "tags_focus": [ + "Health", + "Human/Civil Rights", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Netherlands" + ], + "Latin America & Caribbean": [ + "Caribbean" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ] + } + }, + { + "id": 18478, + "name": "The Center for Effective Philanthropy", + "address": "The Center for Effective Philanthropy 675 Massachusetts Avenue, Floor 7 MA 02139 Cambridge United States", + "country": "", + "email": "", + "website": "http://www.effectivephilanthropy.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "The Center for Effective Philanthropy 675 Massachusetts Avenue, Floor 7 MA 02139 Cambridge United States", + "lat": 42.3658993, + "lng": -71.1039725, + "zoom": 14, + "place_id": "ChIJfXD4ZlF344kRrJ7D5X296-A", + "street_number": "675", + "street_name": "Massachusetts Avenue", + "street_name_short": "Massachusetts Ave", + "city": "Cambridge", + "state": "Massachusetts", + "state_short": "MA", + "post_code": "02139", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/the-center-for-effective-philanthropy/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "North America": [ + "United States" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 18475, + "name": "Amref Health Africa ETS", + "address": "AMREF via Alberico II n. 4 00193 Roma Italy", + "country": "", + "email": "", + "website": "http://www.amref.it", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "AMREF via Alberico II n. 4 00193 Roma Italy", + "lat": 41.9053109, + "lng": 12.4617487, + "zoom": 14, + "place_id": "ChIJ1YGl4l1gLxMR04XZGI4kge4", + "street_number": "4", + "street_name": "Via Alberico II", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00193", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/amref-health-africa-ets/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 18474, + "name": "Villum Foundation", + "address": "Tobaksvejen 10 DK-2860 Søborg Denmark", + "country": "", + "email": "info@villumfonden.dk", + "website": "", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Tobaksvejen 10 DK-2860 Søborg Denmark", + "lat": 55.7406342, + "lng": 12.4804293, + "zoom": 14, + "place_id": "ChIJ-ynjlN1RUkYRMLr71Wn-j4Q", + "street_number": "10", + "street_name": "Tobaksvejen", + "city": "Søborg", + "post_code": "2860", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/villum-foundation/", + "philea_info": { + "About": "The VILLUM FOUNDATION is a non-profit foundation created by Villum Kann Rasmussen in 1971. The foundation is the principal shareholder of VKR Holding, the parent company of VELUX A/S and other companies in the VKR Group.", + "Mission": "Its mission is to bring daylight, fresh air and a better environment into people’s everyday lives.", + "Geographic Focus": "Denmark and other European countries", + "Programme Areas": "Technical and scientific research as well as environmental, social and cultural projects in Denmark and internationally." + }, + "tags_focus": [ + "Arts & Culture", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 18472, + "name": "Velliv Foreningen", + "address": "Lautrupvang 10 2750 Ballerup Denmark", + "country": "", + "email": "Direktion@vellivforeningen.dk", + "website": "https://www.vellivforeningen.dk/for-ansoegere/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lautrupvang 10 2750 Ballerup Denmark", + "lat": 55.7289135, + "lng": 12.3927329, + "zoom": 14, + "place_id": "ChIJF7wP_21QUkYRFS6MXAtNbKo", + "street_number": "10", + "street_name": "Lautrupvang", + "city": "Ballerup", + "post_code": "2750", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/velliv-foreningen/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 18471, + "name": "NILO Foundation", + "address": "26 St James's Square SW1Y 4JH London United Kingdom", + "country": "", + "email": "info@nilofoundation.org", + "website": "http://www.nilofoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "26 St James's Square SW1Y 4JH London United Kingdom", + "lat": 51.50669389999999, + "lng": -0.1344662, + "zoom": 14, + "place_id": "ChIJXUDS0NAEdkgRPVdkJHnC_ik", + "street_number": "26", + "street_name": "Saint James's Square", + "street_name_short": "St James's Square", + "city": "London", + "state": "England", + "post_code": "SW1Y 4JH", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/nilo-foundation/", + "philea_info": { + "About": "At NILO Foundation, we partner with charities worldwide that help to sustain humanity and planet, with a strong focus on developing inner potential, building community and transitioning towards a just and sustainable economy.", + "Mission": "At NILO Foundation, we partner with charities worldwide that help to sustain humanity and planet, with a strong focus on developing inner potential, building community and transitioning towards a just and sustainable economy. We draw upon two main traditions in philanthropy, which are systems change and venture philanthropy.", + "Programme Areas": "ACCOMPANYING AND TRUSTING PARTNERS\nWe look for social leaders that align with our mission and values and build close ties with them. In addition to evergreen funding, we accompany our partners throughout and provide strategic support in a range of areas, including networking opportunities and fundraising. This approach is designed to encourage them to tackle issues in a bold and innovative way, and to enhance their organisational development and impact. SUPPORTING SYSTEMS-CHANGE\nWe adopt a systemic view of a problem by conducting in-depth research and connecting with experts and people at the heart of it. We then build a portfolio of partners among frontline charities, advocacy groups and think tanks, with the aim of acting on different levers of the ecosystem. ENCOURAGING COLLABORATION\nOur high-level viewpoint as a funder working in different regions of the world gives us access to a rich ecosystem of philanthropic initiatives. We regularly exchange with peers to explore opportunities for co-learning and co-action, and we encourage our partners to convene regularly. LEARNING AND REFLECTING\nA core element of our approach is to experiment, reflect, and iterate. We aim to draw upon many traditions of philanthropy, thoughtfully using theories and schools of thought that feel most appropriate to the given context and issue, and regularly reviewing our posture and methods as a funder." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 18435, + "name": "Luminate", + "address": "Omidyar Network 1991 Broadway Street, Suite 200 CA 94063 Redwood City United States", + "country": "United States", + "email": "hello@luminategroup.com", + "website": "https://luminategroup.com/about", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Omidyar Network, 1991 Broadway # 200, Redwood City, CA 94063, United States", + "lat": 37.4863992, + "lng": -122.2259237, + "zoom": 14, + "place_id": "ChIJB25ooKyjj4ARhSlz72Tfib8", + "name": "Omidyar Network", + "street_number": "1991", + "street_name": "Broadway", + "city": "Redwood City", + "state": "California", + "state_short": "CA", + "post_code": "94063", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/luminate/", + "philea_info": { + "About": "Our mission is to ensure that everyone – especially those who are underrepresented – has the information, rights, and power to influence the decisions that affect their lives. Our work focuses on enabling people to fully participate in civic and political life, to safely challenge power, and to access accurate, trustworthy information. Across our work, we seek to ensure that technology works for and not against democracy.", + "Mission": "Our mission is to ensure that everyone – especially those who are underrepresented – has the information, rights, and power to influence the decisions that affect their lives. Our work focuses on enabling people to fully participate in civic and political life, to safely challenge power, and to access accurate, trustworthy information. Across our work, we seek to ensure that technology works for and not against democracy.", + "Programme Areas": "Citizenship, Social Justice & Public Affairs, Civil society, Voluntarism & Non-Profit Sector, Democracy, digital rights." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "North America": [ + "United States" + ] + } + }, + { + "id": 17761, + "name": "Swiss Philanthropy Foundation", + "address": "", + "country": "", + "email": "", + "website": "http://www.swissphilanthropy.ch/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Swiss Philanthropy Foundation Mael Steiner c/o wise - philanthropy advisers P.O. BOX 2124 1211 Geneva 1 Switzerland", + "lat": 46.2084926, + "lng": 6.1428645, + "zoom": 14, + "place_id": "ChIJI5dq4ddkjEcR_z3_-mSdQaA", + "street_number": "2", + "street_name": "Place de Cornavin", + "street_name_short": "Pl. de Cornavin", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1201", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/swiss-philanthropy-foundation/", + "philea_info": { + "About": "As an umbrella foundation (donor-advised fund), SwissPhilanthropy Foundation facilitates access to philanthropy by creating and managing philanthropic funds on behalf of private and institutional clients. It leads to a professionalisation of the philanthropic sector and greater impact.", + "Mission": "To pursue public-interest goals in Switzerland and abroad by encouraging the development of philanthropy and by supporting charitable organisations and programmes in the areas of:\n– humanitarian and social aids\n– medicine\n– education\n– research\n– environmental protection\n– sustainable development\n– culture and the arts", + "Geographic Focus": "Worldwide", + "Programme Areas": "Values:\n• Dynamism: the Foundation seeks to encourage and support dynamic giving. It asks donors who have set up funds to maintain regular philanthropic activity.\n• Coherency: through its network of partnerships with experts in the field, the Foundation proposes a comprehensive service which ensures the impact of donations.\n• Responsibility: the Foundation is responsible for the funds entrusted to it and undertakes to actively respect the donor’s initial intention. The financial management of the donor’s fund is assumed by the Foundation or by an external manager depending on the amount or the agreement between the parties.\n• Discretion: the Foundation offers donors a way of facilitating their commitment by promoting efficiency and ensures discretion. The Foundation offers 2 services to facilitate your philanthropy.\n• Sheltered funds: a simple and effective structure for donors\n• European network: donate in Europe as if you donate in Switzerland, donate in Switzerland from other European countries" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 17760, + "name": "Stiftelsen Brita Maria Renlunds minne sr", + "address": "", + "country": "", + "email": "", + "website": "http://www.bmr.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stiftelsen Brita Maria Renlunds minne sr Annegatan 12, 4 vån 00120 Helsinki Finland", + "lat": 60.16463510000001, + "lng": 24.9398198, + "zoom": 14, + "place_id": "EixBbm5hbmthdHUgMTIgNCB2w6VuLCAwMDEyMCBIZWxzaW5raSwgRmlubGFuZCIiGiAKFgoUChIJTWwcLMoLkkYRkL2E5qrN52cSBjQgdsOlbg", + "street_number": "12", + "street_name": "Annankatu", + "city": "Helsinki", + "city_short": "HKI", + "state": "Uusimaa", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/stiftelsen-brita-maria-renlunds-minne-sr/", + "philea_info": { + "About": "We support the health and well-being of children and young people.", + "Mission": "To support and develop care that promotes the well-being of children regardless of the nationality, religion or language of the guardians.\nTo promote early childhood pedagogy, school environments and well-being for children and young people, who receive their upbringing and education in Swedish.", + "Geographic Focus": "Finland, especially Swedish speaking minority", + "Programme Areas": "– Arts & Culture\n– Education\n– Health\n– Recreation\n– Sport & Well-being\n– Youth/Children Development" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland", + "Sweden" + ] + } + }, + { + "id": 17759, + "name": "Be for Education Foundation", + "address": "", + "country": "", + "email": "", + "website": "https://www.beforeducation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bolton Hope Foundation Via G.B. Pirelli 19 20124 Milan Italy", + "lat": 45.48368900000001, + "lng": 9.199039299999999, + "zoom": 14, + "place_id": "ChIJrY4HrM_GhkcRUe1V3QZbhUA", + "street_number": "19", + "street_name": "Via Giovanni Battista Pirelli", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20124", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/bolton-hope-foundation/", + "philea_info": { + "About": "The Be for Education Foundation promotes quality education and education for sustainable development and prevents early school leaving through a semi-functional and operating approach", + "Mission": "Promoting quality education and education for sustainable development, preventing early school leaving", + "Geographic Focus": "Italy", + "Programme Areas": "Education" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 17758, + "name": "Marius Jakulis Jason Foundation", + "address": "Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 Vilnius Lithuania", + "country": "Lithuania", + "email": "info@mjjfondas.lt", + "website": "https://mjjfondas.lt/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 Vilnius Lithuania", + "lat": 54.6991928, + "lng": 25.2524047, + "zoom": 19, + "place_id": "EitMaWVweW5vIGcuIDI1YS01YSwgMDgxMDggVmlsbml1cywgTGl0aHVhbmlhIh4aHAoWChQKEgmRXrIX-5PdRhFrciarVovwwxICNWE", + "street_number": "25a", + "street_name": "Liepyno gatvė", + "street_name_short": "Liepyno g.", + "city": "Vilnius", + "state": "Vilniaus apskritis", + "state_short": "Vilniaus apskr.", + "post_code": "08108", + "country": "Lithuania", + "country_short": "LT" + }, + "link": "https://philea.eu/members/marius-jakulis-jason-foundation/", + "philea_info": { + "About": "Help everyone to be successful by staying in Lithuania or coming in.\nTo do this, the foundation is giving support, mentoring, networking, financial support and for different profiles.", + "Mission": "Supports talented entrepreneurs, academics and students who want to and can contribute to the economic growth of Lithuania.", + "Geographic Focus": "Lithuania", + "Programme Areas": "– Education\n– Sciences & Research\n– Youth/Children development\n– Entrepreneurship" + }, + "tags_focus": [ + "Education", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Lithuania" + ] + } + }, + { + "id": 17756, + "name": "Moleskine Foundation", + "address": "", + "country": "", + "email": "info@moleskinefoundation.org", + "website": "https://moleskinefoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Moleskine Foundation Onlus, Via Bergognone, 34, 20144 Milan, Metropolitan City of Milan, Italy", + "lat": 45.4524972, + "lng": 9.164271500000002, + "zoom": 14, + "place_id": "ChIJJ8q9z9rDhkcRj84mpcEyto8", + "name": "Moleskine Foundation Onlus", + "street_number": "34", + "street_name": "Via Bergognone", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20144", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/moleskine-foundation/", + "philea_info": { + "About": "The Foundation operates as an independent self-governing organization, but thanks to our partnership with the Moleskine brand we are able to ensure 100% of the funds raised go directly to support our programs.\nIn our work we promote a new philanthropic model of operation: by considering both “what” we do and “how we do it” we want to liberate creativity, develop creative skills and support our communities to drive greater social impact beyond the traditional philanthropic approach. In particular, the Creativity Pioneers Fund (CPF) constitutes a unique opportunity to test and learn from a more progressive philanthropic approach based on trust, unrestricted funding, valorization of intersectionality, simple and inclusive paperwork both at the selection process and M&E, and a strong focus on building long-lasting networks and ecosystems.\nThe CPF consists in a micro-granting scheme that provides unrestricted and unearmarked funding: this allows to shift the decision-making power on the use of funds to the organization because they are best suited to determine how to effectively spend the funds received. Moreover, this model of unrestricted granting enables us to move away from project-based funding, and to support creative organizations in their identity and entirety, preserving their often hybrid and therefore peculiar nature.\nAccess to funding represents only a starting point for a larger collaboration system, towards a platform model where Moleskine Foundation and its partners act as ecosystem builders.", + "Mission": "Inspire a new generation of creative thinkers and doers to change themselves and their communities.\nWe believe in Creativity for Social Change, and our mission is to inspire youth worldwide to make a difference in their communities.\nWe support spaces where criticality and imagination can occur, so that novel solutions can be discovered for today’s challenges.", + "Geographic Focus": "Global (Europe, Africa, US, Canada, Mexico)", + "Programme Areas": "– Arts and Culture\n– Citizenship\n– Social Justice & Public Affairs\n– Education" + }, + "tags_focus": [ + "Arts & Culture", + "Education" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ], + "Europe (Western / General)": [ + "Europe" + ], + "North America": [ + "Canada", + "United States" + ], + "Latin America & Caribbean": [ + "Mexico" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 16610, + "name": "Stiftung Mercator Schweiz", + "address": "Stiftung Mercator Schweiz Gartenstrasse 33 8027 Zürich Switzerland", + "country": "Switzerland", + "email": "", + "website": "http://www.stiftung-mercator.ch", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stiftung Mercator Schweiz, Gartenstrasse, Zürich, Switzerland", + "lat": 47.3678088, + "lng": 8.532472, + "zoom": 14, + "place_id": "ChIJZfulegIKkEcRo4ONX65lX3o", + "name": "Stiftung Mercator Schweiz", + "street_number": "33", + "street_name": "Gartenstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8002", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/stiftung-mercator-schweiz/", + "philea_info": { + "About": "Based on a systemic and collaborative approach, we look for the most effective levers for societal transformation in our thematic ecosystems. We work with an iterative strategy model including “ongoing” Monitoring, Evaluation, Learning, Adaption and Sharing and want to contribute to solutions for ecological and societal problems as stimuli for societal change. For the implementation of our theories of change we work with four levers: empowerment of the individual, strengthening of civil society and it’s organizations, digitalization and art and culture.", + "Mission": "Sustainable society based on the principles of solidarity, equal opportunities and the possibility of active participation for all.", + "Geographic Focus": "Switzerland, Europe", + "Programme Areas": "DEMOCRACY – We support new ideas and promising initiatives (both analog and digital) for a sustainable and resilient democracy DIVERSITY – we focus on gender and cultural background. In the field of diversity, we aim to reduce structural discrimination due to origin and/or gender. CLIMATE AND BIODIVERSITY PROTECTION – sufficiency, nutrition systems. Regarding both climate and biodiversity, we support comprehensive/systemic solution approaches that are borne by decision-makers in the worlds of politics, public administration, science and business as well as by civil society, and that do justice to the urgency of the ecological challenges we face. DIGITALISATION & SOCIETY – digital self-determination, algorithmic systems, digital public sphere, digital participation. We empower people to handle their data in a self-determined way. We seek ways of promoting political solutions and data protection regulations that ensure the right to digital self-determination. We also work on solutions that enable companies and public authorities to take ethical and public welfare considerations into account when handling personal data." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Human/Civil Rights", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Switzerland" + ] + } + }, + { + "id": 13608, + "name": "The END Fund", + "address": "The END Fund 495 Green Lanes N13 4BS London United Kingdom", + "country": "United Kingdom", + "email": "info@end.org", + "website": "https://www.end.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "495 Green Lanes, London N13 4BS, United Kingdom", + "lat": 51.6230729, + "lng": -0.1051977, + "zoom": 14, + "place_id": "ChIJ5YfndjcZdkgRXTek7Bo7hIg", + "name": "495 Green Lanes", + "street_number": "495", + "street_name": "Green Lanes", + "city": "London", + "state": "England", + "post_code": "N13 4BS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/the-end-fund/", + "philea_info": { + "About": "The END Fund focuses on delivering neglected tropical disease (NTD) treatments to those in need by growing and engaging a community of activist-philanthropists, managing high-impact strategic investments, and working in collaboration with government, NGO, pharmaceutical, and academic partners. We aim to take a systems approach to understanding, engaging with, and influencing the broad ecosystem of stakeholders.", + "Mission": "The END Fund is the only private philanthropic initiative dedicated to ending the five most common neglected tropical diseases (NTDs) – a group of parasitic and bacterial infectious diseases, such as river blindness and intestinal worms. By engaging a community of activist-philanthropists and taking a systems approach, we are working in collaboration with governments, NGOs, pharmaceutical, and academic partners to end these diseases in our lifetime. Since our founding in 2012 through 2020, with our partners, the END Fund has provided over 1 billion treatments for NTDs worth more than $1.3 billion. In 2020 alone, we reached more than 91 million people with more than 133 million NTD treatments, which represents an almost 8-fold increase from 2012.", + "Geographic Focus": "26 countries, predominantly in Africa but also Afghanistan, India, Yemen and Guyana.", + "Programme Areas": "The END Fund efficiently puts private capital to work, advocating for NTD programs that are innovative, integrated and cost-effective. We facilitate\nstrong partnerships with the private sector, government partners, and local implementing partners to collaboratively support national disease programs. This is done through a proven implementation model that is tailored to meet the needs of individual countries. The NTDs we work on are: intestinal worms, Schistosomiasis, Onchoceriasis and Lymphatic Filariasis. We have also recently taken on some funding for Visceral Leishmaniasis programmes, following the FCDO cuts." + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Asia & Pacific": [ + "Afghanistan", + "India" + ], + "Latin America & Caribbean": [ + "Guyana" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Middle East & North Africa (MENA)": [ + "Yemen" + ] + } + }, + { + "id": 13606, + "name": "Anglo American Foundation", + "address": "Anglo American Foundation 17 Charterhouse Street EC1N 6RA London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "https://www.angloamericangroupfoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Anglo American PLC, 17 Charterhouse Street, London EC1N 6RA, United Kingdom", + "lat": 51.5184283, + "lng": -0.1063213, + "zoom": 14, + "place_id": "ChIJ7ycpArgbdkgRg_p5S-TCD0g", + "name": "Anglo American PLC", + "street_number": "17", + "street_name": "Charterhouse Street", + "street_name_short": "Charterhouse St", + "city": "London", + "state": "England", + "post_code": "EC1N 6RA", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/anglo-american-foundation/", + "philea_info": { + "About": "The Anglo American Group Foundation (AAF) was established in 2018/19 by merging the activities of the Anglo American Chairman’s Fund (a highly respected South Africa-based entity) and the Anglo American Group Foundation to form a single Group-level Foundation for Anglo American operating as a single entity with a common strategy and set of trustees. The operations in the UK are managed by Anglo American internally while the South African entity is managed by Tshikululu Social Investments. In July 2021 Anglo American committed to endowing AAF with a $100 million donation, significantly boosting the Foundation’s ability to support progress towards the UN Sustainable Development Goals. This donation presents an opportunity to redefine AAF’s strategy, including governance and operating model, to ensure it can deliver to an entirely new level – creating systemic impact at scale. Guided by Anglo American’s Purpose, AAF will become a strategic grant-maker focusing on long-term system-level change within three themes:\n• Clean water and energy: sustainable water resource management; access to (clean) energy / off-grid solutions\n• Skills and job creation for growth: development of relevant skills for current and future jobs (focus on youth); incubating innovative tech and supporting SMEs and entrepreneurs\n• Healthy living: access to primary health care; preventative health care", + "Mission": "The Foundation supports programmes that work to address the UN’s Sustainable Development Goals and that are aligned to Anglo American’s Purpose: Re-imagining mining to improve people’s lives\nMining has a smarter future – a future where you may barely notice some mines at all. And that’s a good thing. Out of sight, but never out of mind, tomorrow’s ultimate mine will long provide the precious raw materials our modern society needs. The Foundation is undertaking a strategic review with the intent to be more independent from the founding company. This will include developing the Foundation’s own vision and mission statement and Theory of Change", + "Geographic Focus": "Australia, Botswana, Brazil, Canada, Chile, China, India, Finland, Namibia, Peru, Singapore, South Africa, UK, Zimbabwe (plus future countries of operation of Anglo American)", + "Programme Areas": "Interconnected themes: Access to clean water and energy\nHealth and Wellbeing\nSkills and job creation\nWith cross-cutting themes – gender, youth, inclusivity, climate change resilience\nTypes of intervention approaches are expected to be employed to achieve such systems level change: i) enabling systems development, ii) capacity enhancement and skills development and iii) behavior change." + }, + "tags_focus": [ + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Botswana", + "Namibia", + "South Africa", + "Zimbabwe" + ], + "Asia & Pacific": [ + "Australia", + "China", + "India", + "Singapore" + ], + "Europe (Nordic Region)": [ + "Finland" + ], + "North America": [ + "Canada", + "United States" + ], + "Latin America & Caribbean": [ + "Brazil", + "Chile", + "Peru" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 12992, + "name": "Fidelity UK Foundation", + "address": "The Fidelity UK Foundation Beech Gate, Millfield Lane Lower Kingswood KT20 6RP Tadworth, Surrey United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "https://filfoundations.fidelityinternational.com/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Millfield Lane, Lower Kingswood, Tadworth, Surrey KT20 6RP, United Kingdom", + "lat": 51.2784529, + "lng": -0.2068448, + "zoom": 9, + "place_id": "EiNNaWxsZmllbGQgTG4sIFRhZHdvcnRoIEtUMjAgNlJQLCBVSyIuKiwKFAoSCTNXWI9B43VIESEh-XZ45Bx3EhQKEgn58JtuQuN1SBGMsxM1jCzF9g", + "name": "Millfield Lane", + "street_name": "Millfield Lane", + "street_name_short": "Millfield Ln", + "city": "Tadworth", + "state": "England", + "post_code": "KT20 6RP", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/fidelity-uk-foundation/", + "philea_info": { + "About": "The Foundation’s aim is to help strengthen the impact, effectiveness and/or sustainability of charitable organisations – enhancing their ability to achieve their mission and their objectives. As such, the Foundation has a focus on the capacity of charities, by which we mean the capability, knowledge and resources that charities need to be effective.", + "Mission": "The Fidelity UK Foundation helps build the capacity of charitable organisations active in the fields of: enabling disadvantaged children and young people to achieve their potential; health; and arts, culture and heritage.", + "Geographic Focus": "UK", + "Programme Areas": "The foundation’s charitable investments are primarily allocated to the following sectors: Enabling disadvantaged children and young people to achieve their potential\nHealth and wellbeing\nArts, culture and heritage" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 12935, + "name": "Central European University", + "address": "Central European University Quellenstraße 51 1100 Vienna Austria", + "country": "Austria", + "email": "", + "website": "http://www.ceu.edu", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Central European University, Quellenstraße 51, 1100 Vienna, Austria", + "lat": 48.17394590000001, + "lng": 16.3880969, + "zoom": 14, + "place_id": "ChIJWXRULX-pbUcRGlulmPW2N1A", + "name": "Central European University", + "street_number": "51", + "street_name": "Quellenstraße", + "city": "Wien", + "state": "Wien", + "post_code": "1100", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/central-european-university/", + "philea_info": { + "About": "Central European University is an institution of advanced research and teaching, dedicated to socially and morally responsible intellectual inquiry. Having launched a new undergraduate offer in 2020, CEU’s distinctive educational program builds on the research tradition of the great American universities; on the most valuable Central European intellectual traditions; on the international diversity of its faculty and students; on its commitment to social service; and on its own history of academic and policy achievements in transforming the closed communist inheritance. George Soros founded CEU after the fall of the iron curtain during a time of great optimism and hope for the future.\nCEU empowers students from around the world and challenge them to think critically and create new knowledge with the power to transform our world. Today, as societies are radically tested, we fulfill this purpose with urgency. With a global pandemic stoking fear and exclusion, our role to foster a passion for knowledge — the distinguishing feature of an open society — is vital to countering these forces.", + "Mission": "CEU is committed to promoting the values of open society and self-reflective critical thinking. It aims at excellence in the mastery of established knowledge, courage to pursue the creation of new knowledge in the humanities, the social sciences, law and management, and engagement in promoting applications for each, in particular through their policy implications. CEU is a new model for international education, a center for the study of contemporary economic, social and political challenges, and a source of support for building open and democratic societies that respect human rights and human dignity.\nCEU’s mission—to advance and build open and democratic societies that respect human rights—draws students from more than 100 countries and across five continents. Often the first in their families to pursue a graduate education, our students come to CEU to study law, humanities, social sciences, public policy, and management. This diverse group of exceptional students share a commonly held desire: to make a difference after graduation in their respective countries." + }, + "tags_focus": [ + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "Global", + "International", + "World" + ], + "Europe (Western / General)": [ + "Austria", + "Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 11209, + "name": "The Harry Frank Guggenheim Foundation", + "address": "120 West 45th Street 25th Floor 10027 New York United States", + "country": "United States", + "email": "info@hfg.org", + "website": "http://www.hfg.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "120 West 45th Street 25th Floor 10027 New York United States", + "lat": 40.75704, + "lng": -73.9838798, + "zoom": 14, + "place_id": "EjExMjAgVyA0NXRoIFN0IDI1dGggRmxvb3IsIE5ldyBZb3JrLCBOWSAxMDAzNiwgVVNBIiYaJAoWChQKEgkBOH9tVVjCiRHTjQ7ex4woThIKMjV0aCBGbG9vcg", + "street_number": "120", + "street_name": "West 45th Street", + "street_name_short": "W 45th St", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10036", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/the-harry-frank-guggenheim-foundation/", + "philea_info": { + "About": "The Foundation is the only organization of its kind focused solely on the study and amerloration of violence. It awards research grants to support distinguished and emerging scholars studying urgent matters of violence around the world. It likewise conducts and commissions original research and publishes research and policy reports. The Foundation hosts conferences, research seminars, and public conversations on topics of violence, often in collaboration with peers in academia, philanthropy, and civil society.", + "Mission": "The Harry Frank Guggenheim Foundation examines enduring and urgent problems of violence, such as war, crime, and human aggression. Through basic and applied research, the Foundation aims to understand the causes, manifestation, and control of violence, to spread this knowledge to inform policy, practice, and public discourse and to advance scholarship.", + "Geographic Focus": "United States; World", + "Programme Areas": "The Foundation conducts programs to support violence research, including its Distinguished Scholars, Emerging Scholars, African Fellows, Distinguished Fellow of Practice, Pembroke Research Fellow at Cambridge, the Salzburg Global Seminar’s Global Innovations on Youth Violence, Safety and Justice initiative, a Violent Crime Working Group at the Council on Criminal Justice, a National Gun Violence Research Collaborative at the RAND Corporation, an annual Sympoisium on Crime in America, research and policy reports, online articles, and speakers series." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "North America": [ + "United States" + ], + "Worldwide": [ + "World" + ] + } + }, + { + "id": 11208, + "name": "Fondazione Paideia", + "address": "Moncalvo 1 10131 Turin Italy", + "country": "Italy", + "email": "info@fondazionepaideia.it", + "website": "http://www.fondazionepaideia.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Moncalvo, 1, 10131 Turin, Metropolitan City of Turin, Italy", + "lat": 45.0616438, + "lng": 7.702081499999998, + "zoom": 14, + "place_id": "ChIJpSp9MZlyiEcRS9_Guuacc6w", + "name": "Via Moncalvo, 1", + "street_number": "1", + "street_name": "Via Moncalvo", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10131", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-paideia/", + "philea_info": { + "About": "Paideia Foundation adopts a perspective of intervention towards the beneficiaries that is placed, from a theoretical and methodological point of view, in the systemic and network approach, in which it is essential to turn the gaze not only to the child in difficulty, but to all those who take care of it in different ways: first of all the family unit, then the parental and friendly network and the socio-health, educational and associative resources with which the family comes into contact. This type of approach intends to promote the development of those peculiar capacities that each one, over time, may be able to recognize and enhance. Taking charge of the family is inspired by the FCC (Family Centred Care) work model, started in Canada and subsequently developed in different geographical areas.", + "Mission": "For over twenty years, Paideia has been working every day alongside families and children in difficulty, promoting effective and innovative projects, ensuring the creation of attentive and respectful contexts for the needs of children. So that no family can feel alone and no child excluded.\nPaideia’s aim and objective is to spread a culture of childhood and participate in the construction of a more inclusive and responsible society. Paideia in particular strives daily to:\n– offer support to the family in difficulty;\n– experiment with effective and innovative models of social intervention;\n– create contexts that favour the serene growth of children and the development of their potential.", + "Geographic Focus": "Italy, particularly on Piedmont region", + "Programme Areas": "Training and culture initiatives aimed at strengthening the value of inclusion, diversity, equal rights and possibilities for all, with particular attention to the needs of children and those who care for them.\nPAIDEIA CENTER: it is an initiative started in 2018, which adopts a family centerd approach, confirming the constant commitment of the Foundation alongside families with children with disabilities or illness. Each family can count on tailor-made support, ensured by a project coordinator and a multi-professional team. The Center also has a library for inclusion where people can access books and stories that encourage the participation of every reader.\nPAIDEIA SOCIAL FARM: the Farm was inaugurated in 2019 in Baldissero Torinese, just outside the city of Torino. It is configured as a space to learn, experiment and share together experiences in close contact with nature. It is a place meant to offer opportunities to meet adults and children, with particular attention to children, young people and young people with disabilities and their families, to teach them to become protagonists in the care of plants and animals, experiment experiences of autonomy, and develop skills, with a view to empowerment and generative welfare. The farm is equipped with donkeys, chickens, vegetable gardens where aromatic herbs, small fruits and saffron are grown. The vegetable gardens are all accessible, so that everyone can discover the wonder of growth and the flowering of nature." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Environment/Climate", + "Health", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 9508, + "name": "Association of Foundations in the Netherlands (FIN)", + "address": "Netherlands", + "country": "", + "email": "", + "website": "https://fondseninnederland.nl/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Netherlands", + "lat": 52.132633, + "lng": 5.291265999999999, + "zoom": 14, + "place_id": "ChIJu-SH28MJxkcRnwq9_851obM", + "name": "Netherlands", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/association-of-foundations-in-the-netherlands-fin/", + "philea_info": { + "About": "The Association of Foundations in the Netherlands (FIN) is the sector organisation for Dutch charitable endowment funds, uniting 355 members in the Netherlands.", + "Mission": "The association’s main purpose is to represent the members, their interests and the interest of philanthropy in general towards the Dutch government and politicians. FIN facilitates networking between its members and provides a platform for the exchange of knowledge, experience and new trends in philanthropy." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Netherlands" + ] + } + }, + { + "id": 9496, + "name": "Knowledge Centre for Danish Foundations", + "address": "Denmark", + "country": "", + "email": "", + "website": "", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Denmark", + "lat": 56.26392, + "lng": 9.501785, + "zoom": 14, + "place_id": "ChIJ-1-U7rYnS0YRzZLgw9BDh1I", + "name": "Denmark", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/knowledge-centre-for-danish-foundations/", + "philea_info": { + "About": "Knowledge Centre for Danish Foundations (Fondenes Videnscenter) was founded in December 2017 by 34 of the largest industrial foundations and public benefit foundations in Denmark.", + "Mission": "Knowledge Centre for Danish Foundations is a member organisation with the purpose of supporting a high information level, knowledge sharing and co-operation among its members as well as monitoring and informing the foundation sector and decision makers about Danish foundations to further the working conditions of Danish foundations." + }, + "tags_focus": [], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 9490, + "name": "Austrian Foundations Association (Verband für Gemeinnütziges Stiften)", + "address": " Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 Wien", + "country": "", + "email": "", + "website": "https://www.gemeinnuetzig-stiften.at/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": " Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 Wien", + "lat": 48.2151846, + "lng": 16.366538, + "zoom": 14, + "place_id": "ChIJWUNmvrwHbUcRwiwzHXndics", + "street_number": "16", + "street_name": "Schottenring", + "city": "Wien", + "state": "Wien", + "post_code": "1010", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/austrian-foundations-association-verband-fur-gemeinnutziges-stiften/", + "philea_info": { + "About": "The Austrian Foundations Association (Verband für Gemeinnütziges Stiften) was founded in 2015 to improve the amplitude, quality and acceptance of charitable funding in Austria. The association works independently on supporting and developing the local foundation sector. In its work for its over 100 member organisations, the association concentrates on charitable giving foundations and funds, as they are important drivers for sustainability and social innovations.", + "Mission": "The Austrian Foundations Association represents and connects charitable stakeholders in and for Austria and wants to form a movement that actively works for Austria’s society in order to make it resilient and sustainable." + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "Austria" + ] + } + }, + { + "id": 9486, + "name": "Croatian Foundation Forum", + "address": "Croatia", + "country": "", + "email": "", + "website": "", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Croatia", + "lat": 45.1, + "lng": 15.2, + "zoom": 14, + "place_id": "ChIJ7ZXdCghBNBMRfxtm4STA86A", + "name": "Croatia", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/croatian-foundation-forum/", + "philea_info": { + "About": "The Croatian Foundations Forum ‘For Wellbeing!’ was established in 2008\nand now has 37 members: 21 private foundations, 14 public foundations\nand 2 corporate foundations. In 2018 the Forum has established the Philanthropy Academy and opened the Croatian Philanthropy House in city of Zadar (Croatia) where the programmees of the Academy will be implemented.", + "Mission": "The purpose of the Croatian Foundation Forum ‘For Wellbeing!’ is to support philanthropy development in Croatia, provide expert support and capacity building to foundations in Croatia and individual philantropists, investments in social innovations, youth and local community development. The Forum is run and co-managed by the National Foundation for Civil Society Development and the European Foundation for Philanthropy and Society Development, both based in Zagreb, Croatia." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Croatia" + ] + } + }, + { + "id": 9482, + "name": "Association of Norwegian Foundations", + "address": "", + "country": "", + "email": "", + "website": "https://stiftelsesforeningen.no/medlemmer/stiftelser", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Norway", + "lat": 60.47202399999999, + "lng": 8.468945999999999, + "zoom": 14, + "place_id": "ChIJv-VNj0VoEkYRK9BkuJ07sKE", + "name": "Norway", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/association-of-norwegian-foundations/", + "philea_info": { + "About": "Association of Norwegian Foundations (Stiftelsesforeningen), founded in 2003, is a union for all Norwegian foundations, whether these are non-profit, gift-giving or own businesses or hospitals.", + "Mission": "The purpose of the Association of Norwegian Foundation is to support Norwegian foundations through issuing statements about legal changes affecting foundations, enabling its members to exchange information and ideas also strive to emphasize the altruistic work of foundations and to show the important role of foundations in Norwegian society. The association seeks to foster dialogue with political authorities, government and training of board members and daily managers. In addition, the association works out templates for good management of foundations. It also provides services to members in the area of issues related to legislation." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Norway" + ] + } + }, + { + "id": 9472, + "name": "Center for Philanthropy", + "address": "Baštová 5, 811 03, Bratislava, Slovak Republic ", + "country": "Slovakia", + "email": "", + "website": "http://www.cpf.sk/en/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Baštová 5, 811 03 Bratislava, Slovakia", + "lat": 48.1447852, + "lng": 17.1058538, + "zoom": 14, + "place_id": "EihCYcWhdG92w6EgNSwgODExIDAzIEJyYXRpc2xhdmEsIFNsb3Zha2lhIlASTgo0CjIJhXAm71yJbEcRogLxSbysQtUaHgsQ7sHuoQEaFAoSCUVKC4NYiWxHEdk5ba82M8wGDBAFKhQKEgl5tSnpXIlsRxF_crYoQE8aZw", + "name": "Baštová 5", + "street_number": "5", + "street_name": "Baštová", + "state": "Bratislavský kraj", + "post_code": "811 03", + "country": "Slovakia", + "country_short": "SK" + }, + "link": "https://philea.eu/members/center-for-philanthropy/", + "philea_info": { + "About": "The Center for Philanthropy (CpF) was founded in August 2002 as a nonprofit organisation to develop philanthropy and civil society in Slovakia and to make an active contribution in developing and cultivating charitable giving.", + "Mission": "The Centre for Philanthropy (CpF) serves as a philanthropic infrastructure to foundations and non-profit organisations, stimulates giving and civic engagement, contributes to the policy debate on the legal and fiscal framework for civil society. We network active citizens and non- governmental organisations that search for resources with donors and facilitate the flow of these resources, knowledge and information to pursue their public benefit goals.\nCpF focuses on the development of corporate giving through grant programs and services provided for corporate donors, companies or individuals who want to give their financial means, time, energy or abilities to help people in need. We provide them with consultancy services in identification of themes and their processing in the context of grant programs, we provide the assistance with resources’ distribution through effective and transparent grant programmes and support their activities.\nAnother focus is on the support of individual giving by developing the online fundraising platforms (DARUJME.sk, ludialudom.sk) and online crowd-funding platform. StartLab, launched in 2015, is a unique and first non-commercial crowdfunding platform in Slovakia.\nTogether with the Pontis Foundation, CpF were the initiator of the establishment of the Association of Corporate Foundations, an informal platform to network members and defend the interests of the corporate foundation community in Slovakia. Its purpose is to contribute to maximizing efficiency and transparency in the achievement of their public service purpose." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Slovakia" + ] + } + }, + { + "id": 9468, + "name": "Association for Community Relations (ARC)", + "address": "Association for Community Relations Bd. 1 Decembrie 1918, nr.4, ap.7 400699 Cluj-Napoca Romania", + "country": "", + "email": "", + "website": "http://www.arcromania.ro", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Association for Community Relations Bd. 1 Decembrie 1918, nr.4, ap.7 400699 Cluj-Napoca Romania", + "lat": 46.7710854, + "lng": 23.5756899, + "zoom": 14, + "place_id": "Ej03LCBCdWxldmFyZHVsIDEgRGVjZW1icmllIDE5MTggNCwgQ2x1ai1OYXBvY2EgNDAwNjk5LCBSb21hbmlhIh0aGwoWChQKEgkDxlb5jw5JRxE-UimExciUhBIBNw", + "street_number": "4", + "street_name": "Bulevardul 1 Decembrie 1918", + "city": "Cluj-Napoca", + "state": "Județul Cluj", + "state_short": "CJ", + "post_code": "400699", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/association-for-community-relations-arc/", + "philea_info": { + "About": "ARC is a resource centre for foundations (corporate and otherwise), individual and family philanthropy and a network of community foundations. It is not membership- but partnership- and coalition-based. For ARC, strategic philanthropy, which is rooted in ones’ values, changes relations between people and the causes they support and creates a strong relation between nonprofits and private donors, both individuals and companies. And this leads to a transformation in the trust fiber of the society; creates confidence in our own power and in our chance to make a better life for all.", + "Mission": "ARC is about giving hope, with strength from all. Responsible philanthropy has the capacity to make people think. About the why, about the how and about the impact of their giving. But most of all, they realise that their giving has to be part of a larger context and they start to think about alliances, systemic change and durability of change." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Romania" + ] + } + }, + { + "id": 5375, + "name": "Zagoriy Foundation", + "address": "Zagoriy Foundation 6 Rylskyi Alley 02091 Kyiv Ukraine", + "country": "Ukraine", + "email": "info@zagoriy.foundation", + "website": "https://zagoriy.foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Zagoriy Foundation, Ryl's'kyi Lane, 6, Kyiv, Ukraine", + "lat": 50.4545967, + "lng": 30.51540429999999, + "zoom": 14, + "place_id": "ChIJVVUVQ1vO1EAROz9Wbz5Kg6o", + "name": "Zagoriy Foundation", + "street_number": "6", + "street_name": "Ryl's'kyi Lane", + "street_name_short": "Ryl's'kyi Ln", + "city": "Kyiv", + "state": "Kyiv City", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/zagoriy-foundation/", + "philea_info": { + "About": "Zagoriy Foundation is the only charitable organisation that conducts social research about charity in Ukraine. They regularly provide grants for smaller organisations with the goal of developing a culture of charitable giving in Ukraine. Furthermore, Zagoriy Foundation helps Ukraine’s third sector to develop effective capacity building process. Also, the Foundation coordinates the “Giving Tuesday” movement in Ukraine.", + "Mission": "To develop a culture of giving in Ukraine", + "Geographic Focus": "Ukraine", + "Programme Areas": "Zagoriy Foundation’s activities aim at implementing the best European philanthropy practices in Ukraine. Main programmes are:\n– providing grants to non-profits\n– supporting organisations which activities are crucial for the sustainable development of Ukraine\n– conducting philanthropy research and analytics\n– preserving and promoting cultural heritage\n– strengthening public-private cooperation\n– implementing information campaigns" + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Ukraine" + ] + } + }, + { + "id": 5357, + "name": "ZEIT-Stiftung Ebelin und Gerd Bucerius", + "address": "ZEIT-Stiftung Ebelin und Gerd Bucerius Feldbrunnenstraße 56 20148 Hamburg Germany", + "country": "Germany", + "email": "zeit-stiftung@zeit-stiftung.de", + "website": "http://www.zeit-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ZEIT-Stiftung Ebelin und Gerd Bucerius, Feldbrunnenstraße 56, 20148 Hamburg, Germany", + "lat": 53.56795, + "lng": 9.99104, + "zoom": 14, + "place_id": "ChIJk0XmyjqPsUcRfRK1jbRx6Bc", + "name": "ZEIT-Stiftung Ebelin und Gerd Bucerius", + "street_number": "56", + "street_name": "Feldbrunnenstraße", + "city": "Hamburg", + "state": "Hamburg", + "state_short": "HH", + "post_code": "20148", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/zeit-stiftung-ebelin-und-gerd-bucerius/", + "philea_info": { + "About": "The ZEIT-Stiftung promotes research and scholarship, art and culture, as well as education and training. It also initiates debates on political and social topics and provides forums for digital development. The foundation realizes its aims through its own projects and institutions, but it also grants funding to individuals and organizations who dare to innovate, and thus inspire change in science and research, culture and education. The foundation’s international activities are centred on Central and Eastern Europe as well as Israel, with a strong emphasis on intercultural dialogue.", + "Mission": "They lend their support to creative endeavour and open-ended experimentation, but also invest in the preservation of our cultural heritage. The Foundation helps highly gifted and motivated individuals – especially young people – to discover and realize their potential. The aim is to stimulate intercultural debates and provide networking opportunities in the spirit of cosmopolitan exchange. The Foundation is motivated by the need for open debates on current issues in politics, society, culture and science, and by the need to find interdisciplinary solutions to local as well as global challenges.", + "Geographic Focus": "Northern Germany, Eastern Europe, Israel and US", + "Programme Areas": "The foundation provides support for the following areas:\n• Research and scholarship\n• Art and culture\n• Education and training\n• Digital Development Research and Scholarship\nSupports ground-breaking international structures of teaching and research in the fields of law, history, and humanities and arts; sponsors new fields of study; and promotes the talented up-and-coming young generation by applying an international and interdisciplinary approach. In 2000, the foundation established the Bucerius Law School, the first privately operated law school in Germany, with the goal to provide prospective law students with an alternative to the legal education programmes available at German state universities. The school offers an academically accomplished, practice-oriented, and bi-lingual legal education with a focus on international business law. Furthermore, the ZEIT-Stiftung invites 30 students and PhD candidates each year to its annual summer academy ‘History Takes Place’. In addition, it offers a grant programme for postgraduates in the fields of law and history. Arts and Culture\nProvides funding mainly directed to art exhibitions, contemporary music as well as literature. In 2002, the foundation established its own arts forum, the Bucerius Kunst Forum, which presents exhibitions ranging from the art of the Ancient World to classic modern art. Another important funding objective is the preservation of cultural heritage, such as the restoration of classical organs in East Germany, historic buildings and churches or precious manuscripts. Education and Training\nSupports school projects that prepare young people for their professional career. Activities include an annual summer school which brings together young leaders from around the world to discuss issues of global governance with international experts; a writing competition “”Schreibmal”” (time for writing); the Gerd Bucerius National Library Prize which promotes the importance of books as vital communicators of education, culture, knowledge, tradition and confidence in the future; and the Gerd Bucerius Prize ‘Free Press of Eastern Europe’ which supports eastern European media and journalists in an effort to promote a free press under restricted conditions – the latter prize is awarded in cooperation with the Institusjonen Fritt Ord, Oslo. The foundation also runs the Dönhoff Scholarship Programme which enables young and talented journalists from eastern European countries to work for the German media and gain experience for two months, while their German counterparts work at their respective editorial offices in return." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ], + "Middle East & North Africa (MENA)": [ + "Israel" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5352, + "name": "Wellcome Trust", + "address": "Wellcome Trust 215 Euston Road NW1 2BE London United Kingdom", + "country": "United Kingdom", + "email": "contact@wellcome.ac.uk", + "website": "http://www.wellcome.ac.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Wellcome Trust, 215 Euston Road, London NW1 2BE, United Kingdom", + "lat": 51.5255527, + "lng": -0.1351949, + "zoom": 14, + "place_id": "ChIJt_RE_iUbdkgRJUATGZFZC40", + "name": "Wellcome Trust", + "street_number": "215", + "street_name": "Euston Road", + "street_name_short": "Euston Rd", + "city": "London", + "state": "England", + "post_code": "NW1 2BE", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/wellcome-trust/", + "philea_info": { + "About": "The Wellcome Trust was established in 1936 upon the death of Sir Henry Wellcome. In his will, Wellcome vested the entire share capital of the drug company, The Wellcome Foundation Limited, in individual trustees. The trustees were charged with spending the income according to Sir Henry Wellcome’s wishes.", + "Mission": "To achieve extraordinary improvements in human and animal health.", + "Geographic Focus": "UK, but also worldwide including major initiatives in Africa, India and South-east Asia.", + "Programme Areas": "The Trust supports the brightest minds in biomedical research and the medical humanities, with the aim of improving human and animal health. It offers a wide variety of funding schemes, including Investigator Awards, fellowships and Strategic Awards, and also supports several major initiatives. There are six funding areas: • Biomedical science – Investigating health and disease in humans and animals\n• Technology transfer – Helping the development of innovative, early-stage projects with potential medical applications\n• International – Supporting research, capacity building and engagement activities in low- and middle-income countries.\n• Public engagement – Imaginative and experimental projects that bring biology and medicine to new audiences\n• Medical history and humanities – Research at the interface of medical science, history and the wider humanities\n• Biomedical ethics – Supporting research into ethical dilemmas in the development and delivery of healthcare" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia", + "India" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5350, + "name": "VolkswagenStiftung", + "address": "VolkswagenStiftung Kastanienallee 35 30519 Hannover Germany", + "country": "Germany", + "email": "info@volkswagenstiftung.de", + "website": "http://www.volkswagenstiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "VolkswagenStiftung, Kastanienallee 35, 30519 Hannover, Germany", + "lat": 52.3325449, + "lng": 9.7682695, + "zoom": 14, + "place_id": "ChIJ48hYtucKsEcR2nkI49fN6hU", + "name": "VolkswagenStiftung", + "street_number": "35", + "street_name": "Kastanienallee", + "city": "Hannover", + "state": "Niedersachsen", + "state_short": "NDS", + "post_code": "30519", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/volkswagenstiftung/", + "philea_info": { + "About": "VolkswagenStiftung was established in 1961, and started its activities in the spring of 1962. Its origins are based on a government treaty between the Federal Republic of Germany and the State of Lower Saxony, which settled the controversy over the ownership of the Volkswagen factories after 1945. The then Volkswagen GmbH was converted into a joint stock company under German law. The proceeds were transferred to the Volkswagen Foundation.", + "Mission": "VolkswagenStiftung is dedicated to the support of the humanities and social sciences as well as science and technology in higher education and research. It funds research projects and provides assistance to academic institutions for the improvement of the structural conditions for their work. In particular, the Foundation perceives its mission in supporting aspiring young researchers and in promoting interdisciplinary and international collaboration.", + "Geographic Focus": "International", + "Programme Areas": "The Foundation focuses its funding activities on selected initiatives. By means of these initiatives, it endeavours to provide effective stimuli for research and to establish forward-looking topics. The funding initiatives are grouped into the areas: • Persons and Structures\n• Challenges – for Academia and Society\n• International Focus\n• Research in the Digital Age\n• Completed Initiatives In addition to its funding initiatives, the Foundation is providing support for: • Research institutions in Lower Saxony: Niedersächsisches Vorab\n• Outstanding projects which do not fit into its current funding initiatives: Off the beaten track\n• Supporting grantees’ interaction with the public and with the scientific community at large: Communicating Science and Research The Foundation organise also a program of events. Events of the Volkswagen Foundation are aimed at strengthening the bond between science and society at large and generating fresh impetus for the transfer of research results. Persons and Structures • Lichtenberg professorships: provides support to junior academics in connection with innovative fields of research located between the disciplines as well as new teaching concepts within the respective research environment\n• Opus Magnum: the initiative aims at providing more freedom for writing a larger scholarly treatise to professors from the humanities and social sciences who have already achieved a degree of renown by virtue of (a first) outstanding research performance.\n• ‘Freigeist’ Fellowships: The ‘Freigeist’ scheme is deliberately left open to all disciplines and topics. The main focus is on junior researchers (up to 5 years of postdoctoral experience). It offers freedom for creative thinking, whilst at the same time security for at least 5 years and in the long run the opportunity to establish a career within a scientific research organization or university in Germany.\n• Research in Museums\n• University of the Future: aims to support projects on structural innovation and to promote the internationalization of German universities.\n• Call: Arts and Science Challenges – For Academia and Society • Symposia and SummerSchools: to support events in all subject areas dealing with new ideas and research approaches in order to encourage innovative event formats as well as new ways of supporting interaction and networking among the participants. Future Issues of Our Society: analysis, advice and communication between academia and practice.\n• Macroscopic Functional Systems … : to promote the advancement of molecular or nanoscale units to more complex functional systems at a macroscopic scale.\n• Experiment!\n• “Original – isn’t it?” : to promote the exploration of research ideas of groundbreaking originality in the humanities and cultural studies.\n• Life? : encourages projects that contribute to comprehending fundamental principles of life by working with systems resembling those of living ones or by exploring chemical and physical cellular processes. International Focus The funding initiatives relating to other countries serve international cooperation and the systematic support of institutions and projects outside Germany.\n• Knowledge for Tomorrow: cooperative research projects in Sub-Saharan Africa\n• Between Europe and the Orient: a focus on research and higher education in/on Central Asia and the Caucasus\n• Europe and Global Challenges\n• Call : Arab World : support for cooperative research projects focusing on the Arab world and addressing issues related to “experience of violence”, “trauma relief”, and “commemorative culture”.\n• “Postdoctoral Fellowships in the Humanities at Universities and Research Institutes in Germany and the USA” aims to strengthen transatlantic academic relations, especially in the field of the Humanities. In this funding initiative, the Volkswagen Foundation works closely with the Andrew W. Mellon Foundation, New York. Research in the Digital Age International Research in Computational Social Sciences\n‘Mixed Methods’ in the Humanities\nScience and Data-Driven Journalism Events Since 2012 the Volkswagen Foundation has been holding all its funded international scientific conferences and public events in the Herrenhausen Palace Conference Center in Hannover. The background idea is to further discourses on current research issues and provide stimulus for the transfer of knowledge to the general public. The Foundation also welcomes proposals to hold symposia and summer schools at the Herrenhausen Palace Conference Center." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ] + } + }, + { + "id": 5349, + "name": "Vodafone Stiftung Deutschland", + "address": "Vodafone Stiftung Deutschland Ferdinand-Braun-Platz 1 40549 Düsseldorf Germany", + "country": "Germany", + "email": "info@vodafone-stiftung.de", + "website": "http://www.vodafone-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Vodafone Office, Ferdinand-Braun-Platz, Düsseldorf, Germany", + "lat": 51.2351599, + "lng": 6.732056399999999, + "zoom": 14, + "place_id": "ChIJCyBxiOG1uEcRBQ2qhl38B1Y", + "name": "Vodafone Office", + "street_number": "1", + "street_name": "Ferdinand-Braun-Platz", + "city": "Düsseldorf", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "40549", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/vodafone-stiftung-deutschland/", + "philea_info": { + "About": "The Vodafone Stiftung is one of the largest company-related foundations in Germany. It supports and initiates projects with the goaI of providing impetus to social progress in order to assume social policy responsibility.", + "Mission": "To recognise challenges and chances, to give support and eventually to make a difference.", + "Geographic Focus": "Germany", + "Programme Areas": "The Vodafone Foundation Germany concentrates on the areas of education, integration and social mobility. The Foundation is committed to these areas, with long-term programme funding, awards, competitions and grants, as well as a think tank. The Foundation is concerned with realising ideas and programmes that provide answers to societal problems and challenges. A particular focus of the Foundations work are young people—children, youths and young adults—whose development the Foundation wants to support and foster. The programmes are the following: – Vodafone Scholarship Programme\n– Deutscher Lehrerpreis – German Award for Innovative Teaching\n– Ideas for the educational republic\n– Vodafone Talents\n– buddY Programme\n– familY Programme\n– Off Road Kids\n– Düsseldorf ist ARTig – Düsseldorf is arty\n– Paediatric Pain Therapy Vodafone Scholarship Programme\nThe Vodafone Foundation Germany wants to open new educational opportunities to young people with migrant backgrounds who want to live and work in Germany. Since the winter term 2006/2007, the Foundation has offered the Vodafone Scholarship Programme, the nationwide only scholarship programme for students with migrant backgrounds at selected universities. German Award for Innovative Teaching\nA nationwide competition for dedicated and creative teachers at German schools. Teachers present ideas for innovative lessons — and students join in. Society as a whole and the life of each student is unimaginable without the great personal commitment of teachers. School shapes one for life. To do their jobs, teachers require more than just support, they also need recognition. The German Award for Innovative Teaching has the aim of increasing public appreciation of the teaching profession. Ideas for the educational republic\nThe competition recognises initiatives, institutions and societies/associations which are demonstrating a long-term commitment to a level playing field in education for children and young people. Vodafone Talents\nThe Think Tank project, Vodafone Talents creates a conversation between education researchers, politicians and experts from school administration and education ministries, as well as practitioners from schools and work with parents. This is to develop instruments that equip parents to make decisions and sensitise teachers to social differences, and provide support when recommending schools. To do this, Vodafone Talents takes a holistic view of decision-making skills and the decision architecture. The buddY Programme\n“Looking out for each other. – Being there for one another. Learning together.” This is the motto of the buddY Programme to develop the social skills of schoolchildren, which has been running and continuously expanding since 1999. The familY Programme\nThis new pilot project consciously approaches the family as a central institution for learning. The overarching aim of the familY Programme is to improve children’s starting conditions for learning, to increase educational opportunities, and to strengthen equal opportunities in our society. Families, children and parents benefit from this Programme in different ways. Off Road Kids\nNo child in Germany should have to live on the streets. This is the declared goal of the Off Road Kids aid organisation. The Vodafone Foundation Germany helps energetically and finances the four Off Road Kids Street Work Stations in Berlin, Hamburg, Dortmund and Cologne. Düsseldorf ist ARTig\nFunded by the Vodafone Foundation Germany, this major art competition offers young people in and around Dusseldorf the opportunity to realise their own artistic ideas with the support of experienced artists. DÜSSELDORF IST ARTIG has established itself as an integral component of fostering young artistic talent. The aim is “give us room for artistic ideas, view young culture as a resource, not a threat, and listen to the experts — to young people!” Paediatric Pain Therapy\nRecognise responsibility. Support the disadvantaged. Minimising the suffering of children with chronic pain or life-shortening illnesses through research and therapy is the goal of the Vodafone Foundation Institute for Paediatric Pain Therapy in Datteln. With this Institute, the Foundation is taking responsibility for an interdisciplinary concept that is both new and unique in Germany. It includes in- and out-patient treatment of children who are in pain, as well as clinical research. Witten/Herdecke university has set up the world´s first Chair of Paediatric Palliative Medicine, financed by the Foundation. The medical and psychosocial care of children who are suffering from life-shortening illnesses is only beginning in Germany. The Chair ensures an interdisciplinary knowledge transfer into the healthcare system. In this regard, the Chair of Paediatric Palliative Medicine is performing pioneering work." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Germany" + ] + } + }, + { + "id": 5346, + "name": "VELUX Foundations, The", + "address": "The VELUX Foundations Tobaksvejen 10 2860 Søborg Denmark", + "country": "Denmark", + "email": "info@veluxfoundations.dk", + "website": "http://www.veluxfoundations.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "THE VELUX FOUNDATIONS, Tobaksvejen 10, 2860 Søborg, Denmark", + "lat": 55.74046800000001, + "lng": 12.480344, + "zoom": 14, + "place_id": "ChIJjZFSlN1RUkYRfCw0SHUZkhE", + "name": "THE VELUX FOUNDATIONS", + "street_number": "10", + "street_name": "Tobaksvejen", + "city": "Søborg", + "post_code": "2860", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/velux-foundations-the/", + "philea_info": { + "About": "The Velux Foundations are comprised of the two non-profit, private charitable foundations Velux Fonden (1971) and Villum Fonden (1981). Both foundations were created by Villum Kann Rasmussen – the Danish founder of Velux and other companies in the VKR Group. The VKR Group expanded from a one-man business to an international corporation that today employs over 13,500 people in 40 countries. Today, the VKR Group is owned by foundations and family members of Mr Kann Rasmussen, and its focus remains on providing people with more daylight, fresh air and a better indoor environment. The major shareholder of VKR Holding is the foundation VILLUM FONDEN. During its history, VILLUM FONDEN and VELUX FONDEN have made a total of DKK 7.4 billion in grants to all manner of non-profit projects.", + "Mission": "The mission of the Foundations is to support non-profit organisations or individuals in carrying out projects that support fundamental areas of the civil society such as research in technical, natural, health and human sciences along with environmental, social, cultural purposes. It is therefore a precondition for the activities that the grants seek to make a significant difference to those areas in the civil society and to the individual grantees.", + "Geographic Focus": "Primarily Denmark but increasingly international.", + "Programme Areas": "The foundations have separate programme areas: VILLUM Foundation:\nThe foundation supports research in the technical and natural sciences, as well as environmental, social and cultural projects in Denmark and abroad. The foundation is responsible for awarding the Villum Kann Rasmussen Annual Award in Science and Technology. VELUX Foundation:\nThe foundation supports scientific, cultural, social and environmental projects that seek to advance an informed, open, inclusive and sustainable society. The foundation’s priority areas are: active senior citizens, ophthalmology and gerontology." + }, + "tags_focus": [ + "Arts & Culture", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 5345, + "name": "Vehbi Koç Foundation", + "address": "Vehbi Koç Vakfi Nakkastepe, Azizbey Sokak No.1, Kuzguncuk 34674 Istanbul Turkey", + "country": "Turkey", + "email": "info@vkv.org.tr", + "website": "http://www.vkv.org.tr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Kuzguncuk, Vehbi Koç Vakfı, Nakkaştepe, Aziz Bey Sokak No: 1, 34674 Üsküdar/İstanbul, Turkey", + "lat": 41.0318529, + "lng": 29.0384855, + "zoom": 14, + "place_id": "ChIJDySJjRq3yhQRQwAq8FxSSoA", + "name": "Vehbi Koç Vakfı", + "street_number": "No: 1", + "street_name": "Aziz Bey Sokak", + "street_name_short": "Aziz Bey Sk.", + "state": "İstanbul", + "post_code": "34674", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/vehbi-koc-foundation/", + "philea_info": { + "About": "The Vehbi Koç Foundation (Vehbi Koç Vakfı) was first endowed on 17 January 1969. Its establishment made it the first major private foundation of the Turkish Republic and brought about a revival of the age-old tradition of the Vakıf – philanthropic endowments for the public good. The foundation has since then carried out a large number of activities in the fields of education, healthcare and culture – all of which are of utmost importance to the nation’s wellbeing and further development – and has become a role model to a great many other philanthropists. In its first years, the foundation used its resources to fund the establishment of several schools, student dormitories, libraries and clinics, handing each over to the relevant public administration. Later, it pioneered the setting up of a number of major not-for-profit institutions in each of its focus areas of education, healthcare and culture. Throughout its history, the foundation has provided thousands of scholarships to help talented students in need attain equal opportunity in education.\nWith significant investments and commitments made in the field of education, healthcare and culture, the Koç Family and the Vehbi Koç Foundation take pride in being appreciated by many reputable institutions in the international arena. The Koç Family and the Vehbi Koç Foundation is the only Family and Institution to receive all three of these prominent awards: World Monument Fund – ‘Hadrian Award’ (2007), Carnegie Foundation -‘ Carnegie Medal of Philanthropy’ (2009), BNP Paribas – ‘Grand Prize for Individual Philanthropy’ (2011).", + "Mission": "To create institutionalised and sustainable charitable services to serve the Turkish people in the areas of education, health care and cultural heritage.", + "Geographic Focus": "Turkey", + "Programme Areas": "The foundation serves the community by supporting existing active organisations in its fields of interest and providing scholarships to financially disadvantaged youth, as well as forming and operating other establishments. Its activities are concentrated in the following areas:\n• Education\n• Health care\n• Cultural heritage Education\nStrives to raise the society’s standards to a higher level by establishing educational institutions which focus on achieving top quality. In line with the above principle, the foundation founded the Vehbi Koç Vakfi University, Koç Private Elementary and High School. The foundation also awards scholarships to talented students in need of financial support, with the aim of establishing the principle of equal opportunity in education. In addition, the foundation completed the ‘Eight Year Continuous Education’ campaign by building 13 primary schools in 10 provinces in 2001. Health Care\nSeeks to create models that provide a high standard of health care and create permanent facilities for the benefit of the country. Activities include the purchase and expansion of the American Hospital in Istanbul and the opening of the Italian Oncology and Rehabilitation Hospital. The Semahat Arsel Nursing Education and Research Centre was added on to the hospital to raise the level of knowledge in the nursing profession and to improve the quality of patient care. Scholarships are granted to nurses to continue their training. Cultural Heritage\nConcentrates on preserving Turkey’s cultural heritage through various museums and research centres including the Sadberk Hanim Museum, Turkey’s first private museum with an expansive archaeological and fine arts collection; the Suna-Inan Kiraç Research Institute on Mediterranean Civilisations, which carries out research in archaeology and indigenous cultures, and a research centre on Vehbi Koç and Ankara. Support is also given for cultural and artistic projects that seek to enrich the cultural life of the nation and for archaeological excavations in Turkey." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 5344, + "name": "Van Leer Group Foundation", + "address": "Van Leer Group Foundation Lange Houtstraat 2 2511 CW Den Haag Netherlands", + "country": "Netherlands", + "email": "mail@vanleergroup.org", + "website": "http://www.vanleergroupfoundation.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bernard van Leer Foundation, Lange Houtstraat 2, 2511 CW Den Haag, Netherlands", + "lat": 52.0807884, + "lng": 4.3156968, + "zoom": 14, + "place_id": "ChIJ5WRAtDy3xUcRG3BgSnLCbdc", + "name": "Bernard van Leer Foundation", + "street_number": "2", + "street_name": "Lange Houtstraat", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2511 CW", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/van-leer-group-foundation/", + "philea_info": { + "About": "The Van Leer Group Foundation is a privately endowed charitable organisation established in 1979 by Oscar Van Leer. It performs the holding function for all the Van Leer charitable activities and as such supervises its investment portfolio and the governance of its charitable activities. The Van Leer charitable activities are presently embodied in the Van Leer Group Foundation in Amstelveen, the Bernard Van Leer Foundation in The Hague, Van Leer Jerusalem Institute and Jerusalem Film Centre.", + "Mission": "To promote the optimum development of socially and economically disadvantaged children up to the age of eight, with the objective of developing their innate potential to the greatest possible extent; to contribute to the development and strengthening of a Jewish, democratic national home in Israel committed to a free, equitable and just society for all of its citizens, and to contribute to the pursuit of regional peace for the benefit of social, cultural and individual lives in Israel; and to promote and further the continuity and the preservation of the identity of the Van Leer Entity.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The foundation’s programmes focus on its three objectives: • Early childhood development\n• The improvement of social and cultural conditions in Israel\n• The promotion of the Van Leer Entity Early Childhood Development\nPromotes the optimum development of socially and economically disadvantaged children up to the age of 8, with the objective of developing their innate potential to the greatest extent possible. The Improvement of Social and Cultural Conditions in Israel\nContributes to the development and strengthening of a Jewish democratic national home in Israel committed to a free, equitable and just society for all its citizens; and contributes to the pursuit of regional peace, for the benefit and betterment of social, cultural and individual lives in Israel. The Promotion of the Van Leer Entity\nThe Van Leer Entity embodies the philanthropic goals of the Van Leer family. VLGF takes a particular responsibility with respect to the way in which the legacy of the Van Leer family is translated into existing and new humanitarian ventures and income generating activities. As a holding foundation, VLGF is responsible for the governance issues, such as the board composition, profile of members, geographical composition and tenure of itself and of the Bernard Van Leer Foundation and Crecor B.V." + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5337, + "name": "UniCredit Foundation", + "address": "UniCredit Foundation Piazza Gae Aulenti, 3 – Tower A, 25th floor 20154 Milan Italy", + "country": "Italy", + "email": "info@unicreditfoundation.org", + "website": "http://www.unicreditfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "UniCredit Foundation, Piazza Gae Aulenti, 3, Milan, Metropolitan City of Milan, Italy", + "lat": 45.4837646, + "lng": 9.189772000000001, + "zoom": 14, + "place_id": "ChIJW2rauq3GhkcRFxc5GrT2yII", + "name": "UniCredit Foundation", + "street_number": "3", + "street_name": "Piazza Gae Aulenti", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20124", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/unicredit-foundation/", + "philea_info": { + "About": "UniCredit Foundation works through the promotion of social cohesion processes in the territories and through social entrepreneurship, considered a capable tool for producing and delivering goods and services for social utility.\nThe Foundation is a competence center for UniCredit on issues of philanthropy and the third sector. In particular, the foundation offers advice and organises activities for the Group companies and their customers.\nLastly, UniCredit Foundation promotes a culture of volunteering and giving to the community through the dedicated efforts of all the employees, encouraging their participation in social activities and projects.", + "Mission": "UniCredit Foundation is a corporate foundation that was established in 2003 in order to contribute to the development of solidarity and philanthropy in the communities and territories where UniCredit operates, primarily in the regions where UniCredit is present (17 countries including Europe and Central Asia). Through the transfer of financial resources and the typical management skills of a company, UniCredit Foundation supports projects of significant social impact and innovation, implemented by local non-profit organizations.", + "Geographic Focus": "The 22 countries were UniCredit Group is present. In the last few years initiatives have mainly been in Austria, Bosnia and Herzegovina, Bulgaria, Croatia, Czech Republic, Germany, Hungary, Italy, Poland, Romania, Russia, Serbia, Slovakia, Slovenia. The foundation also operates in Burkina Faso and Benin.", + "Programme Areas": "The foundation focuses on the following areas of interest: • Primary healthcare\n• Migrations Programme\n• Social Business\n• Social enterprise\n• Other initiatives Primary Healthcare\nUniCredit Foundation’s projects promote a multi-sector approach, which combines actions designed to restore public healthcare and extend the coverage of essential health services, with actions aimed at improving social and economic conditions of the local communities. The foundation’s main initiatives are focused on the rural areas of Benin and Burkina Faso. Migrations Programme\nThe Migrations Programme has been promoted by UniCredit Foundation within UniCredit, with the main goal of increasing awareness and culture about the phenomenon of international migrations. This multi-year programme targets the 22 countries where UniCredit is present – which are to some extent affected by migrations flows and effects. The programme consists of the following main components: • Development Projects to support, in each country, social initiatives focusing on relevant local issues related to migration\n• Employee Community Involvement (ECI) activities to offer for direct involvement of UniCredit Colleagues, giving them different possibilities to learn, express their passions and engage directly Visit the dedicated website migrations.unicreditfoundation.org Social Business\nSince 2008 UniCredit Foundation has dedicated particular attention to the concept of microcredit as the only relevant instrument to fight poverty and promote social inclusion based on mechanisms characteristic of the banking world. In June of that year, a feasibility study was launched in collaboration with the University of Bologna and Grameen Trust to verify the opportunity to set up a micro finance initiative according to Grameen’s best practices. In February 2009 it was agreed that the preconditions exist for effectively implementing the Grameen Italia project and the second phase was initiated to define the various structural, financial and organisational aspects. Social Enterprise\nSince 2007 UniCredit Foundation has launched a number of initiatives centered on the concept of social business, a concept that represents a natural connection between the for profit and the non-profit sectors, an intermediate form – often defined as “not only for profit” – which attempts to create a virtuous combination of techniques and methodologies typical of the for profit sector and aspirations and ideals of the non-profit sector. Social purpose can be pursued through the direct production of services such as care living, education, healthcare, etc. or through the production of goods or services to aid the creation of job opportunities for vulnerable persons (former convicts, people with disabilities, former drug addicts, etc.). Other initiatives\nIn addition to the main areas of intervention, UniCredit Foundation also supports: • Social projects of Casa della carità Foundation and the cultural activities of the Accademia della carità\n• United Colours of Futsal\n• The Afro project\n• The project of social cohesion Conoscere per essere of the School Association of the G.Giusti Institute" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Bosnia and Herzegovina", + "Bulgaria", + "Croatia", + "Czech Republic", + "Hungary", + "Poland", + "Romania", + "Russia", + "Serbia", + "Slovakia", + "Slovenia" + ], + "Africa / Sub-Saharan Africa": [ + "Benin", + "Burkina Faso" + ], + "Europe (Western / General)": [ + "Austria", + "Germany" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5335, + "name": "TrustAfrica", + "address": "TrustAfrica Lot 4 Almadies Ngor Dakar Senegal", + "country": "Senegal", + "email": "info@trustafrica.org", + "website": "http://www.trustafrica.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "4 Route des Almadies, Ngor, Dakar, Senegal", + "lat": 14.7385274, + "lng": -17.5131516, + "zoom": 14, + "place_id": "EiI0IFJ0ZSBkZXMgQWxtYWRpZXMsIERha2FyLCBTZW5lZ2FsIjASLgoUChIJ237NBsUSwQ4Ry2kdRtvYFHIQBCoUChIJ3fD3cNwSwQ4RhVXVpkjXcuM", + "name": "4 Rte des Almadies", + "street_number": "4", + "street_name": "Route des Almadies", + "street_name_short": "Rte des Almadies", + "city": "Dakar", + "state": "Dakar", + "country": "Senegal", + "country_short": "SN" + }, + "link": "https://philea.eu/members/trustafrica/", + "philea_info": { + "About": "TrustAfrica, first known as the Special Initiative for Africa, began in 2001 under the aegis of the Ford Foundation. The premise was that Africans need a greater voice in the international donor community as well as philanthropic resources that Africans control. In 2006, TrustAfrica became a truly African foundation with the opening of new headquarters in Dakar, Senegal. The Ford Foundation continues to provide support, but the organisation is now independent and governed solely by Africans. TrustAfrica works mainly through collaboration and partnership with like-minded institutions and donors, and promotes good governance and management practices among African NGOs.", + "Mission": "To strengthen African initiatives that address the most difficult challenges confronting the continent.", + "Geographic Focus": "Africa", + "Programme Areas": "TrustAfrica is active in the following areas: • Democratic Governance\n• Equitable development\n• African philanthropy • Grants Democratic Governance\nSecures the conditions for democracy by strengthening the capacity of civil society organizations and by ensuring that citizens are fully engaged in governance processes—not just in their respective countries but also at the regional level. Equitable development\nSupports initiatives to foster African enterprise and extend the benefits of economic growth to all members of society. This includes:\n– Agricultural Development Project\n– Higher Education Reform\n– Women’s Rights\n– Investment Climate and Business Environment (ICBE) Research Fund\n– Early Learning Innovations African philanthropy\nSeeks to align external philanthropic resources with African agendas as well as to cultivate indigenous resources that support the continent’s own priorities for democracy and development." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 5330, + "name": "Tiina and Antti Herlin Foundation", + "address": "Tiina and Antti Herlin Foundation Kartanontie 1 00330 Helsinki Finland", + "country": "Finland", + "email": "info@tahsaatio.fi", + "website": "http://www.tahsaatio.fi/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Kartanontie 1, 00330 Helsinki, Finland", + "lat": 60.1943706, + "lng": 24.8812471, + "zoom": 14, + "place_id": "ChIJKfo3xgMKkkYR0XpLC79q_c8", + "name": "Kartanontie 1", + "street_number": "1", + "street_name": "Kartanontie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00330", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/tiina-and-antti-herlin-foundation/", + "philea_info": { + "About": "During their first years of activity they have mostly funded research and projects related to environmental matters, human rights, and climate change mitigation in particular.", + "Mission": "Tiina and Antti Herlin Foundation is an independent foundation, founded in 2014 to support and promote social welfare, culture, the environment and science, as well as their teaching and research." + }, + "tags_focus": [ + "Environment/Climate", + "Human/Civil Rights", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5329, + "name": "Thousand Currents", + "address": "Thousand Currents 1330 Broadway Suite #301 94612 Oakland, CA United States", + "country": "United States", + "email": "rajiv@thousandcurrents.org", + "website": "https://thousandcurrents.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Oakland, CA, United States", + "lat": 37.8043514, + "lng": -122.2711639, + "zoom": 14, + "place_id": "ChIJA-2qKIt9hYARZ5N1NdUVtHE", + "name": "Oakland", + "city": "Oakland", + "state": "California", + "state_short": "CA", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/thousand-currents/", + "philea_info": { + "About": "Since its founding in 1985, Thousand Currents invested in over 750 community-led initiatives in 37 countries in Africa, Asia, and Latin America. Thousand Currents was the inspiration of a group of returned Peace Corps volunteers who had a vision for a different kind of international development model. In 1985, they created International Development Exchange (IDEX, our former name) after seeing that small grants targeted to grassroots groups—who had the trust of their neighbors and the knowledge of what was needed in their own\ncommunities—were often more effective than traditional, large-scale philanthropy. In the subsequent decade, this model grew into a long-term partnership approach. Thousand Currents’ partnership approach to grantmaking inverts the paradigm of\nhow international “aid” efforts have historically been conducted by relying on the wisdom and strength of local people to tackle powerlessness and exclusion. Most large-scale development efforts are still, however, initiated and led by people external to the community with results that are often limited or short-lived. Local initiative ensures a readiness for change and ownership of the change process; it reflects cultural, social, political, geographic, and economic realities, a nuance of understanding that outsiders cannot possess.\nOver time, our strategies and practices have evolved as we have learned from the insights of our partners. For example, initially we provided short-term, project grants. However, in 2000, we transitioned to a partnership model, committing to long-term, flexible funding. In 2014, we adopted a revised theory of change that integrated feedback from our partners, crystallized the partnership model, and strengthened our philanthropic advocacy work. Our new strategy process commenced in 2017, when we held discussions with board, staff, and partners to gauge our direction (as elaborated in our goals above). Our work to channel flexible, general, long-term support to grassroots groups", + "Mission": "Our Vision: Thousand Currents envisions a world in which self-determined and connected people share and uphold the abundance of life. There is enough – for all and for future generations.\nOur Mission: Thousand Currents supports grassroots organizations and movements led by women, youth, and Indigenous Peoples that are creating lasting solutions toshared global challenges. Their work addresses the interdependent issues of food sovereignty, alternative economies, climate justice, and human rights.\nWhat we do: We work with our grassroots partners to scale their successes by building their capacity and leadership; and linking them to broader social change movements at the regional, national, and global levels. Through our Philanthropic Partnerships program, we work with donors to adopt transformative practices that dismantle injustice and inequity. We are a vocal and visible advocate for grassrootsled social change, bridging emerging approaches and learnings from the Global South with philanthropic models and practices in the Global North.\nOur partners resist government and corporate abuses of human and natural resources that perpetuate inequality, poverty, and injustice. They reimagine wealth, power, and well being to offer solutions that draw from ancestral wisdom. Through their\ninnovations, they reflect the needs of today and the possibilities of tomorrow. They move with steadfast dignity, resolve, and courage to build new sources of power through ingenuity and vision. They leave a lasting impact.\nOur Goals: Thousand Currents work is guided by our new three-year strategy, from 2018-2020.\nWe commit to use our resources, access, and influence to deepen the core and turn up the volume through more funding, stronger partnerships and initiatives, streamlined communications, and bolder philanthropic advocacy.\nWe will:\n· Build a stronger, more interconnected, and better-resourced ecosystem of partners in Africa, Asia, and Latin America.\n· Elevate our partners’", + "Geographic Focus": "Thousand Currents works with grassroots leaders, organizations, organizations, and movements in urban, suburban, and rural communities in Nepal, India, Fiji in Asia; South Africa, Ethiopia and Zimbabwe in Africa; and in Mexico, Guatemala, Peru, Brazil and Colombia in Latin America.", + "Programme Areas": "Thousand Currents’ programs build the power and leadership of indigenous women, create alternative economic solutions, as well as advance food sovereignty and climate justice.\n1. Building the Power of Indigenous Women\nFrom grassroots social movements to United Nations organizations, there is clear agreement on the key role indigenous women play in advancing human rights and social change. However, indigenous women continue to suffer the greatest brunt of state sanctioned repression. Our partners strengthen and increase rights, opportunities, self-worth, choices, resources, autonomy, and power of indigenous women through their programs and practices. They work to educate adolescent girls, eliminate domestic violence, increase women’s participation in civil society, and improve women’s access to wealth and resources. In 2014, after deep consultation with grassroots leaders, social movement activists, allies, and donors, we adopted a revised Theory of Change. It reinforced our partnership model and put Indigenous Peoples’ self-determination at the center of our community self-determination goal (for more detail on our Theory of Change, please see: https://thousandcurrents.org/about/#toc). Today our three-year strategy aims to strengthen our support of Indigenous Peoples and Women-led organizations by moving more resources to our partners, building and expanding stronger partnerships, and engaging in strategic philanthropic advocacy to bolster sector-wide grassroots support (for details on our new strategy, see: https://thousandcurrents.org/wp-content/uploads/2018/02/TC-Strategy-2018-20-\n1.pdf). Similarly, our regional strategies in Asia, Latin America, and Africa are expanding or deepening partnerships with organizations that are led-by and work for Indigenous women and communities.\nFor instance, in 2017, Thousand Currents invited four Peru grantee organizations for long-term partnerships, all of which are led-by or work for Indigenous Women: Red Ñuqanchik Maronijei Noshaninka, El Grupo Género y Economía (GGE or Gender and Economy Group), and Federación Nacional de Mujeres Campesinas, Artesanas, Indígenas, Nativas y Asalariadas del Perú (National Federation of Indigenous, Peasants, Artisans, Native and Wage-earning Women of Peru, or FENMUCARINAP), and Asociación para la Naturaleza y el Desarrollo Sostenible (the Association for Nature and Sustainable Development, or ANDES). Our partners have had much success in uplifting Indigenous Women in their communities. For instance in Guatemala, our partners have politically organized and trained the first democratically elected indigenous woman mayor of a small town. In partnership with a countrywide women’s rights political alliance, they have been instrumental in passing the landmark Anti-Femicide Law in Guatemala.\nIndigenous women farmers in Mexico and India are leading the way in agricultural innovations, training community members in reclaiming native seeds, increasing their self-sufficiency, and providing alternatives to the big agri-business model. In Nepal and South Africa, rural women are leveraging small-scale savings into community development by building locally controlled assets and advocating for women’s political empowerment.\n2. Alternative Economic Models\nWe prioritize producers and consumers, not shareholders. Thousand Currents envisions a world in which all communities not only have economic security, but also prosperity. Thousand Currents and its partners, especially organizations led by indigenous women, are developing economic solutions that enrich grassroots communities, build their economic power, and promote harmony between humans and the environment in the pursuit of dignified livelihoods. Our partners are active participants in creating change and building wealth—not just income—for their communities. Our partners help create local economies organized around solidarity and collective interests, rather than entrepreneurial principles.\nThey also:\n● build skills to use existing land and other natural resources in sustainable ways;\n● create access to collective savings and affordable credit through village banking;\n● generate income based on sustainably produced traditional arts and food production;\n● support collective manufacturing and capital generation to enter local and international markets;\n● train each other in financial management and cooperative development to survive employment discrimination;\n● ensure healthy and safe working conditions; and\n● equitably distribute decision-making power among all economic players.\nAn economic development model that many of our partners practice is the concept of “Solidarity Economy”, which is guided by equitable and sustainable development solutions. Individuals work in an organized, communal manner toward improving the lives of the entire group, seeking unity, promoting democracy, and considering the natural ecological equilibrium during production. This model shares common characteristics with efforts in the United States and in other parts of the world, such as worker cooperatives, community land trusts, and common pasturelands that democratize wealth and build a community-sustaining economy. For more information on Solidarity Economy, please see:\nhttps://thousandcurrents.org/supporting-the-solidarity-economy/.\n3. Food Sovereignty\nFood sovereignty allows communities have the autonomy to define their food systems, contextualized within a community’s cultural, traditional, political, and economic realities and traditions. It gives them the freedom to choose how their food is grown. Around the world, Thousand Currents partners in Africa, Asia, and Latin America have been reclaiming their food systems for decades. They focus on small-scale agroecological farming that leads to improved yields, better quality vegetables, lowered costs, and effective management of land, water, soil, and seeds.\nOur partners work to:\n● sharing sustainable and organic food production methods;\n● organizing to sell their food collectively at fair prices;\n● protecting biodiversity and genetic resources within ecosystems;\n● lowering costs while improving the quality and quantity of their yields; and\n● educating their governments to put smallholder farmers’ interests before those of multinational corporations.\n4. Climate Justice\nFor many of the communities where Thousand Currents partners work, climate change has led to contamination of water sources and air, deforestation of ancestral lands, and an increase of natural disasters and erratic weather patterns, which affect a community’s ability to grow enough food. Thousand Currents partners adopt a holistic approach to environmental challenges that not only honors our planet, but also creates opportunities for communities to manage the land, water, and seeds on which their lives and livelihoods depend. Further, agroecological practices are paramount in combating the enormous amount of greenhouse gas emissions, between 44% and 57%, resulting from the global food system. Also, our partners are also demanding accountability from polluting industries and fiercely lobbying the government to take responsibility for their environmental degradation.\nOur partners work to:\n● reduce communities’ vulnerability to natural disasters;\n● reclaim ancestral knowledge of land stewardship and food production;\n● share sustainable farming and grazing practices;\n● learn new technologies to rebuild healthy communities;\n● combat toxic waste and pollution;\n● address environmental racism; and\n● create ecologically sound alternative economies.\nWomen farmers form the backbone of the rural economy. As FAO research shows, bridging the gender gap in agriculture can significantly boost food security, and contribute to overall well-being. By fostering harmony between humans and their environment, Thousand Currents-supported communities are also successfully building wealth, local leadership, especially among women and indigenous groups, and broader community involvement in their initiatives." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Food, Agriculture & Nutrition", + "Health", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Brazil", + "Colombia", + "Guatemala", + "Latin America", + "Mexico", + "Peru" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Ethiopia", + "South Africa", + "Zimbabwe" + ], + "Asia & Pacific": [ + "Asia", + "Fiji", + "India", + "Nepal" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5328, + "name": "Third Sector Foundation of Turkey (TUSEV)", + "address": "Third Sector Foundation of Turkey Bankalar Caddesi Nº2. Minerva Han Kat:5 Karaköy 34420 Istanbul Turkey", + "country": "Turkey", + "email": "info@tusev.org.tr", + "website": "http://www.tusev.org.tr", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "İstanbul, Turkey", + "lat": 41.0082376, + "lng": 28.9783589, + "zoom": 14, + "place_id": "ChIJawhoAASnyhQR0LABvJj-zOE", + "name": "İstanbul", + "city": "İstanbul", + "state": "İstanbul", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/third-sector-foundation-of-turkey/", + "philea_info": { + "About": "TUSEV was set up in 1993 by 23 leading foundations and associations in Turkey. TUSEV now has over 110 organisations in its network. It is a private, non-profit foundation set up to promote the third sector in Turkey at national and international levels. It is an officially recognised, non-religious and non-political foundation independent of the state and governed by private statute with its own endowment.", + "Mission": "To strengthen the operational, legal and fiscal infrastructure of the third sector in Turkey.", + "Geographic Focus": "Turkey and international", + "Programme Areas": "The foundation seeks to achieve its mission of strengthening the third sector in Turkey through its four main programme areas: • Civil Society Law Reform: Enabling Civil Society\n• Social Investment: Promoting Strategic and Effective Giving\n• International Relations and Networking: Fostering Linkages\n• Research and Publications: Assessing and Understanding the Sector National Activities\nDevelops and distributes key reports and updates on legislative issues and changes; conducts research on civil society and philanthropy; organises meetings, seminars and conferences on topics regarding third sector development; provides consultation to NGOs on matters regarding regulations and formation; promotes local donor activity. International Activities\nParticipates in research programmes with international foundations and NGOs; develops/produces literature for the international community regarding the third sector in Turkey; organises meetings, seminars and conferences with international foundations and NGOs on topics regarding the third sector; participates in networks such as Worldwide Initiatives for Grantmaker Support (WINGS), World Alliance for Civil Participation (CIVICUS), International Society for Third Sector Research (ISTR) and the European Foundation Centre (EFC); collaborates with institutions such as the World Bank on strengthening civil society dialogue; and organises activities to encourage/facilitate closer links between Turkish foundations and NGOs and foreign foundations and NGOs. Also provides support to foreign foundations wishing to make grants/operate in Turkey." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 5326, + "name": "The Nando and Elsa Peretti Foundation", + "address": "The Nando and Elsa Peretti Foundation Allgemeines Treuunternehmen (ATU) Aeulestrasse 5 9490 Vaduz Liechtenstein", + "country": "Liechtenstein", + "email": "peter.prast@atu.li", + "website": "https://www.nandoandelsaperettifoundation.org/en/page.php", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Allgemeines Treuunternehmen (ATU), Aeulestrasse 5, 9490 Vaduz, Liechtenstein", + "lat": 47.140606, + "lng": 9.521298, + "zoom": 14, + "place_id": "ChIJKRSZjWcxm0cRuxoXjh3PbSA", + "name": "Allgemeines Treuunternehmen (ATU)", + "street_number": "5", + "street_name": "Aeulestrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/the-nando-and-elsa-peretti-foundation/", + "philea_info": { + "About": "Elsa Peretti, born in Florence, is the youngest daughter of Nando Peretti. She was educated in Rome and Switzerland. Elsa’s outspoken personality, intolerant of the conventions of her milieu, led her to seek a different approach to life. This search marked her restless youth, during which she lived in many different countries. Two places are particularly important to her: Barcelona, where she started her career as a fashion model, and New York, where she started what was to become her main activity: designing. After working with such leading fashion designers such as Giorgio di Sant’Angelo, Halston, and many more, she joined Tiffany and Co. in 1974. Since then she continues adding new items to her collection. The main source of inspiration for Elsa has always been nature. The same gift, which enables her to abstract the essence of a shape from the details surrounding it has brought her to develop a particular attention to life even in its humblest forms. Over time, this aesthetic enchantment grew into an active concern over the future of our planet. In this process, two major challenges stand out as the core of her struggle to give concrete help to our future: the protection of our environment and the empowerment of children by protecting their rights to education and health. At the beginning of the new millennium she realized what she considers today the most ambitious achievement of her life: to assemble a staff of motivated people in a Foundation passionate to take up these challenges.", + "Mission": "The Nando and Elsa Peretti Foundation commits its resources mostly to small and specific projects for the benefit of local, disadvantaged communities that also address issues of global relevance. The purposes of the foundation are exclusively charitable, scientific and educational. In particular, the NaEPF provides grant support in the following areas: – Environmental and animal protection, with focus on the area of organic farming, climate change mitigation and wildlife preservation;\n– Social inclusion and social welfare, including relief of poverty with a focus on elderly and children;\n– Global education;\n– Humanitarian or disaster relief;\n– Promotion and protection of human rights and the rule of law, with a special consideration to women’s right to education and equal treatment;\n– Health, medical care and scientific research;\n– Arts, culture or historical preservation", + "Geographic Focus": "Worldwide", + "Programme Areas": "‘- Environmental and animal protection, with focus on the area of organic farming, climate change mitigation and wildlife preservation;\n– Social inclusion and social welfare, including relief of poverty with a focus on elderly and children;\n– Global education;\n– Humanitarian or disaster relief;\n– Promotion and protection of human rights and the rule of law, with a special consideration to women’s right to education and equal treatment;\n– Health, medical care and scientific research;\n– Arts, culture or historical preservation" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5383, + "name": "The Ethos Foundation", + "address": "The Ethos Foundation 18 Buckingham Palace Road SW1W 0QP London United Kingdom", + "country": "United Kingdom", + "email": "ethosfoundation.uk@gmail.com", + "website": "", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "18 Buckingham Palace Road, London SW1W 0QP, United Kingdom", + "lat": 51.4977045, + "lng": -0.1443356, + "zoom": 14, + "place_id": "ChIJHXL6GCEFdkgRrvnbRBZYkh8", + "name": "18 Buckingham Palace Rd", + "street_number": "18", + "street_name": "Buckingham Palace Road", + "street_name_short": "Buckingham Palace Rd", + "city": "London", + "state": "England", + "post_code": "SW1W 0QP", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/the-ethos-foundation/", + "philea_info": { + "About": "The Founders are Grant and Brigitte Gordon.\nThe Foundation’s giving is informed by a multi-generational family commitment to philanthropy.", + "Mission": "OUR MISSION\nTo support local communities and UK society in general.\nWE VALUE\nKnowledge – learning every day\nSustainability – building a lasting legacy\nHumility – staying grounded", + "Geographic Focus": "No geographic exclusions; current programmes focus on UK, with particular interest in London and Scotland", + "Programme Areas": "PHILANTHROPY INFRASTRUCTURE IN THE UK: The Beacon Collaborative increases UK philanthropy and social investment through peer influence, public awareness, professional advice, political engagement, and research into giving and social investment. https://www.beaconawards.org.uk/\nCHILD POVERTY IN LONDON: The Childhood Trust provides matching funding for projects that operate throughout London and help to provide vital support to children living in poverty. https://www.childhoodtrust.org.uk/\nHERITAGE: The Cabrach Trust works to regenerate a thriving, sustainable community with its history, heritage and place in Scottish history celebrated and shared by all, through the creation of a Heritage Centre and historic working distillery providing much-needed local employment. https://www.cabrachtrust.org/ Grant Making\nThe Foundation does not accept unsolicited grant applications or proposals for funding.\nThe Foundation normally applies its annual income to charitable causes proactively selected by its trustees. Grant-making decisions aim to honour the family’s historical philanthropy and to make a positive impact going forward.\nFrom time to time, the Foundation may identify new focus areas and conduct research and due diligence to identify charities and programmes best placed to make a difference. Those identified will be invited to apply for support. The Foundation will work with prospective grantees in preparing materials and developing proposals for review by the trustees.\nGrants are normally made to a registered UK charity or CIO. The Ethos Foundation will generally not fund:\nIndividuals\nFundraising events\nMedical causes or scientific research\nReligious causes\nAnimal-related causes" + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Environment/Climate", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5207, + "name": "The Association of Swedish Foundations", + "address": "The Association of Swedish Foundations P.O. Box 3615 10359 Stockholm Sweden", + "country": "Sweden", + "email": "", + "website": "http://www.stiftelserisamverkan.se", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Stockholm, Sweden", + "lat": 59.32932349999999, + "lng": 18.0685808, + "zoom": 14, + "place_id": "ChIJywtkGTF2X0YRZnedZ9MnDag", + "name": "Stockholm", + "city": "Stockholm", + "state": "Stockholm County", + "country": "Sweden", + "country_short": "SE" + }, + "link": "https://philea.eu/members/the-association-of-swedish-foundations/", + "philea_info": { + "About": "The Association of Swedish Foundations was founded in 1989, and is a uniting force and a meeting place for Swedish foundations. Both foundations and individuals interested in topics regarding foundations may become members of the association. Furthermore, the Association of Swedish Foundations is one of the organizations consulted by the Swedish government on new legislation proposals.", + "Mission": "The Association of Swedish Foundations is an association of foundations and individuals dedicated to creating a supportive legal and fiscal environment for foundations. We also strive to emphasize the altruistic work of foundations and to show the important role of foundations in Swedish society. In order to achieve this we support cooperation, both among foundations and between foundations and other actors in society." + }, + "tags_focus": [], + "geo_locations": { + "Europe (Nordic Region)": [ + "Sweden" + ] + } + }, + { + "id": 5323, + "name": "Terre des Hommes - Netherlands", + "address": "Stichting Terre des Hommes Nederland Grote Marktstraat 43 2511 BH Den Haag Netherlands", + "country": "Netherlands", + "email": "info@tdh.nl", + "website": "http://www.terredeshommes.nl", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Grote Marktstraat 43, The Hague, Netherlands", + "lat": 52.0760376, + "lng": 4.31123, + "zoom": 14, + "place_id": "ChIJUb3-LyS3xUcR4MZsZqFklQ0", + "name": "Grote Marktstraat 43", + "street_number": "43", + "street_name": "Grote Marktstraat", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2511 BH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/terre-des-hommes-netherlands/", + "philea_info": { + "About": "In 1965, Dutch volunteers copied Frenchman Edmond Kaiser’s initiative in the Netherlands. In the beginning, Terre des Hommes Netherlands mainly helped children in emergency situations in developing countries via Dutch doctors. Over the years, however, the focus has shifted to structural aid through local project partners.", + "Mission": "To prevent child exploitation, removes children from exploitative situations and ensures these children can develop themselves in a safe environment.", + "Programme Areas": "Child exploitation is about serious violations of the rights of the child. The definition covers:\n– worst forms of child labour (according to Convention 182 of the ILO);\n– child trafficking;\n– sexual exploitation of children;\n– child abuse\nStopping child exploitation, the most serious violations of the rights of the child, has now become the main focus of Terre des Hommes Netherlands. This is not an easy fight; poverty can drive people to despair and prosecuting perpetrators of child exploitation is rarely a priority for local authorities. But Terre des Hommes is working, with its local partners, to build a world without child exploitation." + }, + "tags_focus": [ + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Global South / Majority World": [ + "Developing Countries" + ], + "Europe (Western / General)": [ + "Netherlands" + ] + } + }, + { + "id": 5322, + "name": "Fundacja TechSoup", + "address": "Fundacja TechSoup ul. Bracka 25 00-028 Warsaw Poland", + "country": "Poland", + "email": "", + "website": "https://www.techsoup.pl/content/fundacja", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "TechSoup Polska, Bracka, Warsaw, Poland", + "lat": 52.2321134, + "lng": 21.0155602, + "zoom": 14, + "place_id": "ChIJcUsEvvrMHkcRMAdUE5sRqlU", + "name": "TechSoup Polska", + "street_number": "25", + "street_name": "Bracka", + "city": "Warszawa", + "state": "Województwo mazowieckie", + "post_code": "00-028", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/fundacja-techsoup/", + "philea_info": { + "About": "Fundacja TechSoup (FTS) helps civil society organizations benefit from technology to achieve their missions. FTS supports nonprofits by providing ICT resources, organizing and providing access to data, convening activists, and sharing knowledge.", + "Mission": "Fundacja TechSoup (FTS) helps civil society organizations benefit from technology to achieve their missions. FTS supports nonprofits by providing ICT resources, organizing and providing access to data, convening activists, and sharing knowledge.", + "Programme Areas": "– Technology: FTS provides cheaper access to legal, up-to-date software, hardware, solutions and services to nonprofits, libraries and museums in Poland through TechSoup Polska.\n– Education: We also teach how to use new technologies. We organize training and international events for our partners, civil society organizations and grass-root activists that learn how technology helps to tell their stories, attract allies, earn money or boost their media literacy skills (Akademia Dobrej Komunikacji, DIGILEAD, MEGAPHONE, Hive Mind).\n– Tech4Good Solutions: Together with organizations, activists, IT specialists, local administration, and funders we build social applications and civic tech products and take care of their development (eg. Apps4Warsaw, Appss4Cities, TransparenCEE).\n– CSR Services: Fundacja TechSoup facilitates collaborations and the flow of technological knowledge, between the business, non-governmental and public sectors. Thanks to local connections, relevant expertise, and large capacity to quickly develop meaningful and far-reaching CSR projects, Fundacja Techsoup collaborates with corporations locally, regionally, and globally and create, curate, and scale CSR projects and solutions across many communities (Meet and Code)." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Poland" + ] + } + }, + { + "id": 5321, + "name": "SwissFoundations", + "address": "SwissFoundations Haus der Stiftungen, Kirchgasse 42, 8001 Zürich, Switzerland ", + "country": "Switzerland", + "email": "info@swissfoundations.ch", + "website": "http://www.swissfoundations.ch", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "SwissFoundations, Kirchgasse 42, 8001 Zürich, Switzerland", + "lat": 47.3705033, + "lng": 8.546036599999997, + "zoom": 14, + "place_id": "ChIJMYQG6qugmkcR5_rSmVty-qU", + "name": "SwissFoundations", + "street_number": "42", + "street_name": "Kirchgasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8001", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/swissfoundations/", + "philea_info": { + "About": "Founded in 2001, SwissFoundations gives Switzerland’s charitable grant-making foundations a strong and independent voice.", + "Mission": "The association is committed to liberal political framework conditions and a positive public perception of charitable grant-making foundations. It connects foundations with each other and with other relevant stakeholders from politics, science, business and society and provides them with practical support in their day-to-day foundation work. SwissFoundations promotes self-reflection and a culture of learning and inspires foundations to engage in impact-orientated, professional and transparent funding activities. SwissFoundations is the publisher of numerous studies and publications, including the Swiss Foundation Code." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Switzerland" + ] + } + }, + { + "id": 5319, + "name": "Svenska Kulturfonden", + "address": "Svenska Kulturfonden Simonsgatan 8 A, 5:e våningen PB 439 00101 Helsingfors Finland", + "country": "Finland", + "email": "kansliet@kulturfonden.fi", + "website": "http://www.kulturfonden.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Finlandia-talo Oy, Mannerheimintie, Helsingfors, Finland", + "lat": 60.1756992, + "lng": 24.9336092, + "zoom": 14, + "place_id": "ChIJMSt58zIKkkYRAOiy0w3BzQ4", + "name": "Finlandia Hall", + "street_number": "13e", + "street_name": "Mannerheimintie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/svenska-kulturfonden/", + "philea_info": { + "About": "Svenska kulturfonden (Swedish Cultural Foundation in Finland) was established in 1908, at a time in history when the right of the Swedish-speaking population to use their own language and have their own culture was at risk. Today, the foundation plays a bridging role in a bilingual society, and, through its work, wants to enhance the understanding of the value of living in a country with two languages.", + "Mission": "To support and strengthen the culture and education of the Swedish-speaking minority in Finland.", + "Geographic Focus": "Primarily the coastal areas of Finland where Swedish is spoken as a mothertongue. Cooperation with and support to projects in the rest of the country as well as the Nordic countries and the rest of Europe.", + "Programme Areas": "The work of the foundation is divided into five lines of action: • Arts and culture\n• Education\n• The Swedish language\n• Social cohesion through NGOs and other third sector associations\n• International activities Annually, they contribute around 33 million Euros of funding. and about 8,000 applications are received annually. According to the rules and regulations of the around 460 individual funds that together form the Swedish Cultural Foundation in Finland, the foundation awards grants both to institutions, associations and individuals with educational and cultural activities and interests. In addition to its grant making activities, the foundation initiates larger projects in the fields of culture and education, organises conferences on varying themes for key froups, and awards a number of prizes each year." + }, + "tags_focus": [ + "Arts & Culture", + "Education" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland", + "Nordic Region", + "Sweden" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5318, + "name": "Svenska folkskolans vänner r.f.", + "address": "Svenska folkskolans vänner r.f. Annegatan 12 A 00120 Helsinki Finland", + "country": "Finland", + "email": "sfv@sfv.fi", + "website": "http://www.sfv.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Svenska folkskolans vänner r.f., Annankatu, Helsinki, Finland", + "lat": 60.164536, + "lng": 24.9400829, + "zoom": 14, + "place_id": "ChIJMZciLMoLkkYRQFRdZUwKC7o", + "name": "Svenska folkskolans vänner r.f.", + "street_number": "12", + "street_name": "Annankatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/svenska-folkskolans-vanner-r-f/", + "philea_info": { + "About": "Originally established to start and support primary schools and libraries for the Swedish speaking population in Finland, SFV’s mission today is much broader (see above). Today SFV has more than 9,000 members, publishes its own series of books and magazines and organises a wide range of seminars and study circles in most parts of the country.", + "Mission": "To promote and endorse Swedish language and culture in Finland, through educational programmes, grants, scholarships and annual competitions in creative writing.", + "Geographic Focus": "Finland (mostly the Swedish speaking regions) and The Nordic countries", + "Programme Areas": "1. Grants and scholarships\nSFV support governments and other organisations that provide Swedish language courses for children and adults. 2. Education, literature and culture\nThere are several methods used by SFV to spread the language and culture. Through SFV Formation (an adult education and service organisation for 57 NGO’s) they run educational programmes, with more than 950 courses and workshops, with almost 20,000 participants. They also own a training programme called Axxel, they own one publishing house, Atena, and are co-owners of another, WSOY & Söderströms. SFV also runs a cultural and educational centre called Festal (Ballroom) G18. 3. Publications\nThe organisation produces it’s own publications. Members receive the SFV magazine and the SFV calendar, plus new members will receive a book." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland", + "Nordic Region", + "Sweden" + ] + } + }, + { + "id": 5317, + "name": "Stiftung Mercator GmbH", + "address": "Stiftung Mercator GmbH Huyssenallee 40 45128 Essen Germany", + "country": "Germany", + "email": "info@stiftung-mercator.de", + "website": "http://www.stiftung-mercator.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stiftung Mercator GmbH, Huyssenallee 40, 45128 Essen, Germany", + "lat": 51.44743, + "lng": 7.0099374, + "zoom": 14, + "place_id": "ChIJ03SNyM7CuEcRNmQ7c8Kw6uw", + "name": "Stiftung Mercator GmbH", + "street_number": "40", + "street_name": "Huyssenallee", + "city": "Essen", + "city_short": "E", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "45128", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/stiftung-mercator-gmbh/", + "philea_info": { + "About": "Stiftung Mercator in Essen was founded by the Schmidt family, which donated a substantial amount of its own assets to the foundation. The foundation started officiallyiin 1996, with a regional focus on the North Rhine-Westfalia region in Germany.In 2008, the foundation did a strategic review and has focused on three programmatic areas and three geographical areas. The review has has also resulted in substantial growth, an increase in budget and staff numbers. Today, it is one of the largest private foundations in Germany.", + "Mission": "To prevent dangerous climate change, promote integration and strengthen arts, education, and to provide fair and equal opportunities so that everyone can participate in today’s society.", + "Geographic Focus": "The foundation has, apart from its homeland Germany, three regional areas of focus, placing Germany in a globalised world; Europe, Turkey and China.", + "Programme Areas": "The foundation’s motto is “inspiring ideas”, something which it achieves by combining advocacy and practical work around three areas: science and humanities, education and international affairs. Overarching these, the foundation has defined three interdisciplinary thematic clusters to further broaden its profile: • Integration\n• Climate change\n• Cultural education Integration\nAims to reduce by 2025 the inequality in Germany in terms of school and university qualifications (based on the 2005 level) by 70% for young people of migrant background, aged 15-30. As an interim target, the foundation is working to reduce these discrepancies by 30% by 2015. Climate change\nAims to reduce man-made greenhouse gas emissions in Germany by 40% by 2020 and by at least 80% by 2050, measured against the 1990 levels. Cultural education\nAims to anchor cultural education permanently within the formal educational system in North Rhine-Westphalia and three other states in Germany by 2015, and in all of the country’s federal states by 2025." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ], + "Worldwide": [ + "Global", + "World" + ], + "Europe (Southern / Mediterranean)": [ + "Turkey" + ], + "Asia & Pacific": [ + "China" + ] + } + }, + { + "id": 5316, + "name": "Stiftung Deutsche Welthungerhilfe", + "address": "Stiftung Deutsche Welthungerhilfe Friedrich Ebert Strasse 1 D-53173 Bonn Germany", + "country": "Germany", + "email": "info@welthungerhilfe.de", + "website": "http://www.welthungerhilfe.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Welthungerhilfe, Friedrich-Ebert-Straße, Bonn, Germany", + "lat": 50.6823765, + "lng": 7.1605514, + "zoom": 14, + "place_id": "ChIJD6Z5u27kvkcR8ADndtpnmS0", + "name": "Welthungerhilfe", + "street_number": "1", + "street_name": "Friedrich-Ebert-Straße", + "city": "Bonn", + "city_short": "BN", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "53173", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/stiftung-deutsche-welthungerhilfe/", + "philea_info": { + "About": "In 1960 the Food and Agriculture Association (FAO) of the United Nations decided to launch a ‘freedom from hunger campaign’. At the same time it urged the Member States to intensify their efforts in their fight against deprivation, poverty, and hunger with cooperation from non-governmental organisations. Consequently, in 1962 the German Federal President Heinrich Lübke called together important representatives of social organisations in the Deutscher Ausschuss für den Kampf gegen den Hunger (German Committee for the Fight Against Hunger). In 1967 the Committee renamed itself ‘Deutsche Welthungerhilfe e.V.’", + "Mission": "To provide long-term, continuous support to Welthungerhilfe’s projects.", + "Geographic Focus": "Asia, Africa, Latin America, Caribbean", + "Programme Areas": "Stiftung Deutsche Welthungerhilfe is active in the following areas: • Hunger\n• Conflict and Disaster\n• Climate\n• Development Cooperation\n• Education" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Caribbean", + "Latin America" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5313, + "name": "Stichting Instituut Gak", + "address": "Stichting Instituut Gak ‘s-Gravelandseweg 49 1217 EH Hilversum Netherlands", + "country": "Netherlands", + "email": "info@instituutgak.nl", + "website": "http://www.instituutgak.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Instituut Gak, 's-Gravelandseweg 49, 1217 EH Hilversum, Netherlands", + "lat": 52.2269437, + "lng": 5.1678373, + "zoom": 14, + "place_id": "ChIJVxUAq2BrxkcRRY0WCkNWJG8", + "name": "Instituut Gak", + "street_number": "49", + "street_name": "'s-Gravelandseweg", + "city": "Hilversum", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1217 EH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/stichting-instituut-gak/", + "philea_info": { + "About": "Foundation Institute Gak is an equity fund that provides grants to projects in the areas of social security and labour market policy in the Netherlands. Foundation Institute Gak gives content within the criteria on the one hand, by spontaneous (practical) applications. On the other hand, the Foundation is funding scientific research in the framework of the scientific research programme (see separate Web page). In addition, the Foundation is funding a number of special chairs in the field of social security to Dutch universities.", + "Mission": "Supporting projects and programms in the field of social security and labour market.", + "Geographic Focus": "The Netherlands", + "Programme Areas": "Social Security\nLabour market\nScientific research" + }, + "tags_focus": [ + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Netherlands" + ] + } + }, + { + "id": 5312, + "name": "Stichting Fonds 1818", + "address": "Stichting Fonds 1818 Riviervismarkt 4 2313 AM The Hague Netherlands", + "country": "Netherlands", + "email": "info@fonds1818.nl", + "website": "http://www.fonds1818.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fonds 1818, Riviervismarkt, The Hague, Netherlands", + "lat": 52.0766884, + "lng": 4.306905, + "zoom": 14, + "place_id": "ChIJ52ApXi-3xUcRwS8uuyoaKdg", + "name": "Fonds 1818", + "street_number": "5", + "street_name": "Riviervismarkt", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2513 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/stichting-fonds-1818/", + "philea_info": { + "About": "Fonds 1818 was established in its present form in 1992. It is a private, non-profit organisation created to make donations to projects of general interest in the area around The Hague in the Netherlands. In doing so, the foundation operates closely in line with the ideals of its predecessors, the original Dutch savings banks at the beginning of the 19th Century.", + "Mission": "To support projects that contribute to the maintenance and improvement of a liveable Dutch society, aimed at a sustainable future.", + "Geographic Focus": "The Hague, Delft, Zoetermeer, Leiden, Noordwijk and surrounding area", + "Programme Areas": "The foundation makes donations to specific projects in the following areas: • Youth\n• Culture\n• Nature and the environment\n• Health\n• Social projects" + }, + "tags_focus": [ + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Netherlands" + ] + } + }, + { + "id": 5310, + "name": "Stefan Batory Foundation", + "address": "Stefan Batory Foundation ul. Sapiezynska 10a 00-215 Warsaw Poland", + "country": "Poland", + "email": "batory@batory.org.pl", + "website": "http://www.batory.org.pl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Foundation. Stefan Batory, Sapieżyńska 10A, 00-215 Warsaw, Poland", + "lat": 52.2538507, + "lng": 21.0024074, + "zoom": 14, + "place_id": "ChIJvafqI3HMHkcRi1KbhyvtFgM", + "name": "Foundation. Stefan Batory", + "street_number": "10A", + "street_name": "Sapieżyńska", + "city": "Warszawa", + "state": "Mazowieckie", + "post_code": "00-215", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/stefan-batory-foundation/", + "philea_info": { + "About": "The Stefan Batory Foundation is an independent private Polish foundation established in 1988 by American financier and philanthropist George Soros and a group of Polish democratic leaders from the 1980’s. Cooperating with the Soros network, it has complete autonomy in its decision-making process.", + "Mission": "To support the development of an open, democratic society in Poland and other Central and East European countries.", + "Geographic Focus": "Poland and Central and Eastern Europe", + "Programme Areas": "The foundations’s work is divided into grantmaking and operational programmes: Grantmaking programs – Citizens for Democracy: the aim of the programme is to strengthen civil society development and enhance the contribution of non-governmental organizations to social justice, democracy and sustainable development.\n– Equal Opportunities: the programme consists in the development of a local scholarship system for secondary school students based on local community activity and resources. Through this programme the foundation intends to contribute to equalize the educational opportunities of children from urban and rural areas and help talented youth from low-income families.\n– For Belarus: The program’s objective is to support civic initiatives aimed at building an open society and preparing for democratic changes in Belarus. Operational programs – Debates: through Batory Foundation’s Debates the foundations aims to establish an independent meeting and discussion forum for politicians, professionals, public intellectuals and journalists. The goal is to foster public debate on issues important to the future of its country and region.\n– Your Vote, Your Choice: the programme’s goal is to increase public interest in local affairs and to encourage civic participation in public life, including an informed and responsible participation in local and parliamentary elections.\n– Public Integrity: the goal of the programme is to increase transparency and integrity in public life and to promote open, accountable governance.\n– Open Europe: the goal of the programme is to promote an active, coherent and friendly Polish and European Union policy towards our Eastern neighbors and to support democratic processes and pro-European trends in Eastern Europe.\n– Regional Alcohol and Drug Program: launched in 1996, the programme promotes innovative addiction treatment methodologies in Central and Eastern European and Central Asian countries. Its main purpose is to provide both theory and practice to clinical professionals and educators in the field of alcohol and drug prevention and treatment addressed to the population of addicted patients and their families\n– ECFR Warsaw: In September 2011, the Warsaw Office of the European Council on Foreign Relations (ECFR) was opened at the Batory Foundation. The goal of the ECFR Warsaw Office is to plug Polish political and expert milieus into the general European debate on EU external policy. The Office disseminates ECFR analyses and reports and organizes debates, discussions and conferences about them. It also undertakes its own research and expert analyses." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe", + "Poland" + ] + } + }, + { + "id": 5309, + "name": "Stavros Niarchos Foundation (SNF)", + "address": "Stavros Niarchos Foundation (SNF) 86A Vas. Sofias Avenue 11528 Athens Greece", + "country": "Greece", + "email": "info@snf.org", + "website": "http://www.snf.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stavros Niarchos Foundation, Vasilissis Sofias, Athens 115 28, Greece", + "lat": 37.9813085, + "lng": 23.7557287, + "zoom": 14, + "place_id": "ChIJZfpgIVG9oRQR_O2TmCmVU7I", + "name": "SNF Headquarters", + "street_number": "86Α", + "street_name": "Vasilissis Sofias", + "city": "Athina", + "state": "Kentrikos Tomeas Athinon", + "post_code": "115 28", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/stavros-niarchos-foundation/", + "philea_info": { + "About": "The Stavros Niarchos Foundation (SNF) is one of the world’s leading private, international philanthropic organizations, making grants to nonprofit organizations in the areas of arts and culture, education, health and sports, and social welfare. SNF funds organizations and projects worldwide that aim to achieve a broad, lasting, and positive impact for society at large, and exhibit strong leadership and sound management. The Foundation also supports projects that facilitate the formation of public-private partnerships as an effective means for serving public welfare.", + "Mission": "In 2021, SNF celebrated 25 years of grantmaking. Over the past quarter-century, SNF has formed thousands of partnerships with organizations around the world, seeking to help create lasting positive impact for society. In this work, SNF has been guided by commitment to an open process, accessible to anyone, anytime, and to equal opportunity. SNF’s work, in addition to making grants to nonprofit organizations around the globe, has expanded in recent years to include initiatives to help promote civil discourse, productive exchange of ideas, and civic engagement. Every year, SNF organizes SNF Nostos, including the SNF Run and SNF Conference, at the SNFCC. In addition to this annual gathering, SNF is committed to fostering regular opportunities for discussion and dialogue and offers the monthly SNF Dialogues series in an effort to strengthen public discourse by presenting—live and online—individuals who inspire with their work and a forum for people to engage with them.", + "Geographic Focus": "Greece, Europe, Africa, America, South Asia, Australia, International", + "Programme Areas": "The foundation is active in the following areas: Arts and Culture\nEducation\nHealth and Sports\nSocial Welfare Arts and culture Provides funds and grants to cultural and art organizations, institutions and museums for cultural or art programs and projects, performances, publications, exhibitions, events, related campaigns, renovations and conservation initiatives, infrastructure and equipment needs. Education Provides funds and grants to universities, schools, educational institutions and non-profit organizations for courses and lectures, educational and research programs, publications, expeditions, facilities and equipment, operating support and field staff costs. Health and Sports Provides funds and grants to medical centers, hospitals, foundations, associations and institutions for medical research, specialized healthcare and treatment programs, equipment and operating support. Social welfare Provides funds and grants to associations, community institutions, foundations and public benefit organizations for disaster relief efforts, water, hygiene and sanitation projects, infrastructure, equipment and vehicles, operating support; several of these projects address handicapped people, children and/or women in need." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Asia & Pacific": [ + "Asia", + "Australia" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Southern / Mediterranean)": [ + "Greece" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5308, + "name": "Special Olympics Europe/Eurasia", + "address": "Special Olympics Europe/Eurasia Avenue Louise 43 B-1050 Brussels Belgium", + "country": "", + "email": "wbyrne@specialolympics.org", + "website": "http://www.specialolympics.org/Regions/europe-eurasia/_Region-Front/Europe-Eurasia.aspx", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Avenue Louise 43, Saint-Gilles, Belgium", + "lat": 50.83394879999999, + "lng": 4.3566524, + "zoom": 14, + "place_id": "ChIJP7Gk2YnEw0cR0MA9XKNV6Po", + "name": "Av. Louise 43", + "street_number": "43", + "street_name": "Avenue Louise", + "street_name_short": "Av. Louise", + "city": "Saint-Gilles", + "state": "Bruxelles", + "post_code": "1060", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/special-olympics-europe-eurasia/", + "philea_info": { + "About": "Special Olympics Inc. is a global organisation registered in the U.S. which has 7 regional branches, SOEE being one of them, and provides its mission to over 70 Countries around the globe.", + "Mission": "Special Olympics’ mission is to provide year-round sports training and athletic competition in a variety of Olympic-type sports for children and adults with intellectual disabilities, giving them continuing opportunities to develop physical fitness, demonstrate courage, experience joy and participate in a sharing of gifts, skills and friendship with their families, other Special Olympics athletes and the community.", + "Geographic Focus": "Global" + }, + "tags_focus": [ + "Education", + "Health", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 5307, + "name": "Sparebankstiftelsen DnB", + "address": "Sparebankstiftelsen DnB NOR P.O. Box 555 Sentrum 0105 Oslo Norway", + "country": "Norway", + "email": "post@sparebankstiftelsen.no", + "website": "http://www.sparebankstiftelsen.no", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Oslo, Norway", + "lat": 59.9138688, + "lng": 10.7522454, + "zoom": 14, + "place_id": "ChIJOfBn8mFuQUYRmh4j019gkn4", + "name": "Oslo", + "city": "Oslo", + "state": "Oslo", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/sparebankstiftelsen-dnb/", + "philea_info": { + "About": "The foundation’s capital is a result of accumulated profits from the former Norwegian savings banks which are now part of DnB NOR- Norway’s largest financial services group. The foundation continues the savings banks’ tradition of giving monetary gifts to non-profit causes.", + "Mission": "To contribute to charitable causes and invest in causes that benefit the general public.", + "Geographic Focus": "Norway", + "Programme Areas": "Funds a wide range of charitable causes from community to national projects including the support of fine arts, children’s activities and heritage projects." + }, + "tags_focus": [ + "Arts & Culture", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Norway" + ] + } + }, + { + "id": 5086, + "name": "Spanish Association of Foundations", + "address": "Spanish Association of Foundations C/ Serrano Anguita, 13 28004 Madrid Spain", + "country": "Spain", + "email": "info@fundaciones.org", + "website": "http://www.fundaciones.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Spanish Association of Foundations, Impact Hub Barceló, Calle de Serrano Anguita, 13, 28004 Madrid, Spain", + "lat": 40.4276989, + "lng": -3.699074899999999, + "zoom": 14, + "place_id": "ChIJ_1huM44oQg0RxXFi6ksN4Gw", + "name": "Spanish Association of Foundations", + "street_number": "13", + "street_name": "Calle de Serrano Anguita", + "street_name_short": "C. de Serrano Anguita", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28004", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/spanish-association-of-foundations/", + "philea_info": { + "About": "The Spanish Association of Foundations (AEF) is a private and independent association of national scope. It brings together nearly 800 Spanish foundations of the most diverse dimensions, purposes and areas of action. It is the most representative entity of the sector at national level. AEF was established on 22 January 2003 as a result of the merger of the Foundations Center and the Spanish Confederation of Foundations. It carries out the work and experience of more than 30 years of the two previous associations.", + "Mission": "AEF’s mission is to work for the benefit of the whole foundational sector in favor of its development and strengthening.\nThree main purposes:\nRepresent and defend the interests of Spanish foundations; Strengthen and articulate the sector; Improve the professionalization and management of foundations, contributing to their transparency and good governance." + }, + "tags_focus": [], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 5306, + "name": "Society of Swedish Literature in Finland, The", + "address": "Society of Swedish Literature in Finland, The Ritarikatus 5 00170 Helsingfors Finland", + "country": "Finland", + "email": "info@sls.fi", + "website": "http://www.sls.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Finlandia-talo Oy, Mannerheimintie, Helsingfors, Finland", + "lat": 60.1756992, + "lng": 24.9336092, + "zoom": 14, + "place_id": "ChIJMSt58zIKkkYRAOiy0w3BzQ4", + "name": "Finlandia Hall", + "street_number": "13e", + "street_name": "Mannerheimintie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/society-of-swedish-literature-in-finland-the/", + "philea_info": { + "About": "The Society of Swedish Literature in Finland was founded as a learned society in 1885 to preserve, develop and mediate the Swedish cultural heritage in Finland. Since 1908 the society has held and administered the Swedish Cultural Foundation in Finland.", + "Mission": "The Society of Swedish Literature in Finland is a learned society that preserves, develops and mediates the Swedish cultural heritage in Finland. The Society is a versatile and future-oriented cultural institution of Finland-Swedish literature, culture and research. The aims of the Society are realised through the archives and the library, the publishing unit, the research unit, the distribution of grants and scholarships and the financial administration. The Society of Swedish Literature is one of the largest managers of public funds in Finland.", + "Geographic Focus": "Finland", + "Programme Areas": "The main programme areas of the associoation: – research in the humanities and social sciences,\n– preserving cultural heritage and archives\n– academic publishing in the humanities and social sciences,\n– giving scholarships and prizes for research and cultural activities Archives:\nThe archives of the Society of Swedish Literature in Finland strive to preserve the central parts of the Swedish cultural heritage in Finland, and to store this heritage in a safe manner in order to further mediate it to researchers or other individuals who take an interest in the culture, language, history and traditions of the Finland-Swedish people. Individual archives are received primarily as donations, but also in part as depositions. Publishing and Foreign Rights:\nThe publishing unit of the Society of Swedish Literature publishes scientific works of writing within the subjects of history, literary history, the Swedish language, ethnology, folklore and sociology. Historical source editions and text-critical editions also make up an important part of the publications. All of the books published are connected to the Swedish-speaking culture in Finland.The aim of the Society’s publishing unit is to publish culturally valuable books for the interest of research as well as for the reading public. As a scientific publishing house, the Society attaches great importance to the books fulfilling the requirements of scientific accuracy, as well as to the quality of the language and design. Library:\nThe library of the Society of Swedish Literature in Finland is a scientific library. Several historically valuable collections can be found in our collection, as well as both old and new scientific literature. The library contributes actively to research and education, especially within its own area of emphasis, the history of books. Research:\nThe research sector represents the most significant activity within the Society. By having increasingly concentrated on individual research since the beginning of the millennium, the Society has become one of the great financiers of research within the fields of humanities and social sciences in Finland. Related to the Society’s aims and fields of interest, research is carried out within the subjects of history, literary history, social sciences, the Swedish language and traditions. Researchers are employed for certain projects and with the scientific committees. The research sector seeks and maintains contact with other research institutions and financiers in Finland and the Nordic countries. The scientific committees of the Society of Swedish Literature act as mediating links to the Swedish-speaking university world in Finland. Prizes and Scholarships:\nUpon application and examination, the Society of Swedish Literature in Finland distributes scholarships and means for research out of specific funds, which aims have usually been established by the donator of the respective funds. Upon application, the scientific committees distribute research scholarships from their own budget. Also individuals whose mother tongue is not Swedish can apply for means in order to carry out research if the planned research relates to the fields of interest and aims of the Society. The Society’s task is to promote scientific activity. The Society assigns the majority part of its profits to support its own activities, such as the archives and the library, research, publishing, projects and events that relate to these activities." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5303, + "name": "Simavi", + "address": "Simavi Naritaweg 135 1043BS Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@simavi.nl", + "website": "http://simavi.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Stichting Simavi, Naritaweg 135, 1043 BS Amsterdam, Netherlands", + "lat": 52.3877099, + "lng": 4.832788499999999, + "zoom": 14, + "place_id": "ChIJJ4Y6XjjvxUcRa40lzL0rcYY", + "name": "Stichting Simavi", + "street_number": "135", + "street_name": "Naritaweg", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1043 BS", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/simavi/", + "philea_info": { + "About": "Simavi was founded in 1925 by two medical doctors, Dr. John Van der Spek and Dr. H. Bervoets. Their aim was to provide medical assistance for health institutions in the former Dutch East Indies. Ever since, Simavi has been working to improve standards of health in developing countries.\nSimavi was an acronym for Steun Inzake Medische Aangelegenheden Voor Inheemschen (Support for Medical Affairs for Indonesians). In its early years, Simavi shipped medicines, essentiall health supplies and resources over the ocean to support the work of medical missionary staff.\nOver the course of its history, Simavi expanded the scale of their operations and activities.\nSimavi has worked with over 30 million people in thousands of high-impact projects and is active in nine countries: Bangladesh, Nepal, India, Indonesia, Ghana, Malawi, Kenya, Tanzania and Uganda.\nSimavi is now working supporting local CSOs and initiatives, shifting from transporting medicines to working with an integrated approach on local, national and international levels.", + "Mission": "Simavi believes in A Healthy Life for All. Simavi strives for a world in which all women and girls are socially and economically empowered, and pursue their rights to live a healthy life free from discrimination, coercion and violence", + "Geographic Focus": "Bangladesh, Nepal, India, Ghana, Malawi, Kenya, Tanzania, Uganda", + "Programme Areas": "‘- Bodily autonomy\n– Sexual and reproductive health and rights\n– gender based violence\n– women’s social and economic empowerment\n– water, sanitation and hygiene (WASH)" + }, + "tags_focus": [ + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Asia & Pacific": [ + "Bangladesh", + "India", + "Nepal" + ], + "Africa / Sub-Saharan Africa": [ + "Ghana", + "Kenya", + "Malawi", + "Tanzania", + "Uganda" + ] + } + }, + { + "id": 5369, + "name": "Serbian Philanthropy Forum", + "address": "Serbia", + "country": "Serbia", + "email": "office@filantropskiforum.com", + "website": "https://www.srpskifilantropskiforum.org/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Serbia", + "lat": 44.016521, + "lng": 21.005859, + "zoom": 7, + "place_id": "ChIJlYCJ8t8dV0cRXYYjN-pQXgU", + "name": "Serbia", + "country": "Serbia", + "country_short": "RS" + }, + "link": "https://philea.eu/members/serbian-philanthropy-forum/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Serbia" + ] + } + }, + { + "id": 5299, + "name": "Sabanci Foundation", + "address": "Sabanci Foundation Sabanci Center, 4. Levent Kule:2, Kat:8 34330 Istanbul Turkey", + "country": "Turkey", + "email": "info@sabancivakfi.org", + "website": "http://www.sabancivakfi.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "İstanbul, Turkey", + "lat": 41.0082376, + "lng": 28.9783589, + "zoom": 14, + "place_id": "ChIJawhoAASnyhQR0LABvJj-zOE", + "name": "İstanbul", + "city": "İstanbul", + "state": "İstanbul", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/sabanci-foundation/", + "philea_info": { + "About": "The Sabanci family has contributed greatly to furthering the Turkish economy with numerous industrial conglomerates and investments since the establishment of the Sabanci Holding and Sabanci Group companies in 1967. Having placed much importance on the value of social and cultural institutions, the Sabanci family members are prominent figures in various charitable initiatives. In an attempt to institutionalise their philanthropic activities, the Haci Omer Sabanci Foundation (Sabanci Foundation) was established in 1974 by the sons of the late Haci Omer and Sadika Sabanci with a generous contribution of Sadika Sabanci’s estate.", + "Mission": "To promote social development and social awareness among current and future generations by supporting initiatives that create impact and lasting change in people’s lives.", + "Geographic Focus": "Turkey", + "Programme Areas": "Sabanci Foundation is active in the following areas: Institutions\nSince its establishment, Sabanci Foundation has built over 120 institutions in 78 residential areas among Turkey: – Sabanci University (www.sabanciuniv.edu)\n– 37 Educational institutions\n– 19 Dormitories\n– 16 Teacher centres\n– 5 Health care centres and hospitals\n– 16 Cultural Centres\n– 8 Social Facilities\n– 5 Sports facilities – 9 Contributions to Other Institutions Scholarships\nMore than 42,500 scholarships have been provided by Sabanci Foundation since 1974. Four different types of scholarships are given to 400 new students and a total of more than 1,500 students each year for: • University admission\n• Underdeveloped provinces\n• Students with disabilities\n• Sabanci Foundation – Vista Scholarship Scholarships are awarded so that successful students with financial difficulties can pursue a university education. Scholarships are not bound to any compulsory service or repayment obligation. Awards\nSince its establishment the foundation has given over 1000 awards, divided into three categories: • Educational Awards\n• Art Awards\n• Sports Awards Arts and Culture\nThe foundation supports various festivals and contests to promote culture and art in Turkey: – Turkish Folk Dances Contest\n– International Sabanci Adana Theatre Festival\n– National Youth Philharmonic Orchestra\n– Mehtap Ar Children Theatrical Company\n– Ankara International Music Festival\n– Support for the excavation of the ancient city of Metropolis Programmes\nSabanci Foundation aims to enable social inclusion by promoting an equitable environment in which women, youth and persons with disabilities have access and equal opportunities to actively participate in society. The foundation does this through grantmaking, joint partnership programmes, seminars and other programme activities: • Social Development Grant Program\n• “Turkey’s Changemakers” TV Program\n• United Nations Joint Program to Promote and Protect the Human Rights of Women and Girls: Partnership and Grant Program\n• Grant Program for Multidimensional Women’s Empowerment\n• Sabanci Foundation Seminars" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 5298, + "name": "Saastamoinen Foundation", + "address": "Saastamoinen Foundation Pieni Roobertinkatu 5 B 15 00930 Helsinki Finland", + "country": "Finland", + "email": "petteri.karttunen@saastamoinenfoundation.fi", + "website": "http://www.saastamoinenfoundation.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Pieni Roobertinkatu 5, Helsinki, Finland", + "lat": 60.1642976, + "lng": 24.9463729, + "zoom": 14, + "place_id": "ChIJ9bm4AskLkkYRb_lJS8zoCVc", + "name": "Pieni Roobertinkatu 5", + "street_number": "5", + "street_name": "Pieni Roobertinkatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00130", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/saastamoinen-foundation/", + "philea_info": { + "About": "Saastamoinen Foundation is a family foundation with roots deep in the Finnish forest industry. As stipulated in its rules, the purpose of the Foundation is “to promote and support the development of the Finnish economy and the use of the natural resources of our country, as well as research that is intended to develop the country’s spiritual and material life, and to maintain an art collection.”See more our history from our web pages.", + "Mission": "The Saastamoinen Foundation discharges its duties today as follows:\nThe Foundation maintains, develops and exhibits the art collection and thereby supports art and artists both in Finland and internationally. The Foundation’s art collection is permanently in display in EMMA – Espoo Museum of Modern Arts, and it is developed actively.\nThe Foundation supports and awards grants to promote science and education. This it does in cooperation with, among others, the University of Eastern Finland, Aalto University, and the Academy of Fine Arts of the University of Fine Arts; its highest aim is to promote international research, education and networking.\nThe Foundation manages its assets in a way that allows the implementation of the two above-mentioned tasks and their development in the long run.", + "Geographic Focus": "Main focus is in Finland. But as stated in our mission we support art and artists both in Finland and internationally. When supporting science and education, it's highest aim is to promote international research, education and networking. As example we have many different residence programs, we bring international professors to Finland, have three different Fullbright programs etc.", + "Programme Areas": "Broadly Arts & science. The Foundation art collection is permanently on display in EMMA – Espoo Museum of Modern Art and it is developed actively. The Foundations main partners in the field of grants for promotion of science and higher education institutes continue to be the University of Easter Finland, Aalto University and the Academy of Fine Arts at the University of Arts Helsinki. We also have other grants and donations. As examples of that is Anti Festival International Prize for Live Arts and Me & MYcity learning environment project. See more from our web pages and annual report." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5296, + "name": "Romanian-American Foundation", + "address": "Romanian-American Foundation 6, Gina Patrichi (former Orlando) Street 010449 Bucharest 1 Romania", + "country": "Romania", + "email": "office@rafonline.org", + "website": "http://www.RAFonline.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Romanian-American Foundation, Strada Gina Patrichi 6, Bucharest, Romania", + "lat": 44.4493683, + "lng": 26.0894794, + "zoom": 14, + "place_id": "ChIJzRp3U1T_sUARPs2PXQpkhNE", + "name": "Romanian-American Foundation", + "street_number": "6", + "street_name": "Strada Gina Patrichi", + "city": "București", + "state": "București", + "post_code": "010449", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/romanian-american-foundation/", + "philea_info": { + "About": "The Romanian-American Foundation came into being in 2009, after approval by the US Congress. The Foundation grew out of a 1994 U.S. government grant of $50 million establishing the Romanian-American Enterprise Fund (RAEF), to support Romania’s transition to a free market economy. Operating under the provisions of the SEED Act (Support to East European Democracy), RAEF’s fusion of investments and development activities in over fifteen years of active presence in Romania resulted in the Foundation’s $150 million endowment.", + "Mission": "The Romanian-American Foundation’s mission is to strengthen and promote conditions for a sustainable market economy and a democratic society that provide access to opportunities for all segments of the population in Romania.", + "Geographic Focus": "Romania", + "Programme Areas": "Rural Economy\nAlmost half of the country’s population lives in rural areas, with many struggling on the verge of subsistence. We asked ourselves: What if they thrive? The two niches where we believe our interventions can help rural communities develop and take advantage of the demand from urban centers are small farmers and ecotourism. Small farmers can generate growth while working the land more efficiently. Rural areas are also a cradle for pristine land and centuries-old traditions which make them attractive ecotourism destinations. Technology & Innovation\nThe technology and innovation sectors are increasingly relevant for Romania. Our programs seek to help the future talent of Romania take advantage of business opportunities related to innovation and new product development, a shift that will require higher numbers of tech specialists with a new set of skills. Our intervention focus education, and we work closely with a large universe of partners (universities, NGOs that in turn work with teachers and schools, and partners from the business sector) to design entrepreneurial programs that match the educational offer to the industry needs, endowing students with the technical and soft skills required by competitive markets. Civic Engagement\nPeople involved in the life of the city, taking part in the decision-making process and contributing to solving their communities’ problems, supporting the causes they believe in, volunteering, choosing their representatives and holding them accountable, are the corner stones of a democratic society. We invest in the growth of an infrastructure for philanthropy and civic engagement and offer civic education programs designed to help the younger generations become engaged and empowered citizens." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Romania" + ] + } + }, + { + "id": 5294, + "name": "Rockefeller Philanthropy Advisors", + "address": "Rockefeller Philanthropy Advisors 437 Madison Avenue, 37th Floor NY 10022 New York United States", + "country": "United States", + "email": "info@rockpa.org", + "website": "http://www.rockpa.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "437 Madison Avenue, NY, New York 10022, United States", + "lat": 40.7573533, + "lng": -73.97524349999999, + "zoom": 14, + "place_id": "ChIJr8O4RvxYwokR06DPVPxymuc", + "name": "437 Madison Ave", + "street_number": "437", + "street_name": "Madison Avenue", + "street_name_short": "Madison Ave", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10022", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/rockefeller-philanthropy-advisors/", + "philea_info": { + "About": "In 1891, John D. Rockefeller, Sr. set out to manage his philanthropy “as if it were a business.” RPA maintains that commitment to practicality and strategic acumen; RPA believes that giving is a natural, enriching part of human life.", + "Mission": "To help donors create thoughtful, effective philanthropy throughout the world.", + "Programme Areas": "‘- Strategy & Consulting\n– Management & Implementation\n– Fiscal Sponsorship" + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "North America": [ + "United States" + ] + } + }, + { + "id": 5293, + "name": "Rockefeller Brothers Fund", + "address": "Rockefeller Brothers Fund 475 Riverside Drive, Suite 900 NY 10115 New York United States", + "country": "United States", + "email": "communications@rbf.org", + "website": "http://www.rbf.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Rockefeller Brothers Fund, 475 Riverside Drive, NY, New York 10115, United States", + "lat": 40.8108449, + "lng": -73.9640282, + "zoom": 14, + "place_id": "ChIJObtpQj_2wokRNsvzZVDQfYk", + "name": "Rockefeller Brothers Fund", + "street_number": "475", + "street_name": "Riverside Drive", + "street_name_short": "Riverside Dr", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10115", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/rockefeller-brothers-fund/", + "philea_info": { + "About": "The Rockefeller Brothers Fund (RBF) was founded in 1940 as a vehicle through which the five sons and daughters of John D. Rockefeller Jr could share a source of advice and research on charitable activities and combine some of their philanthropic activities to better effect. John D. Rockefeller Jr. made a substantial gift to the fund in 1951, and in 1960 the fund received a major bequest from his estate. Together these constitute the basic endowment of the RBF. In 1952, the founders began to include non-family members on the board. In 1958, the first of a number of daughters and sons of the founders joined the board, and in 1992 the first of their grandchildren. The foundation merged with the Charles E. Culpeper Foundation in 1999.", + "Mission": "To advance social change that contributes to a more just, sustainable, and peaceful world.", + "Geographic Focus": "US, namely New York City; and Southern China, Western Balkans", + "Programme Areas": "RBF’s grantmaking is organised around three themes: Democratic Practice, Peace and Security, Sustainable Development, and three pivotal places: New York City, Southern China, and the Western Balkans. • Democratic Practice\n• Sustainable Development\n• Peace and Security\n• Pivotal Place: New York City\n• Pivotal Place: Southern China\n• Pivotal Place: Western Balkans Democratic Practice\nSeeks to strengthen the vitality of democracy in the United States and in global governance. The programme’s core ideas—that for democracy to flourish and deliver on its promises its citizens must be engaged, empowered, and assertive, and institutions of governance must be inclusive, transparent, accountable, and responsive—provide a frame for the Fund’s Democratic Practice work in the United States and in global governance. Peace and Security\nThe Peace and Security programme reflects the Fund’s longstanding recognition of the complexities and possibilities that arise from global interdependence, and its enduring commitment to helping create the conditions for lasting peace in which justice and democratic governance prevail and sustainable development paths lead to shared prosperity in societies worldwide. Sustainable Development\nAdvances global stewardship that is ecologically based, economically sound, socially just, culturally appropriate, and consistent with intergenerational equity. Human activity is causing global warming, rapid loss of biodiversity, and accelerating degradation of Earth’s life support systems. With the recognition that the impact of unchecked climate change threatens all other conservation efforts, the programme focuses its grantmaking on advancing solutions to climate change. Pivotal Place: New York City\n– The Charles E. Culpeper Arts & Culture grants honor the legacy of Charles E. Culpeper by supporting the artists and arts and cultural organizations that make New York City one of the world’s most dynamic creative capitals.\n– The Pocantico Center is a venue for conferences and meetings on critical issues related to the Rockefeller Brothers Fund’s mission. It also serves as a community resource and offers public access through a visitation program, lectures, and cultural events, as well as support to artists and arts organizations in the greater New York City area. The RBF’s stewardship of the Pocantico Historic Area includes overseeing the maintenance, care, conservation, and restoration of the historic buildings, gardens, and collections of decorative and fine art. Located 20 miles north of Manhattan in the Pocantico Historic Area, The Pocantico Center is managed by the Rockefeller Brothers Fund as part of its agreement with the National Trust for Historic Preservation. Pivotal Place: Southern China\nAssists efforts by the Chinese government and people to support Southern China’s rapid development and the profound challenges, including environmental degradation and growing disparities between rich and poor, urban and rural which, which if not addressed, threaten the sustainability of development in the region, the country, and the world. Pivotal Place: Western Balkans\nThe Fund’s work in the Balkans, and especially in Serbia, Montenegro, and Kosovo, gives special attention to democratic practice and sustainable development requirements." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Environment/Climate" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans" + ], + "Asia & Pacific": [ + "China" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5292, + "name": "Robert Bosch Stiftung GmbH", + "address": "Robert Bosch Stiftung Heidehofstraße 31 70184 Stuttgart Germany", + "country": "Germany", + "email": "", + "website": "http://www.bosch-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Robert Bosch Stiftung GmbH, Heidehofstraße 31, 70184 Stuttgart, Germany", + "lat": 48.77749319999999, + "lng": 9.1996634, + "zoom": 14, + "place_id": "ChIJxZbap8fEmUcRQ9lqXktR3YY", + "name": "Robert Bosch Stiftung GmbH", + "street_number": "31", + "street_name": "Heidehofstraße", + "city": "Stuttgart", + "state": "Baden-Württemberg", + "state_short": "BW", + "post_code": "70184", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/robert-bosch-stiftung-gmbh/", + "philea_info": { + "About": "The Robert Bosch Stiftung works in the fields of health, education and global issues. Through its funding, it is committed to a fair and sustainable future. The foundation is a non-profit, independent and non-partisan organisation. It traces its origins to the legacy of Robert Bosch. In his will, the entrepreneur and founder set out a dual mandate: to ensure the continued existence of the company and to carry on his social commitment. Robert Bosch Stiftung GmbH maintains its own institutions, develops innovative projects and provides funding at both international and local levels. The foundation contributes the insights gained from its funding to the professional community and the public debate.", + "Mission": "We publish calls for proposals organised by theme to clearly indicate the areas in which we are currently seeking new partnerships or projects, and where there is a realistic chance of securing funding. We are unable to process or respond to funding requests or project ideas that are sent to us unsolicited.", + "Geographic Focus": "The foundation operates in Germany and Europe, as well as in West Africa and West Asia", + "Programme Areas": "The Robert Bosch Stiftung addresses social issues in three areas of support:\nHealth\nEducation\nGlobal Issues Please find more information about the Robert Bosch Stiftung here: www.bosch-stiftung.de" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ] + } + }, + { + "id": 5291, + "name": "RNW Media", + "address": "RNW Media Witte Kruislaan 55a 1217 AM Hilversum Netherlands", + "country": "Netherlands", + "email": "connect@rnw.org", + "website": "https://www.rnw.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "RNW Media, Witte Kruislaan 55A, 1217 AM Hilversum, Netherlands", + "lat": 52.24425420000001, + "lng": 5.165984100000001, + "zoom": 14, + "place_id": "ChIJjZoR0VVrxkcRARGi9Bk9wig", + "name": "RNW Media", + "street_number": "55A", + "street_name": "Witte Kruislaan", + "city": "Hilversum", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1217 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/rnw-media/", + "philea_info": { + "About": "RNW Media is the former Radio Netherlands Worldwide, which was founded as the Dutch international public broadcaster. Now RNW is a multimedia organisation promoting free speech in countries where freedom of expression is restricted. They use media to make lives better.", + "Mission": "RNW Media uses media for change. With innovative approaches to media and training we connect communities and change-makers, enabling young people to make informed choices.", + "Geographic Focus": "China, Sub-Saharan Africa, Latin America, Arab World", + "Programme Areas": "Three core themes:\n-democracy\n-good governance\n-sexual health and rights, international justice" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Middle East & North Africa (MENA)": [ + "Arab World" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Sub-Saharan Africa" + ], + "Asia & Pacific": [ + "China" + ], + "Worldwide": [ + "World" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5289, + "name": "Riksbankens Jubileumsfond", + "address": "Riksbankens Jubileumsfond Kungsträdgårdsgatan 18, P.O. Box 5675 114 86 Stockholm Sweden", + "country": "Sweden", + "email": "rj@rj.se", + "website": "http://www.rj.se/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stockholm, Sweden", + "lat": 59.32932349999999, + "lng": 18.0685808, + "zoom": 14, + "place_id": "ChIJywtkGTF2X0YRZnedZ9MnDag", + "name": "Stockholm", + "city": "Stockholm", + "state": "Stockholm County", + "country": "Sweden", + "country_short": "SE" + }, + "link": "https://philea.eu/members/riksbankens-jubileumsfond/", + "philea_info": { + "About": "Stiftelsen Riksbankens Jubileumsfond was endowed by the Bank of Sweden in 1962 as an independent foundation to commemorate the Bank’s tercentenary. In 1993, Riksdag, the Swedish Parliament, approved the contribution of a further donation to the foundation aimed at encouraging research in the humanities and social sciences.", + "Mission": "To support and promote scientific research, primarily in the Humanities and Social Sciences, Law and Theology.", + "Geographic Focus": "Sweden and international", + "Programme Areas": "The foundation works broadly along two lines:\n– First, high-quality research proposed in applications from the researchers themselves is funded within the framework of the regular support forms: projects, programmes, infrastructure for research, and research initiation.\n– Second, there are focused initiatives serving, in accordance with the Statutes, to develop Swedish research and enhance its international status. Programmes\nProgrammes are RJ’s support form for major research assignments requiring large research groups for six to eight years. Projects\nA project is a research assignment usually carried out over a maximum of three years by a single researcher or small research group. Infrastructure for research\nInfrastructure for research relates to initiatives aimed at making possible and promoting future research. Grants are awarded for measures to prepare for research, such as establishing new research environments or creating platforms to develop collaboration between the research community and other institutions. Research initiation\nTo meet the research community’s demand for grants to cover academic meetings and establishment of academic networks, RJ awards grants for research initiation. The applications span a broad range, from contributions to international conferences held both in Sweden and abroad to working conferences on new research areas, seminars, network support and preparation of new research programmes. FOCUSED INITIATIVES\nFocused (also known as ‘thematic’ or ‘proactive’) initiatives are used to develop and strengthen Swedish research. They vary in nature, ranging from career posts for young researchers to funding calls in high-priority research areas. These initiatives also provide scope for testing new solutions and alternative work procedures, and for results being used in a subsequent stage to develop the researcher-initiated forms of support.\n– Pro Futura\n– RJ Sabbatical\n– Europe and Global Challenges\n– Flexit\n– New Prospects for Humanities and Social Sciences" + }, + "tags_focus": [ + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Nordic Region)": [ + "Sweden" + ] + } + }, + { + "id": 5288, + "name": "Realdania", + "address": "Realdania Jamers Plads 2 DK-1551 Copenhagen V Denmark", + "country": "Denmark", + "email": "realdania@realdania.dk", + "website": "http://www.realdania.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Realdania, Jarmers Plads, Copenhagen Municipality, Denmark", + "lat": 55.67947599999999, + "lng": 12.564626, + "zoom": 14, + "place_id": "ChIJuzJJ5w5TUkYRzFEwIsUw1EM", + "name": "Realdania", + "street_number": "2", + "street_name": "Jarmers Plads", + "street_name_short": "Jarmers Pl.", + "city": "København", + "post_code": "1551", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/realdania/", + "philea_info": { + "About": "Realdania was established in late 2000 following a merger between two large financial institutions. Realdania is a strategic foundation created with the objective of initiating and supporting projects that improve the built environment.", + "Mission": "To improve quality of life for the common good through the built environment.", + "Geographic Focus": "Denmark", + "Programme Areas": "Realdania contributes to development and change within the built environment, seeking to improve the quality of life, for the benefit of Denmark and its inhabitants.\nThis is realised through a multitude of initiatives that all share a common strategic focus. Realdania projects focus on issues of general interest, set new norms and are oriented towards communication and research. Key areas are: • Health Through the Built Environment\n• Sustainable Development in the Built Environment\n• The Transformation of the Suburbs" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 5286, + "name": "Prins Claus Fonds for Culture and Development", + "address": "Prins Claus Fonds for Culture and Development Kingsfordweg 151 1043 GR Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@princeclausfund.org", + "website": "https://princeclausfund.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "1043 GR Amsterdam, Netherlands", + "lat": 52.38588540000001, + "lng": 4.8426952, + "zoom": 14, + "place_id": "ChIJZSgAZl7ixUcRSOudUzx3YyM", + "name": "1043 GR", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "post_code": "1043 GR", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/prins-claus-fonds-for-culture-and-development/", + "philea_info": { + "About": "The Prince Claus Fund was established on 6 September 1996 as a tribute to HRH Prince Claus’s dedication to culture and development.", + "Mission": "The Prince Claus Fund supports, connects, and celebrates artists and cultural practitioners where cultural expression is under pressure.", + "Geographic Focus": "Latin America, Africa, Asia, the Caribbean and Eastern Europe.", + "Programme Areas": "Cultural Emergency Response\nWe provide quick help to evacuate, stabilise or rescue cultural heritage that is under imminent threat of destruction or that has been damaged by man-made or natural disasters through our Cultural Emergency Response programme (CER). Prince Claus Awards\nAll over the world there are extraordinary people active in the cultural field, many are working in areas where cultural expression faces challenges. Each year we honour a select group of these individuals and organisations whose excellent work is having a positive impact on their societies. Grants & Collaborations\nOur Grants & Collaborations programme supports cultural practitioners, artists and organisations in various ways, often in collaboration with other funding institutions. Opportunities to apply open up throughout the year. Next Generation\nThe Next Generation is a programme created specifically for and with young people (ages 15-30).\nThrough this programme we are looking for partnerships with organisations that work with young people to build more inclusive, open-minded societies and provide safe spaces for young people to create their own narratives." + }, + "tags_focus": [ + "Arts & Culture", + "Humanitarian & Disaster Relief", + "Youth/Children Development" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Caribbean", + "Latin America" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5285, + "name": "het Cultuurfonds", + "address": "het Cultuurfonds Herengracht 476, 1017 CB Amsterdam, P.O.Box 19750 1000 GT Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@cultuurfonds.nl", + "website": "http://www.cultuurfonds.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Herengracht 476, Amsterdam, Netherlands", + "lat": 52.3650263, + "lng": 4.891598, + "zoom": 14, + "place_id": "ChIJMRKh8eoJxkcRR7pqJMuQYIU", + "name": "Herengracht 476", + "street_number": "476", + "street_name": "Herengracht", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1017 CB", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/het-cultuurfonds/", + "philea_info": { + "About": "The Cultuurfonds was founded in London in 1940 by Prince Bernhard, father of Beatrix of the Netherlands, to buy war material for the British and Dutch Governments. It continued after the war as Prins Bernhard Cultuurfonds aimed at rebuilding the war torn cultural life in The Netherlands. Headquartered on the Herengracht canal in Amsterdam, the foundation has 12 local branches, one in each of the Dutch provinces. There is also a separate Distribution Committee for projects in the Caribbean part of the Kingdom of the Netherlands.", + "Mission": "To support cultural and nature preservation projects in The Netherlands, The Netherlands Antilles (Curaςao, Bonaire, St. Maarten, St. Eustatius, Saba) and Aruba.", + "Geographic Focus": "Netherlands, Netherlands Antilles and Aruba", + "Programme Areas": "The foundation is active in the following areas: • Domestic initiatives\n• Awards and prizes\n• Bursaries Domestic Initiatives\nOffers subsidy grants for projects in the Netherlands which focus on the performing arts, visual arts, the restoration of monuments, publications and nature conservation. Awards and Prizes\nMany of the foundation’s regional branches offer their own prizes and awards, and in addition the foundation itself offers three flagship schemes: • The Prince Bernhard Culture Prizes: encompasses a variety of prizes under the general area of culture, such as the Martinus Nijhoff Prize for Translation/Interpretation which takes place every year. Each prize has its own jury and financial reward.\n• The Charlotte Köhler Prize: supports and encourages young talent artists, architects and dramatists up to 35 years old.\n• The Silver Carnation Award: this annual prize is awarded to those who have done the most work in promoting Dutch culture, and the culture of the Netherlands Antilles and Aruba. Bursaries\nOffers study bursaries to young, talented students to allow them to pursue courses at university and high school, particularly if the course is based outside of the Netherlands." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Netherlands" + ] + } + }, + { + "id": 5283, + "name": "Portuguese Foundation Centre", + "address": "Portuguese Foundation Centre Centro Cultural de Belém, Sala D, Praça do Império, 1449-003 Lisbon, Portugal", + "country": "Portugal", + "email": "cpf@cpf.org.pt", + "website": "http://www.cpf.org.pt", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Portuguese Foundation Centre Centro Cultural de Belém, Sala D, Praça do Império, 1449-003 Lisbon, Portugal", + "lat": 38.6955029, + "lng": -9.208354199999999, + "zoom": 14, + "place_id": "ChIJW51RQkPLHg0RNpVMhpDspDY", + "street_name": "Praça do Império", + "city": "Lisboa", + "state": "Lisboa", + "post_code": "1449-003", + "country": "Portugal", + "country_short": "PT" + }, + "link": "https://philea.eu/members/portuguese-foundation-centre/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Portugal" + ] + } + }, + { + "id": 5282, + "name": "Porticus", + "address": "Porticus P.O. Box 7867 1008 AB Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@porticus.com", + "website": "http://www.porticus.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Amsterdam, Netherlands", + "lat": 52.3675734, + "lng": 4.9041389, + "zoom": 14, + "place_id": "ChIJVXealLU_xkcRja_At0z9AGY", + "name": "Amsterdam", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/porticus/", + "philea_info": { + "About": "Porticus builds on a heritage of charitable engagement that dates back to Clemens and August Brenninkmeijer, the two brothers who founded the clothing retailer C&A in 1841. In fact, the first record of a gift can be found in the personal ledger of August who, only months after founding the company, recorded a donation “to the poor”. It was from these modest beginnings that the culture of responsibility and engagement developed. As natural as it was for the company’s founders to share their good fortune with the needy, so too was it natural for them to do so quietly. As the business grew and expanded globally, the generations of family entrepreneurs that followed continued and solidified the tradition of charitable giving.", + "Mission": "Porticus manages the grant-giving programmes of the charitable entities established by Brenninkmeijer family entrepreneurs. They look to foster the development of citizens and make a contribution to their own development as well that of their communities. They focus on the areas of education, society, care and faith in order to promote respect of human dignity and social justice", + "Geographic Focus": "International", + "Programme Areas": "Every year, approximately 3,000 projects are supported in more than 80 countries around the world.\nThe programme areas they are active in are:\n-Education\n-Society\n-Faith\n-Climate." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "International" + ] + } + }, + { + "id": 5281, + "name": "Polish Donors Forum", + "address": "Polish Donors Forum ul. Mokotowska 65/7 00-533 Warsaw Poland", + "country": "Poland", + "email": "poczta@forumdarczyncow.pl", + "website": "http://www.forumdarczyncow.pl", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Mokotowska 65, Warsaw, Poland", + "lat": 52.2266891, + "lng": 21.0221065, + "zoom": 14, + "place_id": "ChIJ9S1defDMHkcRA6OQ_tVeX0Y", + "name": "Mokotowska 65", + "street_number": "65", + "street_name": "Mokotowska", + "city": "Warszawa", + "state": "Mazowieckie", + "post_code": "00-530", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/polish-donors-forum/", + "philea_info": { + "About": "Established in 2004, the Polish Donors Forum is an association of independent grant-making organisations for public-benefit purposes.", + "Mission": "The main statutory objective of the Polish Donors Forum is to support institutional philanthropy in Poland and to promote the best practices of grantmaking. The Forum undertakes activities aimed at creating a friendly operating environment for donors and their grantees. It also acts as a platform for experience sharing and exchange of information and expertise, encouraging peer learning and promotion of good practices in the donor community." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Poland" + ] + } + }, + { + "id": 5280, + "name": "Plan Børne Fonden", + "address": "PLAN BØRNE FONDEN Mimersgade 47, 4. 2200 N Copenhagen Denmark", + "country": "Denmark", + "email": "mail@planbornefonden.dk", + "website": "https://planbornefonden.dk/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "PlanBørnefonden, Mimersgade, København N, Denmark", + "lat": 55.6992115, + "lng": 12.5476594, + "zoom": 14, + "place_id": "ChIJUX1VjqdTUkYRMxyd9gTbtfI", + "name": "Plan International Denmark", + "street_number": "47", + "street_name": "Mimersgade", + "city": "København", + "post_code": "2200", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/plan-borne-fonden/", + "philea_info": { + "About": "Plan Børne Fonden is established out of an international movement to support children in need in developing countries. Our ambition is to provide children and their families from poor communities with the possibility to make a brighter future for themselves. As such Plan Børne Fonden works in local communities with local partners, authorities and stakeholders to ensure a sustainable and well rooted development.\nPlan Børne Fonden is managing and operating its own programmes and activities through its local offices in each of the 5 programme countries. Thus our own staff works directly with beneficiaries, partners and local stakeholders.\nPlan Børne Fonden is financed by individual sponsorship and from external grants, and often co-fund its activities in cooperation with international, national and institutional donors.", + "Mission": "Plan Børne Fonden works to improve the living conditions for children and young people in the poorest countries in the world. They work to enhance the opportunities of poor people to a healthier and safer upbringing and a brighter future.", + "Geographic Focus": "Western Africa - Mali, Burkina Faso, Benin, Togo and Cape Verde", + "Programme Areas": "Children and youth empowerment and development\nRights of children and youth\nHealth (including healthcare, nutrition, water and sanitation, sexual and reproductive health)\nEducation and Entrepreneurship" + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Benin", + "Burkina Faso", + "Cabo Verde", + "Mali", + "Togo" + ] + } + }, + { + "id": 5279, + "name": "Philanthropy Ireland", + "address": "Philanthropy Ireland Ltd 56 Fitzwilliam Square 2 Dublin Ireland", + "country": "Ireland", + "email": "info@philanthropyireland.ie", + "website": "http://www.philanthropyireland.ie", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "2 Fitzwilliam Square Dublin, Dublin 2, Dublin, Ireland", + "lat": 53.33428699999999, + "lng": -6.251283499999999, + "zoom": 14, + "place_id": "ChIJD0ctTL0OZ0gRmjdgB2o6Arg", + "name": "2 Fitzwilliam Pl", + "street_number": "2", + "street_name": "Fitzwilliam Place", + "street_name_short": "Fitzwilliam Pl", + "city": "Dublin 2", + "state": "County Dublin", + "state_short": "D", + "post_code": "D02 K227", + "country": "Ireland", + "country_short": "IE" + }, + "link": "https://philea.eu/members/philanthropy-ireland-ltd/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "Ireland" + ] + } + }, + { + "id": 5277, + "name": "PeaceNexus Foundation", + "address": "PeaceNexus Foundation Rt de Lausanne 107 CH-1197 Prangings Switzerland", + "country": "Switzerland", + "email": "info@peacenexus.org", + "website": "http://www.peacenexus.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "PEACENEXUS, Route de Lausanne 107, 1197 Prangins, Switzerland", + "lat": 46.3918994, + "lng": 6.254621799999999, + "zoom": 14, + "place_id": "ChIJG5nGiBlDjEcRS7BfVtOg5jE", + "name": "PEACENEXUS", + "street_number": "107", + "street_name": "Route de Lausanne", + "street_name_short": "Rte de Lausanne", + "city": "Prangins", + "state": "Vaud", + "state_short": "VD", + "post_code": "1197", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/peacenexus-foundation/", + "philea_info": { + "About": "PeaceNexus was founded by Anne Gloor and has been supported since its inception by an endowment fund granted by the philanthropist Hansjörg Wyss through the Wyss Foundation.", + "Mission": "PeaceNexus’ mission is to strengthen the competencies and collaboration of organisations to increase their effectiveness and contribution to building peace.", + "Geographic Focus": "Work at the international level and in four focus regions: West Africa, Western Balkans, Central Asia and South East Asia", + "Programme Areas": "PeaceNexus provides services to multiply the peacebuilding impact of their partners through: – organisational development for peacebuilding champions;\n– developing capacities for conflict sensitivity, and\n– supporting inclusive dialogue with business and other partners to develop solutions to local peacebuilding challenges." + }, + "tags_focus": [ + "Peace & Conflict Resolution" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Central & Eastern / Balkans)": [ + "Balkans" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ] + } + }, + { + "id": 5276, + "name": "Paul Hamlyn Foundation", + "address": "The Paul Hamlyn Foundation 5-11 Leeke Street WC1X 9HY London United Kingdom", + "country": "United Kingdom", + "email": "information@phf.org.uk", + "website": "http://www.phf.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Paul Hamlyn Foundation, Leeke Street, London, UK", + "lat": 51.53029950000001, + "lng": -0.1180191, + "zoom": 14, + "place_id": "ChIJS71-rjgbdkgRn29H_3pkr7o", + "name": "Paul Hamlyn Foundation", + "street_number": "5-11", + "street_name": "Leeke Street", + "street_name_short": "Leeke St", + "city": "London", + "state": "England", + "post_code": "WC1X 9HY", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/paul-hamlyn-foundation/", + "philea_info": { + "About": "Paul Hamlyn set up the Foundation in 1987 and left a substantial sum on his death to enlarge it. His values were summarised in the motto – ‘There must be a better way’, words which we have adapted in our strapline to describe what we want to achieve – ‘Towards a better way’. That way is towards being a society that is fair, allows people to realise their potential, fights prejudice, encourages and assists participation in and enjoyment of the arts and learning, and understands the importance of the quality of life for all communities.", + "Mission": "Their mission is to help people to realise their potential and enjoy a better quality of life, now and in the future.", + "Geographic Focus": "United Kingdom and India", + "Programme Areas": "Arts; with special initiatives focused on organisational change in museums and galleries, supporting artists and innovation in the art sector and artists working in participatory setting.\nEducation & Learning; with special initiatives focused on music education, residential learning and good practice in the HR sector.\nSocial Justice; with special initiatives focused on refugee/migrant rights, the criminal justice system and supporting young people with mental health issues.\nIndia; open grants focused on building capacity in NGOS working with vulnerable groups." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "Asia & Pacific": [ + "India" + ] + } + }, + { + "id": 5274, + "name": "Open Society Foundations", + "address": "Open Society Foundations OSIFE, C/Elisabets, 24 08001 Barcelona Spain", + "country": "Germany", + "email": "info@opensocietyfoundations.org", + "website": "http://www.opensocietyfoundations.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carrer d'Elisabets, 24, Barcelona, Spain", + "lat": 41.3830253, + "lng": 2.1679675, + "zoom": 14, + "place_id": "ChIJ6wVnsfWipBIR9Sd2UXoKRNM", + "name": "Carrer d'Elisabets, 24", + "street_number": "24", + "street_name": "Carrer d'Elisabets", + "city": "Barcelona", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08001", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/open-society-foundations/", + "philea_info": { + "About": "Open Society Institute OSI was created in 1993 by investor and philanthropist George Soros to support his foundations in Central and Eastern Europe and the former Soviet Union. Those foundations were established, starting in 1984, to help countries make the transition from communism. OSI has expanded the activities of the Soros foundations network to other areas of the world where the transition to democracy is of particular concern. The Soros foundations network encompasses more than 60 countries, including the United States. In August 2010, it started using the name of Open Society Foundations (OSF) to better reflect its role as a funder for civil society groups around the world.", + "Mission": "To build vibrant and tolerant societies whose governments are accountable and open to the participation of all people; to strengthen the rule of law; respect for human rights, minorities, and a diversity of opinions; democratically elected governments; and a civil society that helps keep government power in check; to shape public policies that assure greater fairness in political, legal, and economic systems and safeguard fundamental rights; to advance justice, education, public health, and independent media; to protect and improve the lives of people in marginalized communities.", + "Geographic Focus": "Africa; Asia; Central, South and Eastern Europe; Central Eurasia; Latin America and the Caribbean; the Middle East; US", + "Programme Areas": "The Open Society Foundations’ initiatives address specific issue areas on a regional or network-wide basis. Many of them are implemented in cooperation with Soros foundations in various countries. Key areas of intervention include: • Children & Youth\n• Education\n• Socio-economic development\n• Democratic governance and transparency\n• Public Health\n• Human Rights, Civil Liberties and Citizens Security\n• Law & Justice\n• Media’s freedom\n• Women’s Rights" + }, + "tags_focus": [ + "Education", + "Health", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Caribbean", + "Latin America" + ], + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5273, + "name": "Open Estonia Foundation", + "address": "Open Estonia Foundation Estonia Avenue pst 5A 10143 Tallinn Estonia", + "country": "Estonia", + "email": "info@oef.org.ee", + "website": "http://www.oef.org.ee", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Estonia puiestee 5a, Tallinn, Estonia", + "lat": 59.4348507, + "lng": 24.7531709, + "zoom": 14, + "place_id": "ChIJ-09SImCTkkYRyBerMSOActE", + "name": "Estonia pst 5a", + "street_number": "5a", + "street_name": "Estonia puiestee", + "street_name_short": "Estonia pst", + "city": "Tallinn", + "state": "Harju maakond", + "post_code": "10145", + "country": "Estonia", + "country_short": "EE" + }, + "link": "https://philea.eu/members/open-estonia-foundation/", + "philea_info": { + "About": "Open Estonia Foundation was set up in 1990 with the support of George Soros, who has closely followed the reforms in Central and Eastern Europe (CEE) and now has a network of Open Society foundations operating in CEE countries. The foundation is an operating and grantgiving organisation.", + "Mission": "The mission of the foundation is the development of an open society in Estonia and in other countries. The foundation’s programs are driven by a vision of democracy, civil society, social responsibility, and equal opportunities in the democratic decision making process.", + "Geographic Focus": "Estonia, also Russia.", + "Programme Areas": "For the period 2018-2020 OEF focuses on two priority areas:\n1. vibrant and sustainable civil society;\n2. social cohesion. In the Vibrant and sustainable civil society priority area, OEF aims at:\n• strengthening civic space and capacity building for CSOs;\n• improving and developing capacity, advocacy skills and greater sustainability of civil society actors; aiming for a more active citizenship;\n• promoting the adoption of new, more participatory, transparent and accountable models of democracy;\n• open, transparent and accountable governance OEF’s strategic goals in the Fundamental Rights and Social Cohesion area include:\n• building a better understanding of democratic values among the public, particularly youth, and increasing their dedication to democratic practices as a key to social cohesion.\n• striving towards more open, tolerant and diverse society;\n• combating discrimination and prejudice, intolerance and xenophobia, especially against vulnerable and minority groups;\n• creating a better awareness of and compliance with fundamental rights and freedoms; The Foundation runs and supports initiatives in line with its strategic priorities, i.e achieving a greater engagement of civil society in policy processes and improving the capacity of citizens, civil society actors and the government to interact in creating policy solutions that uphold the values of open an society and best serve the public interest and generate a positive social change.\nOpen Estonia Foundation is the lead partner of Active Citizens Fund in Estonia, in cooperation with Network of Estonian Nonprofit organizations. Support to civil society is a key priority for the EEA and Norway Grants 2014-2021, funded by Iceland, Liechtenstein and Norway in 15 EU Member States in Central and Southern Europe and the Baltics. Full info on the program https://acf.ee/en/" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Human/Civil Rights", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Estonia", + "Russia" + ] + } + }, + { + "id": 5271, + "name": "Oeuvre Nationale de Secours Grande-Duchesse Charlotte", + "address": "Oeuvre Nationale de Secours Grande-Duchess Charlotte 18, rue Leon Laval L-3372 Leudelange Luxembourg", + "country": "Luxembourg", + "email": "secretariat@oeuvre.lu", + "website": "http://www.oeuvre.lu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Œuvre Nationale de Secours Grande-Duchesse Charlotte, 18 Rue Léon Laval, 3372 Leudelange, Luxembourg", + "lat": 49.5705961, + "lng": 6.080992199999999, + "zoom": 14, + "place_id": "ChIJQf9Bup1JlUcRKk0YneA2F88", + "name": "Œuvre Nationale de Secours Grande-Duchesse Charlotte", + "street_number": "18", + "street_name": "Rue Léon Laval", + "city": "Leudelange", + "state": "District de Luxembourg", + "post_code": "3372", + "country": "Luxembourg", + "country_short": "LU" + }, + "link": "https://philea.eu/members/oeuvre-nationale-de-secours-grande-duchesse-charlotte/", + "philea_info": { + "About": "Art.2 decree “London Christmas 1944” stipulates that the purpose of the work is to help the Luxembourg victims of the war in all cases where sufficient support from the public authorities is not yet organized or is not indicated.", + "Mission": "Since 1944, l’Oeuvre Nationale de Secours Grande-Duchesse Charlotte (Grand-Duchess Charlotte Aid Organization) has assumed a prominent role in organizing and financing philanthropy and solidarity in Luxembourg. The initial goal of helping the victims of the Second World War has been expanded over the years to support the many philanthropic activities and projects led by foundations and associations in the social, welfare and social protection fields, as well as environment, culture and sport. The financial means necessary for this purpose are essentially generated by the National Lottery. The law of May 22, 2009 related to the Oeuvre and the National Lottery confirmed to the Oeuvre both the status of public establishment enjoying legal personality under the tutelage of the Prime Minister, Minister of State the following main tasks/goals:\n– to help the Luxembourg victims of the Second World War;\n– to support organizations working in the social field to achieve the objectives that these organizations have set in their statutes;\n– to support organizations working at the national level in the fields of culture, sport and environmental protection;\n– to participate in the expenses of the municipal social offices and the Fonds national de solidarite (free translation: the National Solidarity Fund), and;\n– to organize and manage the National Lottery.", + "Geographic Focus": "National - Luxembourg", + "Programme Areas": "‘- to help the Luxembourg victims of the Second World War;\n– support organizations working in the social field to achieve the objectives that these organizations have set in their statutes;\n– support organizations working at the national level in the fields of culture, sport and environmental protection;\n– to participate in the expenses of the communal social offices and the Fonds nationale de solidarite One-off aid: Specific aid is intended for not-for-profit organizations working at the national level in the social field, culture, sport and protection of the environment. In order to determine unmet needs that are not adequately covered or not covered at all, l’ Oeuvre regularly undertakes investigations together with prominent actors of the civil society and the associate sector. To address those shortcomings call for projects are launched. Call for projects: The Oeuvre regularly offers help through calls for projects dedicated to specific themes. The calls for projecs since 2014 have included the environmental commitment (“Yes We Can Care”), the integration of applicants for international protection (“mateneen”), the fight against addictions (“Addictions”), tolerance (“Respect”) or prevention in the field of health (“Sports-Sante”). stART-UP Fund: The start-up fund of the Oeuvre is aimed at young and creative artists under the age of 36 to support their professionalization and the export of their work. Projects coming directly from not for profit organizations are eligible. Projects must have a link with Luxembourg, residence or nationality of the artist and be of public interest. The aid is one shot." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Luxembourg" + ] + } + }, + { + "id": 5270, + "name": "Oak Foundation", + "address": "Oak Foundation Oak Philanthropy Ltd., Case postale 115 58, Avenue Louis Casaï 1216 Cointrin, Geneva Switzerland", + "country": "Switzerland", + "email": "info@oakfnd.ch", + "website": "http://www.oakfnd.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Oak Philanthropy Ltd, Avenue Louis-Casaï 58, 1216 Cointrin, Geneva, Switzerland", + "lat": 46.22375090000001, + "lng": 6.1094305, + "zoom": 14, + "place_id": "ChIJP4QtKZpkjEcR3Fv6NcAOzdI", + "name": "Oak Philanthropy Ltd", + "street_number": "58", + "street_name": "Avenue Louis-Casaï", + "street_name_short": "Av. Louis-Casaï", + "city": "Cointrin", + "state": "Genève", + "state_short": "GE", + "post_code": "1216", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/oak-foundation/", + "philea_info": { + "About": "The resources of the Oak Foundation originated from an interest in the Duty Free Shoppers business which Alan M. Parker helped to build up.", + "Mission": "To address issues of global social and environmental concern, particularly those that have a major impact on the lives of the disadvantaged.", + "Geographic Focus": "International, Africa, India", + "Programme Areas": "The foundation works in the following areas: – Child Abuse\n– Environment\n– Housing and Homelessness\n– International Human Rights\n– Issues Affecting Women\n– Learning Differences\n– Special Interest\n– Joint India Programme\n– Denmark\n– Zimbabwe Child Abuse: the foundation supports initiatives that aim to eliminate the sexual exploitation of children; engage men and boys in combating the sexual abuse of children; and promote the prevention of violence against children. Environment: the foundation’s grant-making focuses on three main areas: climate change mitigation; wildlife conservation; and the conservation of marine resources. Housing and Homelessness: the foundation focuses on preventing homelessness by funding sustainable solutions that improve the economic and social wellbeing of marginalised youth, adults and families. The programme has three priorities: promoting economic self-sufficiency; increasing the availability and supply of affordable housing; and preventing homelessness. International Human Rights: for this programme the foundation works with partners to end impunity for the gross violations of human rights; uphold prohibitions on arbitrary detention and torture; protect human rights defenders at risk; and multiply and amplify influential voices on IHRP global priorities. Issues Affecting Women: the foundation supports organisations that work to end patterns of violence and exploitation that disrupt women’s lives by ensuring that rights-based laws and policies guarantee an environment free from violence, and by transforming harmful social norms. This is complemented by support to a range of comprehensive services that empower women to recover from the trauma of violence and rebuild their lives. Learning Differences: the foundation supports teacher development, student engagement and parental understanding to enable students to follow their own individual paths to lifelong learning success. The foundation seeks partners who design and create learning environments that are informed by student voices, neuroscience, personalised learning best practices and universal design concepts. Special Interest: Special Interest grants cover a wide range of fields, including health, humanitarian relief, education and the arts. They are made to organisations whose activities the Trustees wish to support, irrespective of country or region. Joint India Programme: it consists of five Oak Programmes that work together to address a combination of issues that affect populations with less access to resources in Jharkhand and West Bengal located in east India. Denmark: Oak Foundation Denmark is a national programme through which the foundation provides grants to organisations in Denmark and Greenland. Through this programme the foundation seeks innovative solutions that improve the daily lives and future prospects of socially vulnerable and marginalised groups. In particular, it\nfocuses on initiatives that target ethnic minority women, homeless people, mothers, children, immigrants and refugees. Zimbabwe: Oak Zimbabwe Foundation is a national programme through which the foundation funds local organisations involved in caring and providing for the most disadvantaged and vulnerable people in Zimbabwean society. It gives support to organisations operating in the following priority areas: healthcare, including HIV/AIDS; rural water supplies; special needs education; and services that help vulnerable women, children and elderly persons." + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Environment/Climate", + "Health", + "Human/Civil Rights", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "India" + ] + } + }, + { + "id": 5269, + "name": "Novo Nordisk Foundation, The", + "address": "Novo Nordisk Foundation Tuborg Havnevej 19 2900 Hellerup Denmark", + "country": "Denmark", + "email": "nnfond@novo.dk", + "website": "http://www.novonordiskfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Novo Nordisk Foundation, Tuborg Havnevej 19, 2900 Hellerup, Denmark", + "lat": 55.7270213, + "lng": 12.5836844, + "zoom": 14, + "place_id": "ChIJadmjE4ZSUkYRqwhCS5p5HKA", + "name": "Novo Nordisk Foundation", + "street_number": "19", + "street_name": "Tuborg Havnevej", + "city": "Hellerup", + "post_code": "2900", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/novo-nordisk-foundation-the/", + "philea_info": { + "About": "The Novo Nordisk Foundation is an independent Danish foundation with corporate interests. The objective of the Novo Nordisk Foundation is twofold: To provide a stable basis for the commercial and research activities conducted by the companies within the Novo Group and to support scientific and humanitarian purposes.", + "Mission": "To provide a stable basis for the commercial and research activities conducted by the companies within the Novo Group and to support scientific and humanitarian purposes.", + "Geographic Focus": "Denmark, Scandinavia and certain parts of the developing world (Africa)", + "Programme Areas": "The foundation supports scientific, humanitarian and social purposes. The majority of grants are given to medical and scientific projects and to other selected research areas. The foundation’s grants for research are apportioned as support for the following: • Specific project\n• Scholarships\n• Symposia\n• The Novo Nordisk Prize Funding areas: – Art Research\n– Biomedicine and health sciences\n– Biotechnology\n– Conferences, symposia and workshops\n– Education and outreach\n– Life science innovation and entrepreneurship\n– Natural and technical science research and interdisciplinarity\n– Patient-centered and research-based care\n– Social and humanitarian initiatives\n– Social science research" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Worldwide": [ + "World" + ], + "Global South / Majority World": [ + "Developing Countries" + ] + } + }, + { + "id": 5268, + "name": "Nordea-fonden", + "address": "Nordea-fonden Overgaden Neden Vandet 11 1414 Copenhagen K Denmark", + "country": "Denmark", + "email": "kontakt@nordeafonden.dk", + "website": "http://www.nordeafonden.dk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Nordea Fonden, Overgaden Neden Vandet 11, 1414 Copenhagen, Denmark", + "lat": 55.6722099, + "lng": 12.5897326, + "zoom": 14, + "place_id": "ChIJpwlMZa1TUkYR_7yi9OXdh58", + "name": "Nordea Fonden", + "street_number": "11", + "street_name": "Overgaden Neden Vandet", + "city": "København", + "post_code": "1414", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/nordea-fonden/", + "philea_info": { + "About": "Nordea-fonden was established when 3 major banks merged and turned into a limited company. The capital of the banks were the funding capital for the foundation. There is no organisational relationship with the commercial bank Nordea AB. The only relationship today is, that the predominant part of the capital in the foundation is invested in Nordea AB, which makes the Nordea-fonden the second largest investor in Nordea AB. All of profits arising from the invested capital are donated to non-profit purposes.", + "Mission": "To promote good quality of life in Demark, through support and engagement in a non-profit charity.", + "Geographic Focus": "Within the boundaries of Denmark", + "Programme Areas": "Under the current strategy (2013-15) our effort and donations are focused on four themes: Nature, Culture, Health and Sports.\nThey also provide grants for Danish students to study abroad. Nature\nNordea-fonden support projects to get Danes to spend more time in nature in urban and rural areas. The aim to improve access to natural areas, through infrastructure and other methods, such as educational classes in forests or city parks. Health\nThe organisation backs projects that promote health, focussing on food as a central feature of health and quality of life. They aim to support projects that: promote healthy eating habits by spreading knowledge and awareness of produce, crafts, taste and appreciation of cuisine in school, at home and leisure. Culture\nThey encourage participation in arts and culture, in order to strengthen the populations sense of creativity and playfulness in everyday life. They endorse this through the mediums of music, dance, film, visual arts and cultural heritage. Sports\nNordea-fonden fund and support activities that promote exercise, play, recreation and physical activity in general. They focus and value projects that: encourage all to engage in sports and physical activities, educate and share knowledge on exercise and outdoor activities." + }, + "tags_focus": [ + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 5265, + "name": "Postcode Lottery Group", + "address": "Postcode Lottery Group Beethovenstraat 200 1077 JZ Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://www.postcodelotterygroup.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Beethovenstraat 200, 1077 JZ Amsterdam, Netherlands", + "lat": 52.3414279, + "lng": 4.8758224, + "zoom": 14, + "place_id": "ChIJ3Y1aWwMKxkcRbP6rYT-zZ1Y", + "name": "Beethovenstraat 200", + "street_number": "200", + "street_name": "Beethovenstraat", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1077 JZ", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/postcode-lottery-group/", + "philea_info": { + "About": "The Postcode Lottery Group is a private company, fully owned by a foundation, with a social purpose that brings together business and ideals. Its sole mission is to raise funds for charities working to build a fair, green, and healthy world in which everyone can participate fully and with a thriving cultural sector. It sets up and operates subscription-based charity lotteries worldwide to raise funds for good causes.", + "Mission": "To raise long-term funding for local and international charity partners and increase awareness of their work.", + "Geographic Focus": "Global, with a specific focus on the countries where the lotteries are active: Netherlands, Sweden, Great Britain, Germany, Norway", + "Programme Areas": "The Postcode Lottery Group provides long-term institutional support to organisations worldwide working in the areas of (girls’) education, human rights, poverty alleviation, social cohesion, preservation of cultural heritage, nature conservation and environment, species protection and health." + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Germany", + "Netherlands", + "United Kingdom" + ], + "Worldwide": [ + "Global" + ], + "Europe (Nordic Region)": [ + "Norway", + "Sweden" + ] + } + }, + { + "id": 5263, + "name": "National Foundation for Civil Society Development - Croatia", + "address": "National Foundation for Civil Society Development- Croatia Strigina 1a 10000 Zagreb Croatia", + "country": "Croatia", + "email": "zaklada@civilnodrustvo.hr", + "website": "http://zaklada.civilnodrustvo.hr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Štrigina ulica 1A, 10000, Zagreb, Croatia", + "lat": 45.8119848, + "lng": 16.0047961, + "zoom": 14, + "place_id": "ChIJFU6InrTXZUcRAq4aroZVdCA", + "name": "Štrigina ul. 1A", + "street_number": "1A", + "street_name": "Štrigina ulica", + "street_name_short": "Štrigina ul.", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/national-foundation-for-civil-society-development-croatia/", + "philea_info": { + "About": "Nacionalna Zaklada za Razvoj Civilnoga Drustva is a public foundation founded by a special act passed by the Croatian Parliament on 16 October 2003. The foundation carries out a mix of operating and grantmaking activities funded by the Croatian lottery, state budget and EU funds.", + "Mission": "To promote and develop civil society in Croatia.", + "Geographic Focus": "Croatia and Central and Eastern Europe", + "Programme Areas": "Goals that the National Foundation aims to achieve through its activities are: – Encouraging citizens to action, involvement and participation in community development;\n– Building the capacities of civil society;\n– Development of cross-sectoral cooperation and cooperation between civil society organisations;\n– Increasing public influence and visibility of the work of civil society organisations;\n– Development of social entrepreneurship and employment in the non-profit sector;\n– Increasing the influence of civil society in the process of adopting public policies." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Central & Eastern Europe", + "Croatia" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5262, + "name": "Mozaik Foundation", + "address": "Mozaik Foundation Soukbunar 42 71000 Sarajevo Bosnia and Herzegovina", + "country": "Bosnia and Herzegovina", + "email": "info@mozaik.ba", + "website": "http://www.mozaik.ba", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Soukbunar 42, Sarajevo 71000, Bosnia and Herzegovina", + "lat": 43.8522829, + "lng": 18.4145591, + "zoom": 14, + "place_id": "EjRTb3VrYnVuYXIgNDIsIFNhcmFqZXZvIDcxMDAwLCBCb3NuaWEgYW5kIEhlcnplZ292aW5hIlASTgo0CjIJC6SFI93IWEcRuPXr_MyO7woaHgsQ7sHuoQEaFAoSCctVmj6fzlhHEUxZlCbE4Qv0DBAqKhQKEgkxLbDMwshYRxHBqxt2zhaUgA", + "name": "Soukbunar 42", + "street_number": "42", + "street_name": "Soukbunar", + "city": "Sarajevo", + "state": "Federacija Bosne i Hercegovine", + "post_code": "71000", + "country": "Bosnia and Herzegovina", + "country_short": "BA" + }, + "link": "https://philea.eu/members/mozaik-foundation/", + "philea_info": { + "About": "Mozaik Foundation was established in 2002, as a foundation for the development of non-governmental organisations (NGOs). The objective of the founders was to create a local indigenous institution, which would assist all the citizens of Bosnia and Herzegovina long after international organisations have left the country.", + "Mission": "To encourage people to organise and advance their own communities.", + "Geographic Focus": "Rural areas and small communities throughout Bosnia and Herzegovina", + "Programme Areas": "The foundation works to mobilize local resources and to support the sustainable socio-economic development through two programmes: Youth Bank and All Inclusive Youth Bank\nAims to increase the participation of young people in the local development processes of Bosnia and Herzegovina’s rural communities. Working in partnership with Community Foundation for Northern Ireland (CFNI), this innovative small grant-making programme is run by young people for young people. Youth Bank creates opportunities for youth-led groups according to the needs in their communities- working on projects (cultural, sports etc.), participating as active citizens in their communities and developing professional governance and management skills through capacity building exercises and practical experience in operating a small grants program that directly supports young people in rural areas. All Inclusive\nThrough this programme the foundation provides financial and technical support to formal youth groups. The foundation has also launched two social businesses, EkoMozaik Ltd. and Agency MaŠta." + }, + "tags_focus": [ + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Bosnia and Herzegovina" + ] + } + }, + { + "id": 5261, + "name": "Medicor Foundation", + "address": "Medicor Foundation Landstrasse 11 P. O. Box 130 9495 Triesen Liechtenstein", + "country": "Liechtenstein", + "email": "info@medicor.li", + "website": "http://www.medicor.li", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "9495 Triesen, Liechtenstein", + "lat": 47.0842296, + "lng": 9.5572841, + "zoom": 14, + "place_id": "ChIJjVLKgfY0m0cRt2kRKBJQdA8", + "name": "9495", + "city": "Triesen", + "post_code": "9495", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/medicor-foundation/", + "philea_info": { + "About": "Medicor Foundation is an independent and charitable foundation based in Liechtenstein. Medicor Foundation is subject to the Liechtenstein Foundation Supervisory Authority (STIFA) and is a founding member of the Association of Charitable Foundations in Liechtenstein.", + "Mission": "Medicor Foundation aims to:\n• improve the living conditions of vulnerable and disadvantaged people and\n• empower them in a sustainable manner.\nThe donations are financed according to the returns on the investment of the foundation’s capital. The foundation has committed itself to sustainable development and strives to invest its capital in socially and ecologically responsible companies.\nMedicor Foundation cultivates a broad network of international and national organisations and institutions, but is not an implementing agency.", + "Geographic Focus": "Africa, Latin America and The Caribbean, and Eastern Europe", + "Programme Areas": "Medicor Foundation focuses on international development. They select convincing projects in the fields of education, health and social care in countries in Africa, Latin America and The Caribbean, as well as in Eastern Europe. • Education: they support projects promote early child development and improve access and quality of primary and secondary education. Moreover, they fund projects that enable people to develop their professional skills or acquire relevant income generating skills and thereby start their working life.\n• Health: they provide funding for preventive and curative interventions with an emphasis on health education, the training of health personnel, as well as the development and maintenance of health infrastructure.\n• Social Care: they support projects that provide expert care and counselling, facilitate reintegration into society, and opens awareness and opportunities for a life in dignity and hope.\n• Emergency Relief: as a consequence of natural or man-made disasters people continually experience life-threatening situations. Medicor Foundation provides funding for immediate assistance where people are in distress.\n• Research: they support, through selected institutions, the applied research of widespread or neglected diseases in developing countries and rare diseases in industrialised countries. Applied research that will contribute to a healthier diet is also considered. Overall, Medicor Foundation approved 58 projects in 28 countries." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Caribbean", + "Latin America" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5260, + "name": "Mama Cash Foundation", + "address": "Mama Cash Foundation P.O. Box 15686 1001 ND Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@mamacash.org", + "website": "http://www.mamacash.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Amsterdam, Netherlands", + "lat": 52.3675734, + "lng": 4.9041389, + "zoom": 14, + "place_id": "ChIJVXealLU_xkcRja_At0z9AGY", + "name": "Amsterdam", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/mama-cash-foundation/", + "philea_info": { + "About": "Mama Cash is the oldest international women’s foundation in the world and one of two in the world that is exclusively dedicated to advancing women’s human rights globally. For 25 years, Mama Cash has played an important role in advancing the human rights of women in Europe and around the world and in building stronger and more sustainable communities. Since 1983, Mama Cash has granted over €30 million to approximately 6,000 women’s groups around the world. In the last four years alone, almost €10m in grants were made to groups in 122 countries.", + "Mission": "To mobilise resources from individuals and institutions and makes grants to women and girls’ human rights organisations and initiatives.\nTo help grantees to build the partnerships and networks needed to successfully defend and advance women and girls’ human rights globally.\nTo help to realise the dreams of women and men who want to provide financial resources to strengthen women and girls’ human rights movements.", + "Geographic Focus": "International", + "Programme Areas": "Mama Cash Foundation’s activities include:\n– Grantmaking\n– Accompaniment\n– Influencing philanthropy\n– Learning for change\n– Special Initiatives Grantmaking\nGrantees of Mama Cash focus on injustices that would otherwise go unnoticed, that need to be challenged and that demand courage and vision to change. Mama Cash’s grantees create and build upon strategic opportunities to bring about change at the community, national, regional and global level.\nThematic portfolios:\n– Body: bodily integrity and autonomy\n– Money: economic justice\n– Voice: agency and participation\n– Women’s Funds: access to a feminist resource base for organising women, girls, and trans people Accompaniment\nThis includes providing and facilitating trainings, asking questions that help grantees link their activities to long-term objectives and connecting grantees to each other and to other funders. Influencing philanthropy\nMama Cash commissions research, initiate conversations and ask questions that encourage foundations and governments to provide support to women, girls and trans people. Learning for change\nMama Cash is committed to understanding how social change happens through their Learning and Evaluation framework, developed in collaboration with donors and grantees. Special Initiatives\nMama Cash supports women’s, girls’ and trans people’s rights beyond their four grantmaking portfolios, usually in collaboration with other organisations or funders that promote human rights activism. They are currently involved in two special initiatives: the Red Umbrella Fund and the Mesoamerican Initiative of Women Human Rights Defenders." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "International" + ] + } + }, + { + "id": 5259, + "name": "Maj and Tor Nessling Foundation", + "address": "Maj and Tor Nessling Foundation Fredrikinkatu 20 B 16 FIN-00120 Helsinki Finland", + "country": "Finland", + "email": "toimisto@nessling.fi", + "website": "http://www.nessling.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Maj ja Tor Nesslingin Säätiö, Fredrikinkatu 20 B 16, 00120 Helsinki, Finland", + "lat": 60.1627741, + "lng": 24.93902, + "zoom": 14, + "place_id": "ChIJQXtfHcoLkkYRL99-h8bfUq8", + "name": "Maj ja Tor Nesslingin Säätiö", + "street_number": "20 B 16", + "street_name": "Fredrikinkatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/maj-and-tor-nessling-foundation/", + "philea_info": { + "About": "Tor Nessling was one of the pioneers of the Finnish motor industry. Until his death in 1971 he served as managing director and chairman of the board of Oy Suomen Autoteollisuus Ab (Finnish Motors Ltd.). With no children of their own, Tor Nessling and his wife Greta Maj wished that their estate should be used in the promotion of Finnish science and culture. The charter establishing the Maj and Tor Nessling Foundation was signed by Greta Maj Nessling in July 1972 and the Foundation began its work of furthering environmental protection in 1976.", + "Mission": "To support scientific research in all areas of environmental protection.", + "Programme Areas": "The foundation is active in the following areas:\n• Research\n• Environmental symposia Research\nDistributes grants and awards and extends other forms of recognition to scientific research in all areas of environmental protection. Mainly gives support to research focusing on local environmental problems (Finland and its nearby countries such as Estonia, Latvia, Lithuania). The research areas supported are:\n• Air pollutants, composition and behaviour, monitoring and evaluation of climate change\n• Water environment structure, functioning and diversity of ecosystems, and the impact of environmental loading\n• Soil ecosystems and groundwater\n• Environmental technology\n• Environmental social science\nIn addition, the foundatiion disseminates these research findings and produces publications on these themes.\nEnvironmental symposia\nOrganises symposia on current environmental problems and the search for solutions. The goal of these symposia is to make known current environmental research being carried out in Finland and elsewhere in the world. Finnish researchers and leading international figures are invited as lecturers. The symposia provide a forum for discussion for researchers, students and government\nofficials and seek to heighten the awareness of the general public about environmental research." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5258, + "name": "Maecenata Foundation", + "address": "Maecenata Foundation Rungestrasse 17 10115 Berlin Germany", + "country": "Germany", + "email": "mst@maecenata.eu", + "website": "http://www.maecenata.eu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Maecenata Stiftung, Rungestraße, Berlin, Germany", + "lat": 52.5121218, + "lng": 13.4195188, + "zoom": 14, + "place_id": "ChIJxW08IztOqEcRYCu3_FheCrw", + "name": "Maecenata Stiftung", + "street_number": "17", + "street_name": "Rungestraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10179", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/maecenata-foundation/", + "philea_info": { + "About": "The foundation was established in 2010 as an umbrella and legal body for two existing long-term programmes:\n• The Maecenata Institute for Philantropy and Civil Society, established in 1197.\n• Maecenata International, the German partner in the Transnational Europe Giving network.", + "Mission": "The mission of the Foundation is to enhance the role of civil society in promoting the development of an open society.", + "Geographic Focus": "National and international", + "Programme Areas": "1) Maecenata Institute: an indipendent think-tank and centre for academic research, teaching, policy, and public information related to philantropiy and civil society. (The Maecenata Institute is affiliated to Humboldt University, Berlin).\nThe main focus areas include:\n– philantropy and foundations,\n– civil society policy,\n– civil society and other areas of public activities,\n– European and International exchanges.\n2) Maecenata International: a service to funders world-wide to facilitate donations across national boundaries, including tax advanteges in the country of residence and reporting system. 3) Europe Bottom-up: a programme designed to promote citizens’ acceptance of and involvement in the building of Europe through projects, publications tec." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ] + } + }, + { + "id": 5257, + "name": "Lundbeckfonden", + "address": "Lundbeckfonden 7 Scherfigsvej 2100 Copenhagen O Denmark", + "country": "Denmark", + "email": "lb@lundbeckfonden.com", + "website": "http://www.lundbeckfonden.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lundbeckfonden, Scherfigsvej 7, 2100 Copenhagen, Denmark", + "lat": 55.7219251, + "lng": 12.5798535, + "zoom": 14, + "place_id": "ChIJZwPg6J3U3UMROSJadjNrJhY", + "name": "Lundbeckfonden", + "street_number": "7", + "street_name": "Scherfigsvej", + "city": "København", + "post_code": "2100", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/lundbeckfonden/", + "philea_info": { + "About": "The Lundbeck Foundation was established in 1954 by Grete Lundbeck, the widow of the founder of H Lundbeck A/S. The commercial activities are carried out through the wholly owned subsidiary LFI a/s, which holds a major interest in the share capital of H Lundbeck A/S and Alk-Abelló A/S. Both companies respectively are listed on the Copenhagen Stock Exchange.", + "Mission": "The Lundbeck Foundation is a Danish-based commercial foundation that is striving to significantly improve the population’s health and wellbeing by: • Supporting independent Danish research primarily within biomedicine and the natural sciences, at the highest level, and promoting its internationalisation\n• Creating shareholder value in the Lundbeck Group and other internationally renowned companies and helping them become world leaders in their respective fields", + "Geographic Focus": "Denmark", + "Programme Areas": "THIS WAS PROBABLY LAST UPDATE IN 2010 _ EF 7/10/206 The foundation is active in the following areas: • Scientific projects\n• Grants of Excellence\n• Junior Group Leader Fellowships\n• Visiting Professorships\n• Stipends\n• Centres of Excellence\n• Education and communication activities Scientific projects\nSupports concrete research projects in biomedical sciences and closely related areas of natural sciences, in addition to non-biological projects in chemistry and physics. Grants of Excellence\nIn the Spring of 2010 the Lundbeck Foundation invited applications for two Grants of Excellence within the area of neuroscience, including clinical neuroscience and psychiatry. The grants were awarded for five years, and each grant amounts to € 3 million. Junior Group Leader Fellowships SEEMS THAT THE SCHEME STOPPED IN 2014 ( fellowships 2010-2014)\nOffers five fellowships for particularly promising young researchers in their thirties who are qualified to establish or develop their own research groups within the health- or natural sciences. Visiting Professorships\nProvides funding to attract foreign guest researchers at the professor level to Denmark for 2-6 months. Stipends\nSupports the following types of stipends when applied for through the foundation’s Electronic Application System: • Scholarships\n• Ph.D. scholarships\n• Travel Stipends Centres of Excellence\nFor a number of years, the Lundbeck Foundation established Centres of Excellence focusing on subjects within biomedical or natural sciences determined by the Board of Trustees. The foundation established research centers in Neuroscience in 2005, Quantum Systems Research in 2006, Translational Science in Clinical Medicine in 2007, Interventional Research in Clinical Medicine in 2008 and Nanomedicine in 2009. Education and communication activities\nThe Lundbeck Foundation has a special focus on supporting projects that promote young people’s interest in the natural sciences in Denmark. Since 1987 The Lundbeck Foundation has also awarded research prizes to honour and encourage outstanding researchers in biomedicine and natural sciences and thus draw attention to the significance of research for society." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 5255, + "name": "LEGO Foundation", + "address": "LEGO Foundation Koldingvej 2 7190 Billund Denmark", + "country": "Denmark", + "email": "LEGOFoundation@LEGO.com", + "website": "http://www.legofoundation.com/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "LEGO Fonden, Koldingvej 2, 7190 Billund, Denmark", + "lat": 55.7247517, + "lng": 9.130263599999997, + "zoom": 14, + "place_id": "ChIJiYUmuXdxS0YRFEhS8jHnJ_M", + "name": "LEGO Fonden", + "street_number": "2", + "street_name": "Koldingvej", + "city": "Billund", + "post_code": "7190", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/lego-foundation/", + "philea_info": { + "About": "Ole Kirk Christiansen founded the LEGO® Company in 1932 and defined the set of values which have characterised the company since. ”Only the best is good enough, for children deserve the best”.", + "Mission": "To inspire and develop the builders of tomorrow.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The LEGO Foundation is active in the fields of education and early childhood development, in particular by: • Donating LEGO products all over the world\n• Contributing with activities that offer children and adults good experiences and insight into the many creative learning opportunities inherent in the LEGO products\n• Enhancing children’s education via research programs, new, systematic learning materials and supplementary education of teachers in developing countries" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5254, + "name": "Learning for Well-being Foundation", + "address": "Learning for Well-being Foundation 56 Milletstraat 2nd floor 1077 ZG Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@learningforwellbeing.org", + "website": "http://www.learningforwellbeing.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Learning for Well-being, Milletstraat 56, 1077 ZG Amsterdam, Netherlands", + "lat": 52.34611239999999, + "lng": 4.868931599999999, + "zoom": 14, + "place_id": "ChIJd2CK3AEKxkcRmHkI0N-rfw8", + "name": "Learning for Well-being", + "street_number": "56", + "street_name": "Milletstraat", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1077 ZG", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/learning-for-well-being-foundation/", + "philea_info": { + "About": "The Learning for Well-being Foundation is a private operating foundation, registered in the Netherlands as a non-profit organization, with the head office in Amsterdam and a branch in Brussels.\nOur team and associates work remotely, running activities across Europe, Middle East, Latin America and the United States. The foundation’s collaborators include lead practitioners in the field of child participation and child well-being.", + "Mission": "We act as a catalyst through mutually reinforcing competent partnerships aimed at bringing the voice and actions of children more fully into creating well-being for themselves and their communities. Our programs cultivate the capacities of children, and the adults who interact with them, so that together they are able to contribute to a fairer and sustainable world, while realizing their unique potential throughout their lives. We focus on the intersection between well-being (as self-knowing) and social change through partnership between children and adults (an intergenerational competent approach to child participation).” The foundation was created after the aspirations of two changemakers who met in an event exploring “Issues and opportunities for Peace in the Middle East” in 2004, Prof. Marwan Awartani (today Palestinian Minister of Education) and Daniel Kropf, founder of several healthcare technology companies.", + "Geographic Focus": "International", + "Programme Areas": "Learning for Well-being Foundation has developed all of its programs with the aim of supporting child and societal well-being through child and youth participation. Its flagship activities include: 1. School Wellbeing Survey & Community Development\nA unique survey with accompanying interventions, based on the L4WB approach, that measures and improves the level of well-being in the school community, impacting all stakeholders.\nWith the hope of encouraging decision makers, stakeholders and heads of educational bodies to adopt a holistic approach to education, the Learning for Well-being Foundation (L4WB-F) together with Education for Life in Israel, have developed a tool (the L4WB survey) and interventions which bring together the 3 key partners in the school community: Pupils, Professionals and Parents (3Ps’), giving them the knowledge on how to increase their experience of well-being and engaged participation within their community.\nParticular focus was put on the L4WB Core Capacities in order to obtain information on the quality and quantity of these elements in the school so that we can then understand which of the capacities need further development. 2. ACT2GETHER\nOur purpose with ACT2gether is to develop global alliances for creating a social movement promoting partnership between generations (children and adults). We want this in all sectors (including education, health, welfare, justice, etc.) and addressing issues affecting children and\nadults in ways that are holistic and systemic.\nWe believe that when generations work in partnership, including peer to peer support, both children and adults benefit from each other’s qualities: spontaneity, curiosity, creativity and joy, but also fairness, accountability and drive become available to both, as shared resources.\nChildren and adults feel empowered to contribute fully – with their whole selves – to the creation of better spaces to live. Our strategic priorities are:\n• Create an international social movement that promotes and supports partnership between generations (children and adults)\n• Facilitate global, regional and national gatherings to promote children and adults working together\n• Provide learning experiences for people to understand and develop participatory practice\n• Create alliances both off and online that link an international community and shares stories promoting child-adult partnerships\nACT2gether is a global brand to which local initiatives can associate themselves, as part of social movement promoting partnership between generations. The 3 activities that support the movement internationally are: 2getherLand (event); 2getherLearn (training) and 2getherLink (off-line and online platform for alliances), all supported by transversal research. All ACT2gether activities:\n• are organized through partnership between children and adults\n• combine personal development and social action\n• create fairness and sustainability Currently there are active ACT2gether sites in Latin America, Germany, Palestine and the Netherlands. 3. Measuring What Matters – Research on Core Capacities\nThe purpose of this research, has been to assess what a comprehensive review of the existing literature can tell us about core capacities, using the L4WB framework as the conceptual frame.\nThe aim is to understand if such precursors to life skills can add value to concepts designed to promote child development, and related public policies, and further to identify what constitutes good practice for promotion and protection of these skills.\nL4WB-F is partnering with UNICEF’s Office of Research, Innocenti, and the US based Fetzer Foundation for this research effort. 4. Workgroup on Personalized and Formative Assessment Practices\nThis project aims at identifying and documenting assessment practices that are aligned with the L4WB approach. The outcome will produce knowledge and practices transferable to all our well-being and intergenerational collaboration programs.\nThis project aims to look for and into already existing innovative and interesting good assessment practices. We know that there are teachers and schools who work efficiently with alternative assessment methods, and it would be inspirational for educational settings to get acquainted with those in a well-documented way by adding information.\nThis project is done in cooperation with the Hungarian Waldorf Federation and the European Council of Steiner Waldorf Education. 5. Learning for Well-being Community\nWe have been building relationships around the Learning for Well-being perspective and framework with selected education, health, and child welfare organisations that are operating at European and national levels for many years now. Several of these relationships have been formalized through Memoranda of Understanding. In January 2015 the L4WB Community was formally established through a meeting of all partners in Caux, Switzerland. This created an opportunity for the partners to know each other and their work, to experiment with tools and practices together, and to envision joint projects inspired by the L4WB-Foundation. These meetings are for organisations that are actively seeking new ways to work together, specifically to develop capacities for competent relationships and systems for children and those who support them. From these gatherings, new partnerships and projects are born, using the Learning for Well-being principles to inspire a common language." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "International" + ] + } + }, + { + "id": 5253, + "name": "Laudes Foundation", + "address": "Laudes Foundation Grafenauweg 10 6300 Zug Switzerland", + "country": "Switzerland", + "email": "grants@candafoundation.org", + "website": "http://www.laudesfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Grafenauweg 10, 6300 Zug, Switzerland", + "lat": 47.17444639999999, + "lng": 8.512388199999998, + "zoom": 14, + "place_id": "ChIJGRIo1l6qmkcRZ347UaNc4Z4", + "name": "Grafenauweg 10", + "street_number": "10", + "street_name": "Grafenauweg", + "city": "Zug", + "state": "Zug", + "state_short": "ZG", + "post_code": "6300", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/laudes-foundation/", + "philea_info": { + "About": "Laudes Foundation is an independent foundation launched in 2020 and part of the Brenninkmeijer family entreprise.\nAlthough independent from the COFRA businesses and the family’s other private philantropic activities, Laudes Foundation learns from its past and present experiences. In particular Laudes Foundation will advance the industry-changing work of C&A Foundation, and build on the experience of its flagship initiative, Fashion for Good.", + "Mission": "To transform the global economic system and the way it defines value. Laudes Foundation supports initiatives that work with the actors who have the power to change it.", + "Geographic Focus": "Global", + "Programme Areas": "New Economy (New Economic Thinking, New Models – Business and Value and Regulation, Policy and Taxation) Fashion (Labour Rights and Materials) Built Environment (Net zero carbon new buildings, A lighthouse for the built environment)" + }, + "tags_focus": [ + "Environment/Climate", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 5252, + "name": "Kultura Nova Foundation", + "address": "Kultura Nova Foundation Gajeva 2/6 10 000 Zagreb Croatia", + "country": "Croatia", + "email": "info@kulturanova.hr", + "website": "http://kulturanova.hr/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gajeva ulica 2, Zagreb, Croatia", + "lat": 45.81273760000001, + "lng": 15.9763028, + "zoom": 14, + "place_id": "ChIJebV5t_3WZUcRHBpVYboricI", + "name": "Gajeva ul. 2", + "street_number": "2", + "street_name": "Gajeva ulica", + "street_name_short": "Gajeva ul.", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/kultura-nova-foundation/", + "philea_info": { + "About": "Kultura Nova Foundation was founded as an answer to the existing situation within the system of culture with the aim of ensuring an efficient measure that would allow for the improvement and further development of the position of civil sector in culture. With the support of the Council of New Media Culture, the idea of a new foundation was presented to the Ministry of Culture, which, after careful consideration, instituted a working group responsible for developing a Draft of the Proposal of the Law on Kultura Nova Foundation. The founding of a special foundation for civil sector in culture was anticipated in the National Program for the Youth for 2009 – 2013 Period. The process of founding Kultura Nova, extending over several years, included representatives of civil society organizations, different state administration bodies, public government bodies and experts, and its purpose, activities, core assets, financing, as well as other regulations concerning the foundation’s activities are defined by the Law on Kultura Nova Foundation which was adopted by the Croatian Parliament in 2011 (Official Gazette of the Republic of Croatia, No. 90/11).", + "Mission": "Kultura Nova Foundation provides professional and financial support to civil society organisations in the Republic of Croatia in the fields of contemporary arts and culture.", + "Geographic Focus": "Croatia, Southeastern European Region", + "Programme Areas": "Kultura Nova is an operational and grant making foundation and it provides professional and financial support to civil society (non-governmental and no-profit associations in the fields of contemporary art and culture in Croatia.\nThe foundation publishes open calls for artistic and cultural project and programme proposals of civil society organizations on an annual basis through its Support Programme that has a number of Programme areas. The Foundation publishes open calls for project and programme proposals on an annual basis. The Support Programme is currently realized through four Programme areas: Programme area 1: Development Support for Organizations\nProgramme area 2: Conception and Preparation of New Projects/Programmes\nProgramme area 3: Development of Cooperation Platforms in the Republic of Croatia\nProgramme area 4: Development of Cooperation Platforms in Southeastern Europe Kultura Nova Foundation implements Development programmes and projects within the framework of its operational functioning. Development programmes and projects activities currently include: – research\n– educational programmes\n– development of new models of institutions" + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Croatia" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5251, + "name": "Körber-Stiftung", + "address": "Körber-Stiftung Kehrwieder, 12 20457 Hamburg Germany", + "country": "Germany", + "email": "info@koerber-stiftung.de", + "website": "http://www.koerber-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Körber-Stiftung, Kehrwieder 12, 20457 Hamburg, Germany", + "lat": 53.54348539999999, + "lng": 9.9839361, + "zoom": 14, + "place_id": "ChIJ7a9K6QWPsUcRCDvuO6g9228", + "name": "Körber-Stiftung", + "street_number": "12", + "street_name": "Kehrwieder", + "city": "Hamburg", + "state": "Hamburg", + "state_short": "HH", + "post_code": "20457", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/korber-stiftung/", + "philea_info": { + "About": "Körber-Stiftung was established in 1959 by the industrialist and inventor, Dr Kurt A. Körber. Dr Körber founded Hauni-Werke in Hamburg-Bergedorf in 1946, which has since developed into the Körber AG group with 28 companies worldwide. In accordance with his will the foundation became sole shareholder of Körber AG after his death in 1992. The Körber Foundation is politically independent and ideologically neutral.", + "Mission": "The Körber Foundation promotes and supports people and initiatives that aims to change the status quo. It focuses on exchange and dialogue, the power of sound arguments and willingness to communicate. By recognising role models, by identifying good examples and by developing paradigms it provides stimuli not only for ideas, but also for actions.", + "Geographic Focus": "Germany, Europe, International", + "Programme Areas": "Through its operational projects, in its networks and in conjunction with cooperation partners, the Körber Foundation takes on current social challenges in areas of action comprising:\n– Demographic change,\n– Innovation,\n– International dialogue. Demographic Change\nIf our society is ageing and its origins and lifestyles are becoming more diverse, what implications does this have for our social interaction? How do we create more social justice? How can we recruit new people for the employment market? Who will look after the interests of others if the population is dwindling? The Körber Foundation addresses such issues with its activities, events and publications – and also encourages people to see the opportunities presented by these changes. The Foundation itself is also investigating new and constructive solutions in the light of demographic change: It supports local politics and administration on the path to becoming a demographically strong city and initiates networks for involvement. It promotes the potential of the older generation to employers and presents models for integration and diversity. It promotes citizen participation and brings together civil society, the economy and the state in new alliances. And last but not least, the Körber Foundation operates its own culture and district centre for the participation of the 50 plus generation. Innovation\nInnovations are prerequisites for the existence and success of modern societies. They ensure their sustainability, form the basis for prosperity and are essential for addressing key problems of humanity. The Körber foundation therefore explores the conditions and processes under which the new emerges, invests in young talent, honours innovative approaches and shapes the framework conditions for a society open to innovation. International Dialogue\nThe Körber Foundation is committed to international dialogue and dialogue across political, national and religious boundaries and aims at helping to build bridges to overcome the absence of discussion and to initiate debate. At present its work focuses on three topics: “Russia in Europe”, “New Working Lifetime” and “Digital Literacy”." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Europe", + "Germany" + ] + } + }, + { + "id": 5250, + "name": "Kone Foundation", + "address": "Kone Foundation Otavantie 10 00200 Helsinki Finland", + "country": "Finland", + "email": "koneensaatio@koneensaatio.fi", + "website": "http://www.koneensaatio.fi/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Otavantie 10, 00200 Helsinki, Finland", + "lat": 60.15905369999999, + "lng": 24.8791507, + "zoom": 14, + "place_id": "ChIJEUfVDF0KkkYRvV00UH89E5U", + "name": "Otavantie 10", + "street_number": "10", + "street_name": "Otavantie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00200", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/kone-foundation/", + "philea_info": { + "About": "Kone Foundation was founded in 1956 by Heikki H. Herlin and Pekka Herlin. The founders were simultaneously in charge of Kone Foundation and Kone Corp., and hence there was a close relationship between the organizations. Nowadays the foundation is independent and unaffiliated. From a modest start in the early years, Kone Foundation began to award grants for academic research, with a specific focus on humanities, social sciences, environmental sciences and artistic research. During the 2000s the Foundation has made an active effort to find new ways to support academic research, the arts and culture. One outcome is the Saari Residence for artists and researchers, founded in 2006.", + "Mission": "Kone Foundation is an independent and unaffiliated organisation, the aim of which is to promote Finnish research, arts and culture.", + "Geographic Focus": "Especially the regions around the Baltic Sea (but researchers and artists of other regions are also supported).", + "Programme Areas": "In humanities, social sciences, artistic research and environmental research. All fields of the arts.\nThey have a residence for artists and researchers." + }, + "tags_focus": [ + "Arts & Culture", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ] + } + }, + { + "id": 5249, + "name": "King Baudouin Foundation", + "address": "King Baudouin Foundation 21, rue Brederode 1000 Brussels Belgium", + "country": "Belgium", + "email": "info@kbs-frb.be", + "website": "http://www.kbs-frb.be", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "King Baudouin Foundation, Rue Brederode 21, 1000 Brussels, Belgium", + "lat": 50.84035859999999, + "lng": 4.362291999999999, + "zoom": 14, + "place_id": "ChIJyb9ijYbEw0cRwolM9JVA0zc", + "name": "King Baudouin Foundation", + "street_number": "21", + "street_name": "Rue Brederode", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/king-baudouin-foundation/", + "philea_info": { + "About": "The King Baudouin Foundation was established in 1976 on the occasion of the 25th anniversary of King Baudouin’s reign. It is an independent foundation, administered by a Board of Governors.", + "Mission": "To work together for a better society. Helping to improve living conditions of the population. Supporting projects and citizens who are committed to create a better society. In order to make a lasting contribution towards greater justice, democracy and respect for diversity.", + "Geographic Focus": "Belgium, Europe and international", + "Programme Areas": "With an annual budget of 40 million euros, 92% of which is earmarked for projects, the foundation supports priority issues related to the following subjects: • Poverty & Social Justice\n• Democracy in Belgium\n• Democracy in the Balkans\n• Heritage\n• Philanthropy\n• Health\n• Leadership\n• Local engagement\n• Migration\n• Development\n• Specific projects" + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Belgium", + "Europe" + ] + } + }, + { + "id": 5244, + "name": "John S. Latsis Public Benefit Foundation", + "address": "John S. Latsis Public Benefit Foundation Xenias 4 14562 Athens Greece", + "country": "Greece", + "email": "info@latsis-foundation.org", + "website": "http://www.latsis-foundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "John S. Latsis Public Benefit Foundation, Xenias, Kifisia, Greece", + "lat": 38.0762191, + "lng": 23.8199362, + "zoom": 14, + "place_id": "ChIJB3Dq1OueoRQRAD04Z8VSTqk", + "name": "John S. Latsis Public Benefit Foundation", + "street_number": "4", + "street_name": "Xenias", + "city": "Kifisia", + "state": "Vorios Tomeas Athinon", + "post_code": "145 62", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/john-s-latsis-public-benefit-foundation/", + "philea_info": { + "About": "John Latsis entrepreneurial activities extended over approximately seven decades from the end of the 1920s to the mid-1990s. His many business activities included agricultural products, industrial goods, petroleum and petroleum products trading, as well as coastal shipping, passenger and commercial deep-sea shipping, petroleum refining, construction, and banking. His entrepreneurial activity was accompanied by numerous public benefit initiatives. Among his first coordinated actions was the creation of the John S. Latsis Ileians’ Scholarships Foundation to assist students from his home region. From 1991 until 2012 the Foundation for the Rehabilitation of Albanians of Greek Descent, established after the opening of the Greek borders with Albania to support Albanians of Greek descent, housed and trained more than 1,000 Albanians of Greek descent from the neighbouring country.\nAt the same time, he also contributed extensively during emergencies, such as the earthquakes that struck the areas of Kalamata in 1986, Pyrgos, Ileia in 1988, and Grevena in 1995. The Hellenic Fire Brigade, Hellenic Police and the Seamen’s Pension Fund also received large-scale donations.\nIn 1995, the building complex of the Latsio Elementary School was donated to the HAEF-Athens College; in 2005, two years after the death of John Latsis, the Latsio Burn Centre was completed and integrated into in the Thriasio General Hospital of Eleusis.", + "Mission": "The Foundation plans, manages, and funds programmes that cover a broad range of fields, such as education, science, health, social welfare, culture and the environment, in collaboration with civil society partners and key players within these areas. An additional, diversified branch of activities is the operation of the Neraida Floating Museum, which, by offering visitors free access and organising various events, seeks to highlight the maritime and entrepreneurial history of Greece, familiarise youth with the maritime profession, and promote environmental awareness.\nThe Foundation’s approach to grant-making prioritises the emergency relief of citizens in need, infrastructural improvement, NGO capacity building and community development, academic and research output reward, and highlighting of the cultural wealth of Greece.", + "Geographic Focus": "Greece", + "Programme Areas": "Quality of education\naccess to education\nsocial welfare\npublic health\ncommunity development\nscience and research" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Greece" + ] + } + }, + { + "id": 5243, + "name": "John D. and Catherine T. MacArthur Foundation", + "address": "John D. and Catherine T. MacArthur Foundation 140 S. Dearborn Street 12th floor IL 60603-5285 Chicago United States", + "country": "United States", + "email": "4answers@macfound.org", + "website": "http://www.macfound.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "140 South Dearborn Street, Chicago, IL, USA", + "lat": 41.8797985, + "lng": -87.62954719999999, + "zoom": 14, + "place_id": "ChIJ2f-rorwsDogRrKRi53x4VbM", + "name": "140 S Dearborn St", + "street_number": "140", + "street_name": "South Dearborn Street", + "street_name_short": "S Dearborn St", + "city": "Chicago", + "state": "Illinois", + "state_short": "IL", + "post_code": "60603", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/john-d-and-catherine-t-macarthur-foundation/", + "philea_info": { + "About": "The organisation is a private, independent, grantmaking foundation created in 1978 by John D. MacArthur, who developed and owned an array of businesses, principally Bankers Life and Casualty Company, as well as considerable property in Florida and New York.\nMacArthur is placing a few big bets that truly significant progress is possible on some of the world’s most pressing social challenges, including advancing global climate solutions, decreasing nuclear risk, promoting local justice reform in the U.S., and reducing corruption in Africa’s most populous country, Nigeria. The Foundation also continues its historic commitments to the role of journalism in a responsive democracy as well as the vitality of our headquarters city, Chicago.", + "Mission": "The John D. and Catherine T. MacArthur Foundation supports creative people, effective institutions, and influential networks building a more just, verdant, and peaceful world.", + "Geographic Focus": "USA, India, Mexico, and Nigeria", + "Programme Areas": "Chicago Commitment, Climate Solutions, Criminal Justice, Journalism and Media, Nuclear Challenges, Technology in the Public Interest The foundation is involved in the following programmes:\n• Global security and sustainability (International)\n• Human and community development (US)\n• General programme\n• MacArthur Fellows Global Security and Sustainability\nSeeks to promote peace within and among countries, healthy ecosystems worldwide, responsible reproductive choices, and the protection of human rights. The foundation encourages work that recognises the interactions among these global problems. The programme has offices in Mexico, India, Russia, and Nigeria. It focuses on the following priorities: • Conservation and Sustainable Development: focuses exclusively on dealing with the problems of endangered tropical ecosystems. These are the regions with the greatest degree of species diversity, but are also plagued by acute human poverty and are often experiencing rapid population growth\n• Human Rights and International Justice:addresses human rights through grants to selected U.S.-based organisations that work internationally and to projects that seek to further the development of an international justice system. In addition, the foundation supports human rights organisations in Mexico, Nigeria, and Russia\n• International Peace and Security: helps to reduce the dangers posed by the development, stockpiling, and proliferation of the world’s most destructive weapons, in particular nuclear weapons, dangerous pathogens, and new biotechnologies\n• Population and Reproductive Health: seeks to reduce maternal mortality and morbidity; and advance young people’s sexual and reproductive health and rights\n• Universities in Russia and Nigeria: In Russia, the foundation seeks to support universities and other elements of scholarly infrastructure to enhance the skills and capacities of scholar-practitioners, and to support the development of modern university-based science and social science research and training capabilities. In Nigeria, the foundation is providing long-term support for four leading Nigerian universities, helping them to rebuild and upgrade their facilities, curricula, and faculty Human and Community Development\nSupports the development of healthy individuals and effective communities. Grantmaking strategies focus on: • Community Change: supports organisations in Chicago in their efforts to make neighbourhoods healthy and sustainable places for family life and economic success. It also seeks to learn from these activities, and to communicate lessons learned through practical experience to multiple audiences, including policymakers, practitioners, and other funders\n• Stable and Affordable Housing: preserves and improves affordable rental housing across the country through the $50 million initiative, Window of Opportunity: Preserving Affordable Rental Housing. The initiative’s immediate goal is to help large non-profit housing organisations purchase and maintain 100,000 units of existing, affordable rental housing that might otherwise deteriorate or become too expensive for low- and moderate-income households. Further objectives are to demonstrate that preservation of affordable rental housing can be cost-effective and to encourage future public and private investment in this area\n• Juvenile Justice: supports research, model programmes, policy analysis, and public education related to juvenile justice. Works to promote an effective juvenile justice system that is linked to relevant agencies, is acknowledged to play a critical role in the community, and is held accountable for public safety and the rehabilitation of young offenders\n• Mental Health: focuses on improving access to high-quality, effective mental health services by helping to move the most promising advances in research to policy and practice\n• Education: supports systemwide reform that improves student learning through better instruction and by disseminating useful information about school and system practices to multiple audiences, including policymakers, practitioners, and other funders\n• Policy Research: complements and strengthens other foundation work by helping to increase the likelihood that research and other evidence inform public policy, with a special emphasis on urban policy General Programme\nSupports public interest media, including public radio and the production of independent documentary film; and makes grants to arts and cultural institutions in the Chicago area. The foundation also makes the MacArthur Award for Creative and Effective Institutions. MacArthur Fellows\nAwards five-year, unrestricted fellowships to individuals across all ages and fields who show exceptional merit and promise of continued creative work." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Education", + "Environment/Climate", + "Health", + "Human/Civil Rights", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Nigeria" + ], + "Latin America & Caribbean": [ + "Mexico" + ], + "Asia & Pacific": [ + "India" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5242, + "name": "Joachim Herz Stiftung", + "address": "Joachim Herz Stiftung Langenhorner Chaussee 384 22419 Hamburg Germany", + "country": "Germany", + "email": "info@joachim-herz-stiftung.de", + "website": "http://joachim-herz-stiftung.de/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Joachim-Herz-Stiftung, Langenhorner Chaussee 384, 22419 Hamburg, Germany", + "lat": 53.66087, + "lng": 10.0038701, + "zoom": 14, + "place_id": "ChIJLahLJeaasUcR5X_lTj2Ge5I", + "name": "Joachim-Herz-Stiftung", + "street_number": "384", + "street_name": "Langenhorner Chaussee", + "city": "Hamburg", + "state": "Hamburg", + "state_short": "HH", + "post_code": "22419", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/joachim-herz-stiftung/", + "philea_info": { + "About": "The Joachim Herz Stiftung owes its existence to the Hamburg entrepreneur Joachim Herz, who died in May 2008, and to his wife Petra Herz. Together they made the Foundation’s significant financial outfitting possible. The assets of the Foundation are primarily invested in an entrepreneurial manner. This includes an indirect share in Beiersdorf AG held via maxingvest ag.", + "Mission": "The Foundation’s purpose is the advancement of education, science and research in the fields of business administration, economics, law, medicine, chemistry, physics and biology. Furthermore, the Foundation seeks to foster and promote educational institutions and students within the context of general primary and secondary school education. The Foundation’s purpose is also the procurement and transfer of funds for the benefit of other non-profit organisations and public entities with preferential tax status in order to achieve non-profit goals. The purpose of the Foundation also extends to those disciplines, which can objectively be regarded as belonging to the enumerated areas supra.", + "Geographic Focus": "Germany, USA", + "Programme Areas": "The Foundation’s purpose is the advancement of education, science and research in the fields of business administration, economics, law, medicine, chemistry, physics and biology. Furthermore, the Foundation seeks to foster and promote educational institutions and students within the context of general primary and secondary school education. The Foundation’s purpose is also the procurement and transfer of funds for the benefit of other nonprofit organisations and public entities with preferential tax status in order to achieve nonprofit goals. The purpose of the Foundation also extends to those disciplines, which can objectively be regarded as belonging to the enumerated areas supra. In particular, the following shall be used in order to advance the Foundation’s intended purpose:\na) the award of research grants, scholarships or other donations to qualified (prospective) students and pupils;\nb) creative and financial participation in research and teaching programs as well as scholarship programs that are awarded by qualified academic institutions (universities or similarly situated institutions);\nc) the creative and financial support for qualified educational, scientific and research institutions;\nd) establishment of conditions for scholarship programs as well as their organisation and realisation for qualified students and pupils, especially in the promotion of international exchanges,\ne) conducting competitions and awarding prizes" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Germany" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5241, + "name": "Jenny and Antti Wihuri Foundation", + "address": "Jenny and Antti Wihuri Foundation Arkadiankatu, 21A 14 FI-00100 Helsinki Finland", + "country": "Finland", + "email": "toimisto@wihurinrahasto.fi", + "website": "http://www.wihurinrahasto.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Arkadiankatu 21a, Helsinki, Finland", + "lat": 60.17141220000001, + "lng": 24.9259645, + "zoom": 14, + "place_id": "ChIJAQDw-jMKkkYRyy3Som8bZZ8", + "name": "Arkadiankatu 21a", + "street_number": "21a", + "street_name": "Arkadiankatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/jenny-and-antti-wihuri-foundation/", + "philea_info": { + "About": "Jenny and Antti Wihuri Foundation is a private, general purpose Finnish cultural foundation and was established in 1942 by a seacaptain, a shipowner and industrialist Antti Wihuri and his wife Jenny.", + "Mission": "The purpose of the Jenny and Antti Wihuri Foundation is to promote and support cultural and economic development in Finland. The wording is not overly specific and so a wide range of activities are possible. The Foundation fulfills its purpose by distributing grants and awards and otherwise by giving financial aid to activities, thus furthering the cultural and economic life of the country.", + "Geographic Focus": "Mainly Finland", + "Programme Areas": "The foundation fulfills its mission by through the following means:\n• Grants and awards\n• Wihuri Research Institute (http://www.wri.fi/)\n• Jenny and Antti Wihuri Foundation Art Collection – Modern Finnish Art (http://www.korundi.fi/in-english/Korundi-house-of-culture/Rovaniemi-Art-Museum )\n• Wihuri Foundation for International Prizes Grants and Awards\nDistributes grants and awards annually on Antti Wihuri’s birthday, October 9th. In 2004, 7,000,000 euros were distributed to various associations and individual scientists and artists.\nWihuri Research Institute The Wihuri Research Institute (WRI) (www.wri.fi) was founded in 1944. It works to create conditions for Finnish scientists considered to be especially talented in the fields of natural sciences, medicine or technology to devote themselves entirely to their research. The WRI has become widely known in medical circles for its work on diseases of the heart and circulatory system. Contacts with researchers overseas are extensive. Jenny and Antti Wihuri Foundation Art Collection\nSince 1957 the Foundation has assembled an important and valuable collection of Finnish art. The collection has been donated to the City of Rovaniemi (www.rovaniemi.fi) and named as the Jenny and Antti Wihuri Foundation Art Collection. It contains more than 2, 300 works of art and, guided by experts, the foundation continues to purchase the work of living Finnish artists. Wihuri Foundation for International Prizes\nEstablished in 1953 with capital donated by Antti Wihuri, the founder of the Jenny and Antti Wihuri Foundation, the foundation promotes and sustains the cultural and economic development of society through international prizes in recognition of creative work. These include the Wihuri Sibelius Prize, awarded to prominent composers who have become internationally known and acknowledged. These prizes may be awarded to private individuals or organisations regardless of nationality, religion, race or language. The foundation shares the same Board of Trustees and Executive Director as the Jenny and Antti Wihuri Foundation." + }, + "tags_focus": [ + "Arts & Culture", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5240, + "name": "Jacobs Foundation", + "address": "Jacobs Foundation Seefeldquai 17 8034 Zürich Switzerland", + "country": "", + "email": "", + "website": "https://jacobsfoundation.org/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Jacobs Foundation, Seefeldquai, Zürich, Switzerland", + "lat": 47.3597658, + "lng": 8.5479411, + "zoom": 14, + "place_id": "ChIJdxeGo1GnmkcRiO-Du-uGFU4", + "name": "Jacobs Foundation", + "street_number": "17", + "street_name": "Seefeldquai", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8008", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/jacobs-foundation/", + "philea_info": { + "About": "The Jacobs Foundation is one of the world’s leading charitable foundations dedicated to facilitating innovations for children and youth. The Foundation was established in 1989 by Klaus J. Jacobs and his family in an effort to benefit future generations by providing young people with better opportunities for development. The Jacobs Foundation supports research and intervention of the highest quality leading to significant and vital outcomes for children and youth worldwide. The foundation promotes public dialogue by connecting people from the fields of science, policy, society and economy, creating platforms for discussion and raising awareness for the needs and opportunities to improve the living conditions of next generations. With its investment of € 200 million in the Jacobs University Bremen in Germany (2006) it set new standards in private funding in Europe’s Higher Education sector.", + "Mission": "Positive Child and Youth Developmentand create networks to bring about social changes in the area of child and youth development.", + "Geographic Focus": "Global", + "Programme Areas": "Education\nSciences & Research\nSocial/Human Services\nYouth/Children Development" + }, + "tags_focus": [ + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 5381, + "name": "International Rescue Committee", + "address": "International Rescue Committee 3 Bloomsbury Place WC1A 2QL London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.rescue.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "3 Bloomsbury Place, London WC1A 2QL, United Kingdom", + "lat": 51.5198666, + "lng": -0.1226827, + "zoom": 14, + "place_id": "ChIJqXi5BDQbdkgR8eW_ADQ4mho", + "name": "3 Bloomsbury Pl", + "street_number": "3", + "street_name": "Bloomsbury Place", + "street_name_short": "Bloomsbury Pl", + "city": "London", + "state": "England", + "post_code": "WC1A 2QA", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/international-rescue-committee/", + "philea_info": { + "About": "Since being founded in 1933, the IRC has responded when crises erupt in the world’s poorest and most remote regions. Following an emergency, the IRC deploys its emergency response team within 72 hours to assess critical survival needs and mount an effective response.", + "Mission": "The International Rescue Committee (IRC) responds to the world’s worst humanitarian crises and helps people to survive and rebuild their lives. For 80 years the IRC has offered lifesaving care and life-changing assistance to refugees forced to flee from war, persecution or natural disaster.", + "Geographic Focus": "Worldwide", + "Programme Areas": "‘- emergency response\n– health\n– safety\n– education\n– economic wellbeing\n– power\n– climate change\n– refugee crisis" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5237, + "name": "International Renaissance Foundation", + "address": "International Renaissance Foundation 46 Artema Street 04053 Kiev Ukraine", + "country": "Ukraine", + "email": "irf@irf.kiev.ua", + "website": "http://www.irf.kiev.ua", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "International Fund \"Renaissance\", Artema Street, 46, Kyiv, Ukraine", + "lat": 50.45654439999999, + "lng": 30.493665, + "zoom": 14, + "place_id": "ChIJMwMydGTO1EARULC_pmQi7AQ", + "name": "International Fund \"Renaissance\"", + "street_number": "46", + "street_name": "Sichovykh Striltsiv Street", + "street_name_short": "Sichovykh Striltsiv St", + "city": "Kyiv", + "state": "Kyiv City", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/international-renaissance-foundation/", + "philea_info": { + "About": "The International Renaissance Foundation was founded in 1990 as part of the Soros Foundations Network dedicated to building and maintaining the infrastructure and institutions necessary for an open society in Ukraine.", + "Mission": "To foster, both financially and organisationally, the formation of a democratic, open society in Ukraine by supporting civil initiatives that have a strong impact on civil society development.", + "Geographic Focus": "Primarily Ukraine", + "Programme Areas": "The foundation supports and operates programmes and initiatives that promote the process of national rebirth and democratic development in the following areas: – Democratic Practice\n– Human Rights and Justice\n– Public Health\n– Roma Programme Initiative\n– European programme\n– Civic Initiatives of new Ukraine Democratic Practice\nCreates effective tools to combat corruption and increase government accountability Human Rights and Justice\nSeeks to prevent human rights violations, promote effective anti-discrimination legislation and practices, and ensure disadvantaged and vulnerable groups have access to justice and legal aid Public Health\nSeeks to promote the development of a cost-effective and non-discriminatory healthcare system, transparent and rational spending of public funds, ensure equal access to essential medicines and proper treatment, including vulnerable groups Roma Programme Initiative\nSupports NGOs and activists in involving representatives of the Roma community in social processes and combating discrimination European Programme\nFocuses on raising the level of familiarisation of representatives of civil society institutions in Ukraine with European neighbourhood policy, and facilitation of information-sharing on various civic initiatives related to European integration." + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Ukraine" + ] + } + }, + { + "id": 5235, + "name": "International Committee of the Red Cross", + "address": "International Committe of the Red Cross 19 Avenue de la paix CH 1202 Geneva Switzerland", + "country": "Switzerland", + "email": "webmaster@icrc.org", + "website": "http://www.icrc.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "International Committee of the Red Cross (ICRC), Avenue de la Paix 19, 1202 Geneva, Switzerland", + "lat": 46.2274351, + "lng": 6.1375921, + "zoom": 14, + "place_id": "ChIJnc-xwvpkjEcRcjLSGUyTJfE", + "name": "International Committee of the Red Cross (ICRC)", + "street_number": "19", + "street_name": "Avenue de la Paix", + "street_name_short": "Av. de la Paix", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1202", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/international-committee-of-the-red-cross/", + "philea_info": { + "About": "Established in 1863, the ICRC is at the origin of the Geneva Conventions and the International Red Cross and Red Crescent Movement. It directs and coordinates the international activities conducted by the Movement in armed conflicts and other situations of violence.\nMain beneficiaries of our multidisciplinary programs are: civilians, children, detainees, internally displaced people, migrants, missing persons, refugees and people with disabilities.", + "Mission": "The International Committee of the Red Cross (ICRC) is an impartial, neutral and independent organization whose exclusively humanitarian mission is to protect the lives and dignity of victims of armed conflict and other situations of violence and to provide them with assistance. The ICRC also endeavours to prevent suffering by promoting and strengthening humanitarian law and universal humanitarian principles.", + "Geographic Focus": "ICRC is present in more than 100 countries situated in Africa, the Americas, Asia and the Pacific, Europe and Central Asia as well as the Near and Middle East", + "Programme Areas": "Medical / health care and physical rehabilitation services for people with disabilities\nFostering economic security\nRestoring family links\nSecuring water and habitat\nAddressing weapon contamination\nHumanitarian forensics\nBuilding respect for humanitarian law and engaging in humanitarian diplomacy" + }, + "tags_focus": [ + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Asia & Pacific": [ + "Asia", + "Pacific" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5234, + "name": "IKEA Foundation", + "address": "IKEA Foundation Dellaertweg 9G 2316WZ Leiden Netherlands", + "country": "Netherlands", + "email": "programmes@ikeafoundation.org", + "website": "http://www.ikeafoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Dellaertweg 9g, 2316 WZ Leiden, Netherlands", + "lat": 52.1683013, + "lng": 4.4860001, + "zoom": 14, + "place_id": "EipEZWxsYWVydHdlZyA5LCAyMzE2IFhCIExlaWRlbiwgTmV0aGVybGFuZHMiUBJOCjQKMgkTIYc-6sbFRxFPU3pjx0tJQhoeCxDuwe6hARoUChIJX7vUhenGxUcRdvVaLdfuxKUMEAkqFAoSCRMhhz7qxsVHEe8HBQ8NhVWW", + "name": "Dellaertweg 9", + "street_number": "9", + "street_name": "Dellaertweg", + "city": "Leiden", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2316 XB", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/ikea-foundation/", + "philea_info": { + "About": "Founded in 1982, the IKEA Foundation (Stichting IKEA Foundation) is a charitable foundation headquartered in Leiden, the Netherlands. In the early days, the IKEA Foundation focused solely on architecture and interior design. Over the years, IKEA became active in addressing the root causes of child labour as well as endeavours with major partners to promote child rights and education. In 2009, the IKEA Foundation was able to expand its charter to include a broader mission of improving children’s opportunities, to help them ultimately take control of their own future. Today, all global IKEA social and philanthropic efforts are found together under the umbrella of the IKEA Foundation.", + "Mission": "To create substantial and lasting change by funding holistic, long-term programmes in developing countries that address children’s fundamental needs: home, health, education and a sustainable family income.", + "Geographic Focus": "Developing countries mainly", + "Programme Areas": "The foundation support long-term programmes that help turn the cycle of poverty into a circle of prosperity. The focus is on programmes that address children’s fundamental needs: A place to call home\nSupports survivors of conflicts and large natural disasters – such as the 2010 earthquake in Haiti and flooding in Pakistan – to address children’s critical needs for a safe place to call home.\nCurrent projects address:\n– Improving life and education in refugee camps\n– Reconnecting displaced families\n– Improving emergency shelters A healthy start in life\nA healthy start is fundamental for children’s development and opportunities in life. That is why the foundation place such a strong emphasis on preventive care, nutrition, and sanitation initiatives. A quality education\nThe foundation funds access to quality education with the aim of reducing a child’s vulnerability to abuse, exploitation and disease. Girls particularly are at greater risk of such abuse when they aren’t in school. Getting girls into schools and ensuring they stay and learn has therefore proven to be of tremendous importance. Through their annual Soft Toys for Education campaign, the foundation also helps fund UNICEF’s Schools for Africa programme and Save the Children’s educational projects in Asia and Eastern Europe. A sustainable family income\nWomen are the most important catalysts for change for their children. That’s why the IKEA Foundation supports programmes that help women gain knowledge about children’s rights and the importance of education – because when they do, women have the power to influence the whole community. In addition, funding programmes that give women a better chance to contribute to the family income – by learning a marketable skill or getting a micro loan to start a small business – helps ensure that children can stay in school instead of dropping out to help feed their family. Donations after natural disasters and conflicts\nAfter major natural disasters and conflicts, the foundation donates selected IKEA products to support humanitarian relief efforts. Later, it may contribute financially to projects addressing the longer-term reconstruction and rehabilitation work after disasters such as earthquakes, flooding and cyclones. This is done through our partners Save the Children, UNICEF and UNHCR based on their needs assessments. Starting in 2012, the foundation also started providing UNICEF with educational toys and stationery from IKEA for their early childhood development (ECD) kits, sent out in response to disasters. Depending on the need, over two years these kits could reach 1.2 million children, giving them a child-friendly learning environment to help them cope with life in a camp." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Global South / Majority World": [ + "Developing Countries" + ] + } + }, + { + "id": 5229, + "name": "Global Dialogue", + "address": "Global Dialogue The Foundry 17 Oval Way SE11 5RR London United Kingdom", + "country": "United Kingdom", + "email": "info@global-dialogue.org", + "website": "http://www.global-dialogue.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "The Foundry | Office Space and Conference Centre, 17 Oval Way, London SE11 5RR, United Kingdom", + "lat": 51.4858439, + "lng": -0.1163458, + "zoom": 14, + "place_id": "ChIJj2Ia2ZIEdkgRBQxKgeXWaQs", + "name": "The Foundry | Office Space and Conference Centre", + "street_number": "17", + "street_name": "Oval Way", + "city": "London", + "state": "England", + "post_code": "SE11 5RR", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/global-dialogue/", + "philea_info": { + "About": "Global Dialogue was founded by Andrew Puddephatt in 2006 with a wide-ranging brief to promote human rights around the world. Its first programme, the Strategic Fund for Turkey, enabled several private funders to support the emerging human rights movement in Turkey at a critical time of transition in the region. In 2009 Global Dialogue founded Ariadne to bring together funders and philanthropists supporting human rights\nand social change into a supportive network sharing resources and expertise. They now have eight programmes supporting funder collaboration and innovation on human rights and social change around the world, including our new closing space programme, the Funders’ Initiative for Civil Society, and a Syria Working Group, both launching in 2017.", + "Mission": "‘-Under review-", + "Geographic Focus": "United Kingdom, Middle East, Global", + "Programme Areas": "• Ariadne, the network of European funders for social change and human rights.\n• The Early Action Funders Alliance, a funder collaborative which aims to promote a vision of a society that prevents problems from occurring rather than only coping with the consequences.\n• The Funders’ Initiative for Civil Society, a funder network which aims to coordinate a global response by private philanthropy to the closing of civic space.\n• Our general grant-making, which enables funders to make grants for human rights and social change worldwide\n• IMiX, a project which aims to increase communications capacity and coordinate communications activities in the UK’s migration and integration sectors\n• Migration Exchange, a funder collaborative which aims to improve the lives of migrants and receiving communities in the UK by informing public debate on migration and creating welcoming communities.\n• The Thomas Paine Initiative, a funder collaborative which aims to increase awareness of and support for human rights in the UK.\n• The Syria Working Group, which aims to inform and enable private philanthropic support for Syria and the neighbouring countries." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Human/Civil Rights", + "Humanitarian & Disaster Relief" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ], + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 5228, + "name": "Gjensidigestiftelsen", + "address": "Gjensidigestiftelsen Grundingen 6, Aker Brygge 0250 Oslo Norway", + "country": "Norway", + "email": "mail@gjensidigestiftelsen.no", + "website": "http://www.gjensidigestiftelsen.no/english", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gjensidigestiftelsen, Aker Brygge, Grundingen 6, 0250 Oslo, Norway", + "lat": 59.91064249999999, + "lng": 10.7279563, + "zoom": 14, + "place_id": "ChIJ1V49AYFuQUYRYTyGzG6PQVw", + "name": "Gjensidigestiftelsen", + "street_number": "6", + "street_name": "Grundingen", + "city": "Oslo", + "state": "Oslo", + "post_code": "0250", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/gjensidigestiftelsen/", + "philea_info": { + "About": "The Gjensidigestiftelsen is the largest foundation in Norway, and combines two important roles. It is a significant financial player and the principal shareholder of Gjensidige Forsikring ASA, and it is an important contributor to various socially beneficial causes, with the focus on health and safety.\nIn June 2010 Gjensidige Forsikring became a public limited company (ASA). At the same time, the Gjensidige Foundation was converted from an ordinary foundation to a financial foundation. Up until the end of 2010 the Gjensidige Foundation owned all the shares in Gjensidige. In connection with Gjensidige’s stock market flotation on 10 December 2010, the Foundation sold some of its shares, and Gjensidige gained approximately 47,000 new shareholders. At present, the Foundation owns a little over 62 per cent of Gjensidige’s shares.\nThe Foundation’s financial objectives are to manage its long-term ownership of Gjensidige, to pass on a share dividend to Gjensidige’s non-life insurance customers, and to manage the revenue raised from the sale of shares. The Foundation’s non-profit objective is to promote health and safety through charitable donations. Such donations are made in accordance with the Foundation’s fundamental values, which are : “Preventive – Developing – Activity creating – Society building”.\nFrom its establishment in October 2007 up until 2015, the Foundation has distributed over NOK 1.4 billion to more than 5.200 projects that promote health and safety initiatives.", + "Mission": "Through its programme of donations the Foundation aims to promote safety, health and other worthy causes falling under the scope of its core values: preventive, developing, activity-creating and society-building.", + "Geographic Focus": "Norway", + "Programme Areas": "The 5 Priorities Areas of the foundation are the following:\n– Safety\n– Learning & Sharing\n– Social inclusion and diversity\n– Physical activity\n– Diet Safety\nThe foundation supports projects that contribute to minimize the potential for damage in accidents. The foundation looks for all kinds of preventive activities for children and youth, for example, training in traffic safety. Furthermore, it supports measures to strengthen the voluntary preparedness efforts, as well as measures to strengthen the population first aid and lifesaving skills. Learning & Sharing\nThe foundation supports projects that create good social networks and meeting places, and that contribute to master challenges in everyday life. Furthermore, it supports projects that contribute to gain a more complete secondary education. It also supports projects that contribute to the recruitment of youth leadership and volunteers. Social inclusion and diversity\nThe foundation supports projects that contribute to include groups that do not participate on an equal basis as others. The same applies to projects which help bringing generations together. The foundation also looks for projects that strengthen children’s and young people’s ability to resolve conflicts by peaceful means and measures to prevent violence and insecurity. Physical activity\nThe foundation supports projects that contribute to be more physically active. Examples include the construction and adaptation of facilities and areas for different physical activities like sports and outdoor activities and sport equipment. The objective is that these measures should include as many as possible, especially those who lack an offer. The foundation prioritizes projects targeting the community, including new groups, and that are open and accessible and encourage innovation and partnership. Diet\nThe foundation supports projects that stimulate people to choose a healthy diet. Examples of projects that can get support are measures that promote good dietary habits through knowledge dissemination and trainings, in particularly targeting children and young people." + }, + "tags_focus": [ + "Education", + "Food, Agriculture & Nutrition", + "Health", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Norway" + ] + } + }, + { + "id": 5227, + "name": "German Marshall Fund of the United States, The", + "address": "The German Marshall Fund of the United States 1744 R Street, NW 20009 Washington, DC United States", + "country": "United States", + "email": "", + "website": "http://www.gmfus.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "The German Marshall Fund of the United States, 1744 R Street Northwest, Washington, DC 20009, United States", + "lat": 38.9124205, + "lng": -77.0402714, + "zoom": 14, + "place_id": "ChIJc3tDMsS3t4kRn7RO_AoyGbw", + "name": "The German Marshall Fund of the United States", + "street_number": "1744", + "street_name": "R Street Northwest", + "street_name_short": "R St NW", + "city": "Washington", + "state": "District of Columbia", + "state_short": "DC", + "post_code": "20009", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/german-marshall-fund-of-the-united-states-the/", + "philea_info": { + "About": "The German Marshall Fund of the United States (GMF) is an American public policy and grantmaking institution dedicated to promoting greater cooperation and understanding between the US and Europe. Founded in 1972 through a gift from Germany as a permanent memorial to Marshall Plan assistance, GMF maintains a strong presence on both sides of the Atlantic. In addition to its headquarters in Washington DC, GMF has six offices in Europe: Berlin, Paris, Brussels, Belgrade, Ankara, and Bucharest. GMF also has smaller representations in Bratislava, Turin, and Stockholm.", + "Mission": "GMF strives to champion democratic values and the transatlantic alliance by strengthening civil society, forging bold and innovative policy ideas, and developing a new generation of leaders to tackle global challenges. GMF delivers hope by upholding the dignity of the individual and defending freedom in the spirit of the Marshall Plan.", + "Geographic Focus": "Balkans, the Black Sea region, Central and Eastern Europe, Belarus and Ukraine.", + "Programme Areas": "GMF’s areas of expertise are strengthening and innovating transatlantic cooperation in a shifting global context, while supporting democratic resilience. GMF’s key strength lies in its ability to foster transatlantic dialogue and cooperation. By bringing together policymakers, business leaders, and civil society from both sides of the Atlantic, GMF helps address global challenges through collaborative solutions. Our work in promoting democracy, security, and innovation contributes significantly to the stability and prosperity of the transatlantic community. With offices in Washington, D.C., Berlin, Brussels, Ankara, Belgrade, Bucharest, Paris, and Warsaw, GMF has a broad geographic presence and influence." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Belarus", + "Central & Eastern Europe", + "Ukraine" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5226, + "name": "Gerda Henkel Stiftung", + "address": "Gerda Henkel Stiftung Malkastenstrasse 15 40211 Dusseldorf Germany", + "country": "Germany", + "email": "info@gerda-henkel-stiftung.de", + "website": "http://www.gerda-henkel-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gerda Henkel Stiftung, Malkastenstraße 15, 40211 Düsseldorf, Germany", + "lat": 51.2306679, + "lng": 6.788907200000001, + "zoom": 14, + "place_id": "ChIJ9ZOpRCbKuEcRtgW0xqj1p9s", + "name": "Gerda Henkel Stiftung", + "street_number": "15", + "street_name": "Malkastenstraße", + "city": "Düsseldorf", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "40211", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/gerda-henkel-stiftung/", + "philea_info": { + "About": "Gerda Henkel Stiftung was established in June 1976 by Lisa Maskell in memory of her mother, Gerda Henkel.", + "Mission": "To foster research in the historical humanities, focusing on the support of academic projects and PhD fellowships, primarily in the fields of history, art history, archaeology and history of Islam.", + "Geographic Focus": "Germany and international", + "Programme Areas": "The Foundation promotes research projects in the historical sciences, mainly in the following fields:\n• Archaeology\n• History\n• Art History\n• Prehistory and Early History\n• History of Islam\n• Legal History\n• History of Science. The advancement of young scholars is a special interest of the Foundation. For a number of years, the Foundation has also increasingly addressed issues of great relevance to contemporary life and the future, above all as part of its special programmes “Islam, the Modern Nation State and Transnational Movements” and “Security, Society and the State”. As part of the Lisa Maskell Fellowships, since 2014 the Foundation has been supporting young scholars in the humanities in both Africa and Southeast Asia. Starting in 2015, the Foundation has with its “Patrimonies” funding initiative focused more strongly on the preservation of cultural heritage, specifically in regions experiencing crisis." + }, + "tags_focus": [ + "Arts & Culture", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Germany" + ] + } + }, + { + "id": 5225, + "name": "Genio", + "address": "Genio Trust Westland Square 19-21 Pearse Street D02 YH27 Dublin 2 Ireland", + "country": "Ireland", + "email": "info@genio.ie", + "website": "http://www.genio.ie", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Westland Square, Pearse Street, Dublin 2, Ireland", + "lat": 53.3443049, + "lng": -6.2474485, + "zoom": 14, + "place_id": "ChIJIwvWjpEOZ0gRop0AhQYcs1Q", + "name": "Westland Square", + "street_name": "Pearse Street", + "street_name_short": "Pearse St", + "city": "Dublin 2", + "state": "County Dublin", + "state_short": "D", + "country": "Ireland", + "country_short": "IE" + }, + "link": "https://philea.eu/members/genio/", + "philea_info": { + "About": "Genio works to bring Government and philanthropic funders together to develop better ways to support disadvantaged people to live full lives in their communities. So far they are working to improve the lives of people with disabilities, mental health difficulties and dementia. In June 2010, the Genio Trust was established by Genio as a registered charity to facilitate the building and distribution of funds to support socially innovative projects targeting those at risk of social exclusion. Projects supported by the Genio Trust are performance-managed and must fulfil criteria agreed with funders including cost-effectiveness and sustainability beyond an initial investment period. In parallel with the innovation funding Genio provides support and training for key stakeholders to manage and implement required changes; and undertakes and commissions research to measure impact. Since 2010, they have awarded funding to 226 projects in Ireland to provide over 5,500 people with individualised supports in the community. In addition over 9,000 families, carers and staff have attended information and training events through the projects they support.", + "Mission": "To increase opportunities for people who are marginalised to live purposeful and productive lives in their communities.", + "Programme Areas": "Disability, mental health and dementia. It is likely that the Genio Trust will be funding other areas in the future e.g. the children’s area." + }, + "tags_focus": [ + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Ireland" + ] + } + }, + { + "id": 5222, + "name": "Fundación Ramón Areces", + "address": "Fundación Ramón Areces Calle Vitruvio, 5 28006 Madrid Spain", + "country": "Spain", + "email": "secretaria@fundacionareces.es", + "website": "http://www.fundacionareces.es", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación Ramón Areces, Calle Vitruvio, 5, 28006 Madrid, Spain", + "lat": 40.4431182, + "lng": -3.6889176, + "zoom": 14, + "place_id": "ChIJOeD_Qe8oQg0R5K_qvAR32ME", + "name": "Ramón Areces Foundation", + "street_number": "5", + "street_name": "Calle de Vitruvio", + "street_name_short": "C. de Vitruvio", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28006", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-ramon-areces/", + "philea_info": { + "About": "Fundación Ramón Areces is a non-profit organisation whose main objective is to stimulate and support scientific and technical research in Spain, and to promote education and culture. It was constituted by Ramón Areces Rodrígues in 1976. It was classified as a private cultural foundation under the auspices of the Ministry of Education.", + "Mission": "To promote and develop scientific and technical research, as well as education and culture.", + "Geographic Focus": "Spain and Portugal", + "Programme Areas": "The foundation works in three specific areas: • Life and Material Sciences\n• Social Sciences\n• Humanities" + }, + "tags_focus": [ + "Sciences & Research" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Portugal", + "Spain" + ] + } + }, + { + "id": 5221, + "name": "Fundación Princesa de Girona", + "address": "Fundación Princesa de Girona C. Juli Garreta, 1, 1r E 17002 Girona Spain", + "country": "Spain", + "email": "info@fpdgi.org", + "website": "https://en.fpdgi.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundació Princesa de Girona, Carrer Juli Garreta, 1, 1r E, 17002 Girona, Spain", + "lat": 41.9797082, + "lng": 2.8195976, + "zoom": 14, + "place_id": "ChIJRSrtZcrmuhIR1KZjv8tfY4s", + "name": "Fundació Princesa de Girona", + "street_number": "1", + "street_name": "Carrer Juli Garreta", + "city": "Gerona", + "state": "Cataluña", + "state_short": "CT", + "post_code": "17002", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-princesa-de-girona/", + "philea_info": { + "About": "The Princess of Girona Foundation is a private foundation set up by civil society entities in Girona in 2009 and backed by 88 distinguished trustees. The Honorary Chairman is His Majesty Kind Felipe VI of Spain, on behalf of his daughter Princess Leonor.", + "Mission": "The Foundation’s mission is to support the education, initiative and development of young people as a way of empowering new generations to build a better and more caring society.", + "Geographic Focus": "Spain", + "Programme Areas": "The FPdGi focuses its activity on three areas:\n– FPdGi Awards: the awards seek to recognise the career of young people between 16 and 35 years old in any part of the world who stand out for their work, their merits and their exemplarity.\n– Educating entrepreneurial talent: this programme aims to raise awareness, promote and guide entrepreneurial education as a key aspect for young people’s future.\n– Talent rescuers: this programme promotes the employability of young people between 20 and 30." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 5220, + "name": "Fundación Princesa de Asturias", + "address": "Fundación Princesa de Asturias General Yagüe 2, 1° 33004 Oviedo Spain", + "country": "Spain", + "email": "info@fpa.es", + "website": "http://www.fpa.es", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Princess of Asturias Foundation, General Yagüe, Oviedo, Spain", + "lat": 43.3628135, + "lng": -5.8532017, + "zoom": 14, + "place_id": "ChIJ25ExJeOMNg0RUcoNBo3_PiA", + "name": "Princess of Asturias Foundation", + "street_number": "2", + "street_name": "General Yagüe", + "city": "Oviedo", + "state": "Principado de Asturias", + "state_short": "AS", + "post_code": "33004", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-princesa-de-asturias/", + "philea_info": { + "About": "The Prince of Asturias Foundation is a Spanish non-profit organisation founded in the city of Oviedo on 24th September 1980 at a formal ceremony presided over by His Royal Highness the Prince of Asturias, heir to the throne of Spain, who was accompanied by his parents, their Majesties the King and Queen of Spain.\nFollowing the proclamation of HM King Felipe VI and the succession of HRH Princess Leonor de Borbón y Ortiz, Heir to the Crown of Spain, to the title of Prince or Princess of Asturias, the Prince of Asturias Foundation and Awards will now be respectively called the Princess of Asturias Foundation and the Princess of Asturias Awards.", + "Mission": "To consolidate links between the Principality and the Prince of Asturias, and to contribute to encouraging and promoting scientific, cultural and humanistic values that form part of mankind’s universal heritage.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The Prince of Asturias Awards were initiated in 1981, and are divided into eight categories: • Arts\n• Social Sciences\n• Communication and Humanities\n• International Cooperation\n• Technical and Scientific Research\n• Literature\n• Sport\n• Concord The Awards are presented at a formal ceremony held each year at the Campoamor Theatre in Oviedo. Each of the eight international recipients are awarded 50,000 euros, a specially commissioned Joan Miró sculpture, a diploma and an insignia." + }, + "tags_focus": [ + "Arts & Culture", + "Health", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5219, + "name": "Fundación ONCE", + "address": "Fundación ONCE C/ Sebastián Herrera 15 28012 Madrid Spain", + "country": "Spain", + "email": "dae@fundaciononce.es", + "website": "http://www.fundaciononce.es", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación ONCE, Calle de Sebastián Herrera, 15, 28012 Madrid, Spain", + "lat": 40.4040145, + "lng": -3.6994322, + "zoom": 14, + "place_id": "ChIJcSbqcy0mQg0R9k83WEfJnP4", + "name": "Fundación ONCE", + "street_number": "15", + "street_name": "Calle de Sebastián Herrera", + "street_name_short": "C. de Sebastián Herrera", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28012", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-once/", + "philea_info": { + "About": "Fundación ONCE was formed from the Organización Nacional de Ciegos de España ONCE (the Spanish National Organisation for the Blind), which was set up in 1938 to provide support for blind people in Spain. In 1988, ONCE decided to set up a foundation which was publicly presented as an instrument for cooperation and social responsibility, by which blind people pledged their support for other groups of people with disabilities, with the aim of improving their quality of life.", + "Mission": "The main objective of Fundación ONCE is to carry out job-training integration and employment programs for persons with disabilities, and global accessibility, promoting the creation of environments, products and services that are globally accessible.", + "Geographic Focus": "Spain and Europe", + "Programme Areas": "The foundation works to establish agreements and general frameworks for agreements with public and private institutions to benefit disabled people, assisting their personal development, integration into society and employment. It supports general welfare activities which support these objectives in the following areas: – Employment and Training\n– Universal accessibility\n– International Area\n– Regulatory Impulse and other Initiatives\n– University and Disability Employment and Training\nThe main objective of Fundación ONCE, bearing social reality in mind as well as the specific needs of persons with disabilities in Spain, entails job promotion for these persons, as an intermediate step that is essential for their complete social integration. In order to effectively fulfil this goal, Fundación ONCE invests each year at least 60% of its budget to the Training and Employment Plan Universal accessibility\nThe mission of the Directorate for Universal Accessibility is to promote the Design for All and achieve universal accessibility as an essential condition for equal opportunities of persons with disabilities. The directorate organizes its management structure into three areas: accessibility of physical resources, culture and leisure (sports and tourism) and new technologies. International Area\nGuided by its commitment to improve quality of life of persons with disabilities and its facilities, the foundation follows closely the trends in Europe with regards to this group, both in the scope of European Institutions and any forums were work is carried out to defend the interests of the 50 million European citizens with disabilities. Regulatory Impulse and other Initiatives\nThe foundation commits to support the adoption of any regulatory initiatives that benefit them and their families. University and Disability\nFundación ONCE has developed a University and Disability Strategy in order to work with the Spanish University System in fulfilling current legislation, as well as to promote actions that encourage the involvement of persons with disabilities at Universities." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 5218, + "name": "Fundación María Cristina Masaveu Peterson", + "address": "Fundacion Maria Cristina Masaveu Peterson Alcalá Galiano 6 28010 Madrid Spain", + "country": "Spain", + "email": "secretaria@fundacioncristinamasaveu.com", + "website": "http://www.fundacioncristinamasaveu.com/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación María Cristina Masaveu Peterson, Calle Alcalá Galiano, 6, 28010 Madrid, Spain", + "lat": 40.426676, + "lng": -3.691599, + "zoom": 14, + "place_id": "ChIJJcrHx5EoQg0RXTX908LZ5e8", + "name": "Fundación María Cristina Masaveu Peterson", + "street_number": "6", + "street_name": "Calle Alcalá Galiano", + "street_name_short": "C. Alcalá Galiano", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28010", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-maria-cristina-masaveu-peterson/", + "philea_info": { + "About": "The founder is María Cristina Masaveu Peterson was born in Oviedo on 17 April 1937. She was a woman open to modernity, with a liberal spirit, cultured and sensitive, generous and committed to a great number of social causes, with acute emotional intelligence and deep convictions, she lived her life with the utmost discretion, simplicity and closeness to others. As a businesswoman and philanthropist, she engaged in important charitable work throughout her life.\nAs a result of her experiences and emotions, the Foundation that she created on 5 May 2006, which bears her name, is a testament to her life and her commitment to the Principality of Asturias, Spain and society in general. She died in Oviedo on 14 November 2006.", + "Mission": "To promote culture, training and research in Spain and to contribute to a better society in all aspects.", + "Geographic Focus": "Spain and Spanish cultural, research and education programmes around the world", + "Programme Areas": "The objectives of the Foundation are:\n– Promotion, dissemination, conservation and restoration of the Spanish Historical Heritage, of Music and Art in general\n– Training of young workers, looking after their integral, human and professional learning\n– Scientific research, paying special attention to the technological development of the cement manufacturing industry and its subsequent applications\n– Programs of scholarships and grants ”Becas de Excelencia Académica”, training scholarship and music programs\n– Artistic scholarships and music programs\n– Exhibition of art, photo and programs of loans of works from Masaveu Collection\n– Support to projects of research scientist and oncology\n– Program of scholarships for the accommodation of students in the United States\n– Publications of books of art and cultural exhibitions" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "World" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 5217, + "name": "IE Foundation", + "address": "Calle Maria de Molina, 11-13-15, 28006 Madrid, España", + "country": "Spain", + "email": "iefoundation@ie.edu", + "website": "https://www.ie.edu/ie-foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Calle de María de Molina, 11-13-15, 28006 Madrid, España", + "lat": 40.4375247, + "lng": -3.6894636, + "zoom": 14, + "place_id": "ChIJVVVlOOwoQg0RnhDE1RKpXl0", + "name": "Calle de María de Molina, 11-13-15", + "street_number": "11-13-15", + "street_name": "Calle de María de Molina", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28006", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/ie-foundation/", + "philea_info": { + "About": "IE Foundation is a non-profit organization founded in 1997, dedicated to promoting the strategic values of IE University through projects and resources primarily dedicated to providing scholarships for talented individuals, funding world-class research that broadens our collective knowledge, and sponsoring initiatives with a positive social impact. In the more than twenty years since its creation, the Foundation has worked to carry out this purpose and expand its work to new areas. Geographically speaking, it now operates throughout Europe, North and South America, the Middle East, Northern Africa and Southeast Asia.", + "Geographic Focus": "Primarily Spain, but is also present in and focused on North and South America, South East Asia, the Middle East, North Africa and Europe", + "Programme Areas": "IE Foundation contributes to social development for a better tomorrow through three main pillars: Talent development: Access to education for outstanding talent At IE we believe that each individual deserves the opportunity to achieve his or her full potential. We work to eliminate economic barriers to education and to offer resources to projects that add value to the academic community and to society as a whole. Our efforts to empower talent focus on three main areas: Scholarship programs: We offer financial support to talented students in every stage of their IE educational experience, from their undergraduate studies, to their masters, doctorates and research initiatives.\nIE Foundation Fellows: We draw the best candidates to join the program from a large pool of talented and highly qualified aspirants worldwide to form a community of past and present scholarship recipients.\nIE for Life: We support the success and ongoing talent development of the IE Alumni Community through a set of resources designed to accompany them at every stage of their professional journey. Collaborative knowledge generation: Finding solutions to the social, technological and economic issues we face today In order to promote change and innovation, it is necessary to support cutting-edge research and initiatives that use new strategies in critical thinking. The Foundation’s think tanks, centers for excellence, observatories and chairs work to provide innovative solutions to the challenges faced by the business world and society as a whole. Impact initiatives: Promoting IE values The IE Foundation is more than a source of financial aid for students and research initiatives. We are committed to fomenting the success of all members of the community, promoting social change, and reinforcing our values of inclusion, innovation and an entrepreneurial spirit. In order to achieve this goal, we support a wide range of social action programs, cultural celebrations and entrepreneurial initiatives." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ], + "Latin America & Caribbean": [ + "Latin America" + ] + } + }, + { + "id": 5216, + "name": "Fundación Barrié", + "address": "Fundación Barrié Cantón Grande, 9 15003 A Coruña Spain", + "country": "Spain", + "email": "info@fbarrie.org", + "website": "http://www.fundacionbarrie.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación Barrié, Rúa Cantón Grande, 9, 15003 A Coruña, Spain", + "lat": 43.36801620000001, + "lng": -8.403474800000001, + "zoom": 14, + "place_id": "ChIJ_Vr12318Lg0R3jcNUA9hatk", + "name": "Fundación Barrié", + "street_number": "9", + "street_name": "Rúa Cantón Grande", + "city": "A Coruña", + "state": "Galicia", + "state_short": "GA", + "post_code": "15003", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-barrie/", + "philea_info": { + "About": "Pedro Barrié de la Maza, Count of Fenosa, created the foundation in 1966, declaring it his universal heir. Banker, businessman and promoter of outstanding initiatives, he dedicated his life (1888-1971) to working for the economic, social and cultural progress of Galicia, his native region. From 1971 to 2009, the foundation was presided over by the founder’s widow, Carmela Arias y Díaz de Rábago, Countess of Fenosa. Since her demise in 2009, José María Arias Mosquera, the president of Banco Pastor, is directing the foundation.", + "Mission": "To foster the sustainable development of Galicia, with particular emphasis on human capital investments.", + "Geographic Focus": "Galicia, Spain", + "Programme Areas": "The foundation is active in the following areas: • Heritage and culture\n• Education and research\n• Social work Heritage and Culture\nThe foundation runs projects to conserve the heritage of Galicia and increase its appreciation, among them the outstanding programmes carried out in the Cathedral of Santiago de Compostela. It also organises free exhibitions, concerts and seminars, attracting around 100,000 people per year. These cultural programmes also include a temporary exhibitions programme, designed for broad public appeal, in the fields of fine arts, photography, architecture and design that are accompanied by intense educational and complementary activities programmes. Education and Research\nPromoting excellent research and spreading scientific results while favouring the development of a highly innovative production environment in Galicia are the objectives of the research area. It supports a broad range of research projects ranging from historical heritage research to biomedical research. The foundation also supports research institutes in other areas, such as the Pedro Barrié de la Maza Institute for Economic Studies. In the Education area, the foundation supports excellence and talent through comprehensive, high-quality education. The foundation offers different scholarship programmes, among them the scholarship programme for postgraduate studies abroad or the High School scholarships for studying one academic year in the United States. Social Work\nThe Social Work area focuses on the fight against social exclusion in Galicia in collaboration with non-profit organisations working with the elderly, drug addicts, persons with disabilities, prisoners, women and children. The foundation provides these organisations with financial assistance and training opportunities, striving for the social and/or labour insertion of the most vulnerable sections of the population." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 5214, + "name": "Fundação Luso-Americana para o Desenvolvimento", + "address": "Fundação Luso-Americana para o Desenvolvimento Rua do Sacramento à Lapa 21 1249-090 Lisbon Portugal", + "country": "Portugal", + "email": "fladport@flad.pt", + "website": "http://www.flad.pt", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Rua Sacramento à Lapa 21, Lisbon, Portugal", + "lat": 38.708293, + "lng": -9.162948499999999, + "zoom": 14, + "place_id": "ChIJu2jwj540GQ0RpMgVt3mWgcs", + "name": "R. Sacramento à Lapa 21", + "street_number": "21", + "street_name": "Rua Sacramento à Lapa", + "street_name_short": "R. Sacramento à Lapa", + "city": "Lisboa", + "state": "Lisboa", + "country": "Portugal", + "country_short": "PT" + }, + "link": "https://philea.eu/members/fundacao-luso-americana-para-o-desenvolvimento/", + "philea_info": { + "About": "Fundação Luso-Americana para o Desenvolvimento (FLAD) was established in 1985 following a cooperation agreement between the governments of Portugal and the US. It was established under Portuguese law as a private organisation, officially recognised as a public service institution that is financially and administratively independent, to pursue the aims of its statutes.", + "Mission": "To contribute to Portugal’s economic and social development by promoting cooperation between Portugal and the US in business, education, science, technology, environmental protection and culture.", + "Geographic Focus": "Portugal, US and Portuguese speaking countries", + "Programme Areas": "The foundation offers support in the following areas: • Education, Science and Technology\n• Culture\n• Environment\n• Functions of the State and Civil Society\n• Transatlantic Relations and European Integration\n• Cooperation with Portuguese Speaking Countries Education, Science and Technology\nSupports Portuguese centres of scientific research and training for qualified professionals. The foundation develops exchange programmes with foreign countries, particularly the US, and contributes towards the creation and development of various scientific institutes and departments. Culture\nOperates scholarship programmes in the areas of fine arts, literature, architecture and music and cooperation programmes between Portuguese and American cultural institutions. The foundation sponsors professional training for artists and managers in the field of culture, and develops a contemporary Portuguese art collection which it disseminates through exhibits and lending works of art abroad. Portuguese language and culture are promoted in the US through support given to Portuguese studies centres at American universities. Environment\nSupports public awareness programmes involving conferences, workshops and publications, and capacity building for Portuguese environmental NGOs. The foundation also supports environmental educational and research by means of cooperation agreements between Portuguese and American universities, as well as scholarships grants. The foundation supports transnational environmental networks which debate environmental issues at an international level. Functions of the State and Civil Society\nPromotes modernisation and efficiency in public administration, focusing on innovative management practices and new information technologies, in addition to improving intervention systems in the public sector. The foundation implements policies of urban improvement and territorial administration and raises public and institutional awareness of these problems. Transatlantic Relations and European Integration\nCollaborates with Portuguese and American universities and think tanks in a number of studies on relations between the United States and Europe, and issues involving the enlargement of the European Union. Cooperation with Portuguese Speaking Countries\nThroughout its history, the foundation has developed and promoted a vast number of initiatives to spark cooperation among Portuguese-speaking countries. In most instances, Lusophone Africa has been the main target of FLAD’s attention." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Portugal" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5213, + "name": "Fundação Calouste Gulbenkian", + "address": "Fundação Calouste Gulbenkian Avenida de Berna 45ª 1067-001 Lisbon Portugal", + "country": "Portugal", + "email": "info@gulbenkian.pt", + "website": "http://www.gulbenkian.pt", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Avenida de Berna 45 A, Lisbon, Portugal", + "lat": 38.7373239, + "lng": -9.1544367, + "zoom": 14, + "place_id": "ChIJky4ozw0zGQ0RNNlnB1Kvuo8", + "name": "Av. de Berna 45 A", + "street_number": "45 A", + "street_name": "Avenida de Berna", + "street_name_short": "Av. de Berna", + "city": "Lisboa", + "state": "Lisboa", + "post_code": "1050-078", + "country": "Portugal", + "country_short": "PT" + }, + "link": "https://philea.eu/members/fundacao-calouste-gulbenkian/", + "philea_info": { + "About": "Established in 1956 as a Portuguese foundation for the whole of humanity, the Gulbenkian Foundation was bequeathed by the last will and testament of Calouste Sarkis Gulbenkian. The foundation is of perpetual duration and undertakes its activities structured around its headquarters in Lisbon (Portugal) and its delegations in Paris (France) and London (UK).", + "Mission": "The foundation is a perpetual institution of Portuguese nationality with charitable, artistic, educational and scientific statutory aims. It is committed to full independence and preservation of its heritage, and its main priority is defined as the development of a society that provides equal opportunities and that is sustainable.", + "Geographic Focus": "Portugal, Europe, Portuguese-speaking African countries, East Timor, worldwide Armenian communities, and international", + "Programme Areas": "Aligned with a national, European and global agenda, the foundation engages in a transversal approach spanning three activity areas: – Art and Culture\n– Social Development and Sustainability\n– Science, Education and Health Art and Culture\nIn addition to the permanent Collections of the Museums – Calouste Gulbenkian Museum and CAM (Modern Art Centre) –, the Art Library and Archives, the performances featuring in the Gulbenkian Music season and in which the Gulbenkian Orchestra and Choir always play a central role, the foundation also carries out a diverse range of other activities interconnected with the Arts: temporary exhibitions, conferences, awarding of grants and scholarships, training programmes, the Gulbenkian Prize for Heritage (renovation and restoration), publishing studies and running educational activities represent some of the foundation’s initiatives ongoing in this field. Social Development and Sustainability\nAwarded annually, the Gulbenkian Prize for Humanity, to the tune of 1 million euros, aims to recognise people, groups of people and/or organisations from all over the world whose contributions to mitigation and adaptation to climate change stand out for its novelty, innovation and impact. At the national level, the Gulbenkian Foundation provides incentives and facilitates the inclusion of vulnerable groups (the elderly, at-risk children and young persons, migrants and refugees) through the empowerment of people and organisations, promoting and experimenting with innovative solutions, through valuing the role of the arts as a means to promote change and social transformation, through promoting a transition to a more sustainable production and consumption (climate change, oceans, circular economy) as well as testing new financial models for social and environmental solutions.\nAt the international level, the foundation promotes and contributes to the preservation of Armenian culture and language and, especially in the PALOPs – the Portuguese Language Speaking Countries in Africa and East Timor, strengthens the capacities of people and institutions in key areas of social and economic development. Science, Education and Health\nScience, Education and Health have been core areas of activity for the last few decades and today the Gulbenkian Foundation strives to increase access to quality health care and improve the efficiency of health services (through implementation of science and behavioural change techniques), to develop and support projects that reinforce education and learning (in children, young persons and adults). In science, the foundation promotes world-class biological and biomedical scientific research, postgraduate and doctoral trainings and strengthens a science-society relationship. The Gulbenkian Foundation also invests in prospective analysis and discussion of the main issues concerning the future of Portugal, Europe and globally, and increasing the number of people capable of fostering adaptation and change." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "International", + "Worldwide" + ], + "Asia & Pacific": [ + "East Timor" + ], + "Europe (Southern / Mediterranean)": [ + "Portugal" + ], + "Europe (Central & Eastern / Balkans)": [ + "Armenia" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 5211, + "name": "Fritt Ord Foundation", + "address": "Fritt Ord Foundation Uranienborgveien 2 0258 Oslo Norway", + "country": "Norway", + "email": "post@frittord.no", + "website": "http://www.frittord.no/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fritt Ord, Uranienborgveien 2, 0258 Oslo, Norway", + "lat": 59.9199598, + "lng": 10.7264898, + "zoom": 14, + "place_id": "ChIJveWuq3huQUYRTOGkJjmrBaA", + "name": "Fritt Ord", + "street_number": "2", + "street_name": "Uranienborgveien", + "city": "Oslo", + "state": "Oslo", + "post_code": "0258", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/fritt-ord-foundation/", + "philea_info": { + "About": "The Fritt Ord Foundation was established in 1974 by Narvesens Kioskkompani, a family owned company, to secure an independent distribution of the printed word.", + "Mission": "To protect and promote the freedom of expression, and the environment for the freedom of expression in Norway; to support other aspects of Norwegian Culture, primarily those dealing with free speech; and, in special cases, to promote the freedom of expression in other countries.", + "Geographic Focus": "Norway and Europe", + "Programme Areas": "The foundation manages funds for projects within the areas of : • Media and Democracy\n• Information and Public Debate\n• Grants and Training\n• Art and Culture Media and Democracy\nPromotes freedom of expression, and knowledge about media trends and their social consequences. The foundation also supports diverse programme production and alternative modes of organisation as means of enriching the cultural environment. Information and Public Debate\nPromotes access to books, documentary films, lectures, seminars and conferences as means of determining the level of knowledge in society-at-large and at the same time providing fora for lively debates. The foundation operates three prizes on the theme of freedom of expression: • The Freedom of Expression Prize is awarded to individuals or institutions engaged in activities deemed especially worthwhile within the foundation’s key interests\n• The Freedom of Expression Tribute is awarded to individuals in acknowledgement of efforts made to promote free speech, often in connection with current affairs\n• The Freedom of Expression Foundation’s Press Prize for Russia and Eastern Europe: The Fritt Ord Foundation, and the ZEIT Foundation cooperate to award press prizes to journalists and media in Russia and Eastern Europe. The press prizes are intended to support the independent role of journalists, despite reprisals and financial difficulties, to encourage them not to be intimidated by censorship and to resist self-censorship. Grants and Training\nSupports young people taking part in social debate and gaining awareness of the importance of freedom of expression. The foundation offers grants to students at colleges and universities who question issues related to freedom of expression, human rights and democracy building, and supports initiatives which promote social awareness and the exchange of ideas. Art and Culture\nSupports catalogues, initiatives for exchanging opinions and cross-cultural dialogue in connection with artistic expressions and debate on cultural policy. As part of its promotion of the freedom of expression, the foundation operates a youth writing competition inviting young people between the ages of 12 and 20 to explore the constraints that have been put on the media and arts throughout history." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Education", + "Human/Civil Rights", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Nordic Region)": [ + "Norway" + ] + } + }, + { + "id": 5210, + "name": "Freudenberg Stiftung GmbH", + "address": "Freudenberg Stiftung GmbH Freudenberg Straße 2 69469 Weinheim Germany", + "country": "Germany", + "email": "info@freudenbergstiftung.de", + "website": "http://www.freudenbergstiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Freudenberg Stiftung GmbH, Freudenbergstraße 2, 69469 Weinheim, Germany", + "lat": 49.54678930000001, + "lng": 8.6686229, + "zoom": 14, + "place_id": "ChIJq-Y4QDzbl0cRBks74TPq6jQ", + "name": "Freudenberg Stiftung", + "street_number": "2", + "street_name": "Freudenbergstraße", + "city": "Weinheim", + "state": "Baden-Württemberg", + "state_short": "BW", + "post_code": "69469", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/freudenberg-stiftung-gmbh/", + "philea_info": { + "About": "The Freudenberg Foundation was established in 1984 by members of the Freudenberg family who bequeathed to the foundation a part of their holdings in the Freudenberg Company, which is owned exclusively by family members.", + "Mission": "To promote science, education, humanities and peaceful co-existence in society.", + "Geographic Focus": "Germany, Israel, Hungary, South-East Europe, Bulgaria and Romania", + "Programme Areas": "The Freudenberg Stiftung regards itself as an operating foundation which draws up, implements, develops, and disseminates projects of its own. Its work and grantmaking focus on the following areas: • Integrative society\n• Youth between school and working life\n• Democratic culture\n• Work for mentally ill persons Integrative Society\nSupports the integration of children and young people from immigrant families. Projects are designed in such a way that the families as a whole are assisted and that, in particular, the parents become active and participate over an extended period of time. The aim is to help children and young people with an immigrant background completely develop their potential in the course of their education. Secondly, projects work towards systematically including the special qualifications of immigrants at school, jobs, in the community and media, so that the strengths of a culturally heterogeneous society become more visible and usable. Thirdly, the foundation aims to strengthen the integrative power of communities and local civil society through model projects in city districts, so that children and young people from immigrant families will experience a sense of belonging, recognition and hope for the future at their places of learning and living. Youth Between School and Working Life\nThe foundation is active in the area of vocational training and vocational integration of underprivileged young persons. The foundation supports projects that improve vocational orientation and counseling at school, teach young people how they can take more initiative and have more entrepreneurial spirit, expand job opportunities for young people and encourage local authorities and civil society to take more, also joint, responsibility, so that young people can find the most suitable schooling and vocational training. Democratic Culture\nThis program area involves two aspects: on the one hand, it is concerned with response strategies whenever democratic culture is threatened, e.g. by right-wing extremism or religious extremism; on the other hand, it focuses on having children learn democratic culture in kindergarten, school and their general surroundings. The foundation initiates and supports initiatives that aim to strengthen democracy as a form of life and help develop the skills necessary for this, be it in kindergarten, school or the community. Work for Mentally Ill Persons\nSupports the reintegration of mentally ill persons into the labour market and promotes model examples of jobs where mentally ill people can earn additional income. A prize is awarded for trend-setting business ideas and company organisation models every year. A special characteristic of the Freudenberg Foundation is that it provides support to the selected towns over an extended period of time." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Education", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria", + "Hungary", + "Romania" + ], + "Europe (Western / General)": [ + "Europe", + "Germany" + ], + "Middle East & North Africa (MENA)": [ + "Israel" + ] + } + }, + { + "id": 5113, + "name": "French Foundation Centre", + "address": "Centre Français des Fonds et Fondations 34bis, Rue Vignon (3e étage) 75009 Paris France", + "country": "France", + "email": "info@centre-francais-fondations.org", + "website": "http://www.centre-francais-fondations.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "French Center Funds and Foundations, Rue Vignon, Paris, France", + "lat": 48.87247439999999, + "lng": 2.3267006, + "zoom": 14, + "place_id": "ChIJA4HSZDRu5kcR3H-xSIWTGUk", + "name": "French Center Funds and Foundations", + "street_number": "34 bis", + "street_name": "Rue Vignon", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75009", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/french-foundation-centre/", + "philea_info": { + "About": "First initiated in 2002, the French Foundation Centre (Centre Français des Fonds et Fondations) is an association of french funds and foundations, dedicated to promoting the development of foundations in France and to enhancing their local, national and international representation by improving the knowledge of their status and action and supporting their developing projects.", + "Mission": "Through its services the French Foundation Centre provides a framework, in which endowment funds and foundations can learn from each other’s experiences, explore matters of common concern and achieve good practice in grant-making, evaluation, accounting, innovation, governance, human resources, communications, investment policy, transparency, accountability, new trends of philanthropy, social entrepreneurship, venture philanthropy or impact." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "France" + ] + } + }, + { + "id": 5209, + "name": "Foundation for Polish Science", + "address": "Foundation for Polish Science Ignacego Krasickiego 20/22 02-611 Warsaw Poland", + "country": "Poland", + "email": "fnp@fnp.org.pl", + "website": "http://www.fnp.org.pl/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Foundation for Polish Science, Ignacego Krasickiego 20/22, 02-611 Warsaw, Poland", + "lat": 52.1932676, + "lng": 21.02082279999999, + "zoom": 14, + "place_id": "ChIJIXitbyvNHkcRiWmzoAGXue4", + "name": "Foundation for Polish Science", + "street_number": "20/22", + "street_name": "Ignacego Krasickiego", + "city": "Warszawa", + "state": "Mazowieckie", + "post_code": "02-611", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/foundation-for-polish-science/", + "philea_info": { + "About": "The Foundation for Polish Science (FNP), formed in 1991, is an independent, self-financing, non-profit, non-governmental organisation, with a mission of supporting science in Poland. It is the largest source of science funding in Poland outside the state budget.", + "Mission": "Supporting only the best so that they can become even better.", + "Geographic Focus": "Poland", + "Programme Areas": "The foundation runs its own programmes and scholarships as well as several on behalf of the European Commission: • The FNP Prize\n• The Copernicus Award\n• Grants and Scholarships\n• Facilitating Technology Transfer\n• Publishing projects and conferences\n• Other initiatives\n• Programmes financed from the European Funds The FNP Prize\nSince 1992, the Foundation for Polish Science has awarded individual prizes to scientists each year for particular achievements and discoveries which have made a significant contribution to spiritual life and progress of civilization in our country and provided Poland with a place in world science. The prize may be awarded for individual achievements which have been attained or confirmed within a period of four years preceding the date of submission of candidacy. The Copernicus Award\nThe purpose of the award is to give a distinction to the individuals most active in Polish-German scientific cooperation who have made exceptional research achievements as a result of that cooperation and who have attained significant successes in promoting young research personnel. Grants and Scholarships\nThe foundation runs the following grant and scholarship programmes:\n• MISTRZ Programme: academic grants for professors\n• International PhD Projects Programme (MPD): for projects implemented during doctoral studies within the international cooperation of scientific institutions\n• START Programme: stipends for young researchers\n• PARENT-BRIDGE Programme: grants for parents enabling them to return to research work and supporting pregnant women conducting research\n• HOMING Plus Programme: grants for young scholars encouraging them to conduct research in Poland\n• TEAM Programme: projects carried out by students, PhD students and postdocs in the best research teams in Poland\n• KOLUMB Programme: postdoc outgoing fellowships\n• IDEAS FOR POLAND Programme: for winners of the “ERC Starting Grants” competition who intend to pursue scientific research in Poland\n• Conference Grants: grants for participation in international symposia, conferences and congresses for young researchers, whose selection procedure is run by the Warsaw Scientific Society\n• Alexander von Humboldt Polish Honorary Research Fellowships: fellowships for German scholars\n• Research Fellowships for Scholars from CEE Countries: fellowships for foreign scholars, mainly from Central and East European countries, willing to conduct research at Polish scientific institutions\n• KWERENDA Programme: grants for Archive Search Abroad Facilitating Technology Transfer\nOperates the VENTURES Programme, supporting innovative projects realised by young researchers. Publishing projects and conferences\nOperates the MONOGRAPHS Programme, supporting monographs in the areas of the humanities and the social sciences. The foundation also hosts debates on science and operates a publications programme through which various multi-volume works edited by research institutes documenting Poland’s historical, cultural and technological heritage are published. Other initiatives\nOperates the EXTERIUS Programme, providing financial support for exceptional initiatives of significant importance for science in Poland. Programmes financed from the European Funds\nRuns a number of programmes operated within the Innovative Economy Operational Programme 2007-2013." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Poland" + ] + } + }, + { + "id": 5208, + "name": "Foundation for Future Generations", + "address": "Foundation for Future Generations rue des Brasseurs, 182 5000 Namur Belgium", + "country": "Belgium", + "email": "fgf@fgf.be", + "website": "http://www.foundationfuturegenerations.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Rue des Brasseurs 182, 5000 Namur, Belgium", + "lat": 50.4623091, + "lng": 4.8615162, + "zoom": 14, + "place_id": "ChIJf3oGvHGZwUcRKku0PAkuwyU", + "name": "Rue des Brasseurs 182", + "street_number": "182", + "street_name": "Rue des Brasseurs", + "city": "Namur", + "state": "Région Wallonne", + "state_short": "NA", + "post_code": "5000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/foundation-for-future-generations/", + "philea_info": { + "About": "Legally registered in March 1998, the Fondation pour les Générations Futures is an independent national non-profit foundation. The foundation collects and manages funds to support various initiatives. It is the only grantmaking foundation in Belgium dedicated exclusively to sustainable development.", + "Mission": "To identify and support projects, and implement original ideas and actions that take into account both tomorrow’s challenges and today’s emergencies. Aiming at contributing to pass on a liveable world to future generations, the Foundation for Future Generations is exclusively dedicated to the transition of our society towards a sustainable development mode, meeting the needs and challenges of a sustainable and viable society for all, today and tomorrow, locally and globally.\nFacing the complexity of this endeavour, its mission is to promote a multi-faceted, systemic approach, simultaneously considering 4 dimensions: people, planet, prosperity and participation. and to strengthen capacities of others in this respect.", + "Geographic Focus": "Belgium", + "Programme Areas": "The Foundation for Future Generations aims at incubating, supporting and attracting public attention to concrete and pioneering examples of ‘sustainable development put into practice’.\nThe Foundation is convinced that it is possible to pass on a liveable world to our children, if we act and think “360°-wise”, simultaneously considering 4 dimensions (4 P’s): People, Planet, Prosperity and Participation.\nIt integrates this transversal approach across its main programme areas, focusing on key societal drivers of change rather than specific themes:\n• Think 360°-wise: It prepares students and researchers to think 360°-wise by valorising master theses, PhD theses and research that integrate this approach;\n• Act 360°-wise: It inspires its fellow citizens – especially the younger generations – to act today 360 ° by stimulating, supporting and valorising social entrepreneurship and concrete actions;\n• Invest 360°: It invests consistently with its values (sustainable & impact-first financial investments), and promotes ‘citizens finance’;\n• Participatory democracy: It promotes G1000-like deliberative sortition-based processes. In order to bring this about, the foundation provides the following means: • Grantgiving\n• Think-tank\n• Operations Grantgiving\nSeeks to enhance the capacity of local initiatives that bring tangible added value to the sustainable development of society. Think-tank\nSeeks to facilitate the development of new concepts which contribute to creating a society that is more united and sustainable. This is done through:\n• Acting as a convenor, bringing together Acts as a convener, bringing together the non-profit, business and public sectors. It serves as an active but impartial intermediary to encourage and facilitate debates and cooperation among different stakeholders, to build confidence and respect between groups with very different views\n• Developing the University Prize for Future Generations, which makes scientific advances in the area of sustainable development accessible to a much wider public.\n• Producing publications on topics such as micro-finance, education or supported projects. Operations\nPromotes innovation in the field of citizen participation and citizen democratic control in the development of society. Towards this end, the foundation has staged two citizens’ panels; one on territorial development in the Walloon Brabant province, and the other on Genetically Modified Organisms (GMO’s). The foundation pursues its objectives through an ethical and committed management of its capital." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education", + "Environment/Climate", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Belgium" + ] + } + }, + { + "id": 5206, + "name": "Ford Foundation", + "address": "Ford Foundation 320 East 43rd Street 10017 New York City United States", + "country": "United States", + "email": "office-of-communications@fordfoundation.org", + "website": "http://www.fordfound.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ford Foundation, 320 East 43rd Street, Manhattan, New York, NY 10017, United States", + "lat": 40.74979529999999, + "lng": -73.9711624, + "zoom": 14, + "place_id": "ChIJ-f_F2txZwokR_cfRXvbXrsI", + "name": "Ford Foundation Center for Social Justice", + "street_number": "320", + "street_name": "East 43rd Street", + "street_name_short": "E 43rd St", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10017", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/ford-foundation/", + "philea_info": { + "About": "The Ford Foundation, founded in 1936, operated through local philanthropy in the state of Michigan until 1950, when it expanded to become a national and international foundation. Since its inception, it has been an independent, non-profit, non-governmental organisation. The funds derive from an investment portfolio that began with gifts of Ford Motor Company stock at the bequest of Henry and Edsel Ford. The foundation no longer has company stock and its diversified portfolio is managed to provide a perpetual source of support for the foundation’s programmes and operations. The trustees of the foundation set policy, delegating authority to the president and senior staff for the foundation’s grantmaking and operations.", + "Mission": "To strengthen democratic values, reduce poverty and injustice, promote international cooperation, and advance human achievement.", + "Geographic Focus": "US, Africa, Middle East, Asia, Latin America, Central America", + "Programme Areas": "All work aims to challenge inequality. The foundation is active in 7 programme areas:\n• Civic Engagement and Government\n• Free Expression and Creativity\n• Gender, Racial and Ethnic Justice\n• Cities and States\n• Future of work(ers)\n• Natural resources and climate change\n• Technology and society" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Environment/Climate" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5204, + "name": "Fondazione Tercas", + "address": "Fondazione Cassa di Risparmio della Provincia di Teramo Largo Melatini 17/23 64100 Teramo Italy", + "country": "Italy", + "email": "info@fondazionetercas.it", + "website": "http://www.fondazionetercas.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa Di Risparmio Della Provincia Di Teramo, Largo Melatino, Teramo, Province of Teramo, Italy", + "lat": 42.65857889999999, + "lng": 13.7064468, + "zoom": 14, + "place_id": "ChIJk18pRPXnMRMRc1eECELe7sc", + "name": "Fondazione Cassa Di Risparmio Della Provincia Di Teramo", + "street_number": "17", + "street_name": "Largo Melatino", + "city": "Teramo", + "state": "Abruzzo", + "state_short": "TE", + "post_code": "64100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-tercas/", + "philea_info": { + "About": "Fondazione TERCAS (also known as Fondazione Cassa di Risparmio della Provincia di Teramo) is the result of the transformation required by the ´Amato´ law of 1991.", + "Mission": "To provide social benefits and to promote the economic development of its reference area, the Province of Teramo.", + "Geographic Focus": "Province of Teramo, Italy (and activities co-ordinated by ACRI aimed at promoting national solidarity).", + "Programme Areas": "The foundation is active in the following areas: • Scientific research\n• Education\n• Arts and culture\n• Public health and preventative medicine\n• Conservation and valorisation of assets and cultural activities\n• Assistance to the elderly\n• Philanthropy, charity and volunteering" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5203, + "name": "Fondazione Sviluppo e Crescita CRT", + "address": "Fondazione Sviluppo e Crescita CRT Via XX Settembre, 31 10121 Torino Italy", + "country": "Italy", + "email": "info@sviluppoecrescitacrt.it", + "website": "http://www.sviluppoecrescitacrt.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione CRT, Via XX Settembre, 31, 10121 Torino, Metropolitan City of Turin, Italy", + "lat": 45.0669842, + "lng": 7.680321699999999, + "zoom": 14, + "place_id": "ChIJg3DDLGxtiEcRCRSv3n0__IY", + "name": "Fondazione CRT", + "street_number": "31", + "street_name": "Via XX Settembre", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-sviluppo-e-crescita-crt/", + "philea_info": { + "About": "Fondazione Sviluppo e Crescita – CRT (FSC) was founded in 2007 through an initiative of Fondazione CRT, an endowment foundation with 100+ years of grant-making history.\nIt is a non-profit organization focused primarily on development and growth of the northern Italian regions of Piedmont and Aosta Valley. FSC operates in accordance with the traditional and institutional activities of Fondazione CRT including numerous innovative social activities in the field of impact investing, green economy and urban regeneration.", + "Mission": "FSC’s mission is to deploy new initiatives which can deliver social impact within regional ecosystems, aimed at the entrepreneurial world as well as the moderate/low income populations.\nFSC pursues to transfer skills, develop new content and networks, multiply sustainable projects and promote innovation.", + "Geographic Focus": "Italy, Piedmont and Aosta Valley regions, and international initiatives which impact the Piedmontese territory.", + "Programme Areas": "Venture Philanthropy and Social Impact Investments are its core competency.\nThe thematic areas are: • 1) Social Real Estate funds\n• 2) Social Housing\n• 3) Environment and Development of the territory\n• 4) Entrepreneurship and Innovation\n• 5) Shareholding and Investing • Social Real Estate funds\nThis branch is characterized by medium / long-term real estate investments, to be made through the use of a closed-end real estate fund for social purposes. The interventions are aimed at creating residences for elderly people, kindergartens and nursery schools, libraries, minor museums. One of the purposes of these social initiatives is the development of “hu-man capital” through culture and education. • Social Housing\nFCS supports social housing initiatives for residential use. The foundation provides a con-crete response to housing problems by creating high standard quality of structures and ser-vices at affordable and rent-controlled costs. The interventions are mainly aimed at the con-struction, renovation and functional recovery of buildings allocated to socially and / or eco-nomically disadvantaged categories. • Environment and Development of the territory\nThe thematic area is focused on environment, quality of life and socioeconomic development of the reference territory, renewable energy and services to citizens. • Entrepreneurship and Innovation\nThe Foundation pays attention to the sustainability of projects by promoting innovation and technology, transferring managerial skills, developing new SMEs, expanding networks at regional, national and international scale. Most of the initiatives are focused on environ-mental protection, welfare, creative industries and cultural companies. • Shareholding and Investing\nFSC works with innovative methods of investments by using a range of financial instruments tailored to the needs of organization supported. Among them: a) Microcredit: FSC has invested in PerMicro since its inception in Turin in 2007. PerMi-cro is the first Italian company specialized in micro-credit. It is part of the Italian and inter-national network of Micro-finance organizations whose objective is to offer micro-credit as a tool for local development and social inclusion.\nb) Crowdfunding: FSC has made available the crow-funding solution called “+Resources” developed in partnership with Eppela, an Italian crown funding platform. This project has ben designed for non-profit organizations focused on social innovation and cultural entre-preneurship.\nc) Pay by Result: FSC has launched a new model of Pay by Result that can support and revolutionize the social welfare. Inspired by the first Social Impact Bond in UK and for the first time in Italy, this feasibility study is focused on social and labour reintegration of detainees.\nd) Shareholding in social impact funds and equity following impact investing principles, with a social venture capital approach in the “impact first” segment and with a sustainable business model." + }, + "tags_focus": [ + "Arts & Culture", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5201, + "name": "Fondazione Monte dei Paschi di Siena", + "address": "Fondazione Monte dei Paschi di Siena Via Banchi di Sotto 34 53100 Siena Italy", + "country": "Italy", + "email": "fmps@fondazionemps.it", + "website": "http://www.fondazionemps.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Mps, Banchi di Sotto, 34, 53100 Siena, Province of Siena, Italy", + "lat": 43.3191491, + "lng": 11.3319299, + "zoom": 14, + "place_id": "ChIJu71NtWctKhMRG2xgBB9OM_c", + "name": "Fondazione Mps", + "street_number": "34", + "street_name": "Banchi di Sotto", + "city": "Siena", + "state": "Toscana", + "state_short": "SI", + "post_code": "53100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-monte-dei-paschi-di-siena/", + "philea_info": { + "About": "The Monte dei Paschi Foundation was established on 28 August 1995 when the banking activities of the public-law credit institution were transferred to Monte dei Paschi Bank, Inc., whose origins date back to 1622 when it was founded on behalf of the Magistrates and people of Siena “so that it might have fertile development and regulations and rules, for the private and public advantage of the City and State of Siena”. With the approval of its new charter on 8 May 2001, the foundation assumed the juridical status of a private non-profit organisation with full statutory and management autonomy.", + "Mission": "To pursue social welfare projects in the areas of scientific research, education, the arts and health care; to promote and finance initiatives for the benefit of the city of Siena, its institutions and its Province, in order to favor and encourage the creation and development of productive activities and the enhancement of economic resources; and to pursue the objective of carrying out community service and philanthropic work.", + "Geographic Focus": "The city of Siena and its province in Italy and Africa", + "Programme Areas": "Identity and Culture\nInclusive Society\nAgricultural System and Territory\nResearch and Technology Transfer Identity and Culture Objective:\nTo give value to cultural and identity heritage of the community\nActions: High musical training as a tool for growth; Cultural heritage of the territory Inclusive Society Objective:\nTo promote social security and personal wellbeing for an inclusive society Agricultural System and Territory Objective\nTo promote Territory development and agrocultural system throught sustainable pattern of production and consumption\nActions: Life styles and critical consumer; Innovationa and territory excellences Research and Technology Transfer Objective\nTo sustain research and technology transfer\nActions are regarding the field of life science and other research fields." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5200, + "name": "Fondazione Invernizzi", + "address": "Fondazione Invernizzi Corso Venezia 32 20121 Milan Italy", + "country": "Italy", + "email": "info@fondazioneinvernizzi.it", + "website": "https://www.fondazioneinvernizzi.it/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Corso Venezia, 32, 20121 Milan, Metropolitan City of Milan, Italy", + "lat": 45.47093, + "lng": 9.201731700000002, + "zoom": 14, + "place_id": "ChIJIV4D27vGhkcR3N5fFVnr_1U", + "name": "Corso Venezia, 32", + "street_number": "32", + "street_name": "Corso Venezia", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-invernizzi/", + "philea_info": { + "About": "The Founder was one of the most successful entrepreneur in the Italian Food Industry of the XX century. With his spouse he decided to dedicate nearly all their wealth to promote the development of Lombardy, ”giving back to their Country what they receive during their working life”. His main interests were agriculture, wellbeing and industrial organisation. For this reason the Foundation supports projects in the research areas of Agriculture, Health and Economics. Notable passion of the Founder was the care for Lombardy countryside landscape.", + "Mission": "Main purpose is to preserve the value of the real estate and financial wealth of the late Founders (in particular the XVI century Villa in Palladian style with 800 hectares of gardens and cultivatins in the Milanese countryside and the Palace in the city centre) and support scientific research in Economics, Health, Nutrition & Agriculture.", + "Geographic Focus": "Lombardy", + "Programme Areas": "Preserve the XVI century villa in Palladian style with annexed gardens in the Milanese countryside and the properties in the city centre." + }, + "tags_focus": [ + "Arts & Culture", + "Environment/Climate" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5199, + "name": "The Human Safety Net", + "address": "Fondazione Generali – The Human Safety Net- Ente Filantropico Piazza Duca degli Abruzzi 2, 34132 Trieste Italy", + "country": "Italy", + "email": "contact@thehumansafetynet.org", + "website": "http://www.thehumansafetynet.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Generali – The Human Safety Net- Ente Filantropico Piazza Duca degli Abruzzi 2, 34132 Trieste Italy", + "lat": 45.6536226, + "lng": 13.7706201, + "zoom": 14, + "place_id": "ChIJd-p2FG5re0cRF2dfC4hfT_8", + "street_number": "2", + "street_name": "Piazza Luigi Amedeo Duca degli Abruzzi", + "city": "Trieste", + "state": "Friuli-Venezia Giulia", + "state_short": "TS", + "post_code": "34132", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-generali-the-human-safety-net-onlus/", + "philea_info": { + "About": "We believe that, whatever happens in life, no one should be held back from reaching their potential.", + "Mission": "Our mission is to unlock the potential of people living in vulnerable circumstances so that they can transform the lives of their families and communities. The Human Safety Net programmes support families with young children (0-6) and integrate refugees through work and entrepreneurship. Our work combines the strengths of non-profit organizations, the public and the private sector, in Europe, Asia and South America. We are a foundation initiated by Generali, one of the world’s largest insurers. Still, we are also an open net and welcome companies, organizations and foundations who share the same goals. The Human Safety Net is a global movement of people helping people. It is active in 26 countries, where it is present in 650 locations, working closely with a network of 77 NGO partners.", + "Geographic Focus": "26 countries worldwide", + "Programme Areas": "The programme For Families supports parents living in vulnerable circumstances during the first six years of their children’s life. The programme For Refugees contributes to refugees’ inclusion through work and entrepreneurship into their host countries." + }, + "tags_focus": [ + "Humanitarian & Disaster Relief", + "Youth/Children Development" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5196, + "name": "Fondazione di Modena", + "address": "Fondazione Cassa di Risparmio di Modena Via Emilia Centro 283 41121 Modena Italy", + "country": "Italy", + "email": "segreteria@fondazionedimodena.it", + "website": "https://www.fondazionedimodena.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Emilia, Modena, Province of Modena, Italy", + "lat": 44.6467188, + "lng": 10.9260543, + "zoom": 14, + "place_id": "EiJWaWEgRW1pbGlhLCA0MTEyMSBNb2RlbmEgTU8sIEl0YWx5Ii4qLAoUChIJie4tfBTvf0cRUVB1UgvdwvUSFAoSCeFkSd0S739HESh_K0l9HnWW", + "name": "Via Emilia", + "street_name": "Via Emilia", + "city": "Modena", + "state": "Emilia-Romagna", + "state_short": "MO", + "post_code": "41121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-di-modena/", + "philea_info": { + "About": "To stimulate growth and welfare in the area of Modena and contribute to improving the community’s conditions", + "Mission": "To stimulate growth and welfare in the area of Modena and contribute to improving the community’s conditions", + "Geographic Focus": "Modena, Italy", + "Programme Areas": "The foundation focuses on the following areas: • Art, cultural activities and heritage\n• Scientific and technological research\n• Activities of considerable social value Art, Cultural Activities and Heritage\nSupports the following: • Restoration of works of architectural and historical-artistic interest\n• Musical activities promoted by local bodies and associations\n• Theatrical activities\n• The promotion of exhibitions organised by the foundation itself or in collaboration with other bodies\n• The promotion of cultural events\n• The publication of monographs and series on issues of historical and artistic interest\n• The promotion of educational activities\n• The acquisition of unpublished manuscripts, negatives and post-1945 historical-artistic evidence within the framework of the “”ArchivioArte”” project Scientific and Technological Research\nSupports the following: • The purchase of equipment for diagnosing and preventing disease\n• Financing research projects of national standing\n• Fellowships to researchers of Modena university\n• Setting up Centres of Excellence co-funded by other bodies Activities of Considerable Social Value\nSupports the following: • Initiatives targeted at disadvantaged groups (the elderly, juveniles and families suffering hardship, the physically and mentally disabled)\n• The building of sheltered facilities, residential and social centres\n• Renovating property for social use\n• Awareness campaigns and educational projects for young people\n• The purchase of motor vehicles for emergency services\n• Projects for enhancing sport as an educational and non-competitive practice" + }, + "tags_focus": [ + "Arts & Culture", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5195, + "name": "Fondazione CRT", + "address": "Fondazione CRT Via XX Settembre 31 10121 Turin Italy", + "country": "Italy", + "email": "info@fondazionecrt.it", + "website": "http://www.fondazionecrt.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione CRT, Via XX Settembre, 31, 10121 Turin, Metropolitan City of Turin, Italy", + "lat": 45.0669842, + "lng": 7.680321699999999, + "zoom": 14, + "place_id": "ChIJg3DDLGxtiEcRCRSv3n0__IY", + "name": "Fondazione CRT", + "street_number": "31", + "street_name": "Via XX Settembre", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-crt/", + "philea_info": { + "About": "Fondazione CRT is a private non-profit organization established in 1991 by the Cassa di Risparmio di Torino. The foundation has a strong, but localised, calling and acts in key sectors of development in the two regions of Piedmont and Valle d´Aosta . Projects range from conservation and valorisation of artistic heritage and cultural activities to scientific research; from education and training to health and assistance to aiding the socially needy; from public safety to environmental protection to innovation in local organisations.", + "Mission": "To pursue the goals of social and economic development, mainly in the regions of Piemonte and Valle d’Aosta.", + "Geographic Focus": "The regions of Piedmont and Valle d´Aosta in Italy", + "Programme Areas": "The foundation is active in three main areas: • Arts and Culture\n• Research and Education\n• Welfare and Environment Arts and Culture\nsupports local institutions working in this field. Music, theatre, restorations, museums, contemporary art and temporary exhibitions are the fields of intervention. Research and Education:\nsupports funding and projects for education, training, scientific and technological research. Funding internships abroad and scholarships for young people and funding for local research institutions and universities from the regions are fields of intervention. Welfare and Environment:\nSupports projects and activities to support volunteer work for the weakest social groups, public health, civil protection, environmental protection and the development of the reference regions. Recently Fondazione CRT started new initiative on the basis of the venture philanthropy approach, namely through a specific tool: Fondazione Sviluppo e Crescita – CRT (CRT Development and Growth Foundation)." + }, + "tags_focus": [ + "Arts & Culture", + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5194, + "name": "Fondazione CON IL SUD", + "address": "Fondazione CON IL SUD Corso Vittorio Emanuele II, 184 00186 Rome Italy", + "country": "Italy", + "email": "info@fondazioneconilsud.it", + "website": "http://www.fondazioneconilsud.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Corso Vittorio Emanuele II, 184, 00186 Rome, Metropolitan City of Rome, Italy", + "lat": 41.89723420000001, + "lng": 12.4707195, + "zoom": 14, + "place_id": "ChIJOdwzCkVgLxMRa-5qAefkCtE", + "name": "Corso Vittorio Emanuele II, 184", + "street_number": "184", + "street_name": "Corso Vittorio Emanuele II", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00186", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-con-il-sud/", + "philea_info": { + "About": "The foundation was established by a Memorandum of Understanding for the implementation of a plan of social infrastructure in the South of Italy, signed in 2005 by ACRI and the “Forum Terzo Settore”, which represents the banking foundations, and with the accession of: Compagnia di San Paolo, Consulta Nazionale Permanente del Volontariato presso il Forum, Convol- Conferenza Permanente Presidenti Associazioni e Federazioni Nazionali di Volontariato, Csv.net-Coordinamento Nazionale dei Centri di Servizio per il Volontariato, Consulta Nazionale dei Comitati di Gestione-Co.Ge.", + "Mission": "To strengthen and integrate networks of voluntary and third sector organisations and foundations, without replacing the role of public institutions. The foundation promotes and enhances the intellectual structures for social development, civil and economic development of the South of Italy.", + "Geographic Focus": "Southern Italy (Basilicata, Calabria, Campania, Puglia, Sardinia and Sicily)", + "Programme Areas": "The foundation promotes the intellectual structures for social development, civil and economic development of the South of Italy. In particular the Foundation is committed to foster social cohesion paths, enhancing the ideas, energies and skills already existing in the territory." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5193, + "name": "Fondazione Compagnia di San Paolo", + "address": "Compagnia di San Paolo Corso Vittorio Emanuele II, 75 10128 Turin Italy", + "country": "Italy", + "email": "info@compagniadisanpaolo.it", + "website": "http://www.compagniadisanpaolo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Compagnia di San Paolo, Corso Vittorio Emanuele II, 75, 10128 Turin, Metropolitan City of Turin, Italy", + "lat": 45.0644594, + "lng": 7.673241600000002, + "zoom": 14, + "place_id": "ChIJOdpkvBRtiEcRrWoEhGIxhEU", + "name": "Compagnia di San Paolo", + "street_number": "75", + "street_name": "Corso Vittorio Emanuele II", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10128", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-compagnia-di-san-paolo/", + "philea_info": { + "About": "Compagnia di San Paolo was founded in Turin in 1563 as a charitable lay brotherhood by seven citizens who decided their mission was to help the poor. Throughout its long history, it has supported a range of charitable activities in the fields of health, education and social welfare. In 1992, it was transformed into a foundation as a consequence of the restructuring of the San Paolo Bank Group. After the privatisation of the San Paolo Bank, the Compagnia di San Paolo no longer holds the controlling shares in the bank.", + "Mission": "To support works of public interest and social well-being, particularly in the fields of scientific, economic and legal research, education, art and culture, and health; and to provide assistance to, and protection of less-privileged social groups.", + "Geographic Focus": "Italy and international", + "Programme Areas": "The areas in which Compagnia acts are: • Research and higher education\n• Cultural heritage\n• Cultural activities\n• Health\n• Welfare policy Research and higher education\nIn terms of research, Compagnia focuses on strengthening and aggregating already existing structures, and on getting mid-term agreements and partnerships started, instead of supporting individual initiatives. In the field of higher education, Compagnia is committed to supporting graduate, post-graduate, and masters’ programs, as well as specialisation schools. These activities largely involve the dedication of the Compagnia’s instrumental bodies. Cultural heritage\nSupports culture as an answer to people’s intellectual and spiritual needs, as well as an irreplaceable factor for the advancement of research and knowledge. Within this, Compagnia supports the following areas: • Architectural, historical and artistic, archaeological and landscape heritage\n• Civil heritage\n• Religious heritage\n• The heritage in the territory Cultural activities\nPromotes and supports activities that have a substantial cultural interest as a separate programme area to cultural heritage. Within this area, Compagnia supports the following: • Archival heritage\n• Bibliographical heritage\n• Cultural institutions\n• Music, theater, dance, cinema, books\n• Museums Health\nFinances the acquisition of innovative equipment for research, diagnosis, and cures, and also supports new management models in the area of heath care. In addition, Compagnia offers smaller contributions in areas of specialisation (neurosurgery, transplants, emergency medicine) and in the fight against socially relevant pathologies. Welfare policy\nCompagnia di San Paolo’s Social Policies are aimed at supporting, accompanying and creating new opportunities for improving the situation of people and families in need. Particular areas include: • Paths to social autonomy\n• Support to youth\n• Home care system\n• Public space\n• Cooperation for development\n• Promotion of local philanthropy and of community foundations The Compagnia, like the other foundations of banking origin, is also involved in special funds for voluntary work." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5191, + "name": "Fondazione Cassa di Risparmio in Bologna", + "address": "Fondazione Cassa di Risparmio in Bologna (CARISBO) Via Farini, 15 40124 Bologna Italy", + "country": "Italy", + "email": "info@fondazionecarisbo.it", + "website": "http://www.fondazionecarisbo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Farini, 15, Bologna, Metropolitan City of Bologna, Italy", + "lat": 44.4914577, + "lng": 11.3461144, + "zoom": 14, + "place_id": "ChIJHyWcbr_Uf0cR47gNmUfI4Es", + "name": "Via Farini, 15", + "street_number": "15", + "street_name": "Via Farini", + "city": "Bologna", + "state": "Emilia-Romagna", + "state_short": "BO", + "post_code": "40124", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-in-bologna/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio in Bologna is a private non-profit organisation established in 1991 by the Cassa di Risparmio di Bologna. The foundation commitment is towards the community, supporting organisations and projects aimed at social, cultural and economic development.", + "Mission": "To pursue the goals of social and economic development, mainly in the district of Bologna.", + "Geographic Focus": "Bologna, Italy", + "Programme Areas": "The foundation works in the following areas: • Arts and Culture\n• Research and Education\n• Welfare" + }, + "tags_focus": [ + "Arts & Culture", + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5188, + "name": "Fondazione Cassa di Risparmio di Parma", + "address": "Fondazione Cassa di Risparmio di Parma Via al Ponte Caprazucca 4 43121 Parma Italy", + "country": "Italy", + "email": "info@fondazionecrp.it", + "website": "http://www.fondazionecrp.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Parma, Strada Ponte Caprazucca, Parma, Province of Parma, Italy", + "lat": 44.79847959999999, + "lng": 10.325979, + "zoom": 14, + "place_id": "ChIJbdmPU-FqgEcRagAwQ3XrgOE", + "name": "Fondazione Cassa di Risparmio di Parma", + "street_number": "4/a", + "street_name": "Strada Ponte Caprazucca", + "street_name_short": "Str. Ponte Caprazucca", + "city": "Parma", + "state": "Emilia-Romagna", + "state_short": "PR", + "post_code": "43121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-parma/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Parma was established by Cassa di Risparmio di Parma.", + "Mission": "To improve local economic and social development and local welfare through grantmaking.", + "Geographic Focus": "Province of Parma, Italy and Africa", + "Programme Areas": "The foundation supports initiatives in the following fields: • Scientific research\n• Education\n• Local welfare\n• Health\n• Arts" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5187, + "name": "Fondazione Cassa di Risparmio di Padova e Rovigo", + "address": "Fondazione Cassa di Risparmio di Padova e Rovigo Piazza Duomo, 15 35141 Padova Italy", + "country": "Italy", + "email": "segreteria@fondazionecariparo.it", + "website": "http://www.fondazionecariparo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Padova e Rovigo, Piazza Duomo, Padua, Province of Padua, Italy", + "lat": 45.4071737, + "lng": 11.8727611, + "zoom": 14, + "place_id": "ChIJ9V56vE_afkcRSmb0ohCX3D4", + "name": "Fondazione Cassa di Risparmio di Padova e Rovigo", + "street_name": "Piazza Duomo", + "city": "Padova", + "state": "Veneto", + "state_short": "PD", + "post_code": "35139", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-padova-e-rovigo/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Padova e Rovigo was established in 1991 as the continuation of Cassa di Risparmio di Padova e Rovigo, which was founded in 1822 to support the economic development of local communities.", + "Mission": "To pursue goals of social good and economic development.", + "Geographic Focus": "Italian provinces of Padua and Rovigo", + "Programme Areas": "The foundation focuses its philanthropic activities in the following areas: • Scientific research\n• Education\n• Art and culture\n• Health care\n• Assistance to the underprivileged Scientific Research\nProvides financial support for the provision of sophisticated technological research equipment and specific research projects. The foundation also supports the development of the necessary research infrastructure, an example of which is the University of Padua where the foundation fosters and sustains an environment that promotes applied research and business innovation. Education\nProvides financial support to education institutions and initiatives that offer secondary school pupils and university students the best possible opportunities to develop their scholarly capacity. Art and Culture\nSupports the conservation and promotion of the artistic and cultural heritage of the region through collaborative projects with the region’s principal cultural institutions. Health Care\nSeeks to contribute to improving prevention, diagnostic and therapeutic services in the region’s hospitals and clinics, focusing on illnesses that lead to loss of self-autonomy and progressive disability. Assistance to the Underprivileged\nSupports the development of initiatives in the area of education, volunteerism and social economy for marginalised population groups. Specifically, the foundation supports the social integration of people with disabilities, focusing on rehabilitation activities, transportation and employment services. It also supports projects that target the elderly, particularly those who are no longer self-sufficient, and reinsertion initiatives for victims of abuse." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5186, + "name": "Fondazione Cassa di Risparmio di Firenze", + "address": "Ente Cassa di Risparmio di Firenze Via Bufalini 6 I-50122 Florence Italy", + "country": "Italy", + "email": "europeanaffairs@fcrf.it", + "website": "https://www.fondazionecrfirenze.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Foundation Cassa Di Risparmio di Firenze, Via Maurizio Bufalini, 6, 50122 Florence, Metropolitan City of Florence, Italy", + "lat": 43.7737305, + "lng": 11.2586293, + "zoom": 14, + "place_id": "ChIJW1xocARUKhMR2pMRmrXAHF4", + "name": "Foundation Cassa Di Risparmio di Firenze", + "street_number": "6", + "street_name": "Via Maurizio Bufalini", + "city": "Firenze", + "state": "Toscana", + "state_short": "FI", + "post_code": "50122", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-firenze/", + "philea_info": { + "About": "The creation of Ente Cassa di Risparmio di Firenze in 1992 represented the continuation of the traditions of the Cassa di Risparmio di Firenze, founded in 1829 by one hundred illustrious Florentine citizens who each contributed to the founding fund. The main objective was to promote saving among the poorer social classes and to support socio-economic development by donating banking profits to initiatives for the public good. In 2000, a new statute and operational structure were established in line with prior objectives, namely to support those in need of solidarity, rehabilitation and assistance.", + "Mission": "Fondazione Cassa di Risparmio Firenze (FCRF) is a foundation with banking origins, according to the It. Law no. 218/1990. Established in 1992, FCRF carries on the social and philanthropic initiatives in the footsteps of the former saving banking (Statute, Article 3, § 1). The objectives of its mission are determined by law (It. Lgs.D. no. 153/1999) and is transposed in the Foundation Statute (Statute, Article, §§ 2-3).\nIn the specific, FCRC activities converge on 5 macro-areas, intending to promote culture and art, conserving and enhancing the cultural, landscape, environmental and agricultural heritage of Florence and Tuscany territories. Further, FCRF supports scientific research and technological innovation even in the medical and health field and the education of young people. Finally, it promotes voluntary work and associations and is committed to helping those in need of solidarity, care and rehabilitation (Statute, Article, §§ 4-5).\nFrom the operative perspective, FCRF philanthropic activities evolve in two main directions. On one side, FCRF directly supports its projects or operating entities. On the other, it provides contributions to third parties initiatives aligned with its own statutory and programmatic aims. Additionally, FCRF works promoting grants and tenders (Statute, Article 4).", + "Geographic Focus": "The region of Tuscany in Italy (specifically Florence, Grosseto and Arezzo)", + "Programme Areas": "FCRC activities converge on 5 macro-areas:\n1) Arts and Culture – two main sectors: (A) artistic and cultural initiatives, and (B) protection and enhancement of national artistic and historical heritage. Their activities intend to support artistic productions and promote the educative, social and economic dimension of arts and culture. Additionally, FCRF, in these fields, encourages community accountability in the protection of the local cultural heritage.\n2) Charities and Volunteering – support third-sector and second-welfare initiatives. One of the main objectives of this area is to promote local associations involved in contrasting the leading causes of social and economic vulnerability (i.e. the breakdown of family relationships, unemployment, economic instability, housing crisis). The main actions, therefore, converge on disadvantage groups (e.g. older people, children, migrants and those with any kind of disability).\n3) Research and Technological Innovation – focuses its efforts on the professional advancement of young scholars and researchers and the enhancement of the local centers of excellence in research. Both these needs come out from the local scientific and academic contexts, and the investments made by FCRF give a significant contribution to leading institutions activities. In particular, the Foundations, in this field, aims to bridge the gap between academic research and the world of business, fostering fruitful partnership among the different local actors.\n4) Education – promotes accessibility and inclusiveness in educational and vocational programs–and this to overcome the shortcomings due to the current weaknesses of the traditional educational pathways and options. FCRF aims to enhance access to educative services; prevent early school leaving and develop new capacities in vocational consultancy and advisory services.\n5) Environmental Protection – carries on specific actions, promoting social participation and involvement in the safeguards the local territories and landscapes. In this regard, FCRF supports the local actors more involved in this field, improving their planning and management capacities. Additionally, the Foundation even cooperates with local public institutions to foster sustainable developments initiatives and policies." + }, + "tags_focus": [ + "Arts & Culture" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5185, + "name": "Fondazione Cassa di Risparmio di Cuneo", + "address": "Fondazione Cassa di Risparmio di Cuneo Via Roma, 17 12100 Cuneo Italy", + "country": "Italy", + "email": "info@fondazionecrc.it", + "website": "http://www.fondazionecrc.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa Di Risparmio Di Cuneo, Via Roma, 17, 12100 Cuneo, Province of Cuneo, Italy", + "lat": 44.39335699999999, + "lng": 7.552000299999998, + "zoom": 14, + "place_id": "ChIJuc6f3z1pzRIRJCG-oPWv6QI", + "name": "Foundation Of Cuneo Savings Bank", + "street_number": "17", + "street_name": "Via Roma", + "city": "Cuneo", + "state": "Piemonte", + "state_short": "CN", + "post_code": "12100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-cuneo/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Cuneo was established in 1992 and originated from the former Cassa di Risparmio di Cuneo S.p.A (according to the Italian reform of savings banks). The foundation assumed the juridical status of a private, non-profit organisation, focused exclusively on public and social benefit activities, in the fields of social cohesion, welfare, culture, education, and sustainable local development, mainly in the district of Cuneo, in south Piedmont, Northern Italy.", + "Mission": "To improve the quality of life for our community’s citizens, working in the areas of social cohesion, welfare, culture and sustainable local development.", + "Geographic Focus": "Region of Piemonte, Province of Cuneo", + "Programme Areas": "The foundation is active in the following areas: – Local Development and Innovation\n– Arts and cultural heritage\n– Social Solidarity\n– Education, knowledge and training (including the acquisition of editorial materials)\n– Public health\n– Sport" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5184, + "name": "Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler Sparkasse", + "address": "Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler Sparkasse Via Talvera, 18 39100 Bolzano Italy", + "country": "Italy", + "email": "info@fondazionecassarisparmiobz.it", + "website": "https://www.stiftungsparkasse.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Bolzano, Via Talvera, 18, 39100 Bolzano, Province of Bolzano - South Tyrol, Italy", + "lat": 46.500426, + "lng": 11.348563, + "zoom": 14, + "place_id": "ChIJx-xzsn2egkcRgvUEP26hFG0", + "name": "Fondazione Cassa di Risparmio di Bolzano", + "street_number": "18", + "street_name": "Via Talvera", + "city": "Bolzano", + "state": "Trentino-Alto Adige", + "state_short": "BZ", + "post_code": "39100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-bolzano-stiftung-sudtiroler-sparkasse/", + "philea_info": { + "About": "To support the sectors of art, preservation and valorisation or cultural goods and cultural activities as well as in the sectors of ecology, instruction, research, the health system and previdence.", + "Mission": "To support the sectors of art, preservation and valorisation or cultural goods and cultural activities as well as in the sectors of ecology, instruction, research, the health system and previdence.", + "Geographic Focus": "Local area of Alto Adige", + "Programme Areas": "The foundation works in the following areas: • Art\n• Preservation and valorisation of cultural goods and cultural activities\n• Ecology\n• Education\n• Research\n• The Italian health system" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5183, + "name": "Fondazione Cassa di Risparmio di Ascoli Piceno", + "address": "Fondazione Cassa di Risparmio di Ascoli Piceno Corso Mazzini, 190 63100 Ascoli Piceno Italy", + "country": "Italy", + "email": "fondazionecarisap@fondazionecarisap.it", + "website": "http://www.fondazionecarisap.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Cassa Di Risparmio Di Ascoli Piceno S.P.A., Corso Giuseppe Mazzini, 190, 63100 Ascoli Piceno, Province of Ascoli Piceno, Italy", + "lat": 42.8550662, + "lng": 13.5774481, + "zoom": 14, + "place_id": "ChIJxfj7EBD9MRMRkaLQ8qO-4VI", + "name": "Cassa Di Risparmio Di Ascoli Piceno S.P.A.", + "street_number": "190", + "street_name": "Corso Giuseppe Mazzini", + "street_name_short": "C. Mazzini", + "city": "Ascoli Piceno", + "state": "Marche", + "state_short": "AP", + "post_code": "63100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-ascoli-piceno/", + "philea_info": { + "About": "To pursue social benefit purposes and promote economic development in its defined geographical and programmatic areas.", + "Mission": "To pursue social benefit purposes and promote economic development in its defined geographical and programmatic areas.", + "Geographic Focus": "Multiple communes in Italy", + "Programme Areas": "The foundation supports social benefit purposes and the promotion of economic development in the following areas: • Family and family values; youth education and development; education and training (including the acquisition of publications for schools); voluntary activities; philanthropy and charity; religion and spiritual development; assistance to the elderly and civil rights\n• Criminal prevention and public safety; food safety and quality agriculture; local development and low-cost housing; consumer protection; civil protection; public health; preventive medicine and rehabilitation; sports activities; prevention of and assistance to drug addicts; pathology and psychological and mental diseases\n• Scientific and technological research; protection and preservation of the environment\n• Arts activities and cultural heritage" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5182, + "name": "Fondazione Cassa di Risparmio di Alessandria", + "address": "Fondazione Cassa di Risparmio di Alessandria Piazza della Libertà, 28 15121 Alessandria Italy", + "country": "Italy", + "email": "direzione@fondazionecralessandria.it", + "website": "http://www.fondazionecralessandria.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Alessandria, Piazza della Libertà, 28, 15121 Alessandria, Province of Alessandria, Italy", + "lat": 44.9140767, + "lng": 8.6154444, + "zoom": 14, + "place_id": "ChIJUcK2sz50h0cROmC3ZZgvjns", + "name": "Fondazione Cassa di Risparmio di Alessandria", + "street_number": "28", + "street_name": "Piazza della Libertà", + "city": "Alessandria", + "state": "Piemonte", + "state_short": "AL", + "post_code": "15121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-alessandria/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Alessandria was set up in 1991 as the continuation of Cassa di Risparmio di Alessandria, which was founded in 1838 to support economic development of local communities.", + "Mission": "To contribute to the social and economic development of the Piedmont Region.", + "Geographic Focus": "Piedmont, Italy", + "Programme Areas": "The foundation is active in the following areas: • Education\n• Art and culture\n• Public health and preventative medicine\n• Local development and public housing\n• Assistance to the elderly\n• Scientific research\n• Philanthropy, charity and volunteering\n• Civil defence\n• Environmental preservation" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5180, + "name": "Fondazione Cassa dei Risparmi di Forlì", + "address": "Fondazione Cassa dei Risparmi di Forli Corso Garibaldi, 45 47121 Forli Italy", + "country": "Italy", + "email": "fondazione@pec.fondazionecariforli.it", + "website": "http://www.fondazionecariforli.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa Di Risparmio Di Forli', Corso Giuseppe Garibaldi, 45, 47121 Forlì, Province of Forlì-Cesena, Italy", + "lat": 44.2224899, + "lng": 12.0386656, + "zoom": 14, + "place_id": "ChIJfXwK449XKxMRnPyEXec470Y", + "name": "Fondazione Cassa Di Risparmio Di Forli'", + "street_number": "45", + "street_name": "Corso Giuseppe Garibaldi", + "city": "Forlì", + "state": "Emilia-Romagna", + "state_short": "FC", + "post_code": "47121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-dei-risparmi-di-forli/", + "philea_info": { + "About": "The foundation was established in 1992 within the framwork of the ´Amato-Carli´ law. Since its establishment, the foundation has continued the Cassa dei Risparmi di Forli bank’s commitment towards the community, supporting organisations and projects aimed at social, cultural and economic development.", + "Mission": "To support projects and activities aimed at supporting social, cultural and economic development within the foundation’s historical territory.", + "Geographic Focus": "Italy; the Emilia-Romagna region including the following municipalities: Forli, Folimpopoli, Bertinoro, Meldola, Santa Sofia, Civitella di Romagna, Galeata, Bagno di Romagna, Verghereto, Predappio, Premilcuore, Castrocaro Terme e Terra del Sole, Dovadola, Rocca San Casciano, Portico e San Benedetto, Modigliana, Tredozio", + "Programme Areas": "Since 2006, the foundation decided to focus on the following areas: Major areas: • Arts and culture\n• Scientific and technological research\n• Public health, preventive medicine and rehabilitation\n• Local development and housing projects\n• Voluntarism, philanthropy and charity Arts and Culture\nSupports the enhancement of cultural heritage in the community, which is also seen as a crucial element for economic development. The foundation aims to support all the associations and institutes that promote various activities in the fields of theatre, music, dance and museums. Scientific and Technological Research\nSupports the development of basic and applied research with a particular focus on the enhancement of the relationship/partnership/cooperation between universities, companies, research laboratories and institutes on the theme of technological transfer. Public Health, Preventive Medicine and Rehabilitation\nFocuses on the optimisation and reorganisation of health services, as well as the building and upgrading of hospital facilities (particularly through the purchase of medical and scientific equipment). Local Development and Housing Projects\nFocuses mainly on the innovation and internationalisation of the local economic tissue, most of all through partnership, cooperation and cross-fertilisation with universities and professional associations. Voluntarism, Philanthropy and Charity\nSupports mainly the non-profit sector in its manifold activity towards disadvantaged and disabled people, with reference particularly to their integration in work, fostering innovative projects and cooperation between the non-profit and public sector. Minor areas: • Aid to the elderly\n• Sport\n• Education, including the purchasing of press products for schools\n• Food safety and quality agriculture Aid to the Elderly\nFocuses on in-home assistance- provided essentially by the public sector- and ‘light’ services assistance provided by non-profit organisations. Sport\nSupports amateur associations, and focuses its attention on broadening sports activities among children and young people, especially through the cooperation between schools and sports institutions, and on the renovation and upgrading of sports facilities. Education, Including the Purchasing of Press Products for Schools\nSupports the entire education sector, from nursery to university, with a particular focus on projects aimed at quality and social and cultural inclusion. Food Safety and Quality Agriculture\nWorks mainly on the enhancement and diffusion of local quality products." + }, + "tags_focus": [ + "Arts & Culture", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5179, + "name": "Fondazione Cariplo", + "address": "Fondazione Cariplo Via Manin, 23 20121 Milan Italy", + "country": "Italy", + "email": "segreteriagenerale@fondazionecariplo.it", + "website": "http://www.fondazionecariplo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cariplo, Via Manin, 23, 20121 Milan, Metropolitan City of Milan, Italy", + "lat": 45.4752242, + "lng": 9.196740799999999, + "zoom": 14, + "place_id": "ChIJX0YXuLfGhkcRcPD5VaJbfcU", + "name": "Cariplo Foundation", + "street_number": "23", + "street_name": "Via Daniele Manin", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cariplo/", + "philea_info": { + "About": "Fondazione Cariplo picked up where its predecessor, Cassa di Risparmio delle Provincie Lombarde (Savings Bank of the Lombard Provinces), left off. Since its establishment in Milan on June 12, 1823, Cassa di Risparmio delle Provincie Lombarde fostered the growth of the local economy, culture and civil society, conducting its activities in accordance with the principles of self-organisation and subsidiarity. Officially, Fondazione Cariplo was set up in December 1991 as part of the reorganisation process resulting from the implementation of the Amato-Carli Act for the rationalisation and privatisation of Italian banks.", + "Mission": "To be a resource that helps social and civil organisations better serve their own community.", + "Geographic Focus": "The region of Lombardy in Italy and Africa", + "Programme Areas": "To better respond to its users’ needs, the Foundation designed its organization around four main areas of activity, each one with dedicated staff. These four areas are: – Environment,\n– Arts and Culture,\n– Scientific Research and Technology Transfer,\n– Social Services Environment:\nIn this area, the Foundation focuses on promoting environmentally-conscious lifestyles and behaviors, rather than tackling environmental emergencies. The Foundation supports cultural innovation and the spreading of environmental awareness by triggering virtuous circles in which information, education, awareness and action are mutually reinforcing. In so doing it engages individuals, institutions, businesses, associations, the scientific community as well as local communities. Arts and Culture:\nThe Foundation’s focus in this program area is on Italy’s heritage, i.e. our archeological, artistic, architectural and environmental assets, libraries, historical archives and museums as well as performing arts and other arts & culture events. In the performing arts sphere, the Foundation works to increase opportunities for artistic expression and broaden public participation, especially among those who are less privileged. Scientific Research and Technology Transfer:\nFondazione Cariplo is keen to contribute to a breeding ground for scientific research, technology transfer and advancement of applied research findings. It does so by backing initiatives that promote the formation of networks and partnerships, participation in international projects, human capital growth, enhanced scientific output as well as improved scientific communication and dissemination of research outcomes. Social Services:\nIn this area, Fondazione Cariplo focuses on seeing to emerging needs that have not yet come to the public attention, finding fresh approaches to deep-seated needs, responding to needs that are left unattended, promoting excellence and innovation, catering for those who at risk of falling through the cracks and facilitating the circulation of knowledge and information about access to and quality of services." + }, + "tags_focus": [ + "Arts & Culture", + "Education" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5178, + "name": "Fondazione Bracco", + "address": "Fondazione Bracco Via Cino del Duca, 8 20122 Milan Italy", + "country": "Italy", + "email": "segreteria@fondazionebracco.com", + "website": "http://www.fondazionebracco.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Bracco, Via Cino del Duca, 8, 20122 Milan, Metropolitan City of Milan, Italy", + "lat": 45.466449, + "lng": 9.2003988, + "zoom": 14, + "place_id": "ChIJrxCtUeXHhkcRdnjMaroUQWk", + "name": "Fondazione Bracco", + "street_number": "8", + "street_name": "Via Cino del Duca", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20122", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-bracco/", + "philea_info": { + "About": "The Bracco Foundation is proud to have its roots embedded in the wealth of values firmly upheld by the Bracco family and Bracco Group for over 85 years, the primary value being that of corporate social responsibility.", + "Mission": "The core mission of the Foundation is to create, promote and propagate expressions of culture, art and science, as a way to improve quality of life and social cohesion.", + "Geographic Focus": "Mainly Italy but also Europe, China, Brazil and USA", + "Programme Areas": "The Foundation enhances Italy’s cultural, historical and artistic heritage at national and global levels. It also stimulates environmental awareness, promotes scientific research, safeguards health, supports education and professional training for young people and develops welfare and solidarity initiatives in order to contribute to collective well-being. The Foundation develops and implements projects, also internationally, within the three macro areas “art and culture”, “science and culture”, “society and the social aspect”, with an emphasis on research and innovation. Particular attention is paid to the role of women and the young in the various aspects of life. A multidisciplinary approach and integration between various forms of knowledge are important qualitative criteria in both the planning and selection of activities." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Latin America & Caribbean": [ + "Brazil" + ], + "Europe (Southern / Mediterranean)": [ + "Italy" + ], + "Asia & Pacific": [ + "China" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5177, + "name": "Fondazione Banca del Monte di Lucca", + "address": "Fondazione Banca del Monte di Lucca Piazza San Martino, 4 55100 Lucca Italy", + "country": "Italy", + "email": "segreteria@fondazionebmlucca.it", + "website": "http://www.fondazionebmlucca.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "BANCA DEL MONTE DI LUCCA SEDE DI LUCCA, Piazza San Martino, 4, 55100 Lucca, Province of Lucca, Italy", + "lat": 43.8406001, + "lng": 10.5052227, + "zoom": 14, + "place_id": "ChIJYdhq7YqD1RIRPoBMM-B5LYs", + "name": "BANCA DEL MONTE DI LUCCA SEDE DI LUCCA", + "street_number": "4", + "street_name": "Piazza San Martino", + "street_name_short": "Piazza S. Martino", + "city": "Lucca", + "state": "Toscana", + "state_short": "LU", + "post_code": "55100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-banca-del-monte-di-lucca/", + "philea_info": { + "About": "Fondazione Banca del Monte di Lucca is a banking foundation, regulated by Law and by the Statute. It’s the continuation of Banca del Monte di Lucca, Monte di Credito su Pegno (Pledge Bank established by the Government of the Lucchese Republic on 25 May 1489).", + "Mission": "The Foundation mission is focused on social issues, welfare, cultural heritage, art, culture, education, and sustainable local development, mainly in the province of Lucca.", + "Geographic Focus": "Province of Lucca, Italy", + "Programme Areas": "The foundation focuses on the following areas:\n– Art and cultural heritage\n– Philanthropy and Social Issues\n– Education and training\n– Local Development" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5175, + "name": "1563 Foundation for Art and Culture", + "address": "Corso Vittorio Emanuele II, 75 - 10128 TORINO", + "country": "Italy", + "email": "info@fondazione1563.it", + "website": "http://www.fondazione1563.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Passo Buole, 175, 10135 Torino TO, Italy", + "lat": 45.02806036236005, + "lng": 7.642274377783158, + "zoom": 16, + "place_id": "ChIJ8wTPnSATiEcRaipJq8UkwwM", + "street_number": "175", + "street_name": "Via Passo Buole", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10135", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-1563-per-larte-e-la-cultura-della-compagnia-di-san-paolo/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5170, + "name": "Fondation Lombard Odier", + "address": "Fondation Lombard Odier 11, rue de la Corraterie 1204 Geneva Switzerland", + "country": "Switzerland", + "email": "contact@fondationlombardodier.org", + "website": "https://www.lombardodier.com/home/private-clients/philanthropy/fondation-lombard-odier.html", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lombard Odier, Rue de la Corraterie 11, 1204 Geneva, Switzerland", + "lat": 46.20300879999999, + "lng": 6.144163300000001, + "zoom": 14, + "place_id": "ChIJd5-6gilljEcRVp3cHm2TLKI", + "name": "Lombard Odier", + "street_number": "11", + "street_name": "Rue de la Corraterie", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1204", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-lombard-odier/", + "philea_info": { + "About": "Fondation Lombard Odier is Lombard Odier Group’s corporate foundation.", + "Mission": "The Foundation funds innovative solutions to address the most pressing challenges in the humanitarian and environmental sectors. Our objective is to work with quality partners and offer global support that goes beyond simply the financial.", + "Geographic Focus": "Mainly Switzerland, but also overseas", + "Programme Areas": "The foundation supports projects in the following areas: humanitarian work\nthe environment\nthe communities where the Group is present" + }, + "tags_focus": [ + "Humanitarian & Disaster Relief" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Switzerland" + ] + } + }, + { + "id": 5167, + "name": "Fondation de Luxembourg", + "address": "Fondation de Luxembourg 12 Rue Erasme 1468 Luxembourg Luxembourg", + "country": "Luxembourg", + "email": "secr@fdlux.lu", + "website": "http://www.fdlux.lu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation de Luxembourg Fondation, 12 Rue Erasme, 1468 Luxembourg, Luxembourg", + "lat": 49.6244038, + "lng": 6.149720599999999, + "zoom": 14, + "place_id": "ChIJ3ZFrujhPlUcRLoJlWNJ3pdM", + "name": "Fondation de Luxembourg Fondation", + "street_number": "12", + "street_name": "Rue Erasme", + "city": "Luxembourg", + "state": "District de Luxembourg", + "post_code": "1468", + "country": "Luxembourg", + "country_short": "LU" + }, + "link": "https://philea.eu/members/fondation-de-luxembourg/", + "philea_info": { + "About": "Fondation de Luxembourg was created in December 2008 by the Luxembourg State and the Oeuvre Nationale de Secours Grande-Duchesse Charlotte. The structure was set up to meet the growing need for a centre of expertise in philanthropy and to encourage and facilitate philanthropic commitments made by private individuals and businesses.", + "Mission": "To promote the private philanthropic commitment, to encourage, support and guide donors who wish to make a long term commitment to the development of significant philanthropic projects, to provide personalised accompaniment for structured philanthropic investment projects in a simplified framework and with the assurance of countinuous follow up.", + "Geographic Focus": "Luxembourg, Europe, Worldwide", + "Programme Areas": "The foundation operates the following areas: • Research and Health\n• Poverty and Social Inclusion\n• Arts and Culture\n• Education\n• Biodiversity and climate changes" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Luxembourg" + ], + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5165, + "name": "Fondation de France", + "address": "Fondation de France 40, Avenue Hoche 75008 Paris France", + "country": "France", + "email": "fondation@fdf.org", + "website": "http://www.fondationdefrance.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation de France, 40 Avenue Hoche, 75008 Paris, France", + "lat": 48.8755259, + "lng": 2.298763799999999, + "zoom": 14, + "place_id": "ChIJ11j25Opv5kcRzrMBr1Vw3Ds", + "name": "Fondation de France", + "street_number": "40", + "street_name": "Avenue Hoche", + "street_name_short": "Av. Hoche", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75008", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-de-france/", + "philea_info": { + "About": "Fondation de France was established as a private foundation, on the initiative of General de Gaulle and André Malraux, to help private donors- individuals and companies- to carry out philanthropic activities in any field of general interest. In particular, Fondation de France enables donors to create their own foundation under its umbrella, offering different services from management to advices on philanthropic priorities. In 2015, Fondation de France hosted 808 donor advised funds and dedicated about 150 million euros to social activities. Fondation the France is the French partner of Transnational giving Europe.", + "Mission": "Fondation de France is ‘the foundation of all causes’, Its mission consists in supporting all the fields of general interest, and helping any private donor to carry out philanthropic activity in any of those fields.", + "Geographic Focus": "France, Europe and developing countries", + "Programme Areas": "The foundation develops programmes in 4 main fields of activities: Helping vulnerable individuals\nPledges to help people grappling with sickness, economic difficulties, advanced age and unemployment meet basic needs, such as housing, healthcare and work. The foundation also endeavours to help them remain active members of their communities, sharing their interests, feelings and projects. Developing knowledge\nPromotes scientific and medical research, culture, education and training, at a time when many young people face a dim job outlook, when progress in research is a vital issue for humanity, and culture is needed to forge a collective identity. Acting for the environment\nEncourages people to live in greater harmony with their surroundings, mindful of the environmental crisis caused by increased human activity. Favouring a citizen-based approach, the foundation supports group endeavours, scientific research and educational projects in France and abroad. Developing philanthropy\nFounded to encourage the development of philanthropy, the foundation is mainly known for housing and managing funds and foundations, and collecting resources to support social innovation. However, to develop philanthropy, foundations must be promoted and defended to help them grow, become more professional, and extend their activities abroad. This is the mandate of Fondation de France." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Global South / Majority World": [ + "Developing Countries" + ], + "Europe (Western / General)": [ + "Europe", + "France" + ] + } + }, + { + "id": 5164, + "name": "Fondation Charles Léopold Mayer pour le progrès humain", + "address": "Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens", + "country": "Switzerland", + "email": "contact.paris@fph.ch", + "website": "http://www.fph.ch", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens", + "lat": 46.52449619999999, + "lng": 6.575196999999999, + "zoom": 12, + "place_id": "ChIJ7cI3BSUxjEcRi4sMQykHFvk", + "street_number": "29", + "street_name": "Route de Praz Véguey", + "street_name_short": "Rte de Praz Véguey", + "city": "Chavannes-près-Renens", + "state": "Vaud", + "state_short": "VD", + "post_code": "1022", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-charles-leopold-mayer-pour-le-progres-de-lhomme/", + "philea_info": { + "About": "The founder, Charles Léopold Mayer, was a philanthropist and financier. He believed in the progress of humankind and used his whole fortune to create the foundation and a science award in the French Science Academy. This legacy led to the establishment in 1982 of the foundation. In 1996, as a tribute to its founder, the foundation was renamed the Charles Léopold Mayer Foundation for the Progress of Humankind.", + "Mission": "To finance, by granting awards or loans, research and other activities that contribute in a significant and innovative way to the progress of humankind through science and social development.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The foundation is committed to contributing to long-term societal changes. It supports and underpins the emergence of a global community in terms of:\n• Governance\n• Ethics\n• Alternative development models Governance\nPromotes and supports the development of new social, political, and institutional regulations at local and global levels to ensure social cohesion, justice, peace, diversity, and individual development. Ethics\nBuilding a viable world society assumes an agreement on common ethical principles. The foundation seeks to present and implement proposals for the establishment of a common ethical foundation, namely the Charter of Human Responsibilities. Alternative Development Models\nPromotes new development, economic, scientific, and technological models tailored to meet the lifestyle, consumer and production needs of a global community. In 2012-2013, the foundation went through a substantial evaluation of its strategy and programmes since 2003.\n• Ecological Transition\n• Governance & Regional cooperations\n• Responsibility/Ethics\n• Tools/Methods/Information" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5163, + "name": "Fondation Chanel", + "address": "Fondation d’entreprise Chanel 135 Av. Charles de Gaulle 92200 Neuilly-sur-Seine France", + "country": "France", + "email": "info@fondationchanel.org", + "website": "http://www.fondationchanel.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "CHANEL, 135 Av. Charles de Gaulle, 92200 Neuilly-sur-Seine, France", + "lat": 48.8832639, + "lng": 2.266366699999999, + "zoom": 14, + "place_id": "ChIJr2D0GABl5kcRPWZ1Aww1YVM", + "name": "CHANEL", + "street_number": "135", + "street_name": "Avenue Charles de Gaulle", + "street_name_short": "Av. Charles de Gaulle", + "city": "Neuilly-sur-Seine", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "92200", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-chanel/", + "philea_info": { + "About": "The establishment in France of Fondation Chanel positioned the issue of women’s empowerment at the heart of CHANEL’s corporate giving and commitment in the non-profit sector. The Foundation bases its actions on two complementary approaches:\n-financial philanthropy and guidance for non-profit projects promoting the economic independence and social well-being of girls and women.\n-direct technical assistance and the transfer of know-how mobilizing CHANEL employees within their various areas of expertise.\nThe Foundation is 100% funded by the company CHANEL", + "Mission": "Fondation Chanel supports and accompanies projects improving the living standards and economic independence of women and their communities. It also plays a role in promoting women in the arts and culture.", + "Geographic Focus": "Global, China, Thailand, India, Brasil, Colombie, Africa, France", + "Programme Areas": "Promoting the access of girls and women to:\n– economic resources and entrepreneurship,\n– education and training,\n– leadership and decision making,\n– health and social protection\n– sports and culture Supporting social and economic integration\nEncouraging the role of women in the arts and culture" + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Health" + ], + "geo_locations": { + "Asia & Pacific": [ + "China", + "India", + "Thailand" + ], + "Worldwide": [ + "Global" + ], + "Europe (Western / General)": [ + "France" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 5162, + "name": "Fondation Botnar", + "address": "Fondation Botnar St. Alban-Vorstadt 56 4052 Basel Switzerland", + "country": "Switzerland", + "email": "info@fondationbotnar.org", + "website": "https://www.fondationbotnar.org/home", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation Botnar, St. Alban-Vorstadt 56, 4052 Basel, Switzerland", + "lat": 47.554306, + "lng": 7.598050300000001, + "zoom": 14, + "place_id": "ChIJda_IuLK5kUcR0zvp3Ql0EXU", + "name": "Fondation Botnar", + "street_number": "56", + "street_name": "Sankt Alban-Vorstadt", + "street_name_short": "St. Alban-Vorstadt", + "city": "Basel", + "state": "Basel-Stadt", + "state_short": "BS", + "post_code": "4052", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-botnar/", + "philea_info": { + "About": "Fondation Botnar is a philanthropic foundation founded to continue the philanthropic work of the Botnar family.", + "Mission": "Fondation Botnar is dedicated to the wellbeing of young people who live, learn, work, connect and play in urban and digital spaces around the world. Enabling the meaningful participation of young people, the foundation invests in and supports innovative initiatives and research, bringing together actors from across sectors to create purposeful dialogue and partnerships.", + "Geographic Focus": "Colombia, Ecuador, Ghana, Indonesia, Israel, Occupied Palestinian Territories (OPT), Romania, Senegal, Switzerland, Tanzania, Vietnam.", + "Programme Areas": "Fondation Botnar’s mission is to ensure that young people live, work, connect, and play in inclusive societies that fulfil their rights and enable them to shape decisions and drive accountability. To this end, Fondation Botnar focuses on four interrelated thematic areas: Enabling liveable and sustainable city systems.\nEnabling a human rights-based digital transformation.\nPromoting mental health.\nStrengthening quality public education." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Switzerland" + ], + "Asia & Pacific": [ + "Indonesia", + "Vietnam" + ], + "Latin America & Caribbean": [ + "Colombia", + "Ecuador" + ], + "Africa / Sub-Saharan Africa": [ + "Ghana", + "Senegal", + "Tanzania" + ], + "Europe (Central & Eastern / Balkans)": [ + "Romania" + ], + "Middle East & North Africa (MENA)": [ + "Israel", + "Palestine" + ] + } + }, + { + "id": 5160, + "name": "Finnish Cultural Foundation", + "address": "Suomen Kulttuurirahasto P.O. Box 203, Bulevardi 5 A 13 00121 Helsinki Finland", + "country": "Finland", + "email": "yleisinfo@skr.fi", + "website": "http://www.skr.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bulevardi 5a, Helsinki, Finland", + "lat": 60.1651316, + "lng": 24.9387852, + "zoom": 14, + "place_id": "ChIJc721yssLkkYRnTqnktrxEhc", + "name": "Bulevardi 5a", + "street_number": "5a", + "street_name": "Bulevardi", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/finnish-cultural-foundation/", + "philea_info": { + "About": "Suomen Kulttuurirahasto was established in 1939, and since then more than 800,000 donors have contributed to the capital of the foundation. The foundation consists of the Central Fund, established in 1939, and the 17 Regional Funds, set up in the 1950s and 1960s. Together they form an umbrella organisation of over 700 separate funds, each carrying the name of their donors and promoting the areas stipulated by them.", + "Mission": "The purpose of the Finnish Cultural Foundation is to “promote and develop cultural and economic life” in Finland. In line with this, the Foundation provides grants to individuals and groups working in the sciences and the arts, and to people and organisations in other fields of intellectual and cultural endeavour.", + "Geographic Focus": "Finland and international", + "Programme Areas": "The foundation provides grants to individuals and groups working in the sciences and the arts, and to people and organisations in other fields of intellectual and cultural endeavour. The Foundation also supports larger projects through substantial grants. In addition to providing grants, the Foundation also arranges courses, lectures, and other events in the arts, sciences, and other fields, and maintains an art collection. The Foundation’s most important international event is the Mirjam Helin International Singing Competition, which is held every five years. While the Central Fund operates nationally, the Foundation’s 17 regional funds concentrate on promoting and developing the arts, the sciences, and other fields of endeavour at the regional level through annual grants and awards." + }, + "tags_focus": [ + "Arts & Culture", + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5158, + "name": "Evens Foundation", + "address": "Evens Foundation Stoopstraat 1 5th floor B-2000 Antwerp Belgium", + "country": "Belgium", + "email": "antwerp@evensfoundation.be", + "website": "http://www.evensfoundation.be", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Antwerp, Belgium", + "lat": 51.2213404, + "lng": 4.4051485, + "zoom": 14, + "place_id": "ChIJfYjDv472w0cRuIqogoRErz4", + "name": "Antwerp", + "city": "Antwerp", + "state": "Flanders", + "state_short": "AN", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/evens-foundation/", + "philea_info": { + "About": "The Evens Foundation is a public-benefit foundation started as a family endeavour in 1990. Its founders, Irène Evens-Radzyminska and Georges Evens, established it because of their commitment to the European project. Born in Poland, they witnessed the troubled history of the Second World War that tore the continent apart. Forced to leave their country of birth, they found a new home in Belgium. Corinne Evens, daughter of the founders, is the Honorary President of the Foundation.", + "Mission": "The Evens Foundation aims to contribute to rethinking and building a European reality committed to the values of diversity, freedom, responsibility and solidarity. The Foundation identifies and supports innovative ideas and achievements through prizes and calls, initiates experimental projects bridging the gap between research and practice, and facilitates knowledge exchange through lectures, seminars, debates and publications.", + "Geographic Focus": "EU countries, Belgium, France and Poland", + "Programme Areas": "As an operative foundation, the Evens Foundation initiates and runs projects together with its partners. Since the foundation’s outset, the Foundation has opted to take risks and remained solidly committed to experimentation — be it through designing their own projects or supporting independent pioneering ideas. The Evens Foundation mainly focuses on the development of pilot projects testing scientific hypotheses, innovative pedagogies or artistic processes.\nFor almost thirty years, it has been active in key fields of intervention such as democracy, education, media, arts, and science. For the strategic plan 2018-2020, two leading initiatives were designed: Common Purpose Through Differences, and Norms and Values Within the European Reality. These concerns unfold several thematic axes, exposing the challenges that Europe faces today.\nThe Foundation’s biennial prizes highlight innovative practices and achievements. Over the years, these prizes have also helped identify new challenges, gain new insights and perspectives, and expand the Foundation’s network. The Evens Foundation currently awards prizes in the fields of Arts, Journalism, Education and Science." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Belgium", + "European Union", + "France" + ], + "Europe (Central & Eastern / Balkans)": [ + "Poland" + ] + } + }, + { + "id": 5380, + "name": "European University Institute", + "address": "European University Institute Via della Badia dei Roccettini 9 50014 Firenze Italy", + "country": "Italy", + "email": "External.Relations@eui.eu", + "website": "http://www.eui.eu", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "European University Institute, Via della Badia dei Roccettini, 9, 50014 Fiesole, Metropolitan City of Florence, Italy", + "lat": 43.803079, + "lng": 11.282959, + "zoom": 14, + "place_id": "ChIJPyVxQANUKhMR1WHvAi0UEf4", + "name": "European University Institute", + "street_number": "9", + "street_name": "Via della Badia dei Roccettini", + "city": "Fiesole", + "state": "Toscana", + "state_short": "FI", + "post_code": "50014", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/european-university-institute/", + "philea_info": { + "About": "EUI is a Social Sciences and Humanities hub connecting academic excellence and research capabilities across Europe and to the world of policy and practice, for the betterment of society.\nFounded in 1972 by the six original members of the then European Communities, the EUI has earned a reputation as a transnational hub of research and higher learning.\nThe EUI’s distinctly international environment offers unique academic training, enriches the intellectual experience and provides exceptional opportunities for academics across disciplines and borders.", + "Geographic Focus": "Worldwide, with an expertise in research related to Europe and the world.", + "Programme Areas": "‘- Research: PhD in Economics, History and Civilisation, Law, and Political and Social Sciences.\n– Policy making" + }, + "tags_focus": [ + "Sciences & Research" + ], + "geo_locations": { + "Worldwide": [ + "World", + "Worldwide" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5151, + "name": "European Foundation for Philanthropy and Society Development", + "address": "European Foundation for Philanthropy and Society Development Dedici 83 10000 Zagreb Croatia", + "country": "Croatia", + "email": "info@europskazaklada-filantropija.hr", + "website": "http://www.europskazaklada-filantropija.hr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "10000, Zagreb, Croatia", + "lat": 45.8348464, + "lng": 15.970761, + "zoom": 14, + "place_id": "ChIJCeEflHXXZUcRwlEzNVCtABM", + "name": "10000", + "city": "Zagreb", + "state": "City of Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/european-foundation-for-philanthropy-and-society-development/", + "philea_info": { + "About": "European Foundation for Philanthropy and Society Development (hereafter: European Foundation) is established in order to develop philanthropy by providing expert and financial support to philanthropists, foundations and socially responsible legal entities through high-quality innovative operation models on national and European level.", + "Mission": "Mission of the European Foundation is to become an institutionalized European and international excellence center for the development of individual philanthropy and foundations and the resource center for the provision of any information and expert documentation on philanthropy, social innovations and society development, as well as the focal location for public discussion about issues and directions of society development based on philanthropy, public innovations and responsible governance", + "Geographic Focus": "Croatia, South-Eastern Europe, Euro-Mediterranean", + "Programme Areas": "The main activities are focused on:\n-Promotion and public advocacy of philanthropy and foundations;\n-Informing and providing support to interested individuals with regard to the development of individual philanthropy and foundations;\n-Education and training programmes for the representatives of foundations from the Republic of Croatia and the countries of Southeast Europe which will be implemented continuously in cooperation with international and national partner organisations;\n-Financing of joint programs related to the development of philanthropy and social innovations through EU structural funds and other international sources;\n-Collection and allocation of financial resources through the implementation of innovative models of activities for the common good, such as online donations on the global level and other inclusive models focused on the development of local communities, in cooperation with specialised international organisations and charity lotteries;\n-Organisation of public discussions on the topics of the development of philanthropy, social innovations and social development;\n-Specialised and interdisciplinary research;\n-Technical assistance and consultations;\n-Publishing." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Balkans", + "Central & Eastern Europe", + "Croatia" + ], + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5150, + "name": "European Cultural Foundation", + "address": "European Cultural Foundation Jan van Goyenkade 5 1075 HN Amsterdam Netherlands", + "country": "Netherlands", + "email": "ask@culturalfoundation.eu", + "website": "http://www.culturalfoundation.eu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "European Cultural Foundation, Jan van Goyenkade 5, 1075 HN Amsterdam, Netherlands", + "lat": 52.3521037, + "lng": 4.868836099999999, + "zoom": 14, + "place_id": "ChIJZcifLPwJxkcRUH9OYjp85Hk", + "name": "European Cultural Foundation", + "street_number": "5", + "street_name": "Jan van Goyenkade", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1075 HN", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/european-cultural-foundation/", + "philea_info": { + "About": "Our founders created the European Cultural Foundation in 1954 as they envisioned a united Europe where citizens feel proudly European, a place where they can live, express themselves, work and dream freely, in diversity and harmony. Ever since the ECF promotes a European sentiment through developing and supporting cultural initiatives that let us share, experience and imagine Europe. We believe our mission is as urgent now as it was back then.", + "Mission": "We have a vision for Europe. A continent where all can live, work, dream and express themselves freely, in diversity and harmony. Where we share a sense of belonging based on solidarity, mutual respect between people and with collaborations across borders of all kinds. We believe in the power of culture to achieve this Europe. Culture helps us negotiate ways of living together, build and understand our multiple identities and make Europe our home. We promote a European sentiment through developing and supporting cultural initiatives that let us share, experience and imagine Europe. Our core values – cooperation, diversity and solidarity – are reflected in everything we do: providing grants, building communities, offering incubator programs and online platforms, organizing events and challenges, publishing books and advocating for culture with policymakers. We have pioneered in growing a European sentiment for over 65 years, and our mission is as urgent as when we first started.", + "Geographic Focus": "Europe and neighboring regions", + "Programme Areas": "All our programmes work towards understanding Europe as a genuine cultural community. An emotional sense of belonging to such a community, a true European sentiment – as our founders called it – is a crucial element for growing Europe in a spirit and culture of solidarity, across national borders and social divides. In our programmes, Europeans from many different backgrounds get to experience the common space and future they share, by culturally engaging with fellow citizens. Europe is both a cultural idea and a political project. Our work acknowledges the European Union as a historical cornerstone of the European unification ideas promoted by our founders. However, our programmes extend beyond the borders of the current EU member states and its institutions. Our programmes stimulate Europeans to imagine their futures freely and creatively and to find new answers to joint European and systemic global challenges. Storytelling, artistic expression and cultural debate are essential instruments of our work for reflecting on the past, examining the presence and envisioning the future of Europe as a common public sphere. Culture of Solidarity In 2020, we offered public stakeholders and foundations the opportunity to connect local/national action with European purpose by inviting them to join the Culture of Solidarity Fund. It is a matter of scale and impact. This echoes the words of our founder – Robert Schuman – who famously said, “Europe will not be made all at once, or according to a single plan. It will be built through concrete achievements which first create a de facto solidarity.” Advocacy Advocacy is a means to advance our mission and to achieve our programmatic goals. We aim at influencing public policy and decisions on priorities and resource allocations within political and philanthropic institutions. Within ECF’s 2020-2025 strategy, advocacy focuses on the following: #CulturalDealEU campaign\nInfluence EU policy and leverage of funding\nPhilanthropy with a European purpose\nAmsterdam partnership\nOther Strategic Partnerships" + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5148, + "name": "European Climate Foundation", + "address": "European Climate Foundation Riviervismarkt 5 2513 AM The Hague Netherlands", + "country": "Netherlands", + "email": "info@europeanclimate.org", + "website": "http://www.europeanclimate.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stichting European Climate Foundation, Riviervismarkt 5, 2513 AM The Hague, Netherlands", + "lat": 52.0766884, + "lng": 4.306905, + "zoom": 14, + "place_id": "ChIJzwwgWTu3xUcRHgynkalZKEY", + "name": "Stichting European Climate Foundation", + "street_number": "5", + "street_name": "Riviervismarkt", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2513 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/european-climate-foundation/", + "philea_info": { + "About": "The European Climate Foundation is dedicated to developing and implementing well-crafted climate and energy policies that greatly reduce Europe’s global greenhouse gas emissions. Key elements of a sustainable energy future include: (1) a substantial increase in energy efficiency, (2) a successful transition from conventional to renewable energy; (3) maintenance of the earth’s ecological systems and the life-supporting services they provide; and, (4) equitable distribution of energy services to different members of the population, both internationally and within nations.", + "Mission": "To promote climate and energy policies that greatly reduce Europe’s greenhouse gas emissions and help Europe play an even stronger international leadership role in mitigating climate change.", + "Geographic Focus": "Europe; European Union", + "Programme Areas": "The European Climate Foundation has identified four priority programmes within its strategy: • Energy Efficiency\n• Low-Carbon Power Generation\n• Transportation\n• EU Climate Policies and Diplomacy\n• Global Climate Policy • Energy Efficiency\nThe foundation aims to ensure that effective energy policies are adopted and implemented at the EU and national levels by leveraging a network of political contacts, grantees and other experts in Brussels and Member States. Technical and policy advice is targeted at the most winnable political opportunities such as a) creating the regulatory and market framework for large-scale energy efficiency investments, b) energy-efficiency in buildings and c) energy-efficiency in products. • Low-Carbon Power Generation\nThe Power Programme focuses on policies that will fully de-carbonise Europe’s power supply by 2050 at the latest. These policies include prohibition of new unabated coal plant construction, support for commercialization of carbon-capture-and-storage technology, advancing large-scale end-use efficiency and accelerating deployment of renewable energy. • Transportation\nThe ECF’s Transport Programme aims to reduce Europe’s vehicle emissions by increasing fuel efficiency and decreasing the carbon content of fuels. Initiatives of the programme focus on:\n1. Car emissions standards\n2. Different means for reducing the carbon footprint of road-freight traffic\n3. Biofuels/Low-Carbon Fuel Standard • EU Climate Policies and Diplomacy\nThe EU Climate Policies Programme aims to secure pan-European and in-country policy frameworks and political conditions that ensure European climate leadership. The Programme’s activities focus on ensuring that the EU commits to reducing CO¬¬¬¬¬2 emissions by at least 30% domestically by 2020, and that Member States deliver practical policies to that effect. In this framework the foundation uses targeted grants and contributes to the coordination of other organisations in order to maximise collective influence on European policy." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "European Union" + ] + } + }, + { + "id": 5146, + "name": "Europe Foundation", + "address": "Europe Foundation - 3 Kavsadze Street, Tbilisi 0179 Georgia", + "country": "Georgia", + "email": "info@epfound.ge", + "website": "http://www.epfound.ge", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Europe Foundation, 3 Lado Kavsadze Street, Tbilisi, Georgia", + "lat": 41.7097949, + "lng": 44.76136189999999, + "zoom": 14, + "place_id": "ChIJM27xrTZzREARCNWG_0EXO5M", + "name": "Europe Foundation", + "street_number": "3", + "street_name": "Lado Kavsadze Street", + "street_name_short": "Lado Kavsadze St", + "city": "T'bilisi", + "state": "Tbilisi", + "country": "Georgia", + "country_short": "GE" + }, + "link": "https://philea.eu/members/europe-foundation/", + "philea_info": { + "About": "The Europe Foundation (EF) creates positive and lasting change through civic engagement. Through its programming and grantmaking, the Foundation strives to promote civic participation and democratic governance in Georgia. It does so by strengthening the capacities of civil society actors, so that they contribute to more inclusive, transparent, and accountable policy making. If civil society capacity and sustainability is strengthened and viable mechanisms of participation are created locally and nationally, then citizens will be better able to enjoy their human rights and freedoms and hold duty-bearers accountable. It is with this rationale in mind that the Foundation’s programs equip CSOs and civic activists with skills, capacities and resources to define and achieve positive outcomes for themselves and their communities. EF employs a participatory approach, which allows civil society actors to determine the issues that are of importance to the right-holders and to develop interventions that will be effective in addressing identified needs – a critical factor in building a vibrant democracy. At the same time, EF is mindful of rising threats to human rights and fundamental freedoms and mobilizes communities and interest groups around specific issue areas to create demand for good governance and democratic change.", + "Mission": "Europe Foundation’s mission is to empower people to effect change for social justice and economic prosperity through hands-on programs, helping them to improve their communities and their own lives. EF engages citizens in social, economic, and political developments, in order to effect substantive and sustainable positive socio-economic change at the local, regional, and national level through both operational programs and grantmaking.", + "Geographic Focus": "Georgia, Eastern Partnership region", + "Programme Areas": "Europe Foundation conducts operating programs and strategic grantmaking. The primary difference between the two is the locus of responsibility for program outputs, and the mechanisms controlling financial expenditure. In running operating programs, the Foundation directly manages project activities and takes upon itself ultimate responsibility for delivery of outputs and project results. Grants allocate funding to outside partner organizations through a grant agreement, and the responsibility for delivery of project outputs rests entirely with the grantee. Operating programs maintain the Foundation’s focus on revitalization of the civic sector and strengthening linkages between civic groups, private sector, public authorities, and communities, but they target these areas from a different angle than grants alone. In addition to the Open Door Grantmaking Program, three main areas of operating programs are the Civil Society and Governance, Institutional and Thematic Capacity Development of Civil Society Actors, and Youth Empowerment." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Georgia" + ] + } + }, + { + "id": 5145, + "name": "Eurochild", + "address": "Rue de la Charité 22, 1210 Brussels", + "country": "Belgium", + "email": "info@eurochild.org", + "website": "http://www.eurochild.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Rue de la Charité 22, 1210 Saint-Josse-ten-Noode, Brussels, Belgium", + "lat": 50.8481605, + "lng": 4.370557499999999, + "zoom": 14, + "place_id": "ChIJefxwSX3Dw0cR7dBO3d-x2-A", + "name": "Rue de la Charité 22", + "street_number": "22", + "street_name": "Rue de la Charité", + "city": "Saint-Josse-ten-Noode", + "state": "Bruxelles", + "post_code": "1210", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/eurochild/", + "philea_info": { + "About": "Currently, Eurochild has 190 members, of which 142 are full members, 44 associate members and 4 honorary members in 37 countries. 23 national networks of children’s rights organisations have been appointed as National Partner Networks (NPNs).", + "Mission": "Eurochild is a network of organisations and individuals working in and across Europe to promote the rights and well-being of children and young people. The vision is of a society where children and young people grow up happy, healthy and confident and respected as individuals in their own right. The mission is to promote the rights and well-being of children in policy and practice through advocacy, membership exchange and research.\nOur work is underpinned by the United Nations Convention on the Rights of the Child (UNCRC). An international human rights treaty that grants all children and young people a comprehensive set of rights. The network is co-funded by the European Union’s programme for Employment and Social Innovation (EaSI).", + "Geographic Focus": "Europe", + "Programme Areas": "Social Inclusion and social protection (child poverty and social exclusion)\nEuropean Economic and Thematic Governance and funding\nChild protection policies\nPromotion of quality alternative care for children and young people\nFamily and parenting support services\nInvesting in quality early years education and care\nPromoting the participation of children in policy and decision making\nEducation, youth, justice, health policies" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ] + } + }, + { + "id": 5144, + "name": "Essl Foundation MGE gemeinnützige Privatstiftung", + "address": "Essl Foundation MGE gemeinnützige Privatstiftung Haus der Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift 5&6 Austria", + "country": "Austria", + "email": "office@zeroproject.org", + "website": "https://zeroproject.org/about/the-essl-foundation-and-zero-project", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Essl Foundation MGE gemeinnützige Privatstiftung Haus der Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift 5&6 Austria", + "lat": 48.2151846, + "lng": 16.366538, + "zoom": 14, + "place_id": "ChIJ1V1cvPkHbUcRjDLTlO5Q9JQ", + "street_number": "16", + "street_name": "Schottenring", + "city": "Wien", + "state": "Wien", + "post_code": "1010", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/essl-foundation-mge-gemeinnutzige-privatstiftung/", + "philea_info": { + "About": "The Essl Foundation MGE gemeinnützige Privatstiftung is an Austrian Foundation established in 2007 by Martin and Gerda Essl, and their children, for social purposes and scientific research.", + "Mission": "The mission of the Essl Foundation is to support social innovation, social entrepreneurship, and persons with disabilities. The mission of the Zero Project is working for a world with zero barriers. Worldwide, the Zero Project finds and share solutions that improve the daily lives and legal rights of all persons with disabilities.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The foundation works in the following areas: Financing and further development of the Zero Project.\nSupport for social projects, especially in Austria, with a focus on education, employment, and accessibility for people with disabilities, as well as barrier-free art education.\nActive participation in the activities of the Sinnstiftern and member of the association for non-profit foundations.\nCo-founder of the Haus der Philanthropie, Vienna – an office community for non-profit foundations and related organizations." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5143, + "name": "ERSTE Stiftung", + "address": "ERSTE Stiftung Am Belvedere 1 1100 Vienna Austria", + "country": "Austria", + "email": "office@erstestiftung.org", + "website": "http://www.erstestiftung.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Am Belvedere 1, 1100 Vienna, Austria", + "lat": 48.1873204, + "lng": 16.3792082, + "zoom": 14, + "place_id": "ChIJ1bgQlNepbUcRQfhnsHyl03Y", + "name": "Am Belvedere 1", + "street_number": "1", + "street_name": "Am Belvedere", + "city": "Wien", + "state": "Wien", + "post_code": "1100", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/erste-stiftung/", + "philea_info": { + "About": "In 2003, ERSTE Foundation evolved out of the Erste Oesterreichische Spar-Casse, the first Austrian savings bank. Currently, ERSTE Foundation is the main shareholder of Erste Group. The foundation invests part of its dividends in the development of societies in Austria and Central and South Eastern Europe. It supports social participation and civil-society engagement; it aims to bring people together and disseminate knowledge of the recent history of a region that has been undergoing dramatic changes since 1989. As an active foundation, it develops its own projects within the framework of three programmes: Social Development, Culture and Europe.", + "Mission": "To invest in lasting structures and relationships; to reinforce individual and organisational autonomy, to cooperate on an equal footing and take joint responsibility for the common good.\nFurthermore, the foundation firmly believes that a prosperous community provides the basis for social, individual and economic development.", + "Geographic Focus": "Austria, Central and South Eastern Europe", + "Programme Areas": "The foundation is active in three key areas: • Social Development\n• Culture\n• Europe Social Development\nThe foundation encourages the development of fairer and stronger societies, where nobody is left behind. It has developed two complementary strategies of social intervention: the integration of individuals and groups who live on the margins of society and research into social change. The foundation’s activities create fair prospects for people in difficult social conditions and situations of extreme need with regard to education and participation. Culture\nThe foundation believes in culture as a driving force for a democratic society and in its ability to forge links between diverse linguistic and geographical regions. Culturally speaking, the countries of Central and South Eastern Europe are a highly diverse area which shares a past of enforced political conformity. The foundation offers a platform to reflect on the ambivalence between a newly acquired, regional identity, the centrifugal forces of nationalist fragmentation and common monocultural historical experiences. Europe\nERSTE Stitung promotes the process of European integration by providing a platform for exchanging ideas, knwoledge and initiatives. The foundation would like Europeans to live according to common values, to freely share ideas, to work together and to learn from one another. Its work thus focuses on establishing a lively culture of dialogue. In an environment insisting on differences, the foundation enables people to experience feelings of solidarity, connection and cooperation." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Austria", + "Europe" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ] + } + }, + { + "id": 5137, + "name": "DOTS Foundation for an Open Society", + "address": "Foundation DOTS Alberta iela, 13 LV-1010 Riga Latvia", + "country": "Latvia", + "email": "dots@fondsdots.lv", + "website": "http://www.fondsdots.lv/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "LATO Latvian Transatlantic Organisation, Alberta iela 13, Central District, Rīga, LV-1010, Latvia", + "lat": 56.9593018, + "lng": 24.1080334, + "zoom": 14, + "place_id": "ChIJjSB_ecTP7kYROV-i4kWpXC4", + "name": "LATO Latvian Transatlantic Organisation", + "street_number": "13", + "street_name": "Alberta iela", + "city": "Rīga", + "post_code": "1010", + "country": "Latvia", + "country_short": "LV" + }, + "link": "https://philea.eu/members/dots-foundation-for-an-open-society/", + "philea_info": { + "About": "Previously known as “The Soros Foundation Latvia”, it was established in 1992 by the philanthropist George Soros as part of the Open Society Foundations (OSF) spanning Europe, the Americas, Africa and Asia. After the Central and East European countries joined the European Union, the family of developed democratic nations, George Soros chose to redirect greater resources to open society development needs in Africa, South America and Asia. In 2011 a decision was made that the foundations located in the EU countries would no longer be members of OSF, but remain affiliated with the broader network. This necessitated a name change by the close of 2014. DOTS Foundation’s mission is to strengthen the quality and culture of democracy in Latvia.", + "Mission": "DOTS Foundation for an Open Society unites people devoted to strengthening the quality and culture of democracy in Latvia.\nWe believe that diversity and a plurality of opinions make Latvia a better place.\nWe believe in an open and inclusive public sphere as the cornerstone for a resilient society able to stand up to the challenges of tomorrow.\nWe believe in trust, dignity, integrity and sustainability, and we work with passion and joy to bring these values to life.\nWe believe in deliberation as the best tool for fair decision-making, and we pursue cooperation and co-creation among our team and with our partners.", + "Geographic Focus": "Latvia", + "Programme Areas": "DOTS engages in the promotion of participatory democracy by: • inspiring a democratic conversation and advancing the culture of discussion\n• inciting people’s interest in societal and political processes\n• fostering people’s active participation in public life DOTS is the founder and co-organiser of the open-air LAMPA Conversation festival. The biggest discussion event in Latvia, LAMPA creates a motivating atmosphere for constant self-improvement in an ever-changing world. Since its creation in 2015, each summer LAMPA has brought together tens of thousands of participants who spend two joyful days sharpening their minds, expanding their horizons and challenging their views. LAMPA is an inspiring and exciting platform for anyone who has something to say — for all those who want to learn about and discuss the central issues for Latvia, Europe and the world." + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Latvia" + ] + } + }, + { + "id": 5135, + "name": "Doc Society", + "address": "Channel 4 BRITDOC Foundation 50 Frith Street WID 4SQ London United Kingdom", + "country": "United Kingdom", + "email": "beadie@britdoc.org", + "website": "https://docsociety.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Frith Street, Soho, London, United Kingdom", + "lat": 51.5135376, + "lng": -0.1314486, + "zoom": 14, + "place_id": "EhRGcml0aCBTdCwgTG9uZG9uLCBVSyIuKiwKFAoSCZFhf93SBHZIEXXreDcc1L2pEhQKEgmbf0uf1AR2SBHSXX5TzFdO5A", + "name": "Frith Street", + "street_name": "Frith Street", + "street_name_short": "Frith St", + "city": "London", + "state": "England", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/doc-society/", + "philea_info": { + "About": "The Channel 4 BRITDOC has produced over fifty documentaries and have worked with experienced talents in the movie sector. Some of their films have been used as educational tools in schools, to trig Government policy reviews and used strategically in the social justice campaigns to inspire action.", + "Mission": "Channel 4 BRITDOC Foundation is a non-profit organisation established in 2004 titled sponsored by Channel 4 Television and supported by UK and Usa foundations. Its main mission of Channel 4 BRITDOC is to build a diverse future for documentary. In order to do this, they create films and engage new partners to ensure that these fims have a global impact.", + "Geographic Focus": "based in UK, but it works internationally", + "Programme Areas": "Through documentaries they cover the following areas:\n– Human rights\n– Environment\n– Health\n– Education" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5132, + "name": "Deutsche Bundesstiftung Umwelt", + "address": "Deutsche Bundesstiftung Umwelt An der Bornau 2 49090 Osnabrück Germany", + "country": "Germany", + "email": "c.soetbeer@dbu.de", + "website": "http://www.dbu.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Deutsche Bundesstiftung Umwelt, An der Bornau 2, 49090 Osnabrück, Germany", + "lat": 52.2863704, + "lng": 8.032082899999999, + "zoom": 14, + "place_id": "ChIJSz4JYMTluUcRL2asjbrjmuo", + "name": "German Federal Environmental Foundation", + "street_number": "2", + "street_name": "An der Bornau", + "street_name_short": "An d. Bornau", + "city": "Osnabrück", + "state": "Niedersachsen", + "state_short": "NDS", + "post_code": "49090", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/deutsche-bundesstiftung-umwelt/", + "philea_info": { + "About": "Deutsche Bundesstiftung Umwelt (DBU) was founded in 1991 following an initiative by Dr Theo Waigel, the then Federal Minister of Finance, and supported by the German government. The foundation began with assets amounting to nearly 1.3 billion euros from the proceeds of privatisation of the former steel group, Salzgitter AG, making it one of the largest foundation trusts in Europe.", + "Mission": "To promote model projects that protect the environment with particular consideration given to small and medium-sized enterprises.", + "Geographic Focus": "Germany, its neighbouring countries and Central and Eastern Europe", + "Programme Areas": "The foundation supports environmental projects giving particular consideration to small and medium-sized enterprises. The foundation is active in the following fieldsMain fields of promotional activities are: • Environmental technology\n• Environmental research / nature protection\n• Environmental communication\n• International activities Within these, the foundation supports nine special fields: • Environmentally friendly applications and procedures, energy technology\n• Architecture and building and construction industry\n• Material stream management and emission reduction\n• Applied environmental research\n• Nature protection\n• Environmentally friendly use of land\n• Scholarship programme\n• Environmental communication and environmental management within small and medium sized enterprises\n• Dissemination of environmental information\n• Environmental education and environment and cultural assets" + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ] + } + }, + { + "id": 5363, + "name": "Degroof Petercam Foundation", + "address": "Degroof Petercam Foundation 44 rue de l'industrie 1040 Brussels Belgium", + "country": "Belgium", + "email": "foundation@degroofpetercam.com", + "website": "https://www.degroofpetercam.com/en/social-impact/degroof-petercam-foundation", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Banque Degroof Petercam, Rue de l'Industrie 44, 1040 Brussels, Belgium", + "lat": 50.8441235, + "lng": 4.370583000000001, + "zoom": 14, + "place_id": "ChIJIbVk0pzEw0cRFTwXA3u0cVM", + "name": "Bank/Banque Degroof Petercam", + "street_number": "44", + "street_name": "Rue de l'Industrie", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1040", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/degroof-petercam-foundation/", + "philea_info": { + "About": "Founded by Degroof Petercam private Bank, Degroof Petercam Foundation has access to the corporate’s network and resources. The Foundation focuses on “big bets” by selecting one top project every year to which is consented a considerable grant and five years of support.", + "Mission": "To support social innovation for employment.", + "Geographic Focus": "Europe (especially Belgium, France, Luxembourg)", + "Programme Areas": "Degroof Petercam Foundation supports social innovation for employment in three fields:\n– Skills for tomorrow\n– Entrepreneurs for tomorrow\n– Job accessibility for tomorrow" + }, + "tags_focus": [ + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Belgium", + "Europe", + "France", + "Luxembourg" + ] + } + }, + { + "id": 5131, + "name": "Daniel and Nina Carasso Foundation", + "address": "Daniel and Nina Carasso Foundation 40, avenue Hoche 75008 Paris France", + "country": "France", + "email": "contact@fondationcarasso.org", + "website": "http://www.fondationcarasso.org/fr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "40 Avenue Hoche, 75008 Paris, France", + "lat": 48.8755934, + "lng": 2.2987615, + "zoom": 14, + "place_id": "ChIJu35D5Opv5kcRsvSuZmBfpV4", + "name": "40 Av. Hoche", + "street_number": "40", + "street_name": "Avenue Hoche", + "street_name_short": "Av. Hoche", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75008", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/daniel-and-nina-carasso-foundation/", + "philea_info": { + "About": "The Daniel and Nina Carasso Foundation was founded in early 2010, under the aegis of umbrella organization, the Fondation de France. It was created in memory of Daniel Carasso – founder of Danone and his wife, Nina. It is a family organization that is independent of the food company. The Foundation is grant making and does not raise funds.", + "Mission": "It aims to act in furtherance of general interest projects and create the right conditions for co‑operation between the projects it funds and the beneficiaries of such projects.", + "Geographic Focus": "France and Spain", + "Programme Areas": "Its objective is to fund projects in two areas critical to human well-being:\n– Sustainable food and diets, to nourish the body\n– Art, to nourish the mind. The Daniel and Nina Carasso Foundation seeks both to support completed projects which can be put to practical effect in the real world and to foster nascent projects. The Foundation seeks to facilitate encounters and opportunities that bring together fields of enquiry whose paths do not always cross. The field of action of the foundation is primarily France and Spain, however, it reserves the right to act elsewhere, particularly in countries facing post-emergency situations, especially in the wake of environmental crises, supporting projects related to two major areas.\nSUSTAINABLE FOOD PROGRAM\n1) Promotion of the systemic approach of food: support to research, advocacy work, training, etc.\n2) Territorial approach and social justice\n3) From production to consumption=agro ecology, food education ART IN THE COMMUNITY PROGRAM\n1) Art and Education: art education programs in schools\n2) Art, Science and Society: call for projects with artist and scientists\n3) Committed artists" + }, + "tags_focus": [ + "Arts & Culture", + "Citizenship, Social Justice & Public Affairs", + "Education", + "Food, Agriculture & Nutrition", + "Health", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "France" + ], + "Europe (Southern / Mediterranean)": [ + "Spain" + ] + } + }, + { + "id": 5129, + "name": "Czech Donors Forum", + "address": "Czech Donors Forum Lucerna Palace, 5th floor Stepanska 61 11602 Prague 1 Czech Republic", + "country": "Czech Republic", + "email": "donorsforum@donorsforum.cz", + "website": "http://www.donorsforum.cz", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Štěpánská 61, New Town, Czechia", + "lat": 50.0809618, + "lng": 14.4263343, + "zoom": 14, + "place_id": "ChIJ42jlTe2UC0cRksIDVfNomKs", + "name": "Štěpánská 61", + "street_number": "61", + "street_name": "Štěpánská", + "state": "Hlavní město Praha", + "post_code": "110 00", + "country": "Czechia", + "country_short": "CZ" + }, + "link": "https://philea.eu/members/czech-donors-forum/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Czech Republic" + ] + } + }, + { + "id": 5128, + "name": "Cultiva - Kristiansand Kommunes Energiverksstiftelse", + "address": "Cultiva - Kristiansand Kommunes Energiverksstiftelse Vestre Strandgate 27 4611 Kristiansand Norway", + "country": "Norway", + "email": "post@cultiva.no", + "website": "http://www.cultiva.no", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Cultiva, Vestre Strandgate 27, 4611 Kristiansand, Kristiansand, Norway", + "lat": 58.14399330000001, + "lng": 7.992162299999999, + "zoom": 14, + "place_id": "ChIJo_wsh2ACOEYRndP7xHpdPZc", + "name": "Cultiva", + "street_number": "27", + "street_name": "Vestre Strandgate", + "city": "Kristiansand", + "state": "Agder", + "post_code": "4611", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/cultiva-kristiansand-kommunes-energiverksstiftelse/", + "philea_info": { + "About": "Cultiva – Kristiansand Kommunes Energiverks-Stiftelse was established in 2000 by the local authority to ensure that the profit made by selling shares in the local energy corporation is of lasting benefit to the community of Kristiansand.", + "Mission": "To secure jobs and good living conditions in Kristiansand by providing grants to projects which set up art, cultural, and educational institutions or organisations that contribute to innovation, development and competence-building within the creative milieu of Kristiansand.", + "Geographic Focus": "Kristiansand, Norway", + "Programme Areas": "The foundation provides grants to projects which set up art, cultural and educational institutions or organisations that contribute to innovation, development and competence-building within the creative milieu of Kristiansand." + }, + "tags_focus": [ + "Arts & Culture" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Norway" + ] + } + }, + { + "id": 5125, + "name": "Conrad N. Hilton Foundation", + "address": "Conrad N. Hilton Foundation 30440 Agoura Road 91301 Agoura Hills United States", + "country": "United States", + "email": "alecia@hiltonfoundation.org", + "website": "http://www.hiltonfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "The Conrad Hilton Foundation offices, 30440 Agoura Road, Agoura Hills, CA 91301, United States", + "lat": 34.1443268, + "lng": -118.7849945, + "zoom": 14, + "place_id": "ChIJEwQzr1Al6IARUjUi658Ae44", + "name": "The Conrad Hilton Foundation offices", + "street_number": "30440", + "street_name": "Agoura Road", + "street_name_short": "Agoura Rd", + "city": "Agoura Hills", + "state": "California", + "state_short": "CA", + "post_code": "91301", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/conrad-n-hilton-foundation/", + "philea_info": { + "About": "The foundation was originally established in 1944 as a Trust, with Conrad N. Hilton, the builder of the world’s first chain of hotels, as the founder and grantor. On 21 February 1950, all assets were transferred over to a nonprofit corporation. The foundation remained relatively small until Mr Hilton’s death on 3 January 1979 when in accordance to his Will, the bulk of his estate was left to the foundation.", + "Mission": "The alleviation of human suffering, particularly among disadvantaged children.", + "Geographic Focus": "Africa (several countries), New York, Los Angeles", + "Programme Areas": "The foundation focuses primarily on the following activities:\n• Hilton/Perkins programme\n• Fund for sisters\n• Hotel and restaurant management\n• Water development\n• Substance abuse prevention and research\n• Domestic violence\n• Homelessness\n• Conrad N. Hilton humanitarian prize Hilton/Perkins Programme\nProvides direct service and educational opportunities for children who are multi-handicapped and blind, as well as training for teachers and support services for parents and family. Co-ordinates services for thousands of children, parents and teachers in the Asia/Pacific region, Africa, Latin America, the Caribbean and eastern Europe. Fund for Sisters\nOperates a grant awarding system under the auspices of the Archdiocese of Los Angeles. Supports projects that have one or more Catholic Sister working full-time towards the alleviation of human suffering, mitigation of deprivation in the lives of youths and achieving systematic change. Hotel and Restaurant Management\nAwards benefits to the University of Houston to expand physical facilities, endow professorships, provide scholarships and enhance educational programmes in the field of hospitality education. Water Development\nProvides a minimum of 1,100 wet wells to hundreds or rural villages through the Afram plains through the Ghana Rural Water Project. Includes instruction for villagers on maintenance and repair or each well, health, hygiene and sanitation education. Technical assistance is provided in the construction of latrines and laundry pads. Substance Abuse Prevention and Research\nTeaches middle school students how to identify and resist the social pressures that lead to experimentation with drugs. Provides them with reasons not to use and builds social norms against such use. Domestic Violence\nTargets the legal system, healthcare providers and the religious community in an attempt to reduce the intergenerational violence, psychological problems, medical expenses and lost productivity caused by domestic violence. Homelessness\nProvides financial support to strengthen services for the homeless mentally ill, living in New York City. Conrad N. Hilton Humanitarian Prize\nDraws attention to exemplary efforts to combat the causes or effects of famine, wars, disease, extreme human affliction or man’ inhumanity to man, by annually awarding the Conrad H. Hilton Humanitarian Prize to voluntary, charitable or NGOs. By focusing on a notable organisation the foundation hopes to motivate support for this cause and stimulate other organisations helping those in need." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 5359, + "name": "Clean Clothes Campaign", + "address": "Clean Clothes Campaign Nieuwezijds Voorburgwal 292-sous 11584 Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@cleanclothes.org", + "website": "http://www.cleanclothes.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Nieuwezijds Voorburgwal 292, Amsterdam, Netherlands", + "lat": 52.3707599, + "lng": 4.8898692, + "zoom": 14, + "place_id": "ChIJY0coasEJxkcRuMIaX-FXMeY", + "name": "Nieuwezijds Voorburgwal 292", + "street_number": "292", + "street_name": "Nieuwezijds Voorburgwal", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1012 RT", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/clean-clothes-campaign/", + "philea_info": { + "About": "The Clean Clothes Campaign was created in the late eighties, during a transition period for the garment industry. Between 1980 and 1990, garment prices worldwide fell by as much as 70%. At the same time, many garment companies were looking for cheaper production options and moved their production to low-wage countries. These processes did not go unnoticed. Activists began to hold garment companies to account for their responsibility in the late 1980s and media increasingly published stories of exploitation in the chains of well-known brands. In the fall of 1988, a group of concerned citizens in the Netherlands drew attention to the working conditions in a garment factory in the Philippines. The activists followed the garment from the factory to the store and discovered that the garment was destined for the Dutch brand C&A. After two years of action and pressure on the factory owner and powerful players in other parts of the production chain, the garment workers reached an agreement with the factory owner for salary compensation. This was a major victory for the garment workers, but not a systemic change in the garment industry. The factory owner himself opened a new factory in a new location not long after, with new garment workers earning at least 30% below the minimum wage. Research revealed similar cases in Bangladesh, India and Western Europe, and more organizations became involved. The Clean Clothes Campaign movement quickly found more allies in both consumer and production countries and from 1991 an ever-expanding global network was created: Clean Clothes Campaign, whose international office is located in Amsterdam and now includes 235 human rights and consumer interest groups, women’s groups and trade unions in both garment producing and consuming countries.", + "Mission": "The Clean Clothes Campaign Network works to structurally improve working conditions and support the empowerment of manufacturing workers in global garment and sportswear supply chains so that governments protect employment rights and human rights, companies respect these rights and workers have access to remedy for violations of these rights.", + "Geographic Focus": "Global", + "Programme Areas": "To achieve our vision, we:\n• Put pressure on companies to respect workers’ rights and use responsible purchasing practices;\n• Take up specific cases of violations of the rights of workers and activists in support of workers’ demands upon their request, and integrate learning from these cases into our strategy;\n• Raise awareness, campaign and mobilise people to undertake individual and collective action linked to their role as consumers, citizens, investors, workers or in other areas of life;\n• Use judicial mechanisms, lobby for legislation and regulation and call for binding mechanisms for corporate accountability to protect workers’ rights;\n• Develop alliances, including those with workers throughout the global garment and sportswear supply chain, to transform the business model and strengthen the global movement for workers’" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Worldwide": [ + "Global" + ] + } + }, + { + "id": 5123, + "name": "City Bridge Foundation", + "address": "City of London, PO Box 270, Guildhall, London EC2P 2EJ", + "country": "United Kingdom", + "email": "funding@cityoflondon.gov.uk", + "website": "http://www.citybridgefoundation.org.uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "City of London, PO Box 270, Guildhall, London EC2P 2EJ", + "lat": 51.5159245, + "lng": -0.0913715, + "zoom": 14, + "place_id": "ChIJH08KIlUbdkgRsAqh3GUSyT4", + "street_number": "71", + "street_name": "Basinghall Street", + "street_name_short": "Basinghall St", + "city": "London", + "state": "England", + "post_code": "EC2V 7HH", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/city-bridge-foundation/", + "philea_info": { + "About": "City Bridge Foundation is one of London’s largest independent charitable funders, with a heritage spanning over 900 years. While it is responsible for maintaining five Thames bridges, its primary focus today is on philanthropy—using income from investments to support organisations tackling inequality and injustice across Greater London.", + "Mission": "The Foundation’s mission is to stand with Londoners by promoting fairness, equity and opportunity. Through its ten-year strategy Standing with Londoners, it seeks to empower communities, reduce inequalities and foster a city where everyone can thrive.", + "Geographic Focus": "Greater London, supporting initiatives that improve lives and opportunities across the capital.", + "Programme Areas": "The Foundation’s work is guided by four interconnected priorities: Climate Justice – Supporting communities most affected by environmental challenges, ensuring they have a voice in shaping a fair and inclusive transition to sustainability.\nAccess to Justice – Funding initiatives that help Londoners understand and exercise their rights, providing support in areas such as housing, employment, immigration and social welfare.\nRacial Justice – Addressing structural inequalities and discrimination by backing organisations that promote equity and inclusion across education, health, housing and the justice system.\nEconomic Justice – Tackling poverty and economic disparity by supporting projects that create pathways to employment, improve financial resilience and enable all Londoners to share in the city’s prosperity." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5120, + "name": "Children's Investment Fund Foundation", + "address": "Children's Investment Fund Foundation 7 Clifford Street W1S 2FT London United Kingdom", + "country": "United Kingdom", + "email": "hnouss@ciff.org", + "website": "http://www.ciff.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "7 Clifford Street, London W1S 2FT, United Kingdom", + "lat": 51.51110310000001, + "lng": -0.1419121, + "zoom": 14, + "place_id": "ChIJ94G6bSoFdkgRyWA5sxpEAoc", + "name": "7 Clifford St", + "street_number": "7", + "street_name": "Clifford Street", + "street_name_short": "Clifford St", + "city": "London", + "state": "England", + "post_code": "W1S 2FT", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/childrens-investment-fund-foundation/", + "philea_info": { + "About": "SMART PHILANTHROPY\nThe Children’s Investment Fund Foundation was established in 2002 by Chris Hohn and Jamie Cooper. The co-founders set out to improve the lives of children living in poverty in developing countries through strategies that have lasting impact. With a rigorous business-like approach to philanthropic funding, the foundation was focused on clear returns for children from the outset. The emphasis on data to measure impact has been widely adopted by other development funders.", + "Mission": "CIFF is the world’s largest philanthropy that focuses specifically on improving children’s lives. “The original mission in setting up CIFF was to improve the lives of children in developing countries who live in poverty.” Championing Children – We are an independent philanthropic organisation, headquartered in London with offices in Nairobi and New Delhi. We work with a range of partners seeking to transform the lives of vulnerable children and adolescents in developing countries. Partnerships are critical, because it will take the combined efforts of many to tackle urgently the challenges faced by children and their families every day. Our programmes are designed to support bold ideas to seemingly intractable problems. We know that the returns on smart investments in areas such as children’s early development and adolescent girls are especially high. So we aim to play a catalytic role as a funder and influencer to deliver urgent and lasting change at scale. Areas of work include maternal and child health, adolescent sexual health, nutrition, education, and deworming, tackling child slavery and exploitation, and supporting smart ways to slow down and stop climate change. We place significant emphasis on quality data and evidence. For many of our grants, we work with partners to measure and evaluate progress to achieve large scale and sustainable impact. Transparency is also an important part of our grant-making. We publish information about our grants along with data, evidence and evaluations in a variety of ways, including on our comprehensive grant portfolio tool.", + "Geographic Focus": "Asia, including India, Bangladesh and China - Africa, including Kenya, Ethiopia, Tanzania, Malawi, Nigeria, Ghana - South America, including Brazil", + "Programme Areas": "SURVIVE & THRIVE\n– Nutrition\n– Health\n– Education\n– Deworming CLIMATE CHANGE\n– Energy\n– Urbanisation\n– Fluorinated Gases\n– Land Use CHILD PROTECTION\n– fight to end child slavery and prostitution" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Asia & Pacific": [ + "Asia", + "Bangladesh", + "China", + "India" + ], + "Africa / Sub-Saharan Africa": [ + "Africa", + "Ethiopia", + "Ghana", + "Kenya", + "Malawi", + "Nigeria", + "Tanzania" + ], + "Latin America & Caribbean": [ + "Brazil", + "Latin America" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5119, + "name": "Paolo Chiesi Foundation", + "address": "Paolo Chiesi Foundation Largo Belloli 11A 43122 Parma Italy", + "country": "Italy", + "email": "", + "website": "https://www.paolochiesifoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "CHIESI Foundation onlus, Largo Francesco Belloli, 11a, 43122 Parma, Province of Parma, Italy", + "lat": 44.837427, + "lng": 10.3429247, + "zoom": 14, + "place_id": "ChIJ-9YF_CJAgEcRtk16ZtI7nJ4", + "name": "CHIESI Foundation onlus", + "street_number": "11a", + "street_name": "Largo Francesco Belloli", + "city": "Parma", + "state": "Emilia-Romagna", + "state_short": "PR", + "post_code": "43122", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/chiesi-foundation/", + "philea_info": { + "About": "To be an Integrated Foundation, the Paolo Chiesi Foundation has numerous strong links to the founding company. This decision has been driven by the will to harness the business acumen and networks of the founding company to create positive, impactful social change in the field of global health. For this reason, Paolo Chiesi Foundation promotes their mission beyond the borders, in those countries where the company does not have a commercial reach, and access to quality of care is not yet guaranteed.", + "Mission": "To promote health and alleviate the suffering of patients affected by respiratory and neonatal diseases.", + "Geographic Focus": "Low and middle income countries, specific focus on French-speaking sub-saharan African countries and South American countries", + "Programme Areas": "The foundations’s mission is pursued through scientific research and international cooperation programs. It works in partnership with local and international organisations by co-designing scientific research project and implementing two different models to improve the quality of neonatal care and to enhance the management of Chronic Respiratory Disease.\n• The NEST (Neonatal Essential Survival Technology) is a project designed by the Chiesi Foundation that aims to reduce neonatal mortality rates by improving the quality of neonatal care in countries with limited resources, paying specific attention to premature, sick, unwell and small for gestational age babies. The NEST project is currently implemented in Burkina Faso, Burundi, Togo and Benin.\n• The GASP (Global Access to Spirometry Project) is a project focused on the development of specific clinical skills for the diagnosis and management of chronic respiratory diseases such as asthma and chronic obstructive pulmonary disease (COPD), through the introduction of spirometry capacity and training activities. The GASP project is currently implemented in Guyana and Peru." + }, + "tags_focus": [ + "Education", + "Health", + "Sciences & Research", + "Youth/Children Development" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "Sub-Saharan Africa" + ], + "Global South / Majority World": [ + "Developing Countries" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5118, + "name": "Charles Stewart Mott Foundation", + "address": "Charles Stewart Mott Foundation 503 South Saginaw St., Suite 1200 48502 Flint, MI United States", + "country": "United States", + "email": "info@mott.org", + "website": "http://www.mott.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Charles Stewart Mott Foundation, 503 S Saginaw St #1200, Flint, MI 48502, United States", + "lat": 43.0158607, + "lng": -83.6904, + "zoom": 14, + "place_id": "ChIJO107KheCI4gRTYacAc2ko6Q", + "name": "Charles Stewart Mott Foundation", + "street_number": "503", + "street_name": "Saginaw Street", + "street_name_short": "Saginaw St", + "city": "Flint", + "state": "Michigan", + "state_short": "MI", + "post_code": "48502", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/charles-stewart-mott-foundation/", + "philea_info": { + "About": "The Charles Stewart Mott Foundation, a private philanthropy, was established by an automotive pioneer in 1926 in Flint, Michigan. Over the past two decades, it has greatly expanded its programming to support nonprofit programs throughout the United States and internationally.", + "Mission": "To support efforts that promote a just, equitable and sustainable society through its programs.", + "Geographic Focus": "Flint, Michigan; US; Central and eastern Europe (CEE); South Africa", + "Programme Areas": "The foundation is active in the following areas: – Civil Society\n– Environment\n– Flint Area\n– Education\n– Exploratory and Special Projects Civil Society\nHelps strengthening the role of philanthropy and the nonprofit sector in increasing civic engagement and improving communities and societies. Environment\nHelps to create accountable and responsive institutions, sound public policies and sustainable models of development that protect communities, as well as the diversity and integrity of selected ecosystems in North America and around the world. Flint Area\nHelps the foundation’s hometown of Flint, Michigan, develop into a well-functioning, connected community that’s capable of meeting economic, social and racial challenges. Education\nAims to create an environment in which all children and young people, particularly those from low- and moderate-income households, have access to quality educational experiences that help them achieve academic and economic success. Exploratory and Special Projects\nSupports unusual or unique opportunities addressing significant national and international problems. Proposals are by invitation only." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5117, + "name": "Charities Aid Foundation", + "address": "Charities Aid Foundation 25 Kings Hill Avenue ME19 4TA Kings Hill United Kingdom", + "country": "United Kingdom", + "email": "enquiries@cafonline.org", + "website": "http://www.cafonline.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Charities Aid Foundation, 25 Kings Hill Avenue, Kings Hill, West Malling ME19 4TA, United Kingdom", + "lat": 51.2776417, + "lng": 0.3949744000000001, + "zoom": 14, + "place_id": "ChIJw6Pi7Ok130cRZoEb5rjdvhY", + "name": "Charities Aid Foundation", + "street_number": "25", + "street_name": "Kings Hill Avenue", + "street_name_short": "Kings Hill Ave", + "city": "West Malling", + "state": "England", + "post_code": "ME19 4TA", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/charities-aid-foundation/", + "philea_info": { + "About": "The origins of the Charities Aid Foundation (CAF) date back to 1924, when the National Council of Social Service set up a Charities Department to encourage more efficient giving to charity. In 1974, the department was re-constituted as the Charities Aid Foundation and registered as a charity with a board of independent trustees. We help individual donors to give more effectively; we support businesses to achieve greater impact with their giving and we help charities to thrive. We operate globally, distributing over £440m in donations a year to 100 countries. We work with 50,000 non-profit organisations. Drawing on our research and our practical experience of working with donors and charities, we work to protect the enabling environment for philanthropy in developed markets, and to build a culture of philanthropy in emerging markets.", + "Mission": "The Charities Aid Foundation’s mission is to motivate society to give ever more effectively, helping to transform lives and communities around the world. We help people and businesses support the causes they care about, and for charities, we provide simple and straightforward day-to-day banking and fundraising services, freeing them up to concentrate on the real work of making a difference.\nFor 90 years, we’ve found the most effective and efficient ways to connect donors to the causes that matter to them and for money to get where it’s needed. As a charity, making an impact in the charitable sector is what drives us.", + "Geographic Focus": "Offices in : America, Australia, Brazil, Bulgaria, Canada, India, Russia, South Africa the UK and partners across the globe.", + "Programme Areas": "CAF operates in the following areas: • Individual giving\n• Company giving\n• Working with charities\n• Grantmaking\n• Advisory and Consulting\n• Research and policy\n• International services Individual Giving\nHelps individuals plan their charitable giving, using means such as the CAF Charity Account, a system which acts like a current account for charitable-giving; Give As You Earn, a pre-tax payroll giving scheme; gift vouchers; legacy services; services for individuals who wish to make non-cash gifts; and a scheme to enable donors to provide enduring support for the causes they care about. Company Giving\nOffers advice and support to companies to help them engage more effectively with their employees and the community. Initiatives include the design and promotion of employee giving; matched giving; volunteer programmes; and special charity accounts. Working with Charities\nProvides charities with access to carefully selected fund management services, from banking and investments, to loan finance and donations management. Grantmaking\nHelps smaller charitable organisations manage themselves more effectively through the provision of development grants, training and consultancy support. Advisory and Consulting\nProvides charities with access to tailored consultancy services ranging from quick organisational reviews to longer-term assistance with charity mergers. Internationally, CAF Consulting works to increase the skill levels, enhance the flow of funds, and improve the long-term sustainability of NGOs. Research and Policy\nPublishes facts, information and analysis on the voluntary sector. The publications are targeted towards informing the decisions made by donors, charities, businesses and the government. International Services\nDelivers international donor services, including private and corporate social investment, and seeks to create a framework that enables giving to flourish." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Sciences & Research", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Africa / Sub-Saharan Africa": [ + "Africa", + "South Africa" + ], + "Asia & Pacific": [ + "Australia", + "India" + ], + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria", + "Russia" + ], + "North America": [ + "Canada", + "United States" + ], + "Latin America & Caribbean": [ + "Brazil" + ], + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5108, + "name": "Carnegie UK Trust", + "address": "Carnegie United Kingdom Trust Andrew Carnegie House, Pittencrieff Street KY12 8AW Dunfermline, Fife United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.carnegieuktrust.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carnegie UK Trust, Andrew Carnegie House, Pittencrieff Street, Dunfermline, Fife KY12 8AW, United Kingdom", + "lat": 56.0715426, + "lng": -3.4705687, + "zoom": 14, + "place_id": "ChIJW_D-_iXSh0gRnGT6ssOIskI", + "name": "Carnegie UK Trust", + "street_name": "Pittencrieff Street", + "street_name_short": "Pittencrieff St", + "city": "Dunfermline", + "state": "Scotland", + "post_code": "KY12 8AW", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/carnegie-uk-trust/", + "philea_info": { + "About": "Founded in 1913, the Carnegie United Kingdom Trust was established as a think-tank and grantmaking organisation in the UK and Ireland. The trust is one of 22 based in the US and Europe, established by the Scottish-American, Andrew Carnegie. The Carnegie UK Trust has links with the network of sister trusts, one example being through co-organising the International Carnegie Medal for Philanthropy.", + "Mission": "To improve the welbeing of people throughout the UK and Ireland, by changing minds through influencing policy, and by changing lives through innovative practice and partnership work.", + "Geographic Focus": "UK and Ireland, also part of the international network of Carnegie foundations.", + "Programme Areas": "The 2016-2020 Strategic Plan sets three Strategic Objectives for the work of the trust: 1.Be a recognised leader in wellbeing and its links to public policy\n2.Be a champion for sharing learning between all jurisdictions of the UK and Ireland\n3.Make working across the public, private and voluntary sector more normal and valued These objectives are embedded across all of the trust’s work and through its strategic category of Enabling Wellbeing. The trust has selected three specific work areas in which to pursue its objectives. These are: Digital Futures, Flourishing Towns, Fulfilling Work – Digital Futures theme explores how the rapid advances in digital technology can be exploited to optimise improvements in wellbeing for people across the UK and Ireland\n– Flourising Towns: the trust seeks to play a leading role in supporting influential policy development and innovative practice in our towns\n– Enabling Wellbeing: theme explores the links between work and wellbeing the mechanisms for ensuring that the work has a positive influence on our wellbeing." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Ireland", + "United Kingdom" + ] + } + }, + { + "id": 5107, + "name": "Carlsberg Foundation", + "address": "Carlsbergfondet H.C. Andersens Boulevard 35 1553 Copenhagen V Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.carlsbergfondet.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carlsbergfondet, H. C. Andersens Boulevard, Copenhagen Municipality, Denmark", + "lat": 55.6731157, + "lng": 12.5738124, + "zoom": 14, + "place_id": "ChIJG6lQChNTUkYRuHvELW4UWjE", + "name": "Carlsbergfondet", + "street_number": "35", + "street_name": "H. C. Andersens Boulevard", + "street_name_short": "H. C. Andersens Blvd.", + "city": "København", + "post_code": "1553", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/carlsberg-foundation/", + "philea_info": { + "About": "CarlsbergFondet was established in 1876 by Brewer J.C. Jacobsen. Following his death in 1887, the Foundation became the sole owner of the Old Carlsberg Brewery. In 1902, the Carlsberg Foundation also became the owner of Carl Jacobsen’s New Carlsberg Brewery. When Carlsberg merged with Tuborg in 1970, the Carlsberg Foundation was awarded a mandatory ownership of at least 51% of the shares in Carlsberg A/S.", + "Mission": "The Carlsberg Foundation supports excellent basic research within the fields of natural science, the humanities and social science. Furthermore, the Foundation works to maintain and develop the Museum of National History at Frederiksborg Castle; to grant funds for socially beneficial objectives through the Tuborg Foundation; and to fund and manage the Carlsberg Laboratory, which is an independent unit under the Carlsberg Research Centre. Finally, the Carlsberg Foundation supports the arts through the New Carlsberg Foundation", + "Geographic Focus": "Denmark", + "Programme Areas": "The foundation supports basic scholarly objectives, helping to finance projects, apparatus and equipment, thesis printing, and travel and research visits. The Carlsberg Foundation funds scientific research within the natural sciences, humanities and social sciences. Through yearly grants the Foundations funds also funds research at its departments: Carlsberg Laboratory, The Museum of National History at Frederiksborg Castle, The Tuborg Foundation The foundation is active in the following areas: • Natural science, including mathematics and philosophy\n• Humanities and social sciences Scientific Social Responsibility (SSR) is a new approach that can best be described as a third dimension of scientists’ traditional responsibility for research and education.\nSSR means that the research supported by the Carlsberg Foundation must be visionary and innovative and must help solve a number of fundamental and universal social problems. This applies to the natural sciences as well as to the humanities and social sciences." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Denmark" + ] + } + }, + { + "id": 5376, + "name": "Caritas Foundation Austria", + "address": "", + "country": "Austria", + "email": "", + "website": "http://www.caritas-foundation.at", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Austria", + "lat": 47.516231, + "lng": 14.550072, + "zoom": 14, + "place_id": "ChIJfyqdJZsHbUcRr8Hk3XvUEhA", + "name": "Austria", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/caritas-foundation-austria/", + "philea_info": { + "About": "Because distress has a different face in every country, Caritas Foundation Austria, as a part of Caritas Austria, is involved in the international Caritas network in its foreign and disaster relief, in which more than 160 Caritas organizations worldwide are serving humanity.", + "Mission": "The core mission of Caritas is to see hardship and act against it. And to stand up and speak for those people who have no voice. This means respecting and protecting human life from beginning to end and helping people in distress, regardless of their background, religion or gender to lead a dignified and self-determined life. The objectives of Caritas Foundation Austria are:\na) The direct support of people in need;\nb) Helping people in need – regardless of their background, religion or gender;\nc) Providing assistance in national and international disaster situations;\nd) Combating poverty and hardship in developing countries by promoting economic and social development, which shall lead to a sustainable economic development and growth, combined with structural and social change.", + "Geographic Focus": "Austria, Europe, Africa", + "Programme Areas": "‘- Help for people in need\n– Care and support\n– Help for people with disabilities\n– Support for refugees and asylum seekers\n– Foreign aid" + }, + "tags_focus": [ + "Humanitarian & Disaster Relief" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Austria", + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ] + } + }, + { + "id": 5106, + "name": "Captain Vassilis and Carmen Constantakopoulos Foundation", + "address": "Captain Vassilis and Carmen Constantakopoulos Foundation Zefyrou 60 P. Faliro 17564 Athens Greece", + "country": "Greece", + "email": "", + "website": "http://www.cvf.gr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION, Zefirou, Palaio Faliro, Greece", + "lat": 37.9385836, + "lng": 23.6953717, + "zoom": 14, + "place_id": "ChIJGyhnAT-8oRQRswlTl7h3aXs", + "name": "CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION", + "street_number": "60", + "street_name": "Zefirou", + "city": "Paleo Faliro", + "state": "Notios Tomeas Athinon", + "post_code": "175 64", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/captain-vassilis-and-carmen-constantakopoulos-foundation/", + "philea_info": { + "About": "The aim of the Foundation is to establish Messinia as a model for sustainable development, by supporting and promoting related projects. In addition to that it supports similar efforts nationwide.\nThe Foundation focuses on three main axes, namely agricultural development, social support, and cultural development, while it supported environmental activities as well.\nThe Foundation works on a “bottom up” basis while keeping in close contact with all technical experts on its fields, ensuring relevance and technical expertise in its actions.", + "Mission": "The aim of the Foundation is to establish Messinia as a model for sustainable development, by supporting and promoting related projects. In addition to that it supports similar efforts nationwide.\nThe Foundation focuses on three main axes, namely agricultural development, social support, and cultural development, while it supported environmental activities as well.\nThe Foundation works on a “bottom up” basis while keeping in close contact with all technical experts on its fields, ensuring relevance and technical expertise in its actions.", + "Geographic Focus": "Greece, Southern Europe", + "Programme Areas": "Agriculture:\n– Centre for agricultural entrepreneurship: Since 2016 the Foundation with the technical advise of the American Farm School, has established and operates the Messinian Centre for Agricultural Entrepreneurship (KAEM).\nThe Center’s main goals are to teach the “art of entrepreneurship,” to support outreach and to develop collaborations with businesses in the agri-food sector, through actions pertaining to:\n1. The development of experiential seminars on agri-food topics.\n2. The development of entrepreneurial thinking and consulting services.\n3. The start of entrepreneurial activities, and observation of their progress.\n4. The creation of a pool of similar collaborative entrepreneurial activities.\n5. The grouping and interconnection for the outreach of producers and products in collaboration with other relevant sectors.\n– Precision Farming: Since 2018 we started a pilot project of precision farming in the area to train local farmers in the new technologies of farming. The project has delivered and soon we will move to more extensive coverage as well as new cultivations (grapes etc) Culture:\nThe Foundation supports a series of cultural contemporary events in the area such as the Kalamata Dance Festival, the Oxbelly initiative (film initiative) as well as a series of excavations of archaeological importance such as the Nestor’s Palace, the Thuria excavation, Iklaena excavation, Ancient Messini etc Social support:\nThe Foundation runs together with Children SOS Villages a Centre for Family and Employment Support. Its aim is to support families in all aspects. Children follow up activities after school while parents follow capacity building projects with a social worker, psychologist and employment consultant. In Athens together with “Metadrasi” the Foundation supports “Stepping Stone” a refugee integration project through employment and capacity building. CVCCF also supports a series of projects that support and engage people with special needs. Environment:\nThe Foundation supports WWF to monitor cetaceans in the Ionian sea. CVCCF also supports “Enaleia” organization in training fisherman in sustainable fishing. The Foundation also runs a series of local clean ups to enhance awareness and capacity building to the Municipalities." + }, + "tags_focus": [ + "Arts & Culture", + "Education", + "Food, Agriculture & Nutrition", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty", + "Youth/Children Development" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe" + ], + "Europe (Southern / Mediterranean)": [ + "Greece" + ] + } + }, + { + "id": 5104, + "name": "Calala Women's Fund", + "address": "Calala Women's Fund Girona 25 08010 Barcelona Spain", + "country": "Spain", + "email": "", + "website": "http://www.calala.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carrer de Girona, 25, 08010 Barcelona, Spain", + "lat": 41.3916922, + "lng": 2.1747488, + "zoom": 14, + "place_id": "ChIJ28kmXOWipBIRr6lTJkuhwZw", + "name": "Carrer de Girona, 25", + "street_number": "25", + "street_name": "Carrer de Girona", + "city": "Barcelona", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08010", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/calala-womens-fund/", + "philea_info": { + "About": "Calala gives grants to grassroots women’s organizations in Central America and Spain, mainly focused on migrant, young, indigenous, domestic workers women’s organizations. Calala also runs Cooperation Development projects with women’s organizations in Central America.", + "Mission": "Calala is a women’s fund based in Barcelona that promotes rights, empowerment and leadership of women in Central America, the Caribbean and Spain by mobilising resources set aside for strengthening their organisations, networks and movements.", + "Geographic Focus": "Spain and Central America", + "Programme Areas": "Calala focuses on Women’s Rights, Sexual and Reproductive Rights, Women Human Rights Defenders, Migrant women." + }, + "tags_focus": [ + "Human/Civil Rights" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Spain" + ], + "North America": [ + "United States" + ], + "Latin America & Caribbean": [ + "Latin America" + ] + } + }, + { + "id": 5102, + "name": "Bulgarian Donors Forum", + "address": "Bulgarian Donors Forum 4B Leonardo da Vinchi Str., floor 2 1124 Sofia Bulgaria", + "country": "Bulgaria", + "email": "", + "website": "http://www.dfbulgaria.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "1124 Sofia, Bulgaria", + "lat": 42.6874493, + "lng": 23.3457036, + "zoom": 14, + "place_id": "ChIJv7yyXpiFqkAR2XFfjYGgBdQ", + "name": "1124", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1124", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/bulgarian-donors-forum/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Bulgaria" + ] + } + }, + { + "id": 5101, + "name": "Both ENDS", + "address": "Both ENDS Nieuwe Keizersgracht 45 1018 VC Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "http://www.bothends.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Nieuwe Keizersgracht 45, 1018 VC Amsterdam, Netherlands", + "lat": 52.36574659999999, + "lng": 4.906903300000001, + "zoom": 14, + "place_id": "ChIJVYVl5JcJxkcRkroYCcBnqIA", + "name": "Nieuwe Keizersgracht 45", + "street_number": "45", + "street_name": "Nieuwe Keizersgracht", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1018 VC", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/both-ends/", + "philea_info": { + "About": "In 1986, representatives from 15 Dutch environmental organisations met to discuss the daily reality that thousands of nature- and environmental organisations in developing countries have to cope with. utch environmental organisations created Both ENDS: Environment and Development Service. The former IUCN-ledencontact (now IUCN Netherlands) adopted Both ENDS as a project and gave it a home. The project’s goal was to offer support and guidance to organisations around the world. Since 1986, Both ENDS has supported many hundreds of environmental organisations in Africa, Asia, Latin America and countries in Central- and Eastern Europe.", + "Mission": "Both ENDS is an independent non-governmental organisation (NGO) that works towards a sustainable future for the planet. They do so by identifying and strengthening civil society organisations (CSOs), mostly in developing countries, that come up with sustainable solutions for environmental and poverty-related issues.", + "Programme Areas": "WATER Both ENDS supports Southern civil society organisations and networks that are fighting against non-sustainable solutions and trying to come up with alternative approaches to sustainable water management. LAND Deforestation and forest degradation, the production of soy and palm oil: the challenges that are created by this as well as the strive for Social Responsibility are central focus areas for Both ENDS in its sustainable land usage programmes. CAPITAL FLOWS Human interaction with the environment and natural resources is often largely determined by developments and decisions made on an economic- (trade and investment) and political (macro-economic policy, budget) level. Both ENDS does it utmost to influence decision-making processes and to anticipate the processes that generate trade- and international funding." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Global South / Majority World": [ + "Developing Countries" + ], + "Latin America & Caribbean": [ + "Latin America" + ], + "Europe (Western / General)": [ + "Europe", + "Netherlands" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Worldwide": [ + "World" + ], + "Asia & Pacific": [ + "Asia" + ], + "Europe (Central & Eastern / Balkans)": [ + "Central & Eastern Europe" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5100, + "name": "Bodossaki Foundation", + "address": "Bodossaki Foundation Mourouzi 14 10674 Athens Greece", + "country": "Greece", + "email": "", + "website": "http://www.bodossaki.gr/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bodossaki Foundation, Mourouzi 14, Athens 106 74, Greece", + "lat": 37.9749303, + "lng": 23.7424664, + "zoom": 14, + "place_id": "ChIJFaVBWUC9oRQRMIVlYekEh8U", + "name": "Bodossaki Foundation", + "street_number": "14", + "street_name": "Mourouzi", + "city": "Athina", + "state": "Kentrikos Tomeas Athinon", + "post_code": "106 74", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/bodossaki-foundation/", + "philea_info": { + "About": "The Bodossaki Foundation was established in 1973 and is one of the most respected privately owned public-benefit organisations in Greece. It exists and thrives thanks to the long-standing, determined and consistent efforts of its founder, Prodromos Bodossakis – Athanassiades to support the state, society and his fellow people. It is a legacy of the tradition he himself maintained, together with many other Greek benefactors and representatives of the Greek diaspora.\nProdromos Bodossakis – Athanassiades was one of the most important Greeks of the 20th century. A talented entrepreneur, gifted with imagination, vision and courage, he generated an important personal fortune, which he dedicated to the progress of the Greek people. The Bodossaki Foundation is the culmination of his personal journey and the continuity and evolution of his personal vision for a better Greece.", + "Mission": "The Bodossaki Foundation is currently active in four main strategic pillars: education, health, protection of the environment and the empowerment of civil society.\nThe Foundation has deep knowledge of the non-profit sector in Greece and since its inception it has managed more than €450 million, which has been disbursed placing great emphasis on increasing equal opportunities, on contributing to the education of young people, on improving medical and research infrastructure and on promoting environmental protection.\nIts vision is to enable human and social potential for a better life.", + "Geographic Focus": "Greece", + "Programme Areas": "The foundation is active in the following areas: Supporting education and scientific excellence\nThe Foundation’s scholarship programmes offer Greek graduates the opportunity to continue their studies at a postgraduate, doctoral or post-doctoral level. By supporting university research laboratories and other research centers, the Foundation empowers Greek scientists to stay in Greece and continue to support their homeland through their work. Through the Bodossaki scientific awards and prizes, the Foundation promotes scientific excellence and fosters positive role models for the Greek society. Promoting health, the environment and innovation\nIn the area of health, the Foundation funds the development of infrastructure and the construction of public hospitals and clinics, as well as the acquisition of medical and laboratory equipment, aiming to ensure equal access to health and medical services and to improve the quality of healthcare, particularly for socially vulnerable groups.\nThe Foundation has also supported a large number of projects promoting environmental protection, working with universities and environmental organisations. It also supports innovation and entrepreneurship, in cooperation with universities, banks, embassies and innovation clusters. To strengthen the connection between innovative research and entrepreneurship, the Foundation implements an innovative funding programme for the granting of IP rights (patents) to researchers in Greek universities and research centers. Supporting civil society\nThe Bodossaki Foundation has deep knowledge of the non-profit sector in Greece as well as of emerging and long-term social needs. The Foundation applies a needs assessment methodology in the design of each programme. Programmes and grants management implementation and monitoring is executed on the basis of a Results-Based-Methodology (RBD). The Foundation also works with third parties (such as businesses and other not-for-profit organisations) which are active in corporate social responsibility, in order to identify, develop, implement and monitor social investment programmes that match the organisation’s strategic needs and priorities and can deliver economic and social benefits for all stakeholders.\nThrough the management of the 7,34m Euro funding of the EEA Grants NGO programme for Greece (2013 – 2017), Bodossaki has directly supported more than 100 NGOs which delivered a total number of 75 projects across Greece, reaching out to more than 205,000 beneficiaries. In partnership with SolidarityNow, Bodossaki currently acts as the Fund Operator of the new EEA Grants NGO fund named “Active Citizens Fund”, with a total budget of 12m euros for Greece. Attracting donations and grants\nThrough the Bodossaki Foundation, anyone wishing to fund public benefit projects in Greece – whether a corporate entity, not-for-profit organisation or private donor – can do so and benefit from the team’s experience and expertise in philanthropy consulting and programme management. Potential donors will also benefit from the Foundation’s mechanisms of implementation and monitoring, established to secure transparency, accountability and maximisation of each programme or donation’s impact. Sustainability through capacity building\nThe Foundation closely supports NGOs and project partners with learning, mentoring and networking opportunities through Social Dynamo, its NGO hub implemented in cooperation with the synAthina team of the Municipality of Athens. Thanks to the contribution of a wide network of collaborators and partners from the non-profit and the private sector, NGOs and informal groups are supported with training, consulting, mentoring and coaching services." + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Greece" + ] + } + }, + { + "id": 5099, + "name": "BMW Foundation Herbert Quandt", + "address": "BMW Foundation Herbert Quandt Reinhardstrasse 58 10117 Berlin Germany", + "country": "Germany", + "email": "", + "website": "http://bmw-foundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "BMW Foundation Herbert Quandt, Reinhardtstraße 58, 10117 Berlin, Germany", + "lat": 52.5222139, + "lng": 13.3765928, + "zoom": 14, + "place_id": "ChIJK4FKf8BRqEcRSQWAg1ayVZg", + "name": "BMW Foundation Herbert Quandt", + "street_number": "58", + "street_name": "Reinhardtstraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10117", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/bmw-foundation-herbert-quandt/", + "philea_info": { + "About": "The BMW Foundation Herbert Quandt was established on June 22, 1970, on the occasion of the 60th birthday of Herbert Quandt and in recognition of his services to BMW AG. Through annual donations, BMW AG in addition contributes to the payment of the foundation’s personnel and material costs. For its further development, the foundation adheres to the “Principles of Good Foundation Practice”, formulated by the Association of German Foundations.", + "Mission": "• The BMW Foundation Herbert Quandt promotes responsible leadership and inspires leaders worldwide to work towards a peaceful, just and sustainable future. Through their activities, the Foundation aims to advance the Sustainable Development Goals of the United Nations 2030 Agenda.\n• They INSPIRE leaders, through leadership programs and encounters, to take their social and political commitment to the next level – across communities, cultures and countries.\n• They CONNECT leaders through their global BMW Foundation Responsible Leaders Network, a diverse, collaborative and joyful community that drives positive change through collaborative action.\n• They INVEST in impactful organisations while encouraging leaders to embrace venture philanthropy and impact investing as effective tools for social change.", + "Geographic Focus": "Europe, North America, Asia, South America, North Africa & Middle East", + "Programme Areas": "The foundation works in the following areas: • Social cohesion\n• Responsibility in society (Responsible leadership)" + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ], + "Latin America & Caribbean": [ + "Latin America" + ] + } + }, + { + "id": 5098, + "name": "Gates Foundation", + "address": "Gates Foundation, 5th Avenue North, Seattle, WA, USA", + "country": "United States", + "email": "", + "website": "http://www.gatesfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gates Foundation, 5th Avenue North, Seattle, WA, USA", + "lat": 47.6233319, + "lng": -122.3465813, + "zoom": 14, + "place_id": "ChIJM3d0rEcVkFQRHe-TbdJ-y68", + "street_number": "500", + "street_name": "5th Avenue North", + "street_name_short": "5th Ave N", + "city": "Seattle", + "state": "Washington", + "state_short": "WA", + "post_code": "98109", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/gates-foundation/", + "philea_info": { + "About": "The foundation was created in 2000 through the merger of the Gates Learning Foundation, which worked to expand access to technology through public libraries, and the William H. Gates Foundation, which focused on improving global health.", + "Mission": "To help all people lead healthy, productive lives; to improve people’s health in developing countries and to give them the chance to lift themselves out of hunger and extreme poverty; and to ensure that all people in the United States – especially those with the fewest resources – have access to the opportunities they need to succeed in school and life.", + "Geographic Focus": "Africa, Asia, Australia, Europe and the US", + "Programme Areas": "The foundation supports programmes in the following areas: •Global Development Program\n•Global Health Program\n•Global Policy and Advocacy\n•United States Program Global Development\nWorks to help the world’s poorest people lift themselves out of hunger and poverty. Global Health\nAims to harness advances in science and technology to save lives in developing countries. Global Policy and Advocacy\nSeeks to build strategic relationships and promote policies that will help advance our work. United States\nWorks to improve U.S. high school and postsecondary education and support vulnerable children and families in Washington State." + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Asia & Pacific": [ + "Asia", + "Australia" + ], + "Europe (Western / General)": [ + "Europe" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "North America": [ + "United States" + ] + } + }, + { + "id": 5097, + "name": "Bikuben Foundation", + "address": "Bikuben Foundation Otto Mønsteds Gade 5 1571 Copenhagen V Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.bikubenfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Otto Mønsteds Gade 5, Copenhagen Municipality, Denmark", + "lat": 55.6712256, + "lng": 12.5728347, + "zoom": 14, + "place_id": "ChIJM7NnNxNTUkYRwtqISVdNOuo", + "name": "Otto Mønsteds Gade 5", + "street_number": "5", + "street_name": "Otto Mønsteds Gade", + "city": "København", + "post_code": "1571", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/bikuben-foundation/", + "philea_info": { + "About": "The Bikuben Foundation has its historical roots in the mission of the savings bank movement. The Bikuben savings bank (“Sparekassen Bikuben”) was established in 1857 not only with the commercial aim of operating as a bank – it was also to use some of its profits for charitable purposes.", + "Mission": "To make lasting improvements to the societies of Denmark and Greenland, through the promotion of culture, education, natural resources and social work.", + "Geographic Focus": "Denamrk and Greenland", + "Programme Areas": "Stage art/theatre\nExhibitions and arts\nTalent development (arts)\nHomeless youngsters and adults\nPoverty and vulnerable families\nYouth community projects\nChildren and youngsters in Greenland\nArts as a Driver of social change\nNature as a driver of social change" + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Greenland" + ], + "Europe (Southern / Mediterranean)": [ + "Greece" + ] + } + }, + { + "id": 5096, + "name": "Bertelsmann Stiftung", + "address": "Bertelsmann Stiftung Carl-Bertelsmann-Straße 256 Postfach 103 33311 Gütersloh Germany", + "country": "Germany", + "email": "", + "website": "http://www.bertelsmann-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carl-Bertelsmann-Straße 256, Gütersloh, Germany", + "lat": 51.9086764, + "lng": 8.4190329, + "zoom": 14, + "place_id": "ChIJ28HLgm0lukcRmopbhV6HgnQ", + "name": "Carl-Bertelsmann-Straße 256", + "street_number": "256", + "street_name": "Carl-Bertelsmann-Straße", + "city": "Gütersloh", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "33311", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/bertelsmann-stiftung/", + "philea_info": { + "About": "Bertelsmann Stiftung was established by Reinhard Mohn in 1977, who in 1993 transferred 68.8% of the capital shares in the Bertelsmann Corporation as non-voting shares to the foundation. Currently, the foundation’s share in Bertelsmann AG is 76.9%. The remaining 23.1% belong to the Mohn family. The foundation conducts its nonprofit-making activities in the philanthropic traditions of the founder families, Bertelsmann and Mohn.", + "Mission": "“Inspiring people. Shaping the future. Participating in a globalised world.”\nThe foundation aims to perceive problems within society, to help solve them by developing exemplary models with experts from practical and theoretical fields, and to put these models into effect in society.", + "Geographic Focus": "Germany and International", + "Programme Areas": "The foundation initiates and carries out projects itself, working with partners in business, government and private institutions, in the following areas: – Discovering Music\n– Living Values\n– Business in Society\n– Leadership and Corporate Culture\n– Germany and Asia\n– Integration and Education\n– Learning for Life\n– Effective Investments in Education\n– Future of Democracy\n– CHE Centre for Higher Education\n– Communities for Better Living\n– Improving Health Care – Informing Patients\n– Civil Society\n– Shaping Sustainable Economies\n– Europe’s Future\n– International Fora and Trends" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Worldwide": [ + "International" + ], + "Europe (Western / General)": [ + "Germany" + ] + } + }, + { + "id": 5094, + "name": "Belgian Federation of Philanthropic Foundations", + "address": "Network of Belgian Foundations Rue Brederode, 21 1000 Brussels Belgium", + "country": "Belgium", + "email": "", + "website": "https://www.lesfondations.be", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Rue Brederode 21, Brussels, Belgium", + "lat": 50.84035859999999, + "lng": 4.362291999999999, + "zoom": 14, + "place_id": "ChIJhfN5jYbEw0cRHuAIcALpV1M", + "name": "Rue Brederode 21", + "street_number": "21", + "street_name": "Rue Brederode", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/belgian-federation-of-philanthropic-foundations/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "Belgium" + ] + } + }, + { + "id": 5093, + "name": "Barrow Cadbury Trust", + "address": "Barrow Cadbury Trust Kean House, 6 Kean Street WC2B 4AS London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.barrowcadbury.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Barrow Cadbury, Kean House, 6 Kean Street, London WC2B 4AS, United Kingdom", + "lat": 51.5136092, + "lng": -0.1184067, + "zoom": 14, + "place_id": "ChIJiRKposoEdkgRvZQxZ2hmaSQ", + "name": "Barrow Cadbury", + "street_number": "6", + "street_name": "Kean Street", + "street_name_short": "Kean St", + "city": "London", + "state": "England", + "post_code": "WC2B 4AS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/barrow-cadbury-trust/", + "philea_info": { + "About": "The Trust was founded in 1920 by Barrow Cadbury and his wife Geraldine Southall Cadbury. Barrow was the grandson of John Cadbury, the founder of the family-run chocolate business in Birmingham where Barrow worked for almost 50 years, succeeding his uncle George as Chairman in 1918. He and Geraldine were committed Quakers who chose to live modestly themselves and establish the Trust. In time, their children became Trustees and their son, Paul Cadbury, took over as Chair in 1959. Paul, his sisters and many of their descendants have all given time to being Trustees and added generously to the Trust’s endowment. The concerns of the founders and five generations of their family are still reflected in the work of the Trust today.", + "Mission": "The Barrow Cadbury Trust’s vision is of a peaceful and equitable society, free from discrimination and based on the principle of social justice for all.\nThe Trust’s mission is to use all of its assets to work with others to bring about structural change for a more just and equal society.", + "Geographic Focus": "UK, particularly the West Midlands", + "Programme Areas": "The Trust has three programmes :\n– Criminal justice,\n– Migration,\n– Economic justice,\n– An additional social investment programme which operates in a different way from the other three programmes. Criminal Justice\nThrough its Criminal Justice Programme, Barrow Cadbury Trust’s principal aim is to strengthen the evidence base for structural and practical change for young adults and women and increase the criminal justice system’s ability to support their rehabilitation and desistance from crime. Migration\nThe aim of the migration programme is to promote an immigration system that is fair to both migrants and established residents and a policy and public debate on migration and integration that is based on shared values as well as evidence. Economic Justice\nBy exploring good practice and innovation in financial systems that actively promote financial inclusion the foundation intends spread creative solutions and encourage new conversations and partnerships. Social Investment\nIn 2010 the trustees decided to use part of the foundation’s endowment to further the aims of the Trust through investments in charities and social enterprises, aiming to achieve both a social and a financial return with the funds." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Humanitarian & Disaster Relief", + "Socio-economic Development, Poverty" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5091, + "name": "Bader Philanthropies, Inc.", + "address": "Bader Philanthropies, Inc. 3300 N. Dr. Martin Luther King Jr. Drive WI 53212 Milwaukee United States", + "country": "United States", + "email": "", + "website": "http://www.bader.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bader Philanthropies, Inc., 3300 North Dr. Martin Luther King Jr. Drive, Milwaukee, WI 53212, United States", + "lat": 43.0793942, + "lng": -87.9161896, + "zoom": 14, + "place_id": "ChIJfYyA86MZBYgRRYfOsetMQ-o", + "name": "Bader Philanthropies, Inc.", + "street_number": "3300", + "street_name": "North Doctor Martin Luther King Junior Drive", + "street_name_short": "N Doctor M.L.K. Jr Dr", + "city": "Milwaukee", + "state": "Wisconsin", + "state_short": "WI", + "post_code": "53212", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/bader-philanthropies-inc/", + "philea_info": { + "About": "Bader Philanthropies, Inc. encompass two distinct philanthropic funds to reflect the values and interests of their respective namesakes:\nThe Helen Daniels Bader Fund (HDBF) will focus its interest in healthier older adults, as well the passion for the arts and creativity. HDBF will further healthy aging in Wisconsin, particularly with respect to the impact of Alzheimer’s disease, as well as its efforts to address Alzheimer’s in Israel. In Milwaukee, HDBF will bring community arts to underserved audiences, while the Helen Bader Scholarship Fund will continue to help keep a Jewish day school education in reach for local families.", + "Mission": "Bader Philanthropies, Inc. strives to be a philanthropic leader in improving the quality of life of the diverse communities in which it works. Through the Helen Daniels Bader Fund and the Isabel & Alfred Bader Fund, the Foundation makes grants, convenes partners, shares knowledge to affect emerging issues in key areas.", + "Geographic Focus": "United States, Israel, Czech Republic", + "Programme Areas": "‘- Alzheimer’s and aging;\n– Youth education;\n– Workforce development;\n– Community improvement;\n– Arts" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Czech Republic" + ], + "North America": [ + "United States" + ], + "Middle East & North Africa (MENA)": [ + "Israel" + ] + } + }, + { + "id": 5090, + "name": "Aydin Dogan Vakfi", + "address": "Aydin Dogan Vakfi Burhaniye Mah. Kısıklı Cad. No:65 PK 34676 Üsküdar-İstanbul Turkey", + "country": "Turkey", + "email": "", + "website": "http://www.aydindoganvakfi.org.tr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Burhaniye, Kısıklı Caddesi No:65, Üsküdar/İstanbul, Turkey", + "lat": 41.0237261, + "lng": 29.0487789, + "zoom": 14, + "place_id": "ChIJx2Saqh3IyhQRMDPMMiEeYXs", + "name": "Kısıklı Cd. No:65", + "street_number": "65", + "street_name": "Kısıklı Caddesi", + "street_name_short": "Kısıklı Cd.", + "state": "İstanbul", + "post_code": "34676", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/aydin-dogan-vakfi/", + "philea_info": { + "About": "The Aydın Doğan Foundation believes and works toward the ideal that democracy is an administrative style that cannot be given up, and that a powerful, respected modern society can be created through the efforts of modern generations educated a) to honour universal values and b) to contribute to the solutions of social and economic problems.", + "Mission": "To improve the quality of education, support media studies, and promote cultural and social advancement in Turkey.", + "Geographic Focus": "Turkey", + "Programme Areas": "The foundation works in the following areas: • Education, including support to schools and dormitories\n• Competitions (Aydin Dogan International Cartoon Competition; The Young Communications Award; The Aydin Dogan Awards)" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 5088, + "name": "Associazione di Fondazioni e di Casse di Risparmio Spa", + "address": "Associazione di Fondazioni e di Casse di Risparmio via del Corso 267 00186 Rome Italy", + "country": "Italy", + "email": "", + "website": "http://www.acri.it", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Via del Corso, 267, 00186 Rome, Metropolitan City of Rome, Italy", + "lat": 41.8980305, + "lng": 12.4818649, + "zoom": 14, + "place_id": "ChIJE5Gwek1gLxMRuYkby5jT9eQ", + "name": "Via del Corso, 267", + "street_number": "267", + "street_name": "Via del Corso", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00186", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/associazione-di-fondazioni-e-di-casse-di-risparmio-spa/", + "philea_info": { + "About": "The Association of Italian Foundations and Savings Banks (Associazione di Fondazioni e di Casse di Risparmio Spa, ACRI) was established in 1912 by Savings banks. Starting from 1990, the association shifted gradually its focus from savings banks to foundations of banking origin (established in the early ’90 by a specifc law called ‘Amato law’ by the name of the Prime Minister who promoted it). ACRI promotes and supports the activity of foundations of banking origin and savings bank, providing them with services, training, advocacy actions and running common projects at a national level.", + "Mission": "ACRI’s statutory goals are: to represent and protect the interests of its members, so that they can achieve their institutional goals, safeguard their assets and pursue economic and technical development; to coordinate its members’ activities in their areas of interest for greater effectiveness as well as to encourage the implementation of joint and common-interest projects; to search and foster cooperation opportunities between members and Italian and foreign entities, companies and relevant organisations; to negotiate the terms and conditions of conventions and agreements to be submitted to the members for approval." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Education" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5367, + "name": "Association of Liechtenstein Charitable Foundations and Trusts", + "address": "Vereinigung Liechtesteiner gemeinnütziger Stiftungen Aeulestrasse 6 Postfach 882 9490 Vaduz Liechtenstein", + "country": "Liechtenstein", + "email": "", + "website": "http://www.vlgs.li", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Aeulestrasse 6, Vaduz, Liechtenstein", + "lat": 47.1404575, + "lng": 9.5207958, + "zoom": 14, + "place_id": "ChIJCyeE9mcxm0cRe985CDnHZLk", + "name": "Aeulestrasse 6", + "street_number": "6", + "street_name": "Aeulestrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/association-of-liechtenstein-charitable-foundation-and-trusts/", + "philea_info": { + "About": "The association is a advocacy group for non-profit foundations. It functions as a partner to political authorities and other organisations and promotes the reputation of non-profit foundations in Liechtenstein across its borders.", + "Mission": "The purpose of the association is to promote and increase awareness of the foundation concept, in particular of the possibilities and benefits of non-profit foundations in Liechtenstein. As means to achieving this purpose, there are plans to build a network of non-profit foundations, exercise political influence to promote the concept of the foundation in general and promote the issue of charitable causes in general via collaboration between various non-profit foundations. Interests will also be represented towards the authorities and supported in general by public relations work." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Liechtenstein" + ] + } + }, + { + "id": 5103, + "name": "Association of German Foundations", + "address": "Bundesverband Deutscher Stiftungen e.V Haus Deutscher Stiftungen, Mauerstr. 93 10117 Berlin Germany", + "country": "Germany", + "email": "", + "website": "http://www.stiftungen.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Mauerstraße 93, Berlin, Germany", + "lat": 52.50816870000001, + "lng": 13.3897489, + "zoom": 14, + "place_id": "ChIJj9hKDdFRqEcRBcYFO9DX_SY", + "name": "Mauerstraße 93", + "street_number": "93", + "street_name": "Mauerstraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10117", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/association-of-german-foundations/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Western / General)": [ + "Germany" + ] + } + }, + { + "id": 5126, + "name": "Association of Finnish Foundations", + "address": "Council of Finnish Foundations Fredrikinkatu 61A 00100 Helsinki Finland", + "country": "Finland", + "email": "", + "website": "https://saatiotrahastot.fi/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Fredrikinkatu 61a, Helsinki, Finland", + "lat": 60.1679008, + "lng": 24.9322093, + "zoom": 14, + "place_id": "ChIJ1T8VyjQKkkYRSXGQebWTgUk", + "name": "Fredrikinkatu 61a", + "street_number": "61a", + "street_name": "Fredrikinkatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/association-of-finnish-foundations/", + "philea_info": { + "About": "The Association of Finnish Foundations (Säätiöt ja rahastot ry in Finnish) is an association for Finnish grant providers, the only benefit and support organisation for foundations in Finland. The association, founded in 1970, now has a membership comprising 250 grant-making foundations and associations. The members support Finnish research, art, and societal development annually with over half a billion euros. The association has no grant-making programme of its own.", + "Programme Areas": "The Council represents grant-making foundations in their relations with public authorities, and oversees the interests of its membership in various ways, such as by issuing opinions on proposals to reform the laws that govern the interests of foundations and other grant-making organizations. The Council also enables its members to exchange information and views on questions of common concern. The Council of Finnish Foundations arranges Training for fiduciaries and functionaries working in member organisations and also a biannual seminar on matters of topical concern in the field of foundations and grants. The Council also published guidelines, reports and studies on foundations." + }, + "tags_focus": [ + "Civil society, Voluntarism & Non-Profit Sector", + "Education" + ], + "geo_locations": { + "Europe (Nordic Region)": [ + "Finland" + ] + } + }, + { + "id": 5087, + "name": "Association of Charitable Foundations (ACF)", + "address": "Association of Charitable Foundations 28 Commercial Street (Fourth Floor) E1 6LS London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.acf.org.uk", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Association Of Charitable Foundations, 28 Commercial Street, London E1 6LS, United Kingdom", + "lat": 51.5164153, + "lng": -0.0725896, + "zoom": 14, + "place_id": "ChIJ4wwCOCUbdkgRWMUs6rJXWfg", + "name": "Association Of Charitable Foundations", + "street_number": "28", + "street_name": "Commercial Street", + "street_name_short": "Commercial St", + "city": "London", + "state": "England", + "post_code": "E1 6LS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/association-of-charitable-foundations/", + "philea_info": { + "About": "Association of Charitable Foundations (ACF) is the membership body for UK foundations and grant-making charities. Driven by a belief that foundations are a vital source for social good, our mission is to support them to be ambitious and effective in the way that they use their resources. We do this through the provision of policy and advocacy, research and information, and a wide-ranging programme of events and learning. Our 380 members collectively hold assets of around £50bn and give over £2.5bn annually. They range in size from large foundations with paid staff distributing over £20m a year each, to small often local volunteer-run trusts distributing less than £100,000 a year.", + "Mission": "Driven by the belief that foundations are a vital source for social good:\nACF SUPPORTS foundations in achieving their charitable objectives\nACF ADVOCATES on behalf of foundations for an enabling policy, legislative and operating environment;\nACF CONNECTS foundations to people, organisations, governments and movements relevant to their work;\nACF INSPIRES foundations to be ambitious and effective in the way that they use their resources.\nIn order to achieve this, it must be ensured that …\nACF THRIVES and is sustainable, supporting members over the longer term." + }, + "tags_focus": [ + "Citizenship, Social Justice & Public Affairs", + "Civil society, Voluntarism & Non-Profit Sector", + "Education", + "Sciences & Research" + ], + "geo_locations": { + "Europe (Western / General)": [ + "United Kingdom" + ] + } + }, + { + "id": 5366, + "name": "Association for the Practice of Transformation", + "address": "", + "country": "Romania", + "email": "", + "website": "https://inspire-change.org/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Romania", + "lat": 45.943161, + "lng": 24.96676, + "zoom": 14, + "place_id": "ChIJw3aJlSb_sUARlLEEqJJP74Q", + "name": "Romania", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/association-for-the-practice-of-transformation/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Central & Eastern / Balkans)": [ + "Romania" + ] + } + }, + { + "id": 5089, + "name": "Assifero – Associazione italiana delle fondazioni ed enti filantropici", + "address": "Assifero (Associazione delle fondazioni di erogazione) Corso Magenta, 71 20123 Milan Italy", + "country": "Italy", + "email": "", + "website": "http://www.assifero.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Corso Magenta, 71, 20123 Milan, Metropolitan City of Milan, Italy", + "lat": 45.465581, + "lng": 9.16976, + "zoom": 14, + "place_id": "ChIJG2aISlrBhkcRs3Ut_WEAd2w", + "name": "Corso Magenta, 71", + "street_number": "71", + "street_name": "Corso Magenta", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20123", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/assifero-associazione-italiana-delle-fondazioni-ed-enti-filantropici/", + "philea_info": { + "About": "" + }, + "tags_focus": [], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Italy" + ] + } + }, + { + "id": 5084, + "name": "Arcadia", + "address": "Arcadia Fund 5 Young Street Sixth Floor W8 5EH London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "https://arcadiafund.org.uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "5 Young Street, London, UK", + "lat": 51.5017685, + "lng": -0.1897595, + "zoom": 14, + "place_id": "ChIJ6cpZs_cPdkgRjPeW5vL9LFI", + "name": "5 Young St", + "street_number": "5", + "street_name": "Young Street", + "street_name_short": "Young St", + "city": "London", + "state": "England", + "post_code": "W8 5EH", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/arcadia/", + "philea_info": { + "About": "Arcadia is a family charitable foundation. It was founded by Lisbet Rausing and Peter Baldwin in 2002. They are led by their donor board and supported by an expert advisory board and a small London-based team.", + "Mission": "Arcadia helps people to record cultural heritage, to conserve and restore nature, and to promote open access to knowledge. We want future generations to enjoy the diversity of human culture and the natural world.", + "Geographic Focus": "World", + "Programme Areas": "1. Conserving and restoring nature: We want nature to survive and flourish. Our grants support solutions to the global biodiversity and climate crises.\n2. Recording cultural heritage: We want future generations to have knowledge of the world’s cultural diversity. Our grants support digital documentation of cultural heritage which is poorly recorded and under threat.\n3. Promoting open access: We want knowledge to be free for anyone, anywhere to access and use. Our grants help make knowledge available for free online, and help people find and use it." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Worldwide": [ + "World" + ] + } + }, + { + "id": 5082, + "name": "Anadolu Eğitim ve Sosyal Yardım Vakfı", + "address": "Anadolu Eğitim ve Sosyal Yardım Vakfı Fatih Sultan Mehmet Mah. Balkan Cad. No:58 Buyaka E Blok 34771 Tepeüstü / Ümraniye Turkey", + "country": "Turkey", + "email": "", + "website": "http://www.anadoluvakfi.org.tr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fatih Sultan Mehmet, E, Balkan Caddesi, Ümraniye/İstanbul, Turkey", + "lat": 41.0232852, + "lng": 29.12607, + "zoom": 14, + "place_id": "ChIJt3hC9dnIyhQReD4eaI97HyA", + "name": "E", + "street_number": "62", + "street_name": "Balkan Caddesi", + "street_name_short": "Balkan Cd.", + "state": "İstanbul", + "post_code": "34770", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/anadolu-egitim-ve-sosyal-yardim-vakfi/", + "philea_info": { + "About": "The Anadolu Group was founded in 1950 by Azici and Ozilhan families and is today the fifth bottling company in the world, in terms of the production, marketing and sales operations. The Anaddolu Foundation was established in 1979 with the goal to create a permanent programme of free services in an aray of areas, including health and education. The foundation has developed more than 40 projects in Turkey in the last 25 years: providing support to more than 15,000 students through scholarships and the construction of schools. The Foundation also provides support to earthquake victims and disabled citizens.", + "Mission": "To share wealth in society.", + "Geographic Focus": "Turkey", + "Programme Areas": "The main programme areas of the Foundation are:\n– Education and scholarships\n– Health\n– Social responsibility" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Europe (Southern / Mediterranean)": [ + "Turkey" + ] + } + }, + { + "id": 5080, + "name": "Allianz Foundation", + "address": "Allianz Kulturstiftung Pariser Platz 6 10117 Berlin Germany", + "country": "Germany", + "email": "", + "website": "https://allianzfoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Allianz Kulturstiftung, Pariser Platz 6, 10117 Berlin, Germany", + "lat": 52.5171015, + "lng": 13.3784056, + "zoom": 14, + "place_id": "ChIJ5amUQ-JRqEcRD6w0Jm6_he4", + "name": "Allianz Kulturstiftung", + "street_number": "6", + "street_name": "Pariser Platz", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10117", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/allianz-kulturstiftung/", + "philea_info": { + "About": "The Allianz Kulturstiftung was officially registered as a non-profit organisation in Munich by the then Allianz AG (now Allianz SE) in the year 2000. In January 2012, the foundation moved into the Berlin Allianz Forum at Pariser Platz. The Allianz Kulturstiftung both funds outside projects and runs its own initiatives. Our general focus is on projects that promote exchange and encounters in Europe and around the Mediterranean, as well as discursive events in the field of European educational work, contemporary visuals and performing arts, literature and music.", + "Mission": "The non profit Allianz Kulturstiftung initiates and funds multilateral art, culture and education projects in Europe and the Mediterranean fostering mutual understanding and dialogue that transcends borders. Our main focus is on cross-disciplinary and contemporary projects that put innovative approaches in art, culture and education into practice and that help shape social change in the spirit of European integration. We particularly support programs that promote exchange, encounters and digitization, that ignite enthusiasm for the European project in young people and that forge ties between participating players.", + "Geographic Focus": "Germany and Europe, with a focus on the countries bordering the Mediterranean Sea.", + "Programme Areas": "The foundation sponsors and initiates projects in the following areas: • Project that help shape social change in the spirit of European integration\n• Projects that promote exchange and encounters in Europe and around the Mediterranean\n• Projects that put innovative approaches in art, culture, education and training into practice\n• Support and fellowships for artists at risk\n• Discursive events in the field of European integration, contemporary visual and performing arts, literature and music" + }, + "tags_focus": [ + "Education" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Europe", + "Germany" + ] + } + }, + { + "id": 5077, + "name": "Aga Khan Foundation", + "address": "Aga Khan Foundation 10 Handyside Street N1C 4DN London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.akf.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Aga Khan Foundation UK, Aga Khan Centre, Handyside Street, London, UK", + "lat": 51.53753189999999, + "lng": -0.1249714, + "zoom": 14, + "place_id": "ChIJGYC8ByYbdkgRgy67bB9iKLM", + "name": "Aga Khan Foundation UK", + "street_number": "10", + "street_name": "Handyside Street", + "street_name_short": "Handyside St", + "city": "London", + "state": "England", + "post_code": "N1C 4DN", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/aga-khan-foundation/", + "philea_info": { + "About": "His Highness the Aga Khan, the founder and chairman of the Aga Khan Development Network, is the 49th hereditary Imam (spiritual leader) of the Shia Ismaili Muslims. The Aga Khan has a deep commitment to improving the quality of life for all through the agencies of the Aga Khan Development Network.\nAKF (UK) is a registered charity and affiliate of the international Aga Khan Foundation and the Aga Khan Development Network", + "Mission": "The UK office of the Aga Khan Foundation supports the broader Aga Khan Development Network (AKDN) by forming strategic partnerships with UK and European institutional partners including government agencies, policy institutes, corporations, foundations, NGOs, universities, associations and professional networks and mobilising resources. AKF (UK) also serves as a learning institution for programme enhancement, policy dialogue, education, and disseminating best practices in international development. Through its series of events and talks, AKF helps raise awareness about particular issues with the development community and with the UK public. In the developing world countries in which the AKDN implements programmes and builds institutions, the principal activities of the organisation are to break the cycle of poverty, promote pluralism, and improve the quality of life.", + "Geographic Focus": "Africa, Asia and the Middle East", + "Programme Areas": "Agriculture, Access to Finance, Civil Society, Culture, Disaster Risk Reduction, Enterprise Development, Education, Governance, Health, Humanitarian Assistance, Infrastructure, Natural Resource Management, Sanitation, Water" + }, + "tags_focus": [ + "Education", + "Environment/Climate", + "Health" + ], + "geo_locations": { + "Middle East & North Africa (MENA)": [ + "Middle East" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ] + } + }, + { + "id": 5075, + "name": "Adessium Foundation", + "address": "Adessium Foundation P.O. Box 76 2810 AB Reeuwijk Netherlands", + "country": "Netherlands", + "email": "", + "website": "http://www.adessium.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Reeuwijk, Netherlands", + "lat": 52.0459962, + "lng": 4.7235288, + "zoom": 14, + "place_id": "ChIJo6aJ-1bWxUcRQ3EvxL90ZVw", + "name": "Reeuwijk", + "city": "Reeuwijk", + "state": "South Holland", + "state_short": "ZH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/adessium-foundation/", + "philea_info": { + "About": "Adessium foundation is a privately funded public-benefit organisation recognised by the Dutch tax authority as an ‘Algemeen Nut Beogende Instelling’ (ANBI), a tax-exempt status equivalent to the American 501(c)(3) designation. The foundation was established in 2005 by the Van Vliet family after the sale of an asset management company.", + "Mission": "Adessium Foundation aspires to a world in which people live in harmony with each other and with their environments.\nThe Foundation works to create a balanced society characterized by integrity, a balance between people and nature, and social harmony.", + "Geographic Focus": "Netherlands and Worldwide", + "Programme Areas": "The foundation supports projects in the following areas:\n– Public Interest: Adessium Foundation aspires to an open, democratic society, in which the availability of independent and factual information safeguards the public interest and encourages ethical behavior.\n– People and Nature: Adessium Foundation aspires to a society that makes responsible use of nature and natural resources. Humanity’s dependence on healthy ecological systems is a central focus.\n– Social Initiatives: Adessium Foundation aspires to a society that provides everyone with equal opportunities, with a focus on human dignity, self-sufficiency, and solidarity." + }, + "tags_focus": [ + "Environment/Climate" + ], + "geo_locations": { + "Europe (Western / General)": [ + "Netherlands" + ], + "Worldwide": [ + "Worldwide" + ] + } + }, + { + "id": 5071, + "name": "“la Caixa” Foundation", + "address": "Avinguda Diagonal, 621, Barcelona, Spain", + "country": "ESP", + "email": "", + "website": "https://obrasociallacaixa.org/en/home", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Avinguda Diagonal, 621, Barcelona, Spain", + "lat": 41.3876748, + "lng": 2.1265478, + "zoom": 18, + "place_id": "ChIJ0VySQGeYpBIRwTsa9qq_FHQ", + "street_number": "621", + "street_name": "Avinguda Diagonal", + "street_name_short": "Av. Diagonal", + "city": "Barcelona", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08028", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/la-caixa-foundation/", + "philea_info": { + "About": "The Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”, is the result of the transformation of Caixa d’Estalvis i Pensions de Barcelona, “la Caixa” into “la Caixa” Banking Foundation, in compliance with the Savings Banks and Banking Foundations Law, of 27 December 2013.", + "Mission": "To build a better, more just society, that offers greater opportunities to the people who most need them.", + "Geographic Focus": "Spain, Portugal, Africa, Asia and Latin America", + "Programme Areas": "The foundation operates in the following areas:\n• Poverty and Social Action\n• Research & Health\n• Education & Scholarships\n• Culture\n• Science\n• International Poverty and Social Action: In this area the foundation carries out social initiatives that help people overcome difficult situations, with particular attention to those living in poverty. This includes the following programmes:\n– Poverty\n– Employment integration\n– The elderly\n– Volunteering\n– Housing Programme\n– Social Organisations and Companies\n– Intercultural Relations and Social Cohesion\n– Violence: Zero Tolerance Research and Health: by supporting research programmes they aim to find new solutions to prevent, treat and eradicate diseases such as AIDS, cancer and cardiovascular disorders. Their hospital care programmes are aimed at supporting and accompanying the most vulnerable patients: hospitalised children and people at the most advanced stage of their illness. This are includes the following programmes:\n– Research in Life and Health Science: Infectious diseases; Oncology, Cardiovascular Diseases, Neuroscience, Medical Sciences\n– Comprehensive care for people with advanced diseases\n– Research in Life and Health Sciences – RecerCaixa\n– Child Hospitalization – Hospital Ciber Caixas\n– Innovation and Technological Transfer – CaixaImpulse\n– Postgraduate scholarships Education and Scholarships: the foundation invests in the talent of young people by offering scholarships and training opportunities. The activities connected with this area are:\n– Educaixa\n– Scholarships Culture: the foundation aims at giving access to culture though its permanent centres and an extensive programme of activities in all towns and cities where it is active.\n– CAIXAFORUM (Barcelona, Madrid, Palma, Girona, Terragona, Lleida, Zaragoza)\n– Travelling Exhibitions\n– Cultural Alliances\n– Music\n– CaixaEscena\n– FotoPres\n– Contemporary Art Collection\n– Calls for Applications (Art for Change “La Caixa and Comisart) Science: within this area the foundation develops and support projects that help create a scientific culture among citizens and an attitude of personal commitment to the planet’s sustainable development. This includes the following activities:\n– CosmoCaixa\n– Travelling Exhibitions\n– Science and Society: RRI Tools, Xplore Health, Science City, Scientist Camp, Educational Innovation, Collaborating Centers\n– The Environment: Conservation of Natural Areas; Gardens of Cap Roig; Safeguarding the Local Area, Ecoinnovation laboratory, ClimaDat, MedClic, The Sea in Depth International: the foundation promotes projects that generate sustainable economies and contribute to the development of the most vulnerable countries in Asia, Africa and South America. These are the activites included in this area:\n– Calls for Applications: Socio-Economic Development programme, Programme for Training projects in Africa, CooperantesCaixa, Humanitarian action: Children malnutrition programme\n– Global Development\n– Global Health" + }, + "tags_focus": [ + "Education", + "Health" + ], + "geo_locations": { + "Latin America & Caribbean": [ + "Latin America" + ], + "Europe (Southern / Mediterranean)": [ + "Portugal", + "Spain" + ], + "Africa / Sub-Saharan Africa": [ + "Africa" + ], + "Asia & Pacific": [ + "Asia" + ], + "North America": [ + "United States" + ] + } } ] \ No newline at end of file diff --git a/src/data/raw/hinchilla_members.json b/src/data/raw/hinchilla_members.json new file mode 100644 index 0000000..8219165 --- /dev/null +++ b/src/data/raw/hinchilla_members.json @@ -0,0 +1,563 @@ +[ + { + "name": "#WILLDOES", + "link": "https://www.hinchilla.com/funder-directory/willdoes", + "philea_info": { + "About": "", + "Programme Areas": "- Mental health support for young people\n- Counselling and wellbeing services\n- Support for bereaved children\n- Outdoor social spaces and recreational facilities\n- Activities promoting social inclusion\n- Physical and mental health improvements for youth\n\n\n### What They Don't Fund\n\nInformation not publicly available.", + "Geographic Focus": "Area of Operation: Cornwall, Dorset, Somerset, Wiltshire, Devon, Hampshire\n\n- Mental health support for young people\n- Counselling and wellbeing services\n- Support for bereaved children\n- Outdoor social spaces and recreational facilities\n- Activities promoting social inclusion\n- Physical and mental health improvements for youth\n\n\n### What They Don't Fund\n\nInformation not publicly available.\n\n| Metric | Value |\n|--------|-------|\n| Annual Giving | £83,629 (2023-24) |\n| Grant Range | £4,000 - £10,000 |\n| Average Grant | £6,000 |\n| Application Method | No Public Process |\n| Geographic Focus | Dorset, Purbeck, Swanage |", + "charityNumber": "1187099", + "areaOfOperation": "Cornwall, Dorset, Somerset, Wiltshire, Devon, Hampshire", + "expenditure": "83629", + "website": "https://www.willdoes.co.uk/", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£83,629 (2023-24)", + "success_rate": "", + "decision_time": "", + "grant_range": "£4,000 - £10,000", + "funding_model": "No Public Process" + } + }, + { + "name": "10 % For The Ocean", + "link": "https://www.hinchilla.com/funder-directory/10-for-the-ocean", + "philea_info": { + "About": "10% For The Ocean is a UK registered charity (CIO - Foundation, Charity No. 1186488) registered on 20 November 2019. The charity operates as a global alliance of over 60 leading ocean charities and initiatives across 27 countries, working to build the world's largest philanthropic fund for ocean conservation. Their mission is to shift ocean charitable funding from 0.3-0.5% to 10% by 2030, which would unlock approximately $80 billion annually for marine ecosystem restoration and protection. The organisation provides catalytic, unrestricted funding to grassroots organisations and researchers on the frontlines of marine protection through their Ocean Recovery Network. As of 2024, the charity reported total income of £145,978 and total expenditure of £213,081.", + "Programme Areas": "### Grant Programs\nThe organisation operates primarily through their **Ocean Recovery Network**, providing unrestricted grants to selected ocean conservation organisations. They describe their grants as \"micro-grants for small, locally focused ocean conservation organisations and projects.\" Selected grantees become part of the Ocean Recovery Network, with additional funds raised distributed equally to network members.\n\n**Funding Model**: Described as \"like a mutual fund for the sea,\" pooling donations from individuals, businesses, and foundations to fund impactful conservation, research, and restoration initiatives worldwide.\n\n### Priority Areas\nAll funded organisations must align with one or more of the 10 targets of the UN's Sustainable Development Goal 14: Life Below Water. Priority areas include:\n\n- **Marine Conservation Programs**: Protecting marine biodiversity and ecosystems\n- **Legal & Advocacy Efforts**: Driving policy change for ocean protection\n- **Education & Awareness**: Bringing people closer to ocean conservation\n- **Research Initiatives**: Supporting scientific research on ocean health\n- **Habitat Restoration**: Focusing on critical issues like coral reefs and seagrass restoration\n- **Fighting Overfishing**: Addressing the fact that 90% of global fish stocks are overfished or exploited\n- **Pollution Prevention**: Tackling plastic pollution and other marine threats\n\nThe charity specifically supports grassroots organisations and locally-focused projects that may struggle to access traditional funding sources.\n\n### What They Don't Fund\nNot publicly specified, though the focus is exclusively on ocean conservation and marine protection aligned with UN SDG 14.", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\nThe organisation operates primarily through their **Ocean Recovery Network**, providing unrestricted grants to selected ocean conservation organisations. They describe their grants as \"micro-grants for small, locally focused ocean conservation organisations and projects.\" Selected grantees become part of the Ocean Recovery Network, with additional funds raised distributed equally to network members.\n\n**Funding Model**: Described as \"like a mutual fund for the sea,\" pooling donations from individuals, businesses, and foundations to fund impactful conservation, research, and restoration initiatives worldwide.\n\n### Priority Areas\nAll funded organisations must align with one or more of the 10 targets of the UN's Sustainable Development Goal 14: Life Below Water. Priority areas include:\n\n- **Marine Conservation Programs**: Protecting marine biodiversity and ecosystems\n- **Legal & Advocacy Efforts**: Driving policy change for ocean protection\n- **Education & Awareness**: Bringing people closer to ocean conservation\n- **Research Initiatives**: Supporting scientific research on ocean health\n- **Habitat Restoration**: Focusing on critical issues like coral reefs and seagrass restoration\n- **Fighting Overfishing**: Addressing the fact that 90% of global fish stocks are overfished or exploited\n- **Pollution Prevention**: Tackling plastic pollution and other marine threats\n\nThe charity specifically supports grassroots organisations and locally-focused projects that may struggle to access traditional funding sources.\n\n### What They Don't Fund\nNot publicly specified, though the focus is exclusively on ocean conservation and marine protection aligned with UN SDG 14.\n\n- **Annual Giving**: £213,081 (2024 expenditure)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly disclosed\n- **Grant Range**: Not publicly disclosed (described as \"micro-grants\" and \"unrestricted funding\")\n- **Geographic Focus**: International (27 countries)\n- **Application Method**: No public application process", + "charityNumber": "1186488", + "areaOfOperation": "England, Wales", + "expenditure": "213081", + "website": "https://www.10percentfortheocean.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£213,081 (2024 expenditure)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly disclosed", + "grant_range": "Not publicly disclosed (described as \"micro-grants\" and \"unrestricted funding\")", + "funding_model": "No public application process" + } + }, + { + "name": "136193034", + "link": "https://www.hinchilla.com/funder-directory/136193034", + "philea_info": { + "About": "The Novartis US Foundation is a 501(c)(3) charitable foundation established by Novartis in 1966 to support philanthropic efforts in the United States. The foundation operates with a mission to improve health in underserved communities by creating innovative and sustainable solutions to expand access to healthcare and build trust within the healthcare system. In 2023, the foundation distributed $10.18 million through 8 awards, with major multi-year commitments exceeding $80 million announced since refocusing its mission.\n\nThe foundation operates primarily through strategic partnerships with major healthcare organisations, HBCUs, and community health initiatives rather than accepting general unsolicited applications. However, Novartis does accept unsolicited applications for Professional Medical Education Grants and Patient Education Grants through its Grants Central Station (NGCS) portal. President Binta Beard leads the foundation with a strong focus on health equity, community-centred approaches, and addressing social determinants of health.", + "Programme Areas": "### Major Initiatives\n\n**Beacon of Hope HBCU Initiative** ($50M+ commitment)\n- Established clinical trial Centres of Excellence at four Historically Black Medical Schools: Morehouse School of Medicine, Howard University College of Medicine, Meharry Medical College, and Charles R. Drew University of Medicine and Science (approximately $31.4 million)\n- Three-year scholarships of $10,000 annually to 120 students at 26 HBCUs and Medical Schools\n- TMCF partnership providing $2.25 million over nine years for faculty research grants ($25,000 each, 10 grants annually)\n- Partnerships with Coursera, National Medical Association, Merck, and Sanofi\n\n**Health Equity Commitment** ($25 million)\n- Focus on reducing health disparities in the US\n- Emphasis on clinical trial diversity\n- Building pathways to better breast, prostate, and cardiovascular health for two million people by 2030\n\n**Community Health Solutions Strategy**\n- **Cardiovascular Health**: HEART program (five-year commitment) in Nashville, Detroit, and San Bernardino; EngAGE with Heart in Baltimore\n- **Prostate Cancer**: Partnership with ZERO Prostate Cancer \"Blitz the Barriers\" initiative ($7.5 million of $20 million total), targeting 12 highest-risk communities, launching in Atlanta and Baltimore\n- **Breast Health**: Community-based screening and education programs\n- Goal: Reach two million people by 2030\n\n**COVID-19 Response Fund** ($5 million, 2020)\n- 40 community organisations received grants totaling $4.89 million\n- 20 programs focused on food security, mental health, and social services\n- Recipients included NAMI, Commons Project ($250,000), Americares ($125,000), Direct Relief ($125,000), and community foundations across the US\n\n### Strategic Partnerships\n- **CDC Foundation**: Signature partnership for health systems strengthening\n- **Institute for Healthcare Improvement (IHI)**: Healthcare transformation partnership\n- **New Jersey Primary Care Association (NJPCA)**: $2 million over two years for telehealth programs at community health centres\n- **Thurgood Marshall College Fund (TMCF)**: Multi-year HBCU alliance\n- **ZERO Prostate Cancer**: $7.5 million commitment for Blitz the Barriers\n\n### Educational Grants (Through NGCS Portal)\n- **Professional Medical Education Grants**: Support for accredited and non-accredited continuing medical education for healthcare professionals\n- **Patient Education Grants**: Support for independent patient education initiatives\n- **Sponsorships and Memberships**: Funding for US nonprofit healthcare organisations (501(c)3, 501(c)4, or 501(c)6)\n\n### Employee Programs\n- **Matching Gifts Program**: Dollar-for-dollar match up to $5,000 per associate annually for contributions to 501(c)(3) organisations\n- **Dollars for Doers**: Volunteer grants including board service grants ($750 after one year of board service, renewable for up to three years)\n- **Science Scholars Program**: Partnership with Independent College Fund of New Jersey providing $3,000 scholarships to 15 undergraduate science majors annually, plus year-long mentoring with Novartis scientists\n\n### Disaster Preparedness\n- Funding through American Red Cross, Americares, and Direct Relief to support disaster response throughout the US\n\n### What They Don't Fund\n- Overhead administrative costs\n- Recreational components (golf, spa, resort activities)\n- Gifts to speakers or attendees\n- Activities allowing speakers/participants to bring spouses or guests to meal functions\n- Requests not submitted at least 60 days prior to event date\n- Direct support to individuals (only to organisations)\n- Projects linked to prescribing, purchasing, formulary status, or reimbursement", + "Geographic Focus": "Area of Operation: United Kingdom\n\n### Major Initiatives\n\n**Beacon of Hope HBCU Initiative** ($50M+ commitment)\n- Established clinical trial Centres of Excellence at four Historically Black Medical Schools: Morehouse School of Medicine, Howard University College of Medicine, Meharry Medical College, and Charles R. Drew University of Medicine and Science (approximately $31.4 million)\n- Three-year scholarships of $10,000 annually to 120 students at 26 HBCUs and Medical Schools\n- TMCF partnership providing $2.25 million over nine years for faculty research grants ($25,000 each, 10 grants annually)\n- Partnerships with Coursera, National Medical Association, Merck, and Sanofi\n\n**Health Equity Commitment** ($25 million)\n- Focus on reducing health disparities in the US\n- Emphasis on clinical trial diversity\n- Building pathways to better breast, prostate, and cardiovascular health for two million people by 2030\n\n**Community Health Solutions Strategy**\n- **Cardiovascular Health**: HEART program (five-year commitment) in Nashville, Detroit, and San Bernardino; EngAGE with Heart in Baltimore\n- **Prostate Cancer**: Partnership with ZERO Prostate Cancer \"Blitz the Barriers\" initiative ($7.5 million of $20 million total), targeting 12 highest-risk communities, launching in Atlanta and Baltimore\n- **Breast Health**: Community-based screening and education programs\n- Goal: Reach two million people by 2030\n\n**COVID-19 Response Fund** ($5 million, 2020)\n- 40 community organisations received grants totaling $4.89 million\n- 20 programs focused on food security, mental health, and social services\n- Recipients included NAMI, Commons Project ($250,000), Americares ($125,000), Direct Relief ($125,000), and community foundations across the US\n\n### Strategic Partnerships\n- **CDC Foundation**: Signature partnership for health systems strengthening\n- **Institute for Healthcare Improvement (IHI)**: Healthcare transformation partnership\n- **New Jersey Primary Care Association (NJPCA)**: $2 million over two years for telehealth programs at community health centres\n- **Thurgood Marshall College Fund (TMCF)**: Multi-year HBCU alliance\n- **ZERO Prostate Cancer**: $7.5 million commitment for Blitz the Barriers\n\n### Educational Grants (Through NGCS Portal)\n- **Professional Medical Education Grants**: Support for accredited and non-accredited continuing medical education for healthcare professionals\n- **Patient Education Grants**: Support for independent patient education initiatives\n- **Sponsorships and Memberships**: Funding for US nonprofit healthcare organisations (501(c)3, 501(c)4, or 501(c)6)\n\n### Employee Programs\n- **Matching Gifts Program**: Dollar-for-dollar match up to $5,000 per associate annually for contributions to 501(c)(3) organisations\n- **Dollars for Doers**: Volunteer grants including board service grants ($750 after one year of board service, renewable for up to three years)\n- **Science Scholars Program**: Partnership with Independent College Fund of New Jersey providing $3,000 scholarships to 15 undergraduate science majors annually, plus year-long mentoring with Novartis scientists\n\n### Disaster Preparedness\n- Funding through American Red Cross, Americares, and Direct Relief to support disaster response throughout the US\n\n### What They Don't Fund\n- Overhead administrative costs\n- Recreational components (golf, spa, resort activities)\n- Gifts to speakers or attendees\n- Activities allowing speakers/participants to bring spouses or guests to meal functions\n- Requests not submitted at least 60 days prior to event date\n- Direct support to individuals (only to organisations)\n- Projects linked to prescribing, purchasing, formulary status, or reimbursement\n\n- **Annual Giving**: $10.18 million (2023)\n- **Success Rate**: Not publicly disclosed (operates primarily through strategic partnerships)\n- **Decision Time**: 60+ days (for educational grants); strategic partnerships vary\n- **Grant Range**: $25,000 - $7,500,000+ (varies by program)\n- **Geographic Focus**: United States, with emphasis on underserved communities", + "charityNumber": "136193034", + "areaOfOperation": "United Kingdom", + "expenditure": null, + "website": "https://www.novartis.com/us-en/esg/corporate-responsibility/novartis-us-foundation", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "$10.18 million (2023)", + "success_rate": "Not publicly disclosed (operates primarily through strategic partnerships)", + "decision_time": "60+ days (for educational grants); strategic partnerships vary", + "grant_range": "$25,000 - $7,500,000+ (varies by program)", + "funding_model": "" + } + }, + { + "name": "20th International Geographical Congress Fund", + "link": "https://www.hinchilla.com/funder-directory/20th-international-geographical-congress-fund", + "philea_info": { + "About": "The 20th International Geographical Congress Fund was established following the 20th International Geographical Congress held in London in 1964, which was the largest IGC in history at the time, attended by Queen Elizabeth II and numerous dignitaries. The fund is administered by the Royal Geographical Society (with the Institute of British Geographers), a prestigious organisation chartered by Queen Victoria in 1859. Each year, one grant of up to £3,500 is awarded from this fund as part of the RGS-IBG Small Research Grants programme, which collectively supports over 60 fieldwork projects annually across the globe. The fund specifically targets early career researchers conducting geographical research that will advance knowledge and lead to publications. Unlike most RGS grants, this fund notably does not require applicants to be Fellows or Members of the Society, making it more accessible to early career researchers.", + "Programme Areas": "### Grant Programs\n- **20th International Geographical Congress Fund**: One grant of up to £3,500 awarded annually for original desk-based or field-based research in any area of geography\n- **Application Method**: Online application form submission via email to grants@rgs.org\n- **Deadline**: 3 February annually (applications accepted at 11:59pm)\n\n### Priority Areas\n- Original geographical research that advances knowledge in any area of geography\n- Projects that will lead to publications (journal articles, books, reports)\n- Research by early career individuals (within 6 years of PhD completion preferred, though up to 10 years post-PhD considered)\n- Both desk-based and field-based research projects\n\n### What They Don't Fund\n- Equipment grants (specifically excluded for this fund)\n- Postgraduate research (full PhD funding)\n- Conference attendance only\n- Replacement wages\n- Equipment costs exceeding 20% of total award (general RGS policy, though equipment grants cannot be made from this specific fund)", + "Geographic Focus": "Area of Operation: International\n\n### Grant Programs\n- **20th International Geographical Congress Fund**: One grant of up to £3,500 awarded annually for original desk-based or field-based research in any area of geography\n- **Application Method**: Online application form submission via email to grants@rgs.org\n- **Deadline**: 3 February annually (applications accepted at 11:59pm)\n\n### Priority Areas\n- Original geographical research that advances knowledge in any area of geography\n- Projects that will lead to publications (journal articles, books, reports)\n- Research by early career individuals (within 6 years of PhD completion preferred, though up to 10 years post-PhD considered)\n- Both desk-based and field-based research projects\n\n### What They Don't Fund\n- Equipment grants (specifically excluded for this fund)\n- Postgraduate research (full PhD funding)\n- Conference attendance only\n- Replacement wages\n- Equipment costs exceeding 20% of total award (general RGS policy, though equipment grants cannot be made from this specific fund)\n\n- **Annual Giving**: £3,500 (one grant per year from this fund)\n- **Success Rate**: Not publicly disclosed\n- **Decision Time**: Approximately 8-12 weeks\n- **Grant Range**: Up to £3,500 (single grant awarded)\n- **Geographic Focus**: UK-based researchers (must be affiliated with UK Higher Education Institution)", + "charityNumber": "CUSTOM_29E5C29E", + "areaOfOperation": "International", + "expenditure": "3500", + "website": "https://www.rgs.org/in-the-field/grants/research-grants/rgs-ibg-small-research-grants", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£3,500 (one grant per year from this fund)", + "success_rate": "Not publicly disclosed", + "decision_time": "Approximately 8-12 weeks", + "grant_range": "Up to £3,500 (single grant awarded)", + "funding_model": "" + } + }, + { + "name": "3R Foundation", + "link": "https://www.hinchilla.com/funder-directory/3r-foundation", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "A G Manly Charitable Trust", + "link": "https://www.hinchilla.com/funder-directory/a-g-manly-charitable-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "A H Boulton Trust", + "link": "https://www.hinchilla.com/funder-directory/a-h-boulton-trust", + "philea_info": { + "About": "The A H Boulton Trust is a well-established grant-making trust founded in 1955 and operating in the Wirral area of Merseyside. With an annual income of over £125,000 and expenditure exceeding £106,000, the trust operates through a five-member board of trustees who have close connections to the Boulton Cottage Homes Trust. The trust's primary purpose is to aid the erection and maintenance of buildings used for the preaching of the Gospel, while also providing relief to the sick or needy and offering financial assistance to deserving individuals as determined by the trustees. The trust carries out its charitable purposes primarily through grant-making activities, supporting elderly people and other charities or voluntary bodies. All trustees serve without remuneration, and the charity maintains up-to-date reporting with the Charity Commission.", + "Programme Areas": "### Grant Programs\n\nThe trust operates through trustee-directed grant-making rather than formal application programs. Grants are awarded at the discretion of the trustees based on the trust's charitable objectives.\n\n### Priority Areas\n\n**Religious Buildings and Gospel Work**\n- Erection of new buildings for preaching the Gospel\n- Maintenance and upkeep of existing religious buildings\n- Support for facilities used for Gospel teaching and doctrine\n\n**Social Welfare**\n- Relief of the sick\n- Support for those in need\n- Financial assistance to deserving individuals\n- Prevention or relief of poverty\n- Accommodation and housing support\n\n**Beneficiary Groups**\n- Elderly or old people\n- Other charities and voluntary bodies\n- Individuals deemed deserving by trustees\n\n### What They Don't Fund\n\nThe trust's charitable objects are specific to Gospel-related buildings, poverty relief, and housing. The trust operates with a specific focus on the Wirral area and may not support activities outside these defined purposes.", + "Geographic Focus": "Area of Operation: Wirral\n\n### Grant Programs\n\nThe trust operates through trustee-directed grant-making rather than formal application programs. Grants are awarded at the discretion of the trustees based on the trust's charitable objectives.\n\n### Priority Areas\n\n**Religious Buildings and Gospel Work**\n- Erection of new buildings for preaching the Gospel\n- Maintenance and upkeep of existing religious buildings\n- Support for facilities used for Gospel teaching and doctrine\n\n**Social Welfare**\n- Relief of the sick\n- Support for those in need\n- Financial assistance to deserving individuals\n- Prevention or relief of poverty\n- Accommodation and housing support\n\n**Beneficiary Groups**\n- Elderly or old people\n- Other charities and voluntary bodies\n- Individuals deemed deserving by trustees\n\n### What They Don't Fund\n\nThe trust's charitable objects are specific to Gospel-related buildings, poverty relief, and housing. The trust operates with a specific focus on the Wirral area and may not support activities outside these defined purposes.\n\n- **Registered Charity Number**: 219907\n- **Annual Income**: £125,306 (2024/25)\n- **Annual Expenditure**: £106,813 (2024/25)\n- **Type**: Grant-making trust\n- **Geographic Focus**: Wirral, Merseyside\n- **Established**: 1955 (Trust Deed dated 9 July 1955, amended 18 August 2019)", + "charityNumber": "219907", + "areaOfOperation": "Wirral", + "expenditure": "106813", + "website": "https://register-of-charities.charitycommission.gov.uk/charity-search/-/charity-details/219907", + "phone": "1516081621", + "email": "steven.greenall@ntlworld.com", + "address": "31 Linkside, WIRRAL, Merseyside, CH63 5PE", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "", + "grant_range": "", + "funding_model": "" + } + }, + { + "name": "A J Bell Trust", + "link": "https://www.hinchilla.com/funder-directory/a-j-bell-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "A J H Ashby Will Trust", + "link": "https://www.hinchilla.com/funder-directory/a-j-h-ashby-will-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "A P Taylor Trust", + "link": "https://www.hinchilla.com/funder-directory/a-p-taylor-trust", + "philea_info": { + "About": "Established from the estate of Albert Palmer Taylor and founded on 16th July 1969, the A P Taylor Trust is a grant-making charity (registered number 260741) that serves the inhabitants of Hayes and Harlington. With annual expenditure of approximately £131,111 (most recent year), the Trust applies its yearly income to improve conditions of life for local residents without distinction of political, religious, or other opinions. The Trust has been supporting the local community for over 50 years through grants to both individuals and organisations for recreational, leisure, and general charitable purposes.", + "Programme Areas": "### Grant Programs\nThe Trust provides grants in the following areas:\n- Individual grants for residents in need\n- Organisational grants for local charities and community groups\n- Support for recreational and leisure activities\n- General charitable purposes\n\n### Priority Areas\n- General Charitable Purposes\n- Health Advancement and Life-Saving Activities\n- Arts, Culture, Heritage, and Science\n- Amateur Sports\n- Children and Youth Services\n- Elderly Support\n- Support for People with Disabilities\n\n### What They Don't Fund\nNo explicit exclusions documented, though funding is strictly limited to beneficiaries within the historic parishes of Hayes and Harlington as they existed on 9 January 1952.", + "Geographic Focus": "Area of Operation: Hillingdon\n\n### Grant Programs\nThe Trust provides grants in the following areas:\n- Individual grants for residents in need\n- Organisational grants for local charities and community groups\n- Support for recreational and leisure activities\n- General charitable purposes\n\n### Priority Areas\n- General Charitable Purposes\n- Health Advancement and Life-Saving Activities\n- Arts, Culture, Heritage, and Science\n- Amateur Sports\n- Children and Youth Services\n- Elderly Support\n- Support for People with Disabilities\n\n### What They Don't Fund\nNo explicit exclusions documented, though funding is strictly limited to beneficiaries within the historic parishes of Hayes and Harlington as they existed on 9 January 1952.\n\n- **Annual Giving**: £131,111 (most recent year)\n- **Success Rate**: Not available\n- **Decision Time**: 3-4 months (January deadline, May distribution)\n- **Grant Range**: Not specified\n- **Geographic Focus**: Hayes and Harlington parishes (as existed on 9 January 1952)", + "charityNumber": "260741", + "areaOfOperation": "Hillingdon", + "expenditure": "131111", + "website": "https://www.aptaylortrust.org.uk", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£131,111 (most recent year)", + "success_rate": "Not available", + "decision_time": "3-4 months (January deadline, May distribution)", + "grant_range": "Not specified", + "funding_model": "" + } + }, + { + "name": "A S Hornby Educational Trust Cio", + "link": "https://www.hinchilla.com/funder-directory/a-s-hornby-educational-trust-cio", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "A W Charitable Trust", + "link": "https://www.hinchilla.com/funder-directory/a-w-charitable-trust", + "philea_info": { + "About": "The A W Charitable Trust was established in October 1981 and is registered with the Charity Commission for England and Wales. With total income of £27.6 million in the financial year ending June 2024 (comprising £10 million in donations and legacies plus £17.6 million from investments), the trust is a substantial grant-making foundation focused specifically on the Orthodox Jewish community. The charity spent £5.57 million on charitable activities in 2024, maintaining a strong charitable spending ratio of 95.11%. The trust operates primarily through investment income and makes grants to institutions supporting the needy and those furthering Orthodox Jewish religion and education. The foundation is governed by three trustees who receive no remuneration for their service, with one or more trustees also serving as directors of subsidiary organisations.", + "Programme Areas": "#### Grant Programs\nThe A W Charitable Trust operates a single grant-making program focused on:\n- Institutions supporting the needy within the Orthodox Jewish community\n- Organisations furthering Orthodox Jewish religion\n- Organisations furthering Orthodox Jewish education\n\nSpecific grant amounts are not publicly disclosed, and grants are awarded at the trustees' absolute discretion.\n\n#### Priority Areas\n- **Orthodox Jewish Education**: Support for educational institutions and programs advancing Orthodox Jewish learning\n- **Orthodox Jewish Religious Activities**: Support for synagogues, religious institutions, and religious education\n- **Poverty Prevention and Relief**: Assistance to those in need within the Orthodox Jewish community\n- **Medical Research**: Some support for medical research initiatives\n- **Support for Children, Young People, and Elderly**: Programs benefiting these age groups within the community\n- **Overseas Aid**: International charitable work aligned with the trust's mission\n\n#### Geographic Focus\nThe trust operates in specific locations:\n- Manchester City\n- Salford City \n- Gateshead\n- Greater London\n\nThe charity also operates outside England and Wales, with a focus on Europe-United Kingdom.\n\n#### What They Don't Fund\nWhile not explicitly stated, the trust's charitable objects are limited to:\n- Institutions and causes outside the Orthodox Jewish community (primary focus is Orthodox Jewish institutions)\n- Individual applications (grants made to institutions, not individuals)\n- General secular education not connected to Orthodox Jewish learning", + "Geographic Focus": "Area of Operation: City of London, Gateshead, London, Salford\n\n#### Grant Programs\nThe A W Charitable Trust operates a single grant-making program focused on:\n- Institutions supporting the needy within the Orthodox Jewish community\n- Organisations furthering Orthodox Jewish religion\n- Organisations furthering Orthodox Jewish education\n\nSpecific grant amounts are not publicly disclosed, and grants are awarded at the trustees' absolute discretion.\n\n#### Priority Areas\n- **Orthodox Jewish Education**: Support for educational institutions and programs advancing Orthodox Jewish learning\n- **Orthodox Jewish Religious Activities**: Support for synagogues, religious institutions, and religious education\n- **Poverty Prevention and Relief**: Assistance to those in need within the Orthodox Jewish community\n- **Medical Research**: Some support for medical research initiatives\n- **Support for Children, Young People, and Elderly**: Programs benefiting these age groups within the community\n- **Overseas Aid**: International charitable work aligned with the trust's mission\n\n#### Geographic Focus\nThe trust operates in specific locations:\n- Manchester City\n- Salford City \n- Gateshead\n- Greater London\n\nThe charity also operates outside England and Wales, with a focus on Europe-United Kingdom.\n\n#### What They Don't Fund\nWhile not explicitly stated, the trust's charitable objects are limited to:\n- Institutions and causes outside the Orthodox Jewish community (primary focus is Orthodox Jewish institutions)\n- Individual applications (grants made to institutions, not individuals)\n- General secular education not connected to Orthodox Jewish learning\n\n- **Registered Charity Number**: 283322\n- **Annual Giving**: £5,570,000 (charitable activities, year ending 30 June 2024)\n- **Total Income**: £27,571,770 (2024)\n- **Decision Time**: Not publicly disclosed\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: Manchester, Salford, Gateshead, and Greater London", + "charityNumber": "283322", + "areaOfOperation": "City of London, Gateshead, London, Salford", + "expenditure": "5570000", + "website": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=283322&subid=0", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£5,570,000 (charitable activities, year ending 30 June 2024)", + "success_rate": "", + "decision_time": "Not publicly disclosed", + "grant_range": "Not publicly disclosed", + "funding_model": "" + } + }, + { + "name": "A Z H R CHARITABLE TRUST", + "link": "https://www.hinchilla.com/funder-directory/a-z-h-r-charitable-trust", + "philea_info": { + "About": "The A Z H R CHARITABLE TRUST is a private charitable trust registered with the UK Charity Commission since its establishment. Operating with just 2 trustees who receive no remuneration, the trust distributed £163,370 in grants during the financial year ending April 24, 2025, from a total income of £164,000. The charity operates throughout London, making grants to organisations that align with its four core charitable purposes: relief of poverty, advancement of education, advancement of religion, and other charitable purposes beneficial to the community. The trust operates without trading subsidiaries and maintains a streamlined governance structure focused on grant distribution.", + "Programme Areas": "### Grant Programs\nSpecific grant programs and award amounts are not publicly disclosed. The trust operates through trustee-discretion grants rather than formal, named grant programmes.\n\n### Priority Areas\nThe charity supports work in four main areas:\n\n**Relief of Poverty**\n- Direct payments to needy individuals who satisfy the trustees of their poverty\n- Support for organisations addressing poverty and deprivation\n\n**Advancement of Education**\n- Educational initiatives and institutions\n- Educational programmes benefiting the community\n\n**Advancement of Religion**\n- Religious organisations and activities\n- Faith-based community work\n\n**Other Charitable Purposes**\n- Any other charitable purposes beneficial to the community within London\n\n### What They Don't Fund\nSpecific exclusions are not publicly documented. As the trust operates throughout London, projects outside this geographic area are unlikely to be considered.", + "Geographic Focus": "Area of Operation: London\n\n### Grant Programs\nSpecific grant programs and award amounts are not publicly disclosed. The trust operates through trustee-discretion grants rather than formal, named grant programmes.\n\n### Priority Areas\nThe charity supports work in four main areas:\n\n**Relief of Poverty**\n- Direct payments to needy individuals who satisfy the trustees of their poverty\n- Support for organisations addressing poverty and deprivation\n\n**Advancement of Education**\n- Educational initiatives and institutions\n- Educational programmes benefiting the community\n\n**Advancement of Religion**\n- Religious organisations and activities\n- Faith-based community work\n\n**Other Charitable Purposes**\n- Any other charitable purposes beneficial to the community within London\n\n### What They Don't Fund\nSpecific exclusions are not publicly documented. As the trust operates throughout London, projects outside this geographic area are unlikely to be considered.\n\n- **Registered Charity Number**: 280953\n- **Annual Giving**: £163,370 (2025)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly available\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: London", + "charityNumber": "280953", + "areaOfOperation": "London", + "expenditure": "163370", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£163,370 (2025)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly available", + "grant_range": "Not publicly disclosed", + "funding_model": "" + } + }, + { + "name": "A G Leventis Foundation", + "link": "https://www.hinchilla.com/funder-directory/a-g-leventis-foundation", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "Abo Trust", + "link": "https://www.hinchilla.com/funder-directory/abo-trust", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "ACACIA CHARITABLE TRUST", + "link": "https://www.hinchilla.com/funder-directory/acacia-charitable-trust", + "philea_info": { + "About": "The Acacia Charitable Trust is a private grant-making trust established in 1977 (Charity Number 274275) that distributes funds to charitable organisations at the complete discretion of its trustees. Operating for over 45 years, the trust maintains a traditional discretionary grant-making approach without a public application process. With annual expenditure of approximately £95,948 (2024), the trust operates through its three trustees: Angela Gillian Rubens (appointed 1977), Paul Harry Rubens (appointed 2009), and Simon Alexander Rubens (appointed 1990). The trust is administered through H W Fisher & Company, a prominent London-based chartered accountancy firm specialising in charity sector services.", + "Programme Areas": "### Grant Programs\nThe trust operates a single discretionary grant-making programme with no specified funding tiers or formal application deadlines. All grants are made at the trustees' absolute discretion to charitable organisations.\n\n### Priority Areas\nThe trust's charitable objects allow for general charitable purposes throughout England and Wales. Specific funding priorities are not publicly disclosed and appear to be determined on a case-by-case basis by the trustees.\n\n### What They Don't Fund\nNo specific exclusions are publicly stated, though funding is limited to registered charitable organisations.", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\nThe trust operates a single discretionary grant-making programme with no specified funding tiers or formal application deadlines. All grants are made at the trustees' absolute discretion to charitable organisations.\n\n### Priority Areas\nThe trust's charitable objects allow for general charitable purposes throughout England and Wales. Specific funding priorities are not publicly disclosed and appear to be determined on a case-by-case basis by the trustees.\n\n### What They Don't Fund\nNo specific exclusions are publicly stated, though funding is limited to registered charitable organisations.\n\n- **Annual Giving**: £95,948 (2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: At trustees' discretion\n- **Grant Range**: Not publicly specified\n- **Geographic Focus**: England and Wales", + "charityNumber": "274275", + "areaOfOperation": "England, Wales", + "expenditure": "95948", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£95,948 (2024)", + "success_rate": "Not publicly available", + "decision_time": "At trustees' discretion", + "grant_range": "Not publicly specified", + "funding_model": "" + } + }, + { + "name": "Academie du Vin Foundation", + "link": "https://www.hinchilla.com/funder-directory/academie-du-vin-foundation", + "philea_info": { + "About": "The Academie du Vin Foundation, operating publicly as the IWSC Foundation, is a UK registered charity (CIO number 1180436) established in October 2018. With an annual income of £402,060 and expenditure of £281,025 (financial year ending March 2024), the Foundation serves as the charitable arm of the International Wine & Spirit Competition (IWSC). The Foundation advances education for persons over age 16 through providing access to training, education, and work experience in wine and spirits, viniculture, horticulture, and sustainable agriculture. Additionally, it provides relief of poverty and sickness, particularly for those who have worked in the alcoholic beverage industry, including those affected by alcoholism and alcohol-related diseases. The IWSC is owned by The Conversion Group, which includes Club Oenologique, Fine + Rare, The Whisky Lounge, and Academie du Vin, providing access to a wider community of experts.", + "Programme Areas": "### Grant Programs\n\n**Master of Wine (MW) Scholarships**: £5,000 per scholarship\n- Typically 2-10 scholarships awarded annually to support candidates through their MW studies\n- Application requires an 800-word article on a wine-related theme (e.g., \"a person, place or drink that helped ignite their passion for wine\" or \"a love letter to wine\")\n- Winners have their articles published online by Club Oenologique\n- Awarded annually since 2018\n\n**WSET Scholarships**: Amount varies\n- Annual scholarship to support students furthering their wine education with the Wine & Spirit Education Trust\n- Specific amounts not publicly disclosed\n\n**Emerging Talent Awards**: £2,500 travel bursary per winner\n- Six awards annually covering different categories:\n - Emerging Talent in Wine\n - Emerging Talent in Wine Hospitality\n - Emerging Talent in Spirits\n - Emerging Talent in Spirits Communication\n - Additional categories (specific names vary by year)\n- Open to all ages and professions within the drinks trade\n- Designed for new and exciting voices within the industry\n- Bursaries must be used for educational purposes, such as travel to wine regions, educational trips, or new educational courses\n\n### Priority Areas\n\n- Wine and spirits education and professional development\n- Support for industry professionals pursuing advanced qualifications (MW, WSET, ASI)\n- Emerging talent development across wine and spirits sectors\n- Industry workers facing poverty or sickness, particularly related to alcoholism and alcohol-related diseases\n- Viniculture, horticulture, and sustainable agriculture education\n\n### What They Don't Fund\n\n- Personal or non-career-related activities (for Emerging Talent bursaries)\n- Individuals under 16 years of age\n- Education outside wine and spirits sectorse:", + "Geographic Focus": "Area of Operation: Argentina, Australia, Brazil, Canada, Chile, China, France, Germany, Italy, New Zealand, Portugal, South Africa, Spain, United States, England, Northern Ireland, Scotland, Wales\n\n### Grant Programs\n\n**Master of Wine (MW) Scholarships**: £5,000 per scholarship\n- Typically 2-10 scholarships awarded annually to support candidates through their MW studies\n- Application requires an 800-word article on a wine-related theme (e.g., \"a person, place or drink that helped ignite their passion for wine\" or \"a love letter to wine\")\n- Winners have their articles published online by Club Oenologique\n- Awarded annually since 2018\n\n**WSET Scholarships**: Amount varies\n- Annual scholarship to support students furthering their wine education with the Wine & Spirit Education Trust\n- Specific amounts not publicly disclosed\n\n**Emerging Talent Awards**: £2,500 travel bursary per winner\n- Six awards annually covering different categories:\n - Emerging Talent in Wine\n - Emerging Talent in Wine Hospitality\n - Emerging Talent in Spirits\n - Emerging Talent in Spirits Communication\n - Additional categories (specific names vary by year)\n- Open to all ages and professions within the drinks trade\n- Designed for new and exciting voices within the industry\n- Bursaries must be used for educational purposes, such as travel to wine regions, educational trips, or new educational courses\n\n### Priority Areas\n\n- Wine and spirits education and professional development\n- Support for industry professionals pursuing advanced qualifications (MW, WSET, ASI)\n- Emerging talent development across wine and spirits sectors\n- Industry workers facing poverty or sickness, particularly related to alcoholism and alcohol-related diseases\n- Viniculture, horticulture, and sustainable agriculture education\n\n### What They Don't Fund\n\n- Personal or non-career-related activities (for Emerging Talent bursaries)\n- Individuals under 16 years of age\n- Education outside wine and spirits sectorse:\n\n- **Annual Giving**: £281,025 (2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly specified\n- **Grant Range**: £2,500 - £5,000 (individual scholarships and bursaries)\n- **Geographic Focus**: International (primarily UK-based with global reach)\n- **Total Income**: £402,060 (2024)", + "charityNumber": "1180436", + "areaOfOperation": "Argentina, Australia, Brazil, Canada, Chile, China, France, Germany, Italy, New Zealand, Portugal, South Africa, Spain, United States, England, Northern Ireland, Scotland, Wales", + "expenditure": "281025", + "website": "https://www.iwsc.net", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£281,025 (2024)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly specified", + "grant_range": "£2,500 - £5,000 (individual scholarships and bursaries)", + "funding_model": "" + } + }, + { + "name": "Academy Of Medical Sciences", + "link": "https://www.hinchilla.com/funder-directory/academy-of-medical-sciences", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "Access The Foundation For Social Investment", + "link": "https://www.hinchilla.com/funder-directory/access-the-foundation-for-social-investment", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "ACE Africa (UK)", + "link": "https://www.hinchilla.com/funder-directory/ace-africa-uk", + "philea_info": { + "About": "ACE Africa (UK) was established in 2005 as a UK-registered grant-making charity that supports ACE Africa Kenya (founded 2003) and ACE Africa Tanzania (founded 2008). With total income of £674,983 for the financial year ending December 2024, the charity operates as a fundraising and grant distribution organisation, channelling £541,466 in charitable expenditure to its partner organisations in East Africa. The charity's mission focuses on building resilient, inclusive communities by improving food and economic security, health, and education through sustainable, long-term solutions. ACE Africa works with vulnerable and marginalised people in low-resource settings across Western and Coastal regions of Kenya and the Arusha, Kilimanjaro, and Mwanza regions of Tanzania. Since 2003, ACE Africa has provided services to over 2 million people, particularly women, young people, and children in rural areas. The organisation employs 3 staff in the UK.", + "Programme Areas": "#### Grant Programs\n\nACE Africa (UK) makes grants exclusively to ACE Africa Kenya and ACE Africa Tanzania to support their programming work. The charity also manages grants on behalf of other donors who wish to support these organisations. Grants support three core programming areas:\n\n- **Child Development**: Supporting vulnerable children and young people\n- **Community Health**: Improving health outcomes in rural communities \n- **Community Livelihoods**: Enhancing food security and economic opportunities\n\n#### Priority Areas\n\n- Education and training for children and young people\n- Advancement of health in rural communities\n- Prevention and relief of poverty\n- Overseas aid and development\n- Economic and community development\n- Support for elderly people and vulnerable populations\n\n#### What They Don't Fund\n\nACE Africa (UK) does not make grants to organisations outside of the ACE Africa network. All funding is directed to ACE Africa Kenya and ACE Africa Tanzania.", + "Geographic Focus": "Area of Operation: Kenya, Tanzania\n\n#### Grant Programs\n\nACE Africa (UK) makes grants exclusively to ACE Africa Kenya and ACE Africa Tanzania to support their programming work. The charity also manages grants on behalf of other donors who wish to support these organisations. Grants support three core programming areas:\n\n- **Child Development**: Supporting vulnerable children and young people\n- **Community Health**: Improving health outcomes in rural communities \n- **Community Livelihoods**: Enhancing food security and economic opportunities\n\n#### Priority Areas\n\n- Education and training for children and young people\n- Advancement of health in rural communities\n- Prevention and relief of poverty\n- Overseas aid and development\n- Economic and community development\n- Support for elderly people and vulnerable populations\n\n#### What They Don't Fund\n\nACE Africa (UK) does not make grants to organisations outside of the ACE Africa network. All funding is directed to ACE Africa Kenya and ACE Africa Tanzania.\n\n- **Annual Giving**: £541,466 (financial year ending December 2024)\n- **Success Rate**: Not applicable (invitation only)\n- **Decision Time**: Not applicable\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: Kenya and Tanzania", + "charityNumber": "1111283", + "areaOfOperation": "Kenya, Tanzania", + "expenditure": "541466", + "website": "https://www.ace-africa.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£541,466 (financial year ending December 2024)", + "success_rate": "Not applicable (invitation only)", + "decision_time": "Not applicable", + "grant_range": "Not publicly disclosed", + "funding_model": "" + } + }, + { + "name": "Achisomoch Aid Company Limited", + "link": "https://www.hinchilla.com/funder-directory/achisomoch-aid-company-limited", + "philea_info": { + "About": "Achisomoch Aid Company Limited, founded in 1979 by Yitzchok Katz, operates the UK's largest donor-advised fund serving the Jewish community. The organisation's primary function is to help individuals and companies make tax-efficient charitable donations. Account holders have directed substantial sums to Jewish schools, yeshivot, and educational institutions through the platform, with facilitated giving exceeding £50 million in recent years.\n\nHowever, AAC also functions as a grant maker from its own operational profits. Since its inception, AAC has maintained a policy of donating 100% of its operational surpluses to UK-based Jewish educational institutions. These distributions, typically totalling approximately £850,000-£900,000, are made twice a year at Pesach and Rosh Hashanah to Jewish schools in London and Gateshead Yeshivah.", + "Programme Areas": "### Grant Programmes from AAC's Own Funds\n\n**Bi-Annual Educational Support Distributions**\n- Approximately £850,000 - £900,000 total from operational profits\n- Pesach Distribution: Typically over £400,000\n- Rosh Hashanah Distribution: Remaining balance\n- Trustee discretion - no application process\n- Focus: Jewish schools in London and Gateshead Yeshivah\n\n### Priority Areas\n- Jewish educational institutions (primary and secondary schools)\n- Yeshivot (traditional Jewish educational institutions)\n- Orthodox Jewish education and religious instruction", + "Geographic Focus": "Area of Operation: Argentina, Belgium, Canada, France, Germany, Israel, Italy, Lithuania, Monaco, Russia, South Africa, United States, England, Wales\n\n### Grant Programmes from AAC's Own Funds\n\n**Bi-Annual Educational Support Distributions**\n- Approximately £850,000 - £900,000 total from operational profits\n- Pesach Distribution: Typically over £400,000\n- Rosh Hashanah Distribution: Remaining balance\n- Trustee discretion - no application process\n- Focus: Jewish schools in London and Gateshead Yeshivah\n\n### Priority Areas\n- Jewish educational institutions (primary and secondary schools)\n- Yeshivot (traditional Jewish educational institutions)\n- Orthodox Jewish education and religious instruction\n\n- **Charity Number**: 278387\n- **Founded**: 1979\n- **Total Income**: Fluctuates (exceeded £71 million in recent years)\n- **AAC's Own Annual Grants**: Approximately £850,000 - £900,000 from operational profits\n- **Facilitated Giving**: Exceeded £50 million in recent years\n- **Geographic Focus**: UK (primarily London Jewish community)\n- **Grant Distribution**: Twice yearly (Pesach and Rosh Hashanah)", + "charityNumber": "278387", + "areaOfOperation": "Argentina, Belgium, Canada, France, Germany, Israel, Italy, Lithuania, Monaco, Russia, South Africa, United States, England, Wales", + "expenditure": null, + "website": "https://achisomoch.org/", + "phone": "2087318988", + "email": "admin@achisomoch.org", + "address": "COHEN ARNOLD, NEW BURLINGTON HOUSE, 1075 FINCHLEY ROAD, LONDON, NW11 0PU", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "", + "grant_range": "", + "funding_model": "" + } + }, + { + "name": "ACTACC", + "link": "https://www.hinchilla.com/funder-directory/actacc", + "philea_info": { + "About": "ACTACC (Association for Cardiothoracic Anaesthesia and Critical Care) is a UK registered charity founded to promote the highest standard of management and care for patients suffering from cardiothoracic disorders. With an annual expenditure of £96,024 (2024 financial year) and total income of £124,527, the charity focuses on advancing cardiothoracic anaesthesia through education, research, and professional development. The organisation is governed by 9 trustees, with no paid staff receiving benefits over £60,000. ACTACC's mission encompasses holding regular meetings, encouraging presentation of original research, fostering national and international links with like-minded groups, being active in training future cardiothoracic anaesthetists, representing the views of cardiothoracic anaesthetists, and awarding educational and research grants.", + "Programme Areas": "### Grant Programmes\n\n**Bill Pallister Travelling Fellowship**: £5,000 annually (rolling deadline: 31st December each year)\n- Funded through a bequest from Dr Pallister\n- Supports travel to overseas centres of excellence\n- Intended for trainees or consultants within three years of appointment\n\n**Joint Research Grant (VASGBI & ACTACC)**: Up to £70,000 (coordinated by NIAA)\n- Jointly funded with the Vascular Anaesthesia Society of Great Britain & Ireland\n- Administered through ScholarOne application portal\n- Typically participates in the second funding round each year\n- Supports research projects aligned with both organisations' strategies\n\n### Priority Areas\n\n- Cardiothoracic anaesthesia research and innovation\n- Cardiac intensive care and resuscitation\n- Professional development through overseas clinical observerships\n- Projects demonstrating benefit to wider ACTACC membership\n- Research addressing cardiothoracic perioperative care priorities identified by the James Lind Alliance/NIAA Priority Setting Partnership\n\n### What They Don't Fund\n\n- Training courses (e.g., transoesophageal echo courses) unless clear benefit to wider membership\n- Conference attendance unless clear benefit to wider membership\n- Projects not aligned with cardiothoracic anaesthesia or cardiac intensive care focuse:", + "Geographic Focus": "Area of Operation: England, Northern Ireland, Scotland, Wales\n\n### Grant Programmes\n\n**Bill Pallister Travelling Fellowship**: £5,000 annually (rolling deadline: 31st December each year)\n- Funded through a bequest from Dr Pallister\n- Supports travel to overseas centres of excellence\n- Intended for trainees or consultants within three years of appointment\n\n**Joint Research Grant (VASGBI & ACTACC)**: Up to £70,000 (coordinated by NIAA)\n- Jointly funded with the Vascular Anaesthesia Society of Great Britain & Ireland\n- Administered through ScholarOne application portal\n- Typically participates in the second funding round each year\n- Supports research projects aligned with both organisations' strategies\n\n### Priority Areas\n\n- Cardiothoracic anaesthesia research and innovation\n- Cardiac intensive care and resuscitation\n- Professional development through overseas clinical observerships\n- Projects demonstrating benefit to wider ACTACC membership\n- Research addressing cardiothoracic perioperative care priorities identified by the James Lind Alliance/NIAA Priority Setting Partnership\n\n### What They Don't Fund\n\n- Training courses (e.g., transoesophageal echo courses) unless clear benefit to wider membership\n- Conference attendance unless clear benefit to wider membership\n- Projects not aligned with cardiothoracic anaesthesia or cardiac intensive care focuse:\n\n- **Annual Giving**: £96,024 (2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Applications adjudicated by Education Committee; announcements at Spring Scientific Meeting\n- **Grant Range**: £5,000 - £70,000\n- **Geographic Focus**: UK-based, with international collaboration opportunities", + "charityNumber": "1098009", + "areaOfOperation": "England, Northern Ireland, Scotland, Wales", + "expenditure": "96024", + "website": "https://www.actacc.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£96,024 (2024)", + "success_rate": "Not publicly available", + "decision_time": "Applications adjudicated by Education Committee; announcements at Spring Scientific Meeting", + "grant_range": "£5,000 - £70,000", + "funding_model": "" + } + }, + { + "name": "ACTION FOR A-T", + "link": "https://www.hinchilla.com/funder-directory/action-for-a-t", + "philea_info": { + "About": "Action for A-T was founded in January 2012 by parents Emily and Toby Read following their daughter's diagnosis with Ataxia-Telangiectasia (A-T), a rare, life-limiting genetic condition affecting the brain. Since inception, the charity has invested over £5.7 million in 60 pioneering research projects across the globe, becoming the leading charitable funder of A-T medical research in the UK. The organisation's singular mission is to identify and fund high-quality peer-reviewed medical research into finding a cure or treatments that delay or prevent the disabling effects of A-T. Action for A-T is a member of the Association of Medical Research Charities (AMRC) and has been awarded a best practice certificate for peer review and research management. In 2024, the charity formed international collaborative partnerships with BrAshA-T (Australia) and AEFAT (Spain), jointly funding £1.3 million in new research studies.", + "Programme Areas": "### Grant Programs\n\n**Project Grants (with Action Medical Research)**\n- **Amount**: Up to £250,000\n- **Duration**: Up to 3 years\n- **Eligible Costs**: Research post, consumables, and essential equipment\n- **Application Schedule**: Fixed deadlines (typically annual)\n- **Eligibility**: Projects must be led by research-active professionals based at universities, hospitals or research institutes in any country\n- **Focus**: Translational medical research with potential to treat or enable medical interventions for A-T in childhood\n- **Not Funded**: Further education (MSc/PhD), course fees, or indirect costs\n\n**Collaborative International Funding**\n- Joint funding opportunities with BrAshA-T (Australia) and AEFAT (Spain)\n- £1.3 million committed to five new research studies in 2024\n- Projects based in UK, Netherlands, USA, Spain, and other countries\n\n### Priority Areas\n\nAction for A-T funds research that has potential to benefit A-T patients, with recent focus on:\n\n- Gene therapy and CRISPR/Cas genome editing approaches\n- Nucleic acid-based interventions targeting biological pathways\n- Drug repurposing and identification of existing therapeutics\n- Biomarker development for early diagnosis and monitoring\n- Immune system function in A-T patients\n- Cancer treatment improvements for A-T patients\n- Assistive technology and quality of life interventions\n- Natural history studies and clinical outcome measures\n\nResearch must be high-quality, peer-reviewed, and demonstrate a clear translational path to patient benefit.\n\n### What They Don't Fund\n\n- Further education including MSc/PhD programs\n- Course fees\n- Indirect costs\n- Basic research without clear translational potential to A-T patientse:", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\n\n**Project Grants (with Action Medical Research)**\n- **Amount**: Up to £250,000\n- **Duration**: Up to 3 years\n- **Eligible Costs**: Research post, consumables, and essential equipment\n- **Application Schedule**: Fixed deadlines (typically annual)\n- **Eligibility**: Projects must be led by research-active professionals based at universities, hospitals or research institutes in any country\n- **Focus**: Translational medical research with potential to treat or enable medical interventions for A-T in childhood\n- **Not Funded**: Further education (MSc/PhD), course fees, or indirect costs\n\n**Collaborative International Funding**\n- Joint funding opportunities with BrAshA-T (Australia) and AEFAT (Spain)\n- £1.3 million committed to five new research studies in 2024\n- Projects based in UK, Netherlands, USA, Spain, and other countries\n\n### Priority Areas\n\nAction for A-T funds research that has potential to benefit A-T patients, with recent focus on:\n\n- Gene therapy and CRISPR/Cas genome editing approaches\n- Nucleic acid-based interventions targeting biological pathways\n- Drug repurposing and identification of existing therapeutics\n- Biomarker development for early diagnosis and monitoring\n- Immune system function in A-T patients\n- Cancer treatment improvements for A-T patients\n- Assistive technology and quality of life interventions\n- Natural history studies and clinical outcome measures\n\nResearch must be high-quality, peer-reviewed, and demonstrate a clear translational path to patient benefit.\n\n### What They Don't Fund\n\n- Further education including MSc/PhD programs\n- Course fees\n- Indirect costs\n- Basic research without clear translational potential to A-T patientse:\n\n- **Annual Giving**: Not publicly available\n- **Total Invested Since 2012**: £5,700,000+\n- **Grant Range**: Up to £250,000\n- **Grant Duration**: Up to 3 years\n- **Geographic Focus**: International (UK-based, funding globally)\n- **Research Projects**: 60 total (19 ongoing, 41 completed)", + "charityNumber": "1145303", + "areaOfOperation": "England, Wales", + "expenditure": null, + "website": "https://www.actionforAT.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "Not publicly available", + "success_rate": "", + "decision_time": "", + "grant_range": "Up to £250,000", + "funding_model": "" + } + }, + { + "name": "ACTION FOR SUSTAINABLE COMMUNITIES FOUNDATION", + "link": "https://www.hinchilla.com/funder-directory/action-for-sustainable-communities-foundation", + "philea_info": { + "About": "", + "Programme Areas": "- **Health**: Health clinics in remote areas, health programs, and clean water provision\n- **Environment**: Preservation, conservation and protection of the environment, biodiversity enhancement and conservation practices\n- **Education**: Building schools, language and computer courses, equal access for girls\n- **Economic Development**: Sustainable means of economic growth and regeneration, skills for self-sufficiency including sustainable farming, sewing, and computer literacy\n- **Poverty Relief**: Improvement of conditions of life in socially and economically disadvantaged communities\n\n\n### What They Don't Fund\n\nInformation not publicly available", + "Geographic Focus": "Area of Operation: France, Malawi, Sri Lanka, England, Wales\n\n- **Health**: Health clinics in remote areas, health programs, and clean water provision\n- **Environment**: Preservation, conservation and protection of the environment, biodiversity enhancement and conservation practices\n- **Education**: Building schools, language and computer courses, equal access for girls\n- **Economic Development**: Sustainable means of economic growth and regeneration, skills for self-sufficiency including sustainable farming, sewing, and computer literacy\n- **Poverty Relief**: Improvement of conditions of life in socially and economically disadvantaged communities\n\n\n### What They Don't Fund\n\nInformation not publicly available\n\n| Metric | Value |\n|--------|-------|\n| Annual Giving | £39,264 (2024) |\n| Grant Range | Not publicly specified |\n| Average Grant | Not publicly specified |\n| Application Method | Invitation Only / No Public Application Process |\n| Geographic Focus | Europe, Africa, Asia |", + "charityNumber": "1193197", + "areaOfOperation": "France, Malawi, Sri Lanka, England, Wales", + "expenditure": "39264", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£39,264 (2024)", + "success_rate": "", + "decision_time": "", + "grant_range": "Not publicly specified", + "funding_model": "Invitation Only / No Public Application Process" + } + }, + { + "name": "ACTION MEDICAL RESEARCH", + "link": "https://www.hinchilla.com/funder-directory/action-medical-research", + "philea_info": { + "About": "Founded in 1952 by Duncan Guthrie following his daughter's polio diagnosis, Action Medical Research (charity number 208701) has grown into the UK's leading charity dedicated to funding vital research to help sick and disabled babies, children and young people. Over 70 years, the charity has invested over £137 million in medical breakthroughs, including pioneering the first oral polio vaccine, developing ultrasound scanning in pregnancy, and fighting meningitis. With total income of £8.18 million (2024), the organisation currently has over £11 million invested in the work of 190 top researchers working on 55 projects across the UK. The charity prides itself on funding innovative, high-standard research validated through rigorous peer review, with emphasis on clinical research or research at the interface between clinical and basic science that can be translated into clinical solutions in the short to medium term.", + "Programme Areas": "### Grant Programs\n\n**Project Grants**: Up to £200,000 for up to 36 months\n- Application method: Two-stage process (outline followed by invited full applications)\n- Fixed annual deadlines\n- Around 10 projects funded per round\n\n**Co-Funded Programmes**:\n- **Action LifeArc Joint Call**: Up to £200,000\n- **Action DEBRA UK**: Up to £200,000 for epidermolysis bullosa research\n- **Action Borne**: Up to £250,000 for stillbirth and premature birth research\n- **Action Cystic Fibrosis Trust**: Up to £200,000 for cystic fibrosis research\n\n### Priority Areas\n\nAction Medical Research funds research across the breadth of child health, including:\n- Clinical research with short to medium-term translational potential\n- Problems affecting pregnancy, childbirth, babies, children and young people\n- Medical engineering (equipment and techniques for improved diagnosis, therapy and assistive technology)\n- Brain injury and neuroprotection\n- Cancer (particularly brain tumours)\n- Rare diseases\n- Preterm birth prevention\n- Epilepsy and autism\n- Life-threatening infections\n- Cystic fibrosis\n- Heart conditions\n- Asthma\n\nApplicants welcomed from: medical graduates, clinicians, bioengineers, research nurses, physiotherapists and allied health professionals.\n\n### What They Don't Fund\n\n**Educational and Administrative Costs**:\n- Higher education course fees (though Research Training Fellows may independently register for PhDs)\n- Course fees for degrees, subsistence costs, or apprenticeship levy\n- Indirect costs including administrative or institutional overheads\n- Conference attendance costs (separate applications accepted for current grantholders)\n- Advertising, recruitment, or visa costs\n\n**Research Type Exclusions**:\n- Complementary/alternative medicine\n- Very basic research with little likelihood of clinical impact in the short to medium term\n- Human reproductive cloning (illegal in the UK)\n\n**Other Exclusions**:\n- 'Top up' funding for work supported by other funding bodies\n- General appeals from other charities\n- Salary costs for existing salaried positions\n- Standard laboratory equipmente:T6b", + "Geographic Focus": "Area of Operation: England, Northern Ireland, Scotland, Wales\n\n### Grant Programs\n\n**Project Grants**: Up to £200,000 for up to 36 months\n- Application method: Two-stage process (outline followed by invited full applications)\n- Fixed annual deadlines\n- Around 10 projects funded per round\n\n**Co-Funded Programmes**:\n- **Action LifeArc Joint Call**: Up to £200,000\n- **Action DEBRA UK**: Up to £200,000 for epidermolysis bullosa research\n- **Action Borne**: Up to £250,000 for stillbirth and premature birth research\n- **Action Cystic Fibrosis Trust**: Up to £200,000 for cystic fibrosis research\n\n### Priority Areas\n\nAction Medical Research funds research across the breadth of child health, including:\n- Clinical research with short to medium-term translational potential\n- Problems affecting pregnancy, childbirth, babies, children and young people\n- Medical engineering (equipment and techniques for improved diagnosis, therapy and assistive technology)\n- Brain injury and neuroprotection\n- Cancer (particularly brain tumours)\n- Rare diseases\n- Preterm birth prevention\n- Epilepsy and autism\n- Life-threatening infections\n- Cystic fibrosis\n- Heart conditions\n- Asthma\n\nApplicants welcomed from: medical graduates, clinicians, bioengineers, research nurses, physiotherapists and allied health professionals.\n\n### What They Don't Fund\n\n**Educational and Administrative Costs**:\n- Higher education course fees (though Research Training Fellows may independently register for PhDs)\n- Course fees for degrees, subsistence costs, or apprenticeship levy\n- Indirect costs including administrative or institutional overheads\n- Conference attendance costs (separate applications accepted for current grantholders)\n- Advertising, recruitment, or visa costs\n\n**Research Type Exclusions**:\n- Complementary/alternative medicine\n- Very basic research with little likelihood of clinical impact in the short to medium term\n- Human reproductive cloning (illegal in the UK)\n\n**Other Exclusions**:\n- 'Top up' funding for work supported by other funding bodies\n- General appeals from other charities\n- Salary costs for existing salaried positions\n- Standard laboratory equipmente:T6b\n\n- **Annual Giving**: £4.24 million (charitable activities expenditure, 2024)\n- **Success Rate**: 33-40% (for full applications)\n- **Decision Time**: 9-10 months (from outline to award)\n- **Grant Range**: Up to £200,000 (£250,000 for co-funded awards)\n- **Geographic Focus**: UK-wide", + "charityNumber": "208701", + "areaOfOperation": "England, Northern Ireland, Scotland, Wales", + "expenditure": "4240000", + "website": "https://www.action.org.uk", + "phone": "1403210406", + "email": "info@action.org.uk", + "address": "Action Medical Research, 5th Floor, 167-169 Great Portland Street, London, W1W 5PF", + "applicationPortal": "", + "annual_giving": "£4.24 million (charitable activities expenditure, 2024)", + "success_rate": "33-40% (for full applications)", + "decision_time": "9-10 months (from outline to award)", + "grant_range": "Up to £200,000 (£250,000 for co-funded awards)", + "funding_model": "" + } + }, + { + "name": "Action With Communities In Rural England Acre", + "link": "https://www.hinchilla.com/funder-directory/action-with-communities-in-rural-england-acre", + "philea_info": { + "Error": "No sections container in resolved payload" + } + }, + { + "name": "ACTIS ACTS CIO", + "link": "https://www.hinchilla.com/funder-directory/actis-acts-cio", + "philea_info": { + "About": "ACTIS ACTS CIO is the charitable foundation of Actis, a global sustainable infrastructure and private equity investment firm. Launched in 2018 and registered as a UK Charitable Incorporated Organisation (charity number 1176455), the foundation was established to support charitable activities linked to Actis' investee companies, partnerships with charities operating in Actis countries, and local charities nominated by Actis offices. The foundation has committed £1,170,000 across 23 grants to support projects in 21 portfolio companies spanning 13 countries. Actis Acts operates with a broad mandate covering themes including education, gender equality, skills development, entrepreneurship, capacity building, health, environment, financial inclusion, and provision of essential infrastructure, with a focus on leaving positive and sustainable impacts on communities surrounding Actis investments.", + "Programme Areas": "### Grant Programmes\n\nThe foundation operates a single grant programme with three primary funding streams:\n\n1. **Charitable Activities Linked to Actis Investee Companies**: Primary focus area supporting projects connected to companies in Actis's investment portfolio\n2. **Partnerships with Charities in Actis Countries**: Supporting established charities operating in regions where Actis has investments\n3. **Local Charities Nominated by Actis Offices**: Supporting community organisations nominated by Actis's regional offices\n\n**Application Method**: Rolling basis via downloadable application form\n\n### Priority Areas\n\nActis Acts has a broad mandate to provide funding across multiple themes:\n\n- **Education**: Skills development and job readiness training\n- **Gender Equality**: Empowering women and girls\n- **Health**: Community health initiatives and pandemic response\n- **Environment**: Environmental sustainability projects\n- **Financial Inclusion**: Access to financial services for underserved populations\n- **Essential Infrastructure**: Basic services and community facilities\n- **Entrepreneurship**: Business development and capacity building\n- **Community Development**: Supporting marginalised and disadvantaged groups\n\nThe foundation places particular emphasis on projects that:\n- Have clear, measurable outcomes\n- Benefit underserved populations (marginalised groups, youth, women/girls, indigenous people)\n- Demonstrate engagement from Actis investee companies\n- Show potential for scale and sustainability\n- Make unique contributions that wouldn't happen without support\n\n### What They Don't Fund\n\nWhile specific exclusions are not explicitly stated, the foundation's focus on Actis-linked activities suggests limited funding for:\n- Organisations with no connection to Actis operations or investee companies\n- Projects outside regions where Actis operates\n- Individual funding requests\n- Political activities", + "Geographic Focus": "Area of Operation: Brazil, China, Egypt, India, Kenya, Mauritius, Mexico, Morocco, Nigeria, Singapore, South Africa, Tunisia, London\n\n### Grant Programmes\n\nThe foundation operates a single grant programme with three primary funding streams:\n\n1. **Charitable Activities Linked to Actis Investee Companies**: Primary focus area supporting projects connected to companies in Actis's investment portfolio\n2. **Partnerships with Charities in Actis Countries**: Supporting established charities operating in regions where Actis has investments\n3. **Local Charities Nominated by Actis Offices**: Supporting community organisations nominated by Actis's regional offices\n\n**Application Method**: Rolling basis via downloadable application form\n\n### Priority Areas\n\nActis Acts has a broad mandate to provide funding across multiple themes:\n\n- **Education**: Skills development and job readiness training\n- **Gender Equality**: Empowering women and girls\n- **Health**: Community health initiatives and pandemic response\n- **Environment**: Environmental sustainability projects\n- **Financial Inclusion**: Access to financial services for underserved populations\n- **Essential Infrastructure**: Basic services and community facilities\n- **Entrepreneurship**: Business development and capacity building\n- **Community Development**: Supporting marginalised and disadvantaged groups\n\nThe foundation places particular emphasis on projects that:\n- Have clear, measurable outcomes\n- Benefit underserved populations (marginalised groups, youth, women/girls, indigenous people)\n- Demonstrate engagement from Actis investee companies\n- Show potential for scale and sustainability\n- Make unique contributions that wouldn't happen without support\n\n### What They Don't Fund\n\nWhile specific exclusions are not explicitly stated, the foundation's focus on Actis-linked activities suggests limited funding for:\n- Organisations with no connection to Actis operations or investee companies\n- Projects outside regions where Actis operates\n- Individual funding requests\n- Political activities\n\n- **Charity Number**: 1176455\n- **Annual Giving**: £1,170,000 committed (23 grants across 21 portfolio companies)\n- **Geographic Focus**: International (13 countries where Actis operates)\n- **Grant Focus**: Charitable activities linked to Actis investee companies\n- **Application Method**: Rolling basis via application form", + "charityNumber": "1176455", + "areaOfOperation": "Brazil, China, Egypt, India, Kenya, Mauritius, Mexico, Morocco, Nigeria, Singapore, South Africa, Tunisia, London", + "expenditure": "1170000", + "website": "https://www.act.is/people/actis-acts/", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£1,170,000 committed (23 grants across 21 portfolio companies)", + "success_rate": "", + "decision_time": "", + "grant_range": "", + "funding_model": "Rolling basis via application form" + } + }, + { + "name": "ACTIVE CHESHIRE", + "link": "https://www.hinchilla.com/funder-directory/active-cheshire", + "philea_info": { + "About": "Active Cheshire is a registered charity (founded as charity number 701764) serving as the lead Active Partnership for sport and physical activity in the Cheshire sub-region. Commissioned by Sport England as a Systems Partner for 2022-2027, Active Cheshire plays a coordinating role in bringing together local people, organisations, and national sports bodies. The organisation uses local knowledge, influence, and insight to ensure national funding and resources reach places where they will have most impact on participation. While primarily a coordinating body, Active Cheshire manages selected grant programmes in partnership with other funders, including the Active Futures Programme (with Cheshire Community Foundation and the Office of Police and Crime Commissioner) and the Active Minds investment fund. The organisation co-developed the All Together Active strategy launched in October 2022, aiming to help 150,000 inactive residents become more physically active by 2026.", + "Programme Areas": "### Grant Programmes\n\n**Active Futures Programme** (in partnership with Cheshire Community Foundation and Office of Police and Crime Commissioner for Cheshire)\n- Tier 1 Grants: £5,000 - £10,000 (for reaching new groups or expanding existing provision)\n- Tier 2 Grants: £10,001 - £25,000 (for developing new, targeted provision in areas of high need)\n- Focus: Early intervention and diversionary activities for young people at risk of Child Criminal Exploitation and Serious Youth Violence\n- Must engage children and young people aged 0-18 through physical activity or sport\n- Geographic coverage: Cheshire East, Cheshire West & Chester, Warrington, and Halton\n- Annual funding round\n- Application method: Online through Cheshire Community Foundation website\n\n**Active Minds Investment Fund**\n- Total available: £30,000\n- Focus: Improving mental health and quality of life through physical activity\n- Part of the Blueprint to Tackle Physical Inactivity in Cheshire and Warrington\n\n**Movement for Change Fund** (in partnership with Sport England)\n- Supports social entrepreneurs helping marginalised communities access sport and physical activity\n- Includes business and leadership skills development support\n\n**Funding Signposting**: Active Cheshire maintains a comprehensive grant funding opportunities page listing various national and local funding sources for sports and physical activity organisations.\n\n### Priority Areas\n\n- Children and young people's physical activity and sport participation\n- Mental health improvement through physical activity (Active Minds pillar)\n- Early intervention and youth violence prevention\n- Tackling physical inactivity and health inequalities\n- Community sport and grassroots participation\n- Supporting inactive populations, particularly those facing barriers due to gender, race, disability, poverty, sexuality, religion, and parental status\n- Economic and community development through sport\n\n### What They Don't Fund\n\nSpecific exclusions not published, but funding is restricted to:\n- Geographic area: Cheshire East, Cheshire West & Chester, and Warrington (Halton is included in the Active Futures Programme partnership)\n- Must involve physical activity or sport as a component\n- Focus on their strategic pillars and the All Together Active strategy prioritiese:T72", + "Geographic Focus": "Area of Operation: Cheshire East, East and West Buckland, Warrington\n\n### Grant Programmes\n\n**Active Futures Programme** (in partnership with Cheshire Community Foundation and Office of Police and Crime Commissioner for Cheshire)\n- Tier 1 Grants: £5,000 - £10,000 (for reaching new groups or expanding existing provision)\n- Tier 2 Grants: £10,001 - £25,000 (for developing new, targeted provision in areas of high need)\n- Focus: Early intervention and diversionary activities for young people at risk of Child Criminal Exploitation and Serious Youth Violence\n- Must engage children and young people aged 0-18 through physical activity or sport\n- Geographic coverage: Cheshire East, Cheshire West & Chester, Warrington, and Halton\n- Annual funding round\n- Application method: Online through Cheshire Community Foundation website\n\n**Active Minds Investment Fund**\n- Total available: £30,000\n- Focus: Improving mental health and quality of life through physical activity\n- Part of the Blueprint to Tackle Physical Inactivity in Cheshire and Warrington\n\n**Movement for Change Fund** (in partnership with Sport England)\n- Supports social entrepreneurs helping marginalised communities access sport and physical activity\n- Includes business and leadership skills development support\n\n**Funding Signposting**: Active Cheshire maintains a comprehensive grant funding opportunities page listing various national and local funding sources for sports and physical activity organisations.\n\n### Priority Areas\n\n- Children and young people's physical activity and sport participation\n- Mental health improvement through physical activity (Active Minds pillar)\n- Early intervention and youth violence prevention\n- Tackling physical inactivity and health inequalities\n- Community sport and grassroots participation\n- Supporting inactive populations, particularly those facing barriers due to gender, race, disability, poverty, sexuality, religion, and parental status\n- Economic and community development through sport\n\n### What They Don't Fund\n\nSpecific exclusions not published, but funding is restricted to:\n- Geographic area: Cheshire East, Cheshire West & Chester, and Warrington (Halton is included in the Active Futures Programme partnership)\n- Must involve physical activity or sport as a component\n- Focus on their strategic pillars and the All Together Active strategy prioritiese:T72\n\n- **Annual Income**: £908,730 (year ending March 2024)\n- **Grant Range**: £200 - £25,000 (through partnership programmes)\n- **Geographic Focus**: Cheshire East, Cheshire West & Chester, and Warrington\n- **Organisation Type**: Active Partnership (Sport England System Partner 2022-2027)\n- **Charity Number**: 701764", + "charityNumber": "701764", + "areaOfOperation": "Cheshire East, East and West Buckland, Warrington", + "expenditure": null, + "website": "https://www.activecheshire.org", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "", + "grant_range": "£200 - £25,000 (through partnership programmes)", + "funding_model": "" + } + }, + { + "name": "ADAR CHARITABLE TRUST", + "link": "https://www.hinchilla.com/funder-directory/adar-charitable-trust", + "philea_info": { + "About": "The ADAR CHARITABLE TRUST is a private grant-making trust registered with the Charity Commission for England and Wales (charity number 328731) since 24 July 1990. The trust operates as an unincorporated charity controlled by a deed of trust and governed by 2 trustees. For the financial year ending 31 October 2024, the trust had total income of £198,030 and made grants totaling £175,451. The charity's mission focuses on three core areas: advancing education in the Orthodox Jewish faith, promoting the Orthodox Jewish religion, and relieving poverty. The trust maintains a low public profile with no website, limited contact information, and no publicly available information about its grant recipients or distribution strategies.", + "Programme Areas": "### Grant Programs\n\nThe trust does not operate named grant programs but makes grants aligned with its three charitable objects. Specific grant amounts and ranges are not publicly disclosed.\n\n### Priority Areas\n\nBased on the trust's registered charitable objects:\n\n- **Orthodox Jewish Education** - Advancing education in the Orthodox Jewish faith\n- **Religious Activities** - Supporting and promoting the Orthodox Jewish religion\n- **Poverty Relief** - Relieving poverty, particularly within the Orthodox Jewish community\n- **Related Charitable Purposes** - Other charitable purposes determined by trustees to be connected with the above areas\n\n### What They Don't Fund\n\nNot publicly specified, but funding is restricted to the trust's charitable objects relating to Orthodox Jewish education, religion, and poverty relief.", + "Geographic Focus": "Area of Operation: England, Wales\n\n### Grant Programs\n\nThe trust does not operate named grant programs but makes grants aligned with its three charitable objects. Specific grant amounts and ranges are not publicly disclosed.\n\n### Priority Areas\n\nBased on the trust's registered charitable objects:\n\n- **Orthodox Jewish Education** - Advancing education in the Orthodox Jewish faith\n- **Religious Activities** - Supporting and promoting the Orthodox Jewish religion\n- **Poverty Relief** - Relieving poverty, particularly within the Orthodox Jewish community\n- **Related Charitable Purposes** - Other charitable purposes determined by trustees to be connected with the above areas\n\n### What They Don't Fund\n\nNot publicly specified, but funding is restricted to the trust's charitable objects relating to Orthodox Jewish education, religion, and poverty relief.\n\n- **Annual Giving**: £175,451 (FY 2024)\n- **Success Rate**: Not publicly available\n- **Decision Time**: Not publicly available\n- **Grant Range**: Not publicly disclosed\n- **Geographic Focus**: England and Wales\n- **Registration Date**: 24 July 1990", + "charityNumber": "328731", + "areaOfOperation": "England, Wales", + "expenditure": "175451", + "website": "", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£175,451 (FY 2024)", + "success_rate": "Not publicly available", + "decision_time": "Not publicly available", + "grant_range": "Not publicly disclosed", + "funding_model": "" + } + }, + { + "name": "Addenbrooke's Charitable Trust", + "link": "https://www.hinchilla.com/funder-directory/addenbrookes-charitable-trust", + "philea_info": { + "About": "Addenbrooke's Charitable Trust (ACT), registered charity number 1170103, is the only registered charity dedicated to supporting Cambridge University Hospitals NHS Foundation Trust, which includes Addenbrooke's and the Rosie hospitals. With annual income of £13.9 million and charitable expenditure of £3.75 million (2024/25), ACT connects donors with causes that support projects and facilities beyond NHS funding boundaries. The charity focuses on achieving the highest possible standards in patient experience, clinical care, research, and education. Since 1994, ACT has funded major projects including a £1.5 million surgical robot, a £250,000 liver perfusion machine making Addenbrooke's the first UK hospital to routinely use this technology, and £7.5 million towards the Rosie Maternity Hospital extension. In 2024, Charles Packshaw became Chair of Trustees, bringing extensive experience from Prostate Cancer UK and over 30 years in banking. Chief Executive Shelly Thake emphasises ACT's focus on bringing \"firsts to Cambridge that save lives\" and investing in early-career medical professionals.e:Tba", + "Programme Areas": "$e", + "Geographic Focus": "Area of Operation: Botswana, El Salvador, India, Jordan, Kenya, Myanmar, Sierra Leone, Uganda, Zimbabwe, Cambridgeshire, Essex, Hertfordshire, Norfolk, Suffolk\n\n$e\n\n- **Annual Income**: £13.9 million (2024/25)\n- **Charitable Expenditure**: £3.75 million\n- **Decision Time**: 2 weeks (under £10,000); up to 3 months (£10,000+)\n- **Grant Range**: No minimum - £40,000+ (larger grants by discussion)\n- **Geographic Focus**: Cambridge University Hospitals (Addenbrooke's and The Rosie)\n- **Application Method**: Rolling basis via online portal", + "charityNumber": "1170103", + "areaOfOperation": "Botswana, El Salvador, India, Jordan, Kenya, Myanmar, Sierra Leone, Uganda, Zimbabwe, Cambridgeshire, Essex, Hertfordshire, Norfolk, Suffolk", + "expenditure": "3750000", + "website": "https://www.act4addenbrookes.org.uk", + "phone": "01223 217757", + "email": "hello@act4addenbrookes.org.uk", + "address": "BOX 126, ADDENBROOKES HOSPITAL, HILLS ROAD, CAMBRIDGE, CB2 0QQ", + "applicationPortal": "", + "annual_giving": "", + "success_rate": "", + "decision_time": "2 weeks (under £10,000); up to 3 months (£10,000+)", + "grant_range": "No minimum - £40,000+ (larger grants by discussion)", + "funding_model": "Rolling basis via online portal" + } + }, + { + "name": "Adderbury Feoffee Charity", + "link": "https://www.hinchilla.com/funder-directory/adderbury-feoffee-charity", + "philea_info": { + "About": "", + "Programme Areas": "- **Educational Fund**: School leavers going on to further education or university; support for local primary school (Christopher Rawlins) for IT equipment, resources, breakfast/after school clubs, school trips and residentials\n- **Apprenticeships**: Assistance for those undertaking apprenticeships\n- **Assistance Fund (Needy Clause)**: Help for residents of all ages experiencing hardship\n- **Ecclesiastical Fund**: Supporting St Mary's Church in Adderbury and St John the Evangelist in Milton\n- **Clubs and Societies**: Support for clubs and societies registered in the Adderbury and Milton parishes\n\n\n### What They Don't Fund\n\n- Applications from individuals or organizations outside Adderbury and Milton parishes\n- Applications from those who have lived in the area for less than 3 years", + "Geographic Focus": "Area of Operation: Oxfordshire\n\n- **Educational Fund**: School leavers going on to further education or university; support for local primary school (Christopher Rawlins) for IT equipment, resources, breakfast/after school clubs, school trips and residentials\n- **Apprenticeships**: Assistance for those undertaking apprenticeships\n- **Assistance Fund (Needy Clause)**: Help for residents of all ages experiencing hardship\n- **Ecclesiastical Fund**: Supporting St Mary's Church in Adderbury and St John the Evangelist in Milton\n- **Clubs and Societies**: Support for clubs and societies registered in the Adderbury and Milton parishes\n\n\n### What They Don't Fund\n\n- Applications from individuals or organizations outside Adderbury and Milton parishes\n- Applications from those who have lived in the area for less than 3 years\n\n| Metric | Value |\n|--------|-------|\n| Annual Giving | £8,000 - £10,000 (approx) |\n| Grant Range | Not specified |\n| Average Grant | Not specified |\n| Application Method | Fixed Deadline (Educational) / Rolling (Other funds) |\n| Geographic Focus | Adderbury parish, Oxfordshire, Milton parish, Oxfordshire |", + "charityNumber": "200902", + "areaOfOperation": "Oxfordshire", + "expenditure": "8500", + "website": "https://adderburyfeoffee.co.uk/", + "phone": "", + "email": "", + "address": "", + "applicationPortal": "", + "annual_giving": "£8,000 - £10,000 (approx)", + "success_rate": "", + "decision_time": "", + "grant_range": "Not specified", + "funding_model": "Fixed Deadline (Educational) / Rolling (Other funds)" + } + }, + { + "name": "Additional Curates Society", + "link": "https://www.hinchilla.com/funder-directory/additional-curates-society", + "philea_info": { + "About": "Established in 1837 by Christian layman Joshua Watson, the Additional Curates Society is a historic Anglican charity dedicated to supporting the Church of England's ministry by providing grants to parishes that need financial assistance to employ curates. The charity was founded with a £500 subscription from King William IV and was established to provide for the spiritual needs of people moving into new industrial estates during the Industrial Revolution.\n\nThe Society awards grants to poor and populous parishes, as well as parishes in new areas, enabling them to maintain vital ministerial support. Grants are assessed by the Council based on the parishes' financial needs and the number of people living in the parish. The size of a grant is determined by the income of the parish and the amount of money available at the time of the application. Beyond direct financial support, the organisation also works to encourage and foster vocations to the priesthood, playing a strategic role in developing the next generation of Anglican clergy.e", + "Programme Areas": "#### Grant Programs\n- Parish Support Grants: Funding to help parishes employ curates\n- Focus on poor and populous parishes requiring additional clergy support\n- Support for parishes in new ecclesiastical areas and developments\n\n#### Priority Areas\n- Parishes with economic challenges unable to afford curates independently\n- Densely populated parishes requiring additional ministerial support\n- New church plants and developing ecclesiastical areas\n- Supporting vocations to priesthood\n\n#### What They Don't Fund\nInformation not available from current sources", + "Geographic Focus": "Area of Operation: England, Wales\n\n#### Grant Programs\n- Parish Support Grants: Funding to help parishes employ curates\n- Focus on poor and populous parishes requiring additional clergy support\n- Support for parishes in new ecclesiastical areas and developments\n\n#### Priority Areas\n- Parishes with economic challenges unable to afford curates independently\n- Densely populated parishes requiring additional ministerial support\n- New church plants and developing ecclesiastical areas\n- Supporting vocations to priesthood\n\n#### What They Don't Fund\nInformation not available from current sources\n\n- **Annual Giving**: Not publicly available\n- **Success Rate**: Not available\n- **Decision Time**: Not available\n- **Grant Range**: Not specified\n- **Geographic Focus**: England (poor and populous parishes, and parishes in new areas)", + "charityNumber": "209448", + "areaOfOperation": "England, Wales", + "expenditure": null, + "website": "https://www.additionalcurates.co.uk", + "phone": "1213825533", + "email": "info@additionalcurates.co.uk", + "address": "16 COMMERCIAL STREET, BIRMINGHAM, B1 1RS", + "applicationPortal": "", + "annual_giving": "Not publicly available", + "success_rate": "Not available", + "decision_time": "Not available", + "grant_range": "Not specified", + "funding_model": "" + } + }, + { + "name": "Adelphi Genetics Forum", + "link": "https://www.hinchilla.com/funder-directory/adelphi-genetics-forum", + "philea_info": { + "Error": "No sections container in resolved payload" + } + } +] \ No newline at end of file diff --git a/src/data/raw/philea_members.json b/src/data/raw/philea_members.json index 466be43..c39b3d6 100644 --- a/src/data/raw/philea_members.json +++ b/src/data/raw/philea_members.json @@ -170,5 +170,9940 @@ "Geographic Focus": "Global", "Programme Areas": "Our major areas of expertise include the general development theme of Children and Youth, and more specifically, GFC is a leader in Community-led Development, Global Grantmaking, Trust-based Philanthropy, Participatory Grantmaking, healthy masculinities, well-being, and gender justice." } + }, + { + "id": 24783, + "name": "Suna and İnan Kıraç Foundation", + "address": "Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul", + "country": "", + "email": "", + "website": "http://www.sunaveinankiracvakfi.org.tr/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Meşrutiyet Caddesi No.47 Tepebaşı - Beyoğlu - İstanbul", + "lat": 41.0328293, + "lng": 28.9752418, + "zoom": 14, + "place_id": "ChIJV6w28F-3yhQRQoOqAcLxHTg", + "street_number": "No:47", + "street_name": "Meşrutiyet Caddesi", + "street_name_short": "Meşrutiyet Cd.", + "state": "İstanbul", + "post_code": "34430", + "country": "Türkiye", + "country_short": "TR" + }, + "link": "https://philea.eu/members/suna-and-inan-kirac-foundation/", + "philea_info": { + "About": "The Suna and İnan Kıraç Foundation advances societal development through its institutions of excellence in education, culture, and scientific research:", + "Mission": "The Suna and İnan Kıraç Foundation was established by Suna Kıraç, İnan Kıraç and İpek Kıraç on 27 October, 2003. With the goal of supporting the cultivation of empowered citizens that will contribute to Türkiye and its people, the Foundation supports activities in the areas of education, culture, arts and health.", + "Geographic Focus": "Currently, we are exclusively in Turkiye, though our long-term vision is to extend to neighboring countries, particularly with our education work.", + "Programme Areas": "Arts & Culture\nEducation\nHealth\nSciences & Research\nYouth/Children Development The Suna and İnan Kıraç Foundation operates across three main programme areas:Education and Educational Equity: Designing and implementing evidence-based models that strengthen early childhood development, support girls’ educational participation and empowerment, and contribute to teacher development and systemic improvement.Cultural Heritage and Public Access to Culture: Preserving, researching, and sharing Türkiye’s cultural heritage through museums, research institutes, exhibitions, publications, and public learning programmes.Scientific Research: Advancing high-quality research in neurodegenerative diseases through the Foundation’s Neurodegeneration Research Laboratory (NDAL), contributing to international scientific knowledge and capacity building.Across all areas, the Foundation combines research, institutional excellence, and long-term engagement to generate sustainable societal impact." + } + }, + { + "id": 24781, + "name": "Hidden Universe: Biodiversity Foundation (HUB)", + "address": "Grimmereds by 5, Västra Frölunda, Sweden", + "country": "", + "email": "", + "website": "https://www.hu-b.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Grimmereds by 5, Västra Frölunda, Sweden", + "lat": 57.6651926, + "lng": 11.8938683, + "zoom": 14, + "place_id": "ChIJs0Ih5C2NT0YR-dceWQWRP78", + "name": "Grimmereds by 5", + "street_number": "5", + "street_name": "Grimmereds by", + "city": "Västra Frölunda", + "state": "Västra Götalands län", + "post_code": "426 70", + "country": "Sweden", + "country_short": "SE" + }, + "link": "https://philea.eu/members/hidden-universe-biodiversity-foundation-hub/", + "philea_info": { + "About": "Biodiversity research, conservation and restoration. At its core, the Foundation is about advancing and communicating scientific knowledge and using such knowledge to better conserve and restore diverse ecosystems. Much of the diversity of life on Earth remains unknown, and without better knowledge, we cannot hope to restore or conserve it effectively. In its initial phase, the Foundation is focusing on the Atlantic Forest in Brazil, one of the most biodiverse and threatened regions on the planet. Here, it supports field-based research and promotes ecological restoration in ways that are informed by science and grounded in collaboration, including local communities.", + "Mission": "HUB’s mission is advanced through an integrated approach that combines scientific research, conservation initiatives, and community engagement.", + "Geographic Focus": "Brazil (initial focus).", + "Programme Areas": "Animal-Related\nEducation\nEnvironment/Climate\nFood, Agriculture & Nutrition\nSciences & Research\nSocio-economic Development, Poverty 1. Explore and document: HUB uncovers the planet’s hidden life. We partner with scientists to explore and document species, interactions and ecosystems—many still unknown to science—revealing the richness of nature so it can be understood and protected. 2. Protect and restore: HUB turns science into action. Working with local communities, we protect endangered species and restore vital ecosystems, starting in Brazil’s Atlantic rainforest and expanding to other biodiversity hotspots in the future. 3. Share knowledge: HUB connects people with nature. Through training, education, storytelling, and collaboration, we share discoveries that inspire curiosity, awareness, and action for a thriving planet." + } + }, + { + "id": 24780, + "name": "Andrea von Braun Stiftung", + "address": "Mauerkircherstraße 12, Munich-Bogenhausen, Germany", + "country": "", + "email": "", + "website": "https://www.avbstiftung.de/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Mauerkircherstraße 12, Munich-Bogenhausen, Germany", + "lat": 48.1497328, + "lng": 11.6012926, + "zoom": 14, + "place_id": "ChIJW8XsIJ91nkcRKrCt_VJpuAk", + "name": "Mauerkircherstraße 12", + "street_number": "12", + "street_name": "Mauerkircherstraße", + "city": "München", + "state": "Bayern", + "state_short": "BY", + "post_code": "81679", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/andrea-von-braun-stiftung/", + "philea_info": { + "About": "Our core mission is to promote projects in ecological border areas. By this we mean:", + "Mission": "Our core mission is to promote projects in ecological border areas. By this we mean: Nature-based environmental and climate protection in underfunded ecosystems with image problems.\nConcrete projects that are locally rooted and have both regional and international impact.\nHolistic projects that systematically interlink multiple technical and social perspectives (interdisciplinarity).", + "Geographic Focus": "Europe and Germany, but also worldwide", + "Programme Areas": "Arts & Culture\nCivil society, Voluntarism & Non-Profit Sector\nEducation\nEnvironment/Climate\nPeace & Conflict Resolution\nSciences & Research" + } + }, + { + "id": 24510, + "name": "Philanthropy in Ukraine", + "address": "Salyutna St. 5, office 49 Kyiv, 04111 Ukraine", + "country": "", + "email": "", + "website": "http://philanthropy.in.ua", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Salyutna St. 5, office 49 Kyiv, 04111 Ukraine", + "lat": 50.4503596, + "lng": 30.5245025, + "zoom": 14, + "place_id": "ChIJBUVa4U7P1EAR_kYBF9IxSXY", + "city": "Kyiv", + "state": "Kyiv city", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/philanthropy-in-ukraine/", + "philea_info": { + "About": "A platform of ecosystem solutions to strengthen trust in NGOs through verification and open data", + "Mission": "Our major areas of expertise are: verification and due diligence as we’re operating PhilinUA digital platform to vet NGOs against international standards; capacity strengthening as we’re delivering educational programs on governance, finance, and strategic planning for civil society professionals; sectoral analytics as we’re providing research and consultative data to guide systemic improvements in philanthropy. We employ a systemic approach to align Ukrainian philanthropy with global standards. Our primary distinction is the innovative PhilinUA platform, which provides a scalable, technology-driven solution for donor trust and due diligence. Our values are: strategic thinking, co-creation and impact. Our core strength is building trust and transparency. By simplifying the verification process, we directly facilitate the attraction of essential international funding and enhance the long-term resilience of Ukrainian civil society.", + "Geographic Focus": "Currently, we operate in Ukraine for Ukrainian organizations, but we also provide services and have partnerships with international donors who support Ukraine or need our services for their grantees in Ukraine." + } + }, + { + "id": 24509, + "name": "Confederación Española de Cajas de Ahorros", + "address": "Calle de Alcalá, 27, Madrid, Spain", + "country": "", + "email": "", + "website": "http://www.ceca.es", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Calle de Alcalá, 27, Madrid, Spain", + "lat": 40.41845850000001, + "lng": -3.6986681, + "zoom": 14, + "place_id": "ChIJA_9ksYYoQg0RAu5gh9in4Tw", + "name": "C. Alcalá, 27", + "street_number": "27", + "street_name": "Calle Alcalá", + "street_name_short": "C. Alcalá", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28014", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/confederacion-espanola-de-cajas-de-ahorros/", + "philea_info": { + "About": "CECA is a banking association committed to representing, defending and promoting its member entities’ interests. It provides them with advice and supports them in their endeavour to offer services that promote financial inclusion and access to credit. This work is undertaken with a sustainable approach, notably featuring Obra Social and financial education.", + "Geographic Focus": "Spain", + "Programme Areas": "Our activity is divided into four main areas: Institutional representation: Defense of our member entities’ interests in national and international forums.\nEconomic and regulatory analysis: Exhaustive follow-up regulatory of the national and international agendas and economic studies ad-hoc.\nSustainability and Obra Social: Dissemination and promotion of the Obra Social, financial education and sustainability.\nWorker representation: Defense of member entities that are bound by the sector’s Collective Bargaining Agreement. The Obra Social of CECA’s member entities constitutes Spain’s leading source of private social investment, reflecting a firm commitment to building a more equitable and inclusive society. CECA represents banking institutions and more than thirty banking and ordinary foundations. In 2024, CECA Foundations and associated entities collectively invested over €906 million in social initiatives, positioning them as the country’s largest private social investor. This significant level of investment enables the development of programs that directly address societal needs across a wide range of areas. The social programs implemented by CECA’s entities and foundations encompass fields such as social assistance, financial education, job creation, cultural development, research, and environmental protection, among others. Another major strength of CECA’s contribution to society lies in the extensive territorial presence of its member entities. Thanks to the wide presence of its foundations and banks throughout the country, CECA is able to reach diverse population groups – including those in vulnerable or remote areas – ensuring that its impact is both far-reaching and deeply rooted in local communities. Furthermore, CECA and its associated entities demonstrate a strong commitment to Financial Education and Sustainability. In the field of financial education, CECA, its member entities continue to work on their social vocation with the conviction that financial education is more necessary than ever, as it is vital to have financially responsible citizens, who manage their resources in the most efficient way, and to enhance digitalization when it comes to disseminating knowledge and skills. Also, in terms of sustainability, CECA and its member entities are aware that the financial sector can promote changes that will bring it closer to achieving the 2030 Agenda, which sets out the 17 Sustainable Development Goals to implement actions aimed to social and environmental improvement throughout the world. Furthermore, CECA adheres to the WSBI-ESBG Charter for Responsible and Sustainable Business." + } + }, + { + "id": 24508, + "name": "We Are Purposeful", + "address": "Blue House Yard, River Park Road, London, UK", + "country": "", + "email": "", + "website": "https://wearepurposeful.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Blue House Yard, River Park Road, London, UK", + "lat": 51.5972015, + "lng": -0.1116638, + "zoom": 14, + "place_id": "ChIJ0zqdKOIbdkgR0qSLHN8y2Pk", + "name": "Blue House Yard", + "street_number": "5", + "street_name": "River Park Road", + "street_name_short": "River Park Rd", + "city": "London", + "state": "England", + "post_code": "N22 7TB", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/we-are-purposeful/", + "philea_info": { + "About": "Purposeful is an Africa-rooted global hub for girls’ and young feminists organising and leadership. We believe that another world is not only possible, it is already being built right here and now, in the ways that girls and young feminists are organising with each other, imagining with each other, pushing us all a little further towards liberation.", + "Mission": "We resource girls and young feminists priorities in nearly every region of the world. Their priorities are our priorities. This is often a combination of gender-based violence, education, economic opportunity, climate crisis, and ensuring civic spaces stay open.", + "Programme Areas": "Two of our most innovative and distinguishing characteristics are 1) our highly participatory grant-making model that ensures resources reach those most impacted and 2) our inclusive accompaniment model which ensure our grantee partners, who have multiple intersecting vulnerabilities, have with wrap around support." + } + }, + { + "id": 24507, + "name": "SOLIDARNA Foundation", + "address": "Jurkovićeva ulica 3, Zagreb, Croatia", + "country": "", + "email": "", + "website": "http://www.solidarna.hr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Jurkovićeva ulica 3, Zagreb, Croatia", + "lat": 45.81490180000001, + "lng": 15.9903851, + "zoom": 14, + "place_id": "ChIJ61VlCKvXZUcR8czyDuySB1g", + "name": "Jurkovićeva ul. 3", + "street_number": "3", + "street_name": "Jurkovićeva ulica", + "street_name_short": "Jurkovićeva ul.", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/solidarna-foundation/", + "philea_info": { + "About": "The SOLIDARNA Foundation is a philanthropic organization dedicated to protecting and advancing human rights through community-driven support, strategic partnerships, and systemic change.", + "Mission": "We work to transform solidarity into concrete action by providing direct support to individuals and communities, strengthening civil society, and advocating for policies that promote equality, dignity, and social justice.", + "Geographic Focus": "Croatia and Slovenia", + "Programme Areas": "The SOLIDARNA Foundation works at the intersection of human rights, gender equality, and democratic participation, with a strongfocus on translating values into tangible social impact. Our key areas of expertise include: Human rights and social justice – protecting and advancing the rights of women, minorities, migrants, and other marginalized groups through direct support and systemic advocacy.\nGender equality and women’s empowerment – supporting women-led initiatives, addressing gender-based violence, economic inequality, and structural discrimination.\nCivil society strengthening – providing financial support, capacity building, and strategic guidance to grassroots organizations and informal initiatives.\nCivic engagement and democratic participation – fostering active citizenship, community organizing, and protection of democratic values.Strategic philanthropy and grantmaking – designing and managing transparent, impact-oriented funding mechanisms that respond to real needs on the ground.\nPolicy advocacy and cross-sector collaboration – contributing expertise to policy development and building bridges between civil society, institutions, and responsible businesses. What sets SOLIDARNA apart is how we work and where we position ourselves: Community-rooted and trust-based: We do not impose solutions. We create space for solutions to emerge from communities themselves, grounded in lived experience and local knowledge.\nFrom solidarity to systems change: Alongside direct support, we invest in long-term structural change through advocacy, research, and partnerships.\nBridge-builder across sectors: SOLIDARNA connects civil society, public institutions, donors, and the private sector, translating shared values into concrete, measurable action.\nEvidence-based and dignified approach: Our work is informed by data, expertise, and practice, and communicated with respect—never sensationalist or patronizing.\nAgile and responsive: We are able to respond quickly to emerging social challenges while maintaining strategic focus and accountability.\n\nSOLIDARNA’s key strength lies in its ability to combine empathy with expertise, and immediacy with sustainability. We turn solidarity into a reliable social infrastructure—one that provides timely support where it is most needed, while also shaping conditions for a more just, equal, and resilient society. Our contribution is not only in the resources we mobilize, but in the trust we build, the voices we amplify, and the systemic changes we help make possible—in Croatia, the region, and across Europe" + } + }, + { + "id": 24506, + "name": "Segal Family Foundation", + "address": "67 Mountain Blvd suite 201, Warren, NJ, USA", + "country": "", + "email": "", + "website": "http://www.segalfamilyfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "67 Mountain Blvd suite 201, Warren, NJ, USA", + "lat": 40.6161249, + "lng": -74.49897480000001, + "zoom": 14, + "place_id": "EjE2NyBNb3VudGFpbiBCbHZkIHN1aXRlIDIwMSwgV2FycmVuLCBOSiAwNzA1OSwgVVNBIiUaIwoWChQKEgk7T-HRTLnDiRH69HeOmheIEBIJc3VpdGUgMjAx", + "name": "67 Mountain Blvd suite 201", + "street_number": "67", + "street_name": "Mountain Boulevard", + "street_name_short": "Mountain Blvd", + "city": "Warren", + "state": "New Jersey", + "state_short": "NJ", + "post_code": "07059", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/segal-family-foundation/", + "philea_info": { + "About": "Segal Family Foundation is a social impact funder and advisor championing African visionaries.", + "Mission": "Segal Family Foundation is a social impact funder and advisor championing African visionaries.", + "Geographic Focus": "Sub Saharan Africa", + "Programme Areas": "Invest: We find, vet, and invest in early-stage social leaders and organizations with huge potential to transform society. Connect: We bring together a rich community of African visionaries and global funders to foster transformative collaboration. Advise: We advance big visions by equipping partners and donors with the resources and advice they need to succeed." + } + }, + { + "id": 24505, + "name": "Partners for a New Economy", + "address": "Place de Cornavin 2, Geneva, Switzerland", + "country": "", + "email": "", + "website": "https://p4ne.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Place de Cornavin 2, Geneva, Switzerland", + "lat": 46.2084926, + "lng": 6.1428645, + "zoom": 14, + "place_id": "ChIJk1z4kidljEcRgdv-BG4Y7wc", + "name": "Pl. de Cornavin 2", + "street_number": "2", + "street_name": "Place de Cornavin", + "street_name_short": "Pl. de Cornavin", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1201", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/partners-for-a-new-economy/", + "philea_info": { + "About": "Partners for a New Economy is an international philanthropic collaboration, hosted by the Swiss Philanthropy Foundation. We were founded in 2015 by the MAVA, Oak, Marisla and KR Foundations, to address the root causes of environmental degradation that lie within our economic system. In 2025 we were joined by Seedling Foundation and Regenerative Foundation, and continue to have further support from Laudes and Ford Foundations. Our truly international collaborative funds initiatives that show a deep understanding of planetary boundaries and an urgency to transform our economy to live within them. We are a trusted partner for funders navigating the new economy space, offering insights, connections and pathways that help make economic systems change for the benefit of the planet and its people more tangible and fundable. Whilst our main geographic focus is Europe, we are keen to see a breadth of perspective and global outlook.", + "Mission": "An economy that serves people and nature, now and for future generations.", + "Geographic Focus": "European focus with an established role in the global new economy ecosystem.", + "Programme Areas": "Grant Making: which aims to cultivate the conditions for economic systems change in Europe, to nurture economies in service of people and nature\nField Building: to grow and strengthen the new economy ecosystem, supporting people and organisations to find greater alignment, understanding, deepening their interdependence and building collective power. P4NE hosts an annual New Economies global gathering.\nPartnerships & Learning: P4NE is an international funder collaborative. We are committed to deepening understanding of new economic thinking in order to encourage support of real world solutions." + } + }, + { + "id": 24504, + "name": "KR Foundation", + "address": "Læderstræde 20, Copenhagen, Denmark", + "country": "", + "email": "", + "website": "http://www.krfnd.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Læderstræde 20, Copenhagen, Denmark", + "lat": 55.67819679999999, + "lng": 12.5780295, + "zoom": 14, + "place_id": "ChIJ6_tpKRFTUkYRT5AVaL66Ess", + "name": "Læderstræde 20", + "street_number": "20", + "street_name": "Læderstræde", + "city": "København", + "post_code": "1201", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/kr-foundation/", + "philea_info": { + "About": "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.", + "Mission": "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.", + "Geographic Focus": "The mission of KR Foundation is to address the root causes of climate change and biological degradation by pushing for a rapid phase-out of fossil fuels at a global level.", + "Programme Areas": "Challenge Finance Mission: aligning financial policies and regulation enabling an energy transition away from fossil fuels.\nChallenge Influence mission: Addressing the political influence and social license of fossil fuel actors obstructing climate action\nEconomic Transformation mission: Exploring post-growth economic paradigms that can operate within planetary boundaries." + } + }, + { + "id": 24503, + "name": "Fundación AVINA", + "address": "Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de Panamá ", + "country": "", + "email": "", + "website": "http://www.avina.net", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Evelio Lara, Casa N°131-B Ciudad del Saber, Clayton, Ciudad de Panamá ", + "lat": 8.9971189, + "lng": -79.5823125, + "zoom": 15, + "place_id": "ChIJLfCbTzWmrI8Rsl2lERV3mXk", + "street_name": "Calle Evelio Lara", + "street_name_short": "C. Evelio Lara", + "city": "Panamá", + "state": "Provincia de Panamá", + "country": "Panama", + "country_short": "PA" + }, + "link": "https://philea.eu/members/fundacion-avina/", + "philea_info": { + "About": "Fundación Avina is a Latin American philanthropic foundation with over 30 years of experience advancing systemic change in Latin America. We work across three interconnected areas: climate action; just and regenerative economies; and democratic innovation. We act as a grantmaker and strategic intermediary connecting civil society, philanthropy, the private sector, and public institutions. Avina’s distinguishing strength is its role as a bridge between locally led solutions in the Global South and global philanthropic, corporate, and policy agendas. We focus on ecosystem-building, multi-stakeholder collaboration, and long-term systems change rather than isolated projects. Our key contribution is enabling locally led systemic change at scale, ensuring communities most affected by inequality and climate change are co-creators and decision-makers in shaping solutions.", + "Mission": "Rooted in the global South, Fundación Avina works to drive collaborative processes that bring about systemic changes in favor of human dignity and care for the planet.", + "Geographic Focus": "Latin America and the Global South", + "Programme Areas": "Biomes, Water, Climate, Inclusive and Circular Economy, Labor Innovation, Democracies" + } + }, + { + "id": 24502, + "name": "Fondazione MeSSInA", + "address": "Forte Petrazza, Località Forte Petrazza, Camaro Superiore, Metropolitan City of Messina, Italy", + "country": "", + "email": "", + "website": "https://fdcmessina.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Forte Petrazza, Località Forte Petrazza, Camaro Superiore, Metropolitan City of Messina, Italy", + "lat": 38.1814676, + "lng": 15.5276218, + "zoom": 14, + "place_id": "ChIJTT7gPJROFBMRVEOMJ1_wBs4", + "name": "Forte Petrazza", + "street_number": "SNC", + "street_name": "Località Forte Petrazza", + "city": "Camaro Superiore", + "state": "Sicilia", + "state_short": "ME", + "post_code": "98151", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-messina/", + "philea_info": { + "About": "The MeSSiNa Foundation operates as a “Transformation Steward” or catalyst for local development in marginalized territories, primarily in Sicily.", + "Mission": "The official purpose of the MeSSiNa Foundation is to promote social justice and sustainable economic and human development bydesigning, experimenting with, and promoting new socio-economic policies in marginalized territories", + "Geographic Focus": "The MeSSiNa Foundation’s primary target is the region of Sicily in Italy and more generally Southern Italy. Nevertheless, we consider Sicily as a \"natural laboratory\" for socio-environmental experimentation that could be adapted and tested in other contexts facing similar issues. Having this in mind, the Foundation operates within a transnational framework through its partnership with international entities, being already member of the European Federation of Ethical and Alternative Banks and Financiers (FEBEA), the European Network Of Cities And Regions For The Social Economy (REVES) and the Foundations Platform F20. It also runs several EU-funded projects with European and MENA partners.", + "Programme Areas": "The cluster led by the Foundation covers several areas: Social mediation and personalized social support for disadvantaged people (mentally ill people, low-income families, former prisoners, etc.);\nEnergy projects (design and implementation of energy efficiency, production and redistribution interventions, creation of Renewable Energy Communities, etc.);\nCultural production and events, including the creation and management of museums, digital immersive rooms, international festival of performative arts, etc.;\nEducational activities for students of all ages;\nBusiness incubation and consolidation of social enterprises, through training, coaching, temporary management, etc.;\nFinancial services (through a co-funded microcredit institution, a co-funded asset management company, partner banks, etc.);\nTechnological research and innovation on several fields (energy production and distribution, housing, bioplastics, digital immersive rooms, etc.);\nUrban regeneration interventions (regeneration of buildings, urban art, regeneration of green spaces, etc.); etc. In the cluster, the Foundation does not function as a traditional top-down administrator or a simple service provider; instead, it designs the overall local development strategy for and with the target community, providing a theoretical framework based on complexity science and human development. It then structures the financial and operational relationships and framework that allow the cluster to thrive and implement the policies integrating all different activity areas." + } + }, + { + "id": 24349, + "name": "Volkswagen Slovakia Foundation", + "address": "", + "country": "", + "email": "", + "website": "http://www.nadacia-volkswagen.sk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Jána Jánoša 1 bratislava", + "lat": 48.1477745, + "lng": 17.1071553, + "zoom": 12, + "place_id": "ChIJl2HKCjaJbEcRaEOI_YKbH2M", + "city": "Bratislava", + "state": "Bratislava Region", + "country": "Slovakia", + "country_short": "SK" + }, + "link": "https://philea.eu/members/volkswagen-slovakia-foundation/", + "philea_info": { + "About": "Transforming Slovakia into a more educated, open, and engaged society — together and through innovation.", + "Mission": "Transforming Slovakia into a more educated, open, and engaged society — together and through innovation.", + "Geographic Focus": "Slovakia", + "Programme Areas": "Nadácia Volkswagen Slovakia focuses on advancing education, participation of vulnerable groups, and the development of cohesive communities. Our core expertise lies in designing and scaling innovative programmes that strengthen inclusive education, empower underrepresented learners, and build bridges between schools, families, and communities.As a corporate foundation, we act as a connector between philanthropy, business, and public systems, supporting pilot projects that generate learning and evidence for broader policy and practice change. Through strategic partnerships, targeted grantmaking, and capacity-building, we scale promising initiatives and promote long-term, systemic impact.Our key strength is the ability to catalyse systems change — we convene diverse stakeholders from education, government, and civil society to co-create solutions that foster inclusion, equity, and innovation. By combining private-sector agility with social impact goals, Nadácia Volkswagen Slovakia contributes to a more inclusive, resilient, and future-oriented society." + } + }, + { + "id": 24348, + "name": "Virgin Unite", + "address": "", + "country": "", + "email": "", + "website": "http://www.virginunite.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "50a Charlotte Street, London, UK", + "lat": 51.5198393, + "lng": -0.1358514, + "zoom": 14, + "place_id": "ChIJj2Wr5CsbdkgRDcBQ-Ujjj-0", + "name": "50a Charlotte St.", + "street_number": "50a", + "street_name": "Charlotte Street", + "street_name_short": "Charlotte St.", + "city": "London", + "state": "England", + "post_code": "W1T 2NS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/virgin-unite/", + "philea_info": { + "About": "Virgin Unite was founded in 2004 as the non-profit foundation of the Virgin Group, to unite people and entrepreneurial ideas to create opportunities for a better world. Since launch, together with some great partners, Virgin Unite has inspired and incubated a number of wonderful collaborations – like The Elders, Ocean Unite (now ORRAA), Carbon War Room (now merged with RMI), The B Team, Caribbean Climate Smart Accelerator, Unite BVI and 100% Human at Work – which have spurred much-needed change in the world. We continue to catalyse radical collaboration to challenge the unacceptable as we work for a world where all the planet and all people thrive.", + "Geographic Focus": "Global", + "Programme Areas": "We do philanthropy the Virgin way – that means being a positive disruptor, taking risks, entering spaces that are underfunded or overlooked, and uniting unlikely allies to multiply impact. Our mission is to unite people and entrepreneurial ideas to tackle the world’s most urgent challenges. Whether addressing injustice, reimagining business, or protecting the planet, our approach remains the same: take risks, back the bold, and never act alone. Unlike many traditional non-profit foundations, Virgin Unite doesn’t focus on a single issue. Instead, we look to challenge unacceptable issues or drive systems change in areas that aren’t getting enough attention, mobilising our community, partners, and their resources towards supporting the cause. Crucially, we don’t focus on a particular geography or issue, instead looking to be a positive disruptor in areas where we think we can specifically make a difference due to our unique approach, or because others aren’t currently giving the issue the attention it needs. We act as a positive disruptor by incubating and launching new non-profit initiatives. These organisations address a gap where systemic change is needed and eventually go on to thrive independently, with continued support from Virgin Unite. As of 2024, Virgin Unite has led and supported the incubation of 22 non-profit initiatives – including The Elders, The B Team, Ocean Unite (now ORRAA), Carbon War Room (now merged with RMI), Caribbean Climate Smart Accelerator, Unite BVI, and Planetary Guardians. We also look to embrace the same bold and innovative spirit that Virgin uses to change business for good and apply it to the world’s toughest challenges. This means working with businesses, and backing entrepreneurs, that drive positive social, environmental and economic benefits for people and the planet .A key component of Virgin Unite is our Constellation – a network and community of over 3,500 high net-wealth individuals, philanthropists, business leaders and entrepreneurs who convene to co-create solutions to some of the world’s biggest problems." + } + }, + { + "id": 24347, + "name": "Romanian Federation for Community Foundations", + "address": "", + "country": "", + "email": "", + "website": "https://ffcr.ro/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Int. Dridu nr. 7, bl. F13, sc. B, ap. 68, sector 1", + "lat": 44.452444, + "lng": 26.0856777, + "zoom": 16, + "place_id": "ChIJX-KIi7kDskARFJCx_PyWpi4", + "city": "Bucharest", + "state": "Bucharest", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/romanian-federation-for-community-foundations/", + "philea_info": { + "About": "FFCR’s vision is to develop a strong network of Community Foundations that contribute to transforming every community into a welcoming “home” by supporting local philanthropy and civic initiatives. The organization’s mission is to be the network that creates sustainable, active, and inclusive communities through national programs, expertise, strategic partnerships, and collaborative leadership. The Federation promotes strategic philanthropy, cross-sector collaboration (public, private, civil society), social responsibility, and civic engagement, aiming to support individuals and organizations that invest in the development of their own communities. FFCR’s actions are guided by the values of Togetherness, Trust, and Foresight and Leadership.", + "Mission": "To be the network that creates sustainable, active, and inclusive communities through national programs, expertise, strategic partnerships, and collaborative leadership." + } + }, + { + "id": 24346, + "name": "Grundfos Foundation", + "address": "", + "country": "", + "email": "", + "website": "https://www.pdjf.dk/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Poul Due Jensens Vej 7, Bjerringbro, Denmark", + "lat": 56.3802866, + "lng": 9.6690239, + "zoom": 14, + "place_id": "ChIJ1faoOTH4S0YRTPoMyHenWaM", + "name": "Poul Due Jensens Vej 7", + "street_number": "7", + "street_name": "Poul Due Jensens Vej", + "city": "Bjerringbro", + "post_code": "8850", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/grundfos-foundation/", + "philea_info": { + "About": "The main purpose of the Grundfos Foundation is to ensure and support healthy economic growth and development of the Grundfos Group. The Foundation fulfils its main purpose through exercising active ownership towards the Grundfos Group.", + "Mission": "The main purpose of the Grundfos Foundation is to ensure and support healthy economic growth and development of the Grundfos Group. The Foundation fulfils its main purpose through exercising active ownership towards the Grundfos Group.", + "Geographic Focus": "Global, with a focus on Denmark", + "Programme Areas": "Philanthropy The Foundation runs its philanthropic business through donations to areas that are in harmony with the will and principles of the founder; contribute positively to the sustainable development of Grundfos and the surrounding community; contribute to the pride of Grundfos’ employeesaffect society and strengthen relationships that support Grundfos’ work; maintain the Foundation and Grundfos as socio-bearing entities. The Foundation’s donations are given primarily in three areas: Research and Learning: The Foundation supports selected research environments, especially within natural and technical science and initiatives that inspire children and young people to explore science and technology\nWater and Sustainable Development: The Foundation strives to provide access to affordable drinking water and sanitation for the world’s poorest. The aim is to contribute to reducing global inequality.\nInclusion and Community Engagement: The Foundation focuses on the Central Jutland Region and the municipalities that are close to Grundfos’ home in Bjerringbro and supports Grundfos companies all over the world building local partnerships with organisations, institutions and associations. Grants from the Foundation must first and foremost benefit the intended beneficiaries. A project may very well cover several areas. For example, it is desirable that follow-up research be linked to projects within water and social inclusion. Likewise, initiatives in the field of water also contribute to social inclusion – in the form of, for example, local workplaces and improved communities. The Foundation not only supports fully designed projects, but also concept development, studies, project and product development." + } + }, + { + "id": 24345, + "name": "Exea Impact", + "address": "", + "country": "", + "email": "", + "website": "http://www.exeaimpact.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Puig Brands Torre 2, Plaça d'Europa, 34, L'Hospitalet de Llobregat, Spain", + "lat": 41.357969, + "lng": 2.1227306, + "zoom": 14, + "place_id": "ChIJ-a07tUCZpBIRjPXXZQm5n6c", + "name": "Puig Brands Torre 2", + "street_number": "34", + "street_name": "Plaça d'Europa", + "street_name_short": "Pl. d'Europa", + "city": "L'Hospitalet de Llobregat", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08908", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/exea-impact/", + "philea_info": { + "About": "" + } + }, + { + "id": 24344, + "name": "Bulgarian Fund for Women", + "address": "", + "country": "Bulgaria", + "email": "", + "website": "https://bgfundforwomen.org/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "улица „Солунска“ 26, Sofia, Bulgaria", + "lat": 42.6929644, + "lng": 23.3191476, + "zoom": 14, + "place_id": "ChIJUXfHw2yFqkARScaIU7ZQWBI", + "name": "Solunska Street 26", + "street_number": "26", + "street_name": "Solunska Street", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1000", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/bulgarian-fund-for-women/", + "philea_info": { + "About": "The Bulgarian Fund for Women’s major areas of expertise center on grantmaking for women’s rights, building the capacity of civil society organizations, and advancing gender equality and social justice in Bulgaria and the wider region. The organization has developed particular strengths in feminist philanthropy, intersectional advocacy, and supporting grassroots activism across diverse marginalized groups, including LGBTI+, rural women, migrants, and people with disabilities.", + "Mission": "To support the human rights and social justice movements by advancing philanthropy aimed at achieving structural change.", + "Geographic Focus": "Bulgaria", + "Programme Areas": "Distinguishing Characteristics BFW is distinguished as the only indigenous feminist foundation in Bulgaria, independent from any family, corporate, or external donor governance. It leads with an intersectional approach, prioritizing social inclusion and innovative movement building. Its expertise includes developing local resources, nurturing coalitions, and collaborating with both national and European partners to address systemic barriers and deliver impactful, evidence-based programming. Key Strength or Contribution BFW’s key strength is its ability to combine grantmaking with deep local engagement—mobilizing knowledge, networks, and resources to empower underrepresented groups and drive public policy changes. Its contribution to society is seen in capacity building for women’s organizations, cross-sector advocacy, and fostering a resilient ecosystem for gender justice and democracy in Bulgaria. This independent and strategic approach amplifies the voices of the most vulnerable, catalyzes wider social movements, and sustains long-term feminist change. Thematic Areas: Arts & Culture,\nCitizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEmployment/Workforce,\nEnvironment/Climate,\nHuman/Civil Rights,\nGender equality and women’s empowerment Prevention ofgender-based violence and discrimination LGBTI+ rightsadvocacy Intersectional movement building formarginalized groups Activity Areas: Grantmaking: Providing core and project funding to women’s rights and gender justice organizations across Bulgaria.\nCapacity building: Offering training, mentoring, networking, and collective action platforms for grassroots leaders and organizations.\nAdvocacy & research: Conducting research on the status of women’s rights and civil society, and leading advocacy to inform public policy and philanthropy.\nAwareness and movement building: Developing feminist campaigns, convening forums, and supporting collective movement action for gender equality and democracy." + } + }, + { + "id": 23661, + "name": "Kosovar Civil Society Foundation", + "address": "MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo", + "country": "", + "email": "", + "website": "http://www.kcsfoundation.org/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "MUSA TOLAJ, LAM A, H1, KAT.12, NR. 10000 Prishtine Kosovo", + "lat": 42.6673053, + "lng": 21.1643067, + "zoom": 14, + "place_id": "ChIJJwkRBeaeVBMRWrleON-_ZZM", + "city": "Pristina" + }, + "link": "https://philea.eu/members/kosovar-civil-society-foundation/", + "philea_info": { + "About": "Since its establishment in 1998 KCSF has functioned as a civil society hub, initially with significant expertise in financial and capacity building support to civil society and later also with extensive advocacy for protecting and advancing civic space. Within these core areas of work, KCSF’s in-house expertise includes grant making, civic participation, public funding for civil society, civil society-government cooperation, freedom of association, internal governance of CSOs, as well as civil society inclusion in European Integration. While primarily focused in Kosovo, KCSF has actively contributed to these areas also at the regional level in the Balkans, as well as participated in various European and global initiatives. KCSF is recognized for its systematic and holistic approach, namely insisting on building larger and integrated systems rather than one-off solutions. It is also recognized as a vocal supporter and contributor of localized approaches in supporting civil society, by both advocating for and applying support programs that are contextualized, in line with local needs and capacities and mindful of local culture. With a plethora of high-impact success stories over the years, in general KCSF is proud to have had enabled and empowered thousands of CSOs, informal groups and activists to become active and influential actors of Kosovo’s public life through adequate funding and tailor-made capacity building, while providing a crucial contribution through its advocacy to Kosovo being the only country in the Western Balkans to maintain a positive trend of civic space for over two decades now.", + "Mission": "Kosovar Civil Society Foundation (KCSF) is an independent, non-profit organisation which supports the development of civil society and initiatives that promote a democratic culture and respond to socio-economic needs of Kosovo, with particular focus on contributing to the process of integration in the European Union.", + "Geographic Focus": "Kosovo" + } + }, + { + "id": 23660, + "name": "Swarovski Foundation", + "address": "Chiswick Business Park, Chiswick High Road, London, UK", + "country": "", + "email": "", + "website": "https://www.swarovskifoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Chiswick Business Park, Chiswick High Road, London, UK", + "lat": 51.4930604, + "lng": -0.2748696, + "zoom": 14, + "place_id": "ChIJ-RcBF8UPdkgRvDCVVgd4zeE", + "name": "Chiswick Business Park", + "street_number": "566", + "street_name": "Chiswick High Road", + "street_name_short": "Chiswick High Rd.", + "city": "London", + "state": "England", + "post_code": "W4 5AN", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/swarovski-foundation/", + "philea_info": { + "About": "Established in 2013, the Swarovski Foundation is inspired by a long history of philanthropy initiated by the company founder Daniel Swarovski who believed that “to achieve lasting change, you must think not only of yourself but also of others”. The Swarovski Foundation’s mission is to promote sustainable livelihoods through education to reduce inequality by supporting work that focuses on Equity, Water, and Creativity, and through initiatives: Action Fund, Waterschool and Creatives for Our Future. Since its inception, the Swarovski Foundation has reached over 2 million people in 93 countries through 85 partnerships to drive progress towards the Sustainable Development Goals set out by the United Nations. The Swarovski Foundation is a UK charity governed and managed by a Board of Trustees and chaired by Marisa Schiestl-Swarovski.", + "Mission": "To promote sustainable livelihoods through education to reduce inequalities", + "Geographic Focus": "Global", + "Programme Areas": "Equity – to empower marginalised groups\nWater – to improve water security\nCreativity – to advance creative talent Own Initiatives Action Fund – The Action Fund supports organisations providing immediate relief to the most marginalised communities affected by urgent crises.\nCreatives For Our Future – Creatives For Our Future empowers the next generation of creative talent to unlock innovative approaches to our global sustainability challenges and drive progress towards the Sustainable Development Goals.\nWaterschool – The Waterschool empowers and educates young people on sustainable practices to address their local water challenges and improve water security globally." + } + }, + { + "id": 23659, + "name": "L'Oréal Fund for Women", + "address": "14 Rue Royale, Paris, France", + "country": "", + "email": "", + "website": "http://fondationloreal.com/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "14 Rue Royale, Paris, France", + "lat": 48.8681213, + "lng": 2.3233605, + "zoom": 14, + "place_id": "ChIJfYB-yTJu5kcRdfw3SUPUciI", + "name": "14 Rue Royale", + "street_number": "14", + "street_name": "Rue Royale", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75008", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/loreal-fund-for-women/", + "philea_info": { + "About": "Women & girls dedicated Fund. We’re supporting NGO and grassroot organisations to help women & girls in different areas : training, education, socio professional integration, emergency needs. our main mission is to empower these women and girls worldwide", + "Mission": "Our mission is to support organisations helping women and girls in situation of high vulnerability", + "Geographic Focus": "North America, Latin America, Asia, Europe, Africa, Middle East", + "Programme Areas": "Education,\nEmployment/Workforce,\nSocio-economic Development, Poverty" + } + }, + { + "id": 23658, + "name": "Foundever.org", + "address": "600 Brickell Ave ste 3200, Miami, FL, USA", + "country": "", + "email": "", + "website": "https://foundever.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "600 Brickell Ave ste 3200, Miami, FL, USA", + "lat": 25.7679928, + "lng": -80.19088359999999, + "zoom": 14, + "place_id": "Ei82MDAgQnJpY2tlbGwgQXZlIHN0ZSAzMjAwLCBNaWFtaSwgRkwgMzMxMzEsIFVTQSIkGiIKFgoUChIJ4bneW7y32YgRNTylH3ujU3oSCHN0ZSAzMjAw", + "name": "600 Brickell Ave ste 3200", + "street_number": "600", + "street_name": "Brickell Avenue", + "street_name_short": "Brickell Ave", + "city": "Miami", + "state": "Florida", + "state_short": "FL", + "post_code": "33131", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/foundever-org/", + "philea_info": { + "About": "Foundever.org specializes in education, employability, and social inclusion, building on the expertise of Foundever® in the Customer Experience (CX) industry. We focus on developing critical skills — such as digital and AI literacy, financial education, mentoring, and job-readiness — to empower individuals who face barriers to employment. What distinguishes us is our ability to adapt the proven impact sourcing model of the CX industry for the greater good, extending its benefits beyond business needs to support underserved communities. Our key contribution to society is promoting inclusion and equity by helping people gain the skills and confidence needed to access better opportunities.", + "Mission": "Our mission is to build and leverage educational programs to benefit untapped talent in deprived communities around the world and prepare individuals for their next employment opportunities.", + "Geographic Focus": "Europe; Africa (Egypt, South Africa, Morocco); Philippines;Latin America.", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nEducation,\nEmployment/Workforce,\nSocial/Human Services,\nSocio-economic Development, Poverty" + } + }, + { + "id": 23656, + "name": "Fondazione Capellino", + "address": "Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy", + "country": "", + "email": "", + "website": "https://fondazionecapellino.org/en/fondazione-capellino", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via de Marini, 1, Genoa, Metropolitan City of Genoa, Italy", + "lat": 44.4084736, + "lng": 8.900479599999999, + "zoom": 14, + "place_id": "ChIJ-1idExVB0xIRJw8sHBtYXOM", + "name": "Via de Marini, 1", + "street_number": "1", + "street_name": "Via de Marini", + "city": "Genova", + "state": "Liguria", + "state_short": "GE", + "post_code": "16149", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-capellino/", + "philea_info": { + "About": "Their areas of intervention are: Habitat & Biodiverse Corridors, Climate Change, Regenerative Agriculture. The distinguishing characteristics of our organisation in our model called “Reintegration Economy”", + "Mission": "The Foundation’s purpose is:\n(a) the protection of the biosphere and biodiversity, through: (i) targeted initiatives and projects for protection, conservation and renaturalisation as well as for reducing the impact of human activities on the environment;\n(ii) cultural awareness and political activity initiatives;\n(iii) the promotion and experimentation of new alternative socio-economic, productive, cultural and political models that achieve a synthesis between the needs of human beings and the protection of the biosphere and biodiversity; (b) the acquisition of financial and cultural autonomy instrumental to the protection of the biosphere and biodiversity, through: (i) the management and valorization of the shares held in joint-stock companies, through the exercise of the related social rights, ensuring, to the extent of its competence, that the management is in accordance with the values of the Foundation;\n(ii) operations aimed at increasing its assets over time: to this end, it can establish, acquire, participate in capital companies;\n(iii) participation in foundations, associations, other bodies or organizations that comply with the values of the Foundation.", + "Geographic Focus": "EU, America, Africa", + "Programme Areas": "Environment/Climate,\nFood, Agriculture & Nutrition" + } + }, + { + "id": 22839, + "name": "Ursimone Wietslibach Foundation", + "address": "Bahnhofstrasse 25, Zug, Switzerland", + "country": "Switzerland", + "email": "", + "website": "http://www.uswf.ch/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bahnhofstrasse 25, Zug, Switzerland", + "lat": 47.1701744, + "lng": 8.515627799999999, + "zoom": 14, + "place_id": "ChIJb1ehsPeqmkcRtoioJVUTpCc", + "name": "Bahnhofstrasse 25", + "street_number": "25", + "street_name": "Bahnhofstrasse", + "city": "Zug", + "state": "Zug", + "state_short": "ZG", + "post_code": "6300", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/ursimone-wietslibach-foundation/", + "philea_info": { + "About": "They act entrepreneurially and invest in bold ideas and long-term partnerships. This is how they ensure communities have access to holistic health, human development, and active living.", + "Mission": "To help shape a world in which everyone can lead a fulfilling, active life — characterized by meaning, joy, and shared sustainability.", + "Geographic Focus": "Switzerland and the Mekong Region (Cambodia, Laos, Myanmar and Thailand Border area to Myanmar)", + "Programme Areas": "Holistic Health & Prevention Healthcare systems around the world primarily focus on treating diseases, with economic incentives directed towards established medical methods. Human Development For Well-Being Young people aged 15 to 25 in the Mekong region face significant difficulties transitioning from formal education to employment due to a lack of skills and digital literacy in the light of demanding employer requirements. Active Lifestyle People from low-income and challenging backgrounds often face barriers to participating in sports, including high costs, limited access to facilities, and lack of encouragement. Connecting Themes In all our impact areas we strive to include three important themes which intersect our impact areas, namely: inclusion, nutrition and consciousness. Inclusion The foundation aims to promote inclusion by integrating it into all initiatives, recognizing its strategic advantage and essential role in society. Disabilities are often invisible and affect individuals at all stages of life. By 2035, the goal is to be a leading inclusive funding foundation that inspires others. Nutrition The foundation recognizes the fundamental role of nutrition in health, human development, and sports, aiming to establish it as a cross-cutting theme in all funding areas by 2035. Nutrition is crucial for physical and mental health, cognitive development, and athletic performance, and addressing it can help prevent rising issues like obesity, diabetes, and cardiovascular diseases. Consciousness The foundation aims to promote awareness and mindfulness, integrating it into all programme designs by 2035. This involves fostering personal and collective behaviour change through practical knowledge and motivation." + } + }, + { + "id": 22838, + "name": "America for Bulgaria Foundation", + "address": "ul. \"Malyovitsa\" 6, Sofia, Bulgaria", + "country": "Bulgaria", + "email": "", + "website": "http://www.us4bg.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ul. \"Malyovitsa\" 6, Sofia, Bulgaria", + "lat": 42.6892438, + "lng": 23.3287435, + "zoom": 14, + "place_id": "ChIJAfc9RQuFqkAR6o_IfC7KKpk", + "name": "ul. \"Malyovitsa\" 6", + "street_number": "6", + "street_name": "ulitsa \"Malyovitsa\"", + "street_name_short": "ul. \"Malyovitsa\"", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1000", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/america-for-bulgaria-foundation/", + "philea_info": { + "About": "The America for Bulgaria Foundation works in partnership with Bulgarians to support the country’s private sector and related democratic institutions.", + "Mission": "The America for Bulgaria Foundation works in partnership with Bulgarians to support the country’s private sector and related democratic institutions.", + "Programme Areas": "1. Private Sector Development Supporting entrepreneurship and small business growth.\nPromoting innovation ecosystems.\nEncouraging partnerships between business, academia, and government. 2. Education Enhancing the quality of education at all levels.\nSupporting STEM (Science, Technology, Engineering, Mathematics) programs.\nPromoting entrepreneurship and innovation among youth.\nImproving teacher training and leadership development. 3. Civic Engagement and Democratic Institutions Strengthening civil society and independent media.\nPromoting transparency, rule of law, and anti-corruption efforts.\nEncouraging citizen participation and community building. 4. Cultural Heritage and Tourism Preserving and promoting Bulgaria’s cultural heritage.\nInvesting in historical sites and museums.\nEnhancing Bulgaria’s image as an alternative/cultural and nature tourism destination 5. Leadership Development Nurturing the next generation of leaders across sectors.\nProviding fellowships, exchanges, and professional development programs." + } + }, + { + "id": 22835, + "name": "Elsevier Foundation", + "address": "Radarweg 29, Amsterdam, Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://www.elsevierfoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Radarweg 29, Amsterdam, Netherlands", + "lat": 52.3930616, + "lng": 4.8363326, + "zoom": 14, + "place_id": "EitSYWRhcndlZyAyOSwgMTA0MyBOWCBBbXN0ZXJkYW0sIE5ldGhlcmxhbmRzIjASLgoUChIJq2KEVfbixUcRt3nmid8idK4QHSoUChIJD8YwIffixUcRaDKZ2LuKHFg", + "name": "Radarweg 29", + "street_number": "29", + "street_name": "Radarweg", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1043 NX", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/elsevier-foundation/", + "philea_info": { + "About": "The Elsevier Foundation has a strategic focus on advancing inclusion in research and health by increasing the participation of underrepresented and underserved communities. We aim to serve as a catalyst for early stage interventions that are founded in an innovative proof of concept. Ultimately, our goal is to support partners to bring on new funders, scale up and support systemic change. We believe that our pragmatic and agile approach can have a powerful multiplier effect by adopting and accelerating proven ideas.", + "Mission": "We are a catalyst for inclusive research and health partnerships, convening and spotlighting impact makers to accelerate early stage interventions that advance inclusion in research and health.", + "Geographic Focus": "Global", + "Programme Areas": "Inclusive research and health: Our programs address key challenges in research, health and underrepresentation identified by the UN Sustainable Development Goals. The partnerships we support are strongly intersectional and highlight our commitment to supporting underserved communities around the world for better health outcomes and a more sustainable research ecosystem." + } + }, + { + "id": 22834, + "name": "Augustinus Fonden", + "address": "Sankt Annæ Plads 13, Copenhagen, Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.augustinusfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Sankt Annæ Plads 13, Copenhagen, Denmark", + "lat": 55.68190389999999, + "lng": 12.5909885, + "zoom": 14, + "place_id": "ChIJY8VV7SJTUkYRmmLSG77hh9k", + "name": "Sankt Annæ Pl. 13", + "street_number": "13", + "street_name": "Sankt Annæ Plads", + "street_name_short": "Sankt Annæ Pl.", + "city": "København", + "post_code": "1250", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/augustinus-fonden/", + "philea_info": { + "About": "The Augustinus Foundation strengthens its societal responsibility and philanthropic mission by providing funding for other actors so that they can fulfill their social responsibility. The Augustinus Fonden’s raison d’être is based on the fact that the foundation’s task is to realize the visions and missions of others, as it is the professional organizations within the supported areas that are the experts.", + "Mission": "The purpose of the foundation is to work for charitable and humane, artistic, scientific or similar purposes.", + "Geographic Focus": "Denmark, Greenland and The Faroe Islands" + } + }, + { + "id": 22833, + "name": "Open Society Institute - Sofia", + "address": "Solunska Street 56, Sofia, Bulgaria", + "country": "Bulgaria", + "email": "info@osi.bg", + "website": "https://osis.bg/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Solunska Street 56, Sofia, Bulgaria", + "lat": 42.6935377, + "lng": 23.3159479, + "zoom": 14, + "place_id": "ChIJpS2sRmuFqkARZiEgSzLlBn4", + "name": "Solunska Street 56", + "street_number": "56", + "street_name": "Solunska Street", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1000", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/open-society-institute-sofia/", + "philea_info": { + "About": "Open Society Institute – Sofia is a non-governmental organization, acting for the public benefit, defending the values of the open society in Bulgaria and supporting the integration of the country to the European Union. The Institute is founded in 1990, thanks to a donation of Mr. George Soros.", + "Mission": "To promote, help develop and sustain the values, attitudes and practices of open society in Bulgaria.", + "Geographic Focus": "Bulgaria, Western Balkans countries, Ukraine, Georgia, EU member states in Central and Eastern Europe", + "Programme Areas": "OSIS is a leading operator of regranting programs. In the past years, OSIS was involved in over EUR 20 million in funding administered through initiatives such as the EEA Grants NGO Programme (EUR 11.8 million), Active Citizens Fund Bulgaria (EUR 15.5 million), and EU CERV programs (ProEUvalues, PACT), carried out as a lead organization in partnership with other CSOs. These programs support civil society, democracy, media independence, and EU values. OSIS also implements multi-country schemes that promote regional collaboration and democratic resilience, such as “The Next Mile of European Integration.”, to support think tanks in EU candidate countries. The Enhancing Media Resilience and Quality News Journalism project offers grants in Bulgaria, Croatia, Greece, Hungary, and Slovenia with a call opened in 2024. Beyond grant management, OSIS conducts research and advocacy on democracy, civic participation, and media resilience. It conducts research on media resilience and publishes the annual Media Literacy Index, assessing susceptibility to disinformation across Europe, the U.S., and Canada. OSIS also regularly produces State of Democracy, Hate Speech and state of civil society reports on Bulgaria, used by institutions like FRA. With an ISO 9001-certified quality management system, OSIS ensures high standards of administrative efficiency, accountability, and financial oversight." + } + }, + { + "id": 22831, + "name": "Kyiv School of Economics Foundation", + "address": "Mykola Shpak Street, 3 Kyiv Ukraine", + "country": "Ukraine", + "email": "development@kse.ua", + "website": "https://foundation.kse.ua/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Mykola Shpak Street, 3 Kyiv Ukraine", + "lat": 50.4503596, + "lng": 30.5245025, + "zoom": 14, + "place_id": "ChIJBUVa4U7P1EAR_kYBF9IxSXY", + "city": "Kyiv", + "state": "Kyiv city", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/kyiv-school-of-economics-foundation/", + "philea_info": { + "About": "Through education, leadership training, research-driven policy solutions, and humanitarian relief, we empower the next generation of scholars, policymakers, and entrepreneurs who will shape Ukraine’s future and ensure its integration into the global economy. By bridging academia and philanthropy, KSE Foundation not only mitigates the immediate effects of war but also builds the foundation for a resilient, knowledge-driven, and prosperous Ukraine.", + "Mission": "The Kyiv School of Economics Foundation (KSE Foundation) is committed to enhancing social welfare, human capital development, and national resilience while positioning Ukraine as a leading intellectual hub in Europe. Through education, innovation, and strategic partnerships, KSE Foundation strengthens Ukraine’s economic, social, and geopolitical future, ensuring access to world-class education and opportunities for all citizens.", + "Geographic Focus": "Ukraine", + "Programme Areas": "Strategic Priorities: Educational Expansion & Accessibility: Broadening the impact of KSE’s academic programs across Ukraine and internationally.\nSustainable Growth & Funding: Ensuring financial stability to support the expansion of KSE University and key initiatives.\nHuman Capital Development: Supporting young talents, war-affected students, and professionals in STEM, business, and public policy.\nStrengthening National Resilience: Leading projects in humanitarian relief, education, and reconstruction efforts.\nEnhancing Ukraine’s Global Influence: Promoting Ukraine’s intellectual and economic potential through international collaboration and advocacy. Key Programs and Activities: 1. Educational Support and Scholarships – KSE Foundation actively supports talented students, war-affected individuals, and veterans through grants and scholarships, ensuring access to high-quality education and leadership training. Programs Include: Donate to Educate: A global fundraising initiative providing full and partial tuition grants at KSE University.\nMemorial Scholarships: Established in honor of members of the KSE community who lost their lives during the war, offering annual grants for undergraduate and graduate students starting in 2025.\nKhan Academy for Ukraine: A nationwide educational initiative translating and localizing STEM courses from Khan Academy, making high-quality content accessible to Ukrainian schoolchildren.\nDa Vinci Ukraine: A grant program supporting talented youth in mathematics, physics, and STEM fields, fostering participation in international competitions and Olympiads. 2. Humanitarian Initiatives – The KSE Foundation plays a crucial role in supporting Ukraine’s recovery and resilience through humanitarian projects, ensuring safe education environments, medical support, and economic stability. Key Initiatives Include: Safe Education (ЗАХИСТОК): Establishing bomb shelters in schools and kindergartens, restoring offline learning.\nMedical Evacuation and Aid: Providing first-aid kits and tourniquets for medical facilities and frontline responders. Provided 4 medical evacuation helicopters to ensure rapid emergency response.\nTalents for Ukraine: A leadership grant program empowering young leaders dedicated to rebuilding and reforming Ukraine. These individuals have a significant international impact—winning Oscars, representing Ukraine at Eurovision, and even being honored as Nobel Peace Prize laureates.\nCreate Ukraine: A reintegration initiative aimed at bringing back skilled Ukrainian professionals with international experience to contribute to national reforms.\nEntrepreneurship Support: A grant program to scale small and medium-sized women-led businesses in manufacturing, agriculture, IT, and healthcare." + } + }, + { + "id": 22829, + "name": "National Network of Local Philanthropy Development", + "address": "Dilova Street, Kyiv, Ukraine", + "country": "Ukraine", + "email": "info@philanthropy.com.ua", + "website": "https://philanthropy.com.ua/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Dilova Street, Kyiv, Ukraine", + "lat": 50.4299123, + "lng": 30.5154433, + "zoom": 14, + "place_id": "Eh9EaWxvdmEgU3QsIEt5aXYsIFVrcmFpbmUsIDAyMDAwIi4qLAoUChIJ1yz_nB3P1EARaMS788ZVsPASFAoSCQVFWuFOz9RAEf5GARfSMUl2", + "name": "Dilova Street", + "street_name": "Dilova Street", + "street_name_short": "Dilova St", + "city": "Kyiv", + "state": "Kyiv", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/national-network-of-local-philanthropy-development/", + "philea_info": { + "About": "We are a network of Ukrainian community foundations, a community foundation support organization. We support our members through several services: capacity building & care, communications, advocacy, financing and development of a favorable environment for local philanthropy.", + "Mission": "We are a network of Ukrainian community foundations, a community foundation support organization. We support our members through several services: capacity building & care, communications, advocacy, financing and development of a favorable environment for local philanthropy.", + "Geographic Focus": "Ukraine" + } + }, + { + "id": 22472, + "name": "iac Berlin gGmbH", + "address": "Linienstraße 65A, Berlin, Germany", + "country": "Germany", + "email": "", + "website": "https://www.iac-berlin.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Linienstraße 65A, Berlin, Germany", + "lat": 52.5289842, + "lng": 13.4040638, + "zoom": 14, + "place_id": "ChIJQci4muNRqEcRG2l7p--nrGY", + "name": "Linienstraße 65A", + "street_number": "65A", + "street_name": "Linienstraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10119", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/iac-berlin-ggmbh/", + "philea_info": { + "About": "As a Do & Think Tank for impact networks, iac Berlin works with foundations, academia, public institutions, and locally rooted non-profit organizations to build networks and alliances with social impact and to initiate new forms of collaboration and engagement.", + "Geographic Focus": "Global with a focus on Europe", + "Programme Areas": "Expertise: Collaborative and relational approaches to social change\nContribution to society: support in understanding the polycrisis and in acting on it in meaning- and impactful ways" + } + }, + { + "id": 22471, + "name": "European Fundraising Association", + "address": "James Wattstraat 100, Amsterdam, Netherlands", + "country": "Netherlands", + "email": "", + "website": "http://www.efa-net.eu", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "James Wattstraat 100, Amsterdam, Netherlands", + "lat": 52.3489327, + "lng": 4.9200102, + "zoom": 14, + "place_id": "ChIJD1rgOX8JxkcRYuPQsH_Wods", + "name": "James Wattstraat 100", + "street_number": "100", + "street_name": "James Wattstraat", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1097 DM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/european-fundraising-association/", + "philea_info": { + "About": "EFA works through and with the support of national fundraising associations and organisations; a joint platform for exchange of knowledge, best practice and expertise. By sharing what each nation knows about fundraising, we work to accelerate the growth of the profession and industry. We promote high standards and an accredited qualification programme that enables fundraisers to perform professionally at a consistently high level across Europe, building public trust and confidence and encouraging philanthropy.", + "Mission": "EFA’s mission is to develop fundraising across Europe by strengthening national fundraising associations and national fundraising organisations, and to promote fundraising, philanthropy and the work of not-for-profit organisations at the EU level. EFA serves as a platform and a collective voice for its members.", + "Geographic Focus": "Europe", + "Programme Areas": "Fundraising and philanthropy" + } + }, + { + "id": 22470, + "name": "Famtastisch Stiftung", + "address": "Oberer Kehlberg 6, Attendorn, Germany", + "country": "Germany", + "email": "", + "website": "http://www.famtastisch.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Oberer Kehlberg 6, Attendorn, Germany", + "lat": 51.12166990000001, + "lng": 7.8947567, + "zoom": 14, + "place_id": "ChIJkW1EcX9TuUcR32j7vTHKvp0", + "name": "Oberer Kehlberg 6", + "street_number": "6", + "street_name": "Oberer Kehlberg", + "city": "Attendorn", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "57439", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/famtastisch-stiftung/", + "philea_info": { + "About": "We are a funding foundation which means that we support organisations in Germany and Europa who work on food systems tranformation in accordance with our mission and vision. Our key strenght is to provide uncomplicated support grants, capacity building, sparring, co-funding, and more) and to focus on systemic funding (i.e. unrestricted).", + "Mission": "We are driving change towards a fair, balanced and resilient food system resilient food system by bringing encouraging solutions to growth, so that current and future generations generations have a fairer future.", + "Geographic Focus": "Germany and Europe with a focus on the EU-level", + "Programme Areas": "Food, Agriculture & Nutrition. We provide grants in the fields of a) production of food, and b) consumption of food." + } + }, + { + "id": 22469, + "name": "Wilde Ganzen Foundation", + "address": "Stationsplein 4, 3818 LE Amersfoort, Netherlands", + "country": "Netherlands", + "email": "info@wildeganzen.nl", + "website": "https://www.wildeganzen.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stationsplein 4, 3818 LE Amersfoort, Netherlands", + "lat": 52.1526612269682, + "lng": 5.376777648925781, + "zoom": 14, + "place_id": "ChIJQbg3Cx1ExkcRD4O9sCSuDQk", + "street_number": "4", + "street_name": "Stationsplein", + "city": "Amersfoort", + "state": "Utrecht", + "state_short": "UT", + "post_code": "3818 LE", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/wilde-ganzen-foundation/", + "philea_info": { + "About": "Wilde Ganzen is a front-runner in promoting and supporting locally-led development – we’ve been supporting local organisations directly for several decades. We work with around 450 private development initiatives in The Netherlands and in Belgium with projects in more than 50 countries. We are an expert in promoting global citizenship (https://www.wildeganzen.org/programs/global\u0002citizenship) as well as in providing trainings, coaching and networking on local resource mobilisation through the Change the Game Academy – an alliance of 19 local and national organisations in 17 countries (https://www.wildeganzen.org/programs/change-the\u0002game-academy). We are also an active supporter of the Shift the Power movement and we advance community philanthropy as a key strategy and driver of social change (https://www.wildeganzen.org/programs/giving-for-change). We are also a consistent partner of the EU DEAR programme that aims to raise awareness on the role of EU citizens in global development (https://www.connectforglobalchange.eu/).", + "Mission": "Wilde Ganzen is a Dutch Foundation, founded in 1957 with a mission to reduce poverty and inequality through community-led initiatives. We support community-based organisations in the Global South and their Dutch fundraising partners in joint efforts to achieve a better future because we believe that communities should have control over their own development.", + "Geographic Focus": "Tanzania, Kenya, Ethiopia, Uganda, South Africa, India, Burkina Faso, Malawi, Ghana, Cambodia, Nepal, Gambia, Sri Lanka, Indonesia, Andes (Colombia, Peru, Bolivia)" + } + }, + { + "id": 22468, + "name": "Fundación Vertex Bioenergy", + "address": "Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid", + "country": "Spain", + "email": "", + "website": "https://www.fundacionvertexbioenergy.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Avda. de Europa, 19 Edificio 3, Módulo Bajo-D Madrid", + "lat": 40.4417766, + "lng": -3.7868106, + "zoom": 14, + "place_id": "ChIJ__-vYVKGQQ0RhN01Pl6ZWFw", + "street_number": "19", + "street_name": "Avenida de Europa", + "street_name_short": "Av. de Europa", + "city": "Pozuelo de Alarcón", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28224", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-vertex-bioenergy/", + "philea_info": { + "About": "Promoting the 17 United Nations Sustainable Development Goals through investments and donations to projects run by foundations, NGOs and universities; promoting, encouraging and supporting the structuring and development of rural areas and communities; and promoting and caring for people at risk of exclusion for physical, economic or cultural reasons.", + "Mission": "Promoting the 17 United Nations Sustainable Development Goals through investments and donations to projects run by foundations, NGOs and universities; promoting, encouraging and supporting the structuring and development of rural areas and communities; and promoting and caring for people at risk of exclusion for physical, economic or cultural reasons.", + "Geographic Focus": "France and Spain", + "Programme Areas": "Help local communities. Main focus on: young talent, vulnerability, climate change (plant trees in areas proximity to our founder plants), etc." + } + }, + { + "id": 22467, + "name": "Fundación TBA21", + "address": "Calle Amor de Dios, 1, Madrid, Spain", + "country": "Spain", + "email": "madrid@tba21.org", + "website": "https://tba21.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Calle Amor de Dios, 1, Madrid, Spain", + "lat": 40.41334930000001, + "lng": -3.6981334, + "zoom": 14, + "place_id": "ChIJewKr_oEoQg0RxBicjH9bnRo", + "name": "C. del Amor de Dios, 1", + "street_number": "1", + "street_name": "Calle del Amor de Dios", + "street_name_short": "C. del Amor de Dios", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28014", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-tba21/", + "philea_info": { + "About": "All activity at TBA21 is fundamentally driven by artists and the belief in art and culture as a carrier of social and environmental transformation, ultimately contributing to the creation of spaces for peace.", + "Mission": "To promote art as catalyst for positive change and as a means to address the needs of today’s world, with a vision of social and environmental justice based on collaboration with artists, curators, scientists, thinkers, activists, indigenous voices and scholars, to build a future based on peaceful coexistence, care and generosity", + "Geographic Focus": "Worldwide", + "Programme Areas": "Exhibition and public programs; research; digital platform; new artwork commissions; contemporary art collection management;\nadvocacy" + } + }, + { + "id": 22466, + "name": "DOB Ecology", + "address": "IJsseldijk 1, Veessen, Netherlands", + "country": "Netherlands", + "email": "info@dobecology.nl", + "website": "https://dobecology.nl/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "IJsseldijk 1, Veessen, Netherlands", + "lat": 52.36253480000001, + "lng": 6.0737668, + "zoom": 14, + "place_id": "ChIJg07EdUfDx0cRUwJ6cw84_5M", + "name": "IJsseldijk 1", + "street_number": "1", + "street_name": "IJsseldijk", + "city": "Veessen", + "state": "Gelderland", + "state_short": "GE", + "post_code": "8194 LA", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/dob-ecology/", + "philea_info": { + "About": "To support partners and projects that protect and restore threatened ecosystems and biodiversity in a way that (re)builds the conditions for resilient livelihoods of local communities.", + "Mission": "To support partners and projects that protect and restore threatened ecosystems and biodiversity in a way that (re)builds the conditions for resilient livelihoods of local communities.", + "Geographic Focus": "Sub-Saharan Africa, South America", + "Programme Areas": "Nature conservation in Sub-Saharan Africa and South America, with a focus on forest and wetlands ecosystems and applied research." + } + }, + { + "id": 22435, + "name": "Dalyan Foundation", + "address": "Gutenbergstrasse 2, 8002 Zürich, Switzerland", + "country": "Switzerland", + "email": "", + "website": "http://www.dalyanfoundation.ch", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gutenbergstrasse 2, 8002 Zürich, Switzerland", + "lat": 47.3649605, + "lng": 8.531086199999999, + "zoom": 14, + "place_id": "Ei1HdXRlbmJlcmdzdHJhc3NlIDIsIDgwMDIgWsO8cmljaCwgU3dpdHplcmxhbmQiMBIuChQKEgmtPgL--AmQRxFgEMpvwdmLtBACKhQKEgnr9f9T-AmQRxGZH2W1fPJRRg", + "name": "Gutenbergstrasse 2", + "street_number": "2", + "street_name": "Gutenbergstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8002", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/dalyan-foundation/", + "philea_info": { + "About": "To enhance the personal and economic well being of women, adolescents and children from underprivileged backgrounds, and improve their prospects to move towards a life of dignity.", + "Mission": "To enhance the personal and economic well being of women, adolescents and children from underprivileged backgrounds, and improve their prospects to move towards a life of dignity.", + "Geographic Focus": "India and Türkiye", + "Programme Areas": "Economic empowerment of women, mentoring for youth and young adults, improving public education, organisational development. Key strength: as a founder-funded organisation we can support riskier projects and we can enter multiyear partnerships" + } + }, + { + "id": 22431, + "name": "Better Way Foundation", + "address": "Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz", + "country": "Liechtenstein", + "email": "hello@betterwayfound.org", + "website": "https://www.betterwayfound.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Allgemeines Treuunternehmen Aeulestrasse 5 - P.O. Box 83 Vaduz", + "lat": 47.140606, + "lng": 9.521298, + "zoom": 17, + "place_id": "ChIJKRSZjWcxm0cRuxoXjh3PbSA", + "street_number": "5", + "street_name": "Aeulestrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/better-way-foundation/", + "philea_info": { + "About": "We partner with organisations leveraging solutions that are systemic (they target the root causes and underlying systemic drivers), collaborative (they promote participation of diverse stakeholders) and effectively address the problem.", + "Mission": "BWF’s mission is to foster social and environmental justice by empowering, advocating for and enabling gender-sensitive and community-centred interventions aimed at creating a more inclusive and sustainable world.", + "Geographic Focus": "The reach of BWF’s funding is present in more than 50 countries, with geographic coverage approximately split between Global North (41%) and Global South (45%) partners in 2024, with 14% directed to groups working worldwide.", + "Programme Areas": "BWF’s funding is currently structured along three major work streams: 1) Climate change mitigation, adaptation and climate justice, 2) Gender equality and women empowerment, 3) Education and civil rights." + } + }, + { + "id": 21875, + "name": "Henry Smith Charity, The", + "address": "223 Pentonville Road, London, UK", + "country": "United Kingdom", + "email": "", + "website": "http://www.henrysmithcharity.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "223 Pentonville Road, London, UK", + "lat": 51.5311058, + "lng": -0.1177295, + "zoom": 14, + "place_id": "EiUyMjMgUGVudG9udmlsbGUgUmQsIExvbmRvbiBOMSA5SlksIFVLIjESLwoUChIJ311bUT8bdkgRKrgVcp1suFwQ3wEqFAoSCQdNeyhBG3ZIEcT_WQxy9qXB", + "name": "223 Pentonville Rd", + "street_number": "223", + "street_name": "Pentonville Road", + "street_name_short": "Pentonville Rd", + "city": "London", + "state": "England", + "post_code": "N1 9JY", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/henry-smith-charity-the/", + "philea_info": { + "About": "The Henry Smith Charity is an independent grant making trust. We aim to use our resources to help people and communities at a time of need and to bring about positive change. The Charity was founded in 1628 by Henry Smith, a businessman working in the City of London. Since then, we have honoured the spirit of Henry Smith’s will, working to combat disadvantage and meet the challenges and opportunities facing people in need throughout the UK. Today, The Henry Smith Charity is amongst the largest independent grant makers in the UK, distributing £46.4 million in 2023. Our grant holders are at the core of our mission and work. For us, achieving results depends on their work and, as a grant making trust, we can only be as effective as the organisations that we fund.", + "Mission": "Our resources empower people who are economically or socially excluded and support those in adversity to thrive. We work collaboratively to create lasting impact and advance long-term solutions to challenge economic and social disparities.", + "Programme Areas": "0-5 year olds – early intervention\n16-24 year olds – transitions to adulthood\nSafer futures – refugee and asylum seekers; victims of domestic abuse; people leaving prison" + } + }, + { + "id": 21874, + "name": "Community Foundation Ireland, The", + "address": "30 Merrion Square North, Dublin 2, Ireland", + "country": "Ireland", + "email": "", + "website": "https://www.communityfoundation.ie/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "30 Merrion Square North, Dublin 2, Ireland", + "lat": 53.3399796, + "lng": -6.2469008, + "zoom": 14, + "place_id": "ChIJhXzOupYOZ0gRLBxH_tehGxg", + "name": "30 Merrion Square N", + "street_number": "30", + "street_name": "Merrion Square North", + "street_name_short": "Merrion Square N", + "city": "Dublin 2", + "state": "County Dublin", + "state_short": "D", + "post_code": "D02 VE40", + "country": "Ireland", + "country_short": "IE" + }, + "link": "https://philea.eu/members/community-foundation-ireland-the/", + "philea_info": { + "About": "At Community Foundation Ireland we know philanthropy. We combine experience and insight to advise donors on strategic giving and manage donations to maximise its long-term impact for individuals, families, trusts and corporates. Our relationships across a network of 5,000 partners enable us to identify patterns, connections, and solutions that others can’t yet see. Our funding strategies drive change at a systemic and societal level, support inclusive communities, , accelerate change, empower generations, and address the challenge of climate change. Community Foundation Ireland and its donors are on a shared mission of equality for all in thriving communities. We have the knowledge, expertise and information to ensure effective and strategic giving in Ireland.", + "Mission": "Our mission is for an Ireland where everyone is equal and communities thrive. We empower people who want to make a difference through a model of strategic giving which is effective and delivers, for all.", + "Geographic Focus": "Ireland and Developing World", + "Programme Areas": "We take an inclusive holistic approach to delivering impact across four key areas, which reflect both long-standing and emerging challenges: — Sustainable Futures places Community Foundation Ireland as leaders on biodiversity and climate-action, working in partnership with communities as well as Government to address the biggest challenges of all. — We nurture Inclusive Communities where everyone is respected and has the opportunity to contribute and thrive. — We Empower Generations to ensure everyone is heard and respected irrespective of age. — Accelerating Change sees us working with change-makers to overcome systematic and societal barriers to equality and fairness." + } + }, + { + "id": 21873, + "name": "Limelight Foundation", + "address": "P.O. Box 15652 1001 ND Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://limelight.foundation", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "P.O. Box 15652 1001 ND Amsterdam Netherlands", + "lat": 52.3675734, + "lng": 4.9041389, + "zoom": 14, + "place_id": "ChIJVXealLU_xkcRja_At0z9AGY", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/limelight-foundation/", + "philea_info": { + "About": "Limelight Foundation supports journalism and civil society organizations committed to a strong and free information ecosystem in the digital age.", + "Mission": "We support public interest journalism and organisations that ensure that technologies strengthen the information ecosystem.", + "Geographic Focus": "Council of Europe, prioritizing countries where press freedom is under threat and/or there is a lack of funding opportunities.", + "Programme Areas": "Public interest journalism, funding newsrooms, cross-border network, infrastructure and organizations working on the enabling environment. Technology and the information ecosystem, tech accountability organizations, expertise/skills organizations needed by the tech accountability org’s., and capacity building organizations focused on diversifying and strengthening the ecosystem (mainly via regranting)." + } + }, + { + "id": 21872, + "name": "Hempel Foundation", + "address": "Amaliegade 8, Copenhagen, Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.hempel.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Amaliegade 8, Copenhagen, Denmark", + "lat": 55.68221029999999, + "lng": 12.5919428, + "zoom": 14, + "place_id": "ChIJQ4_o8CJTUkYRJ-clvQyOk9Q", + "name": "Amaliegade 8", + "street_number": "8", + "street_name": "Amaliegade", + "city": "København", + "post_code": "1256", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/hempel-foundation/", + "philea_info": { + "About": "The Hempel Foundation is a commercial foundation and was established in 1948 and has until 2024 been the sole owner of the Hempel Group – a leading supplier of paint solutions worldwide. Today the Hempel Foundation is the majority owner of the Hempel Group.", + "Mission": "We strive to make a difference by empowering children to learn, making coating more efficient and sustainable, sustaining biodiversity and realising great initiatives that bring about positive change", + "Geographic Focus": "Denmark. Africa: Uganda, Rwanda, Zambia, Sierra Leone, Tanzania, Madagascar, Ethiopia. Asia: Indonesia, Nepal, Bangladesh. South America: Argentina, Brasil, Paraguay", + "Programme Areas": "Our main philanthropic focus and expertise are within education [K12 – foundational learning] for children in developing countries and biodiversity on land [Focus on tropical forest but also in Denmark]" + } + }, + { + "id": 21871, + "name": "Casa Ronald McDonald Italia ETS", + "address": "Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, Italy", + "country": "Italy", + "email": "", + "website": "http://www.fondazioneronald.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via del Bosco Rinnovato, 6, Assago, Metropolitan City of Milan, Italy", + "lat": 45.40910329999999, + "lng": 9.150266199999999, + "zoom": 14, + "place_id": "ChIJZTd90W7DhkcR3ZRwmSUwJUI", + "name": "Via del Bosco Rinnovato, 6", + "street_number": "6", + "street_name": "Via del Bosco Rinnovato", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20057", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/casa-ronald-mcdonald-italia-ets/", + "philea_info": { + "About": "Casa Ronald McDonald Italia ETS is the Italian branch of Ronald McDonald House Charities (RMHC), an international non-profit organization that, since 1974 in the world and since 1999 in Italy, has offered hospitality, services and assistance to sick children and their families during the period of treatment away from home, at Italian pediatric hospitals of excellence. Through its programs – Case Ronald and Family Room – it not only allows access to excellent care, but supports families, allows them to be actively involved in the care of their children and promotes the implementation of the “Family Centered Care” care model, according to which having the family at their side is part of the care process. Ronald McDonald Houses are supportive accommodations born from the idea that nothing else should weigh on families who are dealing with the illness of a child. Staying in a Ronald McDonald House means giving parents the opportunity to communicate better with the medical team treating their child and to follow even the most complex treatment plans more carefully. The Ronald McDonald Family Rooms are welcoming spaces within the pediatric wards of hospitals, which give many families the opportunity to recharge and take a break while remaining close to their child during the treatment period. From 1999 to today, during its 25 years of activity in Italy, the Foundation has supported more than 54,000 children and families, offering over 290,000 overnight stays. Today, the Ronald McDonald Foundation for Childhood has 8 facilities between Case Ronald and Family Rooms, and collaborates with 7 partner hospitals, in 6 Italian cities.", + "Mission": "To provide programs and services that strengthen families, remove obstacles, and support a child’s journey through care.", + "Programme Areas": "Health,\nSocial/Human Services" + } + }, + { + "id": 21352, + "name": "Seedling Foundation", + "address": "Holbeinstrasse 22, Zürich, Switzerland", + "country": "Switzerland", + "email": "", + "website": "https://www.seedlingfoundation.ch/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Holbeinstrasse 22, Zürich, Switzerland", + "lat": 47.36403809999999, + "lng": 8.5495932, + "zoom": 14, + "place_id": "ChIJkQ5y9FKnmkcR1XFE1E0cLcw", + "name": "Holbeinstrasse 22", + "street_number": "22", + "street_name": "Holbeinstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8008", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/seedling-foundation/", + "philea_info": { + "About": "Seedling Foundation supports initiatives and organizations that develop and implement innovative solutions for climate protection. Our focus is on the food system (agro-food sector) which is the second largest contributor to global climate-damaging emissions following energy production", + "Mission": "Seedling Foundation supports initiatives and organizations that develop and implement innovative solutions for climate protection. Our focus is on the food system (agro-food sector) which is the second largest contributor to global climate-damaging emissions following energy production", + "Geographic Focus": "Switzerland, France, Italy, Germany, Portugal, Eastern Europe", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHealth" + } + }, + { + "id": 21350, + "name": "The Nordic Culture Fund", + "address": "The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K Denmark", + "country": "Denmark", + "email": "kulturfonden@norden.org", + "website": "http://www.nordiskkulturfond.org/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "The Nordic Culture Fund Ved Stranden 18 1061 Copenhagen K Denmark", + "lat": 55.6760968, + "lng": 12.5683371, + "zoom": 14, + "place_id": "ChIJIz2AXDxTUkYRuGeU5t1-3QQ", + "city": "Copenhagen", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/the-nordic-culture-fund/", + "philea_info": { + "About": "The Nordic Culture Fund was established by the Nordic Council through a separate agreement between the governments of the Nordic countries in 1966 and began its work in 1967.", + "Mission": "The aim of The Nordic Culture Fund is to promote the cultural cooperation between Denmark, Finland, Iceland, Norway, and Sweden, as well as the self governing areas the Faroe Islands, Greenland, and the Aland Islands. The Fund’s sphere of activities includes Nordic cultural cooperation in its entirety, both inside and outside the Nordic countries.", + "Geographic Focus": "Nordic Region but with a strategic focus on wider exchanges on a global level", + "Programme Areas": "At the Nordic Culture Fund, we work to set the direction for the cultural co-operation of the future. In a time of upheaval, when nations draw in to themselves, art and culture can act as a focal point that opens up, creates links and offers new perspectives – both towards ourselves and towards the world we live in. With our funding programmes, partnerships and cultural policy work, we therefore aim to bring arts and culture into new forms of dialogue, and provide a flexible frameworks for developing new collaborations and initiatives. The Nordic Culture Fund was established as an autonomous organisation shortly after the Second World War, with the aim of working internationally in the Nordic region and beyond. The Fund may therefore be regarded as a public player with independent funds, the distribution of which does not derive from directly politically-controlled decisions. This position is an important starting\u0002point for the Fund’s work. Since its inception in 1966, the Fund’s main mission has been to grant financial support. We are constantly learning more about artistic and cultural life, and the possibilities for practitioners to apply for support. In this way, we ensure that our support is both relevant and targeted. As a Fund, we are willing to take risks and often support the inception and development phases of new artistic and cultural initiatives and networks. Through our various programmes, we currently provide annual support to around 340 cultural projects that build on and develop international and Nordic co-operation. As a Nordic organisation, we are anchored in both the political system and in the field of performing arts and culture. We therefore have the opportunity to take an active role in facilitating new networks and acting as a link between different actors. For several years now, we have also worked to create new contexts for the development of cultural policy at Nordic level. We recognise that the role of art and culture in the welfare society has changed and that there is a need to rethink some of the institutional premises and concepts that have long functioned as the self-evident grammar of cultural policy in the Nordic countries. When, for example, we enter into partnerships across the boundaries of disciplines, interests and national borders, it is all about making visible, developing and disseminating knowledge of arts and culture so that more people can see and understand the vital role that the arts play in our society. Primary programme areas: Arts & Culture,\nCivil society, Voluntarism & Non-Profit Sector,\nHuman/Civil Rights,\nPolicy development" + } + }, + { + "id": 21349, + "name": "Škoda Auto Endowment Fund", + "address": "ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, Czechia", + "country": "Czech Republic", + "email": "nadacnifond@skoda-auto.cz", + "website": "http://www.nfsa.cz", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ŠKODA AUTO a.s., tř. Václava Klementa 869, Mladá Boleslav 1, Czechia", + "lat": 50.426853, + "lng": 14.9218356, + "zoom": 16, + "place_id": "ChIJj__Bq7JVCUcRafZj7Fmtf3o", + "name": "tř. Václava Klementa 869", + "street_number": "869", + "street_name": "třída Václava Klementa", + "street_name_short": "tř. Václava Klementa", + "city": "Mladá Boleslav 1", + "state": "Středočeský kraj", + "post_code": "293 01", + "country": "Czechia", + "country_short": "CZ" + }, + "link": "https://philea.eu/members/skoda-auto-endowment-fund/", + "philea_info": { + "About": "To transform regions in which Škoda Auto operates into places where people live, work and do business well.", + "Mission": "To transform regions in which Škoda Auto operates into places where people live, work and do business well.", + "Geographic Focus": "Czech Republic (only regions where their founder has his production plants – in the Mladá Boleslav region, Rychnov region and Vrchlabí regions)", + "Programme Areas": "Community development, increase of neighborhood relations and decreasing social anonymity through creating and supporting community centers and places for leisure activities, culture.\nIncrease of quality of education though training of school principal and sharing best practice, and supporting young talents from\nsocially disadvantage environment. Supporting biodiversity and environmental education. Arts & Culture,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nHealth,\nRecreation, Sport & Well-being,\nSocial/Human Services,\nYouth/Children Development" + } + }, + { + "id": 21348, + "name": "Ramboll Foundation", + "address": "Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark", + "country": "Denmark", + "email": "info@rambollfonden.com", + "website": "http://www.rambollfonden.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ramboll Head Office, Hannemanns Allé 53, Copenhagen, Denmark", + "lat": 55.62738719999999, + "lng": 12.5794091, + "zoom": 7, + "place_id": "ChIJr5-Hi7dUUkYRI0z6TWYsvsI", + "name": "Ramboll Head Office", + "street_number": "53", + "street_name": "Hannemanns Allé", + "city": "København", + "post_code": "2300", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/ramboll-foundation/", + "philea_info": { + "About": "To always be the best owner of Ramboll while enabling the foundation together with the company and its employees to address societal challenges, where the Ramboll expertise is relevant.", + "Mission": "To always be the best owner of Ramboll while enabling the foundation together with the company and its employees to address societal challenges, where the Ramboll expertise is relevant.", + "Geographic Focus": "Northern Europe, Southeast Asia, Australia, North America (where Ramboll is present)", + "Programme Areas": "Ownership with a purpose. Through our philanthropy and ownership of Ramboll to address societal challenges with the knowledge of engineering, design and society present in the organization. Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEnvironment/Climate,\nHumanitarian & Disaster Relief,\nSciences & Research,\nSocio-economic Development, Poverty" + } + }, + { + "id": 21347, + "name": "Fondation la France s'engage", + "address": "38 Rue de la Folie-Regnault, Paris, France", + "country": "France", + "email": "contact@fondationlafrancesengage.org", + "website": "http://www.fondationlafrancesengage.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "38 Rue de la Folie-Regnault, Paris, France", + "lat": 48.8587116, + "lng": 2.3874303, + "zoom": 14, + "place_id": "ChIJbYW78fRt5kcRxL6iBM85laE", + "name": "38 Rue de la Folie-Regnault", + "street_number": "38", + "street_name": "Rue de la Folie-Regnault", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75011", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-la-france-sengage-2/", + "philea_info": { + "About": "The Foundation’s aim is to promote the engagement of civil society in innovative, mutually beneficial initiatives serving the greatest number of beneficiaries. In this way, it fosters social cohesion around local services and sustainable territorial development in France. Each year, it identifies and rewards the most innovative projects in all areas of sustainable development. The projects are accelerated by the Foundation, which provides them with funding and support over a three-year period to enable them to scale up and spread.", + "Mission": "The Foundation’s aim is to promote the engagement of civil society in innovative, mutually beneficial initiatives serving the greatest number of beneficiaries. In this way, it fosters social cohesion around local services and sustainable territorial development in France. Each year, it identifies and rewards the most innovative projects in all areas of sustainable development. The projects are accelerated by the Foundation, which provides them with funding and support over a three-year period to enable them to scale up and spread.", + "Geographic Focus": "France (including oversea territories)", + "Programme Areas": "The major areas of expertise of La France s’engage are the following :\nSocial innovation – year after year we detect and select the best local social innovations in France when they are still at an early stage and help them to expand\nSocial impact – when integrated into the La France s’engage program we make sure that the grantees assess their social impact, strenghten their methodologies and reach out to an accrued number of beneficiaries in new territories while increasing the quality of their services and impact\nCapacity Building – La France s’engage provides unrestricted funding for a period of three years. This allows them to use funding exactly how they need it (whether on HR, technology, material, etc…) to develop their capacities. But beside funding the grantees enter a three-year program of capacity building by external suppliers and partners of La France s’engage addressing specifically the needs and wants of our grantees and help them strengthen their governance, legal aspects, social impact measurement, scale changing and many more targeted services to help them grow.\nCommunity network – entering the community of La France s’engage (248 actual and past grantees operating in different fields and regions) is a real asset for the new grantees. La France s’engage acts as a broker and accelerator fostering the peer-to\u0002peer networking, the gathering at events, the capitalization on specific topics, the funding through its networks of private and public donors and the facilitation with administrative stakeholders. We also intend the network of La France s’engage to be a happy and engaging one." + } + }, + { + "id": 21346, + "name": "Kering Foundation", + "address": "Kering, 40 Rue de Sèvres, 75007 Paris, France", + "country": "France", + "email": "keringfoundation@kering.com", + "website": "http://www.keringfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Kering, 40 Rue de Sèvres, 75007 Paris, France", + "lat": 48.8493753, + "lng": 2.322048200000001, + "zoom": 14, + "place_id": "ChIJ2WJgKNNx5kcRKJ-0GozMdGU", + "name": "Kering", + "street_number": "40", + "street_name": "Rue de Sèvres", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75007", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/kering-foundation/", + "philea_info": { + "About": "Kering Foundation fights gender based violence and violence against children by funding local organizations that offer comprehensive and adapted support to women and children survivors of violence, by working to change behaviors and mentalities by engaging young people, and by creating safe and supportive workplaces for survivors, as well as by mobilizing other companies on this issue.", + "Mission": "Since 2008, the Kering Foundation has been combating gender-based violence, which affects all cultures and social classes. To maximize its impact, Kering Foundation works with a limited number of partners in six main countries: the United States, France, Italy, Mexico, the United Kingdom and Korea. On the occasion of its 15th anniversary, Kering Foundation announced its strengthened commitment and now extends its work to also focus on violence against children, in particular childhood sexual violence.", + "Geographic Focus": "France, Italy, United Kingdom, United States, Mexico, Korea", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nHealth,\nHuman/Civil Rights,\nYouth/Children Development" + } + }, + { + "id": 21345, + "name": "Jeremy Coller Foundation", + "address": "116 Park Street, London W1K 6AF, UK", + "country": "United Kingdom", + "email": "", + "website": "http://www.jeremycollerfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "116 Park Street, London W1K 6AF, UK", + "lat": 51.51337789999999, + "lng": -0.1556058, + "zoom": 14, + "place_id": "ChIJ6QZN4TIFdkgRkbtGcWYNg2Q", + "name": "116 Park St", + "street_number": "116", + "street_name": "Park Street", + "street_name_short": "Park St", + "city": "London", + "state": "England", + "post_code": "W1K 6AF", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/jeremy-coller-foundation/", + "philea_info": { + "About": "The Jeremy Coller Foundation seeks to create positive impact on globally critical issues through strategic action, collaboration, and knowledge-sharing.", + "Mission": "The Jeremy Coller Foundation seeks to create positive impact on globally critical issues through strategic action, collaboration, and knowledge-sharing.", + "Geographic Focus": "US, UK, Europe, Asia", + "Programme Areas": "Three key areas of focus: 1) Educating on Factory Farming 2) Supporting the Coller School of Management and 3) Supporting Education, Culture and Other Causes. Animal-Related,\nEducation,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHealth,\nSocial/Human Services" + } + }, + { + "id": 21344, + "name": "Fundación Mapfre", + "address": "Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ", + "country": "Spain", + "email": "", + "website": "http://www.fundacionmapfre.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación Mapfre Paseo de Recoletos, 23 28004 Madrid Spain ", + "lat": 40.4225631, + "lng": -3.6921871, + "zoom": 14, + "place_id": "ChIJD3h76EEpQg0RifCjWOgs4ag", + "street_number": "23", + "street_name": "Paseo de Recoletos", + "street_name_short": "P.º de Recoletos", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28004", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-mapfre/", + "philea_info": { + "About": "Fundación Mapfre, founded in 1975, is promoted by Mapfre Mutualidad de Seguros, one of Spain’s leading insurance companies and Mapfre Mutua Patronal de Accidentes de Trabajo (Worker’s Compensation Mutual). It was officially recognised as a private cultural foundation by the Ministry of Education and Science in 1976.", + "Mission": "To contribute to improving people’s quality of life and the progress of society through multinational programs and activities.", + "Geographic Focus": "International, with programmes and activities in 30 countries (mainly located in Europe and America).", + "Programme Areas": "Arts & Culture,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nRoad Safety, Health and Prevention,\nRecreation, Sport & Well-being,\nSciences & Research,\nSocio-economic Development, Poverty,\nYouth/Children Development,\nInsurance and Social Protection" + } + }, + { + "id": 20891, + "name": "Wildlife Conservation Society EU", + "address": "Wildlife Conservation Society EU Boulevard Louis Schmidt 64 1040 Brussels Belgium", + "country": "Belgium", + "email": "", + "website": "https://brussels.wcs.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Boulevard Louis Schmidt 64, 1040 Etterbeek, Brussels, Belgium", + "lat": 50.8297338, + "lng": 4.4023405, + "zoom": 14, + "place_id": "ChIJ22ZKe7TEw0cRVL69dfxF_jc", + "name": "Bd Louis Schmidt 64", + "street_number": "64", + "street_name": "Boulevard Louis Schmidt", + "street_name_short": "Bd Louis Schmidt", + "city": "Etterbeek", + "state": "Bruxelles", + "post_code": "1040", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/wildlife-conservation-society-eu/", + "philea_info": { + "About": "WCS EU was established to engage with EU institutions, European governments and organisations, in support of global conservation. WCS EU aims to influence EU policy and funding initiatives and develop partnerships for conservation impact. It draws upon WCS’s global field and scientific expertise to articulate scientifically-based policy positions and facilitate the development and implementation of conservation projects. WCS is present in over 60 countries and has experience helping to establish, expand or manage over 550 protected areas. It applies biological knowledge, scientific expertise and cultural understanding to ensure that wild places and wildlife thrive alongside local communities.", + "Mission": "The mission of WCS EU is to save wildlife and wild places worldwide through science, conservation action, education, and inspiring people to value nature. The following objectives are taken from our official statutes: 4.1.1 Saving wildlife and wild places worldwide through science, conservation action, education, and inspiring people to value nature. 4.1.2 Protecting and conserving of the natural environment, its flora and fauna including by undertaking innovative approaches thereto. 4.1.3 Educating and instructing the public.", + "Geographic Focus": "Africa, Asia, Latin America and the Caribbean, and the Pacific", + "Programme Areas": "WCS EU is working to influence EU policy and funding initiatives that impact biodiversity conservation in the global south. Major areas of interest include: protected areas, tackling deforestation and forest degradation, wildlife trade and trafficking, implementing One Health initiatives, marine and ocean conservation, biodiversity finance and integrating wildlife protection into EU development aid programmes. WCS EU is involved in a number of projects funded through public grants related to the conservation or sustainable use of biodiversity, including the EU-funded Sustainable Wildlife Management programme (SWM), the EU-funded Niassa special reserve project, and the UK government-funded Forest Governance, Markets and Climate (FGMC) programme." + } + }, + { + "id": 20754, + "name": "Global Greengrants Fund UK", + "address": "Global Greengrants Fund UK WeWork - Office Space & Coworking, City Road, London, UK", + "country": "United Kingdom", + "email": "info@globalgreengrants.org.uk", + "website": "https://www.greengrants.org/who-we-are/global-greengrants-fund-uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Global Greengrants Fund UK WeWork - Office Space & Coworking, City Road, London, UK", + "lat": 51.5278912, + "lng": -0.0882804, + "zoom": 14, + "place_id": "ChIJ1bq4GBYddkgR45V6NnYZ7jY", + "street_number": "145", + "street_name": "City Road", + "street_name_short": "City Rd", + "city": "London", + "state": "England", + "post_code": "EC1V 1AZ", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/global-greengrants-fund-uk/", + "philea_info": { + "About": "Global Greengrants Fund UK (charity number 1151527) believes solutions to environmental harm and social injustice come from people whose lives are most impacted. Every day, our global network of people on the frontlines and donors comes together to support communities to protect their ways of life and our planet. Because when local people have a say in the health of their food, water, and resources, they are forces for change. Global Greengrants Fund UK is the European sister organisation of Global Greengrants Fund. Founded in 2012 and staffed since 2015, Global Greengrants Fund UK provides those in the United Kingdom and Europe with the opportunity to invest in local change, spearheaded by the same expert advisors that are a hallmark of Global Greengrants. The organisation is an intermediary funder and does not have an endowment or any other source of income beyond what it raises from other grant-making bodies and the general public.", + "Mission": "Global Greengrants Fund UK mobilises resources for communities worldwide to protect our shared planet and work toward a more equitable world.", + "Geographic Focus": "Global, but with particular focus on the Majority World (i.e. beyond Europe and North America)." + } + }, + { + "id": 20620, + "name": "ISTA Foundation", + "address": "Institute of Science and Technology Austria (ISTA), Am Campus, Klosterneuburg, Austria", + "country": "Austria", + "email": "foundation@ista.ac.at", + "website": "https://ista.ac.at/en/capital-campaign/the-ista-foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Institute of Science and Technology Austria (ISTA), Am Campus, Klosterneuburg, Austria", + "lat": 48.3095598, + "lng": 16.2595038, + "zoom": 14, + "place_id": "ChIJi8zP6iEMbUcRsygEZMiM3to", + "name": "Institute of Science and Technology Austria (ISTA)", + "street_number": "1", + "street_name": "Am Campus", + "city": "Klosterneuburg", + "state": "Niederösterreich", + "post_code": "3400", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/ista-foundation/", + "philea_info": { + "About": "The mission of our organization is to support research in the natural sciences, formal sciences and engineering sciences, as well as support of graduate and post-graduate education.", + "Mission": "The mission of our organization is to support research in the natural sciences, formal sciences and engineering sciences, as well as support of graduate and post-graduate education.", + "Geographic Focus": "Austria", + "Programme Areas": "Education,\nSciences & Research\nBasic research in the natural sciences, mathematics & computer science" + } + }, + { + "id": 20619, + "name": "Fondazione di Venezia", + "address": "Via Brenta Vecchia 08 Venice, Italy", + "country": "Italy", + "email": "segreteria@fondazionedivenezia.org", + "website": "http://www.fondazionedivenezia.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Brenta Vecchia 08 venice", + "lat": 45.4920122, + "lng": 12.2413301, + "zoom": 14, + "place_id": "Ei5WaWEgQnJlbnRhIFZlY2NoaWEsIDgsIDMwMTcxIFZlbmV6aWEgVkUsIEl0YWx5IjASLgoUChIJ1SUOvT-0fkcRSzcoNnTsZYwQCCoUChIJ5csiuz-0fkcR8cgOeVrbTSU", + "street_number": "8", + "street_name": "Via Brenta Vecchia", + "city": "Venezia", + "state": "Veneto", + "state_short": "VE", + "post_code": "30171", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-di-venezia/", + "philea_info": { + "About": "Established in 1992, Fondazione di Venezia originates from Cassa di Risparmio di Venezia, the oldest savings bank in Italy, dating back to 1822, which substantially contributed to the social and economic development of the city and its territory.", + "Mission": "The mission of the Foundation is the promotion of civil society and human capital, in the historical, social, economic and cultural dimension of Venice. In order to achieve this aim, the Foundation directs its institutional activities in Italy and abroad towards social utility and the promotion of economic development.", + "Geographic Focus": "Italy", + "Programme Areas": "Arts & Culture,\nCitizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nHuman/Civil Rights,\nSocial/Human Services,\nSocio-economic Development, Poverty,\nYouth/Children Development,\nOther (please specify):\nImmigrants" + } + }, + { + "id": 20618, + "name": "Fondazione CDP", + "address": "Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy", + "country": "Italy", + "email": "segreteria.fondazione@fondazionecdp.it", + "website": "https://www.cdp.it/sitointernet/it/fondazione.page", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Goito, 4, Rome, Metropolitan City of Rome Capital, Italy", + "lat": 41.90695119999999, + "lng": 12.4995912, + "zoom": 14, + "place_id": "ChIJo3v9wglhLxMRPUtWOuax73A", + "name": "Via Goito, 4", + "street_number": "4", + "street_name": "Via Goito", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00185", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cdp/", + "philea_info": { + "About": "• School – a priority theme with multiple facets, which require, in order o generate impact, to: achieve lower school drop-out rates, decrease university drop-out rates, increase support for disadvantaged students and improve the mental health of young people.\n• Art and Culture as vehicles for development – with the aim of evolving the call for Cultural Ecosystems to select initiatives that are sustainable in the long term, that are based on territorial networks participated in by the public administration and that create job opportunities and social rehabilitation.\n• Assistance and Research Sector – continue with the enabling of PNRR funds and focus on initiatives to increase the attractiveness of the sector and the retention of skills in the country", + "Mission": "Fondazione CDP pursues social, environmental, cultural and economic development objectives. It invests in the country’s strategic\nassets, with a particular focus on initiatives in favour of the younger generations and in support of human capital.", + "Geographic Focus": "Italy", + "Programme Areas": "Arts & Culture,\nEducation,\nEmployment/Workforce,\nHealth,\nHumanitarian & Disaster Relief,\nSciences & Research,\nSocial/Human Services,\nYouth/Children Development" + } + }, + { + "id": 20334, + "name": "European Forum Alpbach", + "address": "Mariahilfer Straße 47/1 1, Vienna, Austria", + "country": "Austria", + "email": "forum@alpbach.org", + "website": "http://www.alpbach.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Mariahilfer Straße 47/1 1, Vienna, Austria", + "lat": 48.19933379999999, + "lng": 16.3553679, + "zoom": 14, + "place_id": "EitNYXJpYWhpbGZlciBTdHIuIDQ3LzEgMSwgMTA2MCBXaWVuLCBBdXN0cmlhIh8aHQoWChQKEgk7TMYCjwdtRxEAmgsgWkEEBBIDMSAx", + "name": "Mariahilfer Str. 47/1 1", + "street_number": "47", + "street_name": "Mariahilfer Straße", + "street_name_short": "Mariahilfer Str.", + "city": "Wien", + "state": "Wien", + "post_code": "1060", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/european-forum-alpbach/", + "philea_info": { + "About": "The founder of the European Forum Alpbach Foundation is the European Forum Alpbach Association, which took place for the first time in August 1945 as one of the earliest international political and intellectual events in post-WWII Europe. Alpbach was created as an intellectual platform of discussion where Europe’s cultural, scientific and humanitarian heritage could be developed in a future-oriented way and where European integration could be promoted.", + "Mission": "The European Forum Alpbach (EFA) is a space and place for the emergence of reflection and action. It brings together young people from Europe and from all over the world with the most innovative minds from politics, business, civil society, culture, and science to drive ideas for a strong and democratic Europe. With this diverse, intergenerational, and interdisciplinary community, the Forum influences key actors throughout the European continent to facilitate their learning and decisions.", + "Geographic Focus": "Europe", + "Programme Areas": "Scholarships for students of all disciplines" + } + }, + { + "id": 20333, + "name": "European Network of Equality Bodies", + "address": "Place Victor Horta 40, Saint-Gilles, Belgium", + "country": "Belgium", + "email": "info@equineteurope.org", + "website": "http://www.equineteurope.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Place Victor Horta 40, Saint-Gilles, Belgium", + "lat": 50.8361342, + "lng": 4.3334527, + "zoom": 14, + "place_id": "ChIJpSVAGG3Ew0cRx_izmCdwvpE", + "name": "Pl. Victor Horta 40", + "street_number": "40", + "street_name": "Place Victor Horta", + "street_name_short": "Pl. Victor Horta", + "city": "Saint-Gilles", + "state": "Bruxelles", + "post_code": "1060", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/european-network-of-equality-bodies/", + "philea_info": { + "About": "Equinet is the European Network of Equality Bodies, a membership organisation of 47 National Equality Bodies. By strengthening and supporting National Equality Bodies, Equinet works towards achieving equality and ensuring nondiscrimination for everyone in Europe, in all aspects of their lives. Equality Bodies are public organisations that assist victims of discrimination. They monitor\nand report on discrimination issues and promote equality. They are legally required to do so in relation to one, some, or all of the grounds of discrimination covered by European Union law – gender, race and ethnicity, age, sexual orientation, religion or belief, and disability. Based on Equinet’s 2023-2026 Strategic Plan developed over the course of 2022 after an extensive evaluation and impact assessment, our main objectives are:\n• Strengthen and support Equality Bodies to achieve equality for all\n• Strengthen Equality Bodies as the cornerstones of national equality infrastructures\n• Support Equality Bodies through knowledge, capacity-building and skills sharing for the enforcement of their mandate Act as an expert voice of Equality Bodies in Europe on equality and nondiscrimination\n• Advance the equality agenda in Europe through strategic engagement and communication\n• Maintain Equinet’s position as a research and knowledge hub drawing on Equality Bodies’ experience of equality and non\u0002discrimination Maintain and improve Equinet’s capacity as a strong, resilient, and innovative Network\n• Ensure an enriching membership experience in Equinet, by tailoring activities and engaging all Members\n• Develop and sustain Equinet’s resources and accountability to better respond to Members’ needs", + "Mission": "Equinet promotes equality in Europe by supporting Equality Bodies to be independent and effective catalysts for more equal societies, and delivers its mission in a way that embodies and promotes its values.", + "Geographic Focus": "EU + accession and candidate countries + Norway + UK + Georgia + Moldova + Ukraine", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nHuman/Civil Rights" + } + }, + { + "id": 20331, + "name": "The Plastic Solutions Fund", + "address": "48th Street, New York, NY, USA", + "country": "United States", + "email": "", + "website": "https://plasticsolution.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "48th Street, New York, NY, USA", + "lat": 40.7484533, + "lng": -73.91574659999999, + "zoom": 14, + "place_id": "Ehg0OHRoIFN0LCBRdWVlbnMsIE5ZLCBVU0EiLiosChQKEgl78fjtHl_CiRHeaMoLqjVDDBIUChIJOwg_06VPwokRYv534QaPC8g", + "name": "48th Street", + "street_name": "48th Street", + "street_name_short": "48th St", + "state": "New York", + "state_short": "NY", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/the-plastic-solutions-fund/", + "philea_info": { + "About": "Our major areas of expertise are advocacy and movement building. Our distinguishing characteristic would be our practically unique philanthropic approach to ending plastic pollution. We focus on systemic change, we strongly believe a lasting and working solution for the crisis means turning off the plastics tap for good. We support production reductions, single-use-plastic phase out, economies of reuse, strong toxic chemical prohibitions and regulation, environmental justice for all people and animals affected throughout the plastics supply chain, among other lasting solutions for the problem.", + "Mission": "Reduce the impact of plastic pollution on ocean and terrestrial ecosystems and human health by helping achieve a world with a regenerative and distributive economy where the production and consumption of plastic products and packaging lie within planetary and social boundaries.", + "Geographic Focus": "Primarily, the US, Europe and Asia. We also fund strategic grants in Latin America and Africa.", + "Programme Areas": "The PSF centres its work in two groups of programme areas: Priority Initiative and Power Building. The first is related to subjects and opportunities we believe are in need of direct support from us (petrochemical development opposition, sachets prohibitions, economies of reuse). The second area is related to indirect support we give out to enhance the strength of allied organisations and movements, particularly Break Free From Plastic (BFFP), who we have supported practically since inception. Today there are no global discussions on plastic pollution where BFFP is not involved (to different degrees), and the PSF’s support is crucial to keep that going." + } + }, + { + "id": 20330, + "name": "Croatia for Children Foundation", + "address": "Park Stara Trešnjevka 4, Zagreb, Croatia", + "country": "Croatia", + "email": "info@zhzd.hr", + "website": "https://www.zhzd.hr/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Park Stara Trešnjevka 4, Zagreb, Croatia", + "lat": 45.7974746, + "lng": 15.9496377, + "zoom": 14, + "place_id": "ChIJBfeJYZXWZUcR8ZcqapkBkf0", + "name": "Park Stara Trešnjevka 4", + "street_number": "4", + "street_name": "Park Stara Trešnjevka", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/croatia-for-children-foundation/", + "philea_info": { + "About": "Promoting the well-being of children’s personal and property rights and strengthening families in situations of various social, health and educational needs of children. The purpose of the Foundation is achieved by giving grants in money and by supporting cultural, educational, sports, recreational and religious content, as well as giving others forms of support determined by the Foundation’s specific acts.", + "Mission": "Promoting the well-being of children’s personal and property rights and strengthening families in situations of various social, health and educational needs of children. The purpose of the Foundation is achieved by giving grants in money and by supporting cultural, educational, sports, recreational and religious content, as well as giving others forms of support determined by the Foundation’s specific acts.", + "Geographic Focus": "Croatia", + "Programme Areas": "Providing support to families with children who are in low-income financial condition, providing scholarships to pupils and students and announcing a public tender for financing projects of legal entities. Civil society, Voluntarism & Non-Profit Sector,\nHuman/Civil Rights,\nHumanitarian & Disaster Relief,\nSocio-economic Development, Poverty,\nYouth/Children Development" + } + }, + { + "id": 20328, + "name": "ChildInvest Foundation", + "address": "Ridlerstraße 55, Munich, Germany", + "country": "Germany", + "email": "info@child-invest-foundation.org", + "website": "http://www.child-invest-foundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ridlerstraße 55, Munich, Germany", + "lat": 48.1339139, + "lng": 11.5316548, + "zoom": 14, + "place_id": "ChIJ4enG2aXYnUcRDxxsSdtiAlQ", + "name": "Ridlerstraße 55", + "street_number": "55", + "street_name": "Ridlerstraße", + "city": "München", + "state": "Bayern", + "state_short": "BY", + "post_code": "80339", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/childinvest-foundation/", + "philea_info": { + "About": "The ChildInvest Foundation is the leading partner for all those who have been committed to a self-determined future for children and young people across generations. Effective and worldwide. The ChildInvest Foundation benefits of the huge network, know-how and expertise of SOS children’s villages worldwide as programmes and projects of SOS children’s villages are sponsored internationally and sustainably by the ChildInvest Foundation.", + "Mission": "We use our full potential for the goals of SOS Children’s Villages worldwide. In doing so, we are making a decisive difference in the lives of disadvantaged children and young people around the world.\nWith our many years of experience, we manage the foundation’s assets professionally and successfully. In close cooperation with our sponsors, we create tailor-made solutions for their philanthropic commitment.", + "Programme Areas": "Education,\nEmployment/Workforce,\nHumanitarian & Disaster Relief,\nYouth/Children Development" + } + }, + { + "id": 20259, + "name": "Schneider Electric Foundation", + "address": "Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, France", + "country": "France", + "email": "global-foundation@schneider-electric.com", + "website": "https://www.schneider-electric.com/en/about-us/sustainability/foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Schneider Electric, Hive, Rue Joseph Monier, Rueil-Malmaison, France", + "lat": 48.89122709999999, + "lng": 2.1722213, + "zoom": 14, + "place_id": "ChIJHdYfInJj5kcRuX4C4i6Ddss", + "name": "Schneider Electric", + "street_number": "35", + "street_name": "Rue Joseph Monier", + "city": "Rueil-Malmaison", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "92500", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/schneider-electric-foundation/", + "philea_info": { + "About": "In a world where social and environmental challenges are more widespread and more urgent than ever, the Schneider Electric Foundation supports innovative and forward-looking initiatives to give as many people as possible the energy they need to succeed.\nIt is this pioneering spirit that the Schneider Electric Foundation is seeking to advance. We see our role as a catalyst for technological, social and entrepreneurial innovation helping to close the energy gap and striving for a more equitable energy transition around the world. Ever optimistic, the Schneider Electric Foundation’s aim is to help build a fairer, lower-carbon society to give future generations the keys to transform our world.", + "Mission": "In a world where social and environmental challenges are more widespread and more urgent than ever, the Schneider Electric Foundation supports innovative and forward-looking initiatives to give as many people as possible the energy they need to succeed.\nIt is this pioneering spirit that the Schneider Electric Foundation is seeking to advance. We see our role as a catalyst for technological, social and entrepreneurial innovation helping to close the energy gap and striving for a more equitable energy transition around the world. Ever optimistic, the Schneider Electric Foundation’s aim is to help build a fairer, lower-carbon society to give future generations the keys to transform our world.", + "Geographic Focus": "Global", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nHumanitarian & Disaster Relief,\nSocio-economic Development, Poverty,\nYouth/Children Development" + } + }, + { + "id": 20258, + "name": "GivingTuesday", + "address": "GivingTuesday, 165 Court Street, New York, US", + "country": "United States", + "email": "info@givingtuesday.org", + "website": "http://givingtuesday.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "GivingTuesday, 165 Court Street, New York", + "lat": 40.6886093, + "lng": -73.9926709, + "zoom": 14, + "place_id": "ChIJ5eJDuE9awokR7gYe3G91m7U", + "street_number": "165", + "street_name": "Court Street", + "street_name_short": "Court St", + "state": "New York", + "state_short": "NY", + "post_code": "11201", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/givingtuesday/", + "philea_info": { + "About": "Areas of expertise: global grassroots network development; grassroots/localization philanthropy; data and research on generosity; communications. The organization’s key strength has been the combined development of a 100+ strong country network mobilising millions of NGOs and citizens each year to invest their philanthropic time and efforts in leaving their community better than they find it, and having the data and research capabilities to observe, learn, understand, and improve giving ecosystems.", + "Mission": "GivingTuesday reimagines a world built upon shared humanity and generosity. Our global network collaborates year-round to inspire generosity around the world, with a common mission to build a world where generosity is part of everyday life.", + "Geographic Focus": "Global", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nHuman/Civil Rights,\nHumanitarian & Disaster Relief,\nYouth/Children Development" + } + }, + { + "id": 20257, + "name": "Learning Planet Institute", + "address": "Learning Planet Institute, Rue Charles V, Paris, France", + "country": "France", + "email": "team.communication@learningplanetinstitute.org", + "website": "https://www.learningplanetinstitute.org/en/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Learning Planet Institute, Rue Charles V, Paris, France", + "lat": 48.853082, + "lng": 2.3628393, + "zoom": 14, + "place_id": "ChIJqa2L8_5x5kcRntOBJ0fhHgs", + "name": "Learning Planet Institute", + "street_number": "8 bis", + "street_name": "Rue Charles V", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75004", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/learning-planet-institute/", + "philea_info": { + "About": "To achieve its goals, the Learning Planet Institute creates research and educational programmes based on interdisciplinarity, diversity and initiative. This relies on the synergies between its activities: R&D, Education, International Alliance, Transformation of Organisations and Digital Ecosystems.", + "Mission": "The Institute’s mission is to explore, research and share new ways of learning and cooperating in order to respond to the needs of the youth and the planet. By encouraging and disseminating a culture, methods and tools for empowerment, it transforms organisations. Ultimately, it leads communities and supports “Learning Planetizens” to take care of themselves, others and the planet.", + "Geographic Focus": "Global", + "Programme Areas": "Education,\nEnvironment/Climate,\nHealth,\nSciences & Research,\nYouth/Children Development" + } + }, + { + "id": 20255, + "name": "ENAR Foundation", + "address": "ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium", + "country": "Belgium", + "email": "info@enarfoundation.eu", + "website": "http://enarfoundation.eu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ENAR Foundation, Avenue des Arts 3-4-5, Brussels, Belgium", + "lat": 50.8485433, + "lng": 4.3697963, + "zoom": 14, + "place_id": "ChIJq6p6QH3Dw0cR0bgFO6FsPbQ", + "street_number": "3", + "street_name": "Avenue des Arts", + "street_name_short": "Av. des Arts", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1210", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/enar-foundation/", + "philea_info": { + "About": "An organisation established by racialised individuals, for racialised communities and individuals alike. Empowering the communities we serve and ensuring they can be their own agents of change is at the heart of who we are and what we do.", + "Mission": "ENAR Foundation is the first pan-European anti-racist foundation, established by the pan-European anti-racist movement itself. We achieve this by facilitating access to funding for grassroots activists and non-profit organisations battling against racism and its effects on communities and individuals alike.", + "Geographic Focus": "Europe", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEmployment/Workforce,\nEnvironment/Climate,\nHuman/Civil Rights,\nPeace & Conflict Resolution,\nSocio-economic Development, Poverty" + } + }, + { + "id": 20254, + "name": "Fast Forward Foundation", + "address": "Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy", + "country": "Italy", + "email": "info@fffoundation.eu", + "website": "https://www.fffoundation.eu/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Domenichino, 5, Milan, Metropolitan City of Milan, Italy", + "lat": 45.4734579, + "lng": 9.1502269, + "zoom": 14, + "place_id": "ChIJ5-LDyXHBhkcRWyJ4Vv0Labk", + "name": "Via Domenichino, 5", + "street_number": "5", + "street_name": "Via Domenichino", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20149", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fast-forward-foundation/", + "philea_info": { + "About": "The Foundation’s methodology involves research projects, workshops, pilot projects, awareness campaigns and advocacy activities. This innovative methodology, together with the Foundation’s integrated perspective on integrated welfare, are the distinguishing elements of the Foundation. The Foundation intends to contribute to the well-being of individuals and society as a whole by contributing to the development of more sustainable and inclusive welfare systems.", + "Mission": "To foster the sustainable and inclusive transformation of welfare systems for the protection of individuals and communities", + "Geographic Focus": "Europe, and in particular Italy, Poland, France, Spain, Portugal, Greece, Czech Republic, Slovakia, Croatia", + "Programme Areas": "Citizenship, Social Justice & Public Affairs,\nEducation,\nEmployment/Workforce,\nHealth,\nSciences & Research,\nSocio-economic Development, Poverty" + } + }, + { + "id": 20007, + "name": "TrygFonden", + "address": "Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark", + "country": "Denmark", + "email": "info@trygfonden.dk", + "website": "http://www.trygfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Tryg Fonden Lyngby Hovedgade 4, 2. Sal 2800 Kgs. Lyngby Denmark", + "lat": 55.7751248, + "lng": 12.4944702, + "zoom": 14, + "place_id": "EjhMeW5nYnkgSG92ZWRnYWRlIDQsIDIuIFNhbCwgMjgwMCBLb25nZW5zIEx5bmdieSwgRGVubWFyayIiGiAKFgoUChIJF06CLkJOUkYR3k7-qC9tb_oSBjIuIFNhbA", + "street_number": "4", + "street_name": "Lyngby Hovedgade", + "city": "Kongens Lyngby", + "post_code": "2800", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/trygfonden/", + "philea_info": { + "About": "TrygFonden is a democratically led philanthropical organization with a member base of 1.5 mil. Danes. TrygFonden works strategically through our own programmes, partnerships and grants to create greater peace of mind in Denmark.", + "Mission": "TrygFonden’s mission is to contribute to everyone in Denmark being able to take responsibility for their own peace of mind and the peace of mind of others.", + "Geographic Focus": "Denmark", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nHealth,\nRecreation, Sport & Well-being,\nSciences & Research,\nSocial/Human Services,\nYouth/Children Development" + } + }, + { + "id": 20006, + "name": "Dioraphte Foundation", + "address": "Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG Dordrecht Netherlands", + "country": "Netherlands", + "email": "postbus@dioraphte.nl", + "website": "http://www.dioraphte.nl/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Dioraphte Foundation Kuipershaven 169 PO Box 255 - 3300 AG Dordrecht Netherlands", + "lat": 51.81749250000001, + "lng": 4.666106399999999, + "zoom": 14, + "place_id": "ChIJkU_mmswuxEcRMxnRKINOMzk", + "street_number": "169", + "street_name": "Kuipershaven", + "city": "Dordrecht", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "3311 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/dioraphte-foundation/", + "philea_info": { + "About": "Support initiatives that have a significant impact on peoples’ lives.", + "Mission": "Support initiatives that have a significant impact on peoples’ lives.", + "Geographic Focus": "Both in the Netherlands and Africa (Ethiopia, Kenya, Malawi and Uganda, and and some projects in Sudan).", + "Programme Areas": "Arts & Culture,\nEducation,\nHuman/Civil Rights,\nSciences & Research,\nSocial/Human Services,\nSocio-economic Development, Poverty,\nYouth/Children Development,\nOther (please specify):\nNeglected Tropical Diseases" + } + }, + { + "id": 20005, + "name": "LEO Foundation", + "address": "Lautrupsgade 7, 2100 København, Denmark", + "country": "Denmark", + "email": "info@leo-foundation.org", + "website": "http://leo-foundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": false, + "link": "https://philea.eu/members/leo-foundation/", + "philea_info": { + "About": "The LEO Foundation supports research into skin and skin diseases. We are probably the World’s largest private funder of independent research within this field.", + "Mission": "The LEO Foundation supports research into skin and skin diseases. We are probably the World’s largest private funder of independent research within this field.", + "Geographic Focus": "Denmark and global", + "Programme Areas": "Education,\nHealth,\nSciences & Research" + } + }, + { + "id": 20004, + "name": "Helvetas Swiss Intercooperation", + "address": "Helvetas Swiss Intercooperation Weinbergstr. 22a 8021 Zurich Switzerland", + "country": "Switzerland", + "email": "info@helvetas.org", + "website": "http://www.helvetas.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Helvetas Swiss Intercooperation, Weinbergstrasse 22a, Zürich, Switzerland", + "lat": 47.3786889, + "lng": 8.544779000000002, + "zoom": 14, + "place_id": "ChIJr5nzgaegmkcRFBVK87C2GJ8", + "name": "Helvetas Swiss Intercooperation (Hauptsitz)", + "street_number": "22a", + "street_name": "Weinbergstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8021", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/helvetas-swiss-intercooperation/", + "philea_info": { + "About": "Helvetas is committed to a just world in which all people determine the course of their lives in dignity and security, using environmental resources in a sustainable manner. Helvetas is an independent organization for development based in Switzerland with affiliated organizations in Germany and the United States. Helvetas supports poor and disadvantaged people and communities in almost 40 developing and transitional countries in Africa, Asia, Latin America and Eastern Europe.\nTogether with our partners, Helvetas tackles global challenges at various levels: with projects on the ground, with expert advice, and by advocating for conducive framework conditions benefiting the poor. This triple commitment is empowering people and transforming lives. Helvetas follows a multi-stakeholder approach by linking civil society actors, governments and the private sector.\nHelvetas is active in the following areas: water, food and climate, education, jobs and private sector development, governance, gender and social equity. Helvetas engages in emergency relief, reconstruction and rehabilitation. In addition to rural areas, Helvetas is increasingly involved in urban development and is focusing its work on young people.", + "Mission": "We support poor and disadvantaged people and communities in developing and transitional countries in their efforts to improve their living conditions.\nThrough development cooperation, we support people in improving their livelihoods themselves in a sustainable manner.\nWe promote equitable access to the resources and services necessary for life, and thus contribute to overcoming the root causes of poverty.\nWe uphold the protection and promotion of social, economic, political, environmental and cultural rights and responsibilities, and seek to ensure their practical implementation.\nWe support our partners in engaging in development policy issues.\nWe advocate for a coherent Swiss foreign and economic policy, responsive to the needs of people in developing and transition countries.\nWe accompany and support our partners on a long-term basis.", + "Geographic Focus": "Eastern Europe, Asia, Africa and Latin America", + "Programme Areas": "Civil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHuman/Civil Rights,\nPeace & Conflict Resolution,\nSocio-economic Development, Poverty" + } + }, + { + "id": 20003, + "name": "Fondation Bernheim", + "address": "Fondation Bernheim rue des Bouchers, 53 1000 Brussels Belgium", + "country": "Belgium", + "email": "info@fondationbernheim.be", + "website": "http://www.fondationbernheim.be", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation Bernheim, Rue des Bouchers 53, 1000 Brussels, Belgium", + "lat": 50.8476462, + "lng": 4.3551247, + "zoom": 20, + "place_id": "ChIJ0fWLfn_Ew0cRyW5kghihGo4", + "name": "Fondation Bernheim", + "street_number": "53", + "street_name": "Rue des Bouchers", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/fondation-bernheim/", + "philea_info": { + "About": "Fondation Bernheim was created in 1974 by Emile Bernheim, who established L’Innovation department store in Brussels. He believed that the money earned during one’s professional life should go back to society, as that is where it came from. Emile Bernheim died in 1985. The foundation became operational in 1998.", + "Mission": "To support economic and social issues; education; culture and research; and peace.", + "Geographic Focus": "Belgium, Brussels Region", + "Programme Areas": "Education,\nSocio-economic Development, Poverty,\nYouth/Children Development" + } + }, + { + "id": 20001, + "name": "Built by Nature", + "address": "Built by Nature Singel 542 1017AZ Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://builtbn.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Built by Nature, Singel 542, 1017 AZ Amsterdam, Netherlands", + "lat": 52.3665859, + "lng": 4.8921853, + "zoom": 14, + "place_id": "ChIJoy0K398JxkcR4vQ7fDg_usU", + "name": "Built by Nature", + "street_number": "542", + "street_name": "Singel", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1017 AZ", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/built-by-nature/", + "philea_info": { + "About": "Built by Nature is a network and grant-making fund dedicated to accelerating the timber building transformation in Europe. We support pioneering developers, architects and engineers, asset owners and managers, investors and insurers, city leaders, academics, researchers, non-profits and policymakers by connecting industry and city frontrunners, creating the networks and opportunities for sector-shaping coalitions, and knowledge sharing. We enable innovation and change by convening teams and funding solutions that highlight the innovation, city-scale projects and advocacy required, and amplify the success stories, case studies and knowledge generated by our networks.", + "Mission": "Built by Nature’s mission is to accelerate the use of sustainable and other biobased materials in the built environment", + "Geographic Focus": "We are currently growing our network across the European Union, the UK (United Kingdom), Switzerland, and Norway. We are constantly reviewing our strategy and will be looking to expand our scope in the future", + "Programme Areas": "Environment/Climate (Networks, Knowledge & Innovation, Demonstrations, Strategic Communications, Policy, and Grant making)" + } + }, + { + "id": 19999, + "name": "André Losch Fondation", + "address": "32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg", + "country": "Luxembourg", + "email": "", + "website": "https://www.loschfondation.lu/domaines-intervention/recherche-scientifique/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "32/34 Bd Grande-Duchesse Charlotte, 1330 Ville Haute Luxembourg", + "lat": 49.6119323, + "lng": 6.118839499999999, + "zoom": 13, + "place_id": "ChIJq5jGyNROlUcRDUrKS2jaj94", + "name": "32/34 Bd Grande-Duchesse Charlotte", + "street_number": "32/34", + "street_name": "Boulevard Grande-Duchesse Charlotte", + "street_name_short": "Bd Grande-Duchesse Charlotte", + "city": "Luxembourg", + "state": "Luxembourg", + "post_code": "1330", + "country": "Luxembourg", + "country_short": "LU" + }, + "link": "https://philea.eu/members/andre-losch-fondation/", + "philea_info": { + "About": "The André Losch Foundation provides independent and impartial support for projects dedicated to young people in the Grand Duchy, in the fields of education, social inclusion and health. Its aim is to contribute to the development of a fairer, more sustainable and cohesive society.\nThe Foundation believes in the importance of long-term collaboration with its partners in order to make the most of everyone’s skills and resources. Our aim is to support projects over the long term, to establish a complementary relationship and to move forward together. In this context, we favour long-term partnerships with a limited number of institutions. The relationship of trust that this creates makes it easier to monitor the actions supported and measure their final impact.", + "Mission": "Helping to create a fairer, more sustainable and inclusive society for young people in Luxembourg.", + "Geographic Focus": "Luxembourg", + "Programme Areas": "EDUCATION : fostering critical thinking and initiative through formal and non-formal education, on the themes of learning about science, sustainable development and global citizenship.\nSOCIAL INCLUSION : encouraging the socio-professional inclusion of vulnerable young people\nHEALTH : to bring relief to children and young people affected by illness or disability, and to their families, by making their daily lives easier, improving care and support, and providing moments of joy and relief." + } + }, + { + "id": 19998, + "name": "Airbus Foundation", + "address": "2 Rond-Point Emile Dewoitine, 31700 Blagnac, France", + "country": "France", + "email": "", + "website": "https://www.airbus.com/en/sustainability/airbus-foundation", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "2 Rond-Point Emile Dewoitine, 31700 Blagnac, France", + "lat": 43.621905, + "lng": 1.3854504, + "zoom": 14, + "place_id": "ChIJSR5B1be6rhIRYg-1AuSxoLc", + "name": "2 Rdpt Emile Dewoitine", + "street_number": "2", + "street_name": "Rond-Point Emile Dewoitine", + "street_name_short": "Rdpt Emile Dewoitine", + "city": "Blagnac", + "state": "Occitanie", + "post_code": "31700", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/airbus-foundation/", + "philea_info": { + "About": "The Airbus Foundation provides access to Airbus’ unique portfolio of high-tech products, services and know-how to help address some of the world’s most pressing problems, contributing to sustainable solutions for a safe and united world. Humanitarian response, Youth development, Environment (climate change & nature conservation) focus.", + "Mission": "The Airbus Foundation provides access to Airbus’ unique portfolio of high-tech products, services and know-how to help address some of the world’s most pressing problems, contributing to sustainable solutions for a safe and united world. Humanitarian response, Youth development, Environment (climate change & nature conservation) focus.", + "Programme Areas": "Humanitarian Response (Helping the work of disaster relief and emergency responders through use of Airbus products, services and innovation.); Youth Development (Supporting those who inspire the next generation with digital STEM content, through the Airbus Foundation Discovery Space.) Environment (Expanding the Foundation’s scope to partner with NGOs using our products & services that are able to support their climate change mitigation and nature conservation actions.)" + } + }, + { + "id": 19431, + "name": "Ashoka", + "address": "Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, VA United States", + "country": "", + "email": "", + "website": "http://www.ashoka.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ashoka 2200 Wilson Blvd, Suite 102, Unit #313 22201 Arlington, VA United States", + "lat": 38.8910142, + "lng": -77.0860842, + "zoom": 14, + "place_id": "EjIyMjAwIFdpbHNvbiBCbHZkIDEwMiAzMTMsIEFybGluZ3RvbiwgVkEgMjIyMDEsIFVTQSIjGiEKFgoUChIJB2wlOAy3t4kRtpoV6mrgiecSBzEwMiAzMTM", + "street_number": "2200", + "street_name": "Wilson Boulevard", + "street_name_short": "Wilson Blvd", + "city": "Arlington", + "state": "Virginia", + "state_short": "VA", + "post_code": "22201", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/ashoka/", + "philea_info": { + "About": "Ashoka was founded 1981 by Bill Drayton in the US. Subsequently, the Ashoka network has grown to support leading social entrepreneurs (Ashoka Fellows) in 70 countries, including 13 in Europe. All country offices are fully owned by Ashoka Global. Ashoka is a geographically decentralized and strategically integrated organization hiring only entrepreneurs as leaders.", + "Mission": "Ashoka builds and cultivates a community of Fellows, Young Changemakers, Changemaker Institutions, and beyond who see that the world now requires everyone to be a changemaker – a person that sees themselves as capable of creating large-scale, positive change. Together, amidst the exponential growth of a new inequality in changemaking at a worldwide scale, we mobilize (and accelerate) a movement to build an “Everyone a Changemaker” world where all people have the right and ability to co-lead solutions that transform their societies for the better.", + "Geographic Focus": "Global; 13 offices in Europe, Germany the largest.", + "Programme Areas": "Main programme areas:\nAnimal-Related,\nCitizenship, Social Justice & Public Affairs,\nCivil society, Voluntarism & Non-Profit Sector,\nEducation,\nEmployment/Workforce,\nEnvironment/Climate,\nFood, Agriculture & Nutrition,\nHealth,\nHuman/Civil Rights,\nHumanitarian & Disaster Relief,\nPeace & Conflict Resolution,\nRecreation, Sport & Well-being,\nSocial/Human Services,\nSocio-economic Development, Poverty,\nYouth/Children Development Our changemaker community consists of 4,000+ Fellows, 100+ Young Changemakers, 250+ change institutions, and 300+ partners across more than 95 countries. Together, we form a strong, diverse and vibrant ecosystem of change agents collaborating and co-leading to positively transform societies and cultures around the world. Ashoka has pioneered the field of social entrepreneurship, identifying and supporting the world’s leading social entrepreneurs since 1980. Social entrepreneurs are individuals with innovative solutions to society’s most pressing social, cultural, and environmental challenges. Social entrepreneurs are ambitious and persistent — tackling major issues and offering new ideas for systems-level change. They model changemaking behavior, and catalyze organizations and movements where everyone can be changemaker. Ashoka Fellows are social entrepreneurs that directly impact the lives of millions of people across the globe. They provide examples, ideas, and insights that can serve as a roadmap in the new “everyone a changemaker” world. By continuing to develop our expansive network of Fellows — providing financial, knowledge, and logistical support to more than 3,600 change leaders in 90+ countries — Ashoka works to share the wisdom of leading social entrepreneurs with a global audience. Ashoka social entrepreneurs serve as role models and provide the how-to’s that enable individuals, organizations, and whole societies to flourish in a world of rapid change. For more than 35 years, Ashoka has built and nurtured the largest network of leading social entrepreneurs in the world. After a rigorous selection process, they are introduced to a life-long fellowship, where every member is committed to championing new patterns of social good. We encourage Ashoka Fellows to take ownership of the network and we partner with them to co-create Ashoka’s vision of an Everyone a Changemaker world. Powered by Ashoka, Next Now identifies, supports and lifts up these examples, and the changemakers behind them. From a bird’s eye perspective, we see patterns and frontiers of innovation that show a way to a better future. We weave a community of innovators committed to building it, and share our findings and insights with the world. Next Now has started to identify these patterns in the following fields: The New Longevity, Gender, Planet & Climate, Tech & Humanity. Ashoka Changemakers is building a global movement where anyone, anywhere, can take action to solve a social problem in in their community. We work to build this movement by supporting social entrepreneurs, innovators, business leaders, policy makers, and activists who are changemaking, by delivering ground-breaking analysis, by accelerating entrepreneurship, and creating strong partnerships that will drive the movement forward." + } + }, + { + "id": 19430, + "name": "Fondation RAJA-Danièle Marcovici", + "address": "Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 95977 Roissy France", + "country": "", + "email": "fondation@raja.fr", + "website": "http://www.fondation-raja-marcovici.com/accueil.html", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation RAJA-Danièle Marcovici 16 Rue de l’étang Paris Nord 2 95977 Roissy France", + "lat": 49.00363, + "lng": 2.516978, + "zoom": 14, + "place_id": "ChIJA3Nv1oQV5kcRrYuF0xf2gzU", + "city": "Roissy-en-France", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "95700", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-raja-daniele-marcovici/", + "philea_info": { + "About": "The Foundation is the oldest foundation created in France in favor of women. We are active in France and around the world, and we finance actions committed to the fight against violence against women, access to education, empowerment and integration of women. For 18 years, we have been able to mobilize a budget of more than 15 million euros, under the presidency of Danièle Kapel-Marcovici, its President. Danièle Kapel-Marcovici is also the CEO of the RAJA Group, which is present in 19 European countries, with 26 subsidiaries.", + "Mission": "Conscious of the social and environmental role of the company, Danièle Kapel-Marcovici, President of the RAJA Group, created the RAJA-Danièle Marcovici Foundation in 2006. To promote the empowerment of women and improve their living conditions, the Foundation develops partnerships with associations working in France and abroad, provides financial support for projects and conducts awareness and information campaigns for its partners and the general public.", + "Geographic Focus": "40% in France, 60% in other countries worldwide", + "Programme Areas": "Women’s rights and gender equality" + } + }, + { + "id": 19429, + "name": "Schöpflin Stiftung", + "address": "Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany", + "country": "", + "email": "kontakt@schoepflin-stiftung.de", + "website": "http://www.schoepflin-stiftung.de/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Schoepflin Stiftung Industriestraße 2 D-79541 Lörrach Germany", + "lat": 47.6352322, + "lng": 7.6800016, + "zoom": 14, + "place_id": "ChIJId3VtESwkUcR8DfHFU8WNUg", + "street_number": "2", + "street_name": "Industriestraße", + "city": "Lörrach", + "state": "Baden-Württemberg", + "state_short": "BW", + "post_code": "79541", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/schopflin-stiftung/", + "philea_info": { + "About": "The Schoepflin Foundation is an independent and non-profit foundation based in Lörrach, Germany. Besides running our own in-house projects and programs we also provide grants to external initiatives and organizations. In our in-house facilities in Lörrach, we use innovative solutions and formats to empower children and young people; we offer sociopolitical (thought) impetus; and we test out forms of participation. As a supra-regional funding foundation, we use social venture capital to facilitate experiments and ensure their dissemination in civil society.", + "Mission": "We invest in courageous people and bold ideas – for critical awareness, a vibrant democracy and a diverse society. Now and in the future.", + "Geographic Focus": "Europe, Germany", + "Programme Areas": "Our main expertise are in the fields of education, of addiction prevention, of culture and the arts, of democracy, of media and consumer protection. Our key methodological elements are social venture capital and capacity building." + } + }, + { + "id": 19428, + "name": "Quäker-Hilfe Stiftung", + "address": "Quäker-Hilfe Stiftung Rosenstraße 2 32257 Bünde Germany", + "country": "", + "email": "", + "website": "https://www.quaeker-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Quäker-Hilfe Stiftung, Rosenstraße 2, 32257 Bünde, Germany", + "lat": 52.2082519, + "lng": 8.568406800000002, + "zoom": 14, + "place_id": "ChIJ31AA28JRqEcRjq81O0GBmXo", + "name": "Quäker-Hilfe Stiftung", + "street_number": "2", + "street_name": "Rosenstraße", + "city": "Bünde", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "32257", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/quaker-hilfe-stiftung/", + "philea_info": { + "About": "The Quaker Aid Foundation (QHS) is part of a worldwide network of Quaker philanthropies and organizations dedicated to social justice, world peace, and humanitarian aid. Today, QHS and its partners support projects in more than 20 countries. With different focal points, all projects aim to advance lasting peace and justice in the world.\nThe Quaker Aid Foundation is one of very few philanthropies that directly supports programs that are carried out or supported by Quaker organizations and Meetings. Supported projects and activities my contribute to the objectives of peace and justice.", + "Mission": "The Quaker Aid Foundation (QHS) is part of a worldwide network of Quaker philanthropies and organizations dedicated to social justice, world peace, and humanitarian aid. Today, QHS and its partners support projects in more than 20 countries. With different focal points, all projects aim to advance lasting peace and justice in the world.\nThe Quaker Aid Foundation is one of very few philanthropies that directly supports programs that are carried out or supported by Quaker organizations and Meetings. Supported projects and activities my contribute to the objectives of peace and justice.", + "Programme Areas": "1. Promoting an international spirit, tolerance in all areas of culture and the idea of international understanding. This purpose is realized through reconciliation and peace work, also between states or hostile groups, organizations or individuals.\n2. Promoting or caring for the politically, racially or religiously persecuted, for refugees, displaced persons, war victims, war survivors, war and physically disabled and blind persons, prisoners of war who are still abroad and returnees and by promoting old-age welfare. This purpose is pursued in particular abroad and in crisis areas.\n3. Promoting the welfare of prisoners and former prisoners. This purpose is pursued at home and abroad.\n4. Conducting public relations work, in order to raise awareness of the causes of poverty and need worldwide and to strengthen the social responsibility and willingness to help of citizens in the Federal Republic of Germany. In addition, a better understanding of the\nliving conditions of people, primarily in developing countries, international understanding and tolerance are promoted." + } + }, + { + "id": 19427, + "name": "Interogo Foundation", + "address": "Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein", + "country": "", + "email": "contact@interogofoundation.com", + "website": "https://www.interogofoundation.com/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Interogo Foundation Kirchstrasse 79 9490 Vaduz Liechtenstein", + "lat": 47.1364154, + "lng": 9.5137852, + "zoom": 14, + "place_id": "ChIJeUmgUGExm0cR0NhlTwn4z_o", + "street_number": "79", + "street_name": "Kirchstrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/interogo-foundation/", + "philea_info": { + "About": "Interogo Foundation focuses on governing the investment business and providing the financial reserves required to secure independence and longevity of the IKEA Concept. Interogo Foundation shall, through its investment business, secure a financial reserve for rainy days for when the IKEA Concept at some time in the future were to face very serious challenges.", + "Mission": "The purpose of Interogo Foundation is to secure the independence and the longevity of the IKEA Concept and the financial reserves needed to ensure this." + } + }, + { + "id": 19426, + "name": "Fondazione di Sardegna", + "address": "Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari Italy", + "country": "", + "email": "fondazione@fondazionedisardegna.it", + "website": "https://www.fondazionedisardegna.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Banco di Sardegna Via Carlo Alberto 7 07100 Sassari Italy", + "lat": 40.7246173, + "lng": 8.563093799999999, + "zoom": 14, + "place_id": "ChIJGfsi5fxj3BIRPIs5rQ61EwY", + "street_number": "7", + "street_name": "Via Carlo Alberto", + "city": "Sassari", + "state": "Sardegna", + "state_short": "SS", + "post_code": "07100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-di-sardegna-2/", + "philea_info": { + "About": "In pursuing its objectives, the Foundation directly supports infrastructure development and management, moreover they assist the production of services that could improve the quality of life of his community, the endogenous growth of the area in all its aspects and the settlement of both economic and social activities.", + "Mission": "Under the principles of self-organization and subsidiarity, the foundation promotes social and economic development of Sardinia by financing both third parties’ initiatives and its own initiatives and projects mainly within Sardinia’s geographical boundaries.", + "Geographic Focus": "Sardinia", + "Programme Areas": "The foundation supports initiatives in the following areas: • Scientific and technological research\n• Public health\n• Art and cultural heritage\n• Philanthropy, charity and volunteering" + } + }, + { + "id": 19425, + "name": "Fondation Salvia", + "address": "Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 Geneva 3 Switzerland", + "country": "", + "email": "", + "website": "", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation Salvia 1, Place de St. Gervais case postale 5017 1211 Geneva 3 Switzerland", + "lat": 46.2057902, + "lng": 6.143098999999999, + "zoom": 14, + "place_id": "ChIJJfuPPChljEcRiDAUJoXWCho", + "street_number": "1", + "street_name": "Place de Saint-Gervais", + "street_name_short": "Pl. de Saint-Gervais", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1201", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-salvia/", + "philea_info": { + "About": "", + "Mission": "To support the development of better protection for the global environment based on the study of nature using a holistic approach (scientific, systemic and qualitative); to support the education of young people from the same holistic perspective, with the aim of encouraging the full development of all the child’s and student’s capacities – intellectual, emotional and social – by promoting proven alternative teaching methods; to encourage studies on the phenomenon of consciousness and to support initiatives promoting the evolution of consciousness and a better understanding of personal and transpersonal psychology; to encourage improvements in the democratic organisation of society and in electoral and parliamentary systems that promote the common good, inter alia by promoting direct democracy and studying ways of improving the various electoral systems, and to support and promote the protection of animals, in particular but not exclusively with the aim of combating cruelty to animals that may result from various practices, experiments and/or manipulations likely to cause suffering.", + "Geographic Focus": "Switzerland and Europe, including European neighbourhoods", + "Programme Areas": "Animal-Related\nCitizenship, Social Justice & Public Affairs\nCivil society, Voluntarism & Non-Profit Sector\nEducation\nEnvironment/Climate\nFood, Agriculture & Nutrition\nHuman/Civil Rights\nSciences & Research\nSocial/Human Services\nYouth/Children Development" + } + }, + { + "id": 19064, + "name": "The Partnering Initiative", + "address": "The Partnering Initiative 21B Park End Steet OX1 1HU Oxford United Kingdom", + "country": "United Kingdom", + "email": "info@tpiglobal.org", + "website": "https://tpiglobal.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "The Partnering Initiative, 21B Park End Street, Oxford OX1 1HU, United Kingdom", + "lat": 51.75251379999999, + "lng": -1.2685284, + "zoom": 14, + "place_id": "ChIJ95fJfE7BdkgR1A3osMbUerY", + "name": "The Partnering Initiative", + "street_number": "21B", + "street_name": "Park End Street", + "street_name_short": "Park End St", + "city": "Oxford", + "state": "England", + "post_code": "OX1 1HU", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/the-partnering-initiative/", + "philea_info": { + "About": "The Partnering Initiative (TPI) was initiated in 2003 with the passionate belief that only through systematic, effective collaboration among business, government, NGOs, the UN, foundations and others can the world achieve a collective, all-of-society vision of thriving societies underpinned by a prosperous economy and a healthy environment.", + "Mission": "Our mission is to unleash the power of partnership by systematising and professionalising the practice of collaboration and building the capabilities and supportive infrastructure that allow partnering to thrive.", + "Programme Areas": "Through our programmes of action research, we systematise the essential processes of partnering and develop reference standards and practical tools to help all sectors identify new opportunities, learn how to collaborate and implement effective partnerships. Our training and capacity-building programmes promote new standards of professional partnering practice and build the skills of practitioners around the world. The strategic advice and support we provide to leading international companies, development agencies, foundations, governments, and international NGOs helps them rethink and adjust their approaches to become ‘fit for partnering’ and fully harness the power of partnership to support their missions. The services we provide directly to partnerships help a wide range of collaborations to transform into strong, efficient and highly effective mechanisms that are yielding benefits well beyond their original objectives." + } + }, + { + "id": 19063, + "name": "Lloyd’s Register Foundation", + "address": "Lloyd’s Register Foundation 71 Fenchurch Street EC3M 4BS London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.lrfoundation.org.uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lloyd's Register Foundation, 71 Fenchurch Street, London EC3M 4BS, United Kingdom", + "lat": 51.51243349999999, + "lng": -0.07900689999999998, + "zoom": 14, + "place_id": "ChIJnepqXKgDdkgRqbSHjgmq5PE", + "name": "Lloyd's Register Foundation", + "street_number": "71", + "street_name": "Fenchurch Street", + "street_name_short": "Fenchurch St", + "city": "London", + "state": "England", + "post_code": "EC3M 4BS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/lloyds-register-foundation/", + "philea_info": { + "About": "Lloyd’s Register Foundation is an independent global charity with a unique structure and an important mission: engineering a safer world.* We reduce risk and enhance the safety of the critical infrastructure that modern society relies upon in areas such as energy, transport and food. We do this by supporting high quality research, accelerating technology to application and through education and public outreach.* Our unique structure comes from the fact that we own a significant trading company, Lloyd’s Register Group (LRG). We share the same mission and work together to make the world a safer place.", + "Mission": "The foundation aims to secure for the benefit of the community high technical standards of design, manufacture, construction, maintenance, operation and performance for the purpose of enhancing the safety of life and property at sea and on land and in the air.\nThe foundation also pursue the advancement of public education including within the transportation industries and any other engineering and technological disciplines The Foundation’s purpose is to provide public benefit in the following specific areas, which are listed in its Articles of Association:* (a) to secure for the benefit of the community high technical standards of design, manufacture, construction, maintenance, operation and performance, for the purpose of enhancing the safety of life and property at sea and on land and in the air; or* (b) the advancement of public education including within the transportation industries and any other engineering and technological disciplines.", + "Geographic Focus": "Global", + "Programme Areas": "Safety, Ocean Economy, Maritime and Infrastructure" + } + }, + { + "id": 19062, + "name": "Africa-Europe Foundation", + "address": "Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels Belgium", + "country": "Belgium", + "email": "", + "website": "https://www.africaeuropefoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Africa-Europe Foundation Square de Meeûs 5-6 1000 Brussels Belgium", + "lat": 50.8476424, + "lng": 4.3571696, + "zoom": 14, + "place_id": "ChIJZ2jHc-2kw0cRpwJzeGY6i8E", + "city": "Brussels", + "state": "Brussels", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/africa-europe-foundation/", + "philea_info": { + "About": "The Foundation’s aim is to become the platform of platforms for the future of the Africa-Europe Partnership. The Africa-Europe Foundation’s ambition is to become a network of networks to catalyse partnership between the two continents. Our purpose is to bring together new voices, fresh thinking, and to reinvigorate the partnership though our growing network of like-minded stakeholder and partners.", + "Mission": "The purpose of the Africa-Europe Foundation is to facilitate multi-stakeholder dialogue, catalyse partnerships and unlock new opportunities that can transform Africa-Europe relations into action.", + "Geographic Focus": "Africa and Europe", + "Programme Areas": "Education,\nEmployment/Workforce\nEnvironment/Climate\nFood, Agriculture & Nutrition\nHealth\nPeace & Conflict Resolution\nSciences & Research\nYouth/Children Development\nDigital Transformation, and Migration and Mobility" + } + }, + { + "id": 19061, + "name": "Fondazione Cassa di Risparmio di Foligno", + "address": "Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 Fologno Italy", + "country": "Italy", + "email": "info@fondazionecarifol.it", + "website": "https://www.fondazionecarifol.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Foligno Corso Cavour 36 06034 Fologno Italy", + "lat": 42.9547732, + "lng": 12.7051368, + "zoom": 8, + "place_id": "ChIJT8G4q9uFLhMRdNVFwIORbzU", + "street_number": "36", + "street_name": "Corso Camillo Benso Conte di Cavour", + "city": "Foligno", + "state": "Umbria", + "state_short": "PG", + "post_code": "06034", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-foligno/", + "philea_info": { + "About": "Nonprofit activities for the purpose of economic development and social benefit.", + "Mission": "Nonprofit activities for the purpose of economic development and social benefit.", + "Geographic Focus": "Italy and Europe", + "Programme Areas": "Arts & Culture\nCivil society, Voluntarism & Non-Profit Sector\nEducation\nFood, Agriculture & Nutrition\nYouth/Children Development" + } + }, + { + "id": 18539, + "name": "Aidsfonds", + "address": "Aids Fonds Condensatorweg 54 1014 AX Amsterdam Netherlands", + "country": "", + "email": "", + "website": "https://aidsfonds.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Aidsfonds - Soa Aids Nederland, Condensatorweg 54, 1014 AX Amsterdam, Netherlands", + "lat": 52.38975629999999, + "lng": 4.8458377, + "zoom": 14, + "place_id": "ChIJzWIc8MIJxkcRp4cGS8EN6_U", + "name": "Aidsfonds - Soa Aids Nederland", + "street_number": "54", + "street_name": "Condensatorweg", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1014 AX", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/aidsfonds/", + "philea_info": { + "About": "Every day Aidsfonds works all over the world to end AIDS before 2030. Wherever we work, we know we must accelerate, focus and boost our efforts now in order to achieve this ultimate goal. We have the knowledge to end the epidemic. What is lacking is funding, awareness and political will to stop the epidemic in its tracks for good. For years, Aidsfonds has been playing a pioneering role in focusing the HIV/AIDS response on those population groups who are affected the most by the HIV epidemic due to stigma and discrimination. We make a stand against injustice. We tackle hurdles that others cannot attempt to overcome.\nWe put topics on the agenda that others will not discuss and we give support to people who others dare not support. We put communities first!", + "Mission": "We strive for a world where there are no longer any deaths from AIDS and where people enjoy good sexual health. A world in which everyone can love freely and without fear. We do this by working together with the people who are hit hardest by HIV, STIs, discrimination and exclusion. We strengthen their voice and support them with information, knowledge and funding. For all that is love.", + "Geographic Focus": "The Netherlands, Caribbean part of the Kingdom of the Netherlands, Africa, Eastern Europe and Central Asia", + "Programme Areas": "– Health\n– Human/Civil Rights\n– Socio-economic Development\n– Poverty\n– Youth/Children Development" + } + }, + { + "id": 18478, + "name": "The Center for Effective Philanthropy", + "address": "The Center for Effective Philanthropy 675 Massachusetts Avenue, Floor 7 MA 02139 Cambridge United States", + "country": "", + "email": "", + "website": "http://www.effectivephilanthropy.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "The Center for Effective Philanthropy 675 Massachusetts Avenue, Floor 7 MA 02139 Cambridge United States", + "lat": 42.3658993, + "lng": -71.1039725, + "zoom": 14, + "place_id": "ChIJfXD4ZlF344kRrJ7D5X296-A", + "street_number": "675", + "street_name": "Massachusetts Avenue", + "street_name_short": "Massachusetts Ave", + "city": "Cambridge", + "state": "Massachusetts", + "state_short": "MA", + "post_code": "02139", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/the-center-for-effective-philanthropy/", + "philea_info": { + "About": "" + } + }, + { + "id": 18475, + "name": "Amref Health Africa ETS", + "address": "AMREF via Alberico II n. 4 00193 Roma Italy", + "country": "", + "email": "", + "website": "http://www.amref.it", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "AMREF via Alberico II n. 4 00193 Roma Italy", + "lat": 41.9053109, + "lng": 12.4617487, + "zoom": 14, + "place_id": "ChIJ1YGl4l1gLxMR04XZGI4kge4", + "street_number": "4", + "street_name": "Via Alberico II", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00193", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/amref-health-africa-ets/", + "philea_info": { + "About": "" + } + }, + { + "id": 18474, + "name": "Villum Foundation", + "address": "Tobaksvejen 10 DK-2860 Søborg Denmark", + "country": "", + "email": "info@villumfonden.dk", + "website": "", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Tobaksvejen 10 DK-2860 Søborg Denmark", + "lat": 55.7406342, + "lng": 12.4804293, + "zoom": 14, + "place_id": "ChIJ-ynjlN1RUkYRMLr71Wn-j4Q", + "street_number": "10", + "street_name": "Tobaksvejen", + "city": "Søborg", + "post_code": "2860", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/villum-foundation/", + "philea_info": { + "About": "The VILLUM FOUNDATION is a non-profit foundation created by Villum Kann Rasmussen in 1971. The foundation is the principal shareholder of VKR Holding, the parent company of VELUX A/S and other companies in the VKR Group.", + "Mission": "Its mission is to bring daylight, fresh air and a better environment into people’s everyday lives.", + "Geographic Focus": "Denmark and other European countries", + "Programme Areas": "Technical and scientific research as well as environmental, social and cultural projects in Denmark and internationally." + } + }, + { + "id": 18472, + "name": "Velliv Foreningen", + "address": "Lautrupvang 10 2750 Ballerup Denmark", + "country": "", + "email": "Direktion@vellivforeningen.dk", + "website": "https://www.vellivforeningen.dk/for-ansoegere/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lautrupvang 10 2750 Ballerup Denmark", + "lat": 55.7289135, + "lng": 12.3927329, + "zoom": 14, + "place_id": "ChIJF7wP_21QUkYRFS6MXAtNbKo", + "street_number": "10", + "street_name": "Lautrupvang", + "city": "Ballerup", + "post_code": "2750", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/velliv-foreningen/", + "philea_info": { + "About": "" + } + }, + { + "id": 18471, + "name": "NILO Foundation", + "address": "26 St James's Square SW1Y 4JH London United Kingdom", + "country": "", + "email": "info@nilofoundation.org", + "website": "http://www.nilofoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "26 St James's Square SW1Y 4JH London United Kingdom", + "lat": 51.50669389999999, + "lng": -0.1344662, + "zoom": 14, + "place_id": "ChIJXUDS0NAEdkgRPVdkJHnC_ik", + "street_number": "26", + "street_name": "Saint James's Square", + "street_name_short": "St James's Square", + "city": "London", + "state": "England", + "post_code": "SW1Y 4JH", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/nilo-foundation/", + "philea_info": { + "About": "At NILO Foundation, we partner with charities worldwide that help to sustain humanity and planet, with a strong focus on developing inner potential, building community and transitioning towards a just and sustainable economy.", + "Mission": "At NILO Foundation, we partner with charities worldwide that help to sustain humanity and planet, with a strong focus on developing inner potential, building community and transitioning towards a just and sustainable economy. We draw upon two main traditions in philanthropy, which are systems change and venture philanthropy.", + "Programme Areas": "ACCOMPANYING AND TRUSTING PARTNERS\nWe look for social leaders that align with our mission and values and build close ties with them. In addition to evergreen funding, we accompany our partners throughout and provide strategic support in a range of areas, including networking opportunities and fundraising. This approach is designed to encourage them to tackle issues in a bold and innovative way, and to enhance their organisational development and impact. SUPPORTING SYSTEMS-CHANGE\nWe adopt a systemic view of a problem by conducting in-depth research and connecting with experts and people at the heart of it. We then build a portfolio of partners among frontline charities, advocacy groups and think tanks, with the aim of acting on different levers of the ecosystem. ENCOURAGING COLLABORATION\nOur high-level viewpoint as a funder working in different regions of the world gives us access to a rich ecosystem of philanthropic initiatives. We regularly exchange with peers to explore opportunities for co-learning and co-action, and we encourage our partners to convene regularly. LEARNING AND REFLECTING\nA core element of our approach is to experiment, reflect, and iterate. We aim to draw upon many traditions of philanthropy, thoughtfully using theories and schools of thought that feel most appropriate to the given context and issue, and regularly reviewing our posture and methods as a funder." + } + }, + { + "id": 18435, + "name": "Luminate", + "address": "Omidyar Network 1991 Broadway Street, Suite 200 CA 94063 Redwood City United States", + "country": "United States", + "email": "hello@luminategroup.com", + "website": "https://luminategroup.com/about", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Omidyar Network, 1991 Broadway # 200, Redwood City, CA 94063, United States", + "lat": 37.4863992, + "lng": -122.2259237, + "zoom": 14, + "place_id": "ChIJB25ooKyjj4ARhSlz72Tfib8", + "name": "Omidyar Network", + "street_number": "1991", + "street_name": "Broadway", + "city": "Redwood City", + "state": "California", + "state_short": "CA", + "post_code": "94063", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/luminate/", + "philea_info": { + "About": "Our mission is to ensure that everyone – especially those who are underrepresented – has the information, rights, and power to influence the decisions that affect their lives. Our work focuses on enabling people to fully participate in civic and political life, to safely challenge power, and to access accurate, trustworthy information. Across our work, we seek to ensure that technology works for and not against democracy.", + "Mission": "Our mission is to ensure that everyone – especially those who are underrepresented – has the information, rights, and power to influence the decisions that affect their lives. Our work focuses on enabling people to fully participate in civic and political life, to safely challenge power, and to access accurate, trustworthy information. Across our work, we seek to ensure that technology works for and not against democracy.", + "Programme Areas": "Citizenship, Social Justice & Public Affairs, Civil society, Voluntarism & Non-Profit Sector, Democracy, digital rights." + } + }, + { + "id": 17761, + "name": "Swiss Philanthropy Foundation", + "address": "", + "country": "", + "email": "", + "website": "http://www.swissphilanthropy.ch/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Swiss Philanthropy Foundation Mael Steiner c/o wise - philanthropy advisers P.O. BOX 2124 1211 Geneva 1 Switzerland", + "lat": 46.2084926, + "lng": 6.1428645, + "zoom": 14, + "place_id": "ChIJI5dq4ddkjEcR_z3_-mSdQaA", + "street_number": "2", + "street_name": "Place de Cornavin", + "street_name_short": "Pl. de Cornavin", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1201", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/swiss-philanthropy-foundation/", + "philea_info": { + "About": "As an umbrella foundation (donor-advised fund), SwissPhilanthropy Foundation facilitates access to philanthropy by creating and managing philanthropic funds on behalf of private and institutional clients. It leads to a professionalisation of the philanthropic sector and greater impact.", + "Mission": "To pursue public-interest goals in Switzerland and abroad by encouraging the development of philanthropy and by supporting charitable organisations and programmes in the areas of:\n– humanitarian and social aids\n– medicine\n– education\n– research\n– environmental protection\n– sustainable development\n– culture and the arts", + "Geographic Focus": "Worldwide", + "Programme Areas": "Values:\n• Dynamism: the Foundation seeks to encourage and support dynamic giving. It asks donors who have set up funds to maintain regular philanthropic activity.\n• Coherency: through its network of partnerships with experts in the field, the Foundation proposes a comprehensive service which ensures the impact of donations.\n• Responsibility: the Foundation is responsible for the funds entrusted to it and undertakes to actively respect the donor’s initial intention. The financial management of the donor’s fund is assumed by the Foundation or by an external manager depending on the amount or the agreement between the parties.\n• Discretion: the Foundation offers donors a way of facilitating their commitment by promoting efficiency and ensures discretion. The Foundation offers 2 services to facilitate your philanthropy.\n• Sheltered funds: a simple and effective structure for donors\n• European network: donate in Europe as if you donate in Switzerland, donate in Switzerland from other European countries" + } + }, + { + "id": 17760, + "name": "Stiftelsen Brita Maria Renlunds minne sr", + "address": "", + "country": "", + "email": "", + "website": "http://www.bmr.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stiftelsen Brita Maria Renlunds minne sr Annegatan 12, 4 vån 00120 Helsinki Finland", + "lat": 60.16463510000001, + "lng": 24.9398198, + "zoom": 14, + "place_id": "EixBbm5hbmthdHUgMTIgNCB2w6VuLCAwMDEyMCBIZWxzaW5raSwgRmlubGFuZCIiGiAKFgoUChIJTWwcLMoLkkYRkL2E5qrN52cSBjQgdsOlbg", + "street_number": "12", + "street_name": "Annankatu", + "city": "Helsinki", + "city_short": "HKI", + "state": "Uusimaa", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/stiftelsen-brita-maria-renlunds-minne-sr/", + "philea_info": { + "About": "We support the health and well-being of children and young people.", + "Mission": "To support and develop care that promotes the well-being of children regardless of the nationality, religion or language of the guardians.\nTo promote early childhood pedagogy, school environments and well-being for children and young people, who receive their upbringing and education in Swedish.", + "Geographic Focus": "Finland, especially Swedish speaking minority", + "Programme Areas": "– Arts & Culture\n– Education\n– Health\n– Recreation\n– Sport & Well-being\n– Youth/Children Development" + } + }, + { + "id": 17759, + "name": "Be for Education Foundation", + "address": "", + "country": "", + "email": "", + "website": "https://www.beforeducation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bolton Hope Foundation Via G.B. Pirelli 19 20124 Milan Italy", + "lat": 45.48368900000001, + "lng": 9.199039299999999, + "zoom": 14, + "place_id": "ChIJrY4HrM_GhkcRUe1V3QZbhUA", + "street_number": "19", + "street_name": "Via Giovanni Battista Pirelli", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20124", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/bolton-hope-foundation/", + "philea_info": { + "About": "The Be for Education Foundation promotes quality education and education for sustainable development and prevents early school leaving through a semi-functional and operating approach", + "Mission": "Promoting quality education and education for sustainable development, preventing early school leaving", + "Geographic Focus": "Italy", + "Programme Areas": "Education" + } + }, + { + "id": 17758, + "name": "Marius Jakulis Jason Foundation", + "address": "Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 Vilnius Lithuania", + "country": "Lithuania", + "email": "info@mjjfondas.lt", + "website": "https://mjjfondas.lt/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Marius Jakulis Jason Foundation Liepyno str. 25A 5a LT-08108 Vilnius Lithuania", + "lat": 54.6991928, + "lng": 25.2524047, + "zoom": 19, + "place_id": "EitMaWVweW5vIGcuIDI1YS01YSwgMDgxMDggVmlsbml1cywgTGl0aHVhbmlhIh4aHAoWChQKEgmRXrIX-5PdRhFrciarVovwwxICNWE", + "street_number": "25a", + "street_name": "Liepyno gatvė", + "street_name_short": "Liepyno g.", + "city": "Vilnius", + "state": "Vilniaus apskritis", + "state_short": "Vilniaus apskr.", + "post_code": "08108", + "country": "Lithuania", + "country_short": "LT" + }, + "link": "https://philea.eu/members/marius-jakulis-jason-foundation/", + "philea_info": { + "About": "Help everyone to be successful by staying in Lithuania or coming in.\nTo do this, the foundation is giving support, mentoring, networking, financial support and for different profiles.", + "Mission": "Supports talented entrepreneurs, academics and students who want to and can contribute to the economic growth of Lithuania.", + "Geographic Focus": "Lithuania", + "Programme Areas": "– Education\n– Sciences & Research\n– Youth/Children development\n– Entrepreneurship" + } + }, + { + "id": 17756, + "name": "Moleskine Foundation", + "address": "", + "country": "", + "email": "info@moleskinefoundation.org", + "website": "https://moleskinefoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Moleskine Foundation Onlus, Via Bergognone, 34, 20144 Milan, Metropolitan City of Milan, Italy", + "lat": 45.4524972, + "lng": 9.164271500000002, + "zoom": 14, + "place_id": "ChIJJ8q9z9rDhkcRj84mpcEyto8", + "name": "Moleskine Foundation Onlus", + "street_number": "34", + "street_name": "Via Bergognone", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20144", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/moleskine-foundation/", + "philea_info": { + "About": "The Foundation operates as an independent self-governing organization, but thanks to our partnership with the Moleskine brand we are able to ensure 100% of the funds raised go directly to support our programs.\nIn our work we promote a new philanthropic model of operation: by considering both “what” we do and “how we do it” we want to liberate creativity, develop creative skills and support our communities to drive greater social impact beyond the traditional philanthropic approach. In particular, the Creativity Pioneers Fund (CPF) constitutes a unique opportunity to test and learn from a more progressive philanthropic approach based on trust, unrestricted funding, valorization of intersectionality, simple and inclusive paperwork both at the selection process and M&E, and a strong focus on building long-lasting networks and ecosystems.\nThe CPF consists in a micro-granting scheme that provides unrestricted and unearmarked funding: this allows to shift the decision-making power on the use of funds to the organization because they are best suited to determine how to effectively spend the funds received. Moreover, this model of unrestricted granting enables us to move away from project-based funding, and to support creative organizations in their identity and entirety, preserving their often hybrid and therefore peculiar nature.\nAccess to funding represents only a starting point for a larger collaboration system, towards a platform model where Moleskine Foundation and its partners act as ecosystem builders.", + "Mission": "Inspire a new generation of creative thinkers and doers to change themselves and their communities.\nWe believe in Creativity for Social Change, and our mission is to inspire youth worldwide to make a difference in their communities.\nWe support spaces where criticality and imagination can occur, so that novel solutions can be discovered for today’s challenges.", + "Geographic Focus": "Global (Europe, Africa, US, Canada, Mexico)", + "Programme Areas": "– Arts and Culture\n– Citizenship\n– Social Justice & Public Affairs\n– Education" + } + }, + { + "id": 16610, + "name": "Stiftung Mercator Schweiz", + "address": "Stiftung Mercator Schweiz Gartenstrasse 33 8027 Zürich Switzerland", + "country": "Switzerland", + "email": "", + "website": "http://www.stiftung-mercator.ch", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stiftung Mercator Schweiz, Gartenstrasse, Zürich, Switzerland", + "lat": 47.3678088, + "lng": 8.532472, + "zoom": 14, + "place_id": "ChIJZfulegIKkEcRo4ONX65lX3o", + "name": "Stiftung Mercator Schweiz", + "street_number": "33", + "street_name": "Gartenstrasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8002", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/stiftung-mercator-schweiz/", + "philea_info": { + "About": "Based on a systemic and collaborative approach, we look for the most effective levers for societal transformation in our thematic ecosystems. We work with an iterative strategy model including “ongoing” Monitoring, Evaluation, Learning, Adaption and Sharing and want to contribute to solutions for ecological and societal problems as stimuli for societal change. For the implementation of our theories of change we work with four levers: empowerment of the individual, strengthening of civil society and it’s organizations, digitalization and art and culture.", + "Mission": "Sustainable society based on the principles of solidarity, equal opportunities and the possibility of active participation for all.", + "Geographic Focus": "Switzerland, Europe", + "Programme Areas": "DEMOCRACY – We support new ideas and promising initiatives (both analog and digital) for a sustainable and resilient democracy DIVERSITY – we focus on gender and cultural background. In the field of diversity, we aim to reduce structural discrimination due to origin and/or gender. CLIMATE AND BIODIVERSITY PROTECTION – sufficiency, nutrition systems. Regarding both climate and biodiversity, we support comprehensive/systemic solution approaches that are borne by decision-makers in the worlds of politics, public administration, science and business as well as by civil society, and that do justice to the urgency of the ecological challenges we face. DIGITALISATION & SOCIETY – digital self-determination, algorithmic systems, digital public sphere, digital participation. We empower people to handle their data in a self-determined way. We seek ways of promoting political solutions and data protection regulations that ensure the right to digital self-determination. We also work on solutions that enable companies and public authorities to take ethical and public welfare considerations into account when handling personal data." + } + }, + { + "id": 13608, + "name": "The END Fund", + "address": "The END Fund 495 Green Lanes N13 4BS London United Kingdom", + "country": "United Kingdom", + "email": "info@end.org", + "website": "https://www.end.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "495 Green Lanes, London N13 4BS, United Kingdom", + "lat": 51.6230729, + "lng": -0.1051977, + "zoom": 14, + "place_id": "ChIJ5YfndjcZdkgRXTek7Bo7hIg", + "name": "495 Green Lanes", + "street_number": "495", + "street_name": "Green Lanes", + "city": "London", + "state": "England", + "post_code": "N13 4BS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/the-end-fund/", + "philea_info": { + "About": "The END Fund focuses on delivering neglected tropical disease (NTD) treatments to those in need by growing and engaging a community of activist-philanthropists, managing high-impact strategic investments, and working in collaboration with government, NGO, pharmaceutical, and academic partners. We aim to take a systems approach to understanding, engaging with, and influencing the broad ecosystem of stakeholders.", + "Mission": "The END Fund is the only private philanthropic initiative dedicated to ending the five most common neglected tropical diseases (NTDs) – a group of parasitic and bacterial infectious diseases, such as river blindness and intestinal worms. By engaging a community of activist-philanthropists and taking a systems approach, we are working in collaboration with governments, NGOs, pharmaceutical, and academic partners to end these diseases in our lifetime. Since our founding in 2012 through 2020, with our partners, the END Fund has provided over 1 billion treatments for NTDs worth more than $1.3 billion. In 2020 alone, we reached more than 91 million people with more than 133 million NTD treatments, which represents an almost 8-fold increase from 2012.", + "Geographic Focus": "26 countries, predominantly in Africa but also Afghanistan, India, Yemen and Guyana.", + "Programme Areas": "The END Fund efficiently puts private capital to work, advocating for NTD programs that are innovative, integrated and cost-effective. We facilitate\nstrong partnerships with the private sector, government partners, and local implementing partners to collaboratively support national disease programs. This is done through a proven implementation model that is tailored to meet the needs of individual countries. The NTDs we work on are: intestinal worms, Schistosomiasis, Onchoceriasis and Lymphatic Filariasis. We have also recently taken on some funding for Visceral Leishmaniasis programmes, following the FCDO cuts." + } + }, + { + "id": 13606, + "name": "Anglo American Foundation", + "address": "Anglo American Foundation 17 Charterhouse Street EC1N 6RA London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "https://www.angloamericangroupfoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Anglo American PLC, 17 Charterhouse Street, London EC1N 6RA, United Kingdom", + "lat": 51.5184283, + "lng": -0.1063213, + "zoom": 14, + "place_id": "ChIJ7ycpArgbdkgRg_p5S-TCD0g", + "name": "Anglo American PLC", + "street_number": "17", + "street_name": "Charterhouse Street", + "street_name_short": "Charterhouse St", + "city": "London", + "state": "England", + "post_code": "EC1N 6RA", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/anglo-american-foundation/", + "philea_info": { + "About": "The Anglo American Group Foundation (AAF) was established in 2018/19 by merging the activities of the Anglo American Chairman’s Fund (a highly respected South Africa-based entity) and the Anglo American Group Foundation to form a single Group-level Foundation for Anglo American operating as a single entity with a common strategy and set of trustees. The operations in the UK are managed by Anglo American internally while the South African entity is managed by Tshikululu Social Investments. In July 2021 Anglo American committed to endowing AAF with a $100 million donation, significantly boosting the Foundation’s ability to support progress towards the UN Sustainable Development Goals. This donation presents an opportunity to redefine AAF’s strategy, including governance and operating model, to ensure it can deliver to an entirely new level – creating systemic impact at scale. Guided by Anglo American’s Purpose, AAF will become a strategic grant-maker focusing on long-term system-level change within three themes:\n• Clean water and energy: sustainable water resource management; access to (clean) energy / off-grid solutions\n• Skills and job creation for growth: development of relevant skills for current and future jobs (focus on youth); incubating innovative tech and supporting SMEs and entrepreneurs\n• Healthy living: access to primary health care; preventative health care", + "Mission": "The Foundation supports programmes that work to address the UN’s Sustainable Development Goals and that are aligned to Anglo American’s Purpose: Re-imagining mining to improve people’s lives\nMining has a smarter future – a future where you may barely notice some mines at all. And that’s a good thing. Out of sight, but never out of mind, tomorrow’s ultimate mine will long provide the precious raw materials our modern society needs. The Foundation is undertaking a strategic review with the intent to be more independent from the founding company. This will include developing the Foundation’s own vision and mission statement and Theory of Change", + "Geographic Focus": "Australia, Botswana, Brazil, Canada, Chile, China, India, Finland, Namibia, Peru, Singapore, South Africa, UK, Zimbabwe (plus future countries of operation of Anglo American)", + "Programme Areas": "Interconnected themes: Access to clean water and energy\nHealth and Wellbeing\nSkills and job creation\nWith cross-cutting themes – gender, youth, inclusivity, climate change resilience\nTypes of intervention approaches are expected to be employed to achieve such systems level change: i) enabling systems development, ii) capacity enhancement and skills development and iii) behavior change." + } + }, + { + "id": 12992, + "name": "Fidelity UK Foundation", + "address": "The Fidelity UK Foundation Beech Gate, Millfield Lane Lower Kingswood KT20 6RP Tadworth, Surrey United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "https://filfoundations.fidelityinternational.com/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Millfield Lane, Lower Kingswood, Tadworth, Surrey KT20 6RP, United Kingdom", + "lat": 51.2784529, + "lng": -0.2068448, + "zoom": 9, + "place_id": "EiNNaWxsZmllbGQgTG4sIFRhZHdvcnRoIEtUMjAgNlJQLCBVSyIuKiwKFAoSCTNXWI9B43VIESEh-XZ45Bx3EhQKEgn58JtuQuN1SBGMsxM1jCzF9g", + "name": "Millfield Lane", + "street_name": "Millfield Lane", + "street_name_short": "Millfield Ln", + "city": "Tadworth", + "state": "England", + "post_code": "KT20 6RP", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/fidelity-uk-foundation/", + "philea_info": { + "About": "The Foundation’s aim is to help strengthen the impact, effectiveness and/or sustainability of charitable organisations – enhancing their ability to achieve their mission and their objectives. As such, the Foundation has a focus on the capacity of charities, by which we mean the capability, knowledge and resources that charities need to be effective.", + "Mission": "The Fidelity UK Foundation helps build the capacity of charitable organisations active in the fields of: enabling disadvantaged children and young people to achieve their potential; health; and arts, culture and heritage.", + "Geographic Focus": "UK", + "Programme Areas": "The foundation’s charitable investments are primarily allocated to the following sectors: Enabling disadvantaged children and young people to achieve their potential\nHealth and wellbeing\nArts, culture and heritage" + } + }, + { + "id": 12935, + "name": "Central European University", + "address": "Central European University Quellenstraße 51 1100 Vienna Austria", + "country": "Austria", + "email": "", + "website": "http://www.ceu.edu", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Central European University, Quellenstraße 51, 1100 Vienna, Austria", + "lat": 48.17394590000001, + "lng": 16.3880969, + "zoom": 14, + "place_id": "ChIJWXRULX-pbUcRGlulmPW2N1A", + "name": "Central European University", + "street_number": "51", + "street_name": "Quellenstraße", + "city": "Wien", + "state": "Wien", + "post_code": "1100", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/central-european-university/", + "philea_info": { + "About": "Central European University is an institution of advanced research and teaching, dedicated to socially and morally responsible intellectual inquiry. Having launched a new undergraduate offer in 2020, CEU’s distinctive educational program builds on the research tradition of the great American universities; on the most valuable Central European intellectual traditions; on the international diversity of its faculty and students; on its commitment to social service; and on its own history of academic and policy achievements in transforming the closed communist inheritance. George Soros founded CEU after the fall of the iron curtain during a time of great optimism and hope for the future.\nCEU empowers students from around the world and challenge them to think critically and create new knowledge with the power to transform our world. Today, as societies are radically tested, we fulfill this purpose with urgency. With a global pandemic stoking fear and exclusion, our role to foster a passion for knowledge — the distinguishing feature of an open society — is vital to countering these forces.", + "Mission": "CEU is committed to promoting the values of open society and self-reflective critical thinking. It aims at excellence in the mastery of established knowledge, courage to pursue the creation of new knowledge in the humanities, the social sciences, law and management, and engagement in promoting applications for each, in particular through their policy implications. CEU is a new model for international education, a center for the study of contemporary economic, social and political challenges, and a source of support for building open and democratic societies that respect human rights and human dignity.\nCEU’s mission—to advance and build open and democratic societies that respect human rights—draws students from more than 100 countries and across five continents. Often the first in their families to pursue a graduate education, our students come to CEU to study law, humanities, social sciences, public policy, and management. This diverse group of exceptional students share a commonly held desire: to make a difference after graduation in their respective countries." + } + }, + { + "id": 11209, + "name": "The Harry Frank Guggenheim Foundation", + "address": "120 West 45th Street 25th Floor 10027 New York United States", + "country": "United States", + "email": "info@hfg.org", + "website": "http://www.hfg.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "120 West 45th Street 25th Floor 10027 New York United States", + "lat": 40.75704, + "lng": -73.9838798, + "zoom": 14, + "place_id": "EjExMjAgVyA0NXRoIFN0IDI1dGggRmxvb3IsIE5ldyBZb3JrLCBOWSAxMDAzNiwgVVNBIiYaJAoWChQKEgkBOH9tVVjCiRHTjQ7ex4woThIKMjV0aCBGbG9vcg", + "street_number": "120", + "street_name": "West 45th Street", + "street_name_short": "W 45th St", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10036", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/the-harry-frank-guggenheim-foundation/", + "philea_info": { + "About": "The Foundation is the only organization of its kind focused solely on the study and amerloration of violence. It awards research grants to support distinguished and emerging scholars studying urgent matters of violence around the world. It likewise conducts and commissions original research and publishes research and policy reports. The Foundation hosts conferences, research seminars, and public conversations on topics of violence, often in collaboration with peers in academia, philanthropy, and civil society.", + "Mission": "The Harry Frank Guggenheim Foundation examines enduring and urgent problems of violence, such as war, crime, and human aggression. Through basic and applied research, the Foundation aims to understand the causes, manifestation, and control of violence, to spread this knowledge to inform policy, practice, and public discourse and to advance scholarship.", + "Geographic Focus": "United States; World", + "Programme Areas": "The Foundation conducts programs to support violence research, including its Distinguished Scholars, Emerging Scholars, African Fellows, Distinguished Fellow of Practice, Pembroke Research Fellow at Cambridge, the Salzburg Global Seminar’s Global Innovations on Youth Violence, Safety and Justice initiative, a Violent Crime Working Group at the Council on Criminal Justice, a National Gun Violence Research Collaborative at the RAND Corporation, an annual Sympoisium on Crime in America, research and policy reports, online articles, and speakers series." + } + }, + { + "id": 11208, + "name": "Fondazione Paideia", + "address": "Moncalvo 1 10131 Turin Italy", + "country": "Italy", + "email": "info@fondazionepaideia.it", + "website": "http://www.fondazionepaideia.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Moncalvo, 1, 10131 Turin, Metropolitan City of Turin, Italy", + "lat": 45.0616438, + "lng": 7.702081499999998, + "zoom": 14, + "place_id": "ChIJpSp9MZlyiEcRS9_Guuacc6w", + "name": "Via Moncalvo, 1", + "street_number": "1", + "street_name": "Via Moncalvo", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10131", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-paideia/", + "philea_info": { + "About": "Paideia Foundation adopts a perspective of intervention towards the beneficiaries that is placed, from a theoretical and methodological point of view, in the systemic and network approach, in which it is essential to turn the gaze not only to the child in difficulty, but to all those who take care of it in different ways: first of all the family unit, then the parental and friendly network and the socio-health, educational and associative resources with which the family comes into contact. This type of approach intends to promote the development of those peculiar capacities that each one, over time, may be able to recognize and enhance. Taking charge of the family is inspired by the FCC (Family Centred Care) work model, started in Canada and subsequently developed in different geographical areas.", + "Mission": "For over twenty years, Paideia has been working every day alongside families and children in difficulty, promoting effective and innovative projects, ensuring the creation of attentive and respectful contexts for the needs of children. So that no family can feel alone and no child excluded.\nPaideia’s aim and objective is to spread a culture of childhood and participate in the construction of a more inclusive and responsible society. Paideia in particular strives daily to:\n– offer support to the family in difficulty;\n– experiment with effective and innovative models of social intervention;\n– create contexts that favour the serene growth of children and the development of their potential.", + "Geographic Focus": "Italy, particularly on Piedmont region", + "Programme Areas": "Training and culture initiatives aimed at strengthening the value of inclusion, diversity, equal rights and possibilities for all, with particular attention to the needs of children and those who care for them.\nPAIDEIA CENTER: it is an initiative started in 2018, which adopts a family centerd approach, confirming the constant commitment of the Foundation alongside families with children with disabilities or illness. Each family can count on tailor-made support, ensured by a project coordinator and a multi-professional team. The Center also has a library for inclusion where people can access books and stories that encourage the participation of every reader.\nPAIDEIA SOCIAL FARM: the Farm was inaugurated in 2019 in Baldissero Torinese, just outside the city of Torino. It is configured as a space to learn, experiment and share together experiences in close contact with nature. It is a place meant to offer opportunities to meet adults and children, with particular attention to children, young people and young people with disabilities and their families, to teach them to become protagonists in the care of plants and animals, experiment experiences of autonomy, and develop skills, with a view to empowerment and generative welfare. The farm is equipped with donkeys, chickens, vegetable gardens where aromatic herbs, small fruits and saffron are grown. The vegetable gardens are all accessible, so that everyone can discover the wonder of growth and the flowering of nature." + } + }, + { + "id": 9508, + "name": "Association of Foundations in the Netherlands (FIN)", + "address": "Netherlands", + "country": "", + "email": "", + "website": "https://fondseninnederland.nl/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Netherlands", + "lat": 52.132633, + "lng": 5.291265999999999, + "zoom": 14, + "place_id": "ChIJu-SH28MJxkcRnwq9_851obM", + "name": "Netherlands", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/association-of-foundations-in-the-netherlands-fin/", + "philea_info": { + "About": "The Association of Foundations in the Netherlands (FIN) is the sector organisation for Dutch charitable endowment funds, uniting 355 members in the Netherlands.", + "Mission": "The association’s main purpose is to represent the members, their interests and the interest of philanthropy in general towards the Dutch government and politicians. FIN facilitates networking between its members and provides a platform for the exchange of knowledge, experience and new trends in philanthropy." + } + }, + { + "id": 9496, + "name": "Knowledge Centre for Danish Foundations", + "address": "Denmark", + "country": "", + "email": "", + "website": "", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Denmark", + "lat": 56.26392, + "lng": 9.501785, + "zoom": 14, + "place_id": "ChIJ-1-U7rYnS0YRzZLgw9BDh1I", + "name": "Denmark", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/knowledge-centre-for-danish-foundations/", + "philea_info": { + "About": "Knowledge Centre for Danish Foundations (Fondenes Videnscenter) was founded in December 2017 by 34 of the largest industrial foundations and public benefit foundations in Denmark.", + "Mission": "Knowledge Centre for Danish Foundations is a member organisation with the purpose of supporting a high information level, knowledge sharing and co-operation among its members as well as monitoring and informing the foundation sector and decision makers about Danish foundations to further the working conditions of Danish foundations." + } + }, + { + "id": 9490, + "name": "Austrian Foundations Association (Verband für Gemeinnütziges Stiften)", + "address": " Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 Wien", + "country": "", + "email": "", + "website": "https://www.gemeinnuetzig-stiften.at/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": " Verband für gemeinnütziges Stiften Schottenring 16/3. OG, 1010 Wien", + "lat": 48.2151846, + "lng": 16.366538, + "zoom": 14, + "place_id": "ChIJWUNmvrwHbUcRwiwzHXndics", + "street_number": "16", + "street_name": "Schottenring", + "city": "Wien", + "state": "Wien", + "post_code": "1010", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/austrian-foundations-association-verband-fur-gemeinnutziges-stiften/", + "philea_info": { + "About": "The Austrian Foundations Association (Verband für Gemeinnütziges Stiften) was founded in 2015 to improve the amplitude, quality and acceptance of charitable funding in Austria. The association works independently on supporting and developing the local foundation sector. In its work for its over 100 member organisations, the association concentrates on charitable giving foundations and funds, as they are important drivers for sustainability and social innovations.", + "Mission": "The Austrian Foundations Association represents and connects charitable stakeholders in and for Austria and wants to form a movement that actively works for Austria’s society in order to make it resilient and sustainable." + } + }, + { + "id": 9486, + "name": "Croatian Foundation Forum", + "address": "Croatia", + "country": "", + "email": "", + "website": "", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Croatia", + "lat": 45.1, + "lng": 15.2, + "zoom": 14, + "place_id": "ChIJ7ZXdCghBNBMRfxtm4STA86A", + "name": "Croatia", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/croatian-foundation-forum/", + "philea_info": { + "About": "The Croatian Foundations Forum ‘For Wellbeing!’ was established in 2008\nand now has 37 members: 21 private foundations, 14 public foundations\nand 2 corporate foundations. In 2018 the Forum has established the Philanthropy Academy and opened the Croatian Philanthropy House in city of Zadar (Croatia) where the programmees of the Academy will be implemented.", + "Mission": "The purpose of the Croatian Foundation Forum ‘For Wellbeing!’ is to support philanthropy development in Croatia, provide expert support and capacity building to foundations in Croatia and individual philantropists, investments in social innovations, youth and local community development. The Forum is run and co-managed by the National Foundation for Civil Society Development and the European Foundation for Philanthropy and Society Development, both based in Zagreb, Croatia." + } + }, + { + "id": 9482, + "name": "Association of Norwegian Foundations", + "address": "", + "country": "", + "email": "", + "website": "https://stiftelsesforeningen.no/medlemmer/stiftelser", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Norway", + "lat": 60.47202399999999, + "lng": 8.468945999999999, + "zoom": 14, + "place_id": "ChIJv-VNj0VoEkYRK9BkuJ07sKE", + "name": "Norway", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/association-of-norwegian-foundations/", + "philea_info": { + "About": "Association of Norwegian Foundations (Stiftelsesforeningen), founded in 2003, is a union for all Norwegian foundations, whether these are non-profit, gift-giving or own businesses or hospitals.", + "Mission": "The purpose of the Association of Norwegian Foundation is to support Norwegian foundations through issuing statements about legal changes affecting foundations, enabling its members to exchange information and ideas also strive to emphasize the altruistic work of foundations and to show the important role of foundations in Norwegian society. The association seeks to foster dialogue with political authorities, government and training of board members and daily managers. In addition, the association works out templates for good management of foundations. It also provides services to members in the area of issues related to legislation." + } + }, + { + "id": 9472, + "name": "Center for Philanthropy", + "address": "Baštová 5, 811 03, Bratislava, Slovak Republic ", + "country": "Slovakia", + "email": "", + "website": "http://www.cpf.sk/en/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Baštová 5, 811 03 Bratislava, Slovakia", + "lat": 48.1447852, + "lng": 17.1058538, + "zoom": 14, + "place_id": "EihCYcWhdG92w6EgNSwgODExIDAzIEJyYXRpc2xhdmEsIFNsb3Zha2lhIlASTgo0CjIJhXAm71yJbEcRogLxSbysQtUaHgsQ7sHuoQEaFAoSCUVKC4NYiWxHEdk5ba82M8wGDBAFKhQKEgl5tSnpXIlsRxF_crYoQE8aZw", + "name": "Baštová 5", + "street_number": "5", + "street_name": "Baštová", + "state": "Bratislavský kraj", + "post_code": "811 03", + "country": "Slovakia", + "country_short": "SK" + }, + "link": "https://philea.eu/members/center-for-philanthropy/", + "philea_info": { + "About": "The Center for Philanthropy (CpF) was founded in August 2002 as a nonprofit organisation to develop philanthropy and civil society in Slovakia and to make an active contribution in developing and cultivating charitable giving.", + "Mission": "The Centre for Philanthropy (CpF) serves as a philanthropic infrastructure to foundations and non-profit organisations, stimulates giving and civic engagement, contributes to the policy debate on the legal and fiscal framework for civil society. We network active citizens and non- governmental organisations that search for resources with donors and facilitate the flow of these resources, knowledge and information to pursue their public benefit goals.\nCpF focuses on the development of corporate giving through grant programs and services provided for corporate donors, companies or individuals who want to give their financial means, time, energy or abilities to help people in need. We provide them with consultancy services in identification of themes and their processing in the context of grant programs, we provide the assistance with resources’ distribution through effective and transparent grant programmes and support their activities.\nAnother focus is on the support of individual giving by developing the online fundraising platforms (DARUJME.sk, ludialudom.sk) and online crowd-funding platform. StartLab, launched in 2015, is a unique and first non-commercial crowdfunding platform in Slovakia.\nTogether with the Pontis Foundation, CpF were the initiator of the establishment of the Association of Corporate Foundations, an informal platform to network members and defend the interests of the corporate foundation community in Slovakia. Its purpose is to contribute to maximizing efficiency and transparency in the achievement of their public service purpose." + } + }, + { + "id": 9468, + "name": "Association for Community Relations (ARC)", + "address": "Association for Community Relations Bd. 1 Decembrie 1918, nr.4, ap.7 400699 Cluj-Napoca Romania", + "country": "", + "email": "", + "website": "http://www.arcromania.ro", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Association for Community Relations Bd. 1 Decembrie 1918, nr.4, ap.7 400699 Cluj-Napoca Romania", + "lat": 46.7710854, + "lng": 23.5756899, + "zoom": 14, + "place_id": "Ej03LCBCdWxldmFyZHVsIDEgRGVjZW1icmllIDE5MTggNCwgQ2x1ai1OYXBvY2EgNDAwNjk5LCBSb21hbmlhIh0aGwoWChQKEgkDxlb5jw5JRxE-UimExciUhBIBNw", + "street_number": "4", + "street_name": "Bulevardul 1 Decembrie 1918", + "city": "Cluj-Napoca", + "state": "Județul Cluj", + "state_short": "CJ", + "post_code": "400699", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/association-for-community-relations-arc/", + "philea_info": { + "About": "ARC is a resource centre for foundations (corporate and otherwise), individual and family philanthropy and a network of community foundations. It is not membership- but partnership- and coalition-based. For ARC, strategic philanthropy, which is rooted in ones’ values, changes relations between people and the causes they support and creates a strong relation between nonprofits and private donors, both individuals and companies. And this leads to a transformation in the trust fiber of the society; creates confidence in our own power and in our chance to make a better life for all.", + "Mission": "ARC is about giving hope, with strength from all. Responsible philanthropy has the capacity to make people think. About the why, about the how and about the impact of their giving. But most of all, they realise that their giving has to be part of a larger context and they start to think about alliances, systemic change and durability of change." + } + }, + { + "id": 5375, + "name": "Zagoriy Foundation", + "address": "Zagoriy Foundation 6 Rylskyi Alley 02091 Kyiv Ukraine", + "country": "Ukraine", + "email": "info@zagoriy.foundation", + "website": "https://zagoriy.foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Zagoriy Foundation, Ryl's'kyi Lane, 6, Kyiv, Ukraine", + "lat": 50.4545967, + "lng": 30.51540429999999, + "zoom": 14, + "place_id": "ChIJVVUVQ1vO1EAROz9Wbz5Kg6o", + "name": "Zagoriy Foundation", + "street_number": "6", + "street_name": "Ryl's'kyi Lane", + "street_name_short": "Ryl's'kyi Ln", + "city": "Kyiv", + "state": "Kyiv City", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/zagoriy-foundation/", + "philea_info": { + "About": "Zagoriy Foundation is the only charitable organisation that conducts social research about charity in Ukraine. They regularly provide grants for smaller organisations with the goal of developing a culture of charitable giving in Ukraine. Furthermore, Zagoriy Foundation helps Ukraine’s third sector to develop effective capacity building process. Also, the Foundation coordinates the “Giving Tuesday” movement in Ukraine.", + "Mission": "To develop a culture of giving in Ukraine", + "Geographic Focus": "Ukraine", + "Programme Areas": "Zagoriy Foundation’s activities aim at implementing the best European philanthropy practices in Ukraine. Main programmes are:\n– providing grants to non-profits\n– supporting organisations which activities are crucial for the sustainable development of Ukraine\n– conducting philanthropy research and analytics\n– preserving and promoting cultural heritage\n– strengthening public-private cooperation\n– implementing information campaigns" + } + }, + { + "id": 5357, + "name": "ZEIT-Stiftung Ebelin und Gerd Bucerius", + "address": "ZEIT-Stiftung Ebelin und Gerd Bucerius Feldbrunnenstraße 56 20148 Hamburg Germany", + "country": "Germany", + "email": "zeit-stiftung@zeit-stiftung.de", + "website": "http://www.zeit-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "ZEIT-Stiftung Ebelin und Gerd Bucerius, Feldbrunnenstraße 56, 20148 Hamburg, Germany", + "lat": 53.56795, + "lng": 9.99104, + "zoom": 14, + "place_id": "ChIJk0XmyjqPsUcRfRK1jbRx6Bc", + "name": "ZEIT-Stiftung Ebelin und Gerd Bucerius", + "street_number": "56", + "street_name": "Feldbrunnenstraße", + "city": "Hamburg", + "state": "Hamburg", + "state_short": "HH", + "post_code": "20148", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/zeit-stiftung-ebelin-und-gerd-bucerius/", + "philea_info": { + "About": "The ZEIT-Stiftung promotes research and scholarship, art and culture, as well as education and training. It also initiates debates on political and social topics and provides forums for digital development. The foundation realizes its aims through its own projects and institutions, but it also grants funding to individuals and organizations who dare to innovate, and thus inspire change in science and research, culture and education. The foundation’s international activities are centred on Central and Eastern Europe as well as Israel, with a strong emphasis on intercultural dialogue.", + "Mission": "They lend their support to creative endeavour and open-ended experimentation, but also invest in the preservation of our cultural heritage. The Foundation helps highly gifted and motivated individuals – especially young people – to discover and realize their potential. The aim is to stimulate intercultural debates and provide networking opportunities in the spirit of cosmopolitan exchange. The Foundation is motivated by the need for open debates on current issues in politics, society, culture and science, and by the need to find interdisciplinary solutions to local as well as global challenges.", + "Geographic Focus": "Northern Germany, Eastern Europe, Israel and US", + "Programme Areas": "The foundation provides support for the following areas:\n• Research and scholarship\n• Art and culture\n• Education and training\n• Digital Development Research and Scholarship\nSupports ground-breaking international structures of teaching and research in the fields of law, history, and humanities and arts; sponsors new fields of study; and promotes the talented up-and-coming young generation by applying an international and interdisciplinary approach. In 2000, the foundation established the Bucerius Law School, the first privately operated law school in Germany, with the goal to provide prospective law students with an alternative to the legal education programmes available at German state universities. The school offers an academically accomplished, practice-oriented, and bi-lingual legal education with a focus on international business law. Furthermore, the ZEIT-Stiftung invites 30 students and PhD candidates each year to its annual summer academy ‘History Takes Place’. In addition, it offers a grant programme for postgraduates in the fields of law and history. Arts and Culture\nProvides funding mainly directed to art exhibitions, contemporary music as well as literature. In 2002, the foundation established its own arts forum, the Bucerius Kunst Forum, which presents exhibitions ranging from the art of the Ancient World to classic modern art. Another important funding objective is the preservation of cultural heritage, such as the restoration of classical organs in East Germany, historic buildings and churches or precious manuscripts. Education and Training\nSupports school projects that prepare young people for their professional career. Activities include an annual summer school which brings together young leaders from around the world to discuss issues of global governance with international experts; a writing competition “”Schreibmal”” (time for writing); the Gerd Bucerius National Library Prize which promotes the importance of books as vital communicators of education, culture, knowledge, tradition and confidence in the future; and the Gerd Bucerius Prize ‘Free Press of Eastern Europe’ which supports eastern European media and journalists in an effort to promote a free press under restricted conditions – the latter prize is awarded in cooperation with the Institusjonen Fritt Ord, Oslo. The foundation also runs the Dönhoff Scholarship Programme which enables young and talented journalists from eastern European countries to work for the German media and gain experience for two months, while their German counterparts work at their respective editorial offices in return." + } + }, + { + "id": 5352, + "name": "Wellcome Trust", + "address": "Wellcome Trust 215 Euston Road NW1 2BE London United Kingdom", + "country": "United Kingdom", + "email": "contact@wellcome.ac.uk", + "website": "http://www.wellcome.ac.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Wellcome Trust, 215 Euston Road, London NW1 2BE, United Kingdom", + "lat": 51.5255527, + "lng": -0.1351949, + "zoom": 14, + "place_id": "ChIJt_RE_iUbdkgRJUATGZFZC40", + "name": "Wellcome Trust", + "street_number": "215", + "street_name": "Euston Road", + "street_name_short": "Euston Rd", + "city": "London", + "state": "England", + "post_code": "NW1 2BE", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/wellcome-trust/", + "philea_info": { + "About": "The Wellcome Trust was established in 1936 upon the death of Sir Henry Wellcome. In his will, Wellcome vested the entire share capital of the drug company, The Wellcome Foundation Limited, in individual trustees. The trustees were charged with spending the income according to Sir Henry Wellcome’s wishes.", + "Mission": "To achieve extraordinary improvements in human and animal health.", + "Geographic Focus": "UK, but also worldwide including major initiatives in Africa, India and South-east Asia.", + "Programme Areas": "The Trust supports the brightest minds in biomedical research and the medical humanities, with the aim of improving human and animal health. It offers a wide variety of funding schemes, including Investigator Awards, fellowships and Strategic Awards, and also supports several major initiatives. There are six funding areas: • Biomedical science – Investigating health and disease in humans and animals\n• Technology transfer – Helping the development of innovative, early-stage projects with potential medical applications\n• International – Supporting research, capacity building and engagement activities in low- and middle-income countries.\n• Public engagement – Imaginative and experimental projects that bring biology and medicine to new audiences\n• Medical history and humanities – Research at the interface of medical science, history and the wider humanities\n• Biomedical ethics – Supporting research into ethical dilemmas in the development and delivery of healthcare" + } + }, + { + "id": 5350, + "name": "VolkswagenStiftung", + "address": "VolkswagenStiftung Kastanienallee 35 30519 Hannover Germany", + "country": "Germany", + "email": "info@volkswagenstiftung.de", + "website": "http://www.volkswagenstiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "VolkswagenStiftung, Kastanienallee 35, 30519 Hannover, Germany", + "lat": 52.3325449, + "lng": 9.7682695, + "zoom": 14, + "place_id": "ChIJ48hYtucKsEcR2nkI49fN6hU", + "name": "VolkswagenStiftung", + "street_number": "35", + "street_name": "Kastanienallee", + "city": "Hannover", + "state": "Niedersachsen", + "state_short": "NDS", + "post_code": "30519", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/volkswagenstiftung/", + "philea_info": { + "About": "VolkswagenStiftung was established in 1961, and started its activities in the spring of 1962. Its origins are based on a government treaty between the Federal Republic of Germany and the State of Lower Saxony, which settled the controversy over the ownership of the Volkswagen factories after 1945. The then Volkswagen GmbH was converted into a joint stock company under German law. The proceeds were transferred to the Volkswagen Foundation.", + "Mission": "VolkswagenStiftung is dedicated to the support of the humanities and social sciences as well as science and technology in higher education and research. It funds research projects and provides assistance to academic institutions for the improvement of the structural conditions for their work. In particular, the Foundation perceives its mission in supporting aspiring young researchers and in promoting interdisciplinary and international collaboration.", + "Geographic Focus": "International", + "Programme Areas": "The Foundation focuses its funding activities on selected initiatives. By means of these initiatives, it endeavours to provide effective stimuli for research and to establish forward-looking topics. The funding initiatives are grouped into the areas: • Persons and Structures\n• Challenges – for Academia and Society\n• International Focus\n• Research in the Digital Age\n• Completed Initiatives In addition to its funding initiatives, the Foundation is providing support for: • Research institutions in Lower Saxony: Niedersächsisches Vorab\n• Outstanding projects which do not fit into its current funding initiatives: Off the beaten track\n• Supporting grantees’ interaction with the public and with the scientific community at large: Communicating Science and Research The Foundation organise also a program of events. Events of the Volkswagen Foundation are aimed at strengthening the bond between science and society at large and generating fresh impetus for the transfer of research results. Persons and Structures • Lichtenberg professorships: provides support to junior academics in connection with innovative fields of research located between the disciplines as well as new teaching concepts within the respective research environment\n• Opus Magnum: the initiative aims at providing more freedom for writing a larger scholarly treatise to professors from the humanities and social sciences who have already achieved a degree of renown by virtue of (a first) outstanding research performance.\n• ‘Freigeist’ Fellowships: The ‘Freigeist’ scheme is deliberately left open to all disciplines and topics. The main focus is on junior researchers (up to 5 years of postdoctoral experience). It offers freedom for creative thinking, whilst at the same time security for at least 5 years and in the long run the opportunity to establish a career within a scientific research organization or university in Germany.\n• Research in Museums\n• University of the Future: aims to support projects on structural innovation and to promote the internationalization of German universities.\n• Call: Arts and Science Challenges – For Academia and Society • Symposia and SummerSchools: to support events in all subject areas dealing with new ideas and research approaches in order to encourage innovative event formats as well as new ways of supporting interaction and networking among the participants. Future Issues of Our Society: analysis, advice and communication between academia and practice.\n• Macroscopic Functional Systems … : to promote the advancement of molecular or nanoscale units to more complex functional systems at a macroscopic scale.\n• Experiment!\n• “Original – isn’t it?” : to promote the exploration of research ideas of groundbreaking originality in the humanities and cultural studies.\n• Life? : encourages projects that contribute to comprehending fundamental principles of life by working with systems resembling those of living ones or by exploring chemical and physical cellular processes. International Focus The funding initiatives relating to other countries serve international cooperation and the systematic support of institutions and projects outside Germany.\n• Knowledge for Tomorrow: cooperative research projects in Sub-Saharan Africa\n• Between Europe and the Orient: a focus on research and higher education in/on Central Asia and the Caucasus\n• Europe and Global Challenges\n• Call : Arab World : support for cooperative research projects focusing on the Arab world and addressing issues related to “experience of violence”, “trauma relief”, and “commemorative culture”.\n• “Postdoctoral Fellowships in the Humanities at Universities and Research Institutes in Germany and the USA” aims to strengthen transatlantic academic relations, especially in the field of the Humanities. In this funding initiative, the Volkswagen Foundation works closely with the Andrew W. Mellon Foundation, New York. Research in the Digital Age International Research in Computational Social Sciences\n‘Mixed Methods’ in the Humanities\nScience and Data-Driven Journalism Events Since 2012 the Volkswagen Foundation has been holding all its funded international scientific conferences and public events in the Herrenhausen Palace Conference Center in Hannover. The background idea is to further discourses on current research issues and provide stimulus for the transfer of knowledge to the general public. The Foundation also welcomes proposals to hold symposia and summer schools at the Herrenhausen Palace Conference Center." + } + }, + { + "id": 5349, + "name": "Vodafone Stiftung Deutschland", + "address": "Vodafone Stiftung Deutschland Ferdinand-Braun-Platz 1 40549 Düsseldorf Germany", + "country": "Germany", + "email": "info@vodafone-stiftung.de", + "website": "http://www.vodafone-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Vodafone Office, Ferdinand-Braun-Platz, Düsseldorf, Germany", + "lat": 51.2351599, + "lng": 6.732056399999999, + "zoom": 14, + "place_id": "ChIJCyBxiOG1uEcRBQ2qhl38B1Y", + "name": "Vodafone Office", + "street_number": "1", + "street_name": "Ferdinand-Braun-Platz", + "city": "Düsseldorf", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "40549", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/vodafone-stiftung-deutschland/", + "philea_info": { + "About": "The Vodafone Stiftung is one of the largest company-related foundations in Germany. It supports and initiates projects with the goaI of providing impetus to social progress in order to assume social policy responsibility.", + "Mission": "To recognise challenges and chances, to give support and eventually to make a difference.", + "Geographic Focus": "Germany", + "Programme Areas": "The Vodafone Foundation Germany concentrates on the areas of education, integration and social mobility. The Foundation is committed to these areas, with long-term programme funding, awards, competitions and grants, as well as a think tank. The Foundation is concerned with realising ideas and programmes that provide answers to societal problems and challenges. A particular focus of the Foundations work are young people—children, youths and young adults—whose development the Foundation wants to support and foster. The programmes are the following: – Vodafone Scholarship Programme\n– Deutscher Lehrerpreis – German Award for Innovative Teaching\n– Ideas for the educational republic\n– Vodafone Talents\n– buddY Programme\n– familY Programme\n– Off Road Kids\n– Düsseldorf ist ARTig – Düsseldorf is arty\n– Paediatric Pain Therapy Vodafone Scholarship Programme\nThe Vodafone Foundation Germany wants to open new educational opportunities to young people with migrant backgrounds who want to live and work in Germany. Since the winter term 2006/2007, the Foundation has offered the Vodafone Scholarship Programme, the nationwide only scholarship programme for students with migrant backgrounds at selected universities. German Award for Innovative Teaching\nA nationwide competition for dedicated and creative teachers at German schools. Teachers present ideas for innovative lessons — and students join in. Society as a whole and the life of each student is unimaginable without the great personal commitment of teachers. School shapes one for life. To do their jobs, teachers require more than just support, they also need recognition. The German Award for Innovative Teaching has the aim of increasing public appreciation of the teaching profession. Ideas for the educational republic\nThe competition recognises initiatives, institutions and societies/associations which are demonstrating a long-term commitment to a level playing field in education for children and young people. Vodafone Talents\nThe Think Tank project, Vodafone Talents creates a conversation between education researchers, politicians and experts from school administration and education ministries, as well as practitioners from schools and work with parents. This is to develop instruments that equip parents to make decisions and sensitise teachers to social differences, and provide support when recommending schools. To do this, Vodafone Talents takes a holistic view of decision-making skills and the decision architecture. The buddY Programme\n“Looking out for each other. – Being there for one another. Learning together.” This is the motto of the buddY Programme to develop the social skills of schoolchildren, which has been running and continuously expanding since 1999. The familY Programme\nThis new pilot project consciously approaches the family as a central institution for learning. The overarching aim of the familY Programme is to improve children’s starting conditions for learning, to increase educational opportunities, and to strengthen equal opportunities in our society. Families, children and parents benefit from this Programme in different ways. Off Road Kids\nNo child in Germany should have to live on the streets. This is the declared goal of the Off Road Kids aid organisation. The Vodafone Foundation Germany helps energetically and finances the four Off Road Kids Street Work Stations in Berlin, Hamburg, Dortmund and Cologne. Düsseldorf ist ARTig\nFunded by the Vodafone Foundation Germany, this major art competition offers young people in and around Dusseldorf the opportunity to realise their own artistic ideas with the support of experienced artists. DÜSSELDORF IST ARTIG has established itself as an integral component of fostering young artistic talent. The aim is “give us room for artistic ideas, view young culture as a resource, not a threat, and listen to the experts — to young people!” Paediatric Pain Therapy\nRecognise responsibility. Support the disadvantaged. Minimising the suffering of children with chronic pain or life-shortening illnesses through research and therapy is the goal of the Vodafone Foundation Institute for Paediatric Pain Therapy in Datteln. With this Institute, the Foundation is taking responsibility for an interdisciplinary concept that is both new and unique in Germany. It includes in- and out-patient treatment of children who are in pain, as well as clinical research. Witten/Herdecke university has set up the world´s first Chair of Paediatric Palliative Medicine, financed by the Foundation. The medical and psychosocial care of children who are suffering from life-shortening illnesses is only beginning in Germany. The Chair ensures an interdisciplinary knowledge transfer into the healthcare system. In this regard, the Chair of Paediatric Palliative Medicine is performing pioneering work." + } + }, + { + "id": 5346, + "name": "VELUX Foundations, The", + "address": "The VELUX Foundations Tobaksvejen 10 2860 Søborg Denmark", + "country": "Denmark", + "email": "info@veluxfoundations.dk", + "website": "http://www.veluxfoundations.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "THE VELUX FOUNDATIONS, Tobaksvejen 10, 2860 Søborg, Denmark", + "lat": 55.74046800000001, + "lng": 12.480344, + "zoom": 14, + "place_id": "ChIJjZFSlN1RUkYRfCw0SHUZkhE", + "name": "THE VELUX FOUNDATIONS", + "street_number": "10", + "street_name": "Tobaksvejen", + "city": "Søborg", + "post_code": "2860", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/velux-foundations-the/", + "philea_info": { + "About": "The Velux Foundations are comprised of the two non-profit, private charitable foundations Velux Fonden (1971) and Villum Fonden (1981). Both foundations were created by Villum Kann Rasmussen – the Danish founder of Velux and other companies in the VKR Group. The VKR Group expanded from a one-man business to an international corporation that today employs over 13,500 people in 40 countries. Today, the VKR Group is owned by foundations and family members of Mr Kann Rasmussen, and its focus remains on providing people with more daylight, fresh air and a better indoor environment. The major shareholder of VKR Holding is the foundation VILLUM FONDEN. During its history, VILLUM FONDEN and VELUX FONDEN have made a total of DKK 7.4 billion in grants to all manner of non-profit projects.", + "Mission": "The mission of the Foundations is to support non-profit organisations or individuals in carrying out projects that support fundamental areas of the civil society such as research in technical, natural, health and human sciences along with environmental, social, cultural purposes. It is therefore a precondition for the activities that the grants seek to make a significant difference to those areas in the civil society and to the individual grantees.", + "Geographic Focus": "Primarily Denmark but increasingly international.", + "Programme Areas": "The foundations have separate programme areas: VILLUM Foundation:\nThe foundation supports research in the technical and natural sciences, as well as environmental, social and cultural projects in Denmark and abroad. The foundation is responsible for awarding the Villum Kann Rasmussen Annual Award in Science and Technology. VELUX Foundation:\nThe foundation supports scientific, cultural, social and environmental projects that seek to advance an informed, open, inclusive and sustainable society. The foundation’s priority areas are: active senior citizens, ophthalmology and gerontology." + } + }, + { + "id": 5345, + "name": "Vehbi Koç Foundation", + "address": "Vehbi Koç Vakfi Nakkastepe, Azizbey Sokak No.1, Kuzguncuk 34674 Istanbul Turkey", + "country": "Turkey", + "email": "info@vkv.org.tr", + "website": "http://www.vkv.org.tr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Kuzguncuk, Vehbi Koç Vakfı, Nakkaştepe, Aziz Bey Sokak No: 1, 34674 Üsküdar/İstanbul, Turkey", + "lat": 41.0318529, + "lng": 29.0384855, + "zoom": 14, + "place_id": "ChIJDySJjRq3yhQRQwAq8FxSSoA", + "name": "Vehbi Koç Vakfı", + "street_number": "No: 1", + "street_name": "Aziz Bey Sokak", + "street_name_short": "Aziz Bey Sk.", + "state": "İstanbul", + "post_code": "34674", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/vehbi-koc-foundation/", + "philea_info": { + "About": "The Vehbi Koç Foundation (Vehbi Koç Vakfı) was first endowed on 17 January 1969. Its establishment made it the first major private foundation of the Turkish Republic and brought about a revival of the age-old tradition of the Vakıf – philanthropic endowments for the public good. The foundation has since then carried out a large number of activities in the fields of education, healthcare and culture – all of which are of utmost importance to the nation’s wellbeing and further development – and has become a role model to a great many other philanthropists. In its first years, the foundation used its resources to fund the establishment of several schools, student dormitories, libraries and clinics, handing each over to the relevant public administration. Later, it pioneered the setting up of a number of major not-for-profit institutions in each of its focus areas of education, healthcare and culture. Throughout its history, the foundation has provided thousands of scholarships to help talented students in need attain equal opportunity in education.\nWith significant investments and commitments made in the field of education, healthcare and culture, the Koç Family and the Vehbi Koç Foundation take pride in being appreciated by many reputable institutions in the international arena. The Koç Family and the Vehbi Koç Foundation is the only Family and Institution to receive all three of these prominent awards: World Monument Fund – ‘Hadrian Award’ (2007), Carnegie Foundation -‘ Carnegie Medal of Philanthropy’ (2009), BNP Paribas – ‘Grand Prize for Individual Philanthropy’ (2011).", + "Mission": "To create institutionalised and sustainable charitable services to serve the Turkish people in the areas of education, health care and cultural heritage.", + "Geographic Focus": "Turkey", + "Programme Areas": "The foundation serves the community by supporting existing active organisations in its fields of interest and providing scholarships to financially disadvantaged youth, as well as forming and operating other establishments. Its activities are concentrated in the following areas:\n• Education\n• Health care\n• Cultural heritage Education\nStrives to raise the society’s standards to a higher level by establishing educational institutions which focus on achieving top quality. In line with the above principle, the foundation founded the Vehbi Koç Vakfi University, Koç Private Elementary and High School. The foundation also awards scholarships to talented students in need of financial support, with the aim of establishing the principle of equal opportunity in education. In addition, the foundation completed the ‘Eight Year Continuous Education’ campaign by building 13 primary schools in 10 provinces in 2001. Health Care\nSeeks to create models that provide a high standard of health care and create permanent facilities for the benefit of the country. Activities include the purchase and expansion of the American Hospital in Istanbul and the opening of the Italian Oncology and Rehabilitation Hospital. The Semahat Arsel Nursing Education and Research Centre was added on to the hospital to raise the level of knowledge in the nursing profession and to improve the quality of patient care. Scholarships are granted to nurses to continue their training. Cultural Heritage\nConcentrates on preserving Turkey’s cultural heritage through various museums and research centres including the Sadberk Hanim Museum, Turkey’s first private museum with an expansive archaeological and fine arts collection; the Suna-Inan Kiraç Research Institute on Mediterranean Civilisations, which carries out research in archaeology and indigenous cultures, and a research centre on Vehbi Koç and Ankara. Support is also given for cultural and artistic projects that seek to enrich the cultural life of the nation and for archaeological excavations in Turkey." + } + }, + { + "id": 5344, + "name": "Van Leer Group Foundation", + "address": "Van Leer Group Foundation Lange Houtstraat 2 2511 CW Den Haag Netherlands", + "country": "Netherlands", + "email": "mail@vanleergroup.org", + "website": "http://www.vanleergroupfoundation.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bernard van Leer Foundation, Lange Houtstraat 2, 2511 CW Den Haag, Netherlands", + "lat": 52.0807884, + "lng": 4.3156968, + "zoom": 14, + "place_id": "ChIJ5WRAtDy3xUcRG3BgSnLCbdc", + "name": "Bernard van Leer Foundation", + "street_number": "2", + "street_name": "Lange Houtstraat", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2511 CW", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/van-leer-group-foundation/", + "philea_info": { + "About": "The Van Leer Group Foundation is a privately endowed charitable organisation established in 1979 by Oscar Van Leer. It performs the holding function for all the Van Leer charitable activities and as such supervises its investment portfolio and the governance of its charitable activities. The Van Leer charitable activities are presently embodied in the Van Leer Group Foundation in Amstelveen, the Bernard Van Leer Foundation in The Hague, Van Leer Jerusalem Institute and Jerusalem Film Centre.", + "Mission": "To promote the optimum development of socially and economically disadvantaged children up to the age of eight, with the objective of developing their innate potential to the greatest possible extent; to contribute to the development and strengthening of a Jewish, democratic national home in Israel committed to a free, equitable and just society for all of its citizens, and to contribute to the pursuit of regional peace for the benefit of social, cultural and individual lives in Israel; and to promote and further the continuity and the preservation of the identity of the Van Leer Entity.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The foundation’s programmes focus on its three objectives: • Early childhood development\n• The improvement of social and cultural conditions in Israel\n• The promotion of the Van Leer Entity Early Childhood Development\nPromotes the optimum development of socially and economically disadvantaged children up to the age of 8, with the objective of developing their innate potential to the greatest extent possible. The Improvement of Social and Cultural Conditions in Israel\nContributes to the development and strengthening of a Jewish democratic national home in Israel committed to a free, equitable and just society for all its citizens; and contributes to the pursuit of regional peace, for the benefit and betterment of social, cultural and individual lives in Israel. The Promotion of the Van Leer Entity\nThe Van Leer Entity embodies the philanthropic goals of the Van Leer family. VLGF takes a particular responsibility with respect to the way in which the legacy of the Van Leer family is translated into existing and new humanitarian ventures and income generating activities. As a holding foundation, VLGF is responsible for the governance issues, such as the board composition, profile of members, geographical composition and tenure of itself and of the Bernard Van Leer Foundation and Crecor B.V." + } + }, + { + "id": 5337, + "name": "UniCredit Foundation", + "address": "UniCredit Foundation Piazza Gae Aulenti, 3 – Tower A, 25th floor 20154 Milan Italy", + "country": "Italy", + "email": "info@unicreditfoundation.org", + "website": "http://www.unicreditfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "UniCredit Foundation, Piazza Gae Aulenti, 3, Milan, Metropolitan City of Milan, Italy", + "lat": 45.4837646, + "lng": 9.189772000000001, + "zoom": 14, + "place_id": "ChIJW2rauq3GhkcRFxc5GrT2yII", + "name": "UniCredit Foundation", + "street_number": "3", + "street_name": "Piazza Gae Aulenti", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20124", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/unicredit-foundation/", + "philea_info": { + "About": "UniCredit Foundation works through the promotion of social cohesion processes in the territories and through social entrepreneurship, considered a capable tool for producing and delivering goods and services for social utility.\nThe Foundation is a competence center for UniCredit on issues of philanthropy and the third sector. In particular, the foundation offers advice and organises activities for the Group companies and their customers.\nLastly, UniCredit Foundation promotes a culture of volunteering and giving to the community through the dedicated efforts of all the employees, encouraging their participation in social activities and projects.", + "Mission": "UniCredit Foundation is a corporate foundation that was established in 2003 in order to contribute to the development of solidarity and philanthropy in the communities and territories where UniCredit operates, primarily in the regions where UniCredit is present (17 countries including Europe and Central Asia). Through the transfer of financial resources and the typical management skills of a company, UniCredit Foundation supports projects of significant social impact and innovation, implemented by local non-profit organizations.", + "Geographic Focus": "The 22 countries were UniCredit Group is present. In the last few years initiatives have mainly been in Austria, Bosnia and Herzegovina, Bulgaria, Croatia, Czech Republic, Germany, Hungary, Italy, Poland, Romania, Russia, Serbia, Slovakia, Slovenia. The foundation also operates in Burkina Faso and Benin.", + "Programme Areas": "The foundation focuses on the following areas of interest: • Primary healthcare\n• Migrations Programme\n• Social Business\n• Social enterprise\n• Other initiatives Primary Healthcare\nUniCredit Foundation’s projects promote a multi-sector approach, which combines actions designed to restore public healthcare and extend the coverage of essential health services, with actions aimed at improving social and economic conditions of the local communities. The foundation’s main initiatives are focused on the rural areas of Benin and Burkina Faso. Migrations Programme\nThe Migrations Programme has been promoted by UniCredit Foundation within UniCredit, with the main goal of increasing awareness and culture about the phenomenon of international migrations. This multi-year programme targets the 22 countries where UniCredit is present – which are to some extent affected by migrations flows and effects. The programme consists of the following main components: • Development Projects to support, in each country, social initiatives focusing on relevant local issues related to migration\n• Employee Community Involvement (ECI) activities to offer for direct involvement of UniCredit Colleagues, giving them different possibilities to learn, express their passions and engage directly Visit the dedicated website migrations.unicreditfoundation.org Social Business\nSince 2008 UniCredit Foundation has dedicated particular attention to the concept of microcredit as the only relevant instrument to fight poverty and promote social inclusion based on mechanisms characteristic of the banking world. In June of that year, a feasibility study was launched in collaboration with the University of Bologna and Grameen Trust to verify the opportunity to set up a micro finance initiative according to Grameen’s best practices. In February 2009 it was agreed that the preconditions exist for effectively implementing the Grameen Italia project and the second phase was initiated to define the various structural, financial and organisational aspects. Social Enterprise\nSince 2007 UniCredit Foundation has launched a number of initiatives centered on the concept of social business, a concept that represents a natural connection between the for profit and the non-profit sectors, an intermediate form – often defined as “not only for profit” – which attempts to create a virtuous combination of techniques and methodologies typical of the for profit sector and aspirations and ideals of the non-profit sector. Social purpose can be pursued through the direct production of services such as care living, education, healthcare, etc. or through the production of goods or services to aid the creation of job opportunities for vulnerable persons (former convicts, people with disabilities, former drug addicts, etc.). Other initiatives\nIn addition to the main areas of intervention, UniCredit Foundation also supports: • Social projects of Casa della carità Foundation and the cultural activities of the Accademia della carità\n• United Colours of Futsal\n• The Afro project\n• The project of social cohesion Conoscere per essere of the School Association of the G.Giusti Institute" + } + }, + { + "id": 5335, + "name": "TrustAfrica", + "address": "TrustAfrica Lot 4 Almadies Ngor Dakar Senegal", + "country": "Senegal", + "email": "info@trustafrica.org", + "website": "http://www.trustafrica.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "4 Route des Almadies, Ngor, Dakar, Senegal", + "lat": 14.7385274, + "lng": -17.5131516, + "zoom": 14, + "place_id": "EiI0IFJ0ZSBkZXMgQWxtYWRpZXMsIERha2FyLCBTZW5lZ2FsIjASLgoUChIJ237NBsUSwQ4Ry2kdRtvYFHIQBCoUChIJ3fD3cNwSwQ4RhVXVpkjXcuM", + "name": "4 Rte des Almadies", + "street_number": "4", + "street_name": "Route des Almadies", + "street_name_short": "Rte des Almadies", + "city": "Dakar", + "state": "Dakar", + "country": "Senegal", + "country_short": "SN" + }, + "link": "https://philea.eu/members/trustafrica/", + "philea_info": { + "About": "TrustAfrica, first known as the Special Initiative for Africa, began in 2001 under the aegis of the Ford Foundation. The premise was that Africans need a greater voice in the international donor community as well as philanthropic resources that Africans control. In 2006, TrustAfrica became a truly African foundation with the opening of new headquarters in Dakar, Senegal. The Ford Foundation continues to provide support, but the organisation is now independent and governed solely by Africans. TrustAfrica works mainly through collaboration and partnership with like-minded institutions and donors, and promotes good governance and management practices among African NGOs.", + "Mission": "To strengthen African initiatives that address the most difficult challenges confronting the continent.", + "Geographic Focus": "Africa", + "Programme Areas": "TrustAfrica is active in the following areas: • Democratic Governance\n• Equitable development\n• African philanthropy • Grants Democratic Governance\nSecures the conditions for democracy by strengthening the capacity of civil society organizations and by ensuring that citizens are fully engaged in governance processes—not just in their respective countries but also at the regional level. Equitable development\nSupports initiatives to foster African enterprise and extend the benefits of economic growth to all members of society. This includes:\n– Agricultural Development Project\n– Higher Education Reform\n– Women’s Rights\n– Investment Climate and Business Environment (ICBE) Research Fund\n– Early Learning Innovations African philanthropy\nSeeks to align external philanthropic resources with African agendas as well as to cultivate indigenous resources that support the continent’s own priorities for democracy and development." + } + }, + { + "id": 5330, + "name": "Tiina and Antti Herlin Foundation", + "address": "Tiina and Antti Herlin Foundation Kartanontie 1 00330 Helsinki Finland", + "country": "Finland", + "email": "info@tahsaatio.fi", + "website": "http://www.tahsaatio.fi/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Kartanontie 1, 00330 Helsinki, Finland", + "lat": 60.1943706, + "lng": 24.8812471, + "zoom": 14, + "place_id": "ChIJKfo3xgMKkkYR0XpLC79q_c8", + "name": "Kartanontie 1", + "street_number": "1", + "street_name": "Kartanontie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00330", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/tiina-and-antti-herlin-foundation/", + "philea_info": { + "About": "During their first years of activity they have mostly funded research and projects related to environmental matters, human rights, and climate change mitigation in particular.", + "Mission": "Tiina and Antti Herlin Foundation is an independent foundation, founded in 2014 to support and promote social welfare, culture, the environment and science, as well as their teaching and research." + } + }, + { + "id": 5329, + "name": "Thousand Currents", + "address": "Thousand Currents 1330 Broadway Suite #301 94612 Oakland, CA United States", + "country": "United States", + "email": "rajiv@thousandcurrents.org", + "website": "https://thousandcurrents.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Oakland, CA, United States", + "lat": 37.8043514, + "lng": -122.2711639, + "zoom": 14, + "place_id": "ChIJA-2qKIt9hYARZ5N1NdUVtHE", + "name": "Oakland", + "city": "Oakland", + "state": "California", + "state_short": "CA", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/thousand-currents/", + "philea_info": { + "About": "Since its founding in 1985, Thousand Currents invested in over 750 community-led initiatives in 37 countries in Africa, Asia, and Latin America. Thousand Currents was the inspiration of a group of returned Peace Corps volunteers who had a vision for a different kind of international development model. In 1985, they created International Development Exchange (IDEX, our former name) after seeing that small grants targeted to grassroots groups—who had the trust of their neighbors and the knowledge of what was needed in their own\ncommunities—were often more effective than traditional, large-scale philanthropy. In the subsequent decade, this model grew into a long-term partnership approach. Thousand Currents’ partnership approach to grantmaking inverts the paradigm of\nhow international “aid” efforts have historically been conducted by relying on the wisdom and strength of local people to tackle powerlessness and exclusion. Most large-scale development efforts are still, however, initiated and led by people external to the community with results that are often limited or short-lived. Local initiative ensures a readiness for change and ownership of the change process; it reflects cultural, social, political, geographic, and economic realities, a nuance of understanding that outsiders cannot possess.\nOver time, our strategies and practices have evolved as we have learned from the insights of our partners. For example, initially we provided short-term, project grants. However, in 2000, we transitioned to a partnership model, committing to long-term, flexible funding. In 2014, we adopted a revised theory of change that integrated feedback from our partners, crystallized the partnership model, and strengthened our philanthropic advocacy work. Our new strategy process commenced in 2017, when we held discussions with board, staff, and partners to gauge our direction (as elaborated in our goals above). Our work to channel flexible, general, long-term support to grassroots groups", + "Mission": "Our Vision: Thousand Currents envisions a world in which self-determined and connected people share and uphold the abundance of life. There is enough – for all and for future generations.\nOur Mission: Thousand Currents supports grassroots organizations and movements led by women, youth, and Indigenous Peoples that are creating lasting solutions toshared global challenges. Their work addresses the interdependent issues of food sovereignty, alternative economies, climate justice, and human rights.\nWhat we do: We work with our grassroots partners to scale their successes by building their capacity and leadership; and linking them to broader social change movements at the regional, national, and global levels. Through our Philanthropic Partnerships program, we work with donors to adopt transformative practices that dismantle injustice and inequity. We are a vocal and visible advocate for grassrootsled social change, bridging emerging approaches and learnings from the Global South with philanthropic models and practices in the Global North.\nOur partners resist government and corporate abuses of human and natural resources that perpetuate inequality, poverty, and injustice. They reimagine wealth, power, and well being to offer solutions that draw from ancestral wisdom. Through their\ninnovations, they reflect the needs of today and the possibilities of tomorrow. They move with steadfast dignity, resolve, and courage to build new sources of power through ingenuity and vision. They leave a lasting impact.\nOur Goals: Thousand Currents work is guided by our new three-year strategy, from 2018-2020.\nWe commit to use our resources, access, and influence to deepen the core and turn up the volume through more funding, stronger partnerships and initiatives, streamlined communications, and bolder philanthropic advocacy.\nWe will:\n· Build a stronger, more interconnected, and better-resourced ecosystem of partners in Africa, Asia, and Latin America.\n· Elevate our partners’", + "Geographic Focus": "Thousand Currents works with grassroots leaders, organizations, organizations, and movements in urban, suburban, and rural communities in Nepal, India, Fiji in Asia; South Africa, Ethiopia and Zimbabwe in Africa; and in Mexico, Guatemala, Peru, Brazil and Colombia in Latin America.", + "Programme Areas": "Thousand Currents’ programs build the power and leadership of indigenous women, create alternative economic solutions, as well as advance food sovereignty and climate justice.\n1. Building the Power of Indigenous Women\nFrom grassroots social movements to United Nations organizations, there is clear agreement on the key role indigenous women play in advancing human rights and social change. However, indigenous women continue to suffer the greatest brunt of state sanctioned repression. Our partners strengthen and increase rights, opportunities, self-worth, choices, resources, autonomy, and power of indigenous women through their programs and practices. They work to educate adolescent girls, eliminate domestic violence, increase women’s participation in civil society, and improve women’s access to wealth and resources. In 2014, after deep consultation with grassroots leaders, social movement activists, allies, and donors, we adopted a revised Theory of Change. It reinforced our partnership model and put Indigenous Peoples’ self-determination at the center of our community self-determination goal (for more detail on our Theory of Change, please see: https://thousandcurrents.org/about/#toc). Today our three-year strategy aims to strengthen our support of Indigenous Peoples and Women-led organizations by moving more resources to our partners, building and expanding stronger partnerships, and engaging in strategic philanthropic advocacy to bolster sector-wide grassroots support (for details on our new strategy, see: https://thousandcurrents.org/wp-content/uploads/2018/02/TC-Strategy-2018-20-\n1.pdf). Similarly, our regional strategies in Asia, Latin America, and Africa are expanding or deepening partnerships with organizations that are led-by and work for Indigenous women and communities.\nFor instance, in 2017, Thousand Currents invited four Peru grantee organizations for long-term partnerships, all of which are led-by or work for Indigenous Women: Red Ñuqanchik Maronijei Noshaninka, El Grupo Género y Economía (GGE or Gender and Economy Group), and Federación Nacional de Mujeres Campesinas, Artesanas, Indígenas, Nativas y Asalariadas del Perú (National Federation of Indigenous, Peasants, Artisans, Native and Wage-earning Women of Peru, or FENMUCARINAP), and Asociación para la Naturaleza y el Desarrollo Sostenible (the Association for Nature and Sustainable Development, or ANDES). Our partners have had much success in uplifting Indigenous Women in their communities. For instance in Guatemala, our partners have politically organized and trained the first democratically elected indigenous woman mayor of a small town. In partnership with a countrywide women’s rights political alliance, they have been instrumental in passing the landmark Anti-Femicide Law in Guatemala.\nIndigenous women farmers in Mexico and India are leading the way in agricultural innovations, training community members in reclaiming native seeds, increasing their self-sufficiency, and providing alternatives to the big agri-business model. In Nepal and South Africa, rural women are leveraging small-scale savings into community development by building locally controlled assets and advocating for women’s political empowerment.\n2. Alternative Economic Models\nWe prioritize producers and consumers, not shareholders. Thousand Currents envisions a world in which all communities not only have economic security, but also prosperity. Thousand Currents and its partners, especially organizations led by indigenous women, are developing economic solutions that enrich grassroots communities, build their economic power, and promote harmony between humans and the environment in the pursuit of dignified livelihoods. Our partners are active participants in creating change and building wealth—not just income—for their communities. Our partners help create local economies organized around solidarity and collective interests, rather than entrepreneurial principles.\nThey also:\n● build skills to use existing land and other natural resources in sustainable ways;\n● create access to collective savings and affordable credit through village banking;\n● generate income based on sustainably produced traditional arts and food production;\n● support collective manufacturing and capital generation to enter local and international markets;\n● train each other in financial management and cooperative development to survive employment discrimination;\n● ensure healthy and safe working conditions; and\n● equitably distribute decision-making power among all economic players.\nAn economic development model that many of our partners practice is the concept of “Solidarity Economy”, which is guided by equitable and sustainable development solutions. Individuals work in an organized, communal manner toward improving the lives of the entire group, seeking unity, promoting democracy, and considering the natural ecological equilibrium during production. This model shares common characteristics with efforts in the United States and in other parts of the world, such as worker cooperatives, community land trusts, and common pasturelands that democratize wealth and build a community-sustaining economy. For more information on Solidarity Economy, please see:\nhttps://thousandcurrents.org/supporting-the-solidarity-economy/.\n3. Food Sovereignty\nFood sovereignty allows communities have the autonomy to define their food systems, contextualized within a community’s cultural, traditional, political, and economic realities and traditions. It gives them the freedom to choose how their food is grown. Around the world, Thousand Currents partners in Africa, Asia, and Latin America have been reclaiming their food systems for decades. They focus on small-scale agroecological farming that leads to improved yields, better quality vegetables, lowered costs, and effective management of land, water, soil, and seeds.\nOur partners work to:\n● sharing sustainable and organic food production methods;\n● organizing to sell their food collectively at fair prices;\n● protecting biodiversity and genetic resources within ecosystems;\n● lowering costs while improving the quality and quantity of their yields; and\n● educating their governments to put smallholder farmers’ interests before those of multinational corporations.\n4. Climate Justice\nFor many of the communities where Thousand Currents partners work, climate change has led to contamination of water sources and air, deforestation of ancestral lands, and an increase of natural disasters and erratic weather patterns, which affect a community’s ability to grow enough food. Thousand Currents partners adopt a holistic approach to environmental challenges that not only honors our planet, but also creates opportunities for communities to manage the land, water, and seeds on which their lives and livelihoods depend. Further, agroecological practices are paramount in combating the enormous amount of greenhouse gas emissions, between 44% and 57%, resulting from the global food system. Also, our partners are also demanding accountability from polluting industries and fiercely lobbying the government to take responsibility for their environmental degradation.\nOur partners work to:\n● reduce communities’ vulnerability to natural disasters;\n● reclaim ancestral knowledge of land stewardship and food production;\n● share sustainable farming and grazing practices;\n● learn new technologies to rebuild healthy communities;\n● combat toxic waste and pollution;\n● address environmental racism; and\n● create ecologically sound alternative economies.\nWomen farmers form the backbone of the rural economy. As FAO research shows, bridging the gender gap in agriculture can significantly boost food security, and contribute to overall well-being. By fostering harmony between humans and their environment, Thousand Currents-supported communities are also successfully building wealth, local leadership, especially among women and indigenous groups, and broader community involvement in their initiatives." + } + }, + { + "id": 5328, + "name": "Third Sector Foundation of Turkey (TUSEV)", + "address": "Third Sector Foundation of Turkey Bankalar Caddesi Nº2. Minerva Han Kat:5 Karaköy 34420 Istanbul Turkey", + "country": "Turkey", + "email": "info@tusev.org.tr", + "website": "http://www.tusev.org.tr", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "İstanbul, Turkey", + "lat": 41.0082376, + "lng": 28.9783589, + "zoom": 14, + "place_id": "ChIJawhoAASnyhQR0LABvJj-zOE", + "name": "İstanbul", + "city": "İstanbul", + "state": "İstanbul", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/third-sector-foundation-of-turkey/", + "philea_info": { + "About": "TUSEV was set up in 1993 by 23 leading foundations and associations in Turkey. TUSEV now has over 110 organisations in its network. It is a private, non-profit foundation set up to promote the third sector in Turkey at national and international levels. It is an officially recognised, non-religious and non-political foundation independent of the state and governed by private statute with its own endowment.", + "Mission": "To strengthen the operational, legal and fiscal infrastructure of the third sector in Turkey.", + "Geographic Focus": "Turkey and international", + "Programme Areas": "The foundation seeks to achieve its mission of strengthening the third sector in Turkey through its four main programme areas: • Civil Society Law Reform: Enabling Civil Society\n• Social Investment: Promoting Strategic and Effective Giving\n• International Relations and Networking: Fostering Linkages\n• Research and Publications: Assessing and Understanding the Sector National Activities\nDevelops and distributes key reports and updates on legislative issues and changes; conducts research on civil society and philanthropy; organises meetings, seminars and conferences on topics regarding third sector development; provides consultation to NGOs on matters regarding regulations and formation; promotes local donor activity. International Activities\nParticipates in research programmes with international foundations and NGOs; develops/produces literature for the international community regarding the third sector in Turkey; organises meetings, seminars and conferences with international foundations and NGOs on topics regarding the third sector; participates in networks such as Worldwide Initiatives for Grantmaker Support (WINGS), World Alliance for Civil Participation (CIVICUS), International Society for Third Sector Research (ISTR) and the European Foundation Centre (EFC); collaborates with institutions such as the World Bank on strengthening civil society dialogue; and organises activities to encourage/facilitate closer links between Turkish foundations and NGOs and foreign foundations and NGOs. Also provides support to foreign foundations wishing to make grants/operate in Turkey." + } + }, + { + "id": 5326, + "name": "The Nando and Elsa Peretti Foundation", + "address": "The Nando and Elsa Peretti Foundation Allgemeines Treuunternehmen (ATU) Aeulestrasse 5 9490 Vaduz Liechtenstein", + "country": "Liechtenstein", + "email": "peter.prast@atu.li", + "website": "https://www.nandoandelsaperettifoundation.org/en/page.php", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Allgemeines Treuunternehmen (ATU), Aeulestrasse 5, 9490 Vaduz, Liechtenstein", + "lat": 47.140606, + "lng": 9.521298, + "zoom": 14, + "place_id": "ChIJKRSZjWcxm0cRuxoXjh3PbSA", + "name": "Allgemeines Treuunternehmen (ATU)", + "street_number": "5", + "street_name": "Aeulestrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/the-nando-and-elsa-peretti-foundation/", + "philea_info": { + "About": "Elsa Peretti, born in Florence, is the youngest daughter of Nando Peretti. She was educated in Rome and Switzerland. Elsa’s outspoken personality, intolerant of the conventions of her milieu, led her to seek a different approach to life. This search marked her restless youth, during which she lived in many different countries. Two places are particularly important to her: Barcelona, where she started her career as a fashion model, and New York, where she started what was to become her main activity: designing. After working with such leading fashion designers such as Giorgio di Sant’Angelo, Halston, and many more, she joined Tiffany and Co. in 1974. Since then she continues adding new items to her collection. The main source of inspiration for Elsa has always been nature. The same gift, which enables her to abstract the essence of a shape from the details surrounding it has brought her to develop a particular attention to life even in its humblest forms. Over time, this aesthetic enchantment grew into an active concern over the future of our planet. In this process, two major challenges stand out as the core of her struggle to give concrete help to our future: the protection of our environment and the empowerment of children by protecting their rights to education and health. At the beginning of the new millennium she realized what she considers today the most ambitious achievement of her life: to assemble a staff of motivated people in a Foundation passionate to take up these challenges.", + "Mission": "The Nando and Elsa Peretti Foundation commits its resources mostly to small and specific projects for the benefit of local, disadvantaged communities that also address issues of global relevance. The purposes of the foundation are exclusively charitable, scientific and educational. In particular, the NaEPF provides grant support in the following areas: – Environmental and animal protection, with focus on the area of organic farming, climate change mitigation and wildlife preservation;\n– Social inclusion and social welfare, including relief of poverty with a focus on elderly and children;\n– Global education;\n– Humanitarian or disaster relief;\n– Promotion and protection of human rights and the rule of law, with a special consideration to women’s right to education and equal treatment;\n– Health, medical care and scientific research;\n– Arts, culture or historical preservation", + "Geographic Focus": "Worldwide", + "Programme Areas": "‘- Environmental and animal protection, with focus on the area of organic farming, climate change mitigation and wildlife preservation;\n– Social inclusion and social welfare, including relief of poverty with a focus on elderly and children;\n– Global education;\n– Humanitarian or disaster relief;\n– Promotion and protection of human rights and the rule of law, with a special consideration to women’s right to education and equal treatment;\n– Health, medical care and scientific research;\n– Arts, culture or historical preservation" + } + }, + { + "id": 5383, + "name": "The Ethos Foundation", + "address": "The Ethos Foundation 18 Buckingham Palace Road SW1W 0QP London United Kingdom", + "country": "United Kingdom", + "email": "ethosfoundation.uk@gmail.com", + "website": "", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "18 Buckingham Palace Road, London SW1W 0QP, United Kingdom", + "lat": 51.4977045, + "lng": -0.1443356, + "zoom": 14, + "place_id": "ChIJHXL6GCEFdkgRrvnbRBZYkh8", + "name": "18 Buckingham Palace Rd", + "street_number": "18", + "street_name": "Buckingham Palace Road", + "street_name_short": "Buckingham Palace Rd", + "city": "London", + "state": "England", + "post_code": "SW1W 0QP", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/the-ethos-foundation/", + "philea_info": { + "About": "The Founders are Grant and Brigitte Gordon.\nThe Foundation’s giving is informed by a multi-generational family commitment to philanthropy.", + "Mission": "OUR MISSION\nTo support local communities and UK society in general.\nWE VALUE\nKnowledge – learning every day\nSustainability – building a lasting legacy\nHumility – staying grounded", + "Geographic Focus": "No geographic exclusions; current programmes focus on UK, with particular interest in London and Scotland", + "Programme Areas": "PHILANTHROPY INFRASTRUCTURE IN THE UK: The Beacon Collaborative increases UK philanthropy and social investment through peer influence, public awareness, professional advice, political engagement, and research into giving and social investment. https://www.beaconawards.org.uk/\nCHILD POVERTY IN LONDON: The Childhood Trust provides matching funding for projects that operate throughout London and help to provide vital support to children living in poverty. https://www.childhoodtrust.org.uk/\nHERITAGE: The Cabrach Trust works to regenerate a thriving, sustainable community with its history, heritage and place in Scottish history celebrated and shared by all, through the creation of a Heritage Centre and historic working distillery providing much-needed local employment. https://www.cabrachtrust.org/ Grant Making\nThe Foundation does not accept unsolicited grant applications or proposals for funding.\nThe Foundation normally applies its annual income to charitable causes proactively selected by its trustees. Grant-making decisions aim to honour the family’s historical philanthropy and to make a positive impact going forward.\nFrom time to time, the Foundation may identify new focus areas and conduct research and due diligence to identify charities and programmes best placed to make a difference. Those identified will be invited to apply for support. The Foundation will work with prospective grantees in preparing materials and developing proposals for review by the trustees.\nGrants are normally made to a registered UK charity or CIO. The Ethos Foundation will generally not fund:\nIndividuals\nFundraising events\nMedical causes or scientific research\nReligious causes\nAnimal-related causes" + } + }, + { + "id": 5207, + "name": "The Association of Swedish Foundations", + "address": "The Association of Swedish Foundations P.O. Box 3615 10359 Stockholm Sweden", + "country": "Sweden", + "email": "", + "website": "http://www.stiftelserisamverkan.se", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Stockholm, Sweden", + "lat": 59.32932349999999, + "lng": 18.0685808, + "zoom": 14, + "place_id": "ChIJywtkGTF2X0YRZnedZ9MnDag", + "name": "Stockholm", + "city": "Stockholm", + "state": "Stockholm County", + "country": "Sweden", + "country_short": "SE" + }, + "link": "https://philea.eu/members/the-association-of-swedish-foundations/", + "philea_info": { + "About": "The Association of Swedish Foundations was founded in 1989, and is a uniting force and a meeting place for Swedish foundations. Both foundations and individuals interested in topics regarding foundations may become members of the association. Furthermore, the Association of Swedish Foundations is one of the organizations consulted by the Swedish government on new legislation proposals.", + "Mission": "The Association of Swedish Foundations is an association of foundations and individuals dedicated to creating a supportive legal and fiscal environment for foundations. We also strive to emphasize the altruistic work of foundations and to show the important role of foundations in Swedish society. In order to achieve this we support cooperation, both among foundations and between foundations and other actors in society." + } + }, + { + "id": 5323, + "name": "Terre des Hommes - Netherlands", + "address": "Stichting Terre des Hommes Nederland Grote Marktstraat 43 2511 BH Den Haag Netherlands", + "country": "Netherlands", + "email": "info@tdh.nl", + "website": "http://www.terredeshommes.nl", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Grote Marktstraat 43, The Hague, Netherlands", + "lat": 52.0760376, + "lng": 4.31123, + "zoom": 14, + "place_id": "ChIJUb3-LyS3xUcR4MZsZqFklQ0", + "name": "Grote Marktstraat 43", + "street_number": "43", + "street_name": "Grote Marktstraat", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2511 BH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/terre-des-hommes-netherlands/", + "philea_info": { + "About": "In 1965, Dutch volunteers copied Frenchman Edmond Kaiser’s initiative in the Netherlands. In the beginning, Terre des Hommes Netherlands mainly helped children in emergency situations in developing countries via Dutch doctors. Over the years, however, the focus has shifted to structural aid through local project partners.", + "Mission": "To prevent child exploitation, removes children from exploitative situations and ensures these children can develop themselves in a safe environment.", + "Programme Areas": "Child exploitation is about serious violations of the rights of the child. The definition covers:\n– worst forms of child labour (according to Convention 182 of the ILO);\n– child trafficking;\n– sexual exploitation of children;\n– child abuse\nStopping child exploitation, the most serious violations of the rights of the child, has now become the main focus of Terre des Hommes Netherlands. This is not an easy fight; poverty can drive people to despair and prosecuting perpetrators of child exploitation is rarely a priority for local authorities. But Terre des Hommes is working, with its local partners, to build a world without child exploitation." + } + }, + { + "id": 5322, + "name": "Fundacja TechSoup", + "address": "Fundacja TechSoup ul. Bracka 25 00-028 Warsaw Poland", + "country": "Poland", + "email": "", + "website": "https://www.techsoup.pl/content/fundacja", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "TechSoup Polska, Bracka, Warsaw, Poland", + "lat": 52.2321134, + "lng": 21.0155602, + "zoom": 14, + "place_id": "ChIJcUsEvvrMHkcRMAdUE5sRqlU", + "name": "TechSoup Polska", + "street_number": "25", + "street_name": "Bracka", + "city": "Warszawa", + "state": "Województwo mazowieckie", + "post_code": "00-028", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/fundacja-techsoup/", + "philea_info": { + "About": "Fundacja TechSoup (FTS) helps civil society organizations benefit from technology to achieve their missions. FTS supports nonprofits by providing ICT resources, organizing and providing access to data, convening activists, and sharing knowledge.", + "Mission": "Fundacja TechSoup (FTS) helps civil society organizations benefit from technology to achieve their missions. FTS supports nonprofits by providing ICT resources, organizing and providing access to data, convening activists, and sharing knowledge.", + "Programme Areas": "– Technology: FTS provides cheaper access to legal, up-to-date software, hardware, solutions and services to nonprofits, libraries and museums in Poland through TechSoup Polska.\n– Education: We also teach how to use new technologies. We organize training and international events for our partners, civil society organizations and grass-root activists that learn how technology helps to tell their stories, attract allies, earn money or boost their media literacy skills (Akademia Dobrej Komunikacji, DIGILEAD, MEGAPHONE, Hive Mind).\n– Tech4Good Solutions: Together with organizations, activists, IT specialists, local administration, and funders we build social applications and civic tech products and take care of their development (eg. Apps4Warsaw, Appss4Cities, TransparenCEE).\n– CSR Services: Fundacja TechSoup facilitates collaborations and the flow of technological knowledge, between the business, non-governmental and public sectors. Thanks to local connections, relevant expertise, and large capacity to quickly develop meaningful and far-reaching CSR projects, Fundacja Techsoup collaborates with corporations locally, regionally, and globally and create, curate, and scale CSR projects and solutions across many communities (Meet and Code)." + } + }, + { + "id": 5321, + "name": "SwissFoundations", + "address": "SwissFoundations Haus der Stiftungen, Kirchgasse 42, 8001 Zürich, Switzerland ", + "country": "Switzerland", + "email": "info@swissfoundations.ch", + "website": "http://www.swissfoundations.ch", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "SwissFoundations, Kirchgasse 42, 8001 Zürich, Switzerland", + "lat": 47.3705033, + "lng": 8.546036599999997, + "zoom": 14, + "place_id": "ChIJMYQG6qugmkcR5_rSmVty-qU", + "name": "SwissFoundations", + "street_number": "42", + "street_name": "Kirchgasse", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8001", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/swissfoundations/", + "philea_info": { + "About": "Founded in 2001, SwissFoundations gives Switzerland’s charitable grant-making foundations a strong and independent voice.", + "Mission": "The association is committed to liberal political framework conditions and a positive public perception of charitable grant-making foundations. It connects foundations with each other and with other relevant stakeholders from politics, science, business and society and provides them with practical support in their day-to-day foundation work. SwissFoundations promotes self-reflection and a culture of learning and inspires foundations to engage in impact-orientated, professional and transparent funding activities. SwissFoundations is the publisher of numerous studies and publications, including the Swiss Foundation Code." + } + }, + { + "id": 5319, + "name": "Svenska Kulturfonden", + "address": "Svenska Kulturfonden Simonsgatan 8 A, 5:e våningen PB 439 00101 Helsingfors Finland", + "country": "Finland", + "email": "kansliet@kulturfonden.fi", + "website": "http://www.kulturfonden.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Finlandia-talo Oy, Mannerheimintie, Helsingfors, Finland", + "lat": 60.1756992, + "lng": 24.9336092, + "zoom": 14, + "place_id": "ChIJMSt58zIKkkYRAOiy0w3BzQ4", + "name": "Finlandia Hall", + "street_number": "13e", + "street_name": "Mannerheimintie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/svenska-kulturfonden/", + "philea_info": { + "About": "Svenska kulturfonden (Swedish Cultural Foundation in Finland) was established in 1908, at a time in history when the right of the Swedish-speaking population to use their own language and have their own culture was at risk. Today, the foundation plays a bridging role in a bilingual society, and, through its work, wants to enhance the understanding of the value of living in a country with two languages.", + "Mission": "To support and strengthen the culture and education of the Swedish-speaking minority in Finland.", + "Geographic Focus": "Primarily the coastal areas of Finland where Swedish is spoken as a mothertongue. Cooperation with and support to projects in the rest of the country as well as the Nordic countries and the rest of Europe.", + "Programme Areas": "The work of the foundation is divided into five lines of action: • Arts and culture\n• Education\n• The Swedish language\n• Social cohesion through NGOs and other third sector associations\n• International activities Annually, they contribute around 33 million Euros of funding. and about 8,000 applications are received annually. According to the rules and regulations of the around 460 individual funds that together form the Swedish Cultural Foundation in Finland, the foundation awards grants both to institutions, associations and individuals with educational and cultural activities and interests. In addition to its grant making activities, the foundation initiates larger projects in the fields of culture and education, organises conferences on varying themes for key froups, and awards a number of prizes each year." + } + }, + { + "id": 5318, + "name": "Svenska folkskolans vänner r.f.", + "address": "Svenska folkskolans vänner r.f. Annegatan 12 A 00120 Helsinki Finland", + "country": "Finland", + "email": "sfv@sfv.fi", + "website": "http://www.sfv.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Svenska folkskolans vänner r.f., Annankatu, Helsinki, Finland", + "lat": 60.164536, + "lng": 24.9400829, + "zoom": 14, + "place_id": "ChIJMZciLMoLkkYRQFRdZUwKC7o", + "name": "Svenska folkskolans vänner r.f.", + "street_number": "12", + "street_name": "Annankatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/svenska-folkskolans-vanner-r-f/", + "philea_info": { + "About": "Originally established to start and support primary schools and libraries for the Swedish speaking population in Finland, SFV’s mission today is much broader (see above). Today SFV has more than 9,000 members, publishes its own series of books and magazines and organises a wide range of seminars and study circles in most parts of the country.", + "Mission": "To promote and endorse Swedish language and culture in Finland, through educational programmes, grants, scholarships and annual competitions in creative writing.", + "Geographic Focus": "Finland (mostly the Swedish speaking regions) and The Nordic countries", + "Programme Areas": "1. Grants and scholarships\nSFV support governments and other organisations that provide Swedish language courses for children and adults. 2. Education, literature and culture\nThere are several methods used by SFV to spread the language and culture. Through SFV Formation (an adult education and service organisation for 57 NGO’s) they run educational programmes, with more than 950 courses and workshops, with almost 20,000 participants. They also own a training programme called Axxel, they own one publishing house, Atena, and are co-owners of another, WSOY & Söderströms. SFV also runs a cultural and educational centre called Festal (Ballroom) G18. 3. Publications\nThe organisation produces it’s own publications. Members receive the SFV magazine and the SFV calendar, plus new members will receive a book." + } + }, + { + "id": 5317, + "name": "Stiftung Mercator GmbH", + "address": "Stiftung Mercator GmbH Huyssenallee 40 45128 Essen Germany", + "country": "Germany", + "email": "info@stiftung-mercator.de", + "website": "http://www.stiftung-mercator.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stiftung Mercator GmbH, Huyssenallee 40, 45128 Essen, Germany", + "lat": 51.44743, + "lng": 7.0099374, + "zoom": 14, + "place_id": "ChIJ03SNyM7CuEcRNmQ7c8Kw6uw", + "name": "Stiftung Mercator GmbH", + "street_number": "40", + "street_name": "Huyssenallee", + "city": "Essen", + "city_short": "E", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "45128", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/stiftung-mercator-gmbh/", + "philea_info": { + "About": "Stiftung Mercator in Essen was founded by the Schmidt family, which donated a substantial amount of its own assets to the foundation. The foundation started officiallyiin 1996, with a regional focus on the North Rhine-Westfalia region in Germany.In 2008, the foundation did a strategic review and has focused on three programmatic areas and three geographical areas. The review has has also resulted in substantial growth, an increase in budget and staff numbers. Today, it is one of the largest private foundations in Germany.", + "Mission": "To prevent dangerous climate change, promote integration and strengthen arts, education, and to provide fair and equal opportunities so that everyone can participate in today’s society.", + "Geographic Focus": "The foundation has, apart from its homeland Germany, three regional areas of focus, placing Germany in a globalised world; Europe, Turkey and China.", + "Programme Areas": "The foundation’s motto is “inspiring ideas”, something which it achieves by combining advocacy and practical work around three areas: science and humanities, education and international affairs. Overarching these, the foundation has defined three interdisciplinary thematic clusters to further broaden its profile: • Integration\n• Climate change\n• Cultural education Integration\nAims to reduce by 2025 the inequality in Germany in terms of school and university qualifications (based on the 2005 level) by 70% for young people of migrant background, aged 15-30. As an interim target, the foundation is working to reduce these discrepancies by 30% by 2015. Climate change\nAims to reduce man-made greenhouse gas emissions in Germany by 40% by 2020 and by at least 80% by 2050, measured against the 1990 levels. Cultural education\nAims to anchor cultural education permanently within the formal educational system in North Rhine-Westphalia and three other states in Germany by 2015, and in all of the country’s federal states by 2025." + } + }, + { + "id": 5316, + "name": "Stiftung Deutsche Welthungerhilfe", + "address": "Stiftung Deutsche Welthungerhilfe Friedrich Ebert Strasse 1 D-53173 Bonn Germany", + "country": "Germany", + "email": "info@welthungerhilfe.de", + "website": "http://www.welthungerhilfe.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Welthungerhilfe, Friedrich-Ebert-Straße, Bonn, Germany", + "lat": 50.6823765, + "lng": 7.1605514, + "zoom": 14, + "place_id": "ChIJD6Z5u27kvkcR8ADndtpnmS0", + "name": "Welthungerhilfe", + "street_number": "1", + "street_name": "Friedrich-Ebert-Straße", + "city": "Bonn", + "city_short": "BN", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "53173", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/stiftung-deutsche-welthungerhilfe/", + "philea_info": { + "About": "In 1960 the Food and Agriculture Association (FAO) of the United Nations decided to launch a ‘freedom from hunger campaign’. At the same time it urged the Member States to intensify their efforts in their fight against deprivation, poverty, and hunger with cooperation from non-governmental organisations. Consequently, in 1962 the German Federal President Heinrich Lübke called together important representatives of social organisations in the Deutscher Ausschuss für den Kampf gegen den Hunger (German Committee for the Fight Against Hunger). In 1967 the Committee renamed itself ‘Deutsche Welthungerhilfe e.V.’", + "Mission": "To provide long-term, continuous support to Welthungerhilfe’s projects.", + "Geographic Focus": "Asia, Africa, Latin America, Caribbean", + "Programme Areas": "Stiftung Deutsche Welthungerhilfe is active in the following areas: • Hunger\n• Conflict and Disaster\n• Climate\n• Development Cooperation\n• Education" + } + }, + { + "id": 5313, + "name": "Stichting Instituut Gak", + "address": "Stichting Instituut Gak ‘s-Gravelandseweg 49 1217 EH Hilversum Netherlands", + "country": "Netherlands", + "email": "info@instituutgak.nl", + "website": "http://www.instituutgak.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Instituut Gak, 's-Gravelandseweg 49, 1217 EH Hilversum, Netherlands", + "lat": 52.2269437, + "lng": 5.1678373, + "zoom": 14, + "place_id": "ChIJVxUAq2BrxkcRRY0WCkNWJG8", + "name": "Instituut Gak", + "street_number": "49", + "street_name": "'s-Gravelandseweg", + "city": "Hilversum", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1217 EH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/stichting-instituut-gak/", + "philea_info": { + "About": "Foundation Institute Gak is an equity fund that provides grants to projects in the areas of social security and labour market policy in the Netherlands. Foundation Institute Gak gives content within the criteria on the one hand, by spontaneous (practical) applications. On the other hand, the Foundation is funding scientific research in the framework of the scientific research programme (see separate Web page). In addition, the Foundation is funding a number of special chairs in the field of social security to Dutch universities.", + "Mission": "Supporting projects and programms in the field of social security and labour market.", + "Geographic Focus": "The Netherlands", + "Programme Areas": "Social Security\nLabour market\nScientific research" + } + }, + { + "id": 5312, + "name": "Stichting Fonds 1818", + "address": "Stichting Fonds 1818 Riviervismarkt 4 2313 AM The Hague Netherlands", + "country": "Netherlands", + "email": "info@fonds1818.nl", + "website": "http://www.fonds1818.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fonds 1818, Riviervismarkt, The Hague, Netherlands", + "lat": 52.0766884, + "lng": 4.306905, + "zoom": 14, + "place_id": "ChIJ52ApXi-3xUcRwS8uuyoaKdg", + "name": "Fonds 1818", + "street_number": "5", + "street_name": "Riviervismarkt", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2513 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/stichting-fonds-1818/", + "philea_info": { + "About": "Fonds 1818 was established in its present form in 1992. It is a private, non-profit organisation created to make donations to projects of general interest in the area around The Hague in the Netherlands. In doing so, the foundation operates closely in line with the ideals of its predecessors, the original Dutch savings banks at the beginning of the 19th Century.", + "Mission": "To support projects that contribute to the maintenance and improvement of a liveable Dutch society, aimed at a sustainable future.", + "Geographic Focus": "The Hague, Delft, Zoetermeer, Leiden, Noordwijk and surrounding area", + "Programme Areas": "The foundation makes donations to specific projects in the following areas: • Youth\n• Culture\n• Nature and the environment\n• Health\n• Social projects" + } + }, + { + "id": 5310, + "name": "Stefan Batory Foundation", + "address": "Stefan Batory Foundation ul. Sapiezynska 10a 00-215 Warsaw Poland", + "country": "Poland", + "email": "batory@batory.org.pl", + "website": "http://www.batory.org.pl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Foundation. Stefan Batory, Sapieżyńska 10A, 00-215 Warsaw, Poland", + "lat": 52.2538507, + "lng": 21.0024074, + "zoom": 14, + "place_id": "ChIJvafqI3HMHkcRi1KbhyvtFgM", + "name": "Foundation. Stefan Batory", + "street_number": "10A", + "street_name": "Sapieżyńska", + "city": "Warszawa", + "state": "Mazowieckie", + "post_code": "00-215", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/stefan-batory-foundation/", + "philea_info": { + "About": "The Stefan Batory Foundation is an independent private Polish foundation established in 1988 by American financier and philanthropist George Soros and a group of Polish democratic leaders from the 1980’s. Cooperating with the Soros network, it has complete autonomy in its decision-making process.", + "Mission": "To support the development of an open, democratic society in Poland and other Central and East European countries.", + "Geographic Focus": "Poland and Central and Eastern Europe", + "Programme Areas": "The foundations’s work is divided into grantmaking and operational programmes: Grantmaking programs – Citizens for Democracy: the aim of the programme is to strengthen civil society development and enhance the contribution of non-governmental organizations to social justice, democracy and sustainable development.\n– Equal Opportunities: the programme consists in the development of a local scholarship system for secondary school students based on local community activity and resources. Through this programme the foundation intends to contribute to equalize the educational opportunities of children from urban and rural areas and help talented youth from low-income families.\n– For Belarus: The program’s objective is to support civic initiatives aimed at building an open society and preparing for democratic changes in Belarus. Operational programs – Debates: through Batory Foundation’s Debates the foundations aims to establish an independent meeting and discussion forum for politicians, professionals, public intellectuals and journalists. The goal is to foster public debate on issues important to the future of its country and region.\n– Your Vote, Your Choice: the programme’s goal is to increase public interest in local affairs and to encourage civic participation in public life, including an informed and responsible participation in local and parliamentary elections.\n– Public Integrity: the goal of the programme is to increase transparency and integrity in public life and to promote open, accountable governance.\n– Open Europe: the goal of the programme is to promote an active, coherent and friendly Polish and European Union policy towards our Eastern neighbors and to support democratic processes and pro-European trends in Eastern Europe.\n– Regional Alcohol and Drug Program: launched in 1996, the programme promotes innovative addiction treatment methodologies in Central and Eastern European and Central Asian countries. Its main purpose is to provide both theory and practice to clinical professionals and educators in the field of alcohol and drug prevention and treatment addressed to the population of addicted patients and their families\n– ECFR Warsaw: In September 2011, the Warsaw Office of the European Council on Foreign Relations (ECFR) was opened at the Batory Foundation. The goal of the ECFR Warsaw Office is to plug Polish political and expert milieus into the general European debate on EU external policy. The Office disseminates ECFR analyses and reports and organizes debates, discussions and conferences about them. It also undertakes its own research and expert analyses." + } + }, + { + "id": 5309, + "name": "Stavros Niarchos Foundation (SNF)", + "address": "Stavros Niarchos Foundation (SNF) 86A Vas. Sofias Avenue 11528 Athens Greece", + "country": "Greece", + "email": "info@snf.org", + "website": "http://www.snf.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stavros Niarchos Foundation, Vasilissis Sofias, Athens 115 28, Greece", + "lat": 37.9813085, + "lng": 23.7557287, + "zoom": 14, + "place_id": "ChIJZfpgIVG9oRQR_O2TmCmVU7I", + "name": "SNF Headquarters", + "street_number": "86Α", + "street_name": "Vasilissis Sofias", + "city": "Athina", + "state": "Kentrikos Tomeas Athinon", + "post_code": "115 28", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/stavros-niarchos-foundation/", + "philea_info": { + "About": "The Stavros Niarchos Foundation (SNF) is one of the world’s leading private, international philanthropic organizations, making grants to nonprofit organizations in the areas of arts and culture, education, health and sports, and social welfare. SNF funds organizations and projects worldwide that aim to achieve a broad, lasting, and positive impact for society at large, and exhibit strong leadership and sound management. The Foundation also supports projects that facilitate the formation of public-private partnerships as an effective means for serving public welfare.", + "Mission": "In 2021, SNF celebrated 25 years of grantmaking. Over the past quarter-century, SNF has formed thousands of partnerships with organizations around the world, seeking to help create lasting positive impact for society. In this work, SNF has been guided by commitment to an open process, accessible to anyone, anytime, and to equal opportunity. SNF’s work, in addition to making grants to nonprofit organizations around the globe, has expanded in recent years to include initiatives to help promote civil discourse, productive exchange of ideas, and civic engagement. Every year, SNF organizes SNF Nostos, including the SNF Run and SNF Conference, at the SNFCC. In addition to this annual gathering, SNF is committed to fostering regular opportunities for discussion and dialogue and offers the monthly SNF Dialogues series in an effort to strengthen public discourse by presenting—live and online—individuals who inspire with their work and a forum for people to engage with them.", + "Geographic Focus": "Greece, Europe, Africa, America, South Asia, Australia, International", + "Programme Areas": "The foundation is active in the following areas: Arts and Culture\nEducation\nHealth and Sports\nSocial Welfare Arts and culture Provides funds and grants to cultural and art organizations, institutions and museums for cultural or art programs and projects, performances, publications, exhibitions, events, related campaigns, renovations and conservation initiatives, infrastructure and equipment needs. Education Provides funds and grants to universities, schools, educational institutions and non-profit organizations for courses and lectures, educational and research programs, publications, expeditions, facilities and equipment, operating support and field staff costs. Health and Sports Provides funds and grants to medical centers, hospitals, foundations, associations and institutions for medical research, specialized healthcare and treatment programs, equipment and operating support. Social welfare Provides funds and grants to associations, community institutions, foundations and public benefit organizations for disaster relief efforts, water, hygiene and sanitation projects, infrastructure, equipment and vehicles, operating support; several of these projects address handicapped people, children and/or women in need." + } + }, + { + "id": 5308, + "name": "Special Olympics Europe/Eurasia", + "address": "Special Olympics Europe/Eurasia Avenue Louise 43 B-1050 Brussels Belgium", + "country": "", + "email": "wbyrne@specialolympics.org", + "website": "http://www.specialolympics.org/Regions/europe-eurasia/_Region-Front/Europe-Eurasia.aspx", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Avenue Louise 43, Saint-Gilles, Belgium", + "lat": 50.83394879999999, + "lng": 4.3566524, + "zoom": 14, + "place_id": "ChIJP7Gk2YnEw0cR0MA9XKNV6Po", + "name": "Av. Louise 43", + "street_number": "43", + "street_name": "Avenue Louise", + "street_name_short": "Av. Louise", + "city": "Saint-Gilles", + "state": "Bruxelles", + "post_code": "1060", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/special-olympics-europe-eurasia/", + "philea_info": { + "About": "Special Olympics Inc. is a global organisation registered in the U.S. which has 7 regional branches, SOEE being one of them, and provides its mission to over 70 Countries around the globe.", + "Mission": "Special Olympics’ mission is to provide year-round sports training and athletic competition in a variety of Olympic-type sports for children and adults with intellectual disabilities, giving them continuing opportunities to develop physical fitness, demonstrate courage, experience joy and participate in a sharing of gifts, skills and friendship with their families, other Special Olympics athletes and the community.", + "Geographic Focus": "Global" + } + }, + { + "id": 5307, + "name": "Sparebankstiftelsen DnB", + "address": "Sparebankstiftelsen DnB NOR P.O. Box 555 Sentrum 0105 Oslo Norway", + "country": "Norway", + "email": "post@sparebankstiftelsen.no", + "website": "http://www.sparebankstiftelsen.no", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Oslo, Norway", + "lat": 59.9138688, + "lng": 10.7522454, + "zoom": 14, + "place_id": "ChIJOfBn8mFuQUYRmh4j019gkn4", + "name": "Oslo", + "city": "Oslo", + "state": "Oslo", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/sparebankstiftelsen-dnb/", + "philea_info": { + "About": "The foundation’s capital is a result of accumulated profits from the former Norwegian savings banks which are now part of DnB NOR- Norway’s largest financial services group. The foundation continues the savings banks’ tradition of giving monetary gifts to non-profit causes.", + "Mission": "To contribute to charitable causes and invest in causes that benefit the general public.", + "Geographic Focus": "Norway", + "Programme Areas": "Funds a wide range of charitable causes from community to national projects including the support of fine arts, children’s activities and heritage projects." + } + }, + { + "id": 5086, + "name": "Spanish Association of Foundations", + "address": "Spanish Association of Foundations C/ Serrano Anguita, 13 28004 Madrid Spain", + "country": "Spain", + "email": "info@fundaciones.org", + "website": "http://www.fundaciones.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Spanish Association of Foundations, Impact Hub Barceló, Calle de Serrano Anguita, 13, 28004 Madrid, Spain", + "lat": 40.4276989, + "lng": -3.699074899999999, + "zoom": 14, + "place_id": "ChIJ_1huM44oQg0RxXFi6ksN4Gw", + "name": "Spanish Association of Foundations", + "street_number": "13", + "street_name": "Calle de Serrano Anguita", + "street_name_short": "C. de Serrano Anguita", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28004", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/spanish-association-of-foundations/", + "philea_info": { + "About": "The Spanish Association of Foundations (AEF) is a private and independent association of national scope. It brings together nearly 800 Spanish foundations of the most diverse dimensions, purposes and areas of action. It is the most representative entity of the sector at national level. AEF was established on 22 January 2003 as a result of the merger of the Foundations Center and the Spanish Confederation of Foundations. It carries out the work and experience of more than 30 years of the two previous associations.", + "Mission": "AEF’s mission is to work for the benefit of the whole foundational sector in favor of its development and strengthening.\nThree main purposes:\nRepresent and defend the interests of Spanish foundations; Strengthen and articulate the sector; Improve the professionalization and management of foundations, contributing to their transparency and good governance." + } + }, + { + "id": 5306, + "name": "Society of Swedish Literature in Finland, The", + "address": "Society of Swedish Literature in Finland, The Ritarikatus 5 00170 Helsingfors Finland", + "country": "Finland", + "email": "info@sls.fi", + "website": "http://www.sls.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Finlandia-talo Oy, Mannerheimintie, Helsingfors, Finland", + "lat": 60.1756992, + "lng": 24.9336092, + "zoom": 14, + "place_id": "ChIJMSt58zIKkkYRAOiy0w3BzQ4", + "name": "Finlandia Hall", + "street_number": "13e", + "street_name": "Mannerheimintie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/society-of-swedish-literature-in-finland-the/", + "philea_info": { + "About": "The Society of Swedish Literature in Finland was founded as a learned society in 1885 to preserve, develop and mediate the Swedish cultural heritage in Finland. Since 1908 the society has held and administered the Swedish Cultural Foundation in Finland.", + "Mission": "The Society of Swedish Literature in Finland is a learned society that preserves, develops and mediates the Swedish cultural heritage in Finland. The Society is a versatile and future-oriented cultural institution of Finland-Swedish literature, culture and research. The aims of the Society are realised through the archives and the library, the publishing unit, the research unit, the distribution of grants and scholarships and the financial administration. The Society of Swedish Literature is one of the largest managers of public funds in Finland.", + "Geographic Focus": "Finland", + "Programme Areas": "The main programme areas of the associoation: – research in the humanities and social sciences,\n– preserving cultural heritage and archives\n– academic publishing in the humanities and social sciences,\n– giving scholarships and prizes for research and cultural activities Archives:\nThe archives of the Society of Swedish Literature in Finland strive to preserve the central parts of the Swedish cultural heritage in Finland, and to store this heritage in a safe manner in order to further mediate it to researchers or other individuals who take an interest in the culture, language, history and traditions of the Finland-Swedish people. Individual archives are received primarily as donations, but also in part as depositions. Publishing and Foreign Rights:\nThe publishing unit of the Society of Swedish Literature publishes scientific works of writing within the subjects of history, literary history, the Swedish language, ethnology, folklore and sociology. Historical source editions and text-critical editions also make up an important part of the publications. All of the books published are connected to the Swedish-speaking culture in Finland.The aim of the Society’s publishing unit is to publish culturally valuable books for the interest of research as well as for the reading public. As a scientific publishing house, the Society attaches great importance to the books fulfilling the requirements of scientific accuracy, as well as to the quality of the language and design. Library:\nThe library of the Society of Swedish Literature in Finland is a scientific library. Several historically valuable collections can be found in our collection, as well as both old and new scientific literature. The library contributes actively to research and education, especially within its own area of emphasis, the history of books. Research:\nThe research sector represents the most significant activity within the Society. By having increasingly concentrated on individual research since the beginning of the millennium, the Society has become one of the great financiers of research within the fields of humanities and social sciences in Finland. Related to the Society’s aims and fields of interest, research is carried out within the subjects of history, literary history, social sciences, the Swedish language and traditions. Researchers are employed for certain projects and with the scientific committees. The research sector seeks and maintains contact with other research institutions and financiers in Finland and the Nordic countries. The scientific committees of the Society of Swedish Literature act as mediating links to the Swedish-speaking university world in Finland. Prizes and Scholarships:\nUpon application and examination, the Society of Swedish Literature in Finland distributes scholarships and means for research out of specific funds, which aims have usually been established by the donator of the respective funds. Upon application, the scientific committees distribute research scholarships from their own budget. Also individuals whose mother tongue is not Swedish can apply for means in order to carry out research if the planned research relates to the fields of interest and aims of the Society. The Society’s task is to promote scientific activity. The Society assigns the majority part of its profits to support its own activities, such as the archives and the library, research, publishing, projects and events that relate to these activities." + } + }, + { + "id": 5303, + "name": "Simavi", + "address": "Simavi Naritaweg 135 1043BS Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@simavi.nl", + "website": "http://simavi.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Stichting Simavi, Naritaweg 135, 1043 BS Amsterdam, Netherlands", + "lat": 52.3877099, + "lng": 4.832788499999999, + "zoom": 14, + "place_id": "ChIJJ4Y6XjjvxUcRa40lzL0rcYY", + "name": "Stichting Simavi", + "street_number": "135", + "street_name": "Naritaweg", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1043 BS", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/simavi/", + "philea_info": { + "About": "Simavi was founded in 1925 by two medical doctors, Dr. John Van der Spek and Dr. H. Bervoets. Their aim was to provide medical assistance for health institutions in the former Dutch East Indies. Ever since, Simavi has been working to improve standards of health in developing countries.\nSimavi was an acronym for Steun Inzake Medische Aangelegenheden Voor Inheemschen (Support for Medical Affairs for Indonesians). In its early years, Simavi shipped medicines, essentiall health supplies and resources over the ocean to support the work of medical missionary staff.\nOver the course of its history, Simavi expanded the scale of their operations and activities.\nSimavi has worked with over 30 million people in thousands of high-impact projects and is active in nine countries: Bangladesh, Nepal, India, Indonesia, Ghana, Malawi, Kenya, Tanzania and Uganda.\nSimavi is now working supporting local CSOs and initiatives, shifting from transporting medicines to working with an integrated approach on local, national and international levels.", + "Mission": "Simavi believes in A Healthy Life for All. Simavi strives for a world in which all women and girls are socially and economically empowered, and pursue their rights to live a healthy life free from discrimination, coercion and violence", + "Geographic Focus": "Bangladesh, Nepal, India, Ghana, Malawi, Kenya, Tanzania, Uganda", + "Programme Areas": "‘- Bodily autonomy\n– Sexual and reproductive health and rights\n– gender based violence\n– women’s social and economic empowerment\n– water, sanitation and hygiene (WASH)" + } + }, + { + "id": 5369, + "name": "Serbian Philanthropy Forum", + "address": "Serbia", + "country": "Serbia", + "email": "office@filantropskiforum.com", + "website": "https://www.srpskifilantropskiforum.org/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Serbia", + "lat": 44.016521, + "lng": 21.005859, + "zoom": 7, + "place_id": "ChIJlYCJ8t8dV0cRXYYjN-pQXgU", + "name": "Serbia", + "country": "Serbia", + "country_short": "RS" + }, + "link": "https://philea.eu/members/serbian-philanthropy-forum/", + "philea_info": { + "About": "" + } + }, + { + "id": 5299, + "name": "Sabanci Foundation", + "address": "Sabanci Foundation Sabanci Center, 4. Levent Kule:2, Kat:8 34330 Istanbul Turkey", + "country": "Turkey", + "email": "info@sabancivakfi.org", + "website": "http://www.sabancivakfi.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "İstanbul, Turkey", + "lat": 41.0082376, + "lng": 28.9783589, + "zoom": 14, + "place_id": "ChIJawhoAASnyhQR0LABvJj-zOE", + "name": "İstanbul", + "city": "İstanbul", + "state": "İstanbul", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/sabanci-foundation/", + "philea_info": { + "About": "The Sabanci family has contributed greatly to furthering the Turkish economy with numerous industrial conglomerates and investments since the establishment of the Sabanci Holding and Sabanci Group companies in 1967. Having placed much importance on the value of social and cultural institutions, the Sabanci family members are prominent figures in various charitable initiatives. In an attempt to institutionalise their philanthropic activities, the Haci Omer Sabanci Foundation (Sabanci Foundation) was established in 1974 by the sons of the late Haci Omer and Sadika Sabanci with a generous contribution of Sadika Sabanci’s estate.", + "Mission": "To promote social development and social awareness among current and future generations by supporting initiatives that create impact and lasting change in people’s lives.", + "Geographic Focus": "Turkey", + "Programme Areas": "Sabanci Foundation is active in the following areas: Institutions\nSince its establishment, Sabanci Foundation has built over 120 institutions in 78 residential areas among Turkey: – Sabanci University (www.sabanciuniv.edu)\n– 37 Educational institutions\n– 19 Dormitories\n– 16 Teacher centres\n– 5 Health care centres and hospitals\n– 16 Cultural Centres\n– 8 Social Facilities\n– 5 Sports facilities – 9 Contributions to Other Institutions Scholarships\nMore than 42,500 scholarships have been provided by Sabanci Foundation since 1974. Four different types of scholarships are given to 400 new students and a total of more than 1,500 students each year for: • University admission\n• Underdeveloped provinces\n• Students with disabilities\n• Sabanci Foundation – Vista Scholarship Scholarships are awarded so that successful students with financial difficulties can pursue a university education. Scholarships are not bound to any compulsory service or repayment obligation. Awards\nSince its establishment the foundation has given over 1000 awards, divided into three categories: • Educational Awards\n• Art Awards\n• Sports Awards Arts and Culture\nThe foundation supports various festivals and contests to promote culture and art in Turkey: – Turkish Folk Dances Contest\n– International Sabanci Adana Theatre Festival\n– National Youth Philharmonic Orchestra\n– Mehtap Ar Children Theatrical Company\n– Ankara International Music Festival\n– Support for the excavation of the ancient city of Metropolis Programmes\nSabanci Foundation aims to enable social inclusion by promoting an equitable environment in which women, youth and persons with disabilities have access and equal opportunities to actively participate in society. The foundation does this through grantmaking, joint partnership programmes, seminars and other programme activities: • Social Development Grant Program\n• “Turkey’s Changemakers” TV Program\n• United Nations Joint Program to Promote and Protect the Human Rights of Women and Girls: Partnership and Grant Program\n• Grant Program for Multidimensional Women’s Empowerment\n• Sabanci Foundation Seminars" + } + }, + { + "id": 5298, + "name": "Saastamoinen Foundation", + "address": "Saastamoinen Foundation Pieni Roobertinkatu 5 B 15 00930 Helsinki Finland", + "country": "Finland", + "email": "petteri.karttunen@saastamoinenfoundation.fi", + "website": "http://www.saastamoinenfoundation.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Pieni Roobertinkatu 5, Helsinki, Finland", + "lat": 60.1642976, + "lng": 24.9463729, + "zoom": 14, + "place_id": "ChIJ9bm4AskLkkYRb_lJS8zoCVc", + "name": "Pieni Roobertinkatu 5", + "street_number": "5", + "street_name": "Pieni Roobertinkatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00130", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/saastamoinen-foundation/", + "philea_info": { + "About": "Saastamoinen Foundation is a family foundation with roots deep in the Finnish forest industry. As stipulated in its rules, the purpose of the Foundation is “to promote and support the development of the Finnish economy and the use of the natural resources of our country, as well as research that is intended to develop the country’s spiritual and material life, and to maintain an art collection.”See more our history from our web pages.", + "Mission": "The Saastamoinen Foundation discharges its duties today as follows:\nThe Foundation maintains, develops and exhibits the art collection and thereby supports art and artists both in Finland and internationally. The Foundation’s art collection is permanently in display in EMMA – Espoo Museum of Modern Arts, and it is developed actively.\nThe Foundation supports and awards grants to promote science and education. This it does in cooperation with, among others, the University of Eastern Finland, Aalto University, and the Academy of Fine Arts of the University of Fine Arts; its highest aim is to promote international research, education and networking.\nThe Foundation manages its assets in a way that allows the implementation of the two above-mentioned tasks and their development in the long run.", + "Geographic Focus": "Main focus is in Finland. But as stated in our mission we support art and artists both in Finland and internationally. When supporting science and education, it's highest aim is to promote international research, education and networking. As example we have many different residence programs, we bring international professors to Finland, have three different Fullbright programs etc.", + "Programme Areas": "Broadly Arts & science. The Foundation art collection is permanently on display in EMMA – Espoo Museum of Modern Art and it is developed actively. The Foundations main partners in the field of grants for promotion of science and higher education institutes continue to be the University of Easter Finland, Aalto University and the Academy of Fine Arts at the University of Arts Helsinki. We also have other grants and donations. As examples of that is Anti Festival International Prize for Live Arts and Me & MYcity learning environment project. See more from our web pages and annual report." + } + }, + { + "id": 5296, + "name": "Romanian-American Foundation", + "address": "Romanian-American Foundation 6, Gina Patrichi (former Orlando) Street 010449 Bucharest 1 Romania", + "country": "Romania", + "email": "office@rafonline.org", + "website": "http://www.RAFonline.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Romanian-American Foundation, Strada Gina Patrichi 6, Bucharest, Romania", + "lat": 44.4493683, + "lng": 26.0894794, + "zoom": 14, + "place_id": "ChIJzRp3U1T_sUARPs2PXQpkhNE", + "name": "Romanian-American Foundation", + "street_number": "6", + "street_name": "Strada Gina Patrichi", + "city": "București", + "state": "București", + "post_code": "010449", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/romanian-american-foundation/", + "philea_info": { + "About": "The Romanian-American Foundation came into being in 2009, after approval by the US Congress. The Foundation grew out of a 1994 U.S. government grant of $50 million establishing the Romanian-American Enterprise Fund (RAEF), to support Romania’s transition to a free market economy. Operating under the provisions of the SEED Act (Support to East European Democracy), RAEF’s fusion of investments and development activities in over fifteen years of active presence in Romania resulted in the Foundation’s $150 million endowment.", + "Mission": "The Romanian-American Foundation’s mission is to strengthen and promote conditions for a sustainable market economy and a democratic society that provide access to opportunities for all segments of the population in Romania.", + "Geographic Focus": "Romania", + "Programme Areas": "Rural Economy\nAlmost half of the country’s population lives in rural areas, with many struggling on the verge of subsistence. We asked ourselves: What if they thrive? The two niches where we believe our interventions can help rural communities develop and take advantage of the demand from urban centers are small farmers and ecotourism. Small farmers can generate growth while working the land more efficiently. Rural areas are also a cradle for pristine land and centuries-old traditions which make them attractive ecotourism destinations. Technology & Innovation\nThe technology and innovation sectors are increasingly relevant for Romania. Our programs seek to help the future talent of Romania take advantage of business opportunities related to innovation and new product development, a shift that will require higher numbers of tech specialists with a new set of skills. Our intervention focus education, and we work closely with a large universe of partners (universities, NGOs that in turn work with teachers and schools, and partners from the business sector) to design entrepreneurial programs that match the educational offer to the industry needs, endowing students with the technical and soft skills required by competitive markets. Civic Engagement\nPeople involved in the life of the city, taking part in the decision-making process and contributing to solving their communities’ problems, supporting the causes they believe in, volunteering, choosing their representatives and holding them accountable, are the corner stones of a democratic society. We invest in the growth of an infrastructure for philanthropy and civic engagement and offer civic education programs designed to help the younger generations become engaged and empowered citizens." + } + }, + { + "id": 5294, + "name": "Rockefeller Philanthropy Advisors", + "address": "Rockefeller Philanthropy Advisors 437 Madison Avenue, 37th Floor NY 10022 New York United States", + "country": "United States", + "email": "info@rockpa.org", + "website": "http://www.rockpa.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "437 Madison Avenue, NY, New York 10022, United States", + "lat": 40.7573533, + "lng": -73.97524349999999, + "zoom": 14, + "place_id": "ChIJr8O4RvxYwokR06DPVPxymuc", + "name": "437 Madison Ave", + "street_number": "437", + "street_name": "Madison Avenue", + "street_name_short": "Madison Ave", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10022", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/rockefeller-philanthropy-advisors/", + "philea_info": { + "About": "In 1891, John D. Rockefeller, Sr. set out to manage his philanthropy “as if it were a business.” RPA maintains that commitment to practicality and strategic acumen; RPA believes that giving is a natural, enriching part of human life.", + "Mission": "To help donors create thoughtful, effective philanthropy throughout the world.", + "Programme Areas": "‘- Strategy & Consulting\n– Management & Implementation\n– Fiscal Sponsorship" + } + }, + { + "id": 5293, + "name": "Rockefeller Brothers Fund", + "address": "Rockefeller Brothers Fund 475 Riverside Drive, Suite 900 NY 10115 New York United States", + "country": "United States", + "email": "communications@rbf.org", + "website": "http://www.rbf.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Rockefeller Brothers Fund, 475 Riverside Drive, NY, New York 10115, United States", + "lat": 40.8108449, + "lng": -73.9640282, + "zoom": 14, + "place_id": "ChIJObtpQj_2wokRNsvzZVDQfYk", + "name": "Rockefeller Brothers Fund", + "street_number": "475", + "street_name": "Riverside Drive", + "street_name_short": "Riverside Dr", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10115", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/rockefeller-brothers-fund/", + "philea_info": { + "About": "The Rockefeller Brothers Fund (RBF) was founded in 1940 as a vehicle through which the five sons and daughters of John D. Rockefeller Jr could share a source of advice and research on charitable activities and combine some of their philanthropic activities to better effect. John D. Rockefeller Jr. made a substantial gift to the fund in 1951, and in 1960 the fund received a major bequest from his estate. Together these constitute the basic endowment of the RBF. In 1952, the founders began to include non-family members on the board. In 1958, the first of a number of daughters and sons of the founders joined the board, and in 1992 the first of their grandchildren. The foundation merged with the Charles E. Culpeper Foundation in 1999.", + "Mission": "To advance social change that contributes to a more just, sustainable, and peaceful world.", + "Geographic Focus": "US, namely New York City; and Southern China, Western Balkans", + "Programme Areas": "RBF’s grantmaking is organised around three themes: Democratic Practice, Peace and Security, Sustainable Development, and three pivotal places: New York City, Southern China, and the Western Balkans. • Democratic Practice\n• Sustainable Development\n• Peace and Security\n• Pivotal Place: New York City\n• Pivotal Place: Southern China\n• Pivotal Place: Western Balkans Democratic Practice\nSeeks to strengthen the vitality of democracy in the United States and in global governance. The programme’s core ideas—that for democracy to flourish and deliver on its promises its citizens must be engaged, empowered, and assertive, and institutions of governance must be inclusive, transparent, accountable, and responsive—provide a frame for the Fund’s Democratic Practice work in the United States and in global governance. Peace and Security\nThe Peace and Security programme reflects the Fund’s longstanding recognition of the complexities and possibilities that arise from global interdependence, and its enduring commitment to helping create the conditions for lasting peace in which justice and democratic governance prevail and sustainable development paths lead to shared prosperity in societies worldwide. Sustainable Development\nAdvances global stewardship that is ecologically based, economically sound, socially just, culturally appropriate, and consistent with intergenerational equity. Human activity is causing global warming, rapid loss of biodiversity, and accelerating degradation of Earth’s life support systems. With the recognition that the impact of unchecked climate change threatens all other conservation efforts, the programme focuses its grantmaking on advancing solutions to climate change. Pivotal Place: New York City\n– The Charles E. Culpeper Arts & Culture grants honor the legacy of Charles E. Culpeper by supporting the artists and arts and cultural organizations that make New York City one of the world’s most dynamic creative capitals.\n– The Pocantico Center is a venue for conferences and meetings on critical issues related to the Rockefeller Brothers Fund’s mission. It also serves as a community resource and offers public access through a visitation program, lectures, and cultural events, as well as support to artists and arts organizations in the greater New York City area. The RBF’s stewardship of the Pocantico Historic Area includes overseeing the maintenance, care, conservation, and restoration of the historic buildings, gardens, and collections of decorative and fine art. Located 20 miles north of Manhattan in the Pocantico Historic Area, The Pocantico Center is managed by the Rockefeller Brothers Fund as part of its agreement with the National Trust for Historic Preservation. Pivotal Place: Southern China\nAssists efforts by the Chinese government and people to support Southern China’s rapid development and the profound challenges, including environmental degradation and growing disparities between rich and poor, urban and rural which, which if not addressed, threaten the sustainability of development in the region, the country, and the world. Pivotal Place: Western Balkans\nThe Fund’s work in the Balkans, and especially in Serbia, Montenegro, and Kosovo, gives special attention to democratic practice and sustainable development requirements." + } + }, + { + "id": 5292, + "name": "Robert Bosch Stiftung GmbH", + "address": "Robert Bosch Stiftung Heidehofstraße 31 70184 Stuttgart Germany", + "country": "Germany", + "email": "", + "website": "http://www.bosch-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Robert Bosch Stiftung GmbH, Heidehofstraße 31, 70184 Stuttgart, Germany", + "lat": 48.77749319999999, + "lng": 9.1996634, + "zoom": 14, + "place_id": "ChIJxZbap8fEmUcRQ9lqXktR3YY", + "name": "Robert Bosch Stiftung GmbH", + "street_number": "31", + "street_name": "Heidehofstraße", + "city": "Stuttgart", + "state": "Baden-Württemberg", + "state_short": "BW", + "post_code": "70184", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/robert-bosch-stiftung-gmbh/", + "philea_info": { + "About": "The Robert Bosch Stiftung works in the fields of health, education and global issues. Through its funding, it is committed to a fair and sustainable future. The foundation is a non-profit, independent and non-partisan organisation. It traces its origins to the legacy of Robert Bosch. In his will, the entrepreneur and founder set out a dual mandate: to ensure the continued existence of the company and to carry on his social commitment. Robert Bosch Stiftung GmbH maintains its own institutions, develops innovative projects and provides funding at both international and local levels. The foundation contributes the insights gained from its funding to the professional community and the public debate.", + "Mission": "We publish calls for proposals organised by theme to clearly indicate the areas in which we are currently seeking new partnerships or projects, and where there is a realistic chance of securing funding. We are unable to process or respond to funding requests or project ideas that are sent to us unsolicited.", + "Geographic Focus": "The foundation operates in Germany and Europe, as well as in West Africa and West Asia", + "Programme Areas": "The Robert Bosch Stiftung addresses social issues in three areas of support:\nHealth\nEducation\nGlobal Issues Please find more information about the Robert Bosch Stiftung here: www.bosch-stiftung.de" + } + }, + { + "id": 5291, + "name": "RNW Media", + "address": "RNW Media Witte Kruislaan 55a 1217 AM Hilversum Netherlands", + "country": "Netherlands", + "email": "connect@rnw.org", + "website": "https://www.rnw.org/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "RNW Media, Witte Kruislaan 55A, 1217 AM Hilversum, Netherlands", + "lat": 52.24425420000001, + "lng": 5.165984100000001, + "zoom": 14, + "place_id": "ChIJjZoR0VVrxkcRARGi9Bk9wig", + "name": "RNW Media", + "street_number": "55A", + "street_name": "Witte Kruislaan", + "city": "Hilversum", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1217 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/rnw-media/", + "philea_info": { + "About": "RNW Media is the former Radio Netherlands Worldwide, which was founded as the Dutch international public broadcaster. Now RNW is a multimedia organisation promoting free speech in countries where freedom of expression is restricted. They use media to make lives better.", + "Mission": "RNW Media uses media for change. With innovative approaches to media and training we connect communities and change-makers, enabling young people to make informed choices.", + "Geographic Focus": "China, Sub-Saharan Africa, Latin America, Arab World", + "Programme Areas": "Three core themes:\n-democracy\n-good governance\n-sexual health and rights, international justice" + } + }, + { + "id": 5289, + "name": "Riksbankens Jubileumsfond", + "address": "Riksbankens Jubileumsfond Kungsträdgårdsgatan 18, P.O. Box 5675 114 86 Stockholm Sweden", + "country": "Sweden", + "email": "rj@rj.se", + "website": "http://www.rj.se/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stockholm, Sweden", + "lat": 59.32932349999999, + "lng": 18.0685808, + "zoom": 14, + "place_id": "ChIJywtkGTF2X0YRZnedZ9MnDag", + "name": "Stockholm", + "city": "Stockholm", + "state": "Stockholm County", + "country": "Sweden", + "country_short": "SE" + }, + "link": "https://philea.eu/members/riksbankens-jubileumsfond/", + "philea_info": { + "About": "Stiftelsen Riksbankens Jubileumsfond was endowed by the Bank of Sweden in 1962 as an independent foundation to commemorate the Bank’s tercentenary. In 1993, Riksdag, the Swedish Parliament, approved the contribution of a further donation to the foundation aimed at encouraging research in the humanities and social sciences.", + "Mission": "To support and promote scientific research, primarily in the Humanities and Social Sciences, Law and Theology.", + "Geographic Focus": "Sweden and international", + "Programme Areas": "The foundation works broadly along two lines:\n– First, high-quality research proposed in applications from the researchers themselves is funded within the framework of the regular support forms: projects, programmes, infrastructure for research, and research initiation.\n– Second, there are focused initiatives serving, in accordance with the Statutes, to develop Swedish research and enhance its international status. Programmes\nProgrammes are RJ’s support form for major research assignments requiring large research groups for six to eight years. Projects\nA project is a research assignment usually carried out over a maximum of three years by a single researcher or small research group. Infrastructure for research\nInfrastructure for research relates to initiatives aimed at making possible and promoting future research. Grants are awarded for measures to prepare for research, such as establishing new research environments or creating platforms to develop collaboration between the research community and other institutions. Research initiation\nTo meet the research community’s demand for grants to cover academic meetings and establishment of academic networks, RJ awards grants for research initiation. The applications span a broad range, from contributions to international conferences held both in Sweden and abroad to working conferences on new research areas, seminars, network support and preparation of new research programmes. FOCUSED INITIATIVES\nFocused (also known as ‘thematic’ or ‘proactive’) initiatives are used to develop and strengthen Swedish research. They vary in nature, ranging from career posts for young researchers to funding calls in high-priority research areas. These initiatives also provide scope for testing new solutions and alternative work procedures, and for results being used in a subsequent stage to develop the researcher-initiated forms of support.\n– Pro Futura\n– RJ Sabbatical\n– Europe and Global Challenges\n– Flexit\n– New Prospects for Humanities and Social Sciences" + } + }, + { + "id": 5288, + "name": "Realdania", + "address": "Realdania Jamers Plads 2 DK-1551 Copenhagen V Denmark", + "country": "Denmark", + "email": "realdania@realdania.dk", + "website": "http://www.realdania.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Realdania, Jarmers Plads, Copenhagen Municipality, Denmark", + "lat": 55.67947599999999, + "lng": 12.564626, + "zoom": 14, + "place_id": "ChIJuzJJ5w5TUkYRzFEwIsUw1EM", + "name": "Realdania", + "street_number": "2", + "street_name": "Jarmers Plads", + "street_name_short": "Jarmers Pl.", + "city": "København", + "post_code": "1551", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/realdania/", + "philea_info": { + "About": "Realdania was established in late 2000 following a merger between two large financial institutions. Realdania is a strategic foundation created with the objective of initiating and supporting projects that improve the built environment.", + "Mission": "To improve quality of life for the common good through the built environment.", + "Geographic Focus": "Denmark", + "Programme Areas": "Realdania contributes to development and change within the built environment, seeking to improve the quality of life, for the benefit of Denmark and its inhabitants.\nThis is realised through a multitude of initiatives that all share a common strategic focus. Realdania projects focus on issues of general interest, set new norms and are oriented towards communication and research. Key areas are: • Health Through the Built Environment\n• Sustainable Development in the Built Environment\n• The Transformation of the Suburbs" + } + }, + { + "id": 5286, + "name": "Prins Claus Fonds for Culture and Development", + "address": "Prins Claus Fonds for Culture and Development Kingsfordweg 151 1043 GR Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@princeclausfund.org", + "website": "https://princeclausfund.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "1043 GR Amsterdam, Netherlands", + "lat": 52.38588540000001, + "lng": 4.8426952, + "zoom": 14, + "place_id": "ChIJZSgAZl7ixUcRSOudUzx3YyM", + "name": "1043 GR", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "post_code": "1043 GR", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/prins-claus-fonds-for-culture-and-development/", + "philea_info": { + "About": "The Prince Claus Fund was established on 6 September 1996 as a tribute to HRH Prince Claus’s dedication to culture and development.", + "Mission": "The Prince Claus Fund supports, connects, and celebrates artists and cultural practitioners where cultural expression is under pressure.", + "Geographic Focus": "Latin America, Africa, Asia, the Caribbean and Eastern Europe.", + "Programme Areas": "Cultural Emergency Response\nWe provide quick help to evacuate, stabilise or rescue cultural heritage that is under imminent threat of destruction or that has been damaged by man-made or natural disasters through our Cultural Emergency Response programme (CER). Prince Claus Awards\nAll over the world there are extraordinary people active in the cultural field, many are working in areas where cultural expression faces challenges. Each year we honour a select group of these individuals and organisations whose excellent work is having a positive impact on their societies. Grants & Collaborations\nOur Grants & Collaborations programme supports cultural practitioners, artists and organisations in various ways, often in collaboration with other funding institutions. Opportunities to apply open up throughout the year. Next Generation\nThe Next Generation is a programme created specifically for and with young people (ages 15-30).\nThrough this programme we are looking for partnerships with organisations that work with young people to build more inclusive, open-minded societies and provide safe spaces for young people to create their own narratives." + } + }, + { + "id": 5285, + "name": "het Cultuurfonds", + "address": "het Cultuurfonds Herengracht 476, 1017 CB Amsterdam, P.O.Box 19750 1000 GT Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@cultuurfonds.nl", + "website": "http://www.cultuurfonds.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Herengracht 476, Amsterdam, Netherlands", + "lat": 52.3650263, + "lng": 4.891598, + "zoom": 14, + "place_id": "ChIJMRKh8eoJxkcRR7pqJMuQYIU", + "name": "Herengracht 476", + "street_number": "476", + "street_name": "Herengracht", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1017 CB", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/het-cultuurfonds/", + "philea_info": { + "About": "The Cultuurfonds was founded in London in 1940 by Prince Bernhard, father of Beatrix of the Netherlands, to buy war material for the British and Dutch Governments. It continued after the war as Prins Bernhard Cultuurfonds aimed at rebuilding the war torn cultural life in The Netherlands. Headquartered on the Herengracht canal in Amsterdam, the foundation has 12 local branches, one in each of the Dutch provinces. There is also a separate Distribution Committee for projects in the Caribbean part of the Kingdom of the Netherlands.", + "Mission": "To support cultural and nature preservation projects in The Netherlands, The Netherlands Antilles (Curaςao, Bonaire, St. Maarten, St. Eustatius, Saba) and Aruba.", + "Geographic Focus": "Netherlands, Netherlands Antilles and Aruba", + "Programme Areas": "The foundation is active in the following areas: • Domestic initiatives\n• Awards and prizes\n• Bursaries Domestic Initiatives\nOffers subsidy grants for projects in the Netherlands which focus on the performing arts, visual arts, the restoration of monuments, publications and nature conservation. Awards and Prizes\nMany of the foundation’s regional branches offer their own prizes and awards, and in addition the foundation itself offers three flagship schemes: • The Prince Bernhard Culture Prizes: encompasses a variety of prizes under the general area of culture, such as the Martinus Nijhoff Prize for Translation/Interpretation which takes place every year. Each prize has its own jury and financial reward.\n• The Charlotte Köhler Prize: supports and encourages young talent artists, architects and dramatists up to 35 years old.\n• The Silver Carnation Award: this annual prize is awarded to those who have done the most work in promoting Dutch culture, and the culture of the Netherlands Antilles and Aruba. Bursaries\nOffers study bursaries to young, talented students to allow them to pursue courses at university and high school, particularly if the course is based outside of the Netherlands." + } + }, + { + "id": 5283, + "name": "Portuguese Foundation Centre", + "address": "Portuguese Foundation Centre Centro Cultural de Belém, Sala D, Praça do Império, 1449-003 Lisbon, Portugal", + "country": "Portugal", + "email": "cpf@cpf.org.pt", + "website": "http://www.cpf.org.pt", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Portuguese Foundation Centre Centro Cultural de Belém, Sala D, Praça do Império, 1449-003 Lisbon, Portugal", + "lat": 38.6955029, + "lng": -9.208354199999999, + "zoom": 14, + "place_id": "ChIJW51RQkPLHg0RNpVMhpDspDY", + "street_name": "Praça do Império", + "city": "Lisboa", + "state": "Lisboa", + "post_code": "1449-003", + "country": "Portugal", + "country_short": "PT" + }, + "link": "https://philea.eu/members/portuguese-foundation-centre/", + "philea_info": { + "About": "" + } + }, + { + "id": 5282, + "name": "Porticus", + "address": "Porticus P.O. Box 7867 1008 AB Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@porticus.com", + "website": "http://www.porticus.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Amsterdam, Netherlands", + "lat": 52.3675734, + "lng": 4.9041389, + "zoom": 14, + "place_id": "ChIJVXealLU_xkcRja_At0z9AGY", + "name": "Amsterdam", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/porticus/", + "philea_info": { + "About": "Porticus builds on a heritage of charitable engagement that dates back to Clemens and August Brenninkmeijer, the two brothers who founded the clothing retailer C&A in 1841. In fact, the first record of a gift can be found in the personal ledger of August who, only months after founding the company, recorded a donation “to the poor”. It was from these modest beginnings that the culture of responsibility and engagement developed. As natural as it was for the company’s founders to share their good fortune with the needy, so too was it natural for them to do so quietly. As the business grew and expanded globally, the generations of family entrepreneurs that followed continued and solidified the tradition of charitable giving.", + "Mission": "Porticus manages the grant-giving programmes of the charitable entities established by Brenninkmeijer family entrepreneurs. They look to foster the development of citizens and make a contribution to their own development as well that of their communities. They focus on the areas of education, society, care and faith in order to promote respect of human dignity and social justice", + "Geographic Focus": "International", + "Programme Areas": "Every year, approximately 3,000 projects are supported in more than 80 countries around the world.\nThe programme areas they are active in are:\n-Education\n-Society\n-Faith\n-Climate." + } + }, + { + "id": 5281, + "name": "Polish Donors Forum", + "address": "Polish Donors Forum ul. Mokotowska 65/7 00-533 Warsaw Poland", + "country": "Poland", + "email": "poczta@forumdarczyncow.pl", + "website": "http://www.forumdarczyncow.pl", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Mokotowska 65, Warsaw, Poland", + "lat": 52.2266891, + "lng": 21.0221065, + "zoom": 14, + "place_id": "ChIJ9S1defDMHkcRA6OQ_tVeX0Y", + "name": "Mokotowska 65", + "street_number": "65", + "street_name": "Mokotowska", + "city": "Warszawa", + "state": "Mazowieckie", + "post_code": "00-530", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/polish-donors-forum/", + "philea_info": { + "About": "Established in 2004, the Polish Donors Forum is an association of independent grant-making organisations for public-benefit purposes.", + "Mission": "The main statutory objective of the Polish Donors Forum is to support institutional philanthropy in Poland and to promote the best practices of grantmaking. The Forum undertakes activities aimed at creating a friendly operating environment for donors and their grantees. It also acts as a platform for experience sharing and exchange of information and expertise, encouraging peer learning and promotion of good practices in the donor community." + } + }, + { + "id": 5280, + "name": "Plan Børne Fonden", + "address": "PLAN BØRNE FONDEN Mimersgade 47, 4. 2200 N Copenhagen Denmark", + "country": "Denmark", + "email": "mail@planbornefonden.dk", + "website": "https://planbornefonden.dk/", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "PlanBørnefonden, Mimersgade, København N, Denmark", + "lat": 55.6992115, + "lng": 12.5476594, + "zoom": 14, + "place_id": "ChIJUX1VjqdTUkYRMxyd9gTbtfI", + "name": "Plan International Denmark", + "street_number": "47", + "street_name": "Mimersgade", + "city": "København", + "post_code": "2200", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/plan-borne-fonden/", + "philea_info": { + "About": "Plan Børne Fonden is established out of an international movement to support children in need in developing countries. Our ambition is to provide children and their families from poor communities with the possibility to make a brighter future for themselves. As such Plan Børne Fonden works in local communities with local partners, authorities and stakeholders to ensure a sustainable and well rooted development.\nPlan Børne Fonden is managing and operating its own programmes and activities through its local offices in each of the 5 programme countries. Thus our own staff works directly with beneficiaries, partners and local stakeholders.\nPlan Børne Fonden is financed by individual sponsorship and from external grants, and often co-fund its activities in cooperation with international, national and institutional donors.", + "Mission": "Plan Børne Fonden works to improve the living conditions for children and young people in the poorest countries in the world. They work to enhance the opportunities of poor people to a healthier and safer upbringing and a brighter future.", + "Geographic Focus": "Western Africa - Mali, Burkina Faso, Benin, Togo and Cape Verde", + "Programme Areas": "Children and youth empowerment and development\nRights of children and youth\nHealth (including healthcare, nutrition, water and sanitation, sexual and reproductive health)\nEducation and Entrepreneurship" + } + }, + { + "id": 5279, + "name": "Philanthropy Ireland", + "address": "Philanthropy Ireland Ltd 56 Fitzwilliam Square 2 Dublin Ireland", + "country": "Ireland", + "email": "info@philanthropyireland.ie", + "website": "http://www.philanthropyireland.ie", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "2 Fitzwilliam Square Dublin, Dublin 2, Dublin, Ireland", + "lat": 53.33428699999999, + "lng": -6.251283499999999, + "zoom": 14, + "place_id": "ChIJD0ctTL0OZ0gRmjdgB2o6Arg", + "name": "2 Fitzwilliam Pl", + "street_number": "2", + "street_name": "Fitzwilliam Place", + "street_name_short": "Fitzwilliam Pl", + "city": "Dublin 2", + "state": "County Dublin", + "state_short": "D", + "post_code": "D02 K227", + "country": "Ireland", + "country_short": "IE" + }, + "link": "https://philea.eu/members/philanthropy-ireland-ltd/", + "philea_info": { + "About": "" + } + }, + { + "id": 5277, + "name": "PeaceNexus Foundation", + "address": "PeaceNexus Foundation Rt de Lausanne 107 CH-1197 Prangings Switzerland", + "country": "Switzerland", + "email": "info@peacenexus.org", + "website": "http://www.peacenexus.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "PEACENEXUS, Route de Lausanne 107, 1197 Prangins, Switzerland", + "lat": 46.3918994, + "lng": 6.254621799999999, + "zoom": 14, + "place_id": "ChIJG5nGiBlDjEcRS7BfVtOg5jE", + "name": "PEACENEXUS", + "street_number": "107", + "street_name": "Route de Lausanne", + "street_name_short": "Rte de Lausanne", + "city": "Prangins", + "state": "Vaud", + "state_short": "VD", + "post_code": "1197", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/peacenexus-foundation/", + "philea_info": { + "About": "PeaceNexus was founded by Anne Gloor and has been supported since its inception by an endowment fund granted by the philanthropist Hansjörg Wyss through the Wyss Foundation.", + "Mission": "PeaceNexus’ mission is to strengthen the competencies and collaboration of organisations to increase their effectiveness and contribution to building peace.", + "Geographic Focus": "Work at the international level and in four focus regions: West Africa, Western Balkans, Central Asia and South East Asia", + "Programme Areas": "PeaceNexus provides services to multiply the peacebuilding impact of their partners through: – organisational development for peacebuilding champions;\n– developing capacities for conflict sensitivity, and\n– supporting inclusive dialogue with business and other partners to develop solutions to local peacebuilding challenges." + } + }, + { + "id": 5276, + "name": "Paul Hamlyn Foundation", + "address": "The Paul Hamlyn Foundation 5-11 Leeke Street WC1X 9HY London United Kingdom", + "country": "United Kingdom", + "email": "information@phf.org.uk", + "website": "http://www.phf.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Paul Hamlyn Foundation, Leeke Street, London, UK", + "lat": 51.53029950000001, + "lng": -0.1180191, + "zoom": 14, + "place_id": "ChIJS71-rjgbdkgRn29H_3pkr7o", + "name": "Paul Hamlyn Foundation", + "street_number": "5-11", + "street_name": "Leeke Street", + "street_name_short": "Leeke St", + "city": "London", + "state": "England", + "post_code": "WC1X 9HY", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/paul-hamlyn-foundation/", + "philea_info": { + "About": "Paul Hamlyn set up the Foundation in 1987 and left a substantial sum on his death to enlarge it. His values were summarised in the motto – ‘There must be a better way’, words which we have adapted in our strapline to describe what we want to achieve – ‘Towards a better way’. That way is towards being a society that is fair, allows people to realise their potential, fights prejudice, encourages and assists participation in and enjoyment of the arts and learning, and understands the importance of the quality of life for all communities.", + "Mission": "Their mission is to help people to realise their potential and enjoy a better quality of life, now and in the future.", + "Geographic Focus": "United Kingdom and India", + "Programme Areas": "Arts; with special initiatives focused on organisational change in museums and galleries, supporting artists and innovation in the art sector and artists working in participatory setting.\nEducation & Learning; with special initiatives focused on music education, residential learning and good practice in the HR sector.\nSocial Justice; with special initiatives focused on refugee/migrant rights, the criminal justice system and supporting young people with mental health issues.\nIndia; open grants focused on building capacity in NGOS working with vulnerable groups." + } + }, + { + "id": 5274, + "name": "Open Society Foundations", + "address": "Open Society Foundations OSIFE, C/Elisabets, 24 08001 Barcelona Spain", + "country": "Germany", + "email": "info@opensocietyfoundations.org", + "website": "http://www.opensocietyfoundations.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carrer d'Elisabets, 24, Barcelona, Spain", + "lat": 41.3830253, + "lng": 2.1679675, + "zoom": 14, + "place_id": "ChIJ6wVnsfWipBIR9Sd2UXoKRNM", + "name": "Carrer d'Elisabets, 24", + "street_number": "24", + "street_name": "Carrer d'Elisabets", + "city": "Barcelona", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08001", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/open-society-foundations/", + "philea_info": { + "About": "Open Society Institute OSI was created in 1993 by investor and philanthropist George Soros to support his foundations in Central and Eastern Europe and the former Soviet Union. Those foundations were established, starting in 1984, to help countries make the transition from communism. OSI has expanded the activities of the Soros foundations network to other areas of the world where the transition to democracy is of particular concern. The Soros foundations network encompasses more than 60 countries, including the United States. In August 2010, it started using the name of Open Society Foundations (OSF) to better reflect its role as a funder for civil society groups around the world.", + "Mission": "To build vibrant and tolerant societies whose governments are accountable and open to the participation of all people; to strengthen the rule of law; respect for human rights, minorities, and a diversity of opinions; democratically elected governments; and a civil society that helps keep government power in check; to shape public policies that assure greater fairness in political, legal, and economic systems and safeguard fundamental rights; to advance justice, education, public health, and independent media; to protect and improve the lives of people in marginalized communities.", + "Geographic Focus": "Africa; Asia; Central, South and Eastern Europe; Central Eurasia; Latin America and the Caribbean; the Middle East; US", + "Programme Areas": "The Open Society Foundations’ initiatives address specific issue areas on a regional or network-wide basis. Many of them are implemented in cooperation with Soros foundations in various countries. Key areas of intervention include: • Children & Youth\n• Education\n• Socio-economic development\n• Democratic governance and transparency\n• Public Health\n• Human Rights, Civil Liberties and Citizens Security\n• Law & Justice\n• Media’s freedom\n• Women’s Rights" + } + }, + { + "id": 5273, + "name": "Open Estonia Foundation", + "address": "Open Estonia Foundation Estonia Avenue pst 5A 10143 Tallinn Estonia", + "country": "Estonia", + "email": "info@oef.org.ee", + "website": "http://www.oef.org.ee", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Estonia puiestee 5a, Tallinn, Estonia", + "lat": 59.4348507, + "lng": 24.7531709, + "zoom": 14, + "place_id": "ChIJ-09SImCTkkYRyBerMSOActE", + "name": "Estonia pst 5a", + "street_number": "5a", + "street_name": "Estonia puiestee", + "street_name_short": "Estonia pst", + "city": "Tallinn", + "state": "Harju maakond", + "post_code": "10145", + "country": "Estonia", + "country_short": "EE" + }, + "link": "https://philea.eu/members/open-estonia-foundation/", + "philea_info": { + "About": "Open Estonia Foundation was set up in 1990 with the support of George Soros, who has closely followed the reforms in Central and Eastern Europe (CEE) and now has a network of Open Society foundations operating in CEE countries. The foundation is an operating and grantgiving organisation.", + "Mission": "The mission of the foundation is the development of an open society in Estonia and in other countries. The foundation’s programs are driven by a vision of democracy, civil society, social responsibility, and equal opportunities in the democratic decision making process.", + "Geographic Focus": "Estonia, also Russia.", + "Programme Areas": "For the period 2018-2020 OEF focuses on two priority areas:\n1. vibrant and sustainable civil society;\n2. social cohesion. In the Vibrant and sustainable civil society priority area, OEF aims at:\n• strengthening civic space and capacity building for CSOs;\n• improving and developing capacity, advocacy skills and greater sustainability of civil society actors; aiming for a more active citizenship;\n• promoting the adoption of new, more participatory, transparent and accountable models of democracy;\n• open, transparent and accountable governance OEF’s strategic goals in the Fundamental Rights and Social Cohesion area include:\n• building a better understanding of democratic values among the public, particularly youth, and increasing their dedication to democratic practices as a key to social cohesion.\n• striving towards more open, tolerant and diverse society;\n• combating discrimination and prejudice, intolerance and xenophobia, especially against vulnerable and minority groups;\n• creating a better awareness of and compliance with fundamental rights and freedoms; The Foundation runs and supports initiatives in line with its strategic priorities, i.e achieving a greater engagement of civil society in policy processes and improving the capacity of citizens, civil society actors and the government to interact in creating policy solutions that uphold the values of open an society and best serve the public interest and generate a positive social change.\nOpen Estonia Foundation is the lead partner of Active Citizens Fund in Estonia, in cooperation with Network of Estonian Nonprofit organizations. Support to civil society is a key priority for the EEA and Norway Grants 2014-2021, funded by Iceland, Liechtenstein and Norway in 15 EU Member States in Central and Southern Europe and the Baltics. Full info on the program https://acf.ee/en/" + } + }, + { + "id": 5271, + "name": "Oeuvre Nationale de Secours Grande-Duchesse Charlotte", + "address": "Oeuvre Nationale de Secours Grande-Duchess Charlotte 18, rue Leon Laval L-3372 Leudelange Luxembourg", + "country": "Luxembourg", + "email": "secretariat@oeuvre.lu", + "website": "http://www.oeuvre.lu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Œuvre Nationale de Secours Grande-Duchesse Charlotte, 18 Rue Léon Laval, 3372 Leudelange, Luxembourg", + "lat": 49.5705961, + "lng": 6.080992199999999, + "zoom": 14, + "place_id": "ChIJQf9Bup1JlUcRKk0YneA2F88", + "name": "Œuvre Nationale de Secours Grande-Duchesse Charlotte", + "street_number": "18", + "street_name": "Rue Léon Laval", + "city": "Leudelange", + "state": "District de Luxembourg", + "post_code": "3372", + "country": "Luxembourg", + "country_short": "LU" + }, + "link": "https://philea.eu/members/oeuvre-nationale-de-secours-grande-duchesse-charlotte/", + "philea_info": { + "About": "Art.2 decree “London Christmas 1944” stipulates that the purpose of the work is to help the Luxembourg victims of the war in all cases where sufficient support from the public authorities is not yet organized or is not indicated.", + "Mission": "Since 1944, l’Oeuvre Nationale de Secours Grande-Duchesse Charlotte (Grand-Duchess Charlotte Aid Organization) has assumed a prominent role in organizing and financing philanthropy and solidarity in Luxembourg. The initial goal of helping the victims of the Second World War has been expanded over the years to support the many philanthropic activities and projects led by foundations and associations in the social, welfare and social protection fields, as well as environment, culture and sport. The financial means necessary for this purpose are essentially generated by the National Lottery. The law of May 22, 2009 related to the Oeuvre and the National Lottery confirmed to the Oeuvre both the status of public establishment enjoying legal personality under the tutelage of the Prime Minister, Minister of State the following main tasks/goals:\n– to help the Luxembourg victims of the Second World War;\n– to support organizations working in the social field to achieve the objectives that these organizations have set in their statutes;\n– to support organizations working at the national level in the fields of culture, sport and environmental protection;\n– to participate in the expenses of the municipal social offices and the Fonds national de solidarite (free translation: the National Solidarity Fund), and;\n– to organize and manage the National Lottery.", + "Geographic Focus": "National - Luxembourg", + "Programme Areas": "‘- to help the Luxembourg victims of the Second World War;\n– support organizations working in the social field to achieve the objectives that these organizations have set in their statutes;\n– support organizations working at the national level in the fields of culture, sport and environmental protection;\n– to participate in the expenses of the communal social offices and the Fonds nationale de solidarite One-off aid: Specific aid is intended for not-for-profit organizations working at the national level in the social field, culture, sport and protection of the environment. In order to determine unmet needs that are not adequately covered or not covered at all, l’ Oeuvre regularly undertakes investigations together with prominent actors of the civil society and the associate sector. To address those shortcomings call for projects are launched. Call for projects: The Oeuvre regularly offers help through calls for projects dedicated to specific themes. The calls for projecs since 2014 have included the environmental commitment (“Yes We Can Care”), the integration of applicants for international protection (“mateneen”), the fight against addictions (“Addictions”), tolerance (“Respect”) or prevention in the field of health (“Sports-Sante”). stART-UP Fund: The start-up fund of the Oeuvre is aimed at young and creative artists under the age of 36 to support their professionalization and the export of their work. Projects coming directly from not for profit organizations are eligible. Projects must have a link with Luxembourg, residence or nationality of the artist and be of public interest. The aid is one shot." + } + }, + { + "id": 5270, + "name": "Oak Foundation", + "address": "Oak Foundation Oak Philanthropy Ltd., Case postale 115 58, Avenue Louis Casaï 1216 Cointrin, Geneva Switzerland", + "country": "Switzerland", + "email": "info@oakfnd.ch", + "website": "http://www.oakfnd.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Oak Philanthropy Ltd, Avenue Louis-Casaï 58, 1216 Cointrin, Geneva, Switzerland", + "lat": 46.22375090000001, + "lng": 6.1094305, + "zoom": 14, + "place_id": "ChIJP4QtKZpkjEcR3Fv6NcAOzdI", + "name": "Oak Philanthropy Ltd", + "street_number": "58", + "street_name": "Avenue Louis-Casaï", + "street_name_short": "Av. Louis-Casaï", + "city": "Cointrin", + "state": "Genève", + "state_short": "GE", + "post_code": "1216", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/oak-foundation/", + "philea_info": { + "About": "The resources of the Oak Foundation originated from an interest in the Duty Free Shoppers business which Alan M. Parker helped to build up.", + "Mission": "To address issues of global social and environmental concern, particularly those that have a major impact on the lives of the disadvantaged.", + "Geographic Focus": "International, Africa, India", + "Programme Areas": "The foundation works in the following areas: – Child Abuse\n– Environment\n– Housing and Homelessness\n– International Human Rights\n– Issues Affecting Women\n– Learning Differences\n– Special Interest\n– Joint India Programme\n– Denmark\n– Zimbabwe Child Abuse: the foundation supports initiatives that aim to eliminate the sexual exploitation of children; engage men and boys in combating the sexual abuse of children; and promote the prevention of violence against children. Environment: the foundation’s grant-making focuses on three main areas: climate change mitigation; wildlife conservation; and the conservation of marine resources. Housing and Homelessness: the foundation focuses on preventing homelessness by funding sustainable solutions that improve the economic and social wellbeing of marginalised youth, adults and families. The programme has three priorities: promoting economic self-sufficiency; increasing the availability and supply of affordable housing; and preventing homelessness. International Human Rights: for this programme the foundation works with partners to end impunity for the gross violations of human rights; uphold prohibitions on arbitrary detention and torture; protect human rights defenders at risk; and multiply and amplify influential voices on IHRP global priorities. Issues Affecting Women: the foundation supports organisations that work to end patterns of violence and exploitation that disrupt women’s lives by ensuring that rights-based laws and policies guarantee an environment free from violence, and by transforming harmful social norms. This is complemented by support to a range of comprehensive services that empower women to recover from the trauma of violence and rebuild their lives. Learning Differences: the foundation supports teacher development, student engagement and parental understanding to enable students to follow their own individual paths to lifelong learning success. The foundation seeks partners who design and create learning environments that are informed by student voices, neuroscience, personalised learning best practices and universal design concepts. Special Interest: Special Interest grants cover a wide range of fields, including health, humanitarian relief, education and the arts. They are made to organisations whose activities the Trustees wish to support, irrespective of country or region. Joint India Programme: it consists of five Oak Programmes that work together to address a combination of issues that affect populations with less access to resources in Jharkhand and West Bengal located in east India. Denmark: Oak Foundation Denmark is a national programme through which the foundation provides grants to organisations in Denmark and Greenland. Through this programme the foundation seeks innovative solutions that improve the daily lives and future prospects of socially vulnerable and marginalised groups. In particular, it\nfocuses on initiatives that target ethnic minority women, homeless people, mothers, children, immigrants and refugees. Zimbabwe: Oak Zimbabwe Foundation is a national programme through which the foundation funds local organisations involved in caring and providing for the most disadvantaged and vulnerable people in Zimbabwean society. It gives support to organisations operating in the following priority areas: healthcare, including HIV/AIDS; rural water supplies; special needs education; and services that help vulnerable women, children and elderly persons." + } + }, + { + "id": 5269, + "name": "Novo Nordisk Foundation, The", + "address": "Novo Nordisk Foundation Tuborg Havnevej 19 2900 Hellerup Denmark", + "country": "Denmark", + "email": "nnfond@novo.dk", + "website": "http://www.novonordiskfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Novo Nordisk Foundation, Tuborg Havnevej 19, 2900 Hellerup, Denmark", + "lat": 55.7270213, + "lng": 12.5836844, + "zoom": 14, + "place_id": "ChIJadmjE4ZSUkYRqwhCS5p5HKA", + "name": "Novo Nordisk Foundation", + "street_number": "19", + "street_name": "Tuborg Havnevej", + "city": "Hellerup", + "post_code": "2900", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/novo-nordisk-foundation-the/", + "philea_info": { + "About": "The Novo Nordisk Foundation is an independent Danish foundation with corporate interests. The objective of the Novo Nordisk Foundation is twofold: To provide a stable basis for the commercial and research activities conducted by the companies within the Novo Group and to support scientific and humanitarian purposes.", + "Mission": "To provide a stable basis for the commercial and research activities conducted by the companies within the Novo Group and to support scientific and humanitarian purposes.", + "Geographic Focus": "Denmark, Scandinavia and certain parts of the developing world (Africa)", + "Programme Areas": "The foundation supports scientific, humanitarian and social purposes. The majority of grants are given to medical and scientific projects and to other selected research areas. The foundation’s grants for research are apportioned as support for the following: • Specific project\n• Scholarships\n• Symposia\n• The Novo Nordisk Prize Funding areas: – Art Research\n– Biomedicine and health sciences\n– Biotechnology\n– Conferences, symposia and workshops\n– Education and outreach\n– Life science innovation and entrepreneurship\n– Natural and technical science research and interdisciplinarity\n– Patient-centered and research-based care\n– Social and humanitarian initiatives\n– Social science research" + } + }, + { + "id": 5268, + "name": "Nordea-fonden", + "address": "Nordea-fonden Overgaden Neden Vandet 11 1414 Copenhagen K Denmark", + "country": "Denmark", + "email": "kontakt@nordeafonden.dk", + "website": "http://www.nordeafonden.dk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Nordea Fonden, Overgaden Neden Vandet 11, 1414 Copenhagen, Denmark", + "lat": 55.6722099, + "lng": 12.5897326, + "zoom": 14, + "place_id": "ChIJpwlMZa1TUkYR_7yi9OXdh58", + "name": "Nordea Fonden", + "street_number": "11", + "street_name": "Overgaden Neden Vandet", + "city": "København", + "post_code": "1414", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/nordea-fonden/", + "philea_info": { + "About": "Nordea-fonden was established when 3 major banks merged and turned into a limited company. The capital of the banks were the funding capital for the foundation. There is no organisational relationship with the commercial bank Nordea AB. The only relationship today is, that the predominant part of the capital in the foundation is invested in Nordea AB, which makes the Nordea-fonden the second largest investor in Nordea AB. All of profits arising from the invested capital are donated to non-profit purposes.", + "Mission": "To promote good quality of life in Demark, through support and engagement in a non-profit charity.", + "Geographic Focus": "Within the boundaries of Denmark", + "Programme Areas": "Under the current strategy (2013-15) our effort and donations are focused on four themes: Nature, Culture, Health and Sports.\nThey also provide grants for Danish students to study abroad. Nature\nNordea-fonden support projects to get Danes to spend more time in nature in urban and rural areas. The aim to improve access to natural areas, through infrastructure and other methods, such as educational classes in forests or city parks. Health\nThe organisation backs projects that promote health, focussing on food as a central feature of health and quality of life. They aim to support projects that: promote healthy eating habits by spreading knowledge and awareness of produce, crafts, taste and appreciation of cuisine in school, at home and leisure. Culture\nThey encourage participation in arts and culture, in order to strengthen the populations sense of creativity and playfulness in everyday life. They endorse this through the mediums of music, dance, film, visual arts and cultural heritage. Sports\nNordea-fonden fund and support activities that promote exercise, play, recreation and physical activity in general. They focus and value projects that: encourage all to engage in sports and physical activities, educate and share knowledge on exercise and outdoor activities." + } + }, + { + "id": 5265, + "name": "Postcode Lottery Group", + "address": "Postcode Lottery Group Beethovenstraat 200 1077 JZ Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "https://www.postcodelotterygroup.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Beethovenstraat 200, 1077 JZ Amsterdam, Netherlands", + "lat": 52.3414279, + "lng": 4.8758224, + "zoom": 14, + "place_id": "ChIJ3Y1aWwMKxkcRbP6rYT-zZ1Y", + "name": "Beethovenstraat 200", + "street_number": "200", + "street_name": "Beethovenstraat", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1077 JZ", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/postcode-lottery-group/", + "philea_info": { + "About": "The Postcode Lottery Group is a private company, fully owned by a foundation, with a social purpose that brings together business and ideals. Its sole mission is to raise funds for charities working to build a fair, green, and healthy world in which everyone can participate fully and with a thriving cultural sector. It sets up and operates subscription-based charity lotteries worldwide to raise funds for good causes.", + "Mission": "To raise long-term funding for local and international charity partners and increase awareness of their work.", + "Geographic Focus": "Global, with a specific focus on the countries where the lotteries are active: Netherlands, Sweden, Great Britain, Germany, Norway", + "Programme Areas": "The Postcode Lottery Group provides long-term institutional support to organisations worldwide working in the areas of (girls’) education, human rights, poverty alleviation, social cohesion, preservation of cultural heritage, nature conservation and environment, species protection and health." + } + }, + { + "id": 5263, + "name": "National Foundation for Civil Society Development - Croatia", + "address": "National Foundation for Civil Society Development- Croatia Strigina 1a 10000 Zagreb Croatia", + "country": "Croatia", + "email": "zaklada@civilnodrustvo.hr", + "website": "http://zaklada.civilnodrustvo.hr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Štrigina ulica 1A, 10000, Zagreb, Croatia", + "lat": 45.8119848, + "lng": 16.0047961, + "zoom": 14, + "place_id": "ChIJFU6InrTXZUcRAq4aroZVdCA", + "name": "Štrigina ul. 1A", + "street_number": "1A", + "street_name": "Štrigina ulica", + "street_name_short": "Štrigina ul.", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/national-foundation-for-civil-society-development-croatia/", + "philea_info": { + "About": "Nacionalna Zaklada za Razvoj Civilnoga Drustva is a public foundation founded by a special act passed by the Croatian Parliament on 16 October 2003. The foundation carries out a mix of operating and grantmaking activities funded by the Croatian lottery, state budget and EU funds.", + "Mission": "To promote and develop civil society in Croatia.", + "Geographic Focus": "Croatia and Central and Eastern Europe", + "Programme Areas": "Goals that the National Foundation aims to achieve through its activities are: – Encouraging citizens to action, involvement and participation in community development;\n– Building the capacities of civil society;\n– Development of cross-sectoral cooperation and cooperation between civil society organisations;\n– Increasing public influence and visibility of the work of civil society organisations;\n– Development of social entrepreneurship and employment in the non-profit sector;\n– Increasing the influence of civil society in the process of adopting public policies." + } + }, + { + "id": 5262, + "name": "Mozaik Foundation", + "address": "Mozaik Foundation Soukbunar 42 71000 Sarajevo Bosnia and Herzegovina", + "country": "Bosnia and Herzegovina", + "email": "info@mozaik.ba", + "website": "http://www.mozaik.ba", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Soukbunar 42, Sarajevo 71000, Bosnia and Herzegovina", + "lat": 43.8522829, + "lng": 18.4145591, + "zoom": 14, + "place_id": "EjRTb3VrYnVuYXIgNDIsIFNhcmFqZXZvIDcxMDAwLCBCb3NuaWEgYW5kIEhlcnplZ292aW5hIlASTgo0CjIJC6SFI93IWEcRuPXr_MyO7woaHgsQ7sHuoQEaFAoSCctVmj6fzlhHEUxZlCbE4Qv0DBAqKhQKEgkxLbDMwshYRxHBqxt2zhaUgA", + "name": "Soukbunar 42", + "street_number": "42", + "street_name": "Soukbunar", + "city": "Sarajevo", + "state": "Federacija Bosne i Hercegovine", + "post_code": "71000", + "country": "Bosnia and Herzegovina", + "country_short": "BA" + }, + "link": "https://philea.eu/members/mozaik-foundation/", + "philea_info": { + "About": "Mozaik Foundation was established in 2002, as a foundation for the development of non-governmental organisations (NGOs). The objective of the founders was to create a local indigenous institution, which would assist all the citizens of Bosnia and Herzegovina long after international organisations have left the country.", + "Mission": "To encourage people to organise and advance their own communities.", + "Geographic Focus": "Rural areas and small communities throughout Bosnia and Herzegovina", + "Programme Areas": "The foundation works to mobilize local resources and to support the sustainable socio-economic development through two programmes: Youth Bank and All Inclusive Youth Bank\nAims to increase the participation of young people in the local development processes of Bosnia and Herzegovina’s rural communities. Working in partnership with Community Foundation for Northern Ireland (CFNI), this innovative small grant-making programme is run by young people for young people. Youth Bank creates opportunities for youth-led groups according to the needs in their communities- working on projects (cultural, sports etc.), participating as active citizens in their communities and developing professional governance and management skills through capacity building exercises and practical experience in operating a small grants program that directly supports young people in rural areas. All Inclusive\nThrough this programme the foundation provides financial and technical support to formal youth groups. The foundation has also launched two social businesses, EkoMozaik Ltd. and Agency MaŠta." + } + }, + { + "id": 5261, + "name": "Medicor Foundation", + "address": "Medicor Foundation Landstrasse 11 P. O. Box 130 9495 Triesen Liechtenstein", + "country": "Liechtenstein", + "email": "info@medicor.li", + "website": "http://www.medicor.li", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "9495 Triesen, Liechtenstein", + "lat": 47.0842296, + "lng": 9.5572841, + "zoom": 14, + "place_id": "ChIJjVLKgfY0m0cRt2kRKBJQdA8", + "name": "9495", + "city": "Triesen", + "post_code": "9495", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/medicor-foundation/", + "philea_info": { + "About": "Medicor Foundation is an independent and charitable foundation based in Liechtenstein. Medicor Foundation is subject to the Liechtenstein Foundation Supervisory Authority (STIFA) and is a founding member of the Association of Charitable Foundations in Liechtenstein.", + "Mission": "Medicor Foundation aims to:\n• improve the living conditions of vulnerable and disadvantaged people and\n• empower them in a sustainable manner.\nThe donations are financed according to the returns on the investment of the foundation’s capital. The foundation has committed itself to sustainable development and strives to invest its capital in socially and ecologically responsible companies.\nMedicor Foundation cultivates a broad network of international and national organisations and institutions, but is not an implementing agency.", + "Geographic Focus": "Africa, Latin America and The Caribbean, and Eastern Europe", + "Programme Areas": "Medicor Foundation focuses on international development. They select convincing projects in the fields of education, health and social care in countries in Africa, Latin America and The Caribbean, as well as in Eastern Europe. • Education: they support projects promote early child development and improve access and quality of primary and secondary education. Moreover, they fund projects that enable people to develop their professional skills or acquire relevant income generating skills and thereby start their working life.\n• Health: they provide funding for preventive and curative interventions with an emphasis on health education, the training of health personnel, as well as the development and maintenance of health infrastructure.\n• Social Care: they support projects that provide expert care and counselling, facilitate reintegration into society, and opens awareness and opportunities for a life in dignity and hope.\n• Emergency Relief: as a consequence of natural or man-made disasters people continually experience life-threatening situations. Medicor Foundation provides funding for immediate assistance where people are in distress.\n• Research: they support, through selected institutions, the applied research of widespread or neglected diseases in developing countries and rare diseases in industrialised countries. Applied research that will contribute to a healthier diet is also considered. Overall, Medicor Foundation approved 58 projects in 28 countries." + } + }, + { + "id": 5260, + "name": "Mama Cash Foundation", + "address": "Mama Cash Foundation P.O. Box 15686 1001 ND Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@mamacash.org", + "website": "http://www.mamacash.nl", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Amsterdam, Netherlands", + "lat": 52.3675734, + "lng": 4.9041389, + "zoom": 14, + "place_id": "ChIJVXealLU_xkcRja_At0z9AGY", + "name": "Amsterdam", + "city": "Amsterdam", + "state": "North Holland", + "state_short": "NH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/mama-cash-foundation/", + "philea_info": { + "About": "Mama Cash is the oldest international women’s foundation in the world and one of two in the world that is exclusively dedicated to advancing women’s human rights globally. For 25 years, Mama Cash has played an important role in advancing the human rights of women in Europe and around the world and in building stronger and more sustainable communities. Since 1983, Mama Cash has granted over €30 million to approximately 6,000 women’s groups around the world. In the last four years alone, almost €10m in grants were made to groups in 122 countries.", + "Mission": "To mobilise resources from individuals and institutions and makes grants to women and girls’ human rights organisations and initiatives.\nTo help grantees to build the partnerships and networks needed to successfully defend and advance women and girls’ human rights globally.\nTo help to realise the dreams of women and men who want to provide financial resources to strengthen women and girls’ human rights movements.", + "Geographic Focus": "International", + "Programme Areas": "Mama Cash Foundation’s activities include:\n– Grantmaking\n– Accompaniment\n– Influencing philanthropy\n– Learning for change\n– Special Initiatives Grantmaking\nGrantees of Mama Cash focus on injustices that would otherwise go unnoticed, that need to be challenged and that demand courage and vision to change. Mama Cash’s grantees create and build upon strategic opportunities to bring about change at the community, national, regional and global level.\nThematic portfolios:\n– Body: bodily integrity and autonomy\n– Money: economic justice\n– Voice: agency and participation\n– Women’s Funds: access to a feminist resource base for organising women, girls, and trans people Accompaniment\nThis includes providing and facilitating trainings, asking questions that help grantees link their activities to long-term objectives and connecting grantees to each other and to other funders. Influencing philanthropy\nMama Cash commissions research, initiate conversations and ask questions that encourage foundations and governments to provide support to women, girls and trans people. Learning for change\nMama Cash is committed to understanding how social change happens through their Learning and Evaluation framework, developed in collaboration with donors and grantees. Special Initiatives\nMama Cash supports women’s, girls’ and trans people’s rights beyond their four grantmaking portfolios, usually in collaboration with other organisations or funders that promote human rights activism. They are currently involved in two special initiatives: the Red Umbrella Fund and the Mesoamerican Initiative of Women Human Rights Defenders." + } + }, + { + "id": 5259, + "name": "Maj and Tor Nessling Foundation", + "address": "Maj and Tor Nessling Foundation Fredrikinkatu 20 B 16 FIN-00120 Helsinki Finland", + "country": "Finland", + "email": "toimisto@nessling.fi", + "website": "http://www.nessling.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Maj ja Tor Nesslingin Säätiö, Fredrikinkatu 20 B 16, 00120 Helsinki, Finland", + "lat": 60.1627741, + "lng": 24.93902, + "zoom": 14, + "place_id": "ChIJQXtfHcoLkkYRL99-h8bfUq8", + "name": "Maj ja Tor Nesslingin Säätiö", + "street_number": "20 B 16", + "street_name": "Fredrikinkatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/maj-and-tor-nessling-foundation/", + "philea_info": { + "About": "Tor Nessling was one of the pioneers of the Finnish motor industry. Until his death in 1971 he served as managing director and chairman of the board of Oy Suomen Autoteollisuus Ab (Finnish Motors Ltd.). With no children of their own, Tor Nessling and his wife Greta Maj wished that their estate should be used in the promotion of Finnish science and culture. The charter establishing the Maj and Tor Nessling Foundation was signed by Greta Maj Nessling in July 1972 and the Foundation began its work of furthering environmental protection in 1976.", + "Mission": "To support scientific research in all areas of environmental protection.", + "Programme Areas": "The foundation is active in the following areas:\n• Research\n• Environmental symposia Research\nDistributes grants and awards and extends other forms of recognition to scientific research in all areas of environmental protection. Mainly gives support to research focusing on local environmental problems (Finland and its nearby countries such as Estonia, Latvia, Lithuania). The research areas supported are:\n• Air pollutants, composition and behaviour, monitoring and evaluation of climate change\n• Water environment structure, functioning and diversity of ecosystems, and the impact of environmental loading\n• Soil ecosystems and groundwater\n• Environmental technology\n• Environmental social science\nIn addition, the foundatiion disseminates these research findings and produces publications on these themes.\nEnvironmental symposia\nOrganises symposia on current environmental problems and the search for solutions. The goal of these symposia is to make known current environmental research being carried out in Finland and elsewhere in the world. Finnish researchers and leading international figures are invited as lecturers. The symposia provide a forum for discussion for researchers, students and government\nofficials and seek to heighten the awareness of the general public about environmental research." + } + }, + { + "id": 5258, + "name": "Maecenata Foundation", + "address": "Maecenata Foundation Rungestrasse 17 10115 Berlin Germany", + "country": "Germany", + "email": "mst@maecenata.eu", + "website": "http://www.maecenata.eu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Maecenata Stiftung, Rungestraße, Berlin, Germany", + "lat": 52.5121218, + "lng": 13.4195188, + "zoom": 14, + "place_id": "ChIJxW08IztOqEcRYCu3_FheCrw", + "name": "Maecenata Stiftung", + "street_number": "17", + "street_name": "Rungestraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10179", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/maecenata-foundation/", + "philea_info": { + "About": "The foundation was established in 2010 as an umbrella and legal body for two existing long-term programmes:\n• The Maecenata Institute for Philantropy and Civil Society, established in 1197.\n• Maecenata International, the German partner in the Transnational Europe Giving network.", + "Mission": "The mission of the Foundation is to enhance the role of civil society in promoting the development of an open society.", + "Geographic Focus": "National and international", + "Programme Areas": "1) Maecenata Institute: an indipendent think-tank and centre for academic research, teaching, policy, and public information related to philantropiy and civil society. (The Maecenata Institute is affiliated to Humboldt University, Berlin).\nThe main focus areas include:\n– philantropy and foundations,\n– civil society policy,\n– civil society and other areas of public activities,\n– European and International exchanges.\n2) Maecenata International: a service to funders world-wide to facilitate donations across national boundaries, including tax advanteges in the country of residence and reporting system. 3) Europe Bottom-up: a programme designed to promote citizens’ acceptance of and involvement in the building of Europe through projects, publications tec." + } + }, + { + "id": 5257, + "name": "Lundbeckfonden", + "address": "Lundbeckfonden 7 Scherfigsvej 2100 Copenhagen O Denmark", + "country": "Denmark", + "email": "lb@lundbeckfonden.com", + "website": "http://www.lundbeckfonden.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lundbeckfonden, Scherfigsvej 7, 2100 Copenhagen, Denmark", + "lat": 55.7219251, + "lng": 12.5798535, + "zoom": 14, + "place_id": "ChIJZwPg6J3U3UMROSJadjNrJhY", + "name": "Lundbeckfonden", + "street_number": "7", + "street_name": "Scherfigsvej", + "city": "København", + "post_code": "2100", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/lundbeckfonden/", + "philea_info": { + "About": "The Lundbeck Foundation was established in 1954 by Grete Lundbeck, the widow of the founder of H Lundbeck A/S. The commercial activities are carried out through the wholly owned subsidiary LFI a/s, which holds a major interest in the share capital of H Lundbeck A/S and Alk-Abelló A/S. Both companies respectively are listed on the Copenhagen Stock Exchange.", + "Mission": "The Lundbeck Foundation is a Danish-based commercial foundation that is striving to significantly improve the population’s health and wellbeing by: • Supporting independent Danish research primarily within biomedicine and the natural sciences, at the highest level, and promoting its internationalisation\n• Creating shareholder value in the Lundbeck Group and other internationally renowned companies and helping them become world leaders in their respective fields", + "Geographic Focus": "Denmark", + "Programme Areas": "THIS WAS PROBABLY LAST UPDATE IN 2010 _ EF 7/10/206 The foundation is active in the following areas: • Scientific projects\n• Grants of Excellence\n• Junior Group Leader Fellowships\n• Visiting Professorships\n• Stipends\n• Centres of Excellence\n• Education and communication activities Scientific projects\nSupports concrete research projects in biomedical sciences and closely related areas of natural sciences, in addition to non-biological projects in chemistry and physics. Grants of Excellence\nIn the Spring of 2010 the Lundbeck Foundation invited applications for two Grants of Excellence within the area of neuroscience, including clinical neuroscience and psychiatry. The grants were awarded for five years, and each grant amounts to € 3 million. Junior Group Leader Fellowships SEEMS THAT THE SCHEME STOPPED IN 2014 ( fellowships 2010-2014)\nOffers five fellowships for particularly promising young researchers in their thirties who are qualified to establish or develop their own research groups within the health- or natural sciences. Visiting Professorships\nProvides funding to attract foreign guest researchers at the professor level to Denmark for 2-6 months. Stipends\nSupports the following types of stipends when applied for through the foundation’s Electronic Application System: • Scholarships\n• Ph.D. scholarships\n• Travel Stipends Centres of Excellence\nFor a number of years, the Lundbeck Foundation established Centres of Excellence focusing on subjects within biomedical or natural sciences determined by the Board of Trustees. The foundation established research centers in Neuroscience in 2005, Quantum Systems Research in 2006, Translational Science in Clinical Medicine in 2007, Interventional Research in Clinical Medicine in 2008 and Nanomedicine in 2009. Education and communication activities\nThe Lundbeck Foundation has a special focus on supporting projects that promote young people’s interest in the natural sciences in Denmark. Since 1987 The Lundbeck Foundation has also awarded research prizes to honour and encourage outstanding researchers in biomedicine and natural sciences and thus draw attention to the significance of research for society." + } + }, + { + "id": 5255, + "name": "LEGO Foundation", + "address": "LEGO Foundation Koldingvej 2 7190 Billund Denmark", + "country": "Denmark", + "email": "LEGOFoundation@LEGO.com", + "website": "http://www.legofoundation.com/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "LEGO Fonden, Koldingvej 2, 7190 Billund, Denmark", + "lat": 55.7247517, + "lng": 9.130263599999997, + "zoom": 14, + "place_id": "ChIJiYUmuXdxS0YRFEhS8jHnJ_M", + "name": "LEGO Fonden", + "street_number": "2", + "street_name": "Koldingvej", + "city": "Billund", + "post_code": "7190", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/lego-foundation/", + "philea_info": { + "About": "Ole Kirk Christiansen founded the LEGO® Company in 1932 and defined the set of values which have characterised the company since. ”Only the best is good enough, for children deserve the best”.", + "Mission": "To inspire and develop the builders of tomorrow.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The LEGO Foundation is active in the fields of education and early childhood development, in particular by: • Donating LEGO products all over the world\n• Contributing with activities that offer children and adults good experiences and insight into the many creative learning opportunities inherent in the LEGO products\n• Enhancing children’s education via research programs, new, systematic learning materials and supplementary education of teachers in developing countries" + } + }, + { + "id": 5254, + "name": "Learning for Well-being Foundation", + "address": "Learning for Well-being Foundation 56 Milletstraat 2nd floor 1077 ZG Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@learningforwellbeing.org", + "website": "http://www.learningforwellbeing.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Learning for Well-being, Milletstraat 56, 1077 ZG Amsterdam, Netherlands", + "lat": 52.34611239999999, + "lng": 4.868931599999999, + "zoom": 14, + "place_id": "ChIJd2CK3AEKxkcRmHkI0N-rfw8", + "name": "Learning for Well-being", + "street_number": "56", + "street_name": "Milletstraat", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1077 ZG", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/learning-for-well-being-foundation/", + "philea_info": { + "About": "The Learning for Well-being Foundation is a private operating foundation, registered in the Netherlands as a non-profit organization, with the head office in Amsterdam and a branch in Brussels.\nOur team and associates work remotely, running activities across Europe, Middle East, Latin America and the United States. The foundation’s collaborators include lead practitioners in the field of child participation and child well-being.", + "Mission": "We act as a catalyst through mutually reinforcing competent partnerships aimed at bringing the voice and actions of children more fully into creating well-being for themselves and their communities. Our programs cultivate the capacities of children, and the adults who interact with them, so that together they are able to contribute to a fairer and sustainable world, while realizing their unique potential throughout their lives. We focus on the intersection between well-being (as self-knowing) and social change through partnership between children and adults (an intergenerational competent approach to child participation).” The foundation was created after the aspirations of two changemakers who met in an event exploring “Issues and opportunities for Peace in the Middle East” in 2004, Prof. Marwan Awartani (today Palestinian Minister of Education) and Daniel Kropf, founder of several healthcare technology companies.", + "Geographic Focus": "International", + "Programme Areas": "Learning for Well-being Foundation has developed all of its programs with the aim of supporting child and societal well-being through child and youth participation. Its flagship activities include: 1. School Wellbeing Survey & Community Development\nA unique survey with accompanying interventions, based on the L4WB approach, that measures and improves the level of well-being in the school community, impacting all stakeholders.\nWith the hope of encouraging decision makers, stakeholders and heads of educational bodies to adopt a holistic approach to education, the Learning for Well-being Foundation (L4WB-F) together with Education for Life in Israel, have developed a tool (the L4WB survey) and interventions which bring together the 3 key partners in the school community: Pupils, Professionals and Parents (3Ps’), giving them the knowledge on how to increase their experience of well-being and engaged participation within their community.\nParticular focus was put on the L4WB Core Capacities in order to obtain information on the quality and quantity of these elements in the school so that we can then understand which of the capacities need further development. 2. ACT2GETHER\nOur purpose with ACT2gether is to develop global alliances for creating a social movement promoting partnership between generations (children and adults). We want this in all sectors (including education, health, welfare, justice, etc.) and addressing issues affecting children and\nadults in ways that are holistic and systemic.\nWe believe that when generations work in partnership, including peer to peer support, both children and adults benefit from each other’s qualities: spontaneity, curiosity, creativity and joy, but also fairness, accountability and drive become available to both, as shared resources.\nChildren and adults feel empowered to contribute fully – with their whole selves – to the creation of better spaces to live. Our strategic priorities are:\n• Create an international social movement that promotes and supports partnership between generations (children and adults)\n• Facilitate global, regional and national gatherings to promote children and adults working together\n• Provide learning experiences for people to understand and develop participatory practice\n• Create alliances both off and online that link an international community and shares stories promoting child-adult partnerships\nACT2gether is a global brand to which local initiatives can associate themselves, as part of social movement promoting partnership between generations. The 3 activities that support the movement internationally are: 2getherLand (event); 2getherLearn (training) and 2getherLink (off-line and online platform for alliances), all supported by transversal research. All ACT2gether activities:\n• are organized through partnership between children and adults\n• combine personal development and social action\n• create fairness and sustainability Currently there are active ACT2gether sites in Latin America, Germany, Palestine and the Netherlands. 3. Measuring What Matters – Research on Core Capacities\nThe purpose of this research, has been to assess what a comprehensive review of the existing literature can tell us about core capacities, using the L4WB framework as the conceptual frame.\nThe aim is to understand if such precursors to life skills can add value to concepts designed to promote child development, and related public policies, and further to identify what constitutes good practice for promotion and protection of these skills.\nL4WB-F is partnering with UNICEF’s Office of Research, Innocenti, and the US based Fetzer Foundation for this research effort. 4. Workgroup on Personalized and Formative Assessment Practices\nThis project aims at identifying and documenting assessment practices that are aligned with the L4WB approach. The outcome will produce knowledge and practices transferable to all our well-being and intergenerational collaboration programs.\nThis project aims to look for and into already existing innovative and interesting good assessment practices. We know that there are teachers and schools who work efficiently with alternative assessment methods, and it would be inspirational for educational settings to get acquainted with those in a well-documented way by adding information.\nThis project is done in cooperation with the Hungarian Waldorf Federation and the European Council of Steiner Waldorf Education. 5. Learning for Well-being Community\nWe have been building relationships around the Learning for Well-being perspective and framework with selected education, health, and child welfare organisations that are operating at European and national levels for many years now. Several of these relationships have been formalized through Memoranda of Understanding. In January 2015 the L4WB Community was formally established through a meeting of all partners in Caux, Switzerland. This created an opportunity for the partners to know each other and their work, to experiment with tools and practices together, and to envision joint projects inspired by the L4WB-Foundation. These meetings are for organisations that are actively seeking new ways to work together, specifically to develop capacities for competent relationships and systems for children and those who support them. From these gatherings, new partnerships and projects are born, using the Learning for Well-being principles to inspire a common language." + } + }, + { + "id": 5253, + "name": "Laudes Foundation", + "address": "Laudes Foundation Grafenauweg 10 6300 Zug Switzerland", + "country": "Switzerland", + "email": "grants@candafoundation.org", + "website": "http://www.laudesfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Grafenauweg 10, 6300 Zug, Switzerland", + "lat": 47.17444639999999, + "lng": 8.512388199999998, + "zoom": 14, + "place_id": "ChIJGRIo1l6qmkcRZ347UaNc4Z4", + "name": "Grafenauweg 10", + "street_number": "10", + "street_name": "Grafenauweg", + "city": "Zug", + "state": "Zug", + "state_short": "ZG", + "post_code": "6300", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/laudes-foundation/", + "philea_info": { + "About": "Laudes Foundation is an independent foundation launched in 2020 and part of the Brenninkmeijer family entreprise.\nAlthough independent from the COFRA businesses and the family’s other private philantropic activities, Laudes Foundation learns from its past and present experiences. In particular Laudes Foundation will advance the industry-changing work of C&A Foundation, and build on the experience of its flagship initiative, Fashion for Good.", + "Mission": "To transform the global economic system and the way it defines value. Laudes Foundation supports initiatives that work with the actors who have the power to change it.", + "Geographic Focus": "Global", + "Programme Areas": "New Economy (New Economic Thinking, New Models – Business and Value and Regulation, Policy and Taxation) Fashion (Labour Rights and Materials) Built Environment (Net zero carbon new buildings, A lighthouse for the built environment)" + } + }, + { + "id": 5252, + "name": "Kultura Nova Foundation", + "address": "Kultura Nova Foundation Gajeva 2/6 10 000 Zagreb Croatia", + "country": "Croatia", + "email": "info@kulturanova.hr", + "website": "http://kulturanova.hr/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gajeva ulica 2, Zagreb, Croatia", + "lat": 45.81273760000001, + "lng": 15.9763028, + "zoom": 14, + "place_id": "ChIJebV5t_3WZUcRHBpVYboricI", + "name": "Gajeva ul. 2", + "street_number": "2", + "street_name": "Gajeva ulica", + "street_name_short": "Gajeva ul.", + "city": "Zagreb", + "state": "Grad Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/kultura-nova-foundation/", + "philea_info": { + "About": "Kultura Nova Foundation was founded as an answer to the existing situation within the system of culture with the aim of ensuring an efficient measure that would allow for the improvement and further development of the position of civil sector in culture. With the support of the Council of New Media Culture, the idea of a new foundation was presented to the Ministry of Culture, which, after careful consideration, instituted a working group responsible for developing a Draft of the Proposal of the Law on Kultura Nova Foundation. The founding of a special foundation for civil sector in culture was anticipated in the National Program for the Youth for 2009 – 2013 Period. The process of founding Kultura Nova, extending over several years, included representatives of civil society organizations, different state administration bodies, public government bodies and experts, and its purpose, activities, core assets, financing, as well as other regulations concerning the foundation’s activities are defined by the Law on Kultura Nova Foundation which was adopted by the Croatian Parliament in 2011 (Official Gazette of the Republic of Croatia, No. 90/11).", + "Mission": "Kultura Nova Foundation provides professional and financial support to civil society organisations in the Republic of Croatia in the fields of contemporary arts and culture.", + "Geographic Focus": "Croatia, Southeastern European Region", + "Programme Areas": "Kultura Nova is an operational and grant making foundation and it provides professional and financial support to civil society (non-governmental and no-profit associations in the fields of contemporary art and culture in Croatia.\nThe foundation publishes open calls for artistic and cultural project and programme proposals of civil society organizations on an annual basis through its Support Programme that has a number of Programme areas. The Foundation publishes open calls for project and programme proposals on an annual basis. The Support Programme is currently realized through four Programme areas: Programme area 1: Development Support for Organizations\nProgramme area 2: Conception and Preparation of New Projects/Programmes\nProgramme area 3: Development of Cooperation Platforms in the Republic of Croatia\nProgramme area 4: Development of Cooperation Platforms in Southeastern Europe Kultura Nova Foundation implements Development programmes and projects within the framework of its operational functioning. Development programmes and projects activities currently include: – research\n– educational programmes\n– development of new models of institutions" + } + }, + { + "id": 5251, + "name": "Körber-Stiftung", + "address": "Körber-Stiftung Kehrwieder, 12 20457 Hamburg Germany", + "country": "Germany", + "email": "info@koerber-stiftung.de", + "website": "http://www.koerber-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Körber-Stiftung, Kehrwieder 12, 20457 Hamburg, Germany", + "lat": 53.54348539999999, + "lng": 9.9839361, + "zoom": 14, + "place_id": "ChIJ7a9K6QWPsUcRCDvuO6g9228", + "name": "Körber-Stiftung", + "street_number": "12", + "street_name": "Kehrwieder", + "city": "Hamburg", + "state": "Hamburg", + "state_short": "HH", + "post_code": "20457", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/korber-stiftung/", + "philea_info": { + "About": "Körber-Stiftung was established in 1959 by the industrialist and inventor, Dr Kurt A. Körber. Dr Körber founded Hauni-Werke in Hamburg-Bergedorf in 1946, which has since developed into the Körber AG group with 28 companies worldwide. In accordance with his will the foundation became sole shareholder of Körber AG after his death in 1992. The Körber Foundation is politically independent and ideologically neutral.", + "Mission": "The Körber Foundation promotes and supports people and initiatives that aims to change the status quo. It focuses on exchange and dialogue, the power of sound arguments and willingness to communicate. By recognising role models, by identifying good examples and by developing paradigms it provides stimuli not only for ideas, but also for actions.", + "Geographic Focus": "Germany, Europe, International", + "Programme Areas": "Through its operational projects, in its networks and in conjunction with cooperation partners, the Körber Foundation takes on current social challenges in areas of action comprising:\n– Demographic change,\n– Innovation,\n– International dialogue. Demographic Change\nIf our society is ageing and its origins and lifestyles are becoming more diverse, what implications does this have for our social interaction? How do we create more social justice? How can we recruit new people for the employment market? Who will look after the interests of others if the population is dwindling? The Körber Foundation addresses such issues with its activities, events and publications – and also encourages people to see the opportunities presented by these changes. The Foundation itself is also investigating new and constructive solutions in the light of demographic change: It supports local politics and administration on the path to becoming a demographically strong city and initiates networks for involvement. It promotes the potential of the older generation to employers and presents models for integration and diversity. It promotes citizen participation and brings together civil society, the economy and the state in new alliances. And last but not least, the Körber Foundation operates its own culture and district centre for the participation of the 50 plus generation. Innovation\nInnovations are prerequisites for the existence and success of modern societies. They ensure their sustainability, form the basis for prosperity and are essential for addressing key problems of humanity. The Körber foundation therefore explores the conditions and processes under which the new emerges, invests in young talent, honours innovative approaches and shapes the framework conditions for a society open to innovation. International Dialogue\nThe Körber Foundation is committed to international dialogue and dialogue across political, national and religious boundaries and aims at helping to build bridges to overcome the absence of discussion and to initiate debate. At present its work focuses on three topics: “Russia in Europe”, “New Working Lifetime” and “Digital Literacy”." + } + }, + { + "id": 5250, + "name": "Kone Foundation", + "address": "Kone Foundation Otavantie 10 00200 Helsinki Finland", + "country": "Finland", + "email": "koneensaatio@koneensaatio.fi", + "website": "http://www.koneensaatio.fi/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Otavantie 10, 00200 Helsinki, Finland", + "lat": 60.15905369999999, + "lng": 24.8791507, + "zoom": 14, + "place_id": "ChIJEUfVDF0KkkYRvV00UH89E5U", + "name": "Otavantie 10", + "street_number": "10", + "street_name": "Otavantie", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00200", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/kone-foundation/", + "philea_info": { + "About": "Kone Foundation was founded in 1956 by Heikki H. Herlin and Pekka Herlin. The founders were simultaneously in charge of Kone Foundation and Kone Corp., and hence there was a close relationship between the organizations. Nowadays the foundation is independent and unaffiliated. From a modest start in the early years, Kone Foundation began to award grants for academic research, with a specific focus on humanities, social sciences, environmental sciences and artistic research. During the 2000s the Foundation has made an active effort to find new ways to support academic research, the arts and culture. One outcome is the Saari Residence for artists and researchers, founded in 2006.", + "Mission": "Kone Foundation is an independent and unaffiliated organisation, the aim of which is to promote Finnish research, arts and culture.", + "Geographic Focus": "Especially the regions around the Baltic Sea (but researchers and artists of other regions are also supported).", + "Programme Areas": "In humanities, social sciences, artistic research and environmental research. All fields of the arts.\nThey have a residence for artists and researchers." + } + }, + { + "id": 5249, + "name": "King Baudouin Foundation", + "address": "King Baudouin Foundation 21, rue Brederode 1000 Brussels Belgium", + "country": "Belgium", + "email": "info@kbs-frb.be", + "website": "http://www.kbs-frb.be", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "King Baudouin Foundation, Rue Brederode 21, 1000 Brussels, Belgium", + "lat": 50.84035859999999, + "lng": 4.362291999999999, + "zoom": 14, + "place_id": "ChIJyb9ijYbEw0cRwolM9JVA0zc", + "name": "King Baudouin Foundation", + "street_number": "21", + "street_name": "Rue Brederode", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/king-baudouin-foundation/", + "philea_info": { + "About": "The King Baudouin Foundation was established in 1976 on the occasion of the 25th anniversary of King Baudouin’s reign. It is an independent foundation, administered by a Board of Governors.", + "Mission": "To work together for a better society. Helping to improve living conditions of the population. Supporting projects and citizens who are committed to create a better society. In order to make a lasting contribution towards greater justice, democracy and respect for diversity.", + "Geographic Focus": "Belgium, Europe and international", + "Programme Areas": "With an annual budget of 40 million euros, 92% of which is earmarked for projects, the foundation supports priority issues related to the following subjects: • Poverty & Social Justice\n• Democracy in Belgium\n• Democracy in the Balkans\n• Heritage\n• Philanthropy\n• Health\n• Leadership\n• Local engagement\n• Migration\n• Development\n• Specific projects" + } + }, + { + "id": 5244, + "name": "John S. Latsis Public Benefit Foundation", + "address": "John S. Latsis Public Benefit Foundation Xenias 4 14562 Athens Greece", + "country": "Greece", + "email": "info@latsis-foundation.org", + "website": "http://www.latsis-foundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "John S. Latsis Public Benefit Foundation, Xenias, Kifisia, Greece", + "lat": 38.0762191, + "lng": 23.8199362, + "zoom": 14, + "place_id": "ChIJB3Dq1OueoRQRAD04Z8VSTqk", + "name": "John S. Latsis Public Benefit Foundation", + "street_number": "4", + "street_name": "Xenias", + "city": "Kifisia", + "state": "Vorios Tomeas Athinon", + "post_code": "145 62", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/john-s-latsis-public-benefit-foundation/", + "philea_info": { + "About": "John Latsis entrepreneurial activities extended over approximately seven decades from the end of the 1920s to the mid-1990s. His many business activities included agricultural products, industrial goods, petroleum and petroleum products trading, as well as coastal shipping, passenger and commercial deep-sea shipping, petroleum refining, construction, and banking. His entrepreneurial activity was accompanied by numerous public benefit initiatives. Among his first coordinated actions was the creation of the John S. Latsis Ileians’ Scholarships Foundation to assist students from his home region. From 1991 until 2012 the Foundation for the Rehabilitation of Albanians of Greek Descent, established after the opening of the Greek borders with Albania to support Albanians of Greek descent, housed and trained more than 1,000 Albanians of Greek descent from the neighbouring country.\nAt the same time, he also contributed extensively during emergencies, such as the earthquakes that struck the areas of Kalamata in 1986, Pyrgos, Ileia in 1988, and Grevena in 1995. The Hellenic Fire Brigade, Hellenic Police and the Seamen’s Pension Fund also received large-scale donations.\nIn 1995, the building complex of the Latsio Elementary School was donated to the HAEF-Athens College; in 2005, two years after the death of John Latsis, the Latsio Burn Centre was completed and integrated into in the Thriasio General Hospital of Eleusis.", + "Mission": "The Foundation plans, manages, and funds programmes that cover a broad range of fields, such as education, science, health, social welfare, culture and the environment, in collaboration with civil society partners and key players within these areas. An additional, diversified branch of activities is the operation of the Neraida Floating Museum, which, by offering visitors free access and organising various events, seeks to highlight the maritime and entrepreneurial history of Greece, familiarise youth with the maritime profession, and promote environmental awareness.\nThe Foundation’s approach to grant-making prioritises the emergency relief of citizens in need, infrastructural improvement, NGO capacity building and community development, academic and research output reward, and highlighting of the cultural wealth of Greece.", + "Geographic Focus": "Greece", + "Programme Areas": "Quality of education\naccess to education\nsocial welfare\npublic health\ncommunity development\nscience and research" + } + }, + { + "id": 5243, + "name": "John D. and Catherine T. MacArthur Foundation", + "address": "John D. and Catherine T. MacArthur Foundation 140 S. Dearborn Street 12th floor IL 60603-5285 Chicago United States", + "country": "United States", + "email": "4answers@macfound.org", + "website": "http://www.macfound.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "140 South Dearborn Street, Chicago, IL, USA", + "lat": 41.8797985, + "lng": -87.62954719999999, + "zoom": 14, + "place_id": "ChIJ2f-rorwsDogRrKRi53x4VbM", + "name": "140 S Dearborn St", + "street_number": "140", + "street_name": "South Dearborn Street", + "street_name_short": "S Dearborn St", + "city": "Chicago", + "state": "Illinois", + "state_short": "IL", + "post_code": "60603", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/john-d-and-catherine-t-macarthur-foundation/", + "philea_info": { + "About": "The organisation is a private, independent, grantmaking foundation created in 1978 by John D. MacArthur, who developed and owned an array of businesses, principally Bankers Life and Casualty Company, as well as considerable property in Florida and New York.\nMacArthur is placing a few big bets that truly significant progress is possible on some of the world’s most pressing social challenges, including advancing global climate solutions, decreasing nuclear risk, promoting local justice reform in the U.S., and reducing corruption in Africa’s most populous country, Nigeria. The Foundation also continues its historic commitments to the role of journalism in a responsive democracy as well as the vitality of our headquarters city, Chicago.", + "Mission": "The John D. and Catherine T. MacArthur Foundation supports creative people, effective institutions, and influential networks building a more just, verdant, and peaceful world.", + "Geographic Focus": "USA, India, Mexico, and Nigeria", + "Programme Areas": "Chicago Commitment, Climate Solutions, Criminal Justice, Journalism and Media, Nuclear Challenges, Technology in the Public Interest The foundation is involved in the following programmes:\n• Global security and sustainability (International)\n• Human and community development (US)\n• General programme\n• MacArthur Fellows Global Security and Sustainability\nSeeks to promote peace within and among countries, healthy ecosystems worldwide, responsible reproductive choices, and the protection of human rights. The foundation encourages work that recognises the interactions among these global problems. The programme has offices in Mexico, India, Russia, and Nigeria. It focuses on the following priorities: • Conservation and Sustainable Development: focuses exclusively on dealing with the problems of endangered tropical ecosystems. These are the regions with the greatest degree of species diversity, but are also plagued by acute human poverty and are often experiencing rapid population growth\n• Human Rights and International Justice:addresses human rights through grants to selected U.S.-based organisations that work internationally and to projects that seek to further the development of an international justice system. In addition, the foundation supports human rights organisations in Mexico, Nigeria, and Russia\n• International Peace and Security: helps to reduce the dangers posed by the development, stockpiling, and proliferation of the world’s most destructive weapons, in particular nuclear weapons, dangerous pathogens, and new biotechnologies\n• Population and Reproductive Health: seeks to reduce maternal mortality and morbidity; and advance young people’s sexual and reproductive health and rights\n• Universities in Russia and Nigeria: In Russia, the foundation seeks to support universities and other elements of scholarly infrastructure to enhance the skills and capacities of scholar-practitioners, and to support the development of modern university-based science and social science research and training capabilities. In Nigeria, the foundation is providing long-term support for four leading Nigerian universities, helping them to rebuild and upgrade their facilities, curricula, and faculty Human and Community Development\nSupports the development of healthy individuals and effective communities. Grantmaking strategies focus on: • Community Change: supports organisations in Chicago in their efforts to make neighbourhoods healthy and sustainable places for family life and economic success. It also seeks to learn from these activities, and to communicate lessons learned through practical experience to multiple audiences, including policymakers, practitioners, and other funders\n• Stable and Affordable Housing: preserves and improves affordable rental housing across the country through the $50 million initiative, Window of Opportunity: Preserving Affordable Rental Housing. The initiative’s immediate goal is to help large non-profit housing organisations purchase and maintain 100,000 units of existing, affordable rental housing that might otherwise deteriorate or become too expensive for low- and moderate-income households. Further objectives are to demonstrate that preservation of affordable rental housing can be cost-effective and to encourage future public and private investment in this area\n• Juvenile Justice: supports research, model programmes, policy analysis, and public education related to juvenile justice. Works to promote an effective juvenile justice system that is linked to relevant agencies, is acknowledged to play a critical role in the community, and is held accountable for public safety and the rehabilitation of young offenders\n• Mental Health: focuses on improving access to high-quality, effective mental health services by helping to move the most promising advances in research to policy and practice\n• Education: supports systemwide reform that improves student learning through better instruction and by disseminating useful information about school and system practices to multiple audiences, including policymakers, practitioners, and other funders\n• Policy Research: complements and strengthens other foundation work by helping to increase the likelihood that research and other evidence inform public policy, with a special emphasis on urban policy General Programme\nSupports public interest media, including public radio and the production of independent documentary film; and makes grants to arts and cultural institutions in the Chicago area. The foundation also makes the MacArthur Award for Creative and Effective Institutions. MacArthur Fellows\nAwards five-year, unrestricted fellowships to individuals across all ages and fields who show exceptional merit and promise of continued creative work." + } + }, + { + "id": 5242, + "name": "Joachim Herz Stiftung", + "address": "Joachim Herz Stiftung Langenhorner Chaussee 384 22419 Hamburg Germany", + "country": "Germany", + "email": "info@joachim-herz-stiftung.de", + "website": "http://joachim-herz-stiftung.de/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Joachim-Herz-Stiftung, Langenhorner Chaussee 384, 22419 Hamburg, Germany", + "lat": 53.66087, + "lng": 10.0038701, + "zoom": 14, + "place_id": "ChIJLahLJeaasUcR5X_lTj2Ge5I", + "name": "Joachim-Herz-Stiftung", + "street_number": "384", + "street_name": "Langenhorner Chaussee", + "city": "Hamburg", + "state": "Hamburg", + "state_short": "HH", + "post_code": "22419", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/joachim-herz-stiftung/", + "philea_info": { + "About": "The Joachim Herz Stiftung owes its existence to the Hamburg entrepreneur Joachim Herz, who died in May 2008, and to his wife Petra Herz. Together they made the Foundation’s significant financial outfitting possible. The assets of the Foundation are primarily invested in an entrepreneurial manner. This includes an indirect share in Beiersdorf AG held via maxingvest ag.", + "Mission": "The Foundation’s purpose is the advancement of education, science and research in the fields of business administration, economics, law, medicine, chemistry, physics and biology. Furthermore, the Foundation seeks to foster and promote educational institutions and students within the context of general primary and secondary school education. The Foundation’s purpose is also the procurement and transfer of funds for the benefit of other non-profit organisations and public entities with preferential tax status in order to achieve non-profit goals. The purpose of the Foundation also extends to those disciplines, which can objectively be regarded as belonging to the enumerated areas supra.", + "Geographic Focus": "Germany, USA", + "Programme Areas": "The Foundation’s purpose is the advancement of education, science and research in the fields of business administration, economics, law, medicine, chemistry, physics and biology. Furthermore, the Foundation seeks to foster and promote educational institutions and students within the context of general primary and secondary school education. The Foundation’s purpose is also the procurement and transfer of funds for the benefit of other nonprofit organisations and public entities with preferential tax status in order to achieve nonprofit goals. The purpose of the Foundation also extends to those disciplines, which can objectively be regarded as belonging to the enumerated areas supra. In particular, the following shall be used in order to advance the Foundation’s intended purpose:\na) the award of research grants, scholarships or other donations to qualified (prospective) students and pupils;\nb) creative and financial participation in research and teaching programs as well as scholarship programs that are awarded by qualified academic institutions (universities or similarly situated institutions);\nc) the creative and financial support for qualified educational, scientific and research institutions;\nd) establishment of conditions for scholarship programs as well as their organisation and realisation for qualified students and pupils, especially in the promotion of international exchanges,\ne) conducting competitions and awarding prizes" + } + }, + { + "id": 5241, + "name": "Jenny and Antti Wihuri Foundation", + "address": "Jenny and Antti Wihuri Foundation Arkadiankatu, 21A 14 FI-00100 Helsinki Finland", + "country": "Finland", + "email": "toimisto@wihurinrahasto.fi", + "website": "http://www.wihurinrahasto.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Arkadiankatu 21a, Helsinki, Finland", + "lat": 60.17141220000001, + "lng": 24.9259645, + "zoom": 14, + "place_id": "ChIJAQDw-jMKkkYRyy3Som8bZZ8", + "name": "Arkadiankatu 21a", + "street_number": "21a", + "street_name": "Arkadiankatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/jenny-and-antti-wihuri-foundation/", + "philea_info": { + "About": "Jenny and Antti Wihuri Foundation is a private, general purpose Finnish cultural foundation and was established in 1942 by a seacaptain, a shipowner and industrialist Antti Wihuri and his wife Jenny.", + "Mission": "The purpose of the Jenny and Antti Wihuri Foundation is to promote and support cultural and economic development in Finland. The wording is not overly specific and so a wide range of activities are possible. The Foundation fulfills its purpose by distributing grants and awards and otherwise by giving financial aid to activities, thus furthering the cultural and economic life of the country.", + "Geographic Focus": "Mainly Finland", + "Programme Areas": "The foundation fulfills its mission by through the following means:\n• Grants and awards\n• Wihuri Research Institute (http://www.wri.fi/)\n• Jenny and Antti Wihuri Foundation Art Collection – Modern Finnish Art (http://www.korundi.fi/in-english/Korundi-house-of-culture/Rovaniemi-Art-Museum )\n• Wihuri Foundation for International Prizes Grants and Awards\nDistributes grants and awards annually on Antti Wihuri’s birthday, October 9th. In 2004, 7,000,000 euros were distributed to various associations and individual scientists and artists.\nWihuri Research Institute The Wihuri Research Institute (WRI) (www.wri.fi) was founded in 1944. It works to create conditions for Finnish scientists considered to be especially talented in the fields of natural sciences, medicine or technology to devote themselves entirely to their research. The WRI has become widely known in medical circles for its work on diseases of the heart and circulatory system. Contacts with researchers overseas are extensive. Jenny and Antti Wihuri Foundation Art Collection\nSince 1957 the Foundation has assembled an important and valuable collection of Finnish art. The collection has been donated to the City of Rovaniemi (www.rovaniemi.fi) and named as the Jenny and Antti Wihuri Foundation Art Collection. It contains more than 2, 300 works of art and, guided by experts, the foundation continues to purchase the work of living Finnish artists. Wihuri Foundation for International Prizes\nEstablished in 1953 with capital donated by Antti Wihuri, the founder of the Jenny and Antti Wihuri Foundation, the foundation promotes and sustains the cultural and economic development of society through international prizes in recognition of creative work. These include the Wihuri Sibelius Prize, awarded to prominent composers who have become internationally known and acknowledged. These prizes may be awarded to private individuals or organisations regardless of nationality, religion, race or language. The foundation shares the same Board of Trustees and Executive Director as the Jenny and Antti Wihuri Foundation." + } + }, + { + "id": 5240, + "name": "Jacobs Foundation", + "address": "Jacobs Foundation Seefeldquai 17 8034 Zürich Switzerland", + "country": "", + "email": "", + "website": "https://jacobsfoundation.org/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Jacobs Foundation, Seefeldquai, Zürich, Switzerland", + "lat": 47.3597658, + "lng": 8.5479411, + "zoom": 14, + "place_id": "ChIJdxeGo1GnmkcRiO-Du-uGFU4", + "name": "Jacobs Foundation", + "street_number": "17", + "street_name": "Seefeldquai", + "city": "Zürich", + "state": "Zürich", + "state_short": "ZH", + "post_code": "8008", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/jacobs-foundation/", + "philea_info": { + "About": "The Jacobs Foundation is one of the world’s leading charitable foundations dedicated to facilitating innovations for children and youth. The Foundation was established in 1989 by Klaus J. Jacobs and his family in an effort to benefit future generations by providing young people with better opportunities for development. The Jacobs Foundation supports research and intervention of the highest quality leading to significant and vital outcomes for children and youth worldwide. The foundation promotes public dialogue by connecting people from the fields of science, policy, society and economy, creating platforms for discussion and raising awareness for the needs and opportunities to improve the living conditions of next generations. With its investment of € 200 million in the Jacobs University Bremen in Germany (2006) it set new standards in private funding in Europe’s Higher Education sector.", + "Mission": "Positive Child and Youth Developmentand create networks to bring about social changes in the area of child and youth development.", + "Geographic Focus": "Global", + "Programme Areas": "Education\nSciences & Research\nSocial/Human Services\nYouth/Children Development" + } + }, + { + "id": 5381, + "name": "International Rescue Committee", + "address": "International Rescue Committee 3 Bloomsbury Place WC1A 2QL London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.rescue.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "3 Bloomsbury Place, London WC1A 2QL, United Kingdom", + "lat": 51.5198666, + "lng": -0.1226827, + "zoom": 14, + "place_id": "ChIJqXi5BDQbdkgR8eW_ADQ4mho", + "name": "3 Bloomsbury Pl", + "street_number": "3", + "street_name": "Bloomsbury Place", + "street_name_short": "Bloomsbury Pl", + "city": "London", + "state": "England", + "post_code": "WC1A 2QA", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/international-rescue-committee/", + "philea_info": { + "About": "Since being founded in 1933, the IRC has responded when crises erupt in the world’s poorest and most remote regions. Following an emergency, the IRC deploys its emergency response team within 72 hours to assess critical survival needs and mount an effective response.", + "Mission": "The International Rescue Committee (IRC) responds to the world’s worst humanitarian crises and helps people to survive and rebuild their lives. For 80 years the IRC has offered lifesaving care and life-changing assistance to refugees forced to flee from war, persecution or natural disaster.", + "Geographic Focus": "Worldwide", + "Programme Areas": "‘- emergency response\n– health\n– safety\n– education\n– economic wellbeing\n– power\n– climate change\n– refugee crisis" + } + }, + { + "id": 5237, + "name": "International Renaissance Foundation", + "address": "International Renaissance Foundation 46 Artema Street 04053 Kiev Ukraine", + "country": "Ukraine", + "email": "irf@irf.kiev.ua", + "website": "http://www.irf.kiev.ua", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "International Fund \"Renaissance\", Artema Street, 46, Kyiv, Ukraine", + "lat": 50.45654439999999, + "lng": 30.493665, + "zoom": 14, + "place_id": "ChIJMwMydGTO1EARULC_pmQi7AQ", + "name": "International Fund \"Renaissance\"", + "street_number": "46", + "street_name": "Sichovykh Striltsiv Street", + "street_name_short": "Sichovykh Striltsiv St", + "city": "Kyiv", + "state": "Kyiv City", + "post_code": "02000", + "country": "Ukraine", + "country_short": "UA" + }, + "link": "https://philea.eu/members/international-renaissance-foundation/", + "philea_info": { + "About": "The International Renaissance Foundation was founded in 1990 as part of the Soros Foundations Network dedicated to building and maintaining the infrastructure and institutions necessary for an open society in Ukraine.", + "Mission": "To foster, both financially and organisationally, the formation of a democratic, open society in Ukraine by supporting civil initiatives that have a strong impact on civil society development.", + "Geographic Focus": "Primarily Ukraine", + "Programme Areas": "The foundation supports and operates programmes and initiatives that promote the process of national rebirth and democratic development in the following areas: – Democratic Practice\n– Human Rights and Justice\n– Public Health\n– Roma Programme Initiative\n– European programme\n– Civic Initiatives of new Ukraine Democratic Practice\nCreates effective tools to combat corruption and increase government accountability Human Rights and Justice\nSeeks to prevent human rights violations, promote effective anti-discrimination legislation and practices, and ensure disadvantaged and vulnerable groups have access to justice and legal aid Public Health\nSeeks to promote the development of a cost-effective and non-discriminatory healthcare system, transparent and rational spending of public funds, ensure equal access to essential medicines and proper treatment, including vulnerable groups Roma Programme Initiative\nSupports NGOs and activists in involving representatives of the Roma community in social processes and combating discrimination European Programme\nFocuses on raising the level of familiarisation of representatives of civil society institutions in Ukraine with European neighbourhood policy, and facilitation of information-sharing on various civic initiatives related to European integration." + } + }, + { + "id": 5235, + "name": "International Committee of the Red Cross", + "address": "International Committe of the Red Cross 19 Avenue de la paix CH 1202 Geneva Switzerland", + "country": "Switzerland", + "email": "webmaster@icrc.org", + "website": "http://www.icrc.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "International Committee of the Red Cross (ICRC), Avenue de la Paix 19, 1202 Geneva, Switzerland", + "lat": 46.2274351, + "lng": 6.1375921, + "zoom": 14, + "place_id": "ChIJnc-xwvpkjEcRcjLSGUyTJfE", + "name": "International Committee of the Red Cross (ICRC)", + "street_number": "19", + "street_name": "Avenue de la Paix", + "street_name_short": "Av. de la Paix", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1202", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/international-committee-of-the-red-cross/", + "philea_info": { + "About": "Established in 1863, the ICRC is at the origin of the Geneva Conventions and the International Red Cross and Red Crescent Movement. It directs and coordinates the international activities conducted by the Movement in armed conflicts and other situations of violence.\nMain beneficiaries of our multidisciplinary programs are: civilians, children, detainees, internally displaced people, migrants, missing persons, refugees and people with disabilities.", + "Mission": "The International Committee of the Red Cross (ICRC) is an impartial, neutral and independent organization whose exclusively humanitarian mission is to protect the lives and dignity of victims of armed conflict and other situations of violence and to provide them with assistance. The ICRC also endeavours to prevent suffering by promoting and strengthening humanitarian law and universal humanitarian principles.", + "Geographic Focus": "ICRC is present in more than 100 countries situated in Africa, the Americas, Asia and the Pacific, Europe and Central Asia as well as the Near and Middle East", + "Programme Areas": "Medical / health care and physical rehabilitation services for people with disabilities\nFostering economic security\nRestoring family links\nSecuring water and habitat\nAddressing weapon contamination\nHumanitarian forensics\nBuilding respect for humanitarian law and engaging in humanitarian diplomacy" + } + }, + { + "id": 5234, + "name": "IKEA Foundation", + "address": "IKEA Foundation Dellaertweg 9G 2316WZ Leiden Netherlands", + "country": "Netherlands", + "email": "programmes@ikeafoundation.org", + "website": "http://www.ikeafoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Dellaertweg 9g, 2316 WZ Leiden, Netherlands", + "lat": 52.1683013, + "lng": 4.4860001, + "zoom": 14, + "place_id": "EipEZWxsYWVydHdlZyA5LCAyMzE2IFhCIExlaWRlbiwgTmV0aGVybGFuZHMiUBJOCjQKMgkTIYc-6sbFRxFPU3pjx0tJQhoeCxDuwe6hARoUChIJX7vUhenGxUcRdvVaLdfuxKUMEAkqFAoSCRMhhz7qxsVHEe8HBQ8NhVWW", + "name": "Dellaertweg 9", + "street_number": "9", + "street_name": "Dellaertweg", + "city": "Leiden", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2316 XB", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/ikea-foundation/", + "philea_info": { + "About": "Founded in 1982, the IKEA Foundation (Stichting IKEA Foundation) is a charitable foundation headquartered in Leiden, the Netherlands. In the early days, the IKEA Foundation focused solely on architecture and interior design. Over the years, IKEA became active in addressing the root causes of child labour as well as endeavours with major partners to promote child rights and education. In 2009, the IKEA Foundation was able to expand its charter to include a broader mission of improving children’s opportunities, to help them ultimately take control of their own future. Today, all global IKEA social and philanthropic efforts are found together under the umbrella of the IKEA Foundation.", + "Mission": "To create substantial and lasting change by funding holistic, long-term programmes in developing countries that address children’s fundamental needs: home, health, education and a sustainable family income.", + "Geographic Focus": "Developing countries mainly", + "Programme Areas": "The foundation support long-term programmes that help turn the cycle of poverty into a circle of prosperity. The focus is on programmes that address children’s fundamental needs: A place to call home\nSupports survivors of conflicts and large natural disasters – such as the 2010 earthquake in Haiti and flooding in Pakistan – to address children’s critical needs for a safe place to call home.\nCurrent projects address:\n– Improving life and education in refugee camps\n– Reconnecting displaced families\n– Improving emergency shelters A healthy start in life\nA healthy start is fundamental for children’s development and opportunities in life. That is why the foundation place such a strong emphasis on preventive care, nutrition, and sanitation initiatives. A quality education\nThe foundation funds access to quality education with the aim of reducing a child’s vulnerability to abuse, exploitation and disease. Girls particularly are at greater risk of such abuse when they aren’t in school. Getting girls into schools and ensuring they stay and learn has therefore proven to be of tremendous importance. Through their annual Soft Toys for Education campaign, the foundation also helps fund UNICEF’s Schools for Africa programme and Save the Children’s educational projects in Asia and Eastern Europe. A sustainable family income\nWomen are the most important catalysts for change for their children. That’s why the IKEA Foundation supports programmes that help women gain knowledge about children’s rights and the importance of education – because when they do, women have the power to influence the whole community. In addition, funding programmes that give women a better chance to contribute to the family income – by learning a marketable skill or getting a micro loan to start a small business – helps ensure that children can stay in school instead of dropping out to help feed their family. Donations after natural disasters and conflicts\nAfter major natural disasters and conflicts, the foundation donates selected IKEA products to support humanitarian relief efforts. Later, it may contribute financially to projects addressing the longer-term reconstruction and rehabilitation work after disasters such as earthquakes, flooding and cyclones. This is done through our partners Save the Children, UNICEF and UNHCR based on their needs assessments. Starting in 2012, the foundation also started providing UNICEF with educational toys and stationery from IKEA for their early childhood development (ECD) kits, sent out in response to disasters. Depending on the need, over two years these kits could reach 1.2 million children, giving them a child-friendly learning environment to help them cope with life in a camp." + } + }, + { + "id": 5229, + "name": "Global Dialogue", + "address": "Global Dialogue The Foundry 17 Oval Way SE11 5RR London United Kingdom", + "country": "United Kingdom", + "email": "info@global-dialogue.org", + "website": "http://www.global-dialogue.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "The Foundry | Office Space and Conference Centre, 17 Oval Way, London SE11 5RR, United Kingdom", + "lat": 51.4858439, + "lng": -0.1163458, + "zoom": 14, + "place_id": "ChIJj2Ia2ZIEdkgRBQxKgeXWaQs", + "name": "The Foundry | Office Space and Conference Centre", + "street_number": "17", + "street_name": "Oval Way", + "city": "London", + "state": "England", + "post_code": "SE11 5RR", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/global-dialogue/", + "philea_info": { + "About": "Global Dialogue was founded by Andrew Puddephatt in 2006 with a wide-ranging brief to promote human rights around the world. Its first programme, the Strategic Fund for Turkey, enabled several private funders to support the emerging human rights movement in Turkey at a critical time of transition in the region. In 2009 Global Dialogue founded Ariadne to bring together funders and philanthropists supporting human rights\nand social change into a supportive network sharing resources and expertise. They now have eight programmes supporting funder collaboration and innovation on human rights and social change around the world, including our new closing space programme, the Funders’ Initiative for Civil Society, and a Syria Working Group, both launching in 2017.", + "Mission": "‘-Under review-", + "Geographic Focus": "United Kingdom, Middle East, Global", + "Programme Areas": "• Ariadne, the network of European funders for social change and human rights.\n• The Early Action Funders Alliance, a funder collaborative which aims to promote a vision of a society that prevents problems from occurring rather than only coping with the consequences.\n• The Funders’ Initiative for Civil Society, a funder network which aims to coordinate a global response by private philanthropy to the closing of civic space.\n• Our general grant-making, which enables funders to make grants for human rights and social change worldwide\n• IMiX, a project which aims to increase communications capacity and coordinate communications activities in the UK’s migration and integration sectors\n• Migration Exchange, a funder collaborative which aims to improve the lives of migrants and receiving communities in the UK by informing public debate on migration and creating welcoming communities.\n• The Thomas Paine Initiative, a funder collaborative which aims to increase awareness of and support for human rights in the UK.\n• The Syria Working Group, which aims to inform and enable private philanthropic support for Syria and the neighbouring countries." + } + }, + { + "id": 5228, + "name": "Gjensidigestiftelsen", + "address": "Gjensidigestiftelsen Grundingen 6, Aker Brygge 0250 Oslo Norway", + "country": "Norway", + "email": "mail@gjensidigestiftelsen.no", + "website": "http://www.gjensidigestiftelsen.no/english", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gjensidigestiftelsen, Aker Brygge, Grundingen 6, 0250 Oslo, Norway", + "lat": 59.91064249999999, + "lng": 10.7279563, + "zoom": 14, + "place_id": "ChIJ1V49AYFuQUYRYTyGzG6PQVw", + "name": "Gjensidigestiftelsen", + "street_number": "6", + "street_name": "Grundingen", + "city": "Oslo", + "state": "Oslo", + "post_code": "0250", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/gjensidigestiftelsen/", + "philea_info": { + "About": "The Gjensidigestiftelsen is the largest foundation in Norway, and combines two important roles. It is a significant financial player and the principal shareholder of Gjensidige Forsikring ASA, and it is an important contributor to various socially beneficial causes, with the focus on health and safety.\nIn June 2010 Gjensidige Forsikring became a public limited company (ASA). At the same time, the Gjensidige Foundation was converted from an ordinary foundation to a financial foundation. Up until the end of 2010 the Gjensidige Foundation owned all the shares in Gjensidige. In connection with Gjensidige’s stock market flotation on 10 December 2010, the Foundation sold some of its shares, and Gjensidige gained approximately 47,000 new shareholders. At present, the Foundation owns a little over 62 per cent of Gjensidige’s shares.\nThe Foundation’s financial objectives are to manage its long-term ownership of Gjensidige, to pass on a share dividend to Gjensidige’s non-life insurance customers, and to manage the revenue raised from the sale of shares. The Foundation’s non-profit objective is to promote health and safety through charitable donations. Such donations are made in accordance with the Foundation’s fundamental values, which are : “Preventive – Developing – Activity creating – Society building”.\nFrom its establishment in October 2007 up until 2015, the Foundation has distributed over NOK 1.4 billion to more than 5.200 projects that promote health and safety initiatives.", + "Mission": "Through its programme of donations the Foundation aims to promote safety, health and other worthy causes falling under the scope of its core values: preventive, developing, activity-creating and society-building.", + "Geographic Focus": "Norway", + "Programme Areas": "The 5 Priorities Areas of the foundation are the following:\n– Safety\n– Learning & Sharing\n– Social inclusion and diversity\n– Physical activity\n– Diet Safety\nThe foundation supports projects that contribute to minimize the potential for damage in accidents. The foundation looks for all kinds of preventive activities for children and youth, for example, training in traffic safety. Furthermore, it supports measures to strengthen the voluntary preparedness efforts, as well as measures to strengthen the population first aid and lifesaving skills. Learning & Sharing\nThe foundation supports projects that create good social networks and meeting places, and that contribute to master challenges in everyday life. Furthermore, it supports projects that contribute to gain a more complete secondary education. It also supports projects that contribute to the recruitment of youth leadership and volunteers. Social inclusion and diversity\nThe foundation supports projects that contribute to include groups that do not participate on an equal basis as others. The same applies to projects which help bringing generations together. The foundation also looks for projects that strengthen children’s and young people’s ability to resolve conflicts by peaceful means and measures to prevent violence and insecurity. Physical activity\nThe foundation supports projects that contribute to be more physically active. Examples include the construction and adaptation of facilities and areas for different physical activities like sports and outdoor activities and sport equipment. The objective is that these measures should include as many as possible, especially those who lack an offer. The foundation prioritizes projects targeting the community, including new groups, and that are open and accessible and encourage innovation and partnership. Diet\nThe foundation supports projects that stimulate people to choose a healthy diet. Examples of projects that can get support are measures that promote good dietary habits through knowledge dissemination and trainings, in particularly targeting children and young people." + } + }, + { + "id": 5227, + "name": "German Marshall Fund of the United States, The", + "address": "The German Marshall Fund of the United States 1744 R Street, NW 20009 Washington, DC United States", + "country": "United States", + "email": "", + "website": "http://www.gmfus.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "The German Marshall Fund of the United States, 1744 R Street Northwest, Washington, DC 20009, United States", + "lat": 38.9124205, + "lng": -77.0402714, + "zoom": 14, + "place_id": "ChIJc3tDMsS3t4kRn7RO_AoyGbw", + "name": "The German Marshall Fund of the United States", + "street_number": "1744", + "street_name": "R Street Northwest", + "street_name_short": "R St NW", + "city": "Washington", + "state": "District of Columbia", + "state_short": "DC", + "post_code": "20009", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/german-marshall-fund-of-the-united-states-the/", + "philea_info": { + "About": "The German Marshall Fund of the United States (GMF) is an American public policy and grantmaking institution dedicated to promoting greater cooperation and understanding between the US and Europe. Founded in 1972 through a gift from Germany as a permanent memorial to Marshall Plan assistance, GMF maintains a strong presence on both sides of the Atlantic. In addition to its headquarters in Washington DC, GMF has six offices in Europe: Berlin, Paris, Brussels, Belgrade, Ankara, and Bucharest. GMF also has smaller representations in Bratislava, Turin, and Stockholm.", + "Mission": "GMF strives to champion democratic values and the transatlantic alliance by strengthening civil society, forging bold and innovative policy ideas, and developing a new generation of leaders to tackle global challenges. GMF delivers hope by upholding the dignity of the individual and defending freedom in the spirit of the Marshall Plan.", + "Geographic Focus": "Balkans, the Black Sea region, Central and Eastern Europe, Belarus and Ukraine.", + "Programme Areas": "GMF’s areas of expertise are strengthening and innovating transatlantic cooperation in a shifting global context, while supporting democratic resilience. GMF’s key strength lies in its ability to foster transatlantic dialogue and cooperation. By bringing together policymakers, business leaders, and civil society from both sides of the Atlantic, GMF helps address global challenges through collaborative solutions. Our work in promoting democracy, security, and innovation contributes significantly to the stability and prosperity of the transatlantic community. With offices in Washington, D.C., Berlin, Brussels, Ankara, Belgrade, Bucharest, Paris, and Warsaw, GMF has a broad geographic presence and influence." + } + }, + { + "id": 5226, + "name": "Gerda Henkel Stiftung", + "address": "Gerda Henkel Stiftung Malkastenstrasse 15 40211 Dusseldorf Germany", + "country": "Germany", + "email": "info@gerda-henkel-stiftung.de", + "website": "http://www.gerda-henkel-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gerda Henkel Stiftung, Malkastenstraße 15, 40211 Düsseldorf, Germany", + "lat": 51.2306679, + "lng": 6.788907200000001, + "zoom": 14, + "place_id": "ChIJ9ZOpRCbKuEcRtgW0xqj1p9s", + "name": "Gerda Henkel Stiftung", + "street_number": "15", + "street_name": "Malkastenstraße", + "city": "Düsseldorf", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "40211", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/gerda-henkel-stiftung/", + "philea_info": { + "About": "Gerda Henkel Stiftung was established in June 1976 by Lisa Maskell in memory of her mother, Gerda Henkel.", + "Mission": "To foster research in the historical humanities, focusing on the support of academic projects and PhD fellowships, primarily in the fields of history, art history, archaeology and history of Islam.", + "Geographic Focus": "Germany and international", + "Programme Areas": "The Foundation promotes research projects in the historical sciences, mainly in the following fields:\n• Archaeology\n• History\n• Art History\n• Prehistory and Early History\n• History of Islam\n• Legal History\n• History of Science. The advancement of young scholars is a special interest of the Foundation. For a number of years, the Foundation has also increasingly addressed issues of great relevance to contemporary life and the future, above all as part of its special programmes “Islam, the Modern Nation State and Transnational Movements” and “Security, Society and the State”. As part of the Lisa Maskell Fellowships, since 2014 the Foundation has been supporting young scholars in the humanities in both Africa and Southeast Asia. Starting in 2015, the Foundation has with its “Patrimonies” funding initiative focused more strongly on the preservation of cultural heritage, specifically in regions experiencing crisis." + } + }, + { + "id": 5225, + "name": "Genio", + "address": "Genio Trust Westland Square 19-21 Pearse Street D02 YH27 Dublin 2 Ireland", + "country": "Ireland", + "email": "info@genio.ie", + "website": "http://www.genio.ie", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Westland Square, Pearse Street, Dublin 2, Ireland", + "lat": 53.3443049, + "lng": -6.2474485, + "zoom": 14, + "place_id": "ChIJIwvWjpEOZ0gRop0AhQYcs1Q", + "name": "Westland Square", + "street_name": "Pearse Street", + "street_name_short": "Pearse St", + "city": "Dublin 2", + "state": "County Dublin", + "state_short": "D", + "country": "Ireland", + "country_short": "IE" + }, + "link": "https://philea.eu/members/genio/", + "philea_info": { + "About": "Genio works to bring Government and philanthropic funders together to develop better ways to support disadvantaged people to live full lives in their communities. So far they are working to improve the lives of people with disabilities, mental health difficulties and dementia. In June 2010, the Genio Trust was established by Genio as a registered charity to facilitate the building and distribution of funds to support socially innovative projects targeting those at risk of social exclusion. Projects supported by the Genio Trust are performance-managed and must fulfil criteria agreed with funders including cost-effectiveness and sustainability beyond an initial investment period. In parallel with the innovation funding Genio provides support and training for key stakeholders to manage and implement required changes; and undertakes and commissions research to measure impact. Since 2010, they have awarded funding to 226 projects in Ireland to provide over 5,500 people with individualised supports in the community. In addition over 9,000 families, carers and staff have attended information and training events through the projects they support.", + "Mission": "To increase opportunities for people who are marginalised to live purposeful and productive lives in their communities.", + "Programme Areas": "Disability, mental health and dementia. It is likely that the Genio Trust will be funding other areas in the future e.g. the children’s area." + } + }, + { + "id": 5222, + "name": "Fundación Ramón Areces", + "address": "Fundación Ramón Areces Calle Vitruvio, 5 28006 Madrid Spain", + "country": "Spain", + "email": "secretaria@fundacionareces.es", + "website": "http://www.fundacionareces.es", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación Ramón Areces, Calle Vitruvio, 5, 28006 Madrid, Spain", + "lat": 40.4431182, + "lng": -3.6889176, + "zoom": 14, + "place_id": "ChIJOeD_Qe8oQg0R5K_qvAR32ME", + "name": "Ramón Areces Foundation", + "street_number": "5", + "street_name": "Calle de Vitruvio", + "street_name_short": "C. de Vitruvio", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28006", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-ramon-areces/", + "philea_info": { + "About": "Fundación Ramón Areces is a non-profit organisation whose main objective is to stimulate and support scientific and technical research in Spain, and to promote education and culture. It was constituted by Ramón Areces Rodrígues in 1976. It was classified as a private cultural foundation under the auspices of the Ministry of Education.", + "Mission": "To promote and develop scientific and technical research, as well as education and culture.", + "Geographic Focus": "Spain and Portugal", + "Programme Areas": "The foundation works in three specific areas: • Life and Material Sciences\n• Social Sciences\n• Humanities" + } + }, + { + "id": 5221, + "name": "Fundación Princesa de Girona", + "address": "Fundación Princesa de Girona C. Juli Garreta, 1, 1r E 17002 Girona Spain", + "country": "Spain", + "email": "info@fpdgi.org", + "website": "https://en.fpdgi.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundació Princesa de Girona, Carrer Juli Garreta, 1, 1r E, 17002 Girona, Spain", + "lat": 41.9797082, + "lng": 2.8195976, + "zoom": 14, + "place_id": "ChIJRSrtZcrmuhIR1KZjv8tfY4s", + "name": "Fundació Princesa de Girona", + "street_number": "1", + "street_name": "Carrer Juli Garreta", + "city": "Gerona", + "state": "Cataluña", + "state_short": "CT", + "post_code": "17002", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-princesa-de-girona/", + "philea_info": { + "About": "The Princess of Girona Foundation is a private foundation set up by civil society entities in Girona in 2009 and backed by 88 distinguished trustees. The Honorary Chairman is His Majesty Kind Felipe VI of Spain, on behalf of his daughter Princess Leonor.", + "Mission": "The Foundation’s mission is to support the education, initiative and development of young people as a way of empowering new generations to build a better and more caring society.", + "Geographic Focus": "Spain", + "Programme Areas": "The FPdGi focuses its activity on three areas:\n– FPdGi Awards: the awards seek to recognise the career of young people between 16 and 35 years old in any part of the world who stand out for their work, their merits and their exemplarity.\n– Educating entrepreneurial talent: this programme aims to raise awareness, promote and guide entrepreneurial education as a key aspect for young people’s future.\n– Talent rescuers: this programme promotes the employability of young people between 20 and 30." + } + }, + { + "id": 5220, + "name": "Fundación Princesa de Asturias", + "address": "Fundación Princesa de Asturias General Yagüe 2, 1° 33004 Oviedo Spain", + "country": "Spain", + "email": "info@fpa.es", + "website": "http://www.fpa.es", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Princess of Asturias Foundation, General Yagüe, Oviedo, Spain", + "lat": 43.3628135, + "lng": -5.8532017, + "zoom": 14, + "place_id": "ChIJ25ExJeOMNg0RUcoNBo3_PiA", + "name": "Princess of Asturias Foundation", + "street_number": "2", + "street_name": "General Yagüe", + "city": "Oviedo", + "state": "Principado de Asturias", + "state_short": "AS", + "post_code": "33004", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-princesa-de-asturias/", + "philea_info": { + "About": "The Prince of Asturias Foundation is a Spanish non-profit organisation founded in the city of Oviedo on 24th September 1980 at a formal ceremony presided over by His Royal Highness the Prince of Asturias, heir to the throne of Spain, who was accompanied by his parents, their Majesties the King and Queen of Spain.\nFollowing the proclamation of HM King Felipe VI and the succession of HRH Princess Leonor de Borbón y Ortiz, Heir to the Crown of Spain, to the title of Prince or Princess of Asturias, the Prince of Asturias Foundation and Awards will now be respectively called the Princess of Asturias Foundation and the Princess of Asturias Awards.", + "Mission": "To consolidate links between the Principality and the Prince of Asturias, and to contribute to encouraging and promoting scientific, cultural and humanistic values that form part of mankind’s universal heritage.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The Prince of Asturias Awards were initiated in 1981, and are divided into eight categories: • Arts\n• Social Sciences\n• Communication and Humanities\n• International Cooperation\n• Technical and Scientific Research\n• Literature\n• Sport\n• Concord The Awards are presented at a formal ceremony held each year at the Campoamor Theatre in Oviedo. Each of the eight international recipients are awarded 50,000 euros, a specially commissioned Joan Miró sculpture, a diploma and an insignia." + } + }, + { + "id": 5219, + "name": "Fundación ONCE", + "address": "Fundación ONCE C/ Sebastián Herrera 15 28012 Madrid Spain", + "country": "Spain", + "email": "dae@fundaciononce.es", + "website": "http://www.fundaciononce.es", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación ONCE, Calle de Sebastián Herrera, 15, 28012 Madrid, Spain", + "lat": 40.4040145, + "lng": -3.6994322, + "zoom": 14, + "place_id": "ChIJcSbqcy0mQg0R9k83WEfJnP4", + "name": "Fundación ONCE", + "street_number": "15", + "street_name": "Calle de Sebastián Herrera", + "street_name_short": "C. de Sebastián Herrera", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28012", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-once/", + "philea_info": { + "About": "Fundación ONCE was formed from the Organización Nacional de Ciegos de España ONCE (the Spanish National Organisation for the Blind), which was set up in 1938 to provide support for blind people in Spain. In 1988, ONCE decided to set up a foundation which was publicly presented as an instrument for cooperation and social responsibility, by which blind people pledged their support for other groups of people with disabilities, with the aim of improving their quality of life.", + "Mission": "The main objective of Fundación ONCE is to carry out job-training integration and employment programs for persons with disabilities, and global accessibility, promoting the creation of environments, products and services that are globally accessible.", + "Geographic Focus": "Spain and Europe", + "Programme Areas": "The foundation works to establish agreements and general frameworks for agreements with public and private institutions to benefit disabled people, assisting their personal development, integration into society and employment. It supports general welfare activities which support these objectives in the following areas: – Employment and Training\n– Universal accessibility\n– International Area\n– Regulatory Impulse and other Initiatives\n– University and Disability Employment and Training\nThe main objective of Fundación ONCE, bearing social reality in mind as well as the specific needs of persons with disabilities in Spain, entails job promotion for these persons, as an intermediate step that is essential for their complete social integration. In order to effectively fulfil this goal, Fundación ONCE invests each year at least 60% of its budget to the Training and Employment Plan Universal accessibility\nThe mission of the Directorate for Universal Accessibility is to promote the Design for All and achieve universal accessibility as an essential condition for equal opportunities of persons with disabilities. The directorate organizes its management structure into three areas: accessibility of physical resources, culture and leisure (sports and tourism) and new technologies. International Area\nGuided by its commitment to improve quality of life of persons with disabilities and its facilities, the foundation follows closely the trends in Europe with regards to this group, both in the scope of European Institutions and any forums were work is carried out to defend the interests of the 50 million European citizens with disabilities. Regulatory Impulse and other Initiatives\nThe foundation commits to support the adoption of any regulatory initiatives that benefit them and their families. University and Disability\nFundación ONCE has developed a University and Disability Strategy in order to work with the Spanish University System in fulfilling current legislation, as well as to promote actions that encourage the involvement of persons with disabilities at Universities." + } + }, + { + "id": 5218, + "name": "Fundación María Cristina Masaveu Peterson", + "address": "Fundacion Maria Cristina Masaveu Peterson Alcalá Galiano 6 28010 Madrid Spain", + "country": "Spain", + "email": "secretaria@fundacioncristinamasaveu.com", + "website": "http://www.fundacioncristinamasaveu.com/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación María Cristina Masaveu Peterson, Calle Alcalá Galiano, 6, 28010 Madrid, Spain", + "lat": 40.426676, + "lng": -3.691599, + "zoom": 14, + "place_id": "ChIJJcrHx5EoQg0RXTX908LZ5e8", + "name": "Fundación María Cristina Masaveu Peterson", + "street_number": "6", + "street_name": "Calle Alcalá Galiano", + "street_name_short": "C. Alcalá Galiano", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28010", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-maria-cristina-masaveu-peterson/", + "philea_info": { + "About": "The founder is María Cristina Masaveu Peterson was born in Oviedo on 17 April 1937. She was a woman open to modernity, with a liberal spirit, cultured and sensitive, generous and committed to a great number of social causes, with acute emotional intelligence and deep convictions, she lived her life with the utmost discretion, simplicity and closeness to others. As a businesswoman and philanthropist, she engaged in important charitable work throughout her life.\nAs a result of her experiences and emotions, the Foundation that she created on 5 May 2006, which bears her name, is a testament to her life and her commitment to the Principality of Asturias, Spain and society in general. She died in Oviedo on 14 November 2006.", + "Mission": "To promote culture, training and research in Spain and to contribute to a better society in all aspects.", + "Geographic Focus": "Spain and Spanish cultural, research and education programmes around the world", + "Programme Areas": "The objectives of the Foundation are:\n– Promotion, dissemination, conservation and restoration of the Spanish Historical Heritage, of Music and Art in general\n– Training of young workers, looking after their integral, human and professional learning\n– Scientific research, paying special attention to the technological development of the cement manufacturing industry and its subsequent applications\n– Programs of scholarships and grants ”Becas de Excelencia Académica”, training scholarship and music programs\n– Artistic scholarships and music programs\n– Exhibition of art, photo and programs of loans of works from Masaveu Collection\n– Support to projects of research scientist and oncology\n– Program of scholarships for the accommodation of students in the United States\n– Publications of books of art and cultural exhibitions" + } + }, + { + "id": 5217, + "name": "IE Foundation", + "address": "Calle Maria de Molina, 11-13-15, 28006 Madrid, España", + "country": "Spain", + "email": "iefoundation@ie.edu", + "website": "https://www.ie.edu/ie-foundation/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Calle de María de Molina, 11-13-15, 28006 Madrid, España", + "lat": 40.4375247, + "lng": -3.6894636, + "zoom": 14, + "place_id": "ChIJVVVlOOwoQg0RnhDE1RKpXl0", + "name": "Calle de María de Molina, 11-13-15", + "street_number": "11-13-15", + "street_name": "Calle de María de Molina", + "city": "Madrid", + "state": "Comunidad de Madrid", + "state_short": "MD", + "post_code": "28006", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/ie-foundation/", + "philea_info": { + "About": "IE Foundation is a non-profit organization founded in 1997, dedicated to promoting the strategic values of IE University through projects and resources primarily dedicated to providing scholarships for talented individuals, funding world-class research that broadens our collective knowledge, and sponsoring initiatives with a positive social impact. In the more than twenty years since its creation, the Foundation has worked to carry out this purpose and expand its work to new areas. Geographically speaking, it now operates throughout Europe, North and South America, the Middle East, Northern Africa and Southeast Asia.", + "Geographic Focus": "Primarily Spain, but is also present in and focused on North and South America, South East Asia, the Middle East, North Africa and Europe", + "Programme Areas": "IE Foundation contributes to social development for a better tomorrow through three main pillars: Talent development: Access to education for outstanding talent At IE we believe that each individual deserves the opportunity to achieve his or her full potential. We work to eliminate economic barriers to education and to offer resources to projects that add value to the academic community and to society as a whole. Our efforts to empower talent focus on three main areas: Scholarship programs: We offer financial support to talented students in every stage of their IE educational experience, from their undergraduate studies, to their masters, doctorates and research initiatives.\nIE Foundation Fellows: We draw the best candidates to join the program from a large pool of talented and highly qualified aspirants worldwide to form a community of past and present scholarship recipients.\nIE for Life: We support the success and ongoing talent development of the IE Alumni Community through a set of resources designed to accompany them at every stage of their professional journey. Collaborative knowledge generation: Finding solutions to the social, technological and economic issues we face today In order to promote change and innovation, it is necessary to support cutting-edge research and initiatives that use new strategies in critical thinking. The Foundation’s think tanks, centers for excellence, observatories and chairs work to provide innovative solutions to the challenges faced by the business world and society as a whole. Impact initiatives: Promoting IE values The IE Foundation is more than a source of financial aid for students and research initiatives. We are committed to fomenting the success of all members of the community, promoting social change, and reinforcing our values of inclusion, innovation and an entrepreneurial spirit. In order to achieve this goal, we support a wide range of social action programs, cultural celebrations and entrepreneurial initiatives." + } + }, + { + "id": 5216, + "name": "Fundación Barrié", + "address": "Fundación Barrié Cantón Grande, 9 15003 A Coruña Spain", + "country": "Spain", + "email": "info@fbarrie.org", + "website": "http://www.fundacionbarrie.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fundación Barrié, Rúa Cantón Grande, 9, 15003 A Coruña, Spain", + "lat": 43.36801620000001, + "lng": -8.403474800000001, + "zoom": 14, + "place_id": "ChIJ_Vr12318Lg0R3jcNUA9hatk", + "name": "Fundación Barrié", + "street_number": "9", + "street_name": "Rúa Cantón Grande", + "city": "A Coruña", + "state": "Galicia", + "state_short": "GA", + "post_code": "15003", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/fundacion-barrie/", + "philea_info": { + "About": "Pedro Barrié de la Maza, Count of Fenosa, created the foundation in 1966, declaring it his universal heir. Banker, businessman and promoter of outstanding initiatives, he dedicated his life (1888-1971) to working for the economic, social and cultural progress of Galicia, his native region. From 1971 to 2009, the foundation was presided over by the founder’s widow, Carmela Arias y Díaz de Rábago, Countess of Fenosa. Since her demise in 2009, José María Arias Mosquera, the president of Banco Pastor, is directing the foundation.", + "Mission": "To foster the sustainable development of Galicia, with particular emphasis on human capital investments.", + "Geographic Focus": "Galicia, Spain", + "Programme Areas": "The foundation is active in the following areas: • Heritage and culture\n• Education and research\n• Social work Heritage and Culture\nThe foundation runs projects to conserve the heritage of Galicia and increase its appreciation, among them the outstanding programmes carried out in the Cathedral of Santiago de Compostela. It also organises free exhibitions, concerts and seminars, attracting around 100,000 people per year. These cultural programmes also include a temporary exhibitions programme, designed for broad public appeal, in the fields of fine arts, photography, architecture and design that are accompanied by intense educational and complementary activities programmes. Education and Research\nPromoting excellent research and spreading scientific results while favouring the development of a highly innovative production environment in Galicia are the objectives of the research area. It supports a broad range of research projects ranging from historical heritage research to biomedical research. The foundation also supports research institutes in other areas, such as the Pedro Barrié de la Maza Institute for Economic Studies. In the Education area, the foundation supports excellence and talent through comprehensive, high-quality education. The foundation offers different scholarship programmes, among them the scholarship programme for postgraduate studies abroad or the High School scholarships for studying one academic year in the United States. Social Work\nThe Social Work area focuses on the fight against social exclusion in Galicia in collaboration with non-profit organisations working with the elderly, drug addicts, persons with disabilities, prisoners, women and children. The foundation provides these organisations with financial assistance and training opportunities, striving for the social and/or labour insertion of the most vulnerable sections of the population." + } + }, + { + "id": 5214, + "name": "Fundação Luso-Americana para o Desenvolvimento", + "address": "Fundação Luso-Americana para o Desenvolvimento Rua do Sacramento à Lapa 21 1249-090 Lisbon Portugal", + "country": "Portugal", + "email": "fladport@flad.pt", + "website": "http://www.flad.pt", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Rua Sacramento à Lapa 21, Lisbon, Portugal", + "lat": 38.708293, + "lng": -9.162948499999999, + "zoom": 14, + "place_id": "ChIJu2jwj540GQ0RpMgVt3mWgcs", + "name": "R. Sacramento à Lapa 21", + "street_number": "21", + "street_name": "Rua Sacramento à Lapa", + "street_name_short": "R. Sacramento à Lapa", + "city": "Lisboa", + "state": "Lisboa", + "country": "Portugal", + "country_short": "PT" + }, + "link": "https://philea.eu/members/fundacao-luso-americana-para-o-desenvolvimento/", + "philea_info": { + "About": "Fundação Luso-Americana para o Desenvolvimento (FLAD) was established in 1985 following a cooperation agreement between the governments of Portugal and the US. It was established under Portuguese law as a private organisation, officially recognised as a public service institution that is financially and administratively independent, to pursue the aims of its statutes.", + "Mission": "To contribute to Portugal’s economic and social development by promoting cooperation between Portugal and the US in business, education, science, technology, environmental protection and culture.", + "Geographic Focus": "Portugal, US and Portuguese speaking countries", + "Programme Areas": "The foundation offers support in the following areas: • Education, Science and Technology\n• Culture\n• Environment\n• Functions of the State and Civil Society\n• Transatlantic Relations and European Integration\n• Cooperation with Portuguese Speaking Countries Education, Science and Technology\nSupports Portuguese centres of scientific research and training for qualified professionals. The foundation develops exchange programmes with foreign countries, particularly the US, and contributes towards the creation and development of various scientific institutes and departments. Culture\nOperates scholarship programmes in the areas of fine arts, literature, architecture and music and cooperation programmes between Portuguese and American cultural institutions. The foundation sponsors professional training for artists and managers in the field of culture, and develops a contemporary Portuguese art collection which it disseminates through exhibits and lending works of art abroad. Portuguese language and culture are promoted in the US through support given to Portuguese studies centres at American universities. Environment\nSupports public awareness programmes involving conferences, workshops and publications, and capacity building for Portuguese environmental NGOs. The foundation also supports environmental educational and research by means of cooperation agreements between Portuguese and American universities, as well as scholarships grants. The foundation supports transnational environmental networks which debate environmental issues at an international level. Functions of the State and Civil Society\nPromotes modernisation and efficiency in public administration, focusing on innovative management practices and new information technologies, in addition to improving intervention systems in the public sector. The foundation implements policies of urban improvement and territorial administration and raises public and institutional awareness of these problems. Transatlantic Relations and European Integration\nCollaborates with Portuguese and American universities and think tanks in a number of studies on relations between the United States and Europe, and issues involving the enlargement of the European Union. Cooperation with Portuguese Speaking Countries\nThroughout its history, the foundation has developed and promoted a vast number of initiatives to spark cooperation among Portuguese-speaking countries. In most instances, Lusophone Africa has been the main target of FLAD’s attention." + } + }, + { + "id": 5213, + "name": "Fundação Calouste Gulbenkian", + "address": "Fundação Calouste Gulbenkian Avenida de Berna 45ª 1067-001 Lisbon Portugal", + "country": "Portugal", + "email": "info@gulbenkian.pt", + "website": "http://www.gulbenkian.pt", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Avenida de Berna 45 A, Lisbon, Portugal", + "lat": 38.7373239, + "lng": -9.1544367, + "zoom": 14, + "place_id": "ChIJky4ozw0zGQ0RNNlnB1Kvuo8", + "name": "Av. de Berna 45 A", + "street_number": "45 A", + "street_name": "Avenida de Berna", + "street_name_short": "Av. de Berna", + "city": "Lisboa", + "state": "Lisboa", + "post_code": "1050-078", + "country": "Portugal", + "country_short": "PT" + }, + "link": "https://philea.eu/members/fundacao-calouste-gulbenkian/", + "philea_info": { + "About": "Established in 1956 as a Portuguese foundation for the whole of humanity, the Gulbenkian Foundation was bequeathed by the last will and testament of Calouste Sarkis Gulbenkian. The foundation is of perpetual duration and undertakes its activities structured around its headquarters in Lisbon (Portugal) and its delegations in Paris (France) and London (UK).", + "Mission": "The foundation is a perpetual institution of Portuguese nationality with charitable, artistic, educational and scientific statutory aims. It is committed to full independence and preservation of its heritage, and its main priority is defined as the development of a society that provides equal opportunities and that is sustainable.", + "Geographic Focus": "Portugal, Europe, Portuguese-speaking African countries, East Timor, worldwide Armenian communities, and international", + "Programme Areas": "Aligned with a national, European and global agenda, the foundation engages in a transversal approach spanning three activity areas: – Art and Culture\n– Social Development and Sustainability\n– Science, Education and Health Art and Culture\nIn addition to the permanent Collections of the Museums – Calouste Gulbenkian Museum and CAM (Modern Art Centre) –, the Art Library and Archives, the performances featuring in the Gulbenkian Music season and in which the Gulbenkian Orchestra and Choir always play a central role, the foundation also carries out a diverse range of other activities interconnected with the Arts: temporary exhibitions, conferences, awarding of grants and scholarships, training programmes, the Gulbenkian Prize for Heritage (renovation and restoration), publishing studies and running educational activities represent some of the foundation’s initiatives ongoing in this field. Social Development and Sustainability\nAwarded annually, the Gulbenkian Prize for Humanity, to the tune of 1 million euros, aims to recognise people, groups of people and/or organisations from all over the world whose contributions to mitigation and adaptation to climate change stand out for its novelty, innovation and impact. At the national level, the Gulbenkian Foundation provides incentives and facilitates the inclusion of vulnerable groups (the elderly, at-risk children and young persons, migrants and refugees) through the empowerment of people and organisations, promoting and experimenting with innovative solutions, through valuing the role of the arts as a means to promote change and social transformation, through promoting a transition to a more sustainable production and consumption (climate change, oceans, circular economy) as well as testing new financial models for social and environmental solutions.\nAt the international level, the foundation promotes and contributes to the preservation of Armenian culture and language and, especially in the PALOPs – the Portuguese Language Speaking Countries in Africa and East Timor, strengthens the capacities of people and institutions in key areas of social and economic development. Science, Education and Health\nScience, Education and Health have been core areas of activity for the last few decades and today the Gulbenkian Foundation strives to increase access to quality health care and improve the efficiency of health services (through implementation of science and behavioural change techniques), to develop and support projects that reinforce education and learning (in children, young persons and adults). In science, the foundation promotes world-class biological and biomedical scientific research, postgraduate and doctoral trainings and strengthens a science-society relationship. The Gulbenkian Foundation also invests in prospective analysis and discussion of the main issues concerning the future of Portugal, Europe and globally, and increasing the number of people capable of fostering adaptation and change." + } + }, + { + "id": 5211, + "name": "Fritt Ord Foundation", + "address": "Fritt Ord Foundation Uranienborgveien 2 0258 Oslo Norway", + "country": "Norway", + "email": "post@frittord.no", + "website": "http://www.frittord.no/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fritt Ord, Uranienborgveien 2, 0258 Oslo, Norway", + "lat": 59.9199598, + "lng": 10.7264898, + "zoom": 14, + "place_id": "ChIJveWuq3huQUYRTOGkJjmrBaA", + "name": "Fritt Ord", + "street_number": "2", + "street_name": "Uranienborgveien", + "city": "Oslo", + "state": "Oslo", + "post_code": "0258", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/fritt-ord-foundation/", + "philea_info": { + "About": "The Fritt Ord Foundation was established in 1974 by Narvesens Kioskkompani, a family owned company, to secure an independent distribution of the printed word.", + "Mission": "To protect and promote the freedom of expression, and the environment for the freedom of expression in Norway; to support other aspects of Norwegian Culture, primarily those dealing with free speech; and, in special cases, to promote the freedom of expression in other countries.", + "Geographic Focus": "Norway and Europe", + "Programme Areas": "The foundation manages funds for projects within the areas of : • Media and Democracy\n• Information and Public Debate\n• Grants and Training\n• Art and Culture Media and Democracy\nPromotes freedom of expression, and knowledge about media trends and their social consequences. The foundation also supports diverse programme production and alternative modes of organisation as means of enriching the cultural environment. Information and Public Debate\nPromotes access to books, documentary films, lectures, seminars and conferences as means of determining the level of knowledge in society-at-large and at the same time providing fora for lively debates. The foundation operates three prizes on the theme of freedom of expression: • The Freedom of Expression Prize is awarded to individuals or institutions engaged in activities deemed especially worthwhile within the foundation’s key interests\n• The Freedom of Expression Tribute is awarded to individuals in acknowledgement of efforts made to promote free speech, often in connection with current affairs\n• The Freedom of Expression Foundation’s Press Prize for Russia and Eastern Europe: The Fritt Ord Foundation, and the ZEIT Foundation cooperate to award press prizes to journalists and media in Russia and Eastern Europe. The press prizes are intended to support the independent role of journalists, despite reprisals and financial difficulties, to encourage them not to be intimidated by censorship and to resist self-censorship. Grants and Training\nSupports young people taking part in social debate and gaining awareness of the importance of freedom of expression. The foundation offers grants to students at colleges and universities who question issues related to freedom of expression, human rights and democracy building, and supports initiatives which promote social awareness and the exchange of ideas. Art and Culture\nSupports catalogues, initiatives for exchanging opinions and cross-cultural dialogue in connection with artistic expressions and debate on cultural policy. As part of its promotion of the freedom of expression, the foundation operates a youth writing competition inviting young people between the ages of 12 and 20 to explore the constraints that have been put on the media and arts throughout history." + } + }, + { + "id": 5210, + "name": "Freudenberg Stiftung GmbH", + "address": "Freudenberg Stiftung GmbH Freudenberg Straße 2 69469 Weinheim Germany", + "country": "Germany", + "email": "info@freudenbergstiftung.de", + "website": "http://www.freudenbergstiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Freudenberg Stiftung GmbH, Freudenbergstraße 2, 69469 Weinheim, Germany", + "lat": 49.54678930000001, + "lng": 8.6686229, + "zoom": 14, + "place_id": "ChIJq-Y4QDzbl0cRBks74TPq6jQ", + "name": "Freudenberg Stiftung", + "street_number": "2", + "street_name": "Freudenbergstraße", + "city": "Weinheim", + "state": "Baden-Württemberg", + "state_short": "BW", + "post_code": "69469", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/freudenberg-stiftung-gmbh/", + "philea_info": { + "About": "The Freudenberg Foundation was established in 1984 by members of the Freudenberg family who bequeathed to the foundation a part of their holdings in the Freudenberg Company, which is owned exclusively by family members.", + "Mission": "To promote science, education, humanities and peaceful co-existence in society.", + "Geographic Focus": "Germany, Israel, Hungary, South-East Europe, Bulgaria and Romania", + "Programme Areas": "The Freudenberg Stiftung regards itself as an operating foundation which draws up, implements, develops, and disseminates projects of its own. Its work and grantmaking focus on the following areas: • Integrative society\n• Youth between school and working life\n• Democratic culture\n• Work for mentally ill persons Integrative Society\nSupports the integration of children and young people from immigrant families. Projects are designed in such a way that the families as a whole are assisted and that, in particular, the parents become active and participate over an extended period of time. The aim is to help children and young people with an immigrant background completely develop their potential in the course of their education. Secondly, projects work towards systematically including the special qualifications of immigrants at school, jobs, in the community and media, so that the strengths of a culturally heterogeneous society become more visible and usable. Thirdly, the foundation aims to strengthen the integrative power of communities and local civil society through model projects in city districts, so that children and young people from immigrant families will experience a sense of belonging, recognition and hope for the future at their places of learning and living. Youth Between School and Working Life\nThe foundation is active in the area of vocational training and vocational integration of underprivileged young persons. The foundation supports projects that improve vocational orientation and counseling at school, teach young people how they can take more initiative and have more entrepreneurial spirit, expand job opportunities for young people and encourage local authorities and civil society to take more, also joint, responsibility, so that young people can find the most suitable schooling and vocational training. Democratic Culture\nThis program area involves two aspects: on the one hand, it is concerned with response strategies whenever democratic culture is threatened, e.g. by right-wing extremism or religious extremism; on the other hand, it focuses on having children learn democratic culture in kindergarten, school and their general surroundings. The foundation initiates and supports initiatives that aim to strengthen democracy as a form of life and help develop the skills necessary for this, be it in kindergarten, school or the community. Work for Mentally Ill Persons\nSupports the reintegration of mentally ill persons into the labour market and promotes model examples of jobs where mentally ill people can earn additional income. A prize is awarded for trend-setting business ideas and company organisation models every year. A special characteristic of the Freudenberg Foundation is that it provides support to the selected towns over an extended period of time." + } + }, + { + "id": 5113, + "name": "French Foundation Centre", + "address": "Centre Français des Fonds et Fondations 34bis, Rue Vignon (3e étage) 75009 Paris France", + "country": "France", + "email": "info@centre-francais-fondations.org", + "website": "http://www.centre-francais-fondations.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "French Center Funds and Foundations, Rue Vignon, Paris, France", + "lat": 48.87247439999999, + "lng": 2.3267006, + "zoom": 14, + "place_id": "ChIJA4HSZDRu5kcR3H-xSIWTGUk", + "name": "French Center Funds and Foundations", + "street_number": "34 bis", + "street_name": "Rue Vignon", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75009", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/french-foundation-centre/", + "philea_info": { + "About": "First initiated in 2002, the French Foundation Centre (Centre Français des Fonds et Fondations) is an association of french funds and foundations, dedicated to promoting the development of foundations in France and to enhancing their local, national and international representation by improving the knowledge of their status and action and supporting their developing projects.", + "Mission": "Through its services the French Foundation Centre provides a framework, in which endowment funds and foundations can learn from each other’s experiences, explore matters of common concern and achieve good practice in grant-making, evaluation, accounting, innovation, governance, human resources, communications, investment policy, transparency, accountability, new trends of philanthropy, social entrepreneurship, venture philanthropy or impact." + } + }, + { + "id": 5209, + "name": "Foundation for Polish Science", + "address": "Foundation for Polish Science Ignacego Krasickiego 20/22 02-611 Warsaw Poland", + "country": "Poland", + "email": "fnp@fnp.org.pl", + "website": "http://www.fnp.org.pl/en/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Foundation for Polish Science, Ignacego Krasickiego 20/22, 02-611 Warsaw, Poland", + "lat": 52.1932676, + "lng": 21.02082279999999, + "zoom": 14, + "place_id": "ChIJIXitbyvNHkcRiWmzoAGXue4", + "name": "Foundation for Polish Science", + "street_number": "20/22", + "street_name": "Ignacego Krasickiego", + "city": "Warszawa", + "state": "Mazowieckie", + "post_code": "02-611", + "country": "Poland", + "country_short": "PL" + }, + "link": "https://philea.eu/members/foundation-for-polish-science/", + "philea_info": { + "About": "The Foundation for Polish Science (FNP), formed in 1991, is an independent, self-financing, non-profit, non-governmental organisation, with a mission of supporting science in Poland. It is the largest source of science funding in Poland outside the state budget.", + "Mission": "Supporting only the best so that they can become even better.", + "Geographic Focus": "Poland", + "Programme Areas": "The foundation runs its own programmes and scholarships as well as several on behalf of the European Commission: • The FNP Prize\n• The Copernicus Award\n• Grants and Scholarships\n• Facilitating Technology Transfer\n• Publishing projects and conferences\n• Other initiatives\n• Programmes financed from the European Funds The FNP Prize\nSince 1992, the Foundation for Polish Science has awarded individual prizes to scientists each year for particular achievements and discoveries which have made a significant contribution to spiritual life and progress of civilization in our country and provided Poland with a place in world science. The prize may be awarded for individual achievements which have been attained or confirmed within a period of four years preceding the date of submission of candidacy. The Copernicus Award\nThe purpose of the award is to give a distinction to the individuals most active in Polish-German scientific cooperation who have made exceptional research achievements as a result of that cooperation and who have attained significant successes in promoting young research personnel. Grants and Scholarships\nThe foundation runs the following grant and scholarship programmes:\n• MISTRZ Programme: academic grants for professors\n• International PhD Projects Programme (MPD): for projects implemented during doctoral studies within the international cooperation of scientific institutions\n• START Programme: stipends for young researchers\n• PARENT-BRIDGE Programme: grants for parents enabling them to return to research work and supporting pregnant women conducting research\n• HOMING Plus Programme: grants for young scholars encouraging them to conduct research in Poland\n• TEAM Programme: projects carried out by students, PhD students and postdocs in the best research teams in Poland\n• KOLUMB Programme: postdoc outgoing fellowships\n• IDEAS FOR POLAND Programme: for winners of the “ERC Starting Grants” competition who intend to pursue scientific research in Poland\n• Conference Grants: grants for participation in international symposia, conferences and congresses for young researchers, whose selection procedure is run by the Warsaw Scientific Society\n• Alexander von Humboldt Polish Honorary Research Fellowships: fellowships for German scholars\n• Research Fellowships for Scholars from CEE Countries: fellowships for foreign scholars, mainly from Central and East European countries, willing to conduct research at Polish scientific institutions\n• KWERENDA Programme: grants for Archive Search Abroad Facilitating Technology Transfer\nOperates the VENTURES Programme, supporting innovative projects realised by young researchers. Publishing projects and conferences\nOperates the MONOGRAPHS Programme, supporting monographs in the areas of the humanities and the social sciences. The foundation also hosts debates on science and operates a publications programme through which various multi-volume works edited by research institutes documenting Poland’s historical, cultural and technological heritage are published. Other initiatives\nOperates the EXTERIUS Programme, providing financial support for exceptional initiatives of significant importance for science in Poland. Programmes financed from the European Funds\nRuns a number of programmes operated within the Innovative Economy Operational Programme 2007-2013." + } + }, + { + "id": 5208, + "name": "Foundation for Future Generations", + "address": "Foundation for Future Generations rue des Brasseurs, 182 5000 Namur Belgium", + "country": "Belgium", + "email": "fgf@fgf.be", + "website": "http://www.foundationfuturegenerations.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Rue des Brasseurs 182, 5000 Namur, Belgium", + "lat": 50.4623091, + "lng": 4.8615162, + "zoom": 14, + "place_id": "ChIJf3oGvHGZwUcRKku0PAkuwyU", + "name": "Rue des Brasseurs 182", + "street_number": "182", + "street_name": "Rue des Brasseurs", + "city": "Namur", + "state": "Région Wallonne", + "state_short": "NA", + "post_code": "5000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/foundation-for-future-generations/", + "philea_info": { + "About": "Legally registered in March 1998, the Fondation pour les Générations Futures is an independent national non-profit foundation. The foundation collects and manages funds to support various initiatives. It is the only grantmaking foundation in Belgium dedicated exclusively to sustainable development.", + "Mission": "To identify and support projects, and implement original ideas and actions that take into account both tomorrow’s challenges and today’s emergencies. Aiming at contributing to pass on a liveable world to future generations, the Foundation for Future Generations is exclusively dedicated to the transition of our society towards a sustainable development mode, meeting the needs and challenges of a sustainable and viable society for all, today and tomorrow, locally and globally.\nFacing the complexity of this endeavour, its mission is to promote a multi-faceted, systemic approach, simultaneously considering 4 dimensions: people, planet, prosperity and participation. and to strengthen capacities of others in this respect.", + "Geographic Focus": "Belgium", + "Programme Areas": "The Foundation for Future Generations aims at incubating, supporting and attracting public attention to concrete and pioneering examples of ‘sustainable development put into practice’.\nThe Foundation is convinced that it is possible to pass on a liveable world to our children, if we act and think “360°-wise”, simultaneously considering 4 dimensions (4 P’s): People, Planet, Prosperity and Participation.\nIt integrates this transversal approach across its main programme areas, focusing on key societal drivers of change rather than specific themes:\n• Think 360°-wise: It prepares students and researchers to think 360°-wise by valorising master theses, PhD theses and research that integrate this approach;\n• Act 360°-wise: It inspires its fellow citizens – especially the younger generations – to act today 360 ° by stimulating, supporting and valorising social entrepreneurship and concrete actions;\n• Invest 360°: It invests consistently with its values (sustainable & impact-first financial investments), and promotes ‘citizens finance’;\n• Participatory democracy: It promotes G1000-like deliberative sortition-based processes. In order to bring this about, the foundation provides the following means: • Grantgiving\n• Think-tank\n• Operations Grantgiving\nSeeks to enhance the capacity of local initiatives that bring tangible added value to the sustainable development of society. Think-tank\nSeeks to facilitate the development of new concepts which contribute to creating a society that is more united and sustainable. This is done through:\n• Acting as a convenor, bringing together Acts as a convener, bringing together the non-profit, business and public sectors. It serves as an active but impartial intermediary to encourage and facilitate debates and cooperation among different stakeholders, to build confidence and respect between groups with very different views\n• Developing the University Prize for Future Generations, which makes scientific advances in the area of sustainable development accessible to a much wider public.\n• Producing publications on topics such as micro-finance, education or supported projects. Operations\nPromotes innovation in the field of citizen participation and citizen democratic control in the development of society. Towards this end, the foundation has staged two citizens’ panels; one on territorial development in the Walloon Brabant province, and the other on Genetically Modified Organisms (GMO’s). The foundation pursues its objectives through an ethical and committed management of its capital." + } + }, + { + "id": 5206, + "name": "Ford Foundation", + "address": "Ford Foundation 320 East 43rd Street 10017 New York City United States", + "country": "United States", + "email": "office-of-communications@fordfoundation.org", + "website": "http://www.fordfound.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Ford Foundation, 320 East 43rd Street, Manhattan, New York, NY 10017, United States", + "lat": 40.74979529999999, + "lng": -73.9711624, + "zoom": 14, + "place_id": "ChIJ-f_F2txZwokR_cfRXvbXrsI", + "name": "Ford Foundation Center for Social Justice", + "street_number": "320", + "street_name": "East 43rd Street", + "street_name_short": "E 43rd St", + "city": "New York", + "state": "New York", + "state_short": "NY", + "post_code": "10017", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/ford-foundation/", + "philea_info": { + "About": "The Ford Foundation, founded in 1936, operated through local philanthropy in the state of Michigan until 1950, when it expanded to become a national and international foundation. Since its inception, it has been an independent, non-profit, non-governmental organisation. The funds derive from an investment portfolio that began with gifts of Ford Motor Company stock at the bequest of Henry and Edsel Ford. The foundation no longer has company stock and its diversified portfolio is managed to provide a perpetual source of support for the foundation’s programmes and operations. The trustees of the foundation set policy, delegating authority to the president and senior staff for the foundation’s grantmaking and operations.", + "Mission": "To strengthen democratic values, reduce poverty and injustice, promote international cooperation, and advance human achievement.", + "Geographic Focus": "US, Africa, Middle East, Asia, Latin America, Central America", + "Programme Areas": "All work aims to challenge inequality. The foundation is active in 7 programme areas:\n• Civic Engagement and Government\n• Free Expression and Creativity\n• Gender, Racial and Ethnic Justice\n• Cities and States\n• Future of work(ers)\n• Natural resources and climate change\n• Technology and society" + } + }, + { + "id": 5204, + "name": "Fondazione Tercas", + "address": "Fondazione Cassa di Risparmio della Provincia di Teramo Largo Melatini 17/23 64100 Teramo Italy", + "country": "Italy", + "email": "info@fondazionetercas.it", + "website": "http://www.fondazionetercas.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa Di Risparmio Della Provincia Di Teramo, Largo Melatino, Teramo, Province of Teramo, Italy", + "lat": 42.65857889999999, + "lng": 13.7064468, + "zoom": 14, + "place_id": "ChIJk18pRPXnMRMRc1eECELe7sc", + "name": "Fondazione Cassa Di Risparmio Della Provincia Di Teramo", + "street_number": "17", + "street_name": "Largo Melatino", + "city": "Teramo", + "state": "Abruzzo", + "state_short": "TE", + "post_code": "64100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-tercas/", + "philea_info": { + "About": "Fondazione TERCAS (also known as Fondazione Cassa di Risparmio della Provincia di Teramo) is the result of the transformation required by the ´Amato´ law of 1991.", + "Mission": "To provide social benefits and to promote the economic development of its reference area, the Province of Teramo.", + "Geographic Focus": "Province of Teramo, Italy (and activities co-ordinated by ACRI aimed at promoting national solidarity).", + "Programme Areas": "The foundation is active in the following areas: • Scientific research\n• Education\n• Arts and culture\n• Public health and preventative medicine\n• Conservation and valorisation of assets and cultural activities\n• Assistance to the elderly\n• Philanthropy, charity and volunteering" + } + }, + { + "id": 5203, + "name": "Fondazione Sviluppo e Crescita CRT", + "address": "Fondazione Sviluppo e Crescita CRT Via XX Settembre, 31 10121 Torino Italy", + "country": "Italy", + "email": "info@sviluppoecrescitacrt.it", + "website": "http://www.sviluppoecrescitacrt.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione CRT, Via XX Settembre, 31, 10121 Torino, Metropolitan City of Turin, Italy", + "lat": 45.0669842, + "lng": 7.680321699999999, + "zoom": 14, + "place_id": "ChIJg3DDLGxtiEcRCRSv3n0__IY", + "name": "Fondazione CRT", + "street_number": "31", + "street_name": "Via XX Settembre", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-sviluppo-e-crescita-crt/", + "philea_info": { + "About": "Fondazione Sviluppo e Crescita – CRT (FSC) was founded in 2007 through an initiative of Fondazione CRT, an endowment foundation with 100+ years of grant-making history.\nIt is a non-profit organization focused primarily on development and growth of the northern Italian regions of Piedmont and Aosta Valley. FSC operates in accordance with the traditional and institutional activities of Fondazione CRT including numerous innovative social activities in the field of impact investing, green economy and urban regeneration.", + "Mission": "FSC’s mission is to deploy new initiatives which can deliver social impact within regional ecosystems, aimed at the entrepreneurial world as well as the moderate/low income populations.\nFSC pursues to transfer skills, develop new content and networks, multiply sustainable projects and promote innovation.", + "Geographic Focus": "Italy, Piedmont and Aosta Valley regions, and international initiatives which impact the Piedmontese territory.", + "Programme Areas": "Venture Philanthropy and Social Impact Investments are its core competency.\nThe thematic areas are: • 1) Social Real Estate funds\n• 2) Social Housing\n• 3) Environment and Development of the territory\n• 4) Entrepreneurship and Innovation\n• 5) Shareholding and Investing • Social Real Estate funds\nThis branch is characterized by medium / long-term real estate investments, to be made through the use of a closed-end real estate fund for social purposes. The interventions are aimed at creating residences for elderly people, kindergartens and nursery schools, libraries, minor museums. One of the purposes of these social initiatives is the development of “hu-man capital” through culture and education. • Social Housing\nFCS supports social housing initiatives for residential use. The foundation provides a con-crete response to housing problems by creating high standard quality of structures and ser-vices at affordable and rent-controlled costs. The interventions are mainly aimed at the con-struction, renovation and functional recovery of buildings allocated to socially and / or eco-nomically disadvantaged categories. • Environment and Development of the territory\nThe thematic area is focused on environment, quality of life and socioeconomic development of the reference territory, renewable energy and services to citizens. • Entrepreneurship and Innovation\nThe Foundation pays attention to the sustainability of projects by promoting innovation and technology, transferring managerial skills, developing new SMEs, expanding networks at regional, national and international scale. Most of the initiatives are focused on environ-mental protection, welfare, creative industries and cultural companies. • Shareholding and Investing\nFSC works with innovative methods of investments by using a range of financial instruments tailored to the needs of organization supported. Among them: a) Microcredit: FSC has invested in PerMicro since its inception in Turin in 2007. PerMi-cro is the first Italian company specialized in micro-credit. It is part of the Italian and inter-national network of Micro-finance organizations whose objective is to offer micro-credit as a tool for local development and social inclusion.\nb) Crowdfunding: FSC has made available the crow-funding solution called “+Resources” developed in partnership with Eppela, an Italian crown funding platform. This project has ben designed for non-profit organizations focused on social innovation and cultural entre-preneurship.\nc) Pay by Result: FSC has launched a new model of Pay by Result that can support and revolutionize the social welfare. Inspired by the first Social Impact Bond in UK and for the first time in Italy, this feasibility study is focused on social and labour reintegration of detainees.\nd) Shareholding in social impact funds and equity following impact investing principles, with a social venture capital approach in the “impact first” segment and with a sustainable business model." + } + }, + { + "id": 5201, + "name": "Fondazione Monte dei Paschi di Siena", + "address": "Fondazione Monte dei Paschi di Siena Via Banchi di Sotto 34 53100 Siena Italy", + "country": "Italy", + "email": "fmps@fondazionemps.it", + "website": "http://www.fondazionemps.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Mps, Banchi di Sotto, 34, 53100 Siena, Province of Siena, Italy", + "lat": 43.3191491, + "lng": 11.3319299, + "zoom": 14, + "place_id": "ChIJu71NtWctKhMRG2xgBB9OM_c", + "name": "Fondazione Mps", + "street_number": "34", + "street_name": "Banchi di Sotto", + "city": "Siena", + "state": "Toscana", + "state_short": "SI", + "post_code": "53100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-monte-dei-paschi-di-siena/", + "philea_info": { + "About": "The Monte dei Paschi Foundation was established on 28 August 1995 when the banking activities of the public-law credit institution were transferred to Monte dei Paschi Bank, Inc., whose origins date back to 1622 when it was founded on behalf of the Magistrates and people of Siena “so that it might have fertile development and regulations and rules, for the private and public advantage of the City and State of Siena”. With the approval of its new charter on 8 May 2001, the foundation assumed the juridical status of a private non-profit organisation with full statutory and management autonomy.", + "Mission": "To pursue social welfare projects in the areas of scientific research, education, the arts and health care; to promote and finance initiatives for the benefit of the city of Siena, its institutions and its Province, in order to favor and encourage the creation and development of productive activities and the enhancement of economic resources; and to pursue the objective of carrying out community service and philanthropic work.", + "Geographic Focus": "The city of Siena and its province in Italy and Africa", + "Programme Areas": "Identity and Culture\nInclusive Society\nAgricultural System and Territory\nResearch and Technology Transfer Identity and Culture Objective:\nTo give value to cultural and identity heritage of the community\nActions: High musical training as a tool for growth; Cultural heritage of the territory Inclusive Society Objective:\nTo promote social security and personal wellbeing for an inclusive society Agricultural System and Territory Objective\nTo promote Territory development and agrocultural system throught sustainable pattern of production and consumption\nActions: Life styles and critical consumer; Innovationa and territory excellences Research and Technology Transfer Objective\nTo sustain research and technology transfer\nActions are regarding the field of life science and other research fields." + } + }, + { + "id": 5200, + "name": "Fondazione Invernizzi", + "address": "Fondazione Invernizzi Corso Venezia 32 20121 Milan Italy", + "country": "Italy", + "email": "info@fondazioneinvernizzi.it", + "website": "https://www.fondazioneinvernizzi.it/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Corso Venezia, 32, 20121 Milan, Metropolitan City of Milan, Italy", + "lat": 45.47093, + "lng": 9.201731700000002, + "zoom": 14, + "place_id": "ChIJIV4D27vGhkcR3N5fFVnr_1U", + "name": "Corso Venezia, 32", + "street_number": "32", + "street_name": "Corso Venezia", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-invernizzi/", + "philea_info": { + "About": "The Founder was one of the most successful entrepreneur in the Italian Food Industry of the XX century. With his spouse he decided to dedicate nearly all their wealth to promote the development of Lombardy, ”giving back to their Country what they receive during their working life”. His main interests were agriculture, wellbeing and industrial organisation. For this reason the Foundation supports projects in the research areas of Agriculture, Health and Economics. Notable passion of the Founder was the care for Lombardy countryside landscape.", + "Mission": "Main purpose is to preserve the value of the real estate and financial wealth of the late Founders (in particular the XVI century Villa in Palladian style with 800 hectares of gardens and cultivatins in the Milanese countryside and the Palace in the city centre) and support scientific research in Economics, Health, Nutrition & Agriculture.", + "Geographic Focus": "Lombardy", + "Programme Areas": "Preserve the XVI century villa in Palladian style with annexed gardens in the Milanese countryside and the properties in the city centre." + } + }, + { + "id": 5199, + "name": "The Human Safety Net", + "address": "Fondazione Generali – The Human Safety Net- Ente Filantropico Piazza Duca degli Abruzzi 2, 34132 Trieste Italy", + "country": "Italy", + "email": "contact@thehumansafetynet.org", + "website": "http://www.thehumansafetynet.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Generali – The Human Safety Net- Ente Filantropico Piazza Duca degli Abruzzi 2, 34132 Trieste Italy", + "lat": 45.6536226, + "lng": 13.7706201, + "zoom": 14, + "place_id": "ChIJd-p2FG5re0cRF2dfC4hfT_8", + "street_number": "2", + "street_name": "Piazza Luigi Amedeo Duca degli Abruzzi", + "city": "Trieste", + "state": "Friuli-Venezia Giulia", + "state_short": "TS", + "post_code": "34132", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-generali-the-human-safety-net-onlus/", + "philea_info": { + "About": "We believe that, whatever happens in life, no one should be held back from reaching their potential.", + "Mission": "Our mission is to unlock the potential of people living in vulnerable circumstances so that they can transform the lives of their families and communities. The Human Safety Net programmes support families with young children (0-6) and integrate refugees through work and entrepreneurship. Our work combines the strengths of non-profit organizations, the public and the private sector, in Europe, Asia and South America. We are a foundation initiated by Generali, one of the world’s largest insurers. Still, we are also an open net and welcome companies, organizations and foundations who share the same goals. The Human Safety Net is a global movement of people helping people. It is active in 26 countries, where it is present in 650 locations, working closely with a network of 77 NGO partners.", + "Geographic Focus": "26 countries worldwide", + "Programme Areas": "The programme For Families supports parents living in vulnerable circumstances during the first six years of their children’s life. The programme For Refugees contributes to refugees’ inclusion through work and entrepreneurship into their host countries." + } + }, + { + "id": 5196, + "name": "Fondazione di Modena", + "address": "Fondazione Cassa di Risparmio di Modena Via Emilia Centro 283 41121 Modena Italy", + "country": "Italy", + "email": "segreteria@fondazionedimodena.it", + "website": "https://www.fondazionedimodena.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Emilia, Modena, Province of Modena, Italy", + "lat": 44.6467188, + "lng": 10.9260543, + "zoom": 14, + "place_id": "EiJWaWEgRW1pbGlhLCA0MTEyMSBNb2RlbmEgTU8sIEl0YWx5Ii4qLAoUChIJie4tfBTvf0cRUVB1UgvdwvUSFAoSCeFkSd0S739HESh_K0l9HnWW", + "name": "Via Emilia", + "street_name": "Via Emilia", + "city": "Modena", + "state": "Emilia-Romagna", + "state_short": "MO", + "post_code": "41121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-di-modena/", + "philea_info": { + "About": "To stimulate growth and welfare in the area of Modena and contribute to improving the community’s conditions", + "Mission": "To stimulate growth and welfare in the area of Modena and contribute to improving the community’s conditions", + "Geographic Focus": "Modena, Italy", + "Programme Areas": "The foundation focuses on the following areas: • Art, cultural activities and heritage\n• Scientific and technological research\n• Activities of considerable social value Art, Cultural Activities and Heritage\nSupports the following: • Restoration of works of architectural and historical-artistic interest\n• Musical activities promoted by local bodies and associations\n• Theatrical activities\n• The promotion of exhibitions organised by the foundation itself or in collaboration with other bodies\n• The promotion of cultural events\n• The publication of monographs and series on issues of historical and artistic interest\n• The promotion of educational activities\n• The acquisition of unpublished manuscripts, negatives and post-1945 historical-artistic evidence within the framework of the “”ArchivioArte”” project Scientific and Technological Research\nSupports the following: • The purchase of equipment for diagnosing and preventing disease\n• Financing research projects of national standing\n• Fellowships to researchers of Modena university\n• Setting up Centres of Excellence co-funded by other bodies Activities of Considerable Social Value\nSupports the following: • Initiatives targeted at disadvantaged groups (the elderly, juveniles and families suffering hardship, the physically and mentally disabled)\n• The building of sheltered facilities, residential and social centres\n• Renovating property for social use\n• Awareness campaigns and educational projects for young people\n• The purchase of motor vehicles for emergency services\n• Projects for enhancing sport as an educational and non-competitive practice" + } + }, + { + "id": 5195, + "name": "Fondazione CRT", + "address": "Fondazione CRT Via XX Settembre 31 10121 Turin Italy", + "country": "Italy", + "email": "info@fondazionecrt.it", + "website": "http://www.fondazionecrt.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione CRT, Via XX Settembre, 31, 10121 Turin, Metropolitan City of Turin, Italy", + "lat": 45.0669842, + "lng": 7.680321699999999, + "zoom": 14, + "place_id": "ChIJg3DDLGxtiEcRCRSv3n0__IY", + "name": "Fondazione CRT", + "street_number": "31", + "street_name": "Via XX Settembre", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-crt/", + "philea_info": { + "About": "Fondazione CRT is a private non-profit organization established in 1991 by the Cassa di Risparmio di Torino. The foundation has a strong, but localised, calling and acts in key sectors of development in the two regions of Piedmont and Valle d´Aosta . Projects range from conservation and valorisation of artistic heritage and cultural activities to scientific research; from education and training to health and assistance to aiding the socially needy; from public safety to environmental protection to innovation in local organisations.", + "Mission": "To pursue the goals of social and economic development, mainly in the regions of Piemonte and Valle d’Aosta.", + "Geographic Focus": "The regions of Piedmont and Valle d´Aosta in Italy", + "Programme Areas": "The foundation is active in three main areas: • Arts and Culture\n• Research and Education\n• Welfare and Environment Arts and Culture\nsupports local institutions working in this field. Music, theatre, restorations, museums, contemporary art and temporary exhibitions are the fields of intervention. Research and Education:\nsupports funding and projects for education, training, scientific and technological research. Funding internships abroad and scholarships for young people and funding for local research institutions and universities from the regions are fields of intervention. Welfare and Environment:\nSupports projects and activities to support volunteer work for the weakest social groups, public health, civil protection, environmental protection and the development of the reference regions. Recently Fondazione CRT started new initiative on the basis of the venture philanthropy approach, namely through a specific tool: Fondazione Sviluppo e Crescita – CRT (CRT Development and Growth Foundation)." + } + }, + { + "id": 5194, + "name": "Fondazione CON IL SUD", + "address": "Fondazione CON IL SUD Corso Vittorio Emanuele II, 184 00186 Rome Italy", + "country": "Italy", + "email": "info@fondazioneconilsud.it", + "website": "http://www.fondazioneconilsud.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Corso Vittorio Emanuele II, 184, 00186 Rome, Metropolitan City of Rome, Italy", + "lat": 41.89723420000001, + "lng": 12.4707195, + "zoom": 14, + "place_id": "ChIJOdwzCkVgLxMRa-5qAefkCtE", + "name": "Corso Vittorio Emanuele II, 184", + "street_number": "184", + "street_name": "Corso Vittorio Emanuele II", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00186", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-con-il-sud/", + "philea_info": { + "About": "The foundation was established by a Memorandum of Understanding for the implementation of a plan of social infrastructure in the South of Italy, signed in 2005 by ACRI and the “Forum Terzo Settore”, which represents the banking foundations, and with the accession of: Compagnia di San Paolo, Consulta Nazionale Permanente del Volontariato presso il Forum, Convol- Conferenza Permanente Presidenti Associazioni e Federazioni Nazionali di Volontariato, Csv.net-Coordinamento Nazionale dei Centri di Servizio per il Volontariato, Consulta Nazionale dei Comitati di Gestione-Co.Ge.", + "Mission": "To strengthen and integrate networks of voluntary and third sector organisations and foundations, without replacing the role of public institutions. The foundation promotes and enhances the intellectual structures for social development, civil and economic development of the South of Italy.", + "Geographic Focus": "Southern Italy (Basilicata, Calabria, Campania, Puglia, Sardinia and Sicily)", + "Programme Areas": "The foundation promotes the intellectual structures for social development, civil and economic development of the South of Italy. In particular the Foundation is committed to foster social cohesion paths, enhancing the ideas, energies and skills already existing in the territory." + } + }, + { + "id": 5193, + "name": "Fondazione Compagnia di San Paolo", + "address": "Compagnia di San Paolo Corso Vittorio Emanuele II, 75 10128 Turin Italy", + "country": "Italy", + "email": "info@compagniadisanpaolo.it", + "website": "http://www.compagniadisanpaolo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Compagnia di San Paolo, Corso Vittorio Emanuele II, 75, 10128 Turin, Metropolitan City of Turin, Italy", + "lat": 45.0644594, + "lng": 7.673241600000002, + "zoom": 14, + "place_id": "ChIJOdpkvBRtiEcRrWoEhGIxhEU", + "name": "Compagnia di San Paolo", + "street_number": "75", + "street_name": "Corso Vittorio Emanuele II", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10128", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-compagnia-di-san-paolo/", + "philea_info": { + "About": "Compagnia di San Paolo was founded in Turin in 1563 as a charitable lay brotherhood by seven citizens who decided their mission was to help the poor. Throughout its long history, it has supported a range of charitable activities in the fields of health, education and social welfare. In 1992, it was transformed into a foundation as a consequence of the restructuring of the San Paolo Bank Group. After the privatisation of the San Paolo Bank, the Compagnia di San Paolo no longer holds the controlling shares in the bank.", + "Mission": "To support works of public interest and social well-being, particularly in the fields of scientific, economic and legal research, education, art and culture, and health; and to provide assistance to, and protection of less-privileged social groups.", + "Geographic Focus": "Italy and international", + "Programme Areas": "The areas in which Compagnia acts are: • Research and higher education\n• Cultural heritage\n• Cultural activities\n• Health\n• Welfare policy Research and higher education\nIn terms of research, Compagnia focuses on strengthening and aggregating already existing structures, and on getting mid-term agreements and partnerships started, instead of supporting individual initiatives. In the field of higher education, Compagnia is committed to supporting graduate, post-graduate, and masters’ programs, as well as specialisation schools. These activities largely involve the dedication of the Compagnia’s instrumental bodies. Cultural heritage\nSupports culture as an answer to people’s intellectual and spiritual needs, as well as an irreplaceable factor for the advancement of research and knowledge. Within this, Compagnia supports the following areas: • Architectural, historical and artistic, archaeological and landscape heritage\n• Civil heritage\n• Religious heritage\n• The heritage in the territory Cultural activities\nPromotes and supports activities that have a substantial cultural interest as a separate programme area to cultural heritage. Within this area, Compagnia supports the following: • Archival heritage\n• Bibliographical heritage\n• Cultural institutions\n• Music, theater, dance, cinema, books\n• Museums Health\nFinances the acquisition of innovative equipment for research, diagnosis, and cures, and also supports new management models in the area of heath care. In addition, Compagnia offers smaller contributions in areas of specialisation (neurosurgery, transplants, emergency medicine) and in the fight against socially relevant pathologies. Welfare policy\nCompagnia di San Paolo’s Social Policies are aimed at supporting, accompanying and creating new opportunities for improving the situation of people and families in need. Particular areas include: • Paths to social autonomy\n• Support to youth\n• Home care system\n• Public space\n• Cooperation for development\n• Promotion of local philanthropy and of community foundations The Compagnia, like the other foundations of banking origin, is also involved in special funds for voluntary work." + } + }, + { + "id": 5191, + "name": "Fondazione Cassa di Risparmio in Bologna", + "address": "Fondazione Cassa di Risparmio in Bologna (CARISBO) Via Farini, 15 40124 Bologna Italy", + "country": "Italy", + "email": "info@fondazionecarisbo.it", + "website": "http://www.fondazionecarisbo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Farini, 15, Bologna, Metropolitan City of Bologna, Italy", + "lat": 44.4914577, + "lng": 11.3461144, + "zoom": 14, + "place_id": "ChIJHyWcbr_Uf0cR47gNmUfI4Es", + "name": "Via Farini, 15", + "street_number": "15", + "street_name": "Via Farini", + "city": "Bologna", + "state": "Emilia-Romagna", + "state_short": "BO", + "post_code": "40124", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-in-bologna/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio in Bologna is a private non-profit organisation established in 1991 by the Cassa di Risparmio di Bologna. The foundation commitment is towards the community, supporting organisations and projects aimed at social, cultural and economic development.", + "Mission": "To pursue the goals of social and economic development, mainly in the district of Bologna.", + "Geographic Focus": "Bologna, Italy", + "Programme Areas": "The foundation works in the following areas: • Arts and Culture\n• Research and Education\n• Welfare" + } + }, + { + "id": 5188, + "name": "Fondazione Cassa di Risparmio di Parma", + "address": "Fondazione Cassa di Risparmio di Parma Via al Ponte Caprazucca 4 43121 Parma Italy", + "country": "Italy", + "email": "info@fondazionecrp.it", + "website": "http://www.fondazionecrp.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Parma, Strada Ponte Caprazucca, Parma, Province of Parma, Italy", + "lat": 44.79847959999999, + "lng": 10.325979, + "zoom": 14, + "place_id": "ChIJbdmPU-FqgEcRagAwQ3XrgOE", + "name": "Fondazione Cassa di Risparmio di Parma", + "street_number": "4/a", + "street_name": "Strada Ponte Caprazucca", + "street_name_short": "Str. Ponte Caprazucca", + "city": "Parma", + "state": "Emilia-Romagna", + "state_short": "PR", + "post_code": "43121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-parma/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Parma was established by Cassa di Risparmio di Parma.", + "Mission": "To improve local economic and social development and local welfare through grantmaking.", + "Geographic Focus": "Province of Parma, Italy and Africa", + "Programme Areas": "The foundation supports initiatives in the following fields: • Scientific research\n• Education\n• Local welfare\n• Health\n• Arts" + } + }, + { + "id": 5187, + "name": "Fondazione Cassa di Risparmio di Padova e Rovigo", + "address": "Fondazione Cassa di Risparmio di Padova e Rovigo Piazza Duomo, 15 35141 Padova Italy", + "country": "Italy", + "email": "segreteria@fondazionecariparo.it", + "website": "http://www.fondazionecariparo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Padova e Rovigo, Piazza Duomo, Padua, Province of Padua, Italy", + "lat": 45.4071737, + "lng": 11.8727611, + "zoom": 14, + "place_id": "ChIJ9V56vE_afkcRSmb0ohCX3D4", + "name": "Fondazione Cassa di Risparmio di Padova e Rovigo", + "street_name": "Piazza Duomo", + "city": "Padova", + "state": "Veneto", + "state_short": "PD", + "post_code": "35139", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-padova-e-rovigo/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Padova e Rovigo was established in 1991 as the continuation of Cassa di Risparmio di Padova e Rovigo, which was founded in 1822 to support the economic development of local communities.", + "Mission": "To pursue goals of social good and economic development.", + "Geographic Focus": "Italian provinces of Padua and Rovigo", + "Programme Areas": "The foundation focuses its philanthropic activities in the following areas: • Scientific research\n• Education\n• Art and culture\n• Health care\n• Assistance to the underprivileged Scientific Research\nProvides financial support for the provision of sophisticated technological research equipment and specific research projects. The foundation also supports the development of the necessary research infrastructure, an example of which is the University of Padua where the foundation fosters and sustains an environment that promotes applied research and business innovation. Education\nProvides financial support to education institutions and initiatives that offer secondary school pupils and university students the best possible opportunities to develop their scholarly capacity. Art and Culture\nSupports the conservation and promotion of the artistic and cultural heritage of the region through collaborative projects with the region’s principal cultural institutions. Health Care\nSeeks to contribute to improving prevention, diagnostic and therapeutic services in the region’s hospitals and clinics, focusing on illnesses that lead to loss of self-autonomy and progressive disability. Assistance to the Underprivileged\nSupports the development of initiatives in the area of education, volunteerism and social economy for marginalised population groups. Specifically, the foundation supports the social integration of people with disabilities, focusing on rehabilitation activities, transportation and employment services. It also supports projects that target the elderly, particularly those who are no longer self-sufficient, and reinsertion initiatives for victims of abuse." + } + }, + { + "id": 5186, + "name": "Fondazione Cassa di Risparmio di Firenze", + "address": "Ente Cassa di Risparmio di Firenze Via Bufalini 6 I-50122 Florence Italy", + "country": "Italy", + "email": "europeanaffairs@fcrf.it", + "website": "https://www.fondazionecrfirenze.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Foundation Cassa Di Risparmio di Firenze, Via Maurizio Bufalini, 6, 50122 Florence, Metropolitan City of Florence, Italy", + "lat": 43.7737305, + "lng": 11.2586293, + "zoom": 14, + "place_id": "ChIJW1xocARUKhMR2pMRmrXAHF4", + "name": "Foundation Cassa Di Risparmio di Firenze", + "street_number": "6", + "street_name": "Via Maurizio Bufalini", + "city": "Firenze", + "state": "Toscana", + "state_short": "FI", + "post_code": "50122", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-firenze/", + "philea_info": { + "About": "The creation of Ente Cassa di Risparmio di Firenze in 1992 represented the continuation of the traditions of the Cassa di Risparmio di Firenze, founded in 1829 by one hundred illustrious Florentine citizens who each contributed to the founding fund. The main objective was to promote saving among the poorer social classes and to support socio-economic development by donating banking profits to initiatives for the public good. In 2000, a new statute and operational structure were established in line with prior objectives, namely to support those in need of solidarity, rehabilitation and assistance.", + "Mission": "Fondazione Cassa di Risparmio Firenze (FCRF) is a foundation with banking origins, according to the It. Law no. 218/1990. Established in 1992, FCRF carries on the social and philanthropic initiatives in the footsteps of the former saving banking (Statute, Article 3, § 1). The objectives of its mission are determined by law (It. Lgs.D. no. 153/1999) and is transposed in the Foundation Statute (Statute, Article, §§ 2-3).\nIn the specific, FCRC activities converge on 5 macro-areas, intending to promote culture and art, conserving and enhancing the cultural, landscape, environmental and agricultural heritage of Florence and Tuscany territories. Further, FCRF supports scientific research and technological innovation even in the medical and health field and the education of young people. Finally, it promotes voluntary work and associations and is committed to helping those in need of solidarity, care and rehabilitation (Statute, Article, §§ 4-5).\nFrom the operative perspective, FCRF philanthropic activities evolve in two main directions. On one side, FCRF directly supports its projects or operating entities. On the other, it provides contributions to third parties initiatives aligned with its own statutory and programmatic aims. Additionally, FCRF works promoting grants and tenders (Statute, Article 4).", + "Geographic Focus": "The region of Tuscany in Italy (specifically Florence, Grosseto and Arezzo)", + "Programme Areas": "FCRC activities converge on 5 macro-areas:\n1) Arts and Culture – two main sectors: (A) artistic and cultural initiatives, and (B) protection and enhancement of national artistic and historical heritage. Their activities intend to support artistic productions and promote the educative, social and economic dimension of arts and culture. Additionally, FCRF, in these fields, encourages community accountability in the protection of the local cultural heritage.\n2) Charities and Volunteering – support third-sector and second-welfare initiatives. One of the main objectives of this area is to promote local associations involved in contrasting the leading causes of social and economic vulnerability (i.e. the breakdown of family relationships, unemployment, economic instability, housing crisis). The main actions, therefore, converge on disadvantage groups (e.g. older people, children, migrants and those with any kind of disability).\n3) Research and Technological Innovation – focuses its efforts on the professional advancement of young scholars and researchers and the enhancement of the local centers of excellence in research. Both these needs come out from the local scientific and academic contexts, and the investments made by FCRF give a significant contribution to leading institutions activities. In particular, the Foundations, in this field, aims to bridge the gap between academic research and the world of business, fostering fruitful partnership among the different local actors.\n4) Education – promotes accessibility and inclusiveness in educational and vocational programs–and this to overcome the shortcomings due to the current weaknesses of the traditional educational pathways and options. FCRF aims to enhance access to educative services; prevent early school leaving and develop new capacities in vocational consultancy and advisory services.\n5) Environmental Protection – carries on specific actions, promoting social participation and involvement in the safeguards the local territories and landscapes. In this regard, FCRF supports the local actors more involved in this field, improving their planning and management capacities. Additionally, the Foundation even cooperates with local public institutions to foster sustainable developments initiatives and policies." + } + }, + { + "id": 5185, + "name": "Fondazione Cassa di Risparmio di Cuneo", + "address": "Fondazione Cassa di Risparmio di Cuneo Via Roma, 17 12100 Cuneo Italy", + "country": "Italy", + "email": "info@fondazionecrc.it", + "website": "http://www.fondazionecrc.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa Di Risparmio Di Cuneo, Via Roma, 17, 12100 Cuneo, Province of Cuneo, Italy", + "lat": 44.39335699999999, + "lng": 7.552000299999998, + "zoom": 14, + "place_id": "ChIJuc6f3z1pzRIRJCG-oPWv6QI", + "name": "Foundation Of Cuneo Savings Bank", + "street_number": "17", + "street_name": "Via Roma", + "city": "Cuneo", + "state": "Piemonte", + "state_short": "CN", + "post_code": "12100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-cuneo/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Cuneo was established in 1992 and originated from the former Cassa di Risparmio di Cuneo S.p.A (according to the Italian reform of savings banks). The foundation assumed the juridical status of a private, non-profit organisation, focused exclusively on public and social benefit activities, in the fields of social cohesion, welfare, culture, education, and sustainable local development, mainly in the district of Cuneo, in south Piedmont, Northern Italy.", + "Mission": "To improve the quality of life for our community’s citizens, working in the areas of social cohesion, welfare, culture and sustainable local development.", + "Geographic Focus": "Region of Piemonte, Province of Cuneo", + "Programme Areas": "The foundation is active in the following areas: – Local Development and Innovation\n– Arts and cultural heritage\n– Social Solidarity\n– Education, knowledge and training (including the acquisition of editorial materials)\n– Public health\n– Sport" + } + }, + { + "id": 5184, + "name": "Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler Sparkasse", + "address": "Fondazione Cassa di Risparmio di Bolzano - Stiftung Südtiroler Sparkasse Via Talvera, 18 39100 Bolzano Italy", + "country": "Italy", + "email": "info@fondazionecassarisparmiobz.it", + "website": "https://www.stiftungsparkasse.it/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Bolzano, Via Talvera, 18, 39100 Bolzano, Province of Bolzano - South Tyrol, Italy", + "lat": 46.500426, + "lng": 11.348563, + "zoom": 14, + "place_id": "ChIJx-xzsn2egkcRgvUEP26hFG0", + "name": "Fondazione Cassa di Risparmio di Bolzano", + "street_number": "18", + "street_name": "Via Talvera", + "city": "Bolzano", + "state": "Trentino-Alto Adige", + "state_short": "BZ", + "post_code": "39100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-bolzano-stiftung-sudtiroler-sparkasse/", + "philea_info": { + "About": "To support the sectors of art, preservation and valorisation or cultural goods and cultural activities as well as in the sectors of ecology, instruction, research, the health system and previdence.", + "Mission": "To support the sectors of art, preservation and valorisation or cultural goods and cultural activities as well as in the sectors of ecology, instruction, research, the health system and previdence.", + "Geographic Focus": "Local area of Alto Adige", + "Programme Areas": "The foundation works in the following areas: • Art\n• Preservation and valorisation of cultural goods and cultural activities\n• Ecology\n• Education\n• Research\n• The Italian health system" + } + }, + { + "id": 5183, + "name": "Fondazione Cassa di Risparmio di Ascoli Piceno", + "address": "Fondazione Cassa di Risparmio di Ascoli Piceno Corso Mazzini, 190 63100 Ascoli Piceno Italy", + "country": "Italy", + "email": "fondazionecarisap@fondazionecarisap.it", + "website": "http://www.fondazionecarisap.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Cassa Di Risparmio Di Ascoli Piceno S.P.A., Corso Giuseppe Mazzini, 190, 63100 Ascoli Piceno, Province of Ascoli Piceno, Italy", + "lat": 42.8550662, + "lng": 13.5774481, + "zoom": 14, + "place_id": "ChIJxfj7EBD9MRMRkaLQ8qO-4VI", + "name": "Cassa Di Risparmio Di Ascoli Piceno S.P.A.", + "street_number": "190", + "street_name": "Corso Giuseppe Mazzini", + "street_name_short": "C. Mazzini", + "city": "Ascoli Piceno", + "state": "Marche", + "state_short": "AP", + "post_code": "63100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-ascoli-piceno/", + "philea_info": { + "About": "To pursue social benefit purposes and promote economic development in its defined geographical and programmatic areas.", + "Mission": "To pursue social benefit purposes and promote economic development in its defined geographical and programmatic areas.", + "Geographic Focus": "Multiple communes in Italy", + "Programme Areas": "The foundation supports social benefit purposes and the promotion of economic development in the following areas: • Family and family values; youth education and development; education and training (including the acquisition of publications for schools); voluntary activities; philanthropy and charity; religion and spiritual development; assistance to the elderly and civil rights\n• Criminal prevention and public safety; food safety and quality agriculture; local development and low-cost housing; consumer protection; civil protection; public health; preventive medicine and rehabilitation; sports activities; prevention of and assistance to drug addicts; pathology and psychological and mental diseases\n• Scientific and technological research; protection and preservation of the environment\n• Arts activities and cultural heritage" + } + }, + { + "id": 5182, + "name": "Fondazione Cassa di Risparmio di Alessandria", + "address": "Fondazione Cassa di Risparmio di Alessandria Piazza della Libertà, 28 15121 Alessandria Italy", + "country": "Italy", + "email": "direzione@fondazionecralessandria.it", + "website": "http://www.fondazionecralessandria.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa di Risparmio di Alessandria, Piazza della Libertà, 28, 15121 Alessandria, Province of Alessandria, Italy", + "lat": 44.9140767, + "lng": 8.6154444, + "zoom": 14, + "place_id": "ChIJUcK2sz50h0cROmC3ZZgvjns", + "name": "Fondazione Cassa di Risparmio di Alessandria", + "street_number": "28", + "street_name": "Piazza della Libertà", + "city": "Alessandria", + "state": "Piemonte", + "state_short": "AL", + "post_code": "15121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-di-risparmio-di-alessandria/", + "philea_info": { + "About": "Fondazione Cassa di Risparmio di Alessandria was set up in 1991 as the continuation of Cassa di Risparmio di Alessandria, which was founded in 1838 to support economic development of local communities.", + "Mission": "To contribute to the social and economic development of the Piedmont Region.", + "Geographic Focus": "Piedmont, Italy", + "Programme Areas": "The foundation is active in the following areas: • Education\n• Art and culture\n• Public health and preventative medicine\n• Local development and public housing\n• Assistance to the elderly\n• Scientific research\n• Philanthropy, charity and volunteering\n• Civil defence\n• Environmental preservation" + } + }, + { + "id": 5180, + "name": "Fondazione Cassa dei Risparmi di Forlì", + "address": "Fondazione Cassa dei Risparmi di Forli Corso Garibaldi, 45 47121 Forli Italy", + "country": "Italy", + "email": "fondazione@pec.fondazionecariforli.it", + "website": "http://www.fondazionecariforli.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cassa Di Risparmio Di Forli', Corso Giuseppe Garibaldi, 45, 47121 Forlì, Province of Forlì-Cesena, Italy", + "lat": 44.2224899, + "lng": 12.0386656, + "zoom": 14, + "place_id": "ChIJfXwK449XKxMRnPyEXec470Y", + "name": "Fondazione Cassa Di Risparmio Di Forli'", + "street_number": "45", + "street_name": "Corso Giuseppe Garibaldi", + "city": "Forlì", + "state": "Emilia-Romagna", + "state_short": "FC", + "post_code": "47121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cassa-dei-risparmi-di-forli/", + "philea_info": { + "About": "The foundation was established in 1992 within the framwork of the ´Amato-Carli´ law. Since its establishment, the foundation has continued the Cassa dei Risparmi di Forli bank’s commitment towards the community, supporting organisations and projects aimed at social, cultural and economic development.", + "Mission": "To support projects and activities aimed at supporting social, cultural and economic development within the foundation’s historical territory.", + "Geographic Focus": "Italy; the Emilia-Romagna region including the following municipalities: Forli, Folimpopoli, Bertinoro, Meldola, Santa Sofia, Civitella di Romagna, Galeata, Bagno di Romagna, Verghereto, Predappio, Premilcuore, Castrocaro Terme e Terra del Sole, Dovadola, Rocca San Casciano, Portico e San Benedetto, Modigliana, Tredozio", + "Programme Areas": "Since 2006, the foundation decided to focus on the following areas: Major areas: • Arts and culture\n• Scientific and technological research\n• Public health, preventive medicine and rehabilitation\n• Local development and housing projects\n• Voluntarism, philanthropy and charity Arts and Culture\nSupports the enhancement of cultural heritage in the community, which is also seen as a crucial element for economic development. The foundation aims to support all the associations and institutes that promote various activities in the fields of theatre, music, dance and museums. Scientific and Technological Research\nSupports the development of basic and applied research with a particular focus on the enhancement of the relationship/partnership/cooperation between universities, companies, research laboratories and institutes on the theme of technological transfer. Public Health, Preventive Medicine and Rehabilitation\nFocuses on the optimisation and reorganisation of health services, as well as the building and upgrading of hospital facilities (particularly through the purchase of medical and scientific equipment). Local Development and Housing Projects\nFocuses mainly on the innovation and internationalisation of the local economic tissue, most of all through partnership, cooperation and cross-fertilisation with universities and professional associations. Voluntarism, Philanthropy and Charity\nSupports mainly the non-profit sector in its manifold activity towards disadvantaged and disabled people, with reference particularly to their integration in work, fostering innovative projects and cooperation between the non-profit and public sector. Minor areas: • Aid to the elderly\n• Sport\n• Education, including the purchasing of press products for schools\n• Food safety and quality agriculture Aid to the Elderly\nFocuses on in-home assistance- provided essentially by the public sector- and ‘light’ services assistance provided by non-profit organisations. Sport\nSupports amateur associations, and focuses its attention on broadening sports activities among children and young people, especially through the cooperation between schools and sports institutions, and on the renovation and upgrading of sports facilities. Education, Including the Purchasing of Press Products for Schools\nSupports the entire education sector, from nursery to university, with a particular focus on projects aimed at quality and social and cultural inclusion. Food Safety and Quality Agriculture\nWorks mainly on the enhancement and diffusion of local quality products." + } + }, + { + "id": 5179, + "name": "Fondazione Cariplo", + "address": "Fondazione Cariplo Via Manin, 23 20121 Milan Italy", + "country": "Italy", + "email": "segreteriagenerale@fondazionecariplo.it", + "website": "http://www.fondazionecariplo.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Cariplo, Via Manin, 23, 20121 Milan, Metropolitan City of Milan, Italy", + "lat": 45.4752242, + "lng": 9.196740799999999, + "zoom": 14, + "place_id": "ChIJX0YXuLfGhkcRcPD5VaJbfcU", + "name": "Cariplo Foundation", + "street_number": "23", + "street_name": "Via Daniele Manin", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20121", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-cariplo/", + "philea_info": { + "About": "Fondazione Cariplo picked up where its predecessor, Cassa di Risparmio delle Provincie Lombarde (Savings Bank of the Lombard Provinces), left off. Since its establishment in Milan on June 12, 1823, Cassa di Risparmio delle Provincie Lombarde fostered the growth of the local economy, culture and civil society, conducting its activities in accordance with the principles of self-organisation and subsidiarity. Officially, Fondazione Cariplo was set up in December 1991 as part of the reorganisation process resulting from the implementation of the Amato-Carli Act for the rationalisation and privatisation of Italian banks.", + "Mission": "To be a resource that helps social and civil organisations better serve their own community.", + "Geographic Focus": "The region of Lombardy in Italy and Africa", + "Programme Areas": "To better respond to its users’ needs, the Foundation designed its organization around four main areas of activity, each one with dedicated staff. These four areas are: – Environment,\n– Arts and Culture,\n– Scientific Research and Technology Transfer,\n– Social Services Environment:\nIn this area, the Foundation focuses on promoting environmentally-conscious lifestyles and behaviors, rather than tackling environmental emergencies. The Foundation supports cultural innovation and the spreading of environmental awareness by triggering virtuous circles in which information, education, awareness and action are mutually reinforcing. In so doing it engages individuals, institutions, businesses, associations, the scientific community as well as local communities. Arts and Culture:\nThe Foundation’s focus in this program area is on Italy’s heritage, i.e. our archeological, artistic, architectural and environmental assets, libraries, historical archives and museums as well as performing arts and other arts & culture events. In the performing arts sphere, the Foundation works to increase opportunities for artistic expression and broaden public participation, especially among those who are less privileged. Scientific Research and Technology Transfer:\nFondazione Cariplo is keen to contribute to a breeding ground for scientific research, technology transfer and advancement of applied research findings. It does so by backing initiatives that promote the formation of networks and partnerships, participation in international projects, human capital growth, enhanced scientific output as well as improved scientific communication and dissemination of research outcomes. Social Services:\nIn this area, Fondazione Cariplo focuses on seeing to emerging needs that have not yet come to the public attention, finding fresh approaches to deep-seated needs, responding to needs that are left unattended, promoting excellence and innovation, catering for those who at risk of falling through the cracks and facilitating the circulation of knowledge and information about access to and quality of services." + } + }, + { + "id": 5178, + "name": "Fondazione Bracco", + "address": "Fondazione Bracco Via Cino del Duca, 8 20122 Milan Italy", + "country": "Italy", + "email": "segreteria@fondazionebracco.com", + "website": "http://www.fondazionebracco.com", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondazione Bracco, Via Cino del Duca, 8, 20122 Milan, Metropolitan City of Milan, Italy", + "lat": 45.466449, + "lng": 9.2003988, + "zoom": 14, + "place_id": "ChIJrxCtUeXHhkcRdnjMaroUQWk", + "name": "Fondazione Bracco", + "street_number": "8", + "street_name": "Via Cino del Duca", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20122", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-bracco/", + "philea_info": { + "About": "The Bracco Foundation is proud to have its roots embedded in the wealth of values firmly upheld by the Bracco family and Bracco Group for over 85 years, the primary value being that of corporate social responsibility.", + "Mission": "The core mission of the Foundation is to create, promote and propagate expressions of culture, art and science, as a way to improve quality of life and social cohesion.", + "Geographic Focus": "Mainly Italy but also Europe, China, Brazil and USA", + "Programme Areas": "The Foundation enhances Italy’s cultural, historical and artistic heritage at national and global levels. It also stimulates environmental awareness, promotes scientific research, safeguards health, supports education and professional training for young people and develops welfare and solidarity initiatives in order to contribute to collective well-being. The Foundation develops and implements projects, also internationally, within the three macro areas “art and culture”, “science and culture”, “society and the social aspect”, with an emphasis on research and innovation. Particular attention is paid to the role of women and the young in the various aspects of life. A multidisciplinary approach and integration between various forms of knowledge are important qualitative criteria in both the planning and selection of activities." + } + }, + { + "id": 5177, + "name": "Fondazione Banca del Monte di Lucca", + "address": "Fondazione Banca del Monte di Lucca Piazza San Martino, 4 55100 Lucca Italy", + "country": "Italy", + "email": "segreteria@fondazionebmlucca.it", + "website": "http://www.fondazionebmlucca.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "BANCA DEL MONTE DI LUCCA SEDE DI LUCCA, Piazza San Martino, 4, 55100 Lucca, Province of Lucca, Italy", + "lat": 43.8406001, + "lng": 10.5052227, + "zoom": 14, + "place_id": "ChIJYdhq7YqD1RIRPoBMM-B5LYs", + "name": "BANCA DEL MONTE DI LUCCA SEDE DI LUCCA", + "street_number": "4", + "street_name": "Piazza San Martino", + "street_name_short": "Piazza S. Martino", + "city": "Lucca", + "state": "Toscana", + "state_short": "LU", + "post_code": "55100", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-banca-del-monte-di-lucca/", + "philea_info": { + "About": "Fondazione Banca del Monte di Lucca is a banking foundation, regulated by Law and by the Statute. It’s the continuation of Banca del Monte di Lucca, Monte di Credito su Pegno (Pledge Bank established by the Government of the Lucchese Republic on 25 May 1489).", + "Mission": "The Foundation mission is focused on social issues, welfare, cultural heritage, art, culture, education, and sustainable local development, mainly in the province of Lucca.", + "Geographic Focus": "Province of Lucca, Italy", + "Programme Areas": "The foundation focuses on the following areas:\n– Art and cultural heritage\n– Philanthropy and Social Issues\n– Education and training\n– Local Development" + } + }, + { + "id": 5175, + "name": "1563 Foundation for Art and Culture", + "address": "Corso Vittorio Emanuele II, 75 - 10128 TORINO", + "country": "Italy", + "email": "info@fondazione1563.it", + "website": "http://www.fondazione1563.it", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Via Passo Buole, 175, 10135 Torino TO, Italy", + "lat": 45.02806036236005, + "lng": 7.642274377783158, + "zoom": 16, + "place_id": "ChIJ8wTPnSATiEcRaipJq8UkwwM", + "street_number": "175", + "street_name": "Via Passo Buole", + "city": "Torino", + "state": "Piemonte", + "state_short": "TO", + "post_code": "10135", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/fondazione-1563-per-larte-e-la-cultura-della-compagnia-di-san-paolo/", + "philea_info": { + "About": "" + } + }, + { + "id": 5170, + "name": "Fondation Lombard Odier", + "address": "Fondation Lombard Odier 11, rue de la Corraterie 1204 Geneva Switzerland", + "country": "Switzerland", + "email": "contact@fondationlombardodier.org", + "website": "https://www.lombardodier.com/home/private-clients/philanthropy/fondation-lombard-odier.html", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Lombard Odier, Rue de la Corraterie 11, 1204 Geneva, Switzerland", + "lat": 46.20300879999999, + "lng": 6.144163300000001, + "zoom": 14, + "place_id": "ChIJd5-6gilljEcRVp3cHm2TLKI", + "name": "Lombard Odier", + "street_number": "11", + "street_name": "Rue de la Corraterie", + "city": "Genève", + "state": "Genève", + "state_short": "GE", + "post_code": "1204", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-lombard-odier/", + "philea_info": { + "About": "Fondation Lombard Odier is Lombard Odier Group’s corporate foundation.", + "Mission": "The Foundation funds innovative solutions to address the most pressing challenges in the humanitarian and environmental sectors. Our objective is to work with quality partners and offer global support that goes beyond simply the financial.", + "Geographic Focus": "Mainly Switzerland, but also overseas", + "Programme Areas": "The foundation supports projects in the following areas: humanitarian work\nthe environment\nthe communities where the Group is present" + } + }, + { + "id": 5167, + "name": "Fondation de Luxembourg", + "address": "Fondation de Luxembourg 12 Rue Erasme 1468 Luxembourg Luxembourg", + "country": "Luxembourg", + "email": "secr@fdlux.lu", + "website": "http://www.fdlux.lu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation de Luxembourg Fondation, 12 Rue Erasme, 1468 Luxembourg, Luxembourg", + "lat": 49.6244038, + "lng": 6.149720599999999, + "zoom": 14, + "place_id": "ChIJ3ZFrujhPlUcRLoJlWNJ3pdM", + "name": "Fondation de Luxembourg Fondation", + "street_number": "12", + "street_name": "Rue Erasme", + "city": "Luxembourg", + "state": "District de Luxembourg", + "post_code": "1468", + "country": "Luxembourg", + "country_short": "LU" + }, + "link": "https://philea.eu/members/fondation-de-luxembourg/", + "philea_info": { + "About": "Fondation de Luxembourg was created in December 2008 by the Luxembourg State and the Oeuvre Nationale de Secours Grande-Duchesse Charlotte. The structure was set up to meet the growing need for a centre of expertise in philanthropy and to encourage and facilitate philanthropic commitments made by private individuals and businesses.", + "Mission": "To promote the private philanthropic commitment, to encourage, support and guide donors who wish to make a long term commitment to the development of significant philanthropic projects, to provide personalised accompaniment for structured philanthropic investment projects in a simplified framework and with the assurance of countinuous follow up.", + "Geographic Focus": "Luxembourg, Europe, Worldwide", + "Programme Areas": "The foundation operates the following areas: • Research and Health\n• Poverty and Social Inclusion\n• Arts and Culture\n• Education\n• Biodiversity and climate changes" + } + }, + { + "id": 5165, + "name": "Fondation de France", + "address": "Fondation de France 40, Avenue Hoche 75008 Paris France", + "country": "France", + "email": "fondation@fdf.org", + "website": "http://www.fondationdefrance.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation de France, 40 Avenue Hoche, 75008 Paris, France", + "lat": 48.8755259, + "lng": 2.298763799999999, + "zoom": 14, + "place_id": "ChIJ11j25Opv5kcRzrMBr1Vw3Ds", + "name": "Fondation de France", + "street_number": "40", + "street_name": "Avenue Hoche", + "street_name_short": "Av. Hoche", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75008", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-de-france/", + "philea_info": { + "About": "Fondation de France was established as a private foundation, on the initiative of General de Gaulle and André Malraux, to help private donors- individuals and companies- to carry out philanthropic activities in any field of general interest. In particular, Fondation de France enables donors to create their own foundation under its umbrella, offering different services from management to advices on philanthropic priorities. In 2015, Fondation de France hosted 808 donor advised funds and dedicated about 150 million euros to social activities. Fondation the France is the French partner of Transnational giving Europe.", + "Mission": "Fondation de France is ‘the foundation of all causes’, Its mission consists in supporting all the fields of general interest, and helping any private donor to carry out philanthropic activity in any of those fields.", + "Geographic Focus": "France, Europe and developing countries", + "Programme Areas": "The foundation develops programmes in 4 main fields of activities: Helping vulnerable individuals\nPledges to help people grappling with sickness, economic difficulties, advanced age and unemployment meet basic needs, such as housing, healthcare and work. The foundation also endeavours to help them remain active members of their communities, sharing their interests, feelings and projects. Developing knowledge\nPromotes scientific and medical research, culture, education and training, at a time when many young people face a dim job outlook, when progress in research is a vital issue for humanity, and culture is needed to forge a collective identity. Acting for the environment\nEncourages people to live in greater harmony with their surroundings, mindful of the environmental crisis caused by increased human activity. Favouring a citizen-based approach, the foundation supports group endeavours, scientific research and educational projects in France and abroad. Developing philanthropy\nFounded to encourage the development of philanthropy, the foundation is mainly known for housing and managing funds and foundations, and collecting resources to support social innovation. However, to develop philanthropy, foundations must be promoted and defended to help them grow, become more professional, and extend their activities abroad. This is the mandate of Fondation de France." + } + }, + { + "id": 5164, + "name": "Fondation Charles Léopold Mayer pour le progrès humain", + "address": "Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens", + "country": "Switzerland", + "email": "contact.paris@fph.ch", + "website": "http://www.fph.ch", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Vortex, Route de Praz-Véguey 29, 1022 Chavannes-près-Renens", + "lat": 46.52449619999999, + "lng": 6.575196999999999, + "zoom": 12, + "place_id": "ChIJ7cI3BSUxjEcRi4sMQykHFvk", + "street_number": "29", + "street_name": "Route de Praz Véguey", + "street_name_short": "Rte de Praz Véguey", + "city": "Chavannes-près-Renens", + "state": "Vaud", + "state_short": "VD", + "post_code": "1022", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-charles-leopold-mayer-pour-le-progres-de-lhomme/", + "philea_info": { + "About": "The founder, Charles Léopold Mayer, was a philanthropist and financier. He believed in the progress of humankind and used his whole fortune to create the foundation and a science award in the French Science Academy. This legacy led to the establishment in 1982 of the foundation. In 1996, as a tribute to its founder, the foundation was renamed the Charles Léopold Mayer Foundation for the Progress of Humankind.", + "Mission": "To finance, by granting awards or loans, research and other activities that contribute in a significant and innovative way to the progress of humankind through science and social development.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The foundation is committed to contributing to long-term societal changes. It supports and underpins the emergence of a global community in terms of:\n• Governance\n• Ethics\n• Alternative development models Governance\nPromotes and supports the development of new social, political, and institutional regulations at local and global levels to ensure social cohesion, justice, peace, diversity, and individual development. Ethics\nBuilding a viable world society assumes an agreement on common ethical principles. The foundation seeks to present and implement proposals for the establishment of a common ethical foundation, namely the Charter of Human Responsibilities. Alternative Development Models\nPromotes new development, economic, scientific, and technological models tailored to meet the lifestyle, consumer and production needs of a global community. In 2012-2013, the foundation went through a substantial evaluation of its strategy and programmes since 2003.\n• Ecological Transition\n• Governance & Regional cooperations\n• Responsibility/Ethics\n• Tools/Methods/Information" + } + }, + { + "id": 5163, + "name": "Fondation Chanel", + "address": "Fondation d’entreprise Chanel 135 Av. Charles de Gaulle 92200 Neuilly-sur-Seine France", + "country": "France", + "email": "info@fondationchanel.org", + "website": "http://www.fondationchanel.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "CHANEL, 135 Av. Charles de Gaulle, 92200 Neuilly-sur-Seine, France", + "lat": 48.8832639, + "lng": 2.266366699999999, + "zoom": 14, + "place_id": "ChIJr2D0GABl5kcRPWZ1Aww1YVM", + "name": "CHANEL", + "street_number": "135", + "street_name": "Avenue Charles de Gaulle", + "street_name_short": "Av. Charles de Gaulle", + "city": "Neuilly-sur-Seine", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "92200", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/fondation-chanel/", + "philea_info": { + "About": "The establishment in France of Fondation Chanel positioned the issue of women’s empowerment at the heart of CHANEL’s corporate giving and commitment in the non-profit sector. The Foundation bases its actions on two complementary approaches:\n-financial philanthropy and guidance for non-profit projects promoting the economic independence and social well-being of girls and women.\n-direct technical assistance and the transfer of know-how mobilizing CHANEL employees within their various areas of expertise.\nThe Foundation is 100% funded by the company CHANEL", + "Mission": "Fondation Chanel supports and accompanies projects improving the living standards and economic independence of women and their communities. It also plays a role in promoting women in the arts and culture.", + "Geographic Focus": "Global, China, Thailand, India, Brasil, Colombie, Africa, France", + "Programme Areas": "Promoting the access of girls and women to:\n– economic resources and entrepreneurship,\n– education and training,\n– leadership and decision making,\n– health and social protection\n– sports and culture Supporting social and economic integration\nEncouraging the role of women in the arts and culture" + } + }, + { + "id": 5162, + "name": "Fondation Botnar", + "address": "Fondation Botnar St. Alban-Vorstadt 56 4052 Basel Switzerland", + "country": "Switzerland", + "email": "info@fondationbotnar.org", + "website": "https://www.fondationbotnar.org/home", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fondation Botnar, St. Alban-Vorstadt 56, 4052 Basel, Switzerland", + "lat": 47.554306, + "lng": 7.598050300000001, + "zoom": 14, + "place_id": "ChIJda_IuLK5kUcR0zvp3Ql0EXU", + "name": "Fondation Botnar", + "street_number": "56", + "street_name": "Sankt Alban-Vorstadt", + "street_name_short": "St. Alban-Vorstadt", + "city": "Basel", + "state": "Basel-Stadt", + "state_short": "BS", + "post_code": "4052", + "country": "Switzerland", + "country_short": "CH" + }, + "link": "https://philea.eu/members/fondation-botnar/", + "philea_info": { + "About": "Fondation Botnar is a philanthropic foundation founded to continue the philanthropic work of the Botnar family.", + "Mission": "Fondation Botnar is dedicated to the wellbeing of young people who live, learn, work, connect and play in urban and digital spaces around the world. Enabling the meaningful participation of young people, the foundation invests in and supports innovative initiatives and research, bringing together actors from across sectors to create purposeful dialogue and partnerships.", + "Geographic Focus": "Colombia, Ecuador, Ghana, Indonesia, Israel, Occupied Palestinian Territories (OPT), Romania, Senegal, Switzerland, Tanzania, Vietnam.", + "Programme Areas": "Fondation Botnar’s mission is to ensure that young people live, work, connect, and play in inclusive societies that fulfil their rights and enable them to shape decisions and drive accountability. To this end, Fondation Botnar focuses on four interrelated thematic areas: Enabling liveable and sustainable city systems.\nEnabling a human rights-based digital transformation.\nPromoting mental health.\nStrengthening quality public education." + } + }, + { + "id": 5160, + "name": "Finnish Cultural Foundation", + "address": "Suomen Kulttuurirahasto P.O. Box 203, Bulevardi 5 A 13 00121 Helsinki Finland", + "country": "Finland", + "email": "yleisinfo@skr.fi", + "website": "http://www.skr.fi", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bulevardi 5a, Helsinki, Finland", + "lat": 60.1651316, + "lng": 24.9387852, + "zoom": 14, + "place_id": "ChIJc721yssLkkYRnTqnktrxEhc", + "name": "Bulevardi 5a", + "street_number": "5a", + "street_name": "Bulevardi", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00120", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/finnish-cultural-foundation/", + "philea_info": { + "About": "Suomen Kulttuurirahasto was established in 1939, and since then more than 800,000 donors have contributed to the capital of the foundation. The foundation consists of the Central Fund, established in 1939, and the 17 Regional Funds, set up in the 1950s and 1960s. Together they form an umbrella organisation of over 700 separate funds, each carrying the name of their donors and promoting the areas stipulated by them.", + "Mission": "The purpose of the Finnish Cultural Foundation is to “promote and develop cultural and economic life” in Finland. In line with this, the Foundation provides grants to individuals and groups working in the sciences and the arts, and to people and organisations in other fields of intellectual and cultural endeavour.", + "Geographic Focus": "Finland and international", + "Programme Areas": "The foundation provides grants to individuals and groups working in the sciences and the arts, and to people and organisations in other fields of intellectual and cultural endeavour. The Foundation also supports larger projects through substantial grants. In addition to providing grants, the Foundation also arranges courses, lectures, and other events in the arts, sciences, and other fields, and maintains an art collection. The Foundation’s most important international event is the Mirjam Helin International Singing Competition, which is held every five years. While the Central Fund operates nationally, the Foundation’s 17 regional funds concentrate on promoting and developing the arts, the sciences, and other fields of endeavour at the regional level through annual grants and awards." + } + }, + { + "id": 5158, + "name": "Evens Foundation", + "address": "Evens Foundation Stoopstraat 1 5th floor B-2000 Antwerp Belgium", + "country": "Belgium", + "email": "antwerp@evensfoundation.be", + "website": "http://www.evensfoundation.be", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Antwerp, Belgium", + "lat": 51.2213404, + "lng": 4.4051485, + "zoom": 14, + "place_id": "ChIJfYjDv472w0cRuIqogoRErz4", + "name": "Antwerp", + "city": "Antwerp", + "state": "Flanders", + "state_short": "AN", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/evens-foundation/", + "philea_info": { + "About": "The Evens Foundation is a public-benefit foundation started as a family endeavour in 1990. Its founders, Irène Evens-Radzyminska and Georges Evens, established it because of their commitment to the European project. Born in Poland, they witnessed the troubled history of the Second World War that tore the continent apart. Forced to leave their country of birth, they found a new home in Belgium. Corinne Evens, daughter of the founders, is the Honorary President of the Foundation.", + "Mission": "The Evens Foundation aims to contribute to rethinking and building a European reality committed to the values of diversity, freedom, responsibility and solidarity. The Foundation identifies and supports innovative ideas and achievements through prizes and calls, initiates experimental projects bridging the gap between research and practice, and facilitates knowledge exchange through lectures, seminars, debates and publications.", + "Geographic Focus": "EU countries, Belgium, France and Poland", + "Programme Areas": "As an operative foundation, the Evens Foundation initiates and runs projects together with its partners. Since the foundation’s outset, the Foundation has opted to take risks and remained solidly committed to experimentation — be it through designing their own projects or supporting independent pioneering ideas. The Evens Foundation mainly focuses on the development of pilot projects testing scientific hypotheses, innovative pedagogies or artistic processes.\nFor almost thirty years, it has been active in key fields of intervention such as democracy, education, media, arts, and science. For the strategic plan 2018-2020, two leading initiatives were designed: Common Purpose Through Differences, and Norms and Values Within the European Reality. These concerns unfold several thematic axes, exposing the challenges that Europe faces today.\nThe Foundation’s biennial prizes highlight innovative practices and achievements. Over the years, these prizes have also helped identify new challenges, gain new insights and perspectives, and expand the Foundation’s network. The Evens Foundation currently awards prizes in the fields of Arts, Journalism, Education and Science." + } + }, + { + "id": 5380, + "name": "European University Institute", + "address": "European University Institute Via della Badia dei Roccettini 9 50014 Firenze Italy", + "country": "Italy", + "email": "External.Relations@eui.eu", + "website": "http://www.eui.eu", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "European University Institute, Via della Badia dei Roccettini, 9, 50014 Fiesole, Metropolitan City of Florence, Italy", + "lat": 43.803079, + "lng": 11.282959, + "zoom": 14, + "place_id": "ChIJPyVxQANUKhMR1WHvAi0UEf4", + "name": "European University Institute", + "street_number": "9", + "street_name": "Via della Badia dei Roccettini", + "city": "Fiesole", + "state": "Toscana", + "state_short": "FI", + "post_code": "50014", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/european-university-institute/", + "philea_info": { + "About": "EUI is a Social Sciences and Humanities hub connecting academic excellence and research capabilities across Europe and to the world of policy and practice, for the betterment of society.\nFounded in 1972 by the six original members of the then European Communities, the EUI has earned a reputation as a transnational hub of research and higher learning.\nThe EUI’s distinctly international environment offers unique academic training, enriches the intellectual experience and provides exceptional opportunities for academics across disciplines and borders.", + "Geographic Focus": "Worldwide, with an expertise in research related to Europe and the world.", + "Programme Areas": "‘- Research: PhD in Economics, History and Civilisation, Law, and Political and Social Sciences.\n– Policy making" + } + }, + { + "id": 5151, + "name": "European Foundation for Philanthropy and Society Development", + "address": "European Foundation for Philanthropy and Society Development Dedici 83 10000 Zagreb Croatia", + "country": "Croatia", + "email": "info@europskazaklada-filantropija.hr", + "website": "http://www.europskazaklada-filantropija.hr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "10000, Zagreb, Croatia", + "lat": 45.8348464, + "lng": 15.970761, + "zoom": 14, + "place_id": "ChIJCeEflHXXZUcRwlEzNVCtABM", + "name": "10000", + "city": "Zagreb", + "state": "City of Zagreb", + "post_code": "10000", + "country": "Croatia", + "country_short": "HR" + }, + "link": "https://philea.eu/members/european-foundation-for-philanthropy-and-society-development/", + "philea_info": { + "About": "European Foundation for Philanthropy and Society Development (hereafter: European Foundation) is established in order to develop philanthropy by providing expert and financial support to philanthropists, foundations and socially responsible legal entities through high-quality innovative operation models on national and European level.", + "Mission": "Mission of the European Foundation is to become an institutionalized European and international excellence center for the development of individual philanthropy and foundations and the resource center for the provision of any information and expert documentation on philanthropy, social innovations and society development, as well as the focal location for public discussion about issues and directions of society development based on philanthropy, public innovations and responsible governance", + "Geographic Focus": "Croatia, South-Eastern Europe, Euro-Mediterranean", + "Programme Areas": "The main activities are focused on:\n-Promotion and public advocacy of philanthropy and foundations;\n-Informing and providing support to interested individuals with regard to the development of individual philanthropy and foundations;\n-Education and training programmes for the representatives of foundations from the Republic of Croatia and the countries of Southeast Europe which will be implemented continuously in cooperation with international and national partner organisations;\n-Financing of joint programs related to the development of philanthropy and social innovations through EU structural funds and other international sources;\n-Collection and allocation of financial resources through the implementation of innovative models of activities for the common good, such as online donations on the global level and other inclusive models focused on the development of local communities, in cooperation with specialised international organisations and charity lotteries;\n-Organisation of public discussions on the topics of the development of philanthropy, social innovations and social development;\n-Specialised and interdisciplinary research;\n-Technical assistance and consultations;\n-Publishing." + } + }, + { + "id": 5150, + "name": "European Cultural Foundation", + "address": "European Cultural Foundation Jan van Goyenkade 5 1075 HN Amsterdam Netherlands", + "country": "Netherlands", + "email": "ask@culturalfoundation.eu", + "website": "http://www.culturalfoundation.eu", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "European Cultural Foundation, Jan van Goyenkade 5, 1075 HN Amsterdam, Netherlands", + "lat": 52.3521037, + "lng": 4.868836099999999, + "zoom": 14, + "place_id": "ChIJZcifLPwJxkcRUH9OYjp85Hk", + "name": "European Cultural Foundation", + "street_number": "5", + "street_name": "Jan van Goyenkade", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1075 HN", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/european-cultural-foundation/", + "philea_info": { + "About": "Our founders created the European Cultural Foundation in 1954 as they envisioned a united Europe where citizens feel proudly European, a place where they can live, express themselves, work and dream freely, in diversity and harmony. Ever since the ECF promotes a European sentiment through developing and supporting cultural initiatives that let us share, experience and imagine Europe. We believe our mission is as urgent now as it was back then.", + "Mission": "We have a vision for Europe. A continent where all can live, work, dream and express themselves freely, in diversity and harmony. Where we share a sense of belonging based on solidarity, mutual respect between people and with collaborations across borders of all kinds. We believe in the power of culture to achieve this Europe. Culture helps us negotiate ways of living together, build and understand our multiple identities and make Europe our home. We promote a European sentiment through developing and supporting cultural initiatives that let us share, experience and imagine Europe. Our core values – cooperation, diversity and solidarity – are reflected in everything we do: providing grants, building communities, offering incubator programs and online platforms, organizing events and challenges, publishing books and advocating for culture with policymakers. We have pioneered in growing a European sentiment for over 65 years, and our mission is as urgent as when we first started.", + "Geographic Focus": "Europe and neighboring regions", + "Programme Areas": "All our programmes work towards understanding Europe as a genuine cultural community. An emotional sense of belonging to such a community, a true European sentiment – as our founders called it – is a crucial element for growing Europe in a spirit and culture of solidarity, across national borders and social divides. In our programmes, Europeans from many different backgrounds get to experience the common space and future they share, by culturally engaging with fellow citizens. Europe is both a cultural idea and a political project. Our work acknowledges the European Union as a historical cornerstone of the European unification ideas promoted by our founders. However, our programmes extend beyond the borders of the current EU member states and its institutions. Our programmes stimulate Europeans to imagine their futures freely and creatively and to find new answers to joint European and systemic global challenges. Storytelling, artistic expression and cultural debate are essential instruments of our work for reflecting on the past, examining the presence and envisioning the future of Europe as a common public sphere. Culture of Solidarity In 2020, we offered public stakeholders and foundations the opportunity to connect local/national action with European purpose by inviting them to join the Culture of Solidarity Fund. It is a matter of scale and impact. This echoes the words of our founder – Robert Schuman – who famously said, “Europe will not be made all at once, or according to a single plan. It will be built through concrete achievements which first create a de facto solidarity.” Advocacy Advocacy is a means to advance our mission and to achieve our programmatic goals. We aim at influencing public policy and decisions on priorities and resource allocations within political and philanthropic institutions. Within ECF’s 2020-2025 strategy, advocacy focuses on the following: #CulturalDealEU campaign\nInfluence EU policy and leverage of funding\nPhilanthropy with a European purpose\nAmsterdam partnership\nOther Strategic Partnerships" + } + }, + { + "id": 5148, + "name": "European Climate Foundation", + "address": "European Climate Foundation Riviervismarkt 5 2513 AM The Hague Netherlands", + "country": "Netherlands", + "email": "info@europeanclimate.org", + "website": "http://www.europeanclimate.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Stichting European Climate Foundation, Riviervismarkt 5, 2513 AM The Hague, Netherlands", + "lat": 52.0766884, + "lng": 4.306905, + "zoom": 14, + "place_id": "ChIJzwwgWTu3xUcRHgynkalZKEY", + "name": "Stichting European Climate Foundation", + "street_number": "5", + "street_name": "Riviervismarkt", + "city": "Den Haag", + "state": "Zuid-Holland", + "state_short": "ZH", + "post_code": "2513 AM", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/european-climate-foundation/", + "philea_info": { + "About": "The European Climate Foundation is dedicated to developing and implementing well-crafted climate and energy policies that greatly reduce Europe’s global greenhouse gas emissions. Key elements of a sustainable energy future include: (1) a substantial increase in energy efficiency, (2) a successful transition from conventional to renewable energy; (3) maintenance of the earth’s ecological systems and the life-supporting services they provide; and, (4) equitable distribution of energy services to different members of the population, both internationally and within nations.", + "Mission": "To promote climate and energy policies that greatly reduce Europe’s greenhouse gas emissions and help Europe play an even stronger international leadership role in mitigating climate change.", + "Geographic Focus": "Europe; European Union", + "Programme Areas": "The European Climate Foundation has identified four priority programmes within its strategy: • Energy Efficiency\n• Low-Carbon Power Generation\n• Transportation\n• EU Climate Policies and Diplomacy\n• Global Climate Policy • Energy Efficiency\nThe foundation aims to ensure that effective energy policies are adopted and implemented at the EU and national levels by leveraging a network of political contacts, grantees and other experts in Brussels and Member States. Technical and policy advice is targeted at the most winnable political opportunities such as a) creating the regulatory and market framework for large-scale energy efficiency investments, b) energy-efficiency in buildings and c) energy-efficiency in products. • Low-Carbon Power Generation\nThe Power Programme focuses on policies that will fully de-carbonise Europe’s power supply by 2050 at the latest. These policies include prohibition of new unabated coal plant construction, support for commercialization of carbon-capture-and-storage technology, advancing large-scale end-use efficiency and accelerating deployment of renewable energy. • Transportation\nThe ECF’s Transport Programme aims to reduce Europe’s vehicle emissions by increasing fuel efficiency and decreasing the carbon content of fuels. Initiatives of the programme focus on:\n1. Car emissions standards\n2. Different means for reducing the carbon footprint of road-freight traffic\n3. Biofuels/Low-Carbon Fuel Standard • EU Climate Policies and Diplomacy\nThe EU Climate Policies Programme aims to secure pan-European and in-country policy frameworks and political conditions that ensure European climate leadership. The Programme’s activities focus on ensuring that the EU commits to reducing CO¬¬¬¬¬2 emissions by at least 30% domestically by 2020, and that Member States deliver practical policies to that effect. In this framework the foundation uses targeted grants and contributes to the coordination of other organisations in order to maximise collective influence on European policy." + } + }, + { + "id": 5146, + "name": "Europe Foundation", + "address": "Europe Foundation - 3 Kavsadze Street, Tbilisi 0179 Georgia", + "country": "Georgia", + "email": "info@epfound.ge", + "website": "http://www.epfound.ge", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Europe Foundation, 3 Lado Kavsadze Street, Tbilisi, Georgia", + "lat": 41.7097949, + "lng": 44.76136189999999, + "zoom": 14, + "place_id": "ChIJM27xrTZzREARCNWG_0EXO5M", + "name": "Europe Foundation", + "street_number": "3", + "street_name": "Lado Kavsadze Street", + "street_name_short": "Lado Kavsadze St", + "city": "T'bilisi", + "state": "Tbilisi", + "country": "Georgia", + "country_short": "GE" + }, + "link": "https://philea.eu/members/europe-foundation/", + "philea_info": { + "About": "The Europe Foundation (EF) creates positive and lasting change through civic engagement. Through its programming and grantmaking, the Foundation strives to promote civic participation and democratic governance in Georgia. It does so by strengthening the capacities of civil society actors, so that they contribute to more inclusive, transparent, and accountable policy making. If civil society capacity and sustainability is strengthened and viable mechanisms of participation are created locally and nationally, then citizens will be better able to enjoy their human rights and freedoms and hold duty-bearers accountable. It is with this rationale in mind that the Foundation’s programs equip CSOs and civic activists with skills, capacities and resources to define and achieve positive outcomes for themselves and their communities. EF employs a participatory approach, which allows civil society actors to determine the issues that are of importance to the right-holders and to develop interventions that will be effective in addressing identified needs – a critical factor in building a vibrant democracy. At the same time, EF is mindful of rising threats to human rights and fundamental freedoms and mobilizes communities and interest groups around specific issue areas to create demand for good governance and democratic change.", + "Mission": "Europe Foundation’s mission is to empower people to effect change for social justice and economic prosperity through hands-on programs, helping them to improve their communities and their own lives. EF engages citizens in social, economic, and political developments, in order to effect substantive and sustainable positive socio-economic change at the local, regional, and national level through both operational programs and grantmaking.", + "Geographic Focus": "Georgia, Eastern Partnership region", + "Programme Areas": "Europe Foundation conducts operating programs and strategic grantmaking. The primary difference between the two is the locus of responsibility for program outputs, and the mechanisms controlling financial expenditure. In running operating programs, the Foundation directly manages project activities and takes upon itself ultimate responsibility for delivery of outputs and project results. Grants allocate funding to outside partner organizations through a grant agreement, and the responsibility for delivery of project outputs rests entirely with the grantee. Operating programs maintain the Foundation’s focus on revitalization of the civic sector and strengthening linkages between civic groups, private sector, public authorities, and communities, but they target these areas from a different angle than grants alone. In addition to the Open Door Grantmaking Program, three main areas of operating programs are the Civil Society and Governance, Institutional and Thematic Capacity Development of Civil Society Actors, and Youth Empowerment." + } + }, + { + "id": 5145, + "name": "Eurochild", + "address": "Rue de la Charité 22, 1210 Brussels", + "country": "Belgium", + "email": "info@eurochild.org", + "website": "http://www.eurochild.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Rue de la Charité 22, 1210 Saint-Josse-ten-Noode, Brussels, Belgium", + "lat": 50.8481605, + "lng": 4.370557499999999, + "zoom": 14, + "place_id": "ChIJefxwSX3Dw0cR7dBO3d-x2-A", + "name": "Rue de la Charité 22", + "street_number": "22", + "street_name": "Rue de la Charité", + "city": "Saint-Josse-ten-Noode", + "state": "Bruxelles", + "post_code": "1210", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/eurochild/", + "philea_info": { + "About": "Currently, Eurochild has 190 members, of which 142 are full members, 44 associate members and 4 honorary members in 37 countries. 23 national networks of children’s rights organisations have been appointed as National Partner Networks (NPNs).", + "Mission": "Eurochild is a network of organisations and individuals working in and across Europe to promote the rights and well-being of children and young people. The vision is of a society where children and young people grow up happy, healthy and confident and respected as individuals in their own right. The mission is to promote the rights and well-being of children in policy and practice through advocacy, membership exchange and research.\nOur work is underpinned by the United Nations Convention on the Rights of the Child (UNCRC). An international human rights treaty that grants all children and young people a comprehensive set of rights. The network is co-funded by the European Union’s programme for Employment and Social Innovation (EaSI).", + "Geographic Focus": "Europe", + "Programme Areas": "Social Inclusion and social protection (child poverty and social exclusion)\nEuropean Economic and Thematic Governance and funding\nChild protection policies\nPromotion of quality alternative care for children and young people\nFamily and parenting support services\nInvesting in quality early years education and care\nPromoting the participation of children in policy and decision making\nEducation, youth, justice, health policies" + } + }, + { + "id": 5144, + "name": "Essl Foundation MGE gemeinnützige Privatstiftung", + "address": "Essl Foundation MGE gemeinnützige Privatstiftung Haus der Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift 5&6 Austria", + "country": "Austria", + "email": "office@zeroproject.org", + "website": "https://zeroproject.org/about/the-essl-foundation-and-zero-project", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Essl Foundation MGE gemeinnützige Privatstiftung Haus der Philanthropie Schottenring 16/3.OG 1010 Wien Zugang über Lift 5&6 Austria", + "lat": 48.2151846, + "lng": 16.366538, + "zoom": 14, + "place_id": "ChIJ1V1cvPkHbUcRjDLTlO5Q9JQ", + "street_number": "16", + "street_name": "Schottenring", + "city": "Wien", + "state": "Wien", + "post_code": "1010", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/essl-foundation-mge-gemeinnutzige-privatstiftung/", + "philea_info": { + "About": "The Essl Foundation MGE gemeinnützige Privatstiftung is an Austrian Foundation established in 2007 by Martin and Gerda Essl, and their children, for social purposes and scientific research.", + "Mission": "The mission of the Essl Foundation is to support social innovation, social entrepreneurship, and persons with disabilities. The mission of the Zero Project is working for a world with zero barriers. Worldwide, the Zero Project finds and share solutions that improve the daily lives and legal rights of all persons with disabilities.", + "Geographic Focus": "Worldwide", + "Programme Areas": "The foundation works in the following areas: Financing and further development of the Zero Project.\nSupport for social projects, especially in Austria, with a focus on education, employment, and accessibility for people with disabilities, as well as barrier-free art education.\nActive participation in the activities of the Sinnstiftern and member of the association for non-profit foundations.\nCo-founder of the Haus der Philanthropie, Vienna – an office community for non-profit foundations and related organizations." + } + }, + { + "id": 5143, + "name": "ERSTE Stiftung", + "address": "ERSTE Stiftung Am Belvedere 1 1100 Vienna Austria", + "country": "Austria", + "email": "office@erstestiftung.org", + "website": "http://www.erstestiftung.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Am Belvedere 1, 1100 Vienna, Austria", + "lat": 48.1873204, + "lng": 16.3792082, + "zoom": 14, + "place_id": "ChIJ1bgQlNepbUcRQfhnsHyl03Y", + "name": "Am Belvedere 1", + "street_number": "1", + "street_name": "Am Belvedere", + "city": "Wien", + "state": "Wien", + "post_code": "1100", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/erste-stiftung/", + "philea_info": { + "About": "In 2003, ERSTE Foundation evolved out of the Erste Oesterreichische Spar-Casse, the first Austrian savings bank. Currently, ERSTE Foundation is the main shareholder of Erste Group. The foundation invests part of its dividends in the development of societies in Austria and Central and South Eastern Europe. It supports social participation and civil-society engagement; it aims to bring people together and disseminate knowledge of the recent history of a region that has been undergoing dramatic changes since 1989. As an active foundation, it develops its own projects within the framework of three programmes: Social Development, Culture and Europe.", + "Mission": "To invest in lasting structures and relationships; to reinforce individual and organisational autonomy, to cooperate on an equal footing and take joint responsibility for the common good.\nFurthermore, the foundation firmly believes that a prosperous community provides the basis for social, individual and economic development.", + "Geographic Focus": "Austria, Central and South Eastern Europe", + "Programme Areas": "The foundation is active in three key areas: • Social Development\n• Culture\n• Europe Social Development\nThe foundation encourages the development of fairer and stronger societies, where nobody is left behind. It has developed two complementary strategies of social intervention: the integration of individuals and groups who live on the margins of society and research into social change. The foundation’s activities create fair prospects for people in difficult social conditions and situations of extreme need with regard to education and participation. Culture\nThe foundation believes in culture as a driving force for a democratic society and in its ability to forge links between diverse linguistic and geographical regions. Culturally speaking, the countries of Central and South Eastern Europe are a highly diverse area which shares a past of enforced political conformity. The foundation offers a platform to reflect on the ambivalence between a newly acquired, regional identity, the centrifugal forces of nationalist fragmentation and common monocultural historical experiences. Europe\nERSTE Stitung promotes the process of European integration by providing a platform for exchanging ideas, knwoledge and initiatives. The foundation would like Europeans to live according to common values, to freely share ideas, to work together and to learn from one another. Its work thus focuses on establishing a lively culture of dialogue. In an environment insisting on differences, the foundation enables people to experience feelings of solidarity, connection and cooperation." + } + }, + { + "id": 5137, + "name": "DOTS Foundation for an Open Society", + "address": "Foundation DOTS Alberta iela, 13 LV-1010 Riga Latvia", + "country": "Latvia", + "email": "dots@fondsdots.lv", + "website": "http://www.fondsdots.lv/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "LATO Latvian Transatlantic Organisation, Alberta iela 13, Central District, Rīga, LV-1010, Latvia", + "lat": 56.9593018, + "lng": 24.1080334, + "zoom": 14, + "place_id": "ChIJjSB_ecTP7kYROV-i4kWpXC4", + "name": "LATO Latvian Transatlantic Organisation", + "street_number": "13", + "street_name": "Alberta iela", + "city": "Rīga", + "post_code": "1010", + "country": "Latvia", + "country_short": "LV" + }, + "link": "https://philea.eu/members/dots-foundation-for-an-open-society/", + "philea_info": { + "About": "Previously known as “The Soros Foundation Latvia”, it was established in 1992 by the philanthropist George Soros as part of the Open Society Foundations (OSF) spanning Europe, the Americas, Africa and Asia. After the Central and East European countries joined the European Union, the family of developed democratic nations, George Soros chose to redirect greater resources to open society development needs in Africa, South America and Asia. In 2011 a decision was made that the foundations located in the EU countries would no longer be members of OSF, but remain affiliated with the broader network. This necessitated a name change by the close of 2014. DOTS Foundation’s mission is to strengthen the quality and culture of democracy in Latvia.", + "Mission": "DOTS Foundation for an Open Society unites people devoted to strengthening the quality and culture of democracy in Latvia.\nWe believe that diversity and a plurality of opinions make Latvia a better place.\nWe believe in an open and inclusive public sphere as the cornerstone for a resilient society able to stand up to the challenges of tomorrow.\nWe believe in trust, dignity, integrity and sustainability, and we work with passion and joy to bring these values to life.\nWe believe in deliberation as the best tool for fair decision-making, and we pursue cooperation and co-creation among our team and with our partners.", + "Geographic Focus": "Latvia", + "Programme Areas": "DOTS engages in the promotion of participatory democracy by: • inspiring a democratic conversation and advancing the culture of discussion\n• inciting people’s interest in societal and political processes\n• fostering people’s active participation in public life DOTS is the founder and co-organiser of the open-air LAMPA Conversation festival. The biggest discussion event in Latvia, LAMPA creates a motivating atmosphere for constant self-improvement in an ever-changing world. Since its creation in 2015, each summer LAMPA has brought together tens of thousands of participants who spend two joyful days sharpening their minds, expanding their horizons and challenging their views. LAMPA is an inspiring and exciting platform for anyone who has something to say — for all those who want to learn about and discuss the central issues for Latvia, Europe and the world." + } + }, + { + "id": 5135, + "name": "Doc Society", + "address": "Channel 4 BRITDOC Foundation 50 Frith Street WID 4SQ London United Kingdom", + "country": "United Kingdom", + "email": "beadie@britdoc.org", + "website": "https://docsociety.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Frith Street, Soho, London, United Kingdom", + "lat": 51.5135376, + "lng": -0.1314486, + "zoom": 14, + "place_id": "EhRGcml0aCBTdCwgTG9uZG9uLCBVSyIuKiwKFAoSCZFhf93SBHZIEXXreDcc1L2pEhQKEgmbf0uf1AR2SBHSXX5TzFdO5A", + "name": "Frith Street", + "street_name": "Frith Street", + "street_name_short": "Frith St", + "city": "London", + "state": "England", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/doc-society/", + "philea_info": { + "About": "The Channel 4 BRITDOC has produced over fifty documentaries and have worked with experienced talents in the movie sector. Some of their films have been used as educational tools in schools, to trig Government policy reviews and used strategically in the social justice campaigns to inspire action.", + "Mission": "Channel 4 BRITDOC Foundation is a non-profit organisation established in 2004 titled sponsored by Channel 4 Television and supported by UK and Usa foundations. Its main mission of Channel 4 BRITDOC is to build a diverse future for documentary. In order to do this, they create films and engage new partners to ensure that these fims have a global impact.", + "Geographic Focus": "based in UK, but it works internationally", + "Programme Areas": "Through documentaries they cover the following areas:\n– Human rights\n– Environment\n– Health\n– Education" + } + }, + { + "id": 5132, + "name": "Deutsche Bundesstiftung Umwelt", + "address": "Deutsche Bundesstiftung Umwelt An der Bornau 2 49090 Osnabrück Germany", + "country": "Germany", + "email": "c.soetbeer@dbu.de", + "website": "http://www.dbu.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Deutsche Bundesstiftung Umwelt, An der Bornau 2, 49090 Osnabrück, Germany", + "lat": 52.2863704, + "lng": 8.032082899999999, + "zoom": 14, + "place_id": "ChIJSz4JYMTluUcRL2asjbrjmuo", + "name": "German Federal Environmental Foundation", + "street_number": "2", + "street_name": "An der Bornau", + "street_name_short": "An d. Bornau", + "city": "Osnabrück", + "state": "Niedersachsen", + "state_short": "NDS", + "post_code": "49090", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/deutsche-bundesstiftung-umwelt/", + "philea_info": { + "About": "Deutsche Bundesstiftung Umwelt (DBU) was founded in 1991 following an initiative by Dr Theo Waigel, the then Federal Minister of Finance, and supported by the German government. The foundation began with assets amounting to nearly 1.3 billion euros from the proceeds of privatisation of the former steel group, Salzgitter AG, making it one of the largest foundation trusts in Europe.", + "Mission": "To promote model projects that protect the environment with particular consideration given to small and medium-sized enterprises.", + "Geographic Focus": "Germany, its neighbouring countries and Central and Eastern Europe", + "Programme Areas": "The foundation supports environmental projects giving particular consideration to small and medium-sized enterprises. The foundation is active in the following fieldsMain fields of promotional activities are: • Environmental technology\n• Environmental research / nature protection\n• Environmental communication\n• International activities Within these, the foundation supports nine special fields: • Environmentally friendly applications and procedures, energy technology\n• Architecture and building and construction industry\n• Material stream management and emission reduction\n• Applied environmental research\n• Nature protection\n• Environmentally friendly use of land\n• Scholarship programme\n• Environmental communication and environmental management within small and medium sized enterprises\n• Dissemination of environmental information\n• Environmental education and environment and cultural assets" + } + }, + { + "id": 5363, + "name": "Degroof Petercam Foundation", + "address": "Degroof Petercam Foundation 44 rue de l'industrie 1040 Brussels Belgium", + "country": "Belgium", + "email": "foundation@degroofpetercam.com", + "website": "https://www.degroofpetercam.com/en/social-impact/degroof-petercam-foundation", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Banque Degroof Petercam, Rue de l'Industrie 44, 1040 Brussels, Belgium", + "lat": 50.8441235, + "lng": 4.370583000000001, + "zoom": 14, + "place_id": "ChIJIbVk0pzEw0cRFTwXA3u0cVM", + "name": "Bank/Banque Degroof Petercam", + "street_number": "44", + "street_name": "Rue de l'Industrie", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1040", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/degroof-petercam-foundation/", + "philea_info": { + "About": "Founded by Degroof Petercam private Bank, Degroof Petercam Foundation has access to the corporate’s network and resources. The Foundation focuses on “big bets” by selecting one top project every year to which is consented a considerable grant and five years of support.", + "Mission": "To support social innovation for employment.", + "Geographic Focus": "Europe (especially Belgium, France, Luxembourg)", + "Programme Areas": "Degroof Petercam Foundation supports social innovation for employment in three fields:\n– Skills for tomorrow\n– Entrepreneurs for tomorrow\n– Job accessibility for tomorrow" + } + }, + { + "id": 5131, + "name": "Daniel and Nina Carasso Foundation", + "address": "Daniel and Nina Carasso Foundation 40, avenue Hoche 75008 Paris France", + "country": "France", + "email": "contact@fondationcarasso.org", + "website": "http://www.fondationcarasso.org/fr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "40 Avenue Hoche, 75008 Paris, France", + "lat": 48.8755934, + "lng": 2.2987615, + "zoom": 14, + "place_id": "ChIJu35D5Opv5kcRsvSuZmBfpV4", + "name": "40 Av. Hoche", + "street_number": "40", + "street_name": "Avenue Hoche", + "street_name_short": "Av. Hoche", + "city": "Paris", + "state": "Île-de-France", + "state_short": "IDF", + "post_code": "75008", + "country": "France", + "country_short": "FR" + }, + "link": "https://philea.eu/members/daniel-and-nina-carasso-foundation/", + "philea_info": { + "About": "The Daniel and Nina Carasso Foundation was founded in early 2010, under the aegis of umbrella organization, the Fondation de France. It was created in memory of Daniel Carasso – founder of Danone and his wife, Nina. It is a family organization that is independent of the food company. The Foundation is grant making and does not raise funds.", + "Mission": "It aims to act in furtherance of general interest projects and create the right conditions for co‑operation between the projects it funds and the beneficiaries of such projects.", + "Geographic Focus": "France and Spain", + "Programme Areas": "Its objective is to fund projects in two areas critical to human well-being:\n– Sustainable food and diets, to nourish the body\n– Art, to nourish the mind. The Daniel and Nina Carasso Foundation seeks both to support completed projects which can be put to practical effect in the real world and to foster nascent projects. The Foundation seeks to facilitate encounters and opportunities that bring together fields of enquiry whose paths do not always cross. The field of action of the foundation is primarily France and Spain, however, it reserves the right to act elsewhere, particularly in countries facing post-emergency situations, especially in the wake of environmental crises, supporting projects related to two major areas.\nSUSTAINABLE FOOD PROGRAM\n1) Promotion of the systemic approach of food: support to research, advocacy work, training, etc.\n2) Territorial approach and social justice\n3) From production to consumption=agro ecology, food education ART IN THE COMMUNITY PROGRAM\n1) Art and Education: art education programs in schools\n2) Art, Science and Society: call for projects with artist and scientists\n3) Committed artists" + } + }, + { + "id": 5129, + "name": "Czech Donors Forum", + "address": "Czech Donors Forum Lucerna Palace, 5th floor Stepanska 61 11602 Prague 1 Czech Republic", + "country": "Czech Republic", + "email": "donorsforum@donorsforum.cz", + "website": "http://www.donorsforum.cz", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Štěpánská 61, New Town, Czechia", + "lat": 50.0809618, + "lng": 14.4263343, + "zoom": 14, + "place_id": "ChIJ42jlTe2UC0cRksIDVfNomKs", + "name": "Štěpánská 61", + "street_number": "61", + "street_name": "Štěpánská", + "state": "Hlavní město Praha", + "post_code": "110 00", + "country": "Czechia", + "country_short": "CZ" + }, + "link": "https://philea.eu/members/czech-donors-forum/", + "philea_info": { + "About": "" + } + }, + { + "id": 5128, + "name": "Cultiva - Kristiansand Kommunes Energiverksstiftelse", + "address": "Cultiva - Kristiansand Kommunes Energiverksstiftelse Vestre Strandgate 27 4611 Kristiansand Norway", + "country": "Norway", + "email": "post@cultiva.no", + "website": "http://www.cultiva.no", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Cultiva, Vestre Strandgate 27, 4611 Kristiansand, Kristiansand, Norway", + "lat": 58.14399330000001, + "lng": 7.992162299999999, + "zoom": 14, + "place_id": "ChIJo_wsh2ACOEYRndP7xHpdPZc", + "name": "Cultiva", + "street_number": "27", + "street_name": "Vestre Strandgate", + "city": "Kristiansand", + "state": "Agder", + "post_code": "4611", + "country": "Norway", + "country_short": "NO" + }, + "link": "https://philea.eu/members/cultiva-kristiansand-kommunes-energiverksstiftelse/", + "philea_info": { + "About": "Cultiva – Kristiansand Kommunes Energiverks-Stiftelse was established in 2000 by the local authority to ensure that the profit made by selling shares in the local energy corporation is of lasting benefit to the community of Kristiansand.", + "Mission": "To secure jobs and good living conditions in Kristiansand by providing grants to projects which set up art, cultural, and educational institutions or organisations that contribute to innovation, development and competence-building within the creative milieu of Kristiansand.", + "Geographic Focus": "Kristiansand, Norway", + "Programme Areas": "The foundation provides grants to projects which set up art, cultural and educational institutions or organisations that contribute to innovation, development and competence-building within the creative milieu of Kristiansand." + } + }, + { + "id": 5125, + "name": "Conrad N. Hilton Foundation", + "address": "Conrad N. Hilton Foundation 30440 Agoura Road 91301 Agoura Hills United States", + "country": "United States", + "email": "alecia@hiltonfoundation.org", + "website": "http://www.hiltonfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "The Conrad Hilton Foundation offices, 30440 Agoura Road, Agoura Hills, CA 91301, United States", + "lat": 34.1443268, + "lng": -118.7849945, + "zoom": 14, + "place_id": "ChIJEwQzr1Al6IARUjUi658Ae44", + "name": "The Conrad Hilton Foundation offices", + "street_number": "30440", + "street_name": "Agoura Road", + "street_name_short": "Agoura Rd", + "city": "Agoura Hills", + "state": "California", + "state_short": "CA", + "post_code": "91301", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/conrad-n-hilton-foundation/", + "philea_info": { + "About": "The foundation was originally established in 1944 as a Trust, with Conrad N. Hilton, the builder of the world’s first chain of hotels, as the founder and grantor. On 21 February 1950, all assets were transferred over to a nonprofit corporation. The foundation remained relatively small until Mr Hilton’s death on 3 January 1979 when in accordance to his Will, the bulk of his estate was left to the foundation.", + "Mission": "The alleviation of human suffering, particularly among disadvantaged children.", + "Geographic Focus": "Africa (several countries), New York, Los Angeles", + "Programme Areas": "The foundation focuses primarily on the following activities:\n• Hilton/Perkins programme\n• Fund for sisters\n• Hotel and restaurant management\n• Water development\n• Substance abuse prevention and research\n• Domestic violence\n• Homelessness\n• Conrad N. Hilton humanitarian prize Hilton/Perkins Programme\nProvides direct service and educational opportunities for children who are multi-handicapped and blind, as well as training for teachers and support services for parents and family. Co-ordinates services for thousands of children, parents and teachers in the Asia/Pacific region, Africa, Latin America, the Caribbean and eastern Europe. Fund for Sisters\nOperates a grant awarding system under the auspices of the Archdiocese of Los Angeles. Supports projects that have one or more Catholic Sister working full-time towards the alleviation of human suffering, mitigation of deprivation in the lives of youths and achieving systematic change. Hotel and Restaurant Management\nAwards benefits to the University of Houston to expand physical facilities, endow professorships, provide scholarships and enhance educational programmes in the field of hospitality education. Water Development\nProvides a minimum of 1,100 wet wells to hundreds or rural villages through the Afram plains through the Ghana Rural Water Project. Includes instruction for villagers on maintenance and repair or each well, health, hygiene and sanitation education. Technical assistance is provided in the construction of latrines and laundry pads. Substance Abuse Prevention and Research\nTeaches middle school students how to identify and resist the social pressures that lead to experimentation with drugs. Provides them with reasons not to use and builds social norms against such use. Domestic Violence\nTargets the legal system, healthcare providers and the religious community in an attempt to reduce the intergenerational violence, psychological problems, medical expenses and lost productivity caused by domestic violence. Homelessness\nProvides financial support to strengthen services for the homeless mentally ill, living in New York City. Conrad N. Hilton Humanitarian Prize\nDraws attention to exemplary efforts to combat the causes or effects of famine, wars, disease, extreme human affliction or man’ inhumanity to man, by annually awarding the Conrad H. Hilton Humanitarian Prize to voluntary, charitable or NGOs. By focusing on a notable organisation the foundation hopes to motivate support for this cause and stimulate other organisations helping those in need." + } + }, + { + "id": 5359, + "name": "Clean Clothes Campaign", + "address": "Clean Clothes Campaign Nieuwezijds Voorburgwal 292-sous 11584 Amsterdam Netherlands", + "country": "Netherlands", + "email": "info@cleanclothes.org", + "website": "http://www.cleanclothes.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Nieuwezijds Voorburgwal 292, Amsterdam, Netherlands", + "lat": 52.3707599, + "lng": 4.8898692, + "zoom": 14, + "place_id": "ChIJY0coasEJxkcRuMIaX-FXMeY", + "name": "Nieuwezijds Voorburgwal 292", + "street_number": "292", + "street_name": "Nieuwezijds Voorburgwal", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1012 RT", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/clean-clothes-campaign/", + "philea_info": { + "About": "The Clean Clothes Campaign was created in the late eighties, during a transition period for the garment industry. Between 1980 and 1990, garment prices worldwide fell by as much as 70%. At the same time, many garment companies were looking for cheaper production options and moved their production to low-wage countries. These processes did not go unnoticed. Activists began to hold garment companies to account for their responsibility in the late 1980s and media increasingly published stories of exploitation in the chains of well-known brands. In the fall of 1988, a group of concerned citizens in the Netherlands drew attention to the working conditions in a garment factory in the Philippines. The activists followed the garment from the factory to the store and discovered that the garment was destined for the Dutch brand C&A. After two years of action and pressure on the factory owner and powerful players in other parts of the production chain, the garment workers reached an agreement with the factory owner for salary compensation. This was a major victory for the garment workers, but not a systemic change in the garment industry. The factory owner himself opened a new factory in a new location not long after, with new garment workers earning at least 30% below the minimum wage. Research revealed similar cases in Bangladesh, India and Western Europe, and more organizations became involved. The Clean Clothes Campaign movement quickly found more allies in both consumer and production countries and from 1991 an ever-expanding global network was created: Clean Clothes Campaign, whose international office is located in Amsterdam and now includes 235 human rights and consumer interest groups, women’s groups and trade unions in both garment producing and consuming countries.", + "Mission": "The Clean Clothes Campaign Network works to structurally improve working conditions and support the empowerment of manufacturing workers in global garment and sportswear supply chains so that governments protect employment rights and human rights, companies respect these rights and workers have access to remedy for violations of these rights.", + "Geographic Focus": "Global", + "Programme Areas": "To achieve our vision, we:\n• Put pressure on companies to respect workers’ rights and use responsible purchasing practices;\n• Take up specific cases of violations of the rights of workers and activists in support of workers’ demands upon their request, and integrate learning from these cases into our strategy;\n• Raise awareness, campaign and mobilise people to undertake individual and collective action linked to their role as consumers, citizens, investors, workers or in other areas of life;\n• Use judicial mechanisms, lobby for legislation and regulation and call for binding mechanisms for corporate accountability to protect workers’ rights;\n• Develop alliances, including those with workers throughout the global garment and sportswear supply chain, to transform the business model and strengthen the global movement for workers’" + } + }, + { + "id": 5123, + "name": "City Bridge Foundation", + "address": "City of London, PO Box 270, Guildhall, London EC2P 2EJ", + "country": "United Kingdom", + "email": "funding@cityoflondon.gov.uk", + "website": "http://www.citybridgefoundation.org.uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "City of London, PO Box 270, Guildhall, London EC2P 2EJ", + "lat": 51.5159245, + "lng": -0.0913715, + "zoom": 14, + "place_id": "ChIJH08KIlUbdkgRsAqh3GUSyT4", + "street_number": "71", + "street_name": "Basinghall Street", + "street_name_short": "Basinghall St", + "city": "London", + "state": "England", + "post_code": "EC2V 7HH", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/city-bridge-foundation/", + "philea_info": { + "About": "City Bridge Foundation is one of London’s largest independent charitable funders, with a heritage spanning over 900 years. While it is responsible for maintaining five Thames bridges, its primary focus today is on philanthropy—using income from investments to support organisations tackling inequality and injustice across Greater London.", + "Mission": "The Foundation’s mission is to stand with Londoners by promoting fairness, equity and opportunity. Through its ten-year strategy Standing with Londoners, it seeks to empower communities, reduce inequalities and foster a city where everyone can thrive.", + "Geographic Focus": "Greater London, supporting initiatives that improve lives and opportunities across the capital.", + "Programme Areas": "The Foundation’s work is guided by four interconnected priorities: Climate Justice – Supporting communities most affected by environmental challenges, ensuring they have a voice in shaping a fair and inclusive transition to sustainability.\nAccess to Justice – Funding initiatives that help Londoners understand and exercise their rights, providing support in areas such as housing, employment, immigration and social welfare.\nRacial Justice – Addressing structural inequalities and discrimination by backing organisations that promote equity and inclusion across education, health, housing and the justice system.\nEconomic Justice – Tackling poverty and economic disparity by supporting projects that create pathways to employment, improve financial resilience and enable all Londoners to share in the city’s prosperity." + } + }, + { + "id": 5120, + "name": "Children's Investment Fund Foundation", + "address": "Children's Investment Fund Foundation 7 Clifford Street W1S 2FT London United Kingdom", + "country": "United Kingdom", + "email": "hnouss@ciff.org", + "website": "http://www.ciff.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "7 Clifford Street, London W1S 2FT, United Kingdom", + "lat": 51.51110310000001, + "lng": -0.1419121, + "zoom": 14, + "place_id": "ChIJ94G6bSoFdkgRyWA5sxpEAoc", + "name": "7 Clifford St", + "street_number": "7", + "street_name": "Clifford Street", + "street_name_short": "Clifford St", + "city": "London", + "state": "England", + "post_code": "W1S 2FT", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/childrens-investment-fund-foundation/", + "philea_info": { + "About": "SMART PHILANTHROPY\nThe Children’s Investment Fund Foundation was established in 2002 by Chris Hohn and Jamie Cooper. The co-founders set out to improve the lives of children living in poverty in developing countries through strategies that have lasting impact. With a rigorous business-like approach to philanthropic funding, the foundation was focused on clear returns for children from the outset. The emphasis on data to measure impact has been widely adopted by other development funders.", + "Mission": "CIFF is the world’s largest philanthropy that focuses specifically on improving children’s lives. “The original mission in setting up CIFF was to improve the lives of children in developing countries who live in poverty.” Championing Children – We are an independent philanthropic organisation, headquartered in London with offices in Nairobi and New Delhi. We work with a range of partners seeking to transform the lives of vulnerable children and adolescents in developing countries. Partnerships are critical, because it will take the combined efforts of many to tackle urgently the challenges faced by children and their families every day. Our programmes are designed to support bold ideas to seemingly intractable problems. We know that the returns on smart investments in areas such as children’s early development and adolescent girls are especially high. So we aim to play a catalytic role as a funder and influencer to deliver urgent and lasting change at scale. Areas of work include maternal and child health, adolescent sexual health, nutrition, education, and deworming, tackling child slavery and exploitation, and supporting smart ways to slow down and stop climate change. We place significant emphasis on quality data and evidence. For many of our grants, we work with partners to measure and evaluate progress to achieve large scale and sustainable impact. Transparency is also an important part of our grant-making. We publish information about our grants along with data, evidence and evaluations in a variety of ways, including on our comprehensive grant portfolio tool.", + "Geographic Focus": "Asia, including India, Bangladesh and China - Africa, including Kenya, Ethiopia, Tanzania, Malawi, Nigeria, Ghana - South America, including Brazil", + "Programme Areas": "SURVIVE & THRIVE\n– Nutrition\n– Health\n– Education\n– Deworming CLIMATE CHANGE\n– Energy\n– Urbanisation\n– Fluorinated Gases\n– Land Use CHILD PROTECTION\n– fight to end child slavery and prostitution" + } + }, + { + "id": 5119, + "name": "Paolo Chiesi Foundation", + "address": "Paolo Chiesi Foundation Largo Belloli 11A 43122 Parma Italy", + "country": "Italy", + "email": "", + "website": "https://www.paolochiesifoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "CHIESI Foundation onlus, Largo Francesco Belloli, 11a, 43122 Parma, Province of Parma, Italy", + "lat": 44.837427, + "lng": 10.3429247, + "zoom": 14, + "place_id": "ChIJ-9YF_CJAgEcRtk16ZtI7nJ4", + "name": "CHIESI Foundation onlus", + "street_number": "11a", + "street_name": "Largo Francesco Belloli", + "city": "Parma", + "state": "Emilia-Romagna", + "state_short": "PR", + "post_code": "43122", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/chiesi-foundation/", + "philea_info": { + "About": "To be an Integrated Foundation, the Paolo Chiesi Foundation has numerous strong links to the founding company. This decision has been driven by the will to harness the business acumen and networks of the founding company to create positive, impactful social change in the field of global health. For this reason, Paolo Chiesi Foundation promotes their mission beyond the borders, in those countries where the company does not have a commercial reach, and access to quality of care is not yet guaranteed.", + "Mission": "To promote health and alleviate the suffering of patients affected by respiratory and neonatal diseases.", + "Geographic Focus": "Low and middle income countries, specific focus on French-speaking sub-saharan African countries and South American countries", + "Programme Areas": "The foundations’s mission is pursued through scientific research and international cooperation programs. It works in partnership with local and international organisations by co-designing scientific research project and implementing two different models to improve the quality of neonatal care and to enhance the management of Chronic Respiratory Disease.\n• The NEST (Neonatal Essential Survival Technology) is a project designed by the Chiesi Foundation that aims to reduce neonatal mortality rates by improving the quality of neonatal care in countries with limited resources, paying specific attention to premature, sick, unwell and small for gestational age babies. The NEST project is currently implemented in Burkina Faso, Burundi, Togo and Benin.\n• The GASP (Global Access to Spirometry Project) is a project focused on the development of specific clinical skills for the diagnosis and management of chronic respiratory diseases such as asthma and chronic obstructive pulmonary disease (COPD), through the introduction of spirometry capacity and training activities. The GASP project is currently implemented in Guyana and Peru." + } + }, + { + "id": 5118, + "name": "Charles Stewart Mott Foundation", + "address": "Charles Stewart Mott Foundation 503 South Saginaw St., Suite 1200 48502 Flint, MI United States", + "country": "United States", + "email": "info@mott.org", + "website": "http://www.mott.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Charles Stewart Mott Foundation, 503 S Saginaw St #1200, Flint, MI 48502, United States", + "lat": 43.0158607, + "lng": -83.6904, + "zoom": 14, + "place_id": "ChIJO107KheCI4gRTYacAc2ko6Q", + "name": "Charles Stewart Mott Foundation", + "street_number": "503", + "street_name": "Saginaw Street", + "street_name_short": "Saginaw St", + "city": "Flint", + "state": "Michigan", + "state_short": "MI", + "post_code": "48502", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/charles-stewart-mott-foundation/", + "philea_info": { + "About": "The Charles Stewart Mott Foundation, a private philanthropy, was established by an automotive pioneer in 1926 in Flint, Michigan. Over the past two decades, it has greatly expanded its programming to support nonprofit programs throughout the United States and internationally.", + "Mission": "To support efforts that promote a just, equitable and sustainable society through its programs.", + "Geographic Focus": "Flint, Michigan; US; Central and eastern Europe (CEE); South Africa", + "Programme Areas": "The foundation is active in the following areas: – Civil Society\n– Environment\n– Flint Area\n– Education\n– Exploratory and Special Projects Civil Society\nHelps strengthening the role of philanthropy and the nonprofit sector in increasing civic engagement and improving communities and societies. Environment\nHelps to create accountable and responsive institutions, sound public policies and sustainable models of development that protect communities, as well as the diversity and integrity of selected ecosystems in North America and around the world. Flint Area\nHelps the foundation’s hometown of Flint, Michigan, develop into a well-functioning, connected community that’s capable of meeting economic, social and racial challenges. Education\nAims to create an environment in which all children and young people, particularly those from low- and moderate-income households, have access to quality educational experiences that help them achieve academic and economic success. Exploratory and Special Projects\nSupports unusual or unique opportunities addressing significant national and international problems. Proposals are by invitation only." + } + }, + { + "id": 5117, + "name": "Charities Aid Foundation", + "address": "Charities Aid Foundation 25 Kings Hill Avenue ME19 4TA Kings Hill United Kingdom", + "country": "United Kingdom", + "email": "enquiries@cafonline.org", + "website": "http://www.cafonline.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Charities Aid Foundation, 25 Kings Hill Avenue, Kings Hill, West Malling ME19 4TA, United Kingdom", + "lat": 51.2776417, + "lng": 0.3949744000000001, + "zoom": 14, + "place_id": "ChIJw6Pi7Ok130cRZoEb5rjdvhY", + "name": "Charities Aid Foundation", + "street_number": "25", + "street_name": "Kings Hill Avenue", + "street_name_short": "Kings Hill Ave", + "city": "West Malling", + "state": "England", + "post_code": "ME19 4TA", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/charities-aid-foundation/", + "philea_info": { + "About": "The origins of the Charities Aid Foundation (CAF) date back to 1924, when the National Council of Social Service set up a Charities Department to encourage more efficient giving to charity. In 1974, the department was re-constituted as the Charities Aid Foundation and registered as a charity with a board of independent trustees. We help individual donors to give more effectively; we support businesses to achieve greater impact with their giving and we help charities to thrive. We operate globally, distributing over £440m in donations a year to 100 countries. We work with 50,000 non-profit organisations. Drawing on our research and our practical experience of working with donors and charities, we work to protect the enabling environment for philanthropy in developed markets, and to build a culture of philanthropy in emerging markets.", + "Mission": "The Charities Aid Foundation’s mission is to motivate society to give ever more effectively, helping to transform lives and communities around the world. We help people and businesses support the causes they care about, and for charities, we provide simple and straightforward day-to-day banking and fundraising services, freeing them up to concentrate on the real work of making a difference.\nFor 90 years, we’ve found the most effective and efficient ways to connect donors to the causes that matter to them and for money to get where it’s needed. As a charity, making an impact in the charitable sector is what drives us.", + "Geographic Focus": "Offices in : America, Australia, Brazil, Bulgaria, Canada, India, Russia, South Africa the UK and partners across the globe.", + "Programme Areas": "CAF operates in the following areas: • Individual giving\n• Company giving\n• Working with charities\n• Grantmaking\n• Advisory and Consulting\n• Research and policy\n• International services Individual Giving\nHelps individuals plan their charitable giving, using means such as the CAF Charity Account, a system which acts like a current account for charitable-giving; Give As You Earn, a pre-tax payroll giving scheme; gift vouchers; legacy services; services for individuals who wish to make non-cash gifts; and a scheme to enable donors to provide enduring support for the causes they care about. Company Giving\nOffers advice and support to companies to help them engage more effectively with their employees and the community. Initiatives include the design and promotion of employee giving; matched giving; volunteer programmes; and special charity accounts. Working with Charities\nProvides charities with access to carefully selected fund management services, from banking and investments, to loan finance and donations management. Grantmaking\nHelps smaller charitable organisations manage themselves more effectively through the provision of development grants, training and consultancy support. Advisory and Consulting\nProvides charities with access to tailored consultancy services ranging from quick organisational reviews to longer-term assistance with charity mergers. Internationally, CAF Consulting works to increase the skill levels, enhance the flow of funds, and improve the long-term sustainability of NGOs. Research and Policy\nPublishes facts, information and analysis on the voluntary sector. The publications are targeted towards informing the decisions made by donors, charities, businesses and the government. International Services\nDelivers international donor services, including private and corporate social investment, and seeks to create a framework that enables giving to flourish." + } + }, + { + "id": 5108, + "name": "Carnegie UK Trust", + "address": "Carnegie United Kingdom Trust Andrew Carnegie House, Pittencrieff Street KY12 8AW Dunfermline, Fife United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.carnegieuktrust.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carnegie UK Trust, Andrew Carnegie House, Pittencrieff Street, Dunfermline, Fife KY12 8AW, United Kingdom", + "lat": 56.0715426, + "lng": -3.4705687, + "zoom": 14, + "place_id": "ChIJW_D-_iXSh0gRnGT6ssOIskI", + "name": "Carnegie UK Trust", + "street_name": "Pittencrieff Street", + "street_name_short": "Pittencrieff St", + "city": "Dunfermline", + "state": "Scotland", + "post_code": "KY12 8AW", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/carnegie-uk-trust/", + "philea_info": { + "About": "Founded in 1913, the Carnegie United Kingdom Trust was established as a think-tank and grantmaking organisation in the UK and Ireland. The trust is one of 22 based in the US and Europe, established by the Scottish-American, Andrew Carnegie. The Carnegie UK Trust has links with the network of sister trusts, one example being through co-organising the International Carnegie Medal for Philanthropy.", + "Mission": "To improve the welbeing of people throughout the UK and Ireland, by changing minds through influencing policy, and by changing lives through innovative practice and partnership work.", + "Geographic Focus": "UK and Ireland, also part of the international network of Carnegie foundations.", + "Programme Areas": "The 2016-2020 Strategic Plan sets three Strategic Objectives for the work of the trust: 1.Be a recognised leader in wellbeing and its links to public policy\n2.Be a champion for sharing learning between all jurisdictions of the UK and Ireland\n3.Make working across the public, private and voluntary sector more normal and valued These objectives are embedded across all of the trust’s work and through its strategic category of Enabling Wellbeing. The trust has selected three specific work areas in which to pursue its objectives. These are: Digital Futures, Flourishing Towns, Fulfilling Work – Digital Futures theme explores how the rapid advances in digital technology can be exploited to optimise improvements in wellbeing for people across the UK and Ireland\n– Flourising Towns: the trust seeks to play a leading role in supporting influential policy development and innovative practice in our towns\n– Enabling Wellbeing: theme explores the links between work and wellbeing the mechanisms for ensuring that the work has a positive influence on our wellbeing." + } + }, + { + "id": 5107, + "name": "Carlsberg Foundation", + "address": "Carlsbergfondet H.C. Andersens Boulevard 35 1553 Copenhagen V Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.carlsbergfondet.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carlsbergfondet, H. C. Andersens Boulevard, Copenhagen Municipality, Denmark", + "lat": 55.6731157, + "lng": 12.5738124, + "zoom": 14, + "place_id": "ChIJG6lQChNTUkYRuHvELW4UWjE", + "name": "Carlsbergfondet", + "street_number": "35", + "street_name": "H. C. Andersens Boulevard", + "street_name_short": "H. C. Andersens Blvd.", + "city": "København", + "post_code": "1553", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/carlsberg-foundation/", + "philea_info": { + "About": "CarlsbergFondet was established in 1876 by Brewer J.C. Jacobsen. Following his death in 1887, the Foundation became the sole owner of the Old Carlsberg Brewery. In 1902, the Carlsberg Foundation also became the owner of Carl Jacobsen’s New Carlsberg Brewery. When Carlsberg merged with Tuborg in 1970, the Carlsberg Foundation was awarded a mandatory ownership of at least 51% of the shares in Carlsberg A/S.", + "Mission": "The Carlsberg Foundation supports excellent basic research within the fields of natural science, the humanities and social science. Furthermore, the Foundation works to maintain and develop the Museum of National History at Frederiksborg Castle; to grant funds for socially beneficial objectives through the Tuborg Foundation; and to fund and manage the Carlsberg Laboratory, which is an independent unit under the Carlsberg Research Centre. Finally, the Carlsberg Foundation supports the arts through the New Carlsberg Foundation", + "Geographic Focus": "Denmark", + "Programme Areas": "The foundation supports basic scholarly objectives, helping to finance projects, apparatus and equipment, thesis printing, and travel and research visits. The Carlsberg Foundation funds scientific research within the natural sciences, humanities and social sciences. Through yearly grants the Foundations funds also funds research at its departments: Carlsberg Laboratory, The Museum of National History at Frederiksborg Castle, The Tuborg Foundation The foundation is active in the following areas: • Natural science, including mathematics and philosophy\n• Humanities and social sciences Scientific Social Responsibility (SSR) is a new approach that can best be described as a third dimension of scientists’ traditional responsibility for research and education.\nSSR means that the research supported by the Carlsberg Foundation must be visionary and innovative and must help solve a number of fundamental and universal social problems. This applies to the natural sciences as well as to the humanities and social sciences." + } + }, + { + "id": 5376, + "name": "Caritas Foundation Austria", + "address": "", + "country": "Austria", + "email": "", + "website": "http://www.caritas-foundation.at", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Austria", + "lat": 47.516231, + "lng": 14.550072, + "zoom": 14, + "place_id": "ChIJfyqdJZsHbUcRr8Hk3XvUEhA", + "name": "Austria", + "country": "Austria", + "country_short": "AT" + }, + "link": "https://philea.eu/members/caritas-foundation-austria/", + "philea_info": { + "About": "Because distress has a different face in every country, Caritas Foundation Austria, as a part of Caritas Austria, is involved in the international Caritas network in its foreign and disaster relief, in which more than 160 Caritas organizations worldwide are serving humanity.", + "Mission": "The core mission of Caritas is to see hardship and act against it. And to stand up and speak for those people who have no voice. This means respecting and protecting human life from beginning to end and helping people in distress, regardless of their background, religion or gender to lead a dignified and self-determined life. The objectives of Caritas Foundation Austria are:\na) The direct support of people in need;\nb) Helping people in need – regardless of their background, religion or gender;\nc) Providing assistance in national and international disaster situations;\nd) Combating poverty and hardship in developing countries by promoting economic and social development, which shall lead to a sustainable economic development and growth, combined with structural and social change.", + "Geographic Focus": "Austria, Europe, Africa", + "Programme Areas": "‘- Help for people in need\n– Care and support\n– Help for people with disabilities\n– Support for refugees and asylum seekers\n– Foreign aid" + } + }, + { + "id": 5106, + "name": "Captain Vassilis and Carmen Constantakopoulos Foundation", + "address": "Captain Vassilis and Carmen Constantakopoulos Foundation Zefyrou 60 P. Faliro 17564 Athens Greece", + "country": "Greece", + "email": "", + "website": "http://www.cvf.gr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION, Zefirou, Palaio Faliro, Greece", + "lat": 37.9385836, + "lng": 23.6953717, + "zoom": 14, + "place_id": "ChIJGyhnAT-8oRQRswlTl7h3aXs", + "name": "CAPTAIN VASSILIS & CARMEN KONSTANTAKOPOULOS FOUNDATION", + "street_number": "60", + "street_name": "Zefirou", + "city": "Paleo Faliro", + "state": "Notios Tomeas Athinon", + "post_code": "175 64", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/captain-vassilis-and-carmen-constantakopoulos-foundation/", + "philea_info": { + "About": "The aim of the Foundation is to establish Messinia as a model for sustainable development, by supporting and promoting related projects. In addition to that it supports similar efforts nationwide.\nThe Foundation focuses on three main axes, namely agricultural development, social support, and cultural development, while it supported environmental activities as well.\nThe Foundation works on a “bottom up” basis while keeping in close contact with all technical experts on its fields, ensuring relevance and technical expertise in its actions.", + "Mission": "The aim of the Foundation is to establish Messinia as a model for sustainable development, by supporting and promoting related projects. In addition to that it supports similar efforts nationwide.\nThe Foundation focuses on three main axes, namely agricultural development, social support, and cultural development, while it supported environmental activities as well.\nThe Foundation works on a “bottom up” basis while keeping in close contact with all technical experts on its fields, ensuring relevance and technical expertise in its actions.", + "Geographic Focus": "Greece, Southern Europe", + "Programme Areas": "Agriculture:\n– Centre for agricultural entrepreneurship: Since 2016 the Foundation with the technical advise of the American Farm School, has established and operates the Messinian Centre for Agricultural Entrepreneurship (KAEM).\nThe Center’s main goals are to teach the “art of entrepreneurship,” to support outreach and to develop collaborations with businesses in the agri-food sector, through actions pertaining to:\n1. The development of experiential seminars on agri-food topics.\n2. The development of entrepreneurial thinking and consulting services.\n3. The start of entrepreneurial activities, and observation of their progress.\n4. The creation of a pool of similar collaborative entrepreneurial activities.\n5. The grouping and interconnection for the outreach of producers and products in collaboration with other relevant sectors.\n– Precision Farming: Since 2018 we started a pilot project of precision farming in the area to train local farmers in the new technologies of farming. The project has delivered and soon we will move to more extensive coverage as well as new cultivations (grapes etc) Culture:\nThe Foundation supports a series of cultural contemporary events in the area such as the Kalamata Dance Festival, the Oxbelly initiative (film initiative) as well as a series of excavations of archaeological importance such as the Nestor’s Palace, the Thuria excavation, Iklaena excavation, Ancient Messini etc Social support:\nThe Foundation runs together with Children SOS Villages a Centre for Family and Employment Support. Its aim is to support families in all aspects. Children follow up activities after school while parents follow capacity building projects with a social worker, psychologist and employment consultant. In Athens together with “Metadrasi” the Foundation supports “Stepping Stone” a refugee integration project through employment and capacity building. CVCCF also supports a series of projects that support and engage people with special needs. Environment:\nThe Foundation supports WWF to monitor cetaceans in the Ionian sea. CVCCF also supports “Enaleia” organization in training fisherman in sustainable fishing. The Foundation also runs a series of local clean ups to enhance awareness and capacity building to the Municipalities." + } + }, + { + "id": 5104, + "name": "Calala Women's Fund", + "address": "Calala Women's Fund Girona 25 08010 Barcelona Spain", + "country": "Spain", + "email": "", + "website": "http://www.calala.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carrer de Girona, 25, 08010 Barcelona, Spain", + "lat": 41.3916922, + "lng": 2.1747488, + "zoom": 14, + "place_id": "ChIJ28kmXOWipBIRr6lTJkuhwZw", + "name": "Carrer de Girona, 25", + "street_number": "25", + "street_name": "Carrer de Girona", + "city": "Barcelona", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08010", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/calala-womens-fund/", + "philea_info": { + "About": "Calala gives grants to grassroots women’s organizations in Central America and Spain, mainly focused on migrant, young, indigenous, domestic workers women’s organizations. Calala also runs Cooperation Development projects with women’s organizations in Central America.", + "Mission": "Calala is a women’s fund based in Barcelona that promotes rights, empowerment and leadership of women in Central America, the Caribbean and Spain by mobilising resources set aside for strengthening their organisations, networks and movements.", + "Geographic Focus": "Spain and Central America", + "Programme Areas": "Calala focuses on Women’s Rights, Sexual and Reproductive Rights, Women Human Rights Defenders, Migrant women." + } + }, + { + "id": 5102, + "name": "Bulgarian Donors Forum", + "address": "Bulgarian Donors Forum 4B Leonardo da Vinchi Str., floor 2 1124 Sofia Bulgaria", + "country": "Bulgaria", + "email": "", + "website": "http://www.dfbulgaria.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "1124 Sofia, Bulgaria", + "lat": 42.6874493, + "lng": 23.3457036, + "zoom": 14, + "place_id": "ChIJv7yyXpiFqkAR2XFfjYGgBdQ", + "name": "1124", + "city": "Sofia", + "state": "Sofia City Province", + "post_code": "1124", + "country": "Bulgaria", + "country_short": "BG" + }, + "link": "https://philea.eu/members/bulgarian-donors-forum/", + "philea_info": { + "About": "" + } + }, + { + "id": 5101, + "name": "Both ENDS", + "address": "Both ENDS Nieuwe Keizersgracht 45 1018 VC Amsterdam Netherlands", + "country": "Netherlands", + "email": "", + "website": "http://www.bothends.org", + "type": { + "value": "member", + "label": "Associate member" + }, + "position": { + "address": "Nieuwe Keizersgracht 45, 1018 VC Amsterdam, Netherlands", + "lat": 52.36574659999999, + "lng": 4.906903300000001, + "zoom": 14, + "place_id": "ChIJVYVl5JcJxkcRkroYCcBnqIA", + "name": "Nieuwe Keizersgracht 45", + "street_number": "45", + "street_name": "Nieuwe Keizersgracht", + "city": "Amsterdam", + "state": "Noord-Holland", + "state_short": "NH", + "post_code": "1018 VC", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/both-ends/", + "philea_info": { + "About": "In 1986, representatives from 15 Dutch environmental organisations met to discuss the daily reality that thousands of nature- and environmental organisations in developing countries have to cope with. utch environmental organisations created Both ENDS: Environment and Development Service. The former IUCN-ledencontact (now IUCN Netherlands) adopted Both ENDS as a project and gave it a home. The project’s goal was to offer support and guidance to organisations around the world. Since 1986, Both ENDS has supported many hundreds of environmental organisations in Africa, Asia, Latin America and countries in Central- and Eastern Europe.", + "Mission": "Both ENDS is an independent non-governmental organisation (NGO) that works towards a sustainable future for the planet. They do so by identifying and strengthening civil society organisations (CSOs), mostly in developing countries, that come up with sustainable solutions for environmental and poverty-related issues.", + "Programme Areas": "WATER Both ENDS supports Southern civil society organisations and networks that are fighting against non-sustainable solutions and trying to come up with alternative approaches to sustainable water management. LAND Deforestation and forest degradation, the production of soy and palm oil: the challenges that are created by this as well as the strive for Social Responsibility are central focus areas for Both ENDS in its sustainable land usage programmes. CAPITAL FLOWS Human interaction with the environment and natural resources is often largely determined by developments and decisions made on an economic- (trade and investment) and political (macro-economic policy, budget) level. Both ENDS does it utmost to influence decision-making processes and to anticipate the processes that generate trade- and international funding." + } + }, + { + "id": 5100, + "name": "Bodossaki Foundation", + "address": "Bodossaki Foundation Mourouzi 14 10674 Athens Greece", + "country": "Greece", + "email": "", + "website": "http://www.bodossaki.gr/en", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bodossaki Foundation, Mourouzi 14, Athens 106 74, Greece", + "lat": 37.9749303, + "lng": 23.7424664, + "zoom": 14, + "place_id": "ChIJFaVBWUC9oRQRMIVlYekEh8U", + "name": "Bodossaki Foundation", + "street_number": "14", + "street_name": "Mourouzi", + "city": "Athina", + "state": "Kentrikos Tomeas Athinon", + "post_code": "106 74", + "country": "Greece", + "country_short": "GR" + }, + "link": "https://philea.eu/members/bodossaki-foundation/", + "philea_info": { + "About": "The Bodossaki Foundation was established in 1973 and is one of the most respected privately owned public-benefit organisations in Greece. It exists and thrives thanks to the long-standing, determined and consistent efforts of its founder, Prodromos Bodossakis – Athanassiades to support the state, society and his fellow people. It is a legacy of the tradition he himself maintained, together with many other Greek benefactors and representatives of the Greek diaspora.\nProdromos Bodossakis – Athanassiades was one of the most important Greeks of the 20th century. A talented entrepreneur, gifted with imagination, vision and courage, he generated an important personal fortune, which he dedicated to the progress of the Greek people. The Bodossaki Foundation is the culmination of his personal journey and the continuity and evolution of his personal vision for a better Greece.", + "Mission": "The Bodossaki Foundation is currently active in four main strategic pillars: education, health, protection of the environment and the empowerment of civil society.\nThe Foundation has deep knowledge of the non-profit sector in Greece and since its inception it has managed more than €450 million, which has been disbursed placing great emphasis on increasing equal opportunities, on contributing to the education of young people, on improving medical and research infrastructure and on promoting environmental protection.\nIts vision is to enable human and social potential for a better life.", + "Geographic Focus": "Greece", + "Programme Areas": "The foundation is active in the following areas: Supporting education and scientific excellence\nThe Foundation’s scholarship programmes offer Greek graduates the opportunity to continue their studies at a postgraduate, doctoral or post-doctoral level. By supporting university research laboratories and other research centers, the Foundation empowers Greek scientists to stay in Greece and continue to support their homeland through their work. Through the Bodossaki scientific awards and prizes, the Foundation promotes scientific excellence and fosters positive role models for the Greek society. Promoting health, the environment and innovation\nIn the area of health, the Foundation funds the development of infrastructure and the construction of public hospitals and clinics, as well as the acquisition of medical and laboratory equipment, aiming to ensure equal access to health and medical services and to improve the quality of healthcare, particularly for socially vulnerable groups.\nThe Foundation has also supported a large number of projects promoting environmental protection, working with universities and environmental organisations. It also supports innovation and entrepreneurship, in cooperation with universities, banks, embassies and innovation clusters. To strengthen the connection between innovative research and entrepreneurship, the Foundation implements an innovative funding programme for the granting of IP rights (patents) to researchers in Greek universities and research centers. Supporting civil society\nThe Bodossaki Foundation has deep knowledge of the non-profit sector in Greece as well as of emerging and long-term social needs. The Foundation applies a needs assessment methodology in the design of each programme. Programmes and grants management implementation and monitoring is executed on the basis of a Results-Based-Methodology (RBD). The Foundation also works with third parties (such as businesses and other not-for-profit organisations) which are active in corporate social responsibility, in order to identify, develop, implement and monitor social investment programmes that match the organisation’s strategic needs and priorities and can deliver economic and social benefits for all stakeholders.\nThrough the management of the 7,34m Euro funding of the EEA Grants NGO programme for Greece (2013 – 2017), Bodossaki has directly supported more than 100 NGOs which delivered a total number of 75 projects across Greece, reaching out to more than 205,000 beneficiaries. In partnership with SolidarityNow, Bodossaki currently acts as the Fund Operator of the new EEA Grants NGO fund named “Active Citizens Fund”, with a total budget of 12m euros for Greece. Attracting donations and grants\nThrough the Bodossaki Foundation, anyone wishing to fund public benefit projects in Greece – whether a corporate entity, not-for-profit organisation or private donor – can do so and benefit from the team’s experience and expertise in philanthropy consulting and programme management. Potential donors will also benefit from the Foundation’s mechanisms of implementation and monitoring, established to secure transparency, accountability and maximisation of each programme or donation’s impact. Sustainability through capacity building\nThe Foundation closely supports NGOs and project partners with learning, mentoring and networking opportunities through Social Dynamo, its NGO hub implemented in cooperation with the synAthina team of the Municipality of Athens. Thanks to the contribution of a wide network of collaborators and partners from the non-profit and the private sector, NGOs and informal groups are supported with training, consulting, mentoring and coaching services." + } + }, + { + "id": 5099, + "name": "BMW Foundation Herbert Quandt", + "address": "BMW Foundation Herbert Quandt Reinhardstrasse 58 10117 Berlin Germany", + "country": "Germany", + "email": "", + "website": "http://bmw-foundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "BMW Foundation Herbert Quandt, Reinhardtstraße 58, 10117 Berlin, Germany", + "lat": 52.5222139, + "lng": 13.3765928, + "zoom": 14, + "place_id": "ChIJK4FKf8BRqEcRSQWAg1ayVZg", + "name": "BMW Foundation Herbert Quandt", + "street_number": "58", + "street_name": "Reinhardtstraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10117", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/bmw-foundation-herbert-quandt/", + "philea_info": { + "About": "The BMW Foundation Herbert Quandt was established on June 22, 1970, on the occasion of the 60th birthday of Herbert Quandt and in recognition of his services to BMW AG. Through annual donations, BMW AG in addition contributes to the payment of the foundation’s personnel and material costs. For its further development, the foundation adheres to the “Principles of Good Foundation Practice”, formulated by the Association of German Foundations.", + "Mission": "• The BMW Foundation Herbert Quandt promotes responsible leadership and inspires leaders worldwide to work towards a peaceful, just and sustainable future. Through their activities, the Foundation aims to advance the Sustainable Development Goals of the United Nations 2030 Agenda.\n• They INSPIRE leaders, through leadership programs and encounters, to take their social and political commitment to the next level – across communities, cultures and countries.\n• They CONNECT leaders through their global BMW Foundation Responsible Leaders Network, a diverse, collaborative and joyful community that drives positive change through collaborative action.\n• They INVEST in impactful organisations while encouraging leaders to embrace venture philanthropy and impact investing as effective tools for social change.", + "Geographic Focus": "Europe, North America, Asia, South America, North Africa & Middle East", + "Programme Areas": "The foundation works in the following areas: • Social cohesion\n• Responsibility in society (Responsible leadership)" + } + }, + { + "id": 5098, + "name": "Gates Foundation", + "address": "Gates Foundation, 5th Avenue North, Seattle, WA, USA", + "country": "United States", + "email": "", + "website": "http://www.gatesfoundation.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Gates Foundation, 5th Avenue North, Seattle, WA, USA", + "lat": 47.6233319, + "lng": -122.3465813, + "zoom": 14, + "place_id": "ChIJM3d0rEcVkFQRHe-TbdJ-y68", + "street_number": "500", + "street_name": "5th Avenue North", + "street_name_short": "5th Ave N", + "city": "Seattle", + "state": "Washington", + "state_short": "WA", + "post_code": "98109", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/gates-foundation/", + "philea_info": { + "About": "The foundation was created in 2000 through the merger of the Gates Learning Foundation, which worked to expand access to technology through public libraries, and the William H. Gates Foundation, which focused on improving global health.", + "Mission": "To help all people lead healthy, productive lives; to improve people’s health in developing countries and to give them the chance to lift themselves out of hunger and extreme poverty; and to ensure that all people in the United States – especially those with the fewest resources – have access to the opportunities they need to succeed in school and life.", + "Geographic Focus": "Africa, Asia, Australia, Europe and the US", + "Programme Areas": "The foundation supports programmes in the following areas: •Global Development Program\n•Global Health Program\n•Global Policy and Advocacy\n•United States Program Global Development\nWorks to help the world’s poorest people lift themselves out of hunger and poverty. Global Health\nAims to harness advances in science and technology to save lives in developing countries. Global Policy and Advocacy\nSeeks to build strategic relationships and promote policies that will help advance our work. United States\nWorks to improve U.S. high school and postsecondary education and support vulnerable children and families in Washington State." + } + }, + { + "id": 5097, + "name": "Bikuben Foundation", + "address": "Bikuben Foundation Otto Mønsteds Gade 5 1571 Copenhagen V Denmark", + "country": "Denmark", + "email": "", + "website": "http://www.bikubenfonden.dk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Otto Mønsteds Gade 5, Copenhagen Municipality, Denmark", + "lat": 55.6712256, + "lng": 12.5728347, + "zoom": 14, + "place_id": "ChIJM7NnNxNTUkYRwtqISVdNOuo", + "name": "Otto Mønsteds Gade 5", + "street_number": "5", + "street_name": "Otto Mønsteds Gade", + "city": "København", + "post_code": "1571", + "country": "Denmark", + "country_short": "DK" + }, + "link": "https://philea.eu/members/bikuben-foundation/", + "philea_info": { + "About": "The Bikuben Foundation has its historical roots in the mission of the savings bank movement. The Bikuben savings bank (“Sparekassen Bikuben”) was established in 1857 not only with the commercial aim of operating as a bank – it was also to use some of its profits for charitable purposes.", + "Mission": "To make lasting improvements to the societies of Denmark and Greenland, through the promotion of culture, education, natural resources and social work.", + "Geographic Focus": "Denamrk and Greenland", + "Programme Areas": "Stage art/theatre\nExhibitions and arts\nTalent development (arts)\nHomeless youngsters and adults\nPoverty and vulnerable families\nYouth community projects\nChildren and youngsters in Greenland\nArts as a Driver of social change\nNature as a driver of social change" + } + }, + { + "id": 5096, + "name": "Bertelsmann Stiftung", + "address": "Bertelsmann Stiftung Carl-Bertelsmann-Straße 256 Postfach 103 33311 Gütersloh Germany", + "country": "Germany", + "email": "", + "website": "http://www.bertelsmann-stiftung.de", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Carl-Bertelsmann-Straße 256, Gütersloh, Germany", + "lat": 51.9086764, + "lng": 8.4190329, + "zoom": 14, + "place_id": "ChIJ28HLgm0lukcRmopbhV6HgnQ", + "name": "Carl-Bertelsmann-Straße 256", + "street_number": "256", + "street_name": "Carl-Bertelsmann-Straße", + "city": "Gütersloh", + "state": "Nordrhein-Westfalen", + "state_short": "NRW", + "post_code": "33311", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/bertelsmann-stiftung/", + "philea_info": { + "About": "Bertelsmann Stiftung was established by Reinhard Mohn in 1977, who in 1993 transferred 68.8% of the capital shares in the Bertelsmann Corporation as non-voting shares to the foundation. Currently, the foundation’s share in Bertelsmann AG is 76.9%. The remaining 23.1% belong to the Mohn family. The foundation conducts its nonprofit-making activities in the philanthropic traditions of the founder families, Bertelsmann and Mohn.", + "Mission": "“Inspiring people. Shaping the future. Participating in a globalised world.”\nThe foundation aims to perceive problems within society, to help solve them by developing exemplary models with experts from practical and theoretical fields, and to put these models into effect in society.", + "Geographic Focus": "Germany and International", + "Programme Areas": "The foundation initiates and carries out projects itself, working with partners in business, government and private institutions, in the following areas: – Discovering Music\n– Living Values\n– Business in Society\n– Leadership and Corporate Culture\n– Germany and Asia\n– Integration and Education\n– Learning for Life\n– Effective Investments in Education\n– Future of Democracy\n– CHE Centre for Higher Education\n– Communities for Better Living\n– Improving Health Care – Informing Patients\n– Civil Society\n– Shaping Sustainable Economies\n– Europe’s Future\n– International Fora and Trends" + } + }, + { + "id": 5094, + "name": "Belgian Federation of Philanthropic Foundations", + "address": "Network of Belgian Foundations Rue Brederode, 21 1000 Brussels Belgium", + "country": "Belgium", + "email": "", + "website": "https://www.lesfondations.be", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Rue Brederode 21, Brussels, Belgium", + "lat": 50.84035859999999, + "lng": 4.362291999999999, + "zoom": 14, + "place_id": "ChIJhfN5jYbEw0cRHuAIcALpV1M", + "name": "Rue Brederode 21", + "street_number": "21", + "street_name": "Rue Brederode", + "city": "Bruxelles", + "state": "Bruxelles", + "post_code": "1000", + "country": "Belgium", + "country_short": "BE" + }, + "link": "https://philea.eu/members/belgian-federation-of-philanthropic-foundations/", + "philea_info": { + "About": "" + } + }, + { + "id": 5093, + "name": "Barrow Cadbury Trust", + "address": "Barrow Cadbury Trust Kean House, 6 Kean Street WC2B 4AS London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.barrowcadbury.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Barrow Cadbury, Kean House, 6 Kean Street, London WC2B 4AS, United Kingdom", + "lat": 51.5136092, + "lng": -0.1184067, + "zoom": 14, + "place_id": "ChIJiRKposoEdkgRvZQxZ2hmaSQ", + "name": "Barrow Cadbury", + "street_number": "6", + "street_name": "Kean Street", + "street_name_short": "Kean St", + "city": "London", + "state": "England", + "post_code": "WC2B 4AS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/barrow-cadbury-trust/", + "philea_info": { + "About": "The Trust was founded in 1920 by Barrow Cadbury and his wife Geraldine Southall Cadbury. Barrow was the grandson of John Cadbury, the founder of the family-run chocolate business in Birmingham where Barrow worked for almost 50 years, succeeding his uncle George as Chairman in 1918. He and Geraldine were committed Quakers who chose to live modestly themselves and establish the Trust. In time, their children became Trustees and their son, Paul Cadbury, took over as Chair in 1959. Paul, his sisters and many of their descendants have all given time to being Trustees and added generously to the Trust’s endowment. The concerns of the founders and five generations of their family are still reflected in the work of the Trust today.", + "Mission": "The Barrow Cadbury Trust’s vision is of a peaceful and equitable society, free from discrimination and based on the principle of social justice for all.\nThe Trust’s mission is to use all of its assets to work with others to bring about structural change for a more just and equal society.", + "Geographic Focus": "UK, particularly the West Midlands", + "Programme Areas": "The Trust has three programmes :\n– Criminal justice,\n– Migration,\n– Economic justice,\n– An additional social investment programme which operates in a different way from the other three programmes. Criminal Justice\nThrough its Criminal Justice Programme, Barrow Cadbury Trust’s principal aim is to strengthen the evidence base for structural and practical change for young adults and women and increase the criminal justice system’s ability to support their rehabilitation and desistance from crime. Migration\nThe aim of the migration programme is to promote an immigration system that is fair to both migrants and established residents and a policy and public debate on migration and integration that is based on shared values as well as evidence. Economic Justice\nBy exploring good practice and innovation in financial systems that actively promote financial inclusion the foundation intends spread creative solutions and encourage new conversations and partnerships. Social Investment\nIn 2010 the trustees decided to use part of the foundation’s endowment to further the aims of the Trust through investments in charities and social enterprises, aiming to achieve both a social and a financial return with the funds." + } + }, + { + "id": 5091, + "name": "Bader Philanthropies, Inc.", + "address": "Bader Philanthropies, Inc. 3300 N. Dr. Martin Luther King Jr. Drive WI 53212 Milwaukee United States", + "country": "United States", + "email": "", + "website": "http://www.bader.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Bader Philanthropies, Inc., 3300 North Dr. Martin Luther King Jr. Drive, Milwaukee, WI 53212, United States", + "lat": 43.0793942, + "lng": -87.9161896, + "zoom": 14, + "place_id": "ChIJfYyA86MZBYgRRYfOsetMQ-o", + "name": "Bader Philanthropies, Inc.", + "street_number": "3300", + "street_name": "North Doctor Martin Luther King Junior Drive", + "street_name_short": "N Doctor M.L.K. Jr Dr", + "city": "Milwaukee", + "state": "Wisconsin", + "state_short": "WI", + "post_code": "53212", + "country": "United States", + "country_short": "US" + }, + "link": "https://philea.eu/members/bader-philanthropies-inc/", + "philea_info": { + "About": "Bader Philanthropies, Inc. encompass two distinct philanthropic funds to reflect the values and interests of their respective namesakes:\nThe Helen Daniels Bader Fund (HDBF) will focus its interest in healthier older adults, as well the passion for the arts and creativity. HDBF will further healthy aging in Wisconsin, particularly with respect to the impact of Alzheimer’s disease, as well as its efforts to address Alzheimer’s in Israel. In Milwaukee, HDBF will bring community arts to underserved audiences, while the Helen Bader Scholarship Fund will continue to help keep a Jewish day school education in reach for local families.", + "Mission": "Bader Philanthropies, Inc. strives to be a philanthropic leader in improving the quality of life of the diverse communities in which it works. Through the Helen Daniels Bader Fund and the Isabel & Alfred Bader Fund, the Foundation makes grants, convenes partners, shares knowledge to affect emerging issues in key areas.", + "Geographic Focus": "United States, Israel, Czech Republic", + "Programme Areas": "‘- Alzheimer’s and aging;\n– Youth education;\n– Workforce development;\n– Community improvement;\n– Arts" + } + }, + { + "id": 5090, + "name": "Aydin Dogan Vakfi", + "address": "Aydin Dogan Vakfi Burhaniye Mah. Kısıklı Cad. No:65 PK 34676 Üsküdar-İstanbul Turkey", + "country": "Turkey", + "email": "", + "website": "http://www.aydindoganvakfi.org.tr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Burhaniye, Kısıklı Caddesi No:65, Üsküdar/İstanbul, Turkey", + "lat": 41.0237261, + "lng": 29.0487789, + "zoom": 14, + "place_id": "ChIJx2Saqh3IyhQRMDPMMiEeYXs", + "name": "Kısıklı Cd. No:65", + "street_number": "65", + "street_name": "Kısıklı Caddesi", + "street_name_short": "Kısıklı Cd.", + "state": "İstanbul", + "post_code": "34676", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/aydin-dogan-vakfi/", + "philea_info": { + "About": "The Aydın Doğan Foundation believes and works toward the ideal that democracy is an administrative style that cannot be given up, and that a powerful, respected modern society can be created through the efforts of modern generations educated a) to honour universal values and b) to contribute to the solutions of social and economic problems.", + "Mission": "To improve the quality of education, support media studies, and promote cultural and social advancement in Turkey.", + "Geographic Focus": "Turkey", + "Programme Areas": "The foundation works in the following areas: • Education, including support to schools and dormitories\n• Competitions (Aydin Dogan International Cartoon Competition; The Young Communications Award; The Aydin Dogan Awards)" + } + }, + { + "id": 5088, + "name": "Associazione di Fondazioni e di Casse di Risparmio Spa", + "address": "Associazione di Fondazioni e di Casse di Risparmio via del Corso 267 00186 Rome Italy", + "country": "Italy", + "email": "", + "website": "http://www.acri.it", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Via del Corso, 267, 00186 Rome, Metropolitan City of Rome, Italy", + "lat": 41.8980305, + "lng": 12.4818649, + "zoom": 14, + "place_id": "ChIJE5Gwek1gLxMRuYkby5jT9eQ", + "name": "Via del Corso, 267", + "street_number": "267", + "street_name": "Via del Corso", + "city": "Roma", + "state": "Lazio", + "state_short": "RM", + "post_code": "00186", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/associazione-di-fondazioni-e-di-casse-di-risparmio-spa/", + "philea_info": { + "About": "The Association of Italian Foundations and Savings Banks (Associazione di Fondazioni e di Casse di Risparmio Spa, ACRI) was established in 1912 by Savings banks. Starting from 1990, the association shifted gradually its focus from savings banks to foundations of banking origin (established in the early ’90 by a specifc law called ‘Amato law’ by the name of the Prime Minister who promoted it). ACRI promotes and supports the activity of foundations of banking origin and savings bank, providing them with services, training, advocacy actions and running common projects at a national level.", + "Mission": "ACRI’s statutory goals are: to represent and protect the interests of its members, so that they can achieve their institutional goals, safeguard their assets and pursue economic and technical development; to coordinate its members’ activities in their areas of interest for greater effectiveness as well as to encourage the implementation of joint and common-interest projects; to search and foster cooperation opportunities between members and Italian and foreign entities, companies and relevant organisations; to negotiate the terms and conditions of conventions and agreements to be submitted to the members for approval." + } + }, + { + "id": 5367, + "name": "Association of Liechtenstein Charitable Foundations and Trusts", + "address": "Vereinigung Liechtesteiner gemeinnütziger Stiftungen Aeulestrasse 6 Postfach 882 9490 Vaduz Liechtenstein", + "country": "Liechtenstein", + "email": "", + "website": "http://www.vlgs.li", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Aeulestrasse 6, Vaduz, Liechtenstein", + "lat": 47.1404575, + "lng": 9.5207958, + "zoom": 14, + "place_id": "ChIJCyeE9mcxm0cRe985CDnHZLk", + "name": "Aeulestrasse 6", + "street_number": "6", + "street_name": "Aeulestrasse", + "city": "Vaduz", + "state": "Vaduz", + "post_code": "9490", + "country": "Liechtenstein", + "country_short": "LI" + }, + "link": "https://philea.eu/members/association-of-liechtenstein-charitable-foundation-and-trusts/", + "philea_info": { + "About": "The association is a advocacy group for non-profit foundations. It functions as a partner to political authorities and other organisations and promotes the reputation of non-profit foundations in Liechtenstein across its borders.", + "Mission": "The purpose of the association is to promote and increase awareness of the foundation concept, in particular of the possibilities and benefits of non-profit foundations in Liechtenstein. As means to achieving this purpose, there are plans to build a network of non-profit foundations, exercise political influence to promote the concept of the foundation in general and promote the issue of charitable causes in general via collaboration between various non-profit foundations. Interests will also be represented towards the authorities and supported in general by public relations work." + } + }, + { + "id": 5103, + "name": "Association of German Foundations", + "address": "Bundesverband Deutscher Stiftungen e.V Haus Deutscher Stiftungen, Mauerstr. 93 10117 Berlin Germany", + "country": "Germany", + "email": "", + "website": "http://www.stiftungen.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Mauerstraße 93, Berlin, Germany", + "lat": 52.50816870000001, + "lng": 13.3897489, + "zoom": 14, + "place_id": "ChIJj9hKDdFRqEcRBcYFO9DX_SY", + "name": "Mauerstraße 93", + "street_number": "93", + "street_name": "Mauerstraße", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10117", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/association-of-german-foundations/", + "philea_info": { + "About": "" + } + }, + { + "id": 5126, + "name": "Association of Finnish Foundations", + "address": "Council of Finnish Foundations Fredrikinkatu 61A 00100 Helsinki Finland", + "country": "Finland", + "email": "", + "website": "https://saatiotrahastot.fi/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Fredrikinkatu 61a, Helsinki, Finland", + "lat": 60.1679008, + "lng": 24.9322093, + "zoom": 14, + "place_id": "ChIJ1T8VyjQKkkYRSXGQebWTgUk", + "name": "Fredrikinkatu 61a", + "street_number": "61a", + "street_name": "Fredrikinkatu", + "city": "Helsinki", + "city_short": "HKI", + "post_code": "00100", + "country": "Finland", + "country_short": "FI" + }, + "link": "https://philea.eu/members/association-of-finnish-foundations/", + "philea_info": { + "About": "The Association of Finnish Foundations (Säätiöt ja rahastot ry in Finnish) is an association for Finnish grant providers, the only benefit and support organisation for foundations in Finland. The association, founded in 1970, now has a membership comprising 250 grant-making foundations and associations. The members support Finnish research, art, and societal development annually with over half a billion euros. The association has no grant-making programme of its own.", + "Programme Areas": "The Council represents grant-making foundations in their relations with public authorities, and oversees the interests of its membership in various ways, such as by issuing opinions on proposals to reform the laws that govern the interests of foundations and other grant-making organizations. The Council also enables its members to exchange information and views on questions of common concern. The Council of Finnish Foundations arranges Training for fiduciaries and functionaries working in member organisations and also a biannual seminar on matters of topical concern in the field of foundations and grants. The Council also published guidelines, reports and studies on foundations." + } + }, + { + "id": 5087, + "name": "Association of Charitable Foundations (ACF)", + "address": "Association of Charitable Foundations 28 Commercial Street (Fourth Floor) E1 6LS London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.acf.org.uk", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Association Of Charitable Foundations, 28 Commercial Street, London E1 6LS, United Kingdom", + "lat": 51.5164153, + "lng": -0.0725896, + "zoom": 14, + "place_id": "ChIJ4wwCOCUbdkgRWMUs6rJXWfg", + "name": "Association Of Charitable Foundations", + "street_number": "28", + "street_name": "Commercial Street", + "street_name_short": "Commercial St", + "city": "London", + "state": "England", + "post_code": "E1 6LS", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/association-of-charitable-foundations/", + "philea_info": { + "About": "Association of Charitable Foundations (ACF) is the membership body for UK foundations and grant-making charities. Driven by a belief that foundations are a vital source for social good, our mission is to support them to be ambitious and effective in the way that they use their resources. We do this through the provision of policy and advocacy, research and information, and a wide-ranging programme of events and learning. Our 380 members collectively hold assets of around £50bn and give over £2.5bn annually. They range in size from large foundations with paid staff distributing over £20m a year each, to small often local volunteer-run trusts distributing less than £100,000 a year.", + "Mission": "Driven by the belief that foundations are a vital source for social good:\nACF SUPPORTS foundations in achieving their charitable objectives\nACF ADVOCATES on behalf of foundations for an enabling policy, legislative and operating environment;\nACF CONNECTS foundations to people, organisations, governments and movements relevant to their work;\nACF INSPIRES foundations to be ambitious and effective in the way that they use their resources.\nIn order to achieve this, it must be ensured that …\nACF THRIVES and is sustainable, supporting members over the longer term." + } + }, + { + "id": 5366, + "name": "Association for the Practice of Transformation", + "address": "", + "country": "Romania", + "email": "", + "website": "https://inspire-change.org/", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Romania", + "lat": 45.943161, + "lng": 24.96676, + "zoom": 14, + "place_id": "ChIJw3aJlSb_sUARlLEEqJJP74Q", + "name": "Romania", + "country": "Romania", + "country_short": "RO" + }, + "link": "https://philea.eu/members/association-for-the-practice-of-transformation/", + "philea_info": { + "About": "" + } + }, + { + "id": 5089, + "name": "Assifero – Associazione italiana delle fondazioni ed enti filantropici", + "address": "Assifero (Associazione delle fondazioni di erogazione) Corso Magenta, 71 20123 Milan Italy", + "country": "Italy", + "email": "", + "website": "http://www.assifero.org", + "type": { + "value": "affiliate", + "label": "Philanthropy infrastructure organisation" + }, + "position": { + "address": "Corso Magenta, 71, 20123 Milan, Metropolitan City of Milan, Italy", + "lat": 45.465581, + "lng": 9.16976, + "zoom": 14, + "place_id": "ChIJG2aISlrBhkcRs3Ut_WEAd2w", + "name": "Corso Magenta, 71", + "street_number": "71", + "street_name": "Corso Magenta", + "city": "Milano", + "state": "Lombardia", + "state_short": "MI", + "post_code": "20123", + "country": "Italy", + "country_short": "IT" + }, + "link": "https://philea.eu/members/assifero-associazione-italiana-delle-fondazioni-ed-enti-filantropici/", + "philea_info": { + "About": "" + } + }, + { + "id": 5084, + "name": "Arcadia", + "address": "Arcadia Fund 5 Young Street Sixth Floor W8 5EH London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "https://arcadiafund.org.uk/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "5 Young Street, London, UK", + "lat": 51.5017685, + "lng": -0.1897595, + "zoom": 14, + "place_id": "ChIJ6cpZs_cPdkgRjPeW5vL9LFI", + "name": "5 Young St", + "street_number": "5", + "street_name": "Young Street", + "street_name_short": "Young St", + "city": "London", + "state": "England", + "post_code": "W8 5EH", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/arcadia/", + "philea_info": { + "About": "Arcadia is a family charitable foundation. It was founded by Lisbet Rausing and Peter Baldwin in 2002. They are led by their donor board and supported by an expert advisory board and a small London-based team.", + "Mission": "Arcadia helps people to record cultural heritage, to conserve and restore nature, and to promote open access to knowledge. We want future generations to enjoy the diversity of human culture and the natural world.", + "Geographic Focus": "World", + "Programme Areas": "1. Conserving and restoring nature: We want nature to survive and flourish. Our grants support solutions to the global biodiversity and climate crises.\n2. Recording cultural heritage: We want future generations to have knowledge of the world’s cultural diversity. Our grants support digital documentation of cultural heritage which is poorly recorded and under threat.\n3. Promoting open access: We want knowledge to be free for anyone, anywhere to access and use. Our grants help make knowledge available for free online, and help people find and use it." + } + }, + { + "id": 5082, + "name": "Anadolu Eğitim ve Sosyal Yardım Vakfı", + "address": "Anadolu Eğitim ve Sosyal Yardım Vakfı Fatih Sultan Mehmet Mah. Balkan Cad. No:58 Buyaka E Blok 34771 Tepeüstü / Ümraniye Turkey", + "country": "Turkey", + "email": "", + "website": "http://www.anadoluvakfi.org.tr", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Fatih Sultan Mehmet, E, Balkan Caddesi, Ümraniye/İstanbul, Turkey", + "lat": 41.0232852, + "lng": 29.12607, + "zoom": 14, + "place_id": "ChIJt3hC9dnIyhQReD4eaI97HyA", + "name": "E", + "street_number": "62", + "street_name": "Balkan Caddesi", + "street_name_short": "Balkan Cd.", + "state": "İstanbul", + "post_code": "34770", + "country": "Turkey", + "country_short": "TR" + }, + "link": "https://philea.eu/members/anadolu-egitim-ve-sosyal-yardim-vakfi/", + "philea_info": { + "About": "The Anadolu Group was founded in 1950 by Azici and Ozilhan families and is today the fifth bottling company in the world, in terms of the production, marketing and sales operations. The Anaddolu Foundation was established in 1979 with the goal to create a permanent programme of free services in an aray of areas, including health and education. The foundation has developed more than 40 projects in Turkey in the last 25 years: providing support to more than 15,000 students through scholarships and the construction of schools. The Foundation also provides support to earthquake victims and disabled citizens.", + "Mission": "To share wealth in society.", + "Geographic Focus": "Turkey", + "Programme Areas": "The main programme areas of the Foundation are:\n– Education and scholarships\n– Health\n– Social responsibility" + } + }, + { + "id": 5080, + "name": "Allianz Foundation", + "address": "Allianz Kulturstiftung Pariser Platz 6 10117 Berlin Germany", + "country": "Germany", + "email": "", + "website": "https://allianzfoundation.org/", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Allianz Kulturstiftung, Pariser Platz 6, 10117 Berlin, Germany", + "lat": 52.5171015, + "lng": 13.3784056, + "zoom": 14, + "place_id": "ChIJ5amUQ-JRqEcRD6w0Jm6_he4", + "name": "Allianz Kulturstiftung", + "street_number": "6", + "street_name": "Pariser Platz", + "city": "Berlin", + "state": "Berlin", + "state_short": "BE", + "post_code": "10117", + "country": "Germany", + "country_short": "DE" + }, + "link": "https://philea.eu/members/allianz-kulturstiftung/", + "philea_info": { + "About": "The Allianz Kulturstiftung was officially registered as a non-profit organisation in Munich by the then Allianz AG (now Allianz SE) in the year 2000. In January 2012, the foundation moved into the Berlin Allianz Forum at Pariser Platz. The Allianz Kulturstiftung both funds outside projects and runs its own initiatives. Our general focus is on projects that promote exchange and encounters in Europe and around the Mediterranean, as well as discursive events in the field of European educational work, contemporary visuals and performing arts, literature and music.", + "Mission": "The non profit Allianz Kulturstiftung initiates and funds multilateral art, culture and education projects in Europe and the Mediterranean fostering mutual understanding and dialogue that transcends borders. Our main focus is on cross-disciplinary and contemporary projects that put innovative approaches in art, culture and education into practice and that help shape social change in the spirit of European integration. We particularly support programs that promote exchange, encounters and digitization, that ignite enthusiasm for the European project in young people and that forge ties between participating players.", + "Geographic Focus": "Germany and Europe, with a focus on the countries bordering the Mediterranean Sea.", + "Programme Areas": "The foundation sponsors and initiates projects in the following areas: • Project that help shape social change in the spirit of European integration\n• Projects that promote exchange and encounters in Europe and around the Mediterranean\n• Projects that put innovative approaches in art, culture, education and training into practice\n• Support and fellowships for artists at risk\n• Discursive events in the field of European integration, contemporary visual and performing arts, literature and music" + } + }, + { + "id": 5077, + "name": "Aga Khan Foundation", + "address": "Aga Khan Foundation 10 Handyside Street N1C 4DN London United Kingdom", + "country": "United Kingdom", + "email": "", + "website": "http://www.akf.org.uk", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Aga Khan Foundation UK, Aga Khan Centre, Handyside Street, London, UK", + "lat": 51.53753189999999, + "lng": -0.1249714, + "zoom": 14, + "place_id": "ChIJGYC8ByYbdkgRgy67bB9iKLM", + "name": "Aga Khan Foundation UK", + "street_number": "10", + "street_name": "Handyside Street", + "street_name_short": "Handyside St", + "city": "London", + "state": "England", + "post_code": "N1C 4DN", + "country": "United Kingdom", + "country_short": "GB" + }, + "link": "https://philea.eu/members/aga-khan-foundation/", + "philea_info": { + "About": "His Highness the Aga Khan, the founder and chairman of the Aga Khan Development Network, is the 49th hereditary Imam (spiritual leader) of the Shia Ismaili Muslims. The Aga Khan has a deep commitment to improving the quality of life for all through the agencies of the Aga Khan Development Network.\nAKF (UK) is a registered charity and affiliate of the international Aga Khan Foundation and the Aga Khan Development Network", + "Mission": "The UK office of the Aga Khan Foundation supports the broader Aga Khan Development Network (AKDN) by forming strategic partnerships with UK and European institutional partners including government agencies, policy institutes, corporations, foundations, NGOs, universities, associations and professional networks and mobilising resources. AKF (UK) also serves as a learning institution for programme enhancement, policy dialogue, education, and disseminating best practices in international development. Through its series of events and talks, AKF helps raise awareness about particular issues with the development community and with the UK public. In the developing world countries in which the AKDN implements programmes and builds institutions, the principal activities of the organisation are to break the cycle of poverty, promote pluralism, and improve the quality of life.", + "Geographic Focus": "Africa, Asia and the Middle East", + "Programme Areas": "Agriculture, Access to Finance, Civil Society, Culture, Disaster Risk Reduction, Enterprise Development, Education, Governance, Health, Humanitarian Assistance, Infrastructure, Natural Resource Management, Sanitation, Water" + } + }, + { + "id": 5075, + "name": "Adessium Foundation", + "address": "Adessium Foundation P.O. Box 76 2810 AB Reeuwijk Netherlands", + "country": "Netherlands", + "email": "", + "website": "http://www.adessium.org", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Reeuwijk, Netherlands", + "lat": 52.0459962, + "lng": 4.7235288, + "zoom": 14, + "place_id": "ChIJo6aJ-1bWxUcRQ3EvxL90ZVw", + "name": "Reeuwijk", + "city": "Reeuwijk", + "state": "South Holland", + "state_short": "ZH", + "country": "Netherlands", + "country_short": "NL" + }, + "link": "https://philea.eu/members/adessium-foundation/", + "philea_info": { + "About": "Adessium foundation is a privately funded public-benefit organisation recognised by the Dutch tax authority as an ‘Algemeen Nut Beogende Instelling’ (ANBI), a tax-exempt status equivalent to the American 501(c)(3) designation. The foundation was established in 2005 by the Van Vliet family after the sale of an asset management company.", + "Mission": "Adessium Foundation aspires to a world in which people live in harmony with each other and with their environments.\nThe Foundation works to create a balanced society characterized by integrity, a balance between people and nature, and social harmony.", + "Geographic Focus": "Netherlands and Worldwide", + "Programme Areas": "The foundation supports projects in the following areas:\n– Public Interest: Adessium Foundation aspires to an open, democratic society, in which the availability of independent and factual information safeguards the public interest and encourages ethical behavior.\n– People and Nature: Adessium Foundation aspires to a society that makes responsible use of nature and natural resources. Humanity’s dependence on healthy ecological systems is a central focus.\n– Social Initiatives: Adessium Foundation aspires to a society that provides everyone with equal opportunities, with a focus on human dignity, self-sufficiency, and solidarity." + } + }, + { + "id": 5071, + "name": "“la Caixa” Foundation", + "address": "Avinguda Diagonal, 621, Barcelona, Spain", + "country": "ESP", + "email": "", + "website": "https://obrasociallacaixa.org/en/home", + "type": { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + }, + "position": { + "address": "Avinguda Diagonal, 621, Barcelona, Spain", + "lat": 41.3876748, + "lng": 2.1265478, + "zoom": 18, + "place_id": "ChIJ0VySQGeYpBIRwTsa9qq_FHQ", + "street_number": "621", + "street_name": "Avinguda Diagonal", + "street_name_short": "Av. Diagonal", + "city": "Barcelona", + "state": "Catalunya", + "state_short": "CT", + "post_code": "08028", + "country": "Spain", + "country_short": "ES" + }, + "link": "https://philea.eu/members/la-caixa-foundation/", + "philea_info": { + "About": "The Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”, is the result of the transformation of Caixa d’Estalvis i Pensions de Barcelona, “la Caixa” into “la Caixa” Banking Foundation, in compliance with the Savings Banks and Banking Foundations Law, of 27 December 2013.", + "Mission": "To build a better, more just society, that offers greater opportunities to the people who most need them.", + "Geographic Focus": "Spain, Portugal, Africa, Asia and Latin America", + "Programme Areas": "The foundation operates in the following areas:\n• Poverty and Social Action\n• Research & Health\n• Education & Scholarships\n• Culture\n• Science\n• International Poverty and Social Action: In this area the foundation carries out social initiatives that help people overcome difficult situations, with particular attention to those living in poverty. This includes the following programmes:\n– Poverty\n– Employment integration\n– The elderly\n– Volunteering\n– Housing Programme\n– Social Organisations and Companies\n– Intercultural Relations and Social Cohesion\n– Violence: Zero Tolerance Research and Health: by supporting research programmes they aim to find new solutions to prevent, treat and eradicate diseases such as AIDS, cancer and cardiovascular disorders. Their hospital care programmes are aimed at supporting and accompanying the most vulnerable patients: hospitalised children and people at the most advanced stage of their illness. This are includes the following programmes:\n– Research in Life and Health Science: Infectious diseases; Oncology, Cardiovascular Diseases, Neuroscience, Medical Sciences\n– Comprehensive care for people with advanced diseases\n– Research in Life and Health Sciences – RecerCaixa\n– Child Hospitalization – Hospital Ciber Caixas\n– Innovation and Technological Transfer – CaixaImpulse\n– Postgraduate scholarships Education and Scholarships: the foundation invests in the talent of young people by offering scholarships and training opportunities. The activities connected with this area are:\n– Educaixa\n– Scholarships Culture: the foundation aims at giving access to culture though its permanent centres and an extensive programme of activities in all towns and cities where it is active.\n– CAIXAFORUM (Barcelona, Madrid, Palma, Girona, Terragona, Lleida, Zaragoza)\n– Travelling Exhibitions\n– Cultural Alliances\n– Music\n– CaixaEscena\n– FotoPres\n– Contemporary Art Collection\n– Calls for Applications (Art for Change “La Caixa and Comisart) Science: within this area the foundation develops and support projects that help create a scientific culture among citizens and an attitude of personal commitment to the planet’s sustainable development. This includes the following activities:\n– CosmoCaixa\n– Travelling Exhibitions\n– Science and Society: RRI Tools, Xplore Health, Science City, Scientist Camp, Educational Innovation, Collaborating Centers\n– The Environment: Conservation of Natural Areas; Gardens of Cap Roig; Safeguarding the Local Area, Ecoinnovation laboratory, ClimaDat, MedClic, The Sea in Depth International: the foundation promotes projects that generate sustainable economies and contribute to the development of the most vulnerable countries in Asia, Africa and South America. These are the activites included in this area:\n– Calls for Applications: Socio-Economic Development programme, Programme for Training projects in Africa, CooperantesCaixa, Humanitarian action: Children malnutrition programme\n– Global Development\n– Global Health" + } } ] \ No newline at end of file diff --git a/src/data/raw/register_of_charities_results.json b/src/data/raw/register_of_charities_results.json new file mode 100644 index 0000000..2219471 --- /dev/null +++ b/src/data/raw/register_of_charities_results.json @@ -0,0 +1,527 @@ +[ + { + "registered_charity_number": 249658, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=249658&subid=0", + "all_details": { + "organisation_number": 249658, + "reg_charity_number": 249658, + "group_subsid_suffix": 0, + "charity_name": "(WEST LANCASHIRE BRANCH) OF THE BRITISH RED CROSS SOCIETY", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1966-10-13T00:00:00", + "date_of_removal": "1993-07-02T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 254059, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=254059&subid=0", + "all_details": { + "organisation_number": 254059, + "reg_charity_number": 254059, + "group_subsid_suffix": 0, + "charity_name": "ABERGAVENNY BRITISH RED CROSS SOCIETY AND ST JOHN AMBULANCE HALL", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1967-11-02T00:00:00", + "date_of_removal": "2003-07-22T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 266624, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=266624&subid=0", + "all_details": { + "organisation_number": 266624, + "reg_charity_number": 266624, + "group_subsid_suffix": 0, + "charity_name": "AVON BRANCH OF THE BRITISH RED CROSS SOCIETY", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1973-12-14T00:00:00", + "date_of_removal": "1998-10-23T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 249170, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=249170&subid=0", + "all_details": { + "organisation_number": 249170, + "reg_charity_number": 249170, + "group_subsid_suffix": 0, + "charity_name": "BRECONSHIRE BRANCH OF THE BRITISH RED CROSS SOCIETY", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1966-09-05T00:00:00", + "date_of_removal": "1966-09-05T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 242323, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=242323&subid=0", + "all_details": { + "organisation_number": 242323, + "reg_charity_number": 242323, + "group_subsid_suffix": 0, + "charity_name": "BRITISH RED CROSS - BEDFORDSHIRE BRANCH", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1965-06-16T00:00:00", + "date_of_removal": "1998-10-23T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [ + { + "other_name": "THE BEDFORDSHIRE BRANCH OF THE BRITISH RED CROSS SOCIETY", + "name_type": "O" + } + ], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 247125, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=247125&subid=0", + "all_details": { + "organisation_number": 247125, + "reg_charity_number": 247125, + "group_subsid_suffix": 0, + "charity_name": "BRITISH RED CROSS - NORTHAMPTONSHIRE BRANCH", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1966-03-07T00:00:00", + "date_of_removal": "1999-02-26T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [ + { + "other_name": "THE NORTHAMPTONSHIRE BRANCH OF THE BRITISH RED CROSS SOCIETY", + "name_type": "O" + } + ], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 502853, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=502853&subid=0", + "all_details": { + "organisation_number": 502853, + "reg_charity_number": 502853, + "group_subsid_suffix": 0, + "charity_name": "BRITISH RED CROSS - SOUTH WEST WALES BRANCH", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1973-12-07T00:00:00", + "date_of_removal": "1999-08-18T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [ + { + "other_name": "DYFED COUNTY BRANCH OF THE BRITISH RED CROSS SOCIETY", + "name_type": "O" + } + ], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 210119, + "suffix": 1, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=210119&subid=1", + "all_details": { + "organisation_number": 5823, + "reg_charity_number": 210119, + "group_subsid_suffix": 1, + "charity_name": "BRITISH RED CROSS (WHITAKER ENDOWMENT)", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": null, + "cif_cdf_ind": null, + "cio_dissolution_ind": null, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1962-09-22T00:00:00", + "date_of_removal": "1996-10-08T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": null, + "removal_reason": null, + "cio_ind": null, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 1033268, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=1033268&subid=0", + "all_details": { + "organisation_number": 1033268, + "reg_charity_number": 1033268, + "group_subsid_suffix": 0, + "charity_name": "BRITISH RED CROSS SOCIETY COMMON DEPOSIT FUND", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1995-04-28T00:00:00", + "date_of_removal": "1999-10-20T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + }, + { + "registered_charity_number": 506481, + "suffix": 0, + "link": "https://register-of-charities.charitycommission.gov.uk/charity-details/?regid=506481&subid=0", + "all_details": { + "organisation_number": 506481, + "reg_charity_number": 506481, + "group_subsid_suffix": 0, + "charity_name": "BRITISH RED CROSS SOCIETY LINCOLNSHIRE BRANCH", + "charity_type": null, + "insolvent": false, + "in_administration": false, + "prev_excepted_ind": false, + "cif_cdf_ind": null, + "cio_dissolution_ind": false, + "interim_manager_ind": false, + "date_of_interim_manager_appt": null, + "reg_status": "RM", + "date_of_registration": "1977-07-07T00:00:00", + "date_of_removal": "1998-10-23T00:00:00", + "latest_acc_fin_year_start_date": null, + "latest_acc_fin_year_end_date": null, + "latest_income": null, + "latest_expenditure": null, + "address_line_one": null, + "address_line_two": null, + "address_line_three": null, + "address_line_four": null, + "address_line_five": null, + "address_post_code": null, + "phone": null, + "email": null, + "web": null, + "charity_co_reg_number": null, + "reporting_status": "Removed", + "removal_reason": "CEASED TO EXIST", + "cio_ind": false, + "last_modified_time": "2011-03-12T13:05:56.5", + "trustee_names": [], + "who_what_where": [], + "CharityAoOCountryContinent": [], + "CharityAoOLocalAuthority": [], + "CharityAoORegion": [], + "other_names": [], + "constituency_name": [] + }, + "assets_liabilities": [], + "primary_grants": null, + "who_what_how": [], + "financial_history": [] + } +] \ No newline at end of file diff --git a/src/pipelines/run_pipeline.py b/src/pipelines/run_pipeline.py index 6ff6caa..2cb6e1c 100644 --- a/src/pipelines/run_pipeline.py +++ b/src/pipelines/run_pipeline.py @@ -2,13 +2,35 @@ import sys import argparse import logging +import json -# Ensure project root is in sys.path so imports work regardless of working directory -PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) -if PROJECT_ROOT not in sys.path: - sys.path.insert(0, PROJECT_ROOT) +# Ensure src directory is in sys.path so imports work regardless of working directory +PIPELINES_DIR = os.path.dirname(os.path.abspath(__file__)) +SRC_DIR = os.path.dirname(PIPELINES_DIR) +PROJECT_ROOT = SRC_DIR +if SRC_DIR not in sys.path: + sys.path.insert(0, SRC_DIR) -from scraper.philea import scrape, save_data as save_raw_data +# Load environment variables from .env file if it exists +def load_env(): + workspace_root = os.path.dirname(PROJECT_ROOT) + env_path = os.path.join(workspace_root, ".env") + if os.path.exists(env_path): + with open(env_path, "r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line or line.startswith("#"): + continue + if "=" in line: + key, val = line.split("=", 1) + key = key.strip() + val = val.strip().strip("'\"") + if key: + os.environ[key] = val + +load_env() + +from scrapers.philea import scrape, save_data as save_raw_data from preprocessing.extract_geo_topic import extract_tags, extract_geo, save_data as save_preprocessed_data, load_data # Configure logger @@ -21,58 +43,230 @@ ) def run_pipeline(args): + source = args.source.lower() logging.info("=========================================") - logging.info("Starting Philea Data Pipeline Execution") + logging.info(f"Starting {source.title()} Data Pipeline Execution") logging.info("=========================================") + if source == "consolidate": + philea_input = args.philea_input or os.path.join(PROJECT_ROOT, "data/preprocessed/philea_members_preprocessed.json") + hinchilla_input = args.hinchilla_input or os.path.join(PROJECT_ROOT, "data/preprocessed/hinchilla_members_preprocessed.json") + consolidated_output = args.preprocessed_output or os.path.join(PROJECT_ROOT, "data/preprocessed/consolidated_members_preprocessed.json") + + logging.info(f"Loading Philea preprocessed data from: {philea_input}") + logging.info(f"Loading Hinchilla preprocessed data from: {hinchilla_input}") + + if not os.path.exists(philea_input): + logging.error(f"Philea preprocessed input file not found: {philea_input}") + sys.exit(1) + if not os.path.exists(hinchilla_input): + logging.error(f"Hinchilla preprocessed input file not found: {hinchilla_input}") + sys.exit(1) + + try: + with open(philea_input, "r", encoding="utf-8") as f: + philea_data = json.load(f) + with open(hinchilla_input, "r", encoding="utf-8") as f: + hinchilla_data = json.load(f) + except Exception as e: + logging.error(f"Failed to load input files: {e}") + sys.exit(1) + + from preprocessing.consolidate import consolidate_datasets + try: + consolidated = consolidate_datasets(philea_data, hinchilla_data) + + # Optional Gemini Enrichment on the consolidated dataset + if args.enrich: + logging.info("Enriching consolidated organization data using Gemini and Google Search...") + from preprocessing.enrich_gemini import enrich_organizations + + def save_consolidated(m_list, path): + os.makedirs(os.path.dirname(os.path.abspath(path)), exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(m_list, f, ensure_ascii=False, indent=4) + + consolidated = enrich_organizations( + consolidated, + save_path=consolidated_output, + save_fn=save_consolidated, + sleep_time=args.sleep + ) + + + + # Save output + os.makedirs(os.path.dirname(os.path.abspath(consolidated_output)), exist_ok=True) + with open(consolidated_output, "w", encoding="utf-8") as f: + json.dump(consolidated, f, ensure_ascii=False, indent=4) + logging.info(f"Consolidated data successfully saved to: {consolidated_output}") + except Exception as e: + logging.error(f"Consolidation process failed: {e}") + sys.exit(1) + + logging.info("=========================================") + logging.info("Consolidation Pipeline Completed Successfully!") + logging.info("=========================================") + return + + # Dynamically import scraper for selected source + if source == "philea": + from scrapers.philea import scrape, save_data as save_raw_data + load_existing_data = lambda path: [] + elif source == "hinchilla": + from scrapers.hinchilla import scrape, save_data as save_raw_data, load_existing_data + else: + logging.error(f"Unknown source: {source}") + sys.exit(1) + + # Dynamic defaults for paths if not provided + raw_output = args.raw_output + if not raw_output: + raw_output = os.path.join(PROJECT_ROOT, f"data/raw/{source}_members.json") + + preprocessed_output = args.preprocessed_output + if not preprocessed_output: + preprocessed_output = os.path.join(PROJECT_ROOT, f"data/preprocessed/{source}_members_preprocessed.json") + members = [] # Step 1: Scrape if args.skip_scrape: - logging.info(f"Skipping scraping phase. Loading existing raw data from: {args.raw_output}") + logging.info(f"Skipping scraping phase. Loading existing raw data from: {raw_output}") try: - members = load_data(args.raw_output) + members = load_data(raw_output) except Exception as e: logging.error(f"Cannot skip scrape: Raw input file does not exist or is corrupted: {e}") sys.exit(1) else: - logging.info("Step 1: Scraping organization details from Philea directory...") - members = scrape(limit=args.limit, sleep_time=args.sleep, timeout=args.timeout) - if not members: + logging.info(f"Step 1: Scraping organization details from {source.title()} directory...") + + # Load existing data to support resuming + existing_members = load_existing_data(raw_output) + completed_slugs = set() + for m in existing_members: + link = m.get("link", "") + slug = link.split("/")[-1].strip() + if slug and "Error" not in m.get("philea_info", {}): + completed_slugs.add(slug) + + if completed_slugs: + logging.info(f"Resuming: skipping {len(completed_slugs)} already successfully scraped members.") + + try: + new_members = scrape( + limit=args.limit, + sleep_time=args.sleep, + timeout=args.timeout, + completed_slugs=completed_slugs + ) + except TypeError: + # Fallback if scraper doesn't support completed_slugs + new_members = scrape( + limit=args.limit, + sleep_time=args.sleep, + timeout=args.timeout + ) + + if not new_members and not completed_slugs: logging.error("Scraping failed or returned no data. Terminating pipeline.") sys.exit(1) - save_raw_data(members, args.raw_output) - logging.info(f"Step 1 Complete. Raw data stored in: {args.raw_output}") + # Merge new members with existing ones, overwriting on overlap + merged_dict = {m["link"]: m for m in existing_members} + for m in new_members: + merged_dict[m["link"]] = m + + members = list(merged_dict.values()) + save_raw_data(members, raw_output) + logging.info(f"Step 1 Complete. Raw data stored in: {raw_output}") + # Step 1.5: Optional Gemini Enrichment + if args.enrich: + logging.info("Step 1.5: Enriching organization data using Gemini and Google Search...") + try: + from preprocessing.enrich_gemini import enrich_organizations + members = enrich_organizations( + members, + save_path=args.raw_output, + save_fn=save_raw_data, + sleep_time=args.sleep + ) + save_raw_data(members, args.raw_output) + logging.info(f"Step 1.5 Complete. Enriched data stored in: {args.raw_output}") + except Exception as e: + logging.error(f"Enrichment stage failed: {e}") + sys.exit(1) + # Step 2: Preprocess logging.info("Step 2: Processing content to extract thematic focus tags and geographic locations...") try: + if source == "philea" and not args.skip_contact_crawler: + logging.info("Step 2.1: Checking for missing addresses and emails to enrich...") + from preprocessing.extract_impressum import crawl_impressum + for i, member in enumerate(members, 1): + email_missing = not member.get("email") or str(member.get("email")).strip() == "" + address_missing = not member.get("address") or str(member.get("address")).strip() == "" + + if (email_missing or address_missing) and member.get("website"): + member_name = member.get("name", "Unknown Name") + logging.info(f"[{i}/{len(members)}] Crawling missing contact info for: {member_name} ({member['website']})") + try: + impressum = crawl_impressum(member["website"], timeout=8) + if impressum: + if email_missing and impressum.get("generic_email"): + member["email"] = impressum["generic_email"] + logging.info(f" -> Found email: {impressum['generic_email']}") + if address_missing and impressum.get("address"): + member["address"] = impressum["address"] + logging.info(f" -> Found address: {impressum['address']}") + except Exception as e: + logging.warning(f" -> Failed to crawl {member_name}: {e}") + extract_tags(members) extract_geo(members) - save_preprocessed_data(members, args.preprocessed_output) - logging.info(f"Step 2 Complete. Preprocessed data stored in: {args.preprocessed_output}") + save_preprocessed_data(members, preprocessed_output) + logging.info(f"Step 2 Complete. Preprocessed data stored in: {preprocessed_output}") except Exception as e: logging.error(f"Preprocessing stage failed: {e}") sys.exit(1) logging.info("=========================================") - logging.info("Philea Pipeline Completed Successfully!") + logging.info(f"{source.title()} Pipeline Completed Successfully!") logging.info("=========================================") if __name__ == "__main__": - parser = argparse.ArgumentParser(description="Orchestrate Philea Scraper and Preprocessing Pipeline.") + parser = argparse.ArgumentParser(description="Orchestrate Scraper and Preprocessing Pipeline.") + parser.add_argument( + "--source", + type=str, + choices=["philea", "hinchilla", "consolidate"], + default="philea", + help="The source directory to scrape and preprocess (choices: philea, hinchilla, consolidate)." + ) + parser.add_argument( + "--philea-input", + type=str, + default=None, + help="Path to preprocessed Philea data (used for consolidation)." + ) + parser.add_argument( + "--hinchilla-input", + type=str, + default=None, + help="Path to preprocessed Hinchilla data (used for consolidation)." + ) parser.add_argument( "--raw-output", type=str, - default=os.path.join(PROJECT_ROOT, "data/raw/philea_members.json"), - help="Path where the raw scraped JSON data should be read/written." + default=None, + help="Path where the raw scraped JSON data should be read/written (defaults based on source)." ) parser.add_argument( "--preprocessed-output", type=str, - default=os.path.join(PROJECT_ROOT, "data/preprocessed/philea_members_preprocessed.json"), - help="Path where the preprocessed final JSON data should be written." + default=None, + help="Path where the preprocessed final JSON data should be written (defaults based on source)." ) parser.add_argument( "--limit", @@ -97,6 +291,16 @@ def run_pipeline(args): action="store_true", help="Skip the web scraping phase and run preprocessing on the existing raw data file." ) + parser.add_argument( + "--enrich", + action="store_true", + help="Enrich scraped organization data using Gemini and Google Search grounding." + ) + parser.add_argument( + "--skip-contact-crawler", + action="store_true", + help="Skip crawling missing contact info (email/address) from websites." + ) args = parser.parse_args() run_pipeline(args) diff --git a/src/preprocessing/consolidate.py b/src/preprocessing/consolidate.py new file mode 100644 index 0000000..21daaa0 --- /dev/null +++ b/src/preprocessing/consolidate.py @@ -0,0 +1,486 @@ +import os +import json +import re +import logging +from urllib.parse import urlparse + +try: + from preprocessing.quality import is_informative_value, is_placeholder_value +except ModuleNotFoundError: + from quality import is_informative_value, is_placeholder_value + +# Configure logger +logger = logging.getLogger("consolidate") +if not logger.handlers: + logger.setLevel(logging.INFO) + sh = logging.StreamHandler() + sh.setFormatter(logging.Formatter("%(asctime)s [%(levelname)s] %(message)s")) + logger.addHandler(sh) + +# Simple currency conversion rate: 1 GBP = 1.2 EUR +GBP_TO_EUR_RATE = 1.2 + +def _extract_number(val_str): + """ + Extracts a numeric float value from a string, ignoring currency symbols and years. + Handles standard number formats (thousands separators, decimals). + """ + if not val_str or is_placeholder_value(val_str): + return None + + # Remove year patterns like (2024) or [2022] or (2023-24) to avoid matching the year as the number + cleaned = re.sub(r'[\(\[\{]\d{4}.*?[\)\]\}]', '', val_str) + + # Extract digit sequences that might contain periods or commas + numbers = re.findall(r'\d+(?:[.,]\d+)*', cleaned) + if not numbers: + return None + + num_str = numbers[0] + + # Standardize thousands separator vs decimal separator + if ',' in num_str and '.' in num_str: + num_str = num_str.replace(',', '') + elif ',' in num_str: + parts = num_str.split(',') + if len(parts[-1]) == 2: + num_str = num_str.replace(',', '.') + else: + num_str = num_str.replace(',', '') + elif '.' in num_str: + parts = num_str.split('.') + if len(parts[-1]) != 2 and len(parts[-1]) != 1: + num_str = num_str.replace('.', '') + + val_lower = cleaned.lower() + multiplier = 1.0 + if re.search(r'\bmillion\b|(?<=\d)m\b|\bm\b', val_lower): + multiplier = 1_000_000.0 + elif re.search(r'\bbillion\b|(?<=\d)b\b|\bb\b', val_lower): + multiplier = 1_000_000_000.0 + elif re.search(r'\bthousand\b|(?<=\d)k\b|\bk\b', val_lower): + multiplier = 1_000.0 + + try: + return float(num_str) * multiplier + except ValueError: + return None + +def convert_gbp_to_eur(val_str): + """ + Detects if the value is in GBP (£) and converts it to EUR (€) using a fixed rate. + Handles ranges (e.g. '£4,000 - £10,000') and single values. + Preserves year/parenthesis comments if possible. + """ + if not val_str or not isinstance(val_str, str): + return val_str + + val_lower = val_str.lower() + if '£' not in val_str and 'gbp' not in val_lower and 'pound' not in val_lower: + return val_str + + # Check if it is a range (ignoring hyphens inside parenthesis/brackets like in years: 2023-24) + cleaned_for_check = re.sub(r'[\(\[\{].*?[\)\]\}]', '', val_str) + + parts = [] + if ' - ' in cleaned_for_check: + parts = val_str.split(' - ') + elif '-' in cleaned_for_check: + parts = val_str.split('-') + elif ' to ' in cleaned_for_check.lower(): + parts = re.split(r'\s+to\s+', val_str, flags=re.IGNORECASE) + + if len(parts) == 2: + def convert_single(part): + num = _extract_number(part) + if num is None: + return part + converted = num * GBP_TO_EUR_RATE + return f"€{converted:,.0f}" + + p1 = convert_single(parts[0].strip()) + p2 = convert_single(parts[1].strip()) + + year_match = re.search(r'[\(\[\{]\d{4}.*?[\)\]\}]', val_str) + suffix = f" {year_match.group(0)}" if year_match else "" + return f"{p1} - {p2}{suffix} (converted from GBP)" + else: + num = _extract_number(val_str) + if num is None: + return val_str + + converted = num * GBP_TO_EUR_RATE + year_match = re.search(r'[\(\[\{]\d{4}.*?[\)\]\}]', val_str) + suffix = f" {year_match.group(0)}" if year_match else "" + return f"€{converted:,.0f}{suffix} (converted from GBP)" + +def extract_domain(url): + """ + Extracts the base domain from a URL, e.g. 'http://www.womenwin.org/path' -> 'womenwin.org'. + """ + if not url or not isinstance(url, str): + return "" + url = url.strip() + if not url.startswith(("http://", "https://")): + url = "http://" + url + try: + parsed = urlparse(url) + netloc = parsed.netloc.lower() + if netloc.startswith("www."): + netloc = netloc[4:] + return netloc + except Exception: + return "" + +def normalize_name(name): + """ + Normalizes organization name by lowercasing, removing punctuation, and filtering common filler words. + """ + if not name or not isinstance(name, str): + return [] + + # Clean non-alphanumeric characters + name_clean = re.sub(r'[^\w\s]', ' ', name.lower()) + + # Common filler words to filter out + filler_words = { + "foundation", "stiftung", "charity", "trust", "association", "society", + "fund", "global", "limited", "ltd", "co", "the", "e.v.", "gmbh", "v.", + "corp", "inc", "und", "and", "de", "der", "die", "das" + } + + tokens = [t.strip() for t in name_clean.split() if t.strip() and len(t.strip()) > 1 and t.strip() not in filler_words] + return tokens + +def jaccard_similarity(tokens1, tokens2): + """ + Calculates Jaccard similarity between two token sets. + """ + set1, set2 = set(tokens1), set(tokens2) + if not set1 or not set2: + return 0.0 + return len(set1 & set2) / len(set1 | set2) + +def is_numeric(s): + """ + Checks if a string consists entirely of digits or numeric ID format. + """ + if not s or not isinstance(s, str): + return False + return s.strip().isdigit() + +def match_members(m1, m2): + """ + Determines if two members from Philea and Hinchilla refer to the same organization. + Uses website domain match and name similarity. + """ + # 1. Website domain match (strong indicator) + web1 = m1.get("website", "") + web2 = m2.get("website", "") + + dom1 = extract_domain(web1) + dom2 = extract_domain(web2) + + if dom1 and dom2 and dom1 == dom2: + return True + + # 2. Name matching + name1 = m1.get("name", "").strip() + name2 = m2.get("name", "").strip() + + # Avoid matching if names are numeric/IDs (like Hinchilla's "136193034") + if is_numeric(name1) or is_numeric(name2): + return False + + tokens1 = normalize_name(name1) + tokens2 = normalize_name(name2) + + if not tokens1 or not tokens2: + return False + + # Exact normalized token match + if tokens1 == tokens2: + return True + + # Jaccard similarity match + sim = jaccard_similarity(tokens1, tokens2) + if sim >= 0.8: + return True + + # Substring match for longer names (e.g. "Toni Piëch" vs "Toni Piëch Foundation") + str1 = "".join(tokens1) + str2 = "".join(tokens2) + if len(str1) >= 5 and len(str2) >= 5: + if str1 in str2 or str2 in str1: + return True + + return False + +def normalize_to_clean_schema(member, source_name): + """ + Transforms any raw Philea or Hinchilla member dict into the clean unified schema. + """ + p_info = member.get("philea_info", {}) + if not isinstance(p_info, dict): + p_info = {} + + position = member.get("position", {}) + if not isinstance(position, dict): + position = {} + + # Core fields + name = member.get("name", "").strip() + + # Type handling + m_type = member.get("type", {}) + if not m_type or not isinstance(m_type, dict): + m_type = { + "value": "foundation", + "label": "Foundation and philanthropic organisation" + } + + # Address and position flattening + address = position.get("address", "") or member.get("address", "") or p_info.get("address", "") or "" + city = position.get("city", "") + state = position.get("state", "") + country = position.get("country", "") or member.get("country", "") or "" + + # Coordinates + latitude = position.get("lat", None) + if latitude is not None: + try: + latitude = float(latitude) + except (ValueError, TypeError): + latitude = None + + longitude = position.get("lng", None) + if longitude is not None: + try: + longitude = float(longitude) + except (ValueError, TypeError): + longitude = None + + # Standalone Hinchilla financial conversion (or general Hinchilla standardization) + annual_giving = p_info.get("annual_giving", "") + annual_income = p_info.get("annual_income", "") + annual_expenditure = p_info.get("annual_expenditure", "") + average_grant = p_info.get("average_grant", "") + grant_range = p_info.get("grant_range", "") + expenditure = p_info.get("expenditure", "") + + if source_name == "Hinchilla": + annual_giving = convert_gbp_to_eur(annual_giving) + annual_income = convert_gbp_to_eur(annual_income) + annual_expenditure = convert_gbp_to_eur(annual_expenditure) + average_grant = convert_gbp_to_eur(average_grant) + grant_range = convert_gbp_to_eur(grant_range) + expenditure = convert_gbp_to_eur(expenditure) + + funding_info = { + "annual_giving": annual_giving, + "annual_income": annual_income, + "annual_expenditure": annual_expenditure, + "average_grant": average_grant, + "grant_range": grant_range, + "funding_model": p_info.get("funding_model", ""), + "application_details": p_info.get("application_details", ""), + "success_rate": p_info.get("success_rate", ""), + "decision_time": p_info.get("decision_time", ""), + "expenditure": expenditure, + "number_of_grants": p_info.get("number_of_grants", ""), + "quick_stats": p_info.get("quick_stats", {}), + "charity_number": p_info.get("charityNumber", "") or p_info.get("charity_number", ""), + "application_portal": p_info.get("applicationPortal", "") or p_info.get("application_portal", ""), + "sources": p_info.get("sources", []) + } + + # Renaming tag & geo fields + thematic_focus = member.get("tags_focus", []) or member.get("thematic_focus", []) + geographic_focus = member.get("geo_locations", {}) or member.get("geographic_focus", {}) + + return { + "name": name, + "source": source_name, + "type": m_type, + "website": member.get("website", "") or p_info.get("website", "") or "", + "email": member.get("email", "") or p_info.get("email", "") or "", + "address": address, + "city": city, + "state": state, + "country": country, + "latitude": latitude, + "longitude": longitude, + "funding_info": funding_info, + "thematic_focus": sorted(list(set(thematic_focus))), + "geographic_focus": geographic_focus + } + +def merge_members(p_member, h_member): + """ + Merges a Philea member and Hinchilla member. + Both members must be in the clean schema. + Logs and records discrepancies under a hidden `_discrepancies` field. + """ + # Create copy of Philea clean member as base + merged = dict(p_member) + merged["source"] = "Philea, Hinchilla" + + # Track discrepancies + discrepancies = {} + + # Helper to resolve field value and check discrepancies + def resolve_field(field_name, p_val, h_val, is_financial=False): + if not is_informative_value(p_val): + return h_val if is_informative_value(h_val) else p_val + if not is_informative_value(h_val): + return p_val + + # Both are non-empty. Compare. + if is_financial: + p_num = _extract_number(p_val) + h_num = _extract_number(h_val) + if p_num is not None and h_num is not None: + # If they differ by more than 1% + if abs(p_num - h_num) / max(p_num, 1.0) > 0.01: + discrepancies[field_name] = { + "philea_value": p_val, + "hinchilla_value": h_val, + "warning": "Financial statistics differ significantly." + } + logger.warning( + f"Financial stats discrepancy for {merged.get('name')} in '{field_name}': " + f"Philea={p_val} vs Hinchilla={h_val}" + ) + else: + if p_val.strip().lower() != h_val.strip().lower(): + discrepancies[field_name] = { + "philea_value": p_val, + "hinchilla_value": h_val, + "warning": "Statistics differ." + } + else: + # General string comparison + if p_val.strip().lower() != h_val.strip().lower(): + # For website, check normalized domains + if field_name == "website": + if extract_domain(p_val) != extract_domain(h_val): + discrepancies[field_name] = { + "philea_value": p_val, + "hinchilla_value": h_val, + "warning": "Website domains differ." + } + logger.warning( + f"Website discrepancy for {merged.get('name')}: " + f"Philea={p_val} vs Hinchilla={h_val}" + ) + else: + discrepancies[field_name] = { + "philea_value": p_val, + "hinchilla_value": h_val, + "warning": "Field values differ." + } + return p_val # Default to Philea (primary source) + + # Resolve top level strings + merged["website"] = resolve_field("website", merged.get("website", ""), h_member.get("website", "")) + merged["address"] = resolve_field("address", merged.get("address", ""), h_member.get("address", "")) + merged["email"] = resolve_field("email", merged.get("email", ""), h_member.get("email", "")) + + # Resolve coordinates + merged["latitude"] = merged.get("latitude") if merged.get("latitude") is not None else h_member.get("latitude") + merged["longitude"] = merged.get("longitude") if merged.get("longitude") is not None else h_member.get("longitude") + + # Merge funding info + p_fund = merged.setdefault("funding_info", {}) + h_fund = h_member.get("funding_info", {}) + + p_fund["annual_giving"] = resolve_field("annual_giving", p_fund.get("annual_giving", ""), h_fund.get("annual_giving", ""), is_financial=True) + p_fund["average_grant"] = resolve_field("average_grant", p_fund.get("average_grant", ""), h_fund.get("average_grant", ""), is_financial=True) + p_fund["grant_range"] = resolve_field("grant_range", p_fund.get("grant_range", ""), h_fund.get("grant_range", ""), is_financial=True) + p_fund["funding_model"] = resolve_field("funding_model", p_fund.get("funding_model", ""), h_fund.get("funding_model", "")) + p_fund["expenditure"] = resolve_field("expenditure", p_fund.get("expenditure", ""), h_fund.get("expenditure", ""), is_financial=True) + + # Union metadata + for key in ["success_rate", "decision_time", "charity_number", "application_portal"]: + if is_informative_value(h_fund.get(key)): + p_fund[key] = h_fund[key] + + for key in ["annual_income", "annual_expenditure", "number_of_grants", "quick_stats"]: + if is_informative_value(h_fund.get(key)) and not is_informative_value(p_fund.get(key)): + p_fund[key] = h_fund[key] + + # Text merge (prefer longer) + p_details = p_fund.get("application_details", "") + h_details = h_fund.get("application_details", "") + p_fund["application_details"] = h_details if len(h_details) > len(p_details) else p_details + + # Merge thematic focus (tags) + p_tags = set(merged.get("thematic_focus", [])) + h_tags = set(h_member.get("thematic_focus", [])) + merged["thematic_focus"] = sorted(list(p_tags | h_tags)) + + # Merge geolocations (geographic focus) + p_geo = merged.get("geographic_focus", {}) + h_geo = h_member.get("geographic_focus", {}) + merged_geo = {} + + all_regions = set(p_geo.keys()) | set(h_geo.keys()) + for reg in all_regions: + countries = set(p_geo.get(reg, [])) | set(h_geo.get(reg, [])) + merged_geo[reg] = sorted(list(countries)) + merged["geographic_focus"] = merged_geo + + # Merge sources URLs + p_sources = set(p_fund.get("sources", [])) + h_sources = set(h_fund.get("sources", [])) + p_fund["sources"] = sorted(list(p_sources | h_sources)) + + # Save discrepancies + if discrepancies: + merged["_discrepancies"] = discrepancies + + return merged + +def consolidate_datasets(philea_members, hinchilla_members): + """ + Consolidates Philea and Hinchilla datasets by matching members, + merging their fields, tracking conflicts, and return the combined list. + Every member is returned in the clean unified format. + """ + logger.info(f"Starting consolidation of {len(philea_members)} Philea members and {len(hinchilla_members)} Hinchilla members...") + + # Normalize inputs to clean schema first + philea_clean = [normalize_to_clean_schema(m, "Philea") for m in philea_members] + hinchilla_clean = [normalize_to_clean_schema(m, "Hinchilla") for m in hinchilla_members] + + consolidated = [] + matched_hinchilla_indices = set() + + for p_member in philea_clean: + matched_h = None + matched_idx = -1 + + for idx, h_member in enumerate(hinchilla_clean): + if idx in matched_hinchilla_indices: + continue + if match_members(p_member, h_member): + matched_h = h_member + matched_idx = idx + break + + if matched_h: + logger.info(f"Match found: '{p_member.get('name')}' (Philea) <==> '{matched_h.get('name')}' (Hinchilla)") + merged = merge_members(p_member, matched_h) + consolidated.append(merged) + matched_hinchilla_indices.add(matched_idx) + else: + consolidated.append(p_member) + + # Add unmatched Hinchilla members + for idx, h_member in enumerate(hinchilla_clean): + if idx not in matched_hinchilla_indices: + logger.info(f"Adding unmatched Hinchilla member: '{h_member.get('name')}'") + consolidated.append(h_member) + + logger.info(f"Consolidation complete. Resulting dataset has {len(consolidated)} members.") + return consolidated diff --git a/src/preprocessing/enrich_gemini.py b/src/preprocessing/enrich_gemini.py new file mode 100644 index 0000000..d4bb72d --- /dev/null +++ b/src/preprocessing/enrich_gemini.py @@ -0,0 +1,386 @@ +import os +import json +import logging +import time +import re +from typing import List +from pydantic import BaseModel, Field +from google import genai +from google.genai import types + +# Configure logger if not already configured +logger = logging.getLogger("enrich_gemini") +if not logger.handlers: + logger.setLevel(logging.INFO) + sh = logging.StreamHandler() + sh.setFormatter(logging.Formatter("%(asctime)s [%(levelname)s] %(message)s")) + logger.addHandler(sh) + +class FunderEnrichment(BaseModel): + annual_giving: str = Field(description="The total annual giving/expenditure for grants, e.g. '€90,636 (2024)' or 'Not publicly available'") + average_grant: str = Field(description="The average grant size distributed, e.g. '€6,000' or 'Not publicly available'") + grant_range: str = Field(description="The range of grants distributed (min to max), e.g. '€4,000 - €10,000' or 'Not publicly available'") + funding_model: str = Field(description="The funding model of the charity, e.g. 'Open applications', 'Invitation only', 'Partnership-based', or 'Not publicly available'") + application_details: str = Field(description="Brief description of the application process, deadlines, or how they fund") + sources: List[str] = Field(description="List of URLs of source pages used to find this information") + +def _extract_number(val_str): + """ + Extracts a numeric float value from a string, ignoring currency symbols and years. + Handles standard number formats (thousands separators, decimals). + """ + if not val_str or "not publicly available" in val_str.lower(): + return None + + import re + # Remove year patterns like (2024) or [2022] to avoid matching the year as the number + cleaned = re.sub(r'[\(\[\{]\d{4}[\)\]\}]', '', val_str) + + # Extract digit sequences that might contain periods or commas + numbers = re.findall(r'\d+(?:[.,]\d+)*', cleaned) + if not numbers: + return None + + num_str = numbers[0] + + # Standardize thousands separator vs decimal separator + if ',' in num_str and '.' in num_str: + num_str = num_str.replace(',', '') + elif ',' in num_str: + parts = num_str.split(',') + if len(parts[-1]) == 2: + num_str = num_str.replace(',', '.') + else: + num_str = num_str.replace(',', '') + elif '.' in num_str: + parts = num_str.split('.') + if len(parts[-1]) != 2 and len(parts[-1]) != 1: + num_str = num_str.replace('.', '') + + val_lower = cleaned.lower() + multiplier = 1.0 + if re.search(r'\bmillion\b|(?<=\d)m\b|\bm\b', val_lower): + multiplier = 1_000_000.0 + elif re.search(r'\bbillion\b|(?<=\d)b\b|\bb\b', val_lower): + multiplier = 1_000_000_000.0 + elif re.search(r'\bthousand\b|(?<=\d)k\b|\bk\b', val_lower): + multiplier = 1_000.0 + + try: + return float(num_str) * multiplier + except ValueError: + return None + +def _generate_content_with_retry(client, model, contents, config, max_retries=3, initial_delay=2.0): + """ + Wraps client.models.generate_content in a retry mechanism with exponential backoff + to handle rate limiting and transient connection errors. + """ + delay = initial_delay + for attempt in range(max_retries): + try: + return client.models.generate_content( + model=model, + contents=contents, + config=config + ) + except Exception as e: + if attempt == max_retries - 1: + logger.error(f"Failed to generate content after {max_retries} attempts: {e}") + raise + logger.warning( + f"Gemini API attempt {attempt + 1}/{max_retries} failed: {e}. " + f"Retrying in {delay} seconds..." + ) + time.sleep(delay) + delay *= 2 + +def _ensure_eur(val_str): + """ + Post-processing check to ensure that values are converted to EUR. + If they are USD, GBP, or CHF, performs programmatic conversion. + """ + if not val_str or not isinstance(val_str, str): + return val_str + + val_lower = val_str.lower() + if "not publicly available" in val_lower or "not disclosed" in val_lower or not val_lower.strip(): + return val_str + + # If it already contains EUR/€, do nothing + if '€' in val_str or 'eur' in val_lower: + return val_str + + # Parse numeric value + num = _extract_number(val_str) + if num is None: + return val_str + + rate = None + curr_name = "" + if '£' in val_str or 'gbp' in val_lower or 'pound' in val_lower: + rate = 1.2 + curr_name = "GBP" + elif '$' in val_str or 'usd' in val_lower or 'dollar' in val_lower: + rate = 0.92 + curr_name = "USD" + elif 'chf' in val_lower or 'franc' in val_lower: + rate = 1.05 + curr_name = "CHF" + + if rate is not None: + converted = num * rate + # Extract year suffix + year_match = re.search(r'[\(\[\{]\d{4}.*?[\)\]\}]', val_str) + suffix = f" {year_match.group(0)}" if year_match else "" + converted_str = f"€{converted:,.0f}{suffix} (converted from {curr_name})" + logger.info(f"Robustness check: Converted non-EUR value '{val_str}' to '{converted_str}'") + return converted_str + + return val_str + +def _ensure_eur_range(val_str): + """ + Handles range formats for ensure_eur, e.g., '£4,000 - £10,000'. + """ + if not val_str or not isinstance(val_str, str): + return val_str + + val_lower = val_str.lower() + if "not publicly available" in val_lower or "not disclosed" in val_lower or not val_lower.strip(): + return val_str + + if '€' in val_str or 'eur' in val_lower: + return val_str + + # Check if it is a range (ignoring hyphens inside parenthesis/brackets like in years: 2023-24) + cleaned_for_check = re.sub(r'[\(\[\{].*?[\)\]\}]', '', val_str) + + # Split range if contains "-" or "to" + parts = [] + if ' - ' in cleaned_for_check: + parts = val_str.split(' - ') + elif '-' in cleaned_for_check: + parts = val_str.split('-') + elif ' to ' in cleaned_for_check.lower(): + parts = re.split(r'\s+to\s+', val_str, flags=re.IGNORECASE) + + if len(parts) == 2: + val1 = _ensure_eur(parts[0].strip()) + val2 = _ensure_eur(parts[1].strip()) + + # Clean conversion suffixes to avoid doubling + val1_clean = re.sub(r'\s*\(converted from.*?\)', '', val1) + val2_clean = re.sub(r'\s*\(converted from.*?\)', '', val2) + + if val1 != parts[0] or val2 != parts[1]: + curr_match = re.search(r'converted from (\w+)', val1 + val2) + curr_name = curr_match.group(1) if curr_match else "foreign currency" + year_match = re.search(r'[\(\[\{]\d{4}.*?[\)\]\}]', val_str) + suffix = f" {year_match.group(0)}" if year_match and year_match.group(0) not in val1_clean and year_match.group(0) not in val2_clean else "" + return f"{val1_clean} - {val2_clean}{suffix} (converted from {curr_name})" + else: + return val_str + else: + return _ensure_eur(val_str) + +def enrich_organizations(members, api_key=None, model='gemini-2.5-flash', sleep_time=2.0, save_path=None, save_fn=None): + """ + Enriches the list of members by querying Gemini API with Google Search grounding + to fetch financial details. + """ + effective_api_key = api_key or os.environ.get("GEMINI_API_KEY") + if not effective_api_key: + logger.error("GEMINI_API_KEY is not set. Please set the environment variable or pass the api_key.") + raise ValueError("Missing GEMINI_API_KEY environment variable.") + + logger.info(f"Initializing Gemini Client with model '{model}'...") + client = genai.Client(api_key=effective_api_key) + + todo_members = [] + for m in members: + info = m.get("funding_info", {}) + giving = info.get("annual_giving", "") + # Check if already has valid financial data (not empty, and not a placeholder) + if giving and giving.strip() and "not publicly available" not in giving.lower() and "not disclosed" not in giving.lower(): + logger.info(f"Skipping {m.get('name')} - already has financial data.") + continue + todo_members.append(m) + + total = len(todo_members) + if total == 0: + logger.info("All members are already enriched. Nothing to do.") + return members + + logger.info(f"Starting Gemini Google Search enrichment for {total} members...") + + counter = 0 + for m in todo_members: + counter += 1 + name = m.get("name", "Unknown Name") + website = m.get("website", "") + address = m.get("address", "") + country = m.get("country", "") + + logger.info(f"Processing {counter}/{total}: {name}") + + research_prompt = f""" + Research the financial statistics and application details for the following philanthropic organization: + Name: {name} + Website: {website} + Country: {country} + Address: {address} + + Please find: + - The total annual giving/expenditure for grants. + - The average grant size distributed. + - The range of grants distributed. + - The funding model of the charity (e.g. open applications, invitation only, etc.). + - Brief description of the application process/details. + - The URLs of pages you used to find this information. + + Use Google Search to find this information and write a detailed report of your findings, including the source URLs. + """ + + try: + # Step 1: Research with Google Search Grounding (with retry logic) + research_response = _generate_content_with_retry( + client=client, + model=model, + contents=research_prompt, + config=types.GenerateContentConfig( + tools=[types.Tool(google_search=types.GoogleSearch())] + ) + ) + research_text = research_response.text or "" + if not research_text.strip(): + raise ValueError("Research stage returned empty response.") + + # Step 2: Parse into structured JSON using the schema + parse_prompt = f""" + You are a data extraction assistant. Extract the financial and funding details from the research text below. + + CRITICAL INSTRUCTION: + Ensure all currency values (annual_giving, average_grant, grant_range) are converted and formatted in Euros (€). + If the research text lists values in USD ($), GBP (£), CHF, or other currencies, convert them to EUR (€) using standard/recent exchange rates. + + If a field is not mentioned or not publicly available, set its value to "Not publicly available". + + Research text: + {research_text} + """ + + response = _generate_content_with_retry( + client=client, + model=model, + contents=parse_prompt, + config=types.GenerateContentConfig( + response_mime_type="application/json", + response_schema=FunderEnrichment + ) + ) + + # Parse structured output + data = json.loads(response.text) + + annual_giving = data.get("annual_giving", "Not publicly available") + average_grant = data.get("average_grant", "Not publicly available") + grant_range = data.get("grant_range", "Not publicly available") + funding_model = data.get("funding_model", "Not publicly available") + application_details = data.get("application_details", "") + sources = data.get("sources", []) + + # Post-processing Currency Validation + annual_giving = _ensure_eur(annual_giving) + average_grant = _ensure_eur(average_grant) + grant_range = _ensure_eur_range(grant_range) + + # Plausibility Check: Average grant must be smaller than annual giving + annual_val = _extract_number(annual_giving) + avg_val = _extract_number(average_grant) + if annual_val is not None and avg_val is not None: + if avg_val > annual_val: + logger.warning( + f"Plausibility check failed for {name}: average grant ({average_grant}) " + f"is greater than annual giving ({annual_giving}). Resetting average_grant to 'Not publicly available'." + ) + average_grant = "Not publicly available" + avg_val = None + + # Plausibility Check: Parse and check range limits + min_val = None + max_val = None + if grant_range and "not publicly available" not in grant_range.lower(): + range_numbers = [] + range_str = re.sub(r'[\(\[\{].*?[\)\]\}]', '', grant_range) + for p in re.split(r'\s*(?:-|\bto\b)\s*', range_str, flags=re.IGNORECASE): + num = _extract_number(p) + if num is not None: + range_numbers.append(num) + if len(range_numbers) >= 2: + min_val = min(range_numbers[:2]) + max_val = max(range_numbers[:2]) + if range_numbers[0] > range_numbers[1]: + logger.warning(f"Plausibility check: Grant range '{grant_range}' was out of order for {name}. Re-ordering.") + year_match = re.search(r'[\(\[\{]\d{4}.*?[\)\]\}]', grant_range) + suffix = f" {year_match.group(0)}" if year_match else "" + grant_range = f"€{min_val:,.0f} - €{max_val:,.0f}{suffix}" + elif len(range_numbers) == 1: + max_val = range_numbers[0] + + # Verify max_val vs annual_val + if annual_val is not None and max_val is not None: + if max_val > annual_val: + logger.warning( + f"Plausibility check: Max grant limit ({max_val}) is greater than annual giving ({annual_val}) for {name}. " + f"Resetting grant_range to 'Not publicly available'." + ) + grant_range = "Not publicly available" + min_val = None + max_val = None + + # Verify average vs range + if avg_val is not None and min_val is not None and max_val is not None: + if avg_val < min_val or avg_val > max_val: + logger.warning( + f"Plausibility check: Average grant ({avg_val}) is outside the grant range ({min_val} - {max_val}) for {name}. " + f"Resetting average_grant to 'Not publicly available'." + ) + average_grant = "Not publicly available" + + # Populate funding_info + info = m.setdefault("funding_info", {}) + info["annual_giving"] = annual_giving + info["average_grant"] = average_grant + info["grant_range"] = grant_range + info["funding_model"] = funding_model + info["application_details"] = application_details + info["sources"] = sources + + logger.info(f"Enriched {name}: Annual Giving = {info['annual_giving']}, Funding Model = {info['funding_model']}") + + except Exception as e: + logger.error(f"Failed to enrich {name}: {e}") + # Ensure keys exist even on failure to avoid issues, or mark as failed + info = m.setdefault("funding_info", {}) + info.setdefault("annual_giving", "") + info.setdefault("average_grant", "") + info.setdefault("grant_range", "") + info.setdefault("funding_model", "") + info.setdefault("application_details", "") + info.setdefault("sources", []) + + # Save progress incrementally + if save_path and save_fn: + try: + save_fn(members, save_path) + logger.info(f"Saved intermediate progress to {save_path}") + except Exception as e: + logger.warning(f"Failed to save intermediate progress: {e}") + + # Sleep to avoid rapid API requests + if counter < total: + time.sleep(sleep_time) + + logger.info("Enrichment process completed.") + return members diff --git a/src/preprocessing/extract_geo_topic.py b/src/preprocessing/extract_geo_topic.py index 0470708..67aa346 100644 --- a/src/preprocessing/extract_geo_topic.py +++ b/src/preprocessing/extract_geo_topic.py @@ -40,10 +40,15 @@ "Animal-Related", "Water", "Nature", - "Human/Civil Rights" # FIX: War vorher vergessen + "Human/Civil Rights", # FIX: War vorher vergessen + "Technology", + "Digital Transformation", + "Scientific Research and Technology Transfer", + "Innovation", + "tech-enablement" ] -# 2. Die zentrale Mapping-Schmiede (Konsolidiert von ~24 auf 13 Hauptkategorien) +# 2. Die zentrale Mapping-Schmiede (Konsolidiert von ~24 auf 14 Hauptkategorien inkl. tech-enablement) TAG_NORMALIZATION = { # Schreibweisen-Korrekturen "Arts and Culture": "Arts & Culture", @@ -57,7 +62,14 @@ "Employment/Workforce": "Socio-economic Development, Poverty", "Social/Human Services": "Socio-economic Development, Poverty", "Recreation, Sport & Well-being": "Health", - "Policy development": "Citizenship, Social Justice & Public Affairs" + "Policy development": "Citizenship, Social Justice & Public Affairs", + + # Technology / Digitalization Mapping to tech-enablement + "Technology": "tech-enablement", + "Digital Transformation": "tech-enablement", + "Scientific Research and Technology Transfer": "tech-enablement", + "Innovation": "tech-enablement", + "tech-enablement": "tech-enablement" } # 3. Die Keyword-Kanten für den Freitext-Fallback (Exakt synchron zu den Normalisierungs-Targets) @@ -116,6 +128,10 @@ ], "Peace & Conflict Resolution": [ r"peacebuilding", r"conflict sensitivity", r"peace work" + ], + "tech-enablement": [ + r"tech\w*", r"technolog\w*", r"digital\w*", r"software", r"data science", r"artificial intelligence", r"ai\b", + r"\bit\b(?=\s+(systems?|services?|infrastructure|department|team|strategy|support))" ] } @@ -134,7 +150,7 @@ "Europe (Western / General)": { "Europe": r"europ\w+", "European Union": r"european union|\beu\b", - "United Kingdom": r"\buk\b|united kingdom|great britain|london|scotland|west midlands|english", + "United Kingdom": r"\buk\b|united kingdom|great britain|london|scotland|west midlands|english|england|wales|wirral|merseyside|hillingdon|oxfordshire|cambridgeshire|essex|hertfordshire|norfolk|suffolk|cambridge|hayes|harlington|cheshire|warrington|buckland|cornwall|dorset|somerset|wiltshire|devon|hampshire", "Ireland": r"ireland|irish", "France": r"franc\w+", "Germany": r"german\w+", @@ -142,7 +158,10 @@ "Austria": r"austria\w*", "Luxembourg": r"luxembourg\w*", "Belgium": r"belgium\w*|belgian\w*|brussels", - "Netherlands": r"netherlands|dutch|the hague|delft|zoetermeer|leiden|noordwijk" + "Netherlands": r"netherlands|dutch|the hague|delft|zoetermeer|leiden|noordwijk", + "Monaco": r"monaco\w*", + "Liechtenstein": r"liechtenstein\w*", + "Andorra": r"andorra\w*" }, "Europe (Nordic Region)": { "Nordic Region": r"nordic", @@ -150,6 +169,7 @@ "Finland": r"finland|finnish|herlin", # fängt Herlin-Stiftung ab "Sweden": r"sweden|swedish|\bse\b", "Norway": r"norway|norwegian|kristiansand", + "Iceland": r"iceland\w*", "Greenland": r"greenland", "Faroe Islands": r"faroe islands" }, @@ -158,7 +178,11 @@ "Italy": r"ital\w+|sicily|sardinia|piedmont|aosta valley|modena|parma|padua|rovigo|tuscany|florence|grosseto|arezzo|cuneo|alto adige|lucca|lombardy|torino|bologna", "Greece": r"gree\w+", "Portugal": r"portug\w+", - "Turkey": r"turk\w+|türkiye" + "Turkey": r"turk\w+|türkiye", + "Malta": r"malta\w*", + "Cyprus": r"cyprus|cypriot\w*", + "San Marino": r"san marino", + "Vatican City": r"vatican|holy see" }, "Europe (Central & Eastern / Balkans)": { "Balkans": r"balkans?|western balkans|serbian?|croatian?|slovenian?|bosnia\w*", @@ -171,14 +195,22 @@ "Ukraine": r"ukrain\w*", "Estonia": r"estonia\w*", "Lithuania": r"lithuania\w*", - "Poland": r"pol\w+|fundacja", # 'fundacja' deutet direkt auf Polen hin + "Poland": r"\bpoland\b|polish\w*|fundacja", "Latvia": r"latvia\w*", "Georgia": r"georgia\w*", "Czech Republic": r"czech\w*", "Romania": r"romani\w*", "Hungary": r"hungar\w*", "Belarus": r"belarus\w*", - "Moldova": r"moldova\w*" + "Moldova": r"moldova\w*", + "Russia": r"russia\w*", + "Albania": r"albania\w*", + "Bosnia and Herzegovina": r"bosnia\w*", + "North Macedonia": r"macedonia\w*", + "Montenegro": r"montenegro\w*", + "Serbia": r"serbia\w*", + "Armenia": r"armenia\w*", + "Azerbaijan": r"azerbaijan\w*" }, "North America": { "United States": r"united states|\busa\b|\bus\b|america\w*|flint|michigan", @@ -193,7 +225,33 @@ "Peru": r"peru\w*", "Bolivia": r"bolivia\w*", "Ecuador": r"ecuador\w*", - "Guyana": r"guyana\w*" + "Guyana": r"guyana\w*", + "El Salvador": r"el salvador", + "Argentina": r"argentina\w*", + "Chile": r"chile\w*|chili\w*", + "Venezuela": r"venezuela\w*", + "Paraguay": r"paraguay\w*", + "Uruguay": r"uruguay\w*", + "Suriname": r"suriname\w*", + "Panama": r"panama\w*", + "Costa Rica": r"costa rica\w*", + "Nicaragua": r"nicaragua\w*", + "Honduras": r"honduras\w*", + "Guatemala": r"guatemala\w*", + "Belize": r"belize\w*", + "Cuba": r"cuba\w*", + "Dominican Republic": r"dominican republic", + "Haiti": r"haiti\w*", + "Jamaica": r"jamaica\w*", + "Bahamas": r"bahamas\w*", + "Trinidad and Tobago": r"trinidad\w*", + "Barbados": r"barbados\w*", + "Saint Lucia": r"saint lucia", + "Grenada": r"grenada\w*", + "Saint Vincent and the Grenadines": r"saint vincent", + "Antigua and Barbuda": r"antigua\w*", + "Dominica": r"\bdominica\b", + "Saint Kitts and Nevis": r"saint kitts" }, "Africa / Sub-Saharan Africa": { "Africa": r"afric\w+", @@ -210,7 +268,43 @@ "Madagascar": r"madagascar\w*", "Rwanda": r"rwanda\w*", "Zimbabwe": r"zimbabwe\w*", - "South Africa": r"south africa|botswana|namibia|senegal|gambia|togo|benin|mali" + "South Africa": r"south africa", + "Botswana": r"botswana\w*", + "Namibia": r"namibia\w*", + "Senegal": r"senegal\w*", + "Gambia": r"gambia\w*", + "Togo": r"togo\w*", + "Benin": r"benin\w*", + "Mali": r"mali\w*", + "Angola": r"angola\w*", + "Nigeria": r"nigeria\w*", + "Cameroon": r"cameroon\w*", + "Ivory Coast": r"ivory coast|côte d\.ivoire", + "Mozambique": r"mozambique\w*", + "Burundi": r"burundi\w*", + "South Sudan": r"south sudan", + "Somalia": r"somalia\w*", + "Eritrea": r"eritrea\w*", + "Djibouti": r"djibouti\w*", + "Central African Republic": r"central african republic", + "Chad": r"\bchad\b", + "Congo": r"(? 100: + continue + + line_lower = line.lower() + + # Verify suffixes (and exclude false positives for "ring" and "weg" inside English words) + has_suffix = False + for s in STREET_SUFFIXES: + if len(s) <= 2: + match = re.search(rf'\b{re.escape(s)}\b', line_lower) + if match: + has_suffix = True + break + elif s in line_lower: + if s in ["ring", "weg"]: + words = re.findall(r'\b\w+\b', line_lower) + found_invalid = False + invalid_words = { + "gathering", "engineering", "during", "spring", "bring", "hearing", + "sharing", "caring", "clearing", "manufacturing", "monitoring", + "mentoring", "partnering", "sponsoring", "offering", "governing", + "transferring", "registering", "fostering", "empowering", "pioneering", + "delivering", "rendering", "filtering", "centering", "securing", + "recovering", "discovering" + } + for word in words: + if s in word and word in invalid_words: + found_invalid = True + break + if found_invalid: + continue + has_suffix = True + break + + # Standalone words require case-sensitive capitalized or uppercase start + has_word = False + for w in STREET_WORDS: + pattern = rf'\b(?:{re.escape(w.capitalize())}|{re.escape(w.upper())})\b' + if re.search(pattern, line): + has_word = True + break + + has_street = has_suffix or has_word + has_number = bool(re.search(r'\d+', line)) + + # Impressum addresses usually list street name and number first + if has_street and has_number: + candidate = "" + # Clean up the street line to strip prepended filler text + clean_street = clean_address_line(line) + + # Extract previous line as potential organization name if it is short and clean + org_name = "" + if i > 0: + prev_line = lines[i-1] + forbidden_words = [ + # Technical contact stop words + "tel", "fax", "e-mail", "email", "@", "http", "www.", + # English menu/structure words + "contact", "kontakt", "address", "adresse", "anschrift", "location", + "impressum", "headquarters", "details", "office", "head office", "home", + "news", "menu", "history", "team", "careers", "staff", "partners", "projects", + "events", "press", "publications", "blog", "resources", "gallery", "faq", + "search", "links", "site", "map", "sitemap", "privacy", "legal", "cookies", "terms", + "submissions", "submission", "required", "optional", + # Italian menu/structure words + "indirizzo", "telefono", "téléphone", "correo", "pec", "web", "sito", + "come raggiungerci", "chi siamo", "storia", "organi", "eventi", + "pubblicazioni", "staff", "novità", "breve", "in breve", "progetti", + # Spanish menu/structure words + "dirección", "direccion", "teléfono", "quienes somos", "equipo", "empleo", + "socios", "noticias", "aviso legal", "inicio", + # French menu/structure words + "accueil", "a propos", "équipe", "equipe", "carrières", "carrieres", + "partenaires", "actualités", "actualites", "mentions légales", "mentions legales" + ] + prev_line_lower = prev_line.lower() + has_org_marker = any(marker in prev_line_lower for marker in ORG_NAME_MARKERS) + if len(prev_line) < 60 and has_org_marker and not any(k in prev_line_lower for k in forbidden_words): + org_name = prev_line + + # Case 1: ZIP code is in the same line (e.g. Musterstraße 42, 80333 München) + if zip_pattern.search(clean_street): + candidate = clean_street + # Case 2: ZIP code is in the next line + elif i + 1 < len(lines): + next_line = lines[i+1] + if len(next_line) < 60 and zip_pattern.search(next_line): + candidate = f"{clean_street}, {next_line}" + # Optional: Include the country on the line after next if present + if i + 2 < len(lines): + third_line = lines[i+2] + if len(third_line) < 40 and not any(k in third_line.lower() for k in ["tel", "fax", "e-mail", "email", "@", "kvk"]): + candidate += f", {third_line}" + + if candidate: + if org_name: + candidate = f"{org_name}, {candidate}" + # Clean candidate (remove newlines and collapse whitespace) + candidate = re.sub(r'\s+', ' ', candidate).strip() + # Clean phone number suffixes or prefix labels + candidate = re.sub(r'(?i)\b(tel|phone|telefon|fax|mobil|mobile|t\b|f\b)[:\s]*\+?[\d\s\-\(\)/]+', '', candidate).strip() + candidate = re.sub(r"[.;:!?]+$", "", candidate).strip() + # Filter out standard keywords and mail symbols + if "@" not in candidate and "http" not in candidate.lower() and len(candidate) > 5: + return candidate + + return "" + +def crawl_impressum(base_url, timeout=10): + """ + Crawls base URL and prioritizes subpages to extract generic contact information. + """ + headers = { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, Gecko) Chrome/120.0.0.0 Safari/537.36" + } + + now_utc = datetime.now(timezone.utc).isoformat().replace("+00:00", "Z") + + logger.info(f"Scraping landing page: {base_url}") + try: + response = requests.get(base_url, headers=headers, timeout=timeout, allow_redirects=True) + if response.status_code != 200: + logger.warning(f"Failed to fetch base URL: HTTP {response.status_code}") + return { + "organization_url": base_url, + "extracted_at": now_utc, + "source_page_used": base_url, + "email_source_page": "", + "address_source_page": "", + "generic_email": "", + "address": "" + } + base_html = response.text + except Exception as e: + logger.error(f"Error fetching base URL: {e}") + return { + "organization_url": base_url, + "extracted_at": now_utc, + "source_page_used": base_url, + "email_source_page": "", + "address_source_page": "", + "generic_email": "", + "address": "" + } + + # Analyze the landing page first + soup = BeautifulSoup(base_html, "html.parser") + base_text = soup.get_text("\n") + + emails = extract_generic_emails(base_text) + address = extract_physical_address(base_text) + + email_res = emails[0] if emails else "" + email_source_page = base_url if email_res else "" + address_source_page = base_url if address else "" + + # If we found everything on the landing page, return early + if email_res and address: + return { + "organization_url": base_url, + "extracted_at": now_utc, + "source_page_used": base_url, + "email_source_page": base_url, + "address_source_page": base_url, + "generic_email": email_res, + "address": address + } + + # Extract links and prioritize contact pages + prioritized_links = extract_links(base_url, base_html) + + # Visit up to 4 prioritized subpages (priorities 1, 2, 3) + target_pages = [link for link in prioritized_links if link["priority"] < 4][:4] + + logger.info(f"Identified {len(target_pages)} prioritized subpages to crawl.") + + for page in target_pages: + target_url = page["url"] + logger.info(f"Scraping priority subpage ({page['keyword']}): {target_url}") + + try: + sub_resp = requests.get(target_url, headers=headers, timeout=timeout, allow_redirects=True) + if sub_resp.status_code != 200: + continue + + sub_soup = BeautifulSoup(sub_resp.text, "html.parser") + sub_text = sub_soup.get_text("\n") + + sub_emails = extract_generic_emails(sub_text) + sub_address = extract_physical_address(sub_text) + + # Fill missing data + if sub_emails and not email_res: + email_res = sub_emails[0] + email_source_page = target_url + if sub_address and not address: + address = sub_address + address_source_page = target_url + + # If both are populated, stop crawling subpages + if email_res and address: + break + except Exception as e: + logger.warning(f"Error fetching subpage {target_url}: {e}") + continue + + if email_source_page and address_source_page: + source_page_used = ( + email_source_page + if email_source_page == address_source_page + else f"email:{email_source_page}|address:{address_source_page}" + ) + else: + source_page_used = email_source_page or address_source_page or base_url + + return { + "organization_url": base_url, + "extracted_at": now_utc, + "source_page_used": source_page_used, + "email_source_page": email_source_page, + "address_source_page": address_source_page, + "generic_email": email_res, + "address": address + } + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Extract impressum and generic contact info from organization URLs.") + parser.add_argument("--url", type=str, required=True, help="Base landing page URL of the organization.") + args = parser.parse_args() + + result = crawl_impressum(args.url) + import pprint + pprint.pprint(result) diff --git a/src/preprocessing/quality.py b/src/preprocessing/quality.py new file mode 100644 index 0000000..03d345b --- /dev/null +++ b/src/preprocessing/quality.py @@ -0,0 +1,42 @@ +import re + + +_PLACEHOLDER_RE = re.compile( + r"^\s*(?:" + r"n/?a|" + r"unknown|" + r"not\s+available|" + r"not\s+publicly\s+available|" + r"not\s+published|" + r"not\s+specified|" + r"not\s+publicly\s+specified|" + r"not\s+disclosed|" + r"not\s+publicly\s+disclosed|" + r"not\s+applicable|" + r"data\s+not\s+available|" + r"data\s+not\s+publicly\s+available|" + r"information\s+not\s+available|" + r"information\s+not\s+publicly\s+available" + r")(?:\s|$|[().,:;-])", + re.IGNORECASE, +) + + +def has_technical_value(value): + if value is None: + return False + if isinstance(value, str): + return bool(value.strip()) + if isinstance(value, (list, tuple, set, dict)): + return bool(value) + return True + + +def is_placeholder_value(value): + if not isinstance(value, str): + return False + return bool(_PLACEHOLDER_RE.match(value.strip())) + + +def is_informative_value(value): + return has_technical_value(value) and not is_placeholder_value(value) diff --git a/src/scrapers/hinchilla.py b/src/scrapers/hinchilla.py new file mode 100644 index 0000000..c75c025 --- /dev/null +++ b/src/scrapers/hinchilla.py @@ -0,0 +1,524 @@ +import json +import requests +import time +import argparse +import logging +import os +import re +from bs4 import BeautifulSoup + +# Configure logger +logging.basicConfig( + level=logging.INFO, + format="%(asctime)s [%(levelname)s] %(message)s", + handlers=[ + logging.StreamHandler() + ] +) + +def make_request(method, url, max_retries=3, backoff_factor=2, timeout=10, **kwargs): + """ + Make an HTTP request with automatic retries, exponential backoff, and timeout. + """ + for attempt in range(max_retries): + try: + response = requests.request(method, url, timeout=timeout, **kwargs) + # Retry on transient server errors or rate limits + if response.status_code in [429, 500, 502, 503, 504]: + logging.warning( + f"Transient HTTP status {response.status_code} for URL: {url}. " + f"Attempt {attempt + 1}/{max_retries}" + ) + if attempt < max_retries - 1: + time.sleep(backoff_factor ** attempt) + continue + return response + except requests.exceptions.RequestException as e: + logging.warning( + f"Request failed for URL: {url} (Error: {e}). " + f"Attempt {attempt + 1}/{max_retries}" + ) + if attempt < max_retries - 1: + time.sleep(backoff_factor ** attempt) + continue + raise e + raise requests.exceptions.RequestException( + f"Failed to fetch {url} after {max_retries} attempts." + ) + +def parse_rsc_payload(content): + """ + Parse a Next.js App Router Server Components RSC stream payload. + Correctly decodes length-prefixed text blocks (T[hex],) and normal line-based blocks. + """ + raw_content = content.encode("utf-8") + pointer = 0 + parsed_blocks = {} + segment_re = re.compile(rb'^[ \t\r\n]*([A-Za-z0-9_]+):') + + while pointer < len(raw_content): + # Match a key at the current segment boundary. RSC text lengths are byte + # lengths, so pointer movement must be done on the encoded payload. + match = segment_re.match(raw_content[pointer:]) + if not match: + newline_idx = raw_content.find(b"\n", pointer) + if newline_idx == -1: + break + pointer = newline_idx + 1 + continue + + key = match.group(1).decode("ascii") + pointer += match.end() + + # Check if it is a text block format: T[hex], + text_match = re.match(rb'^T([0-9a-fA-F]+),', raw_content[pointer:]) + if text_match: + hex_len = text_match.group(1).decode("ascii") + length = int(hex_len, 16) + pointer += text_match.end() + + val = raw_content[pointer:pointer+length].decode("utf-8", errors="replace") + parsed_blocks[key] = { + "type": "text", + "content": val + } + pointer += length + else: + # Standard line-based segment (usually JSON payload, HL, or I) + newline_idx = raw_content.find(b"\n", pointer) + if newline_idx == -1: + val = raw_content[pointer:].decode("utf-8", errors="replace") + pointer = len(raw_content) + else: + val = raw_content[pointer:newline_idx].decode("utf-8", errors="replace") + pointer = newline_idx + 1 + + parsed_blocks[key] = { + "type": "json_or_other", + "content": val + } + + return parsed_blocks + +def resolve_rsc_references(blocks, entry_json_str): + """ + Recursively resolves $key references inside parsed RSC JSON data blocks. + """ + try: + data = json.loads(entry_json_str) + except Exception as e: + logging.warning(f"Failed to parse entry JSON: {e}") + return None + + def resolve_refs(obj): + if isinstance(obj, str): + if obj.startswith("$") and len(obj) > 1: + ref_key = obj[1:] + if ref_key in blocks: + ref_info = blocks[ref_key] + if ref_info["type"] == "text": + return ref_info["content"] + else: + # Try parsing as JSON first, if not return raw + try: + return json.loads(ref_info["content"]) + except: + return ref_info["content"] + elif isinstance(obj, dict): + return {k: resolve_refs(v) for k, v in obj.items()} + elif isinstance(obj, list): + return [resolve_refs(x) for x in obj] + return obj + + return resolve_refs(data) + +def find_sections_container(resolved_data): + """ + Finds the dict that contains 'sections' and 'data' keys in the resolved RSC payload. + """ + if isinstance(resolved_data, dict) and "sections" in resolved_data: + return resolved_data + + if isinstance(resolved_data, dict): + for v in resolved_data.values(): + res = find_sections_container(v) + if res: + return res + elif isinstance(resolved_data, list): + for x in resolved_data: + res = find_sections_container(x) + if res: + return res + return None + +def parse_quick_stats(text): + """ + Parses bullet points or markdown tables in Quick Stats text block. + """ + stats = {} + if not text: + return stats + + # 1. Matches bullet points: - **Key**: Value + matches = re.findall(r'-\s*\*\*(.*?)\*\*:\s*(.*)', text) + for k, v in matches: + stats[k.strip()] = v.strip() + + # 2. Matches markdown table rows: | Key | Value | + for line in text.splitlines(): + line = line.strip() + if line.startswith("|") and line.endswith("|"): + parts = [p.strip() for p in line.split("|")[1:-1]] + if len(parts) >= 2: + key, val = parts[0], parts[1] + # Skip header rows and separators + if key.lower() in ["metric", "key", "---"] or "---" in key or "---" in val: + continue + stats[key] = val + return stats + +def normalize_stat_key(key): + return re.sub(r"[^a-z0-9]+", "", key.lower()) + +def get_case_insensitive(d, key_options): + normalized_options = {normalize_stat_key(opt) for opt in key_options} + for opt in key_options: + for k, v in d.items(): + if k.lower() == opt.lower(): + return v + for k, v in d.items(): + if normalize_stat_key(k) in normalized_options: + return v + return "" + +def pick_quick_stat(stats, key_options): + return get_case_insensitive(stats, key_options) + +APPLICATION_URL_INDICATORS = ( + "apply", + "application", + "grant-application", + "funding", + "portal", + "grants", +) + +EMAIL_RE = re.compile(r"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}") +URL_RE = re.compile(r"https?://[^\s)\]>,]+") + +def extract_email_from_text(text): + if not text: + return "" + for match in EMAIL_RE.finditer(text): + email = match.group(0).strip().rstrip(".,;:)]}") + local, _, domain = email.partition("@") + if local and "." in domain and not domain.startswith(".") and not domain.endswith("."): + return email + return "" + +def extract_urls_from_text(text): + if not text: + return [] + return [match.group(0).rstrip(".,;:)]}") for match in URL_RE.finditer(text)] + +def is_application_url(url): + if not url or not isinstance(url, str): + return False + url = url.strip() + if not url.startswith(("http://", "https://")): + return False + url_lower = url.lower() + return any(indicator in url_lower for indicator in APPLICATION_URL_INDICATORS) + +def infer_application_portal(urls): + for url in urls: + if is_application_url(url): + return url.strip() + return "" + +def scrape(limit=None, sleep_time=1.0, timeout=10.0, completed_slugs=None): + url_directory = "https://www.hinchilla.com/funder-directory" + headers = { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" + } + + logging.info(f"Retrieving members list from {url_directory}...") + try: + response = make_request("GET", url_directory, headers=headers, timeout=timeout) + if response.status_code != 200: + logging.error(f"Failed to retrieve data: HTTP {response.status_code}") + return [] + soup = BeautifulSoup(response.content, "html.parser") + except Exception as e: + logging.error(f"Critical error fetching directory page: {e}") + return [] + + # Extract unique funder links + links = soup.find_all("a", href=True) + funder_slugs = [] + seen = set() + + for a in links: + href = a["href"] + if "/funder-directory/" in href and not href.endswith("/funder-directory") and not href.endswith("/funder-directory/"): + # Normalize to extract slug + slug = href.split("/funder-directory/")[-1].strip() + if slug and slug not in seen: + seen.add(slug) + funder_slugs.append(slug) + + # Filter completed slugs before counting or applying limit + if completed_slugs: + funder_slugs = [s for s in funder_slugs if s not in completed_slugs] + + todo = len(funder_slugs) + logging.info(f"Successfully identified {todo} remaining funder pages to scrape.") + + if limit: + funder_slugs = funder_slugs[:limit] + todo = len(funder_slugs) + logging.info(f"Limiting scrape run to {todo} pages.") + + members = [] + counter = 0 + scraped_successfully = 0 + + for slug in funder_slugs: + counter += 1 + detail_url = f"https://www.hinchilla.com/funder-directory/{slug}.txt" + logging.info(f"Processing {counter}/{todo}: {slug} -> {detail_url}") + + member = { + "name": slug.replace("-", " ").title(), + "link": f"https://www.hinchilla.com/funder-directory/{slug}", + "philea_info": {} + } + + try: + resp = make_request("GET", detail_url, headers=headers, timeout=timeout) + if resp.status_code != 200: + logging.warning(f"Failed to retrieve detail page for {slug}: HTTP {resp.status_code}") + member["philea_info"]["Error"] = f"HTTP {resp.status_code}" + members.append(member) + time.sleep(sleep_time) + continue + + # Parse Next.js RSC payload + blocks = parse_rsc_payload(resp.text) + + # Find the main entry JSON block (contains the sections data) + sections_json_str = None + for key, info in blocks.items(): + if info["type"] == "json_or_other" and '"sections"' in info["content"]: + sections_json_str = info["content"] + break + + if not sections_json_str: + logging.warning(f"No sections payload found in RSC for {slug}") + member["philea_info"]["Error"] = "No sections payload found" + members.append(member) + time.sleep(sleep_time) + continue + + resolved_data = resolve_rsc_references(blocks, sections_json_str) + container = find_sections_container(resolved_data) + + if not container: + logging.warning(f"Could not find sections container in resolved RSC payload for {slug}") + member["philea_info"]["Error"] = "No sections container in resolved payload" + members.append(member) + time.sleep(sleep_time) + continue + + # Extract header data dict + meta_data = container.get("data", {}) + name = meta_data.get("name", member["name"]) + member["name"] = name + + # Build sections dict + sections_list = container.get("sections", []) + sections_dict = {sec.get("title"): sec.get("content", "") for sec in sections_list} + + # Parse Quick Stats bullet points + quick_stats_text = sections_dict.get("Quick Stats", "") + quick_stats = parse_quick_stats(quick_stats_text) + + # Map sections and extract data + funding_priorities = sections_dict.get("Funding Priorities", "") + overview = sections_dict.get("Overview", "") + area_of_operation = meta_data.get("areaOfOperation", "") + + # Geographic Focus includes areaOfOperation, Funding Priorities, and Quick Stats info + geo_focus_combined = f"Area of Operation: {area_of_operation}\n\n{funding_priorities}\n\n{quick_stats_text}" + text_for_contact = "\n".join([overview, funding_priorities, quick_stats_text]) + website = meta_data.get("website", "") + email = meta_data.get("email", "") or extract_email_from_text(text_for_contact) + application_portal = meta_data.get("applicationPortal", "") or infer_application_portal( + [website] + extract_urls_from_text(text_for_contact) + ) + + member["philea_info"] = { + # Normal fields expected by extract_geo_topic.py + "About": overview, + "Programme Areas": funding_priorities, + "Geographic Focus": geo_focus_combined, + + # Metadata fields + "charityNumber": meta_data.get("charityNumber", ""), + "areaOfOperation": area_of_operation, + "expenditure": meta_data.get("expenditure", ""), + "website": website, + "phone": meta_data.get("phone", ""), + "email": email, + "address": meta_data.get("address", ""), + "applicationPortal": application_portal, + + # Financial stats from Quick Stats + "quick_stats": quick_stats, + "annual_giving": pick_quick_stat(quick_stats, [ + "Annual Giving", + "Annual Grant Distribution", + "Annual Grants", + "AAC's Own Annual Grants", + ]), + "annual_income": pick_quick_stat(quick_stats, ["Annual Income", "Total Income"]), + "annual_expenditure": pick_quick_stat(quick_stats, ["Annual Expenditure", "Charitable Expenditure"]), + "success_rate": pick_quick_stat(quick_stats, [ + "Success Rate", + "Award Rate", + "Acceptance Rate", + "Funding Success Rate", + ]), + "decision_time": pick_quick_stat(quick_stats, [ + "Decision Time", + "Decision Timeline", + "Response Time", + "Review Time", + "Turnaround Time", + ]), + "grant_range": pick_quick_stat(quick_stats, [ + "Grant Range", + "Average Grant", + "Grant Amount", + "Grant Size", + "Award Range", + "Typical Grant", + "Amount", + ]), + "average_grant": pick_quick_stat(quick_stats, ["Average Grant", "Typical Grant"]), + "funding_model": pick_quick_stat(quick_stats, [ + "Funding Model", + "Application Method", + "Application Process", + "Application", + "Application Schedule", + "Grant Distribution", + "Distribution Method", + ]), + "number_of_grants": pick_quick_stat(quick_stats, ["Number of Grants", "Grants Awarded", "Projects Funded Globally"]), + } + scraped_successfully += 1 + + except Exception as e: + logging.error(f"Error scraping details for {slug}: {e}") + member["philea_info"] = { + "About": "", + "Programme Areas": "", + "Geographic Focus": "", + "Error": str(e) + } + + members.append(member) + time.sleep(sleep_time) + + logging.info(f"Finished Hinchilla scraping. Success rate: {scraped_successfully}/{counter}") + return members + +def load_existing_data(path): + """ + Loads existing raw data from the output path. + On AWS, this function can be modified to fetch the JSON from an S3 bucket instead. + """ + if not path or not os.path.exists(path): + return [] + logging.info(f"Loading existing data from {path}...") + try: + with open(path, "r", encoding="utf-8") as f: + return json.load(f) + except Exception as e: + logging.warning(f"Could not load existing data: {e}") + return [] + +def save_data(members, path): + """ + Saves the list of members to the output path. + On AWS, this function can be modified to write the JSON back to an S3 bucket instead. + """ + logging.info(f"Saving scraped data to {path}...") + try: + os.makedirs(os.path.dirname(os.path.abspath(path)), exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(members, f, ensure_ascii=False, indent=4) + logging.info("Data saved successfully.") + except Exception as e: + logging.error(f"Failed to save data to {path}: {e}") + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Scrape Hinchilla organization details.") + parser.add_argument( + "--output", + type=str, + default=os.path.join(os.path.dirname(__file__), "../data/raw/hinchilla_members.json"), + help="Path where the raw JSON file should be saved." + ) + parser.add_argument( + "--limit", + type=int, + default=None, + help="Limit the number of organizations to scrape (for testing)." + ) + parser.add_argument( + "--sleep", + type=float, + default=1.0, + help="Sleep time in seconds between requests to avoid rate limits." + ) + parser.add_argument( + "--timeout", + type=float, + default=10.0, + help="HTTP request timeout in seconds." + ) + args = parser.parse_args() + + # Load existing data to support resuming + existing_members = load_existing_data(args.output) + completed_slugs = set() + for m in existing_members: + link = m.get("link", "") + slug = link.split("/")[-1].strip() + # Only count as completed if it succeeded without errors + if slug and "Error" not in m.get("philea_info", {}): + completed_slugs.add(slug) + + if completed_slugs: + logging.info(f"Resuming: skipping {len(completed_slugs)} already successfully scraped members.") + + new_members = scrape( + limit=args.limit, + sleep_time=args.sleep, + timeout=args.timeout, + completed_slugs=completed_slugs + ) + + # Merge new members with existing ones, overwriting on overlap + merged_dict = {m["link"]: m for m in existing_members} + for m in new_members: + merged_dict[m["link"]] = m + + merged_members = list(merged_dict.values()) + + if new_members or completed_slugs: + save_data(merged_members, args.output) + else: + logging.error("No data scraped and no existing data. File was not saved.") diff --git a/src/scrapers/register_of_charities.py b/src/scrapers/register_of_charities.py new file mode 100644 index 0000000..050db51 --- /dev/null +++ b/src/scrapers/register_of_charities.py @@ -0,0 +1,367 @@ +import os +import time +import json +import logging +import argparse +import requests + +# Load environment variables from .env file if it exists +def load_env(): + scrapers_dir = os.path.dirname(os.path.abspath(__file__)) + src_dir = os.path.dirname(scrapers_dir) + workspace_root = os.path.dirname(src_dir) + env_path = os.path.join(workspace_root, ".env") + if os.path.exists(env_path): + with open(env_path, "r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line or line.startswith("#"): + continue + if "=" in line: + key, val = line.split("=", 1) + key = key.strip() + val = val.strip().strip("'\"") + if key: + os.environ.setdefault(key, val) + +load_env() + +# Configure logger +logging.basicConfig( + level=logging.INFO, + format="%(asctime)s [%(levelname)s] %(message)s", + handlers=[ + logging.StreamHandler() + ] +) + +class CharityCommissionAPI: + """ + Client for interacting with the official Charity Commission for England and Wales API. + """ + BASE_URL = "https://api.charitycommission.gov.uk/register/api" + + def __init__(self, api_key=None, timeout=10.0, max_retries=3, backoff_factor=2): + # Read API key from parameter or environment variables + self.api_key = api_key if api_key is not None else os.environ.get("CHARITY_COMMISSION_API_KEY") + self.timeout = timeout + self.max_retries = max_retries + self.backoff_factor = backoff_factor + + self.session = requests.Session() + if self.api_key: + self.session.headers.update({ + "Ocp-Apim-Subscription-Key": self.api_key, + "Cache-Control": "no-cache" + }) + else: + logging.warning("No API key provided. Requests to the Charity Commission API may fail with HTTP 401 Unauthorized.") + + def make_request(self, method, endpoint, **kwargs): + """ + Make an HTTP request with automatic retries, exponential backoff, and timeout. + """ + url = f"{self.BASE_URL}/{endpoint.lstrip('/')}" + + # Ensure timeout is set + if "timeout" not in kwargs: + kwargs["timeout"] = self.timeout + + for attempt in range(self.max_retries): + try: + response = self.session.request(method, url, **kwargs) + # Retry on transient server errors or rate limits (e.g. 429, 5xx) + if response.status_code in [429, 500, 502, 503, 504]: + logging.warning( + f"Transient HTTP status {response.status_code} for URL: {url}. " + f"Attempt {attempt + 1}/{self.max_retries}" + ) + if attempt < self.max_retries - 1: + time.sleep(self.backoff_factor ** attempt) + continue + return response + except requests.exceptions.RequestException as e: + logging.warning( + f"Request failed for URL: {url} (Error: {e}). " + f"Attempt {attempt + 1}/{self.max_retries}" + ) + if attempt < self.max_retries - 1: + time.sleep(self.backoff_factor ** attempt) + continue + raise e + raise requests.exceptions.RequestException( + f"Failed to fetch {url} after {self.max_retries} attempts." + ) + + def all_charity_details(self, registered_number, suffix=0): + """ + Retrieves comprehensive details about a charity (V2 endpoint). + URL: allcharitydetailsV2/{RegisteredNumber}/{suffix} + """ + endpoint = f"allcharitydetailsV2/{registered_number}/{suffix}" + response = self.make_request("GET", endpoint) + if response.status_code == 200: + return response.json() + elif response.status_code == 404: + logging.warning(f"Charity {registered_number} (suffix {suffix}) not found.") + return None + else: + response.raise_for_status() + + def charity_assets_liabilities(self, registered_number, suffix=0): + """ + Retrieves asset and liability information for a charity. + URL: charityassetsliabilities/{RegisteredNumber}/{suffix} + """ + endpoint = f"charityassetsliabilities/{registered_number}/{suffix}" + response = self.make_request("GET", endpoint) + if response.status_code == 200: + return response.json() + elif response.status_code == 404: + logging.warning(f"Charity assets/liabilities not found for {registered_number} (suffix {suffix}).") + return None + else: + response.raise_for_status() + + def check_primary_grants(self, registered_number, suffix=0): + """ + Checks primary grants information for a charity. + URL: checkprimarygrants/{RegisteredNumber}/{suffix} + """ + endpoint = f"checkprimarygrants/{registered_number}/{suffix}" + response = self.make_request("GET", endpoint) + if response.status_code == 200: + return response.json() + elif response.status_code == 404: + logging.warning(f"Primary grants not found for {registered_number} (suffix {suffix}).") + return None + else: + response.raise_for_status() + + def charity_who_what_how(self, registered_number, suffix=0): + """ + Retrieves who, what, and how information for a charity. + URL: charitywhowhathow/{RegisteredNumber}/{suffix} + """ + endpoint = f"charitywhowhathow/{registered_number}/{suffix}" + response = self.make_request("GET", endpoint) + if response.status_code == 200: + return response.json() + elif response.status_code == 404: + logging.warning(f"Who/What/How info not found for {registered_number} (suffix {suffix}).") + return None + else: + response.raise_for_status() + + def charity_financial_history(self, registered_number, suffix=0): + """ + Retrieves financial history for a charity. + URL: charityfinancialhistory/{RegisteredNumber}/{suffix} + """ + endpoint = f"charityfinancialhistory/{registered_number}/{suffix}" + response = self.make_request("GET", endpoint) + if response.status_code == 200: + return response.json() + elif response.status_code == 404: + logging.warning(f"Financial history not found for {registered_number} (suffix {suffix}).") + return None + else: + response.raise_for_status() + + def search_charity_name(self, charity_name): + """ + Searches for a charity by name. + URL: searchCharityName/{charityname} + """ +from urllib.parse import quote +endpoint = f"searchCharityName/{quote(str(charity_name), safe='')}" +response = self.make_request("GET", endpoint) + if response.status_code == 200: + return response.json() + else: + response.raise_for_status() + + +# Module-level convenience functions +def get_all_charity_details(registered_number, suffix=0, api_key=None): + client = CharityCommissionAPI(api_key=api_key) + return client.all_charity_details(registered_number, suffix) + +def get_charity_assets_liabilities(registered_number, suffix=0, api_key=None): + client = CharityCommissionAPI(api_key=api_key) + return client.charity_assets_liabilities(registered_number, suffix) + +def get_check_primary_grants(registered_number, suffix=0, api_key=None): + client = CharityCommissionAPI(api_key=api_key) + return client.check_primary_grants(registered_number, suffix) + +def get_charity_who_what_how(registered_number, suffix=0, api_key=None): + client = CharityCommissionAPI(api_key=api_key) + return client.charity_who_what_how(registered_number, suffix) + +def get_charity_financial_history(registered_number, suffix=0, api_key=None): + client = CharityCommissionAPI(api_key=api_key) + return client.charity_financial_history(registered_number, suffix) + +def search_charity_name(charity_name, api_key=None): + client = CharityCommissionAPI(api_key=api_key) + return client.search_charity_name(charity_name) + + +def scrape(registered_numbers=None, search_name=None, limit=None, sleep_time=1.0, timeout=10.0, api_key=None): + """ + Scrapes data for one or more charities. + Can either search for a charity name or fetch details for specific registered numbers. + """ + client = CharityCommissionAPI(api_key=api_key, timeout=timeout) + results = [] + + if search_name: + logging.info(f"Searching for charities with name matching: '{search_name}'") + try: + search_results = client.search_charity_name(search_name) + if not search_results: + logging.info("No matching charities found.") + return [] + + reg_numbers = [] + for item in search_results: + reg_no = item.get("reg_charity_number") or item.get("registeredCharityNumber") or item.get("charityNumber") or item.get("regno") + suffix = item.get("group_subsid_suffix") if item.get("group_subsid_suffix") is not None else (item.get("suffix") or 0) + if reg_no: + reg_numbers.append((int(reg_no), int(suffix))) + except Exception as e: + logging.error(f"Failed to search for charity name '{search_name}': {e}") + return [] + elif registered_numbers: + reg_numbers = [] + for item in registered_numbers: + if isinstance(item, tuple): + reg_numbers.append((int(item[0]), int(item[1]))) + elif isinstance(item, (int, str)): + reg_numbers.append((int(item), 0)) + else: + logging.error("Either registered_numbers or search_name must be provided to scrape.") + return [] + + if limit: + reg_numbers = reg_numbers[:limit] + + total = len(reg_numbers) + logging.info(f"Starting scraping details for {total} charity records...") + + for i, (reg_no, suffix) in enumerate(reg_numbers): + logging.info(f"[{i+1}/{total}] Fetching details for Charity Registration: {reg_no}, Suffix: {suffix}") + charity_data = { + "registered_charity_number": reg_no, + "suffix": suffix, + "link": f"https://register-of-charities.charitycommission.gov.uk/charity-details/?regid={reg_no}&subid={suffix}" + } + + try: + charity_data["all_details"] = client.all_charity_details(reg_no, suffix) + time.sleep(sleep_time) + + charity_data["assets_liabilities"] = client.charity_assets_liabilities(reg_no, suffix) + time.sleep(sleep_time) + + charity_data["primary_grants"] = client.check_primary_grants(reg_no, suffix) + time.sleep(sleep_time) + + charity_data["who_what_how"] = client.charity_who_what_how(reg_no, suffix) + time.sleep(sleep_time) + + charity_data["financial_history"] = client.charity_financial_history(reg_no, suffix) + time.sleep(sleep_time) + + except Exception as e: + logging.error(f"Error scraping details for charity {reg_no} (suffix {suffix}): {e}") + charity_data["error"] = str(e) + + results.append(charity_data) + + return results + + +def save_data(data, path): + logging.info(f"Saving scraped data to {path}...") + try: + os.makedirs(os.path.dirname(os.path.abspath(path)), exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, ensure_ascii=False, indent=4) + logging.info("Data saved successfully.") + except Exception as e: + logging.error(f"Failed to save data to {path}: {e}") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Scrape Charity Commission API.") + parser.add_argument( + "--reg-numbers", + type=str, + nargs="+", + help="List of registered charity numbers to scrape (e.g. 219907 283322)" + ) + parser.add_argument( + "--search", + type=str, + help="Name search term to find and scrape charities" + ) + parser.add_argument( + "--suffix", + type=int, + default=0, + help="Suffix for the registered numbers (defaults to 0)" + ) + parser.add_argument( + "--api-key", + type=str, + help="Charity Commission API subscription key (defaults to environment variable)" + ) + parser.add_argument( + "--output", + type=str, + default=os.path.join(os.path.dirname(__file__), "../data/raw/register_of_charities_results.json"), + help="Path where the output JSON file should be saved." + ) + parser.add_argument( + "--limit", + type=int, + default=None, + help="Limit the number of charities to scrape." + ) + parser.add_argument( + "--sleep", + type=float, + default=1.0, + help="Sleep time in seconds between API requests." + ) + parser.add_argument( + "--timeout", + type=float, + default=10.0, + help="HTTP request timeout in seconds." + ) + args = parser.parse_args() + + # Determine registered numbers format + registered_numbers = None + if args.reg_numbers: + registered_numbers = [(int(num), args.suffix) for num in args.reg_numbers] + + if not registered_numbers and not args.search: + parser.error("At least one of --reg-numbers or --search must be specified.") + + results = scrape( + registered_numbers=registered_numbers, + search_name=args.search, + limit=args.limit, + sleep_time=args.sleep, + timeout=args.timeout, + api_key=args.api_key + ) + + if results: + save_data(results, args.output) + else: + logging.error("No data retrieved. File was not saved.") \ No newline at end of file diff --git a/src/tests/test_consolidate.py b/src/tests/test_consolidate.py new file mode 100644 index 0000000..74f1022 --- /dev/null +++ b/src/tests/test_consolidate.py @@ -0,0 +1,183 @@ +import unittest +import os +import sys + +# Ensure src directory is in sys.path +TESTS_DIR = os.path.dirname(os.path.abspath(__file__)) +SRC_DIR = os.path.dirname(TESTS_DIR) +if SRC_DIR not in sys.path: + sys.path.insert(0, SRC_DIR) + +from preprocessing.consolidate import ( + extract_domain, + normalize_name, + jaccard_similarity, + match_members, + convert_gbp_to_eur, + normalize_to_clean_schema, + merge_members, + consolidate_datasets +) + +class TestConsolidate(unittest.TestCase): + + def test_extract_domain(self): + self.assertEqual(extract_domain("http://www.womenwin.org"), "womenwin.org") + self.assertEqual(extract_domain("https://womenwin.org/about/us"), "womenwin.org") + self.assertEqual(extract_domain("http://sub.domain.com/test?arg=1"), "sub.domain.com") + self.assertEqual(extract_domain(""), "") + self.assertEqual(extract_domain(None), "") + + def test_normalize_name(self): + self.assertEqual(normalize_name("Toni Piëch Foundation"), ["toni", "piëch"]) + self.assertEqual(normalize_name("Women Win"), ["women", "win"]) + self.assertEqual(normalize_name("The Novartis Charity Trust e.V."), ["novartis"]) + self.assertEqual(normalize_name(""), []) + self.assertEqual(normalize_name(None), []) + + def test_jaccard_similarity(self): + self.assertAlmostEqual(jaccard_similarity(["a", "b"], ["b", "c"]), 1/3) + self.assertEqual(jaccard_similarity([], ["a"]), 0.0) + + def test_match_members(self): + # 1. Matching by Website + m1 = {"name": "Test Org A", "website": "https://testorga.org"} + m2 = {"name": "Diff Name", "website": "http://www.testorga.org/home"} + self.assertTrue(match_members(m1, m2)) + + # 2. Matching by normalized name exact/Jaccard + m3 = {"name": "Toni Piëch Foundation", "website": ""} + m4 = {"name": "Toni Piëch", "website": ""} + self.assertTrue(match_members(m3, m4)) + + # 3. Numeric ID exclusion + m5 = {"name": "136193034", "website": ""} + m6 = {"name": "Novartis US Foundation", "website": ""} + self.assertFalse(match_members(m5, m6)) + + # 4. No match + m7 = {"name": "Women Win", "website": ""} + m8 = {"name": "Toni Piëch Foundation", "website": ""} + self.assertFalse(match_members(m7, m8)) + + def test_convert_gbp_to_eur(self): + self.assertEqual(convert_gbp_to_eur("£10,000 (2024)"), "€12,000 (2024) (converted from GBP)") + self.assertEqual(convert_gbp_to_eur("10,000 GBP"), "€12,000 (converted from GBP)") + self.assertEqual(convert_gbp_to_eur("€10,000"), "€10,000") # No conversion + self.assertEqual(convert_gbp_to_eur("Not publicly available"), "Not publicly available") + + def test_normalize_to_clean_schema(self): + raw_philea = { + "name": "Women Win", + "website": "http://www.womenwin.org", + "address": "Amsterdam", + "email": "info@womenwin.org", + "tags_focus": ["Health"], + "geo_locations": {"Worldwide": ["Global"]}, + "position": { + "address": "Amsterdam, NL", + "city": "Amsterdam", + "state": "North Holland", + "country": "Netherlands", + "lat": "52.3676", + "lng": "4.9041" + }, + "philea_info": { + "About": "Short description of Women Win", + "annual_giving": "€50,000 (2024)", + "funding_model": "Open applications", + "sources": ["http://source1.com"] + } + } + + clean = normalize_to_clean_schema(raw_philea, "Philea") + + self.assertEqual(clean["name"], "Women Win") + self.assertEqual(clean["source"], "Philea") + self.assertEqual(clean["website"], "http://www.womenwin.org") + self.assertEqual(clean["email"], "info@womenwin.org") + self.assertEqual(clean["address"], "Amsterdam, NL") + self.assertEqual(clean["city"], "Amsterdam") + self.assertEqual(clean["state"], "North Holland") + self.assertEqual(clean["country"], "Netherlands") + self.assertEqual(clean["latitude"], 52.3676) + self.assertEqual(clean["longitude"], 4.9041) + self.assertEqual(clean["funding_info"]["annual_giving"], "€50,000 (2024)") + self.assertEqual(clean["funding_info"]["funding_model"], "Open applications") + self.assertEqual(clean["thematic_focus"], ["Health"]) + self.assertEqual(clean["geographic_focus"], {"Worldwide": ["Global"]}) + + def test_merge_members(self): + p_member = normalize_to_clean_schema({ + "name": "Women Win", + "website": "http://www.womenwin.org", + "address": "Amsterdam", + "email": "info@womenwin.org", + "tags_focus": ["Health"], + "geo_locations": {"Worldwide": ["Global"]}, + "philea_info": { + "About": "Short description of Women Win", + "annual_giving": "€50,000 (2024)", + "funding_model": "Open applications", + "sources": ["http://source1.com"] + } + }, "Philea") + + h_member = normalize_to_clean_schema({ + "name": "Women Win", + "tags_focus": ["Human/Civil Rights"], + "geo_locations": {"Europe (Western / General)": ["Netherlands"]}, + "philea_info": { + "About": "A much longer and detailed description of Women Win from Hinchilla website.", + "website": "http://www.womenwin.org", + "annual_giving": "£45,000 (2024)", # 45,000 * 1.2 = 54,000 EUR vs 50,000 EUR -> Discrepancy! + "funding_model": "Invitation only", # Conflict! + "charityNumber": "12345", + "sources": ["http://source2.com"] + } + }, "Hinchilla") + + merged = merge_members(p_member, h_member) + + # Verify preferred fields and merges + self.assertEqual(merged["name"], "Women Win") + self.assertEqual(merged["source"], "Philea, Hinchilla") + self.assertEqual(merged["funding_info"]["charity_number"], "12345") # Extracted from Hinchilla + + # Verify tag and geolocation merging + self.assertEqual(sorted(merged["thematic_focus"]), ["Health", "Human/Civil Rights"]) + self.assertEqual(merged["geographic_focus"]["Worldwide"], ["Global"]) + self.assertEqual(merged["geographic_focus"]["Europe (Western / General)"], ["Netherlands"]) + + # Verify sources merging + self.assertEqual(sorted(merged["funding_info"]["sources"]), ["http://source1.com", "http://source2.com"]) + + # Verify discrepancies tracking + self.assertIn("_discrepancies", merged) + self.assertIn("annual_giving", merged["_discrepancies"]) + self.assertIn("funding_model", merged["_discrepancies"]) + + # Check conversion details + self.assertEqual(merged["_discrepancies"]["annual_giving"]["hinchilla_value"], "€54,000 (2024) (converted from GBP)") + + def test_consolidate_datasets(self): + philea = [ + {"name": "Women Win", "website": "http://www.womenwin.org", "tags_focus": ["Health"]}, + {"name": "Toni Piëch Foundation", "website": "https://www.tonipiechfoundation.org", "tags_focus": ["Environment/Climate"]} + ] + hinchilla = [ + {"name": "Women Win", "philea_info": {"website": "http://www.womenwin.org", "annual_giving": "£10,000"}, "tags_focus": ["Health"]}, + {"name": "Other Org", "philea_info": {"website": "https://other.org", "annual_giving": "£20,000"}, "tags_focus": ["Education"]} + ] + + consolidated = consolidate_datasets(philea, hinchilla) + self.assertEqual(len(consolidated), 3) # 1 merged, 1 Philea-only, 1 Hinchilla-only + + # Verify unmatched Hinchilla was converted + other_org = [m for m in consolidated if m["name"] == "Other Org"][0] + self.assertEqual(other_org["funding_info"]["annual_giving"], "€24,000 (converted from GBP)") + self.assertEqual(other_org["website"], "https://other.org") + self.assertEqual(other_org["source"], "Hinchilla") + +if __name__ == "__main__": + unittest.main() diff --git a/src/tests/test_enrich.py b/src/tests/test_enrich.py new file mode 100644 index 0000000..8872259 --- /dev/null +++ b/src/tests/test_enrich.py @@ -0,0 +1,282 @@ +import unittest +from unittest.mock import patch, MagicMock +import os +import json +import sys + +# Ensure src directory is in sys.path so we can import preprocessing +TESTS_DIR = os.path.dirname(os.path.abspath(__file__)) +SRC_DIR = os.path.dirname(TESTS_DIR) +if SRC_DIR not in sys.path: + sys.path.insert(0, SRC_DIR) + +from preprocessing.enrich_gemini import enrich_organizations, FunderEnrichment + +class TestEnrichGemini(unittest.TestCase): + + def setUp(self): + # Sample members + self.members = [ + { + "name": "Funder A", + "website": "https://fundera.org", + "address": "123 Street", + "country": "Germany", + "funding_info": {} + }, + { + "name": "Funder B", + "website": "https://funderb.org", + "address": "456 Avenue", + "country": "France", + "funding_info": { + "annual_giving": "€500,000 (2024)", + "average_grant": "€10,000", + "grant_range": "€5,000 - €20,000", + "funding_model": "Open applications", + "application_details": "Apply online", + "sources": ["https://funderb.org/grants"] + } + } + ] + + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_success(self, mock_client_class): + # Set up mock client and responses + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + mock_research_response = MagicMock() + mock_research_response.text = "Some research text about Funder A" + + mock_parse_response = MagicMock() + mock_parse_response.text = json.dumps({ + "annual_giving": "€1,000,000 (2025)", + "average_grant": "€20,000", + "grant_range": "€10,000 - €50,000", + "funding_model": "Invitation only", + "application_details": "No open calls", + "sources": ["https://fundera.org/about"] + }) + mock_client.models.generate_content.side_effect = [mock_research_response, mock_parse_response] + + # We pass api_key explicitly so it doesn't fail on environment check + res = enrich_organizations(self.members, api_key="dummy_key", sleep_time=0.0) + + # Verify first was enriched + self.assertEqual(res[0]["funding_info"]["annual_giving"], "€1,000,000 (2025)") + self.assertEqual(res[0]["funding_info"]["funding_model"], "Invitation only") + self.assertEqual(res[0]["funding_info"]["sources"], ["https://fundera.org/about"]) + + # Verify second was skipped (resume mode) + self.assertEqual(res[1]["funding_info"]["annual_giving"], "€500,000 (2024)") + self.assertEqual(mock_client.models.generate_content.call_count, 2) + + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_api_error(self, mock_client_class): + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + mock_client.models.generate_content.side_effect = Exception("API Quota Exceeded") + + res = enrich_organizations(self.members, api_key="dummy_key", sleep_time=0.0) + + # Verify empty/fallback fields populated on error + self.assertEqual(res[0]["funding_info"]["annual_giving"], "") + self.assertEqual(res[0]["funding_info"]["average_grant"], "") + self.assertEqual(res[0]["funding_info"]["sources"], []) + + def test_enrich_organizations_missing_key(self): + # Temporarily clear env var + with patch.dict(os.environ, {}, clear=True): + with self.assertRaises(ValueError): + enrich_organizations(self.members, api_key=None) + + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_incremental_save(self, mock_client_class): + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + mock_research_response = MagicMock() + mock_research_response.text = "Some research text" + + mock_parse_response = MagicMock() + mock_parse_response.text = json.dumps({ + "annual_giving": "€1,000,000", + "average_grant": "€20,000", + "grant_range": "€10,000 - €50,000", + "funding_model": "Invitation only", + "application_details": "No open calls", + "sources": [] + }) + mock_client.models.generate_content.side_effect = [mock_research_response, mock_parse_response] + + mock_save_fn = MagicMock() + + enrich_organizations( + self.members, + api_key="dummy_key", + sleep_time=0.0, + save_path="dummy_path.json", + save_fn=mock_save_fn + ) + + # Verify save_fn was called with updated list + mock_save_fn.assert_called_once_with(self.members, "dummy_path.json") + + def test_extract_number(self): + from preprocessing.enrich_gemini import _extract_number + self.assertEqual(_extract_number("EUR 6,550,184 (2024)"), 6550184.0) + self.assertEqual(_extract_number("EUR 11,696.76 (2024)"), 11696.76) + self.assertEqual(_extract_number("626,000 CHF (2022)"), 626000.0) + self.assertEqual(_extract_number("€10.000"), 10000.0) + self.assertEqual(_extract_number("€12,50"), 12.5) + self.assertEqual(_extract_number("£4.24 million"), 4240000.0) + self.assertEqual(_extract_number("€10m"), 10000000.0) + self.assertEqual(_extract_number("1.5 billion"), 1500000000.0) + self.assertEqual(_extract_number("50k"), 50000.0) + self.assertIsNone(_extract_number("Not publicly available")) + + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_plausibility_check_failed(self, mock_client_class): + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + mock_research_response = MagicMock() + mock_research_response.text = "Some research text" + + # Mock responses where average_grant is greater than annual_giving + mock_parse_response = MagicMock() + mock_parse_response.text = json.dumps({ + "annual_giving": "€50,000", + "average_grant": "€100,000", # Fails plausibility check (avg > annual) + "grant_range": "€10,000 - €100,000", + "funding_model": "Open applications", + "application_details": "No open calls", + "sources": [] + }) + mock_client.models.generate_content.side_effect = [mock_research_response, mock_parse_response] + + res = enrich_organizations(self.members, api_key="dummy_key", sleep_time=0.0) + + # Verify first was enriched and average_grant was reset to fallback + self.assertEqual(res[0]["funding_info"]["annual_giving"], "€50,000") + self.assertEqual(res[0]["funding_info"]["average_grant"], "Not publicly available") + + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_empty_research_response(self, mock_client_class): + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + # Stage 1 returns empty content + mock_research_response = MagicMock() + mock_research_response.text = "" + mock_client.models.generate_content.return_value = mock_research_response + + res = enrich_organizations(self.members, api_key="dummy_key", sleep_time=0.0) + + # Verify first was handled and populated with fallback + self.assertEqual(res[0]["funding_info"]["annual_giving"], "") + # Verify generate_content was only called ONCE (for research), NOT twice + self.assertEqual(mock_client.models.generate_content.call_count, 1) + + @patch("preprocessing.enrich_gemini.time.sleep") + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_retry_logic(self, mock_client_class, mock_sleep): + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + mock_research_response = MagicMock() + mock_research_response.text = "Some research text" + + mock_parse_response = MagicMock() + mock_parse_response.text = json.dumps({ + "annual_giving": "€50,000", + "average_grant": "€5,000", + "grant_range": "€1,000 - €10,000", + "funding_model": "Open applications", + "application_details": "No open calls", + "sources": [] + }) + + # Raise an exception on first call, succeed on subsequent calls + mock_client.models.generate_content.side_effect = [ + Exception("Quota limit hit"), + mock_research_response, + mock_parse_response + ] + + res = enrich_organizations(self.members, api_key="dummy_key", sleep_time=0.0) + + # Verify first was successfully enriched despite first attempt failing + self.assertEqual(res[0]["funding_info"]["annual_giving"], "€50,000") + self.assertEqual(mock_sleep.call_count, 1) # Retried once + + def test_ensure_eur_helpers(self): + from preprocessing.enrich_gemini import _ensure_eur, _ensure_eur_range + + # USD conversion + self.assertEqual(_ensure_eur("$10,000"), "€9,200 (converted from USD)") + self.assertEqual(_ensure_eur("$10,000 (2024)"), "€9,200 (2024) (converted from USD)") + + # GBP conversion + self.assertEqual(_ensure_eur("£10,000"), "€12,000 (converted from GBP)") + self.assertEqual(_ensure_eur("1,000 GBP"), "€1,200 (converted from GBP)") + + # CHF conversion + self.assertEqual(_ensure_eur("1,000 CHF"), "€1,050 (converted from CHF)") + + # Normal inputs preserved + self.assertEqual(_ensure_eur("€50,000"), "€50,000") + self.assertEqual(_ensure_eur("Not publicly available"), "Not publicly available") + + # Range inputs + self.assertEqual(_ensure_eur_range("£5,000 - £10,000"), "€6,000 - €12,000 (converted from GBP)") + self.assertEqual(_ensure_eur_range("$5,000 to $10,000"), "€4,600 - €9,200 (converted from USD)") + self.assertEqual(_ensure_eur_range("€5,000 - €10,000"), "€5,000 - €10,000") + + @patch("preprocessing.enrich_gemini.genai.Client") + def test_enrich_organizations_advanced_plausibility_checks(self, mock_client_class): + mock_client = MagicMock() + mock_client_class.return_value = mock_client + + mock_research_response = MagicMock() + mock_research_response.text = "Some research text" + + # Case 1: Out of order range (re-ordered), average outside range (reset average) + mock_parse_response_1 = MagicMock() + mock_parse_response_1.text = json.dumps({ + "annual_giving": "€50,000", + "average_grant": "€25,000", # Outside re-ordered range [1,000, 10,000] + "grant_range": "€10,000 - €1,000", # Out of order + "funding_model": "Open applications", + "application_details": "No open calls", + "sources": [] + }) + + mock_client.models.generate_content.side_effect = [mock_research_response, mock_parse_response_1] + res = enrich_organizations(self.members[:1], api_key="dummy_key", sleep_time=0.0) + self.assertEqual(res[0]["funding_info"]["grant_range"], "€1,000 - €10,000") + self.assertEqual(res[0]["funding_info"]["average_grant"], "Not publicly available") + + # Reset mock + self.members[0]["funding_info"] = {} + + # Case 2: Max grant exceeds annual giving + mock_parse_response_2 = MagicMock() + mock_parse_response_2.text = json.dumps({ + "annual_giving": "€50,000", + "average_grant": "€5,000", + "grant_range": "€1,000 - €100,000", # Max grant (100k) > annual giving (50k) + "funding_model": "Open applications", + "application_details": "No open calls", + "sources": [] + }) + + mock_client.models.generate_content.side_effect = [mock_research_response, mock_parse_response_2] + res = enrich_organizations(self.members[:1], api_key="dummy_key", sleep_time=0.0) + self.assertEqual(res[0]["funding_info"]["grant_range"], "Not publicly available") + +if __name__ == "__main__": + unittest.main() + diff --git a/src/tests/test_hinchilla.py b/src/tests/test_hinchilla.py new file mode 100644 index 0000000..ea6a11d --- /dev/null +++ b/src/tests/test_hinchilla.py @@ -0,0 +1,163 @@ +import unittest +from unittest.mock import patch, MagicMock +import os +import sys + +# Add project root to sys.path so we can import scraper and preprocessing +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) + +from scrapers.hinchilla import ( + parse_rsc_payload, + resolve_rsc_references, + parse_quick_stats, + scrape, + find_sections_container +) + +class TestHinchillaScraper(unittest.TestCase): + + def test_parse_rsc_payload_basic(self): + # A simple text segment and a json segment + content = "a:T5,hello\n0:[1,2,3]\n" + blocks = parse_rsc_payload(content) + + self.assertEqual(len(blocks), 2) + self.assertEqual(blocks["a"]["type"], "text") + self.assertEqual(blocks["a"]["content"], "hello") + self.assertEqual(blocks["0"]["type"], "json_or_other") + self.assertEqual(blocks["0"]["content"], "[1,2,3]") + + def test_parse_rsc_payload_newline_in_text(self): + # A text segment containing newlines, followed immediately by another segment + content = "d:Tb,line1\nline2e:T4,test" + blocks = parse_rsc_payload(content) + + self.assertEqual(len(blocks), 2) + self.assertEqual(blocks["d"]["type"], "text") + self.assertEqual(blocks["d"]["content"], "line1\nline2") + self.assertEqual(blocks["e"]["type"], "text") + self.assertEqual(blocks["e"]["content"], "test") + + def test_parse_rsc_payload_uses_byte_lengths_for_text(self): + # RSC T lengths are byte lengths. Non-ASCII text must not move the parser + # into the middle of a text segment and create fake blocks like "period:". + text = "Grant range: £250 - £1,000\nCooling off period: 3 months" + content = f"d:T{len(text.encode('utf-8')):x},{text}e:T4,test" + blocks = parse_rsc_payload(content) + + self.assertEqual(len(blocks), 2) + self.assertEqual(blocks["d"]["type"], "text") + self.assertEqual(blocks["d"]["content"], text) + self.assertEqual(blocks["e"]["type"], "text") + self.assertEqual(blocks["e"]["content"], "test") + self.assertNotIn("period", blocks) + + def test_resolve_rsc_references(self): + blocks = { + "d": {"type": "text", "content": "Funding Details Text"}, + "e": {"type": "text", "content": "Trustees List"}, + "json_ref": {"type": "json_or_other", "content": '{"nested": "value"}'} + } + + # Test basic list containing references + entry_json = '[["$", "$Lc", null, {"sections": [{"title": "Funding", "content": "$d"}, {"title": "Gov", "content": "$e"}, {"title": "Extra", "content": "$json_ref"}]}]]' + resolved = resolve_rsc_references(blocks, entry_json) + + self.assertIsNotNone(resolved) + sections = resolved[0][3]["sections"] + self.assertEqual(sections[0]["content"], "Funding Details Text") + self.assertEqual(sections[1]["content"], "Trustees List") + self.assertEqual(sections[2]["content"], {"nested": "value"}) + + def test_find_sections_container(self): + resolved_data = [ + ["$", "script", None, {}], + ["$", "$Lc", None, { + "data": {"name": "Three Peas", "areaOfOperation": "Greece"}, + "sections": [{"title": "Overview", "content": "About us"}] + }] + ] + + container = find_sections_container(resolved_data) + self.assertIsNotNone(container) + self.assertEqual(container["data"]["name"], "Three Peas") + self.assertEqual(container["sections"][0]["content"], "About us") + + def test_parse_quick_stats(self): + stats_text = """ +- **Annual Giving**: £90,636 (year ending Sept 2024) +- **Success Rate**: Not applicable - no public application process +- **Decision Time**: Not applicable - relationship-based funding +- **Grant Range**: Variable - based on project needs +- **Funding Model**: Partnership-based, no open applications +""" + stats = parse_quick_stats(stats_text) + self.assertEqual(stats.get("Annual Giving"), "£90,636 (year ending Sept 2024)") + self.assertEqual(stats.get("Success Rate"), "Not applicable - no public application process") + self.assertEqual(stats.get("Decision Time"), "Not applicable - relationship-based funding") + self.assertEqual(stats.get("Grant Range"), "Variable - based on project needs") + self.assertEqual(stats.get("Funding Model"), "Partnership-based, no open applications") + + def test_parse_quick_stats_table(self): + stats_text = """ +| Metric | Value | +|--------|-------| +| Annual Giving | £83,629 (2023-24) | +| Grant Range | £4,000 - £10,000 | +| Average Grant | £6,000 | +| Application Method | No Public Process | +| Geographic Focus | Dorset, Purbeck, Swanage | +""" + stats = parse_quick_stats(stats_text) + self.assertEqual(stats.get("Annual Giving"), "£83,629 (2023-24)") + self.assertEqual(stats.get("Grant Range"), "£4,000 - £10,000") + self.assertEqual(stats.get("Average Grant"), "£6,000") + self.assertEqual(stats.get("Application Method"), "No Public Process") + self.assertEqual(stats.get("Geographic Focus"), "Dorset, Purbeck, Swanage") + + @patch("scrapers.hinchilla.make_request") + def test_scrape_limited(self, mock_make_request): + # Mock responses + # 1. Main Directory HTML response + mock_dir_resp = MagicMock() + mock_dir_resp.status_code = 200 + mock_dir_resp.content = b""" + +
+ Three Peas + Choose Love + + + """ + + # 2. Detail Page RSC response (as text) + mock_detail_resp = MagicMock() + mock_detail_resp.status_code = 200 + mock_detail_resp.text = """ + d:T17,Funding Priorities Text + 9:[["$", "$Lc", null, {"data": {"name": "Three Peas", "areaOfOperation": "Greece, Czechia", "expenditure": "90000", "website": "https://threepeas.org"}, "sections": [{"title": "Overview", "content": "About Three Peas"}, {"title": "Funding Priorities", "content": "$d"}, {"title": "Quick Stats", "content": "- **Annual Grant Distribution**: £3 million+\\n- **Annual Income**: £4.66 million\\n- **Annual Expenditure**: £1.2 million\\n- **Application Process**: No public application process\\n- **Number of Grants**: 68 grants awarded\\n- **Average Grant**: £6,000"}]}]] + """ + + mock_make_request.side_effect = [mock_dir_resp, mock_detail_resp, mock_detail_resp] + + members = scrape(limit=1, sleep_time=0) + self.assertEqual(len(members), 1) + self.assertEqual(members[0]["name"], "Three Peas") + self.assertEqual(members[0]["link"], "https://www.hinchilla.com/funder-directory/three-peas") + + philea_info = members[0]["philea_info"] + self.assertEqual(philea_info["About"], "About Three Peas") + self.assertEqual(philea_info["Programme Areas"], "Funding Priorities Text") + self.assertIn("Greece, Czechia", philea_info["Geographic Focus"]) + self.assertEqual(philea_info["website"], "https://threepeas.org") + self.assertEqual(philea_info["annual_giving"], "£3 million+") + self.assertEqual(philea_info["annual_income"], "£4.66 million") + self.assertEqual(philea_info["annual_expenditure"], "£1.2 million") + self.assertEqual(philea_info["grant_range"], "£6,000") + self.assertEqual(philea_info["average_grant"], "£6,000") + self.assertEqual(philea_info["funding_model"], "No public application process") + self.assertEqual(philea_info["number_of_grants"], "68 grants awarded") + self.assertEqual(philea_info["quick_stats"]["Application Process"], "No public application process") + +if __name__ == "__main__": + unittest.main() diff --git a/src/tests/test_impressum.py b/src/tests/test_impressum.py new file mode 100644 index 0000000..4674621 --- /dev/null +++ b/src/tests/test_impressum.py @@ -0,0 +1,150 @@ +import unittest +from unittest.mock import patch, MagicMock +import os +import sys + +# Ensure src directory is in sys.path +TESTS_DIR = os.path.dirname(os.path.abspath(__file__)) +SRC_DIR = os.path.dirname(TESTS_DIR) +if SRC_DIR not in sys.path: + sys.path.insert(0, SRC_DIR) + +from preprocessing.extract_impressum import ( + get_base_domain, + is_internal_link, + extract_links, + extract_generic_emails, + extract_physical_address, + crawl_impressum +) + +class TestImpressumExtractor(unittest.TestCase): + + def test_get_base_domain(self): + self.assertEqual(get_base_domain("https://example-foundation.org/about"), "example-foundation.org") + self.assertEqual(get_base_domain("http://www.sub.example.com"), "sub.example.com") + self.assertEqual(get_base_domain("invalid-url"), "") + + def test_is_internal_link(self): + base = "https://example-foundation.org" + self.assertTrue(is_internal_link(base, "https://example-foundation.org/impressum")) + self.assertTrue(is_internal_link(base, "/contact")) + self.assertFalse(is_internal_link(base, "https://google.com")) + self.assertFalse(is_internal_link(base, "https://other-foundation.org/about")) + + def test_extract_links_prioritization(self): + base_url = "https://example.org" + html = """ + + Legal Notice + About Us + Contact + Project Page + External Link + + """ + links = extract_links(base_url, html) + + # Verify that external link is ignored and internal links are prioritized + urls = [item["url"] for item in links] + self.assertIn("https://example.org/impressum", urls) + self.assertIn("https://example.org/about-us", urls) + self.assertIn("https://example.org/kontakt", urls) + self.assertNotIn("https://external.com", urls) + + # Priority check: legal (impressum) = 1, contact = 2, about = 3, other = 4 + self.assertEqual(links[0]["priority"], 1) # impressum + self.assertEqual(links[1]["priority"], 2) # kontakt + self.assertEqual(links[2]["priority"], 3) # about-us + self.assertEqual(links[3]["priority"], 4) # some-project + + def test_extract_generic_emails(self): + text = """ + Reach out to us: + info@example-foundation.org (should be whitelisted) + kontakt@example-foundation.org (should be whitelisted) + john.doe@example-foundation.org (should be ignored due to dot in name) + m.mueller@example-foundation.org (should be ignored due to dot) + president@example-foundation.org (should be ignored as not whitelisted) + office@example-foundation.org (should be whitelisted) + """ + emails = extract_generic_emails(text) + self.assertIn("info@example-foundation.org", emails) + self.assertIn("kontakt@example-foundation.org", emails) + self.assertIn("office@example-foundation.org", emails) + + self.assertNotIn("john.doe@example-foundation.org", emails) + self.assertNotIn("m.mueller@example-foundation.org", emails) + self.assertNotIn("president@example-foundation.org", emails) + + def test_extract_physical_address(self): + # Case 1: Multi-line address with country + text_multiline = """ + Foundations details: + Toni Piëch Foundation + Musterstraße 42 + 80333 München + Germany + Tel: +49 89 123456 + Fax: +49 89 654321 + """ + address1 = extract_physical_address(text_multiline) + self.assertEqual(address1, "Toni Piëch Foundation, Musterstraße 42, 80333 München, Germany") + + # Case 2: Single line address + text_singleline = """ + Our headquarters are at Musterstraße 42, 80333 München, Germany. + """ + address2 = extract_physical_address(text_singleline) + self.assertEqual(address2, "Musterstraße 42, 80333 München, Germany") + + # Case 3: Phone number scrubbing + text_with_phone = """ + Contact address: + Musterstraße 42 + 80333 München + Tel: +49 89 123456 + """ + address3 = extract_physical_address(text_with_phone) + self.assertEqual(address3, "Musterstraße 42, 80333 München") + self.assertNotIn("Tel", address3) + self.assertNotIn("+49", address3) + + @patch("preprocessing.extract_impressum.requests.get") + def test_crawl_impressum_flow(self, mock_get): + base_url = "https://example.org" + + # Mock Landing Page: contains only a link to impressum + mock_landing = MagicMock() + mock_landing.status_code = 200 + mock_landing.text = """ + +Example Foundation e.V.
+Musterstraße 42
+80333 München
+Email: info@example.org
+ + """ + + # Set side effect: first call gets landing page, second gets impressum + mock_get.side_effect = [mock_landing, mock_impressum] + + result = crawl_impressum(base_url) + + self.assertEqual(result["organization_url"], base_url) + self.assertEqual(result["source_page_used"], "https://example.org/impressum") + self.assertEqual(result["generic_email"], "info@example.org") + self.assertEqual(result["address"], "Example Foundation e.V., Musterstraße 42, 80333 München") + +if __name__ == "__main__": + unittest.main() diff --git a/src/tests/test_pipeline.py b/src/tests/test_pipeline.py index 8b3906d..c5049c7 100644 --- a/src/tests/test_pipeline.py +++ b/src/tests/test_pipeline.py @@ -7,12 +7,15 @@ # Add project root to sys.path so we can import scraper and preprocessing sys.path.append(os.path.join(os.path.dirname(__file__), "..")) -from scraper.philea import make_request, scrape +from scrapers.philea import make_request, scrape +from scrapers.hinchilla import extract_email_from_text, infer_application_portal +from preprocessing.consolidate import normalize_to_clean_schema from preprocessing.extract_geo_topic import extract_tags, extract_geo +from preprocessing.quality import has_technical_value, is_informative_value, is_placeholder_value class TestPhileaScraper(unittest.TestCase): - @patch("scraper.philea.requests.request") + @patch("scrapers.philea.requests.request") def test_make_request_success(self, mock_request): # Setup mock response mock_resp = MagicMock() @@ -23,8 +26,8 @@ def test_make_request_success(self, mock_request): self.assertEqual(resp.status_code, 200) mock_request.assert_called_once_with("GET", "https://example.com", timeout=10) - @patch("scraper.philea.requests.request") - @patch("scraper.philea.time.sleep") # Mock sleep to speed up test run + @patch("scrapers.philea.requests.request") + @patch("scrapers.philea.time.sleep") # Mock sleep to speed up test run def test_make_request_retry_on_transient_error(self, mock_sleep, mock_request): # Setup mock responses: first two attempts return 500, third returns 200 mock_resp_fail = MagicMock() @@ -40,8 +43,8 @@ def test_make_request_retry_on_transient_error(self, mock_sleep, mock_request): self.assertEqual(mock_request.call_count, 3) self.assertEqual(mock_sleep.call_count, 2) - @patch("scraper.philea.requests.request") - @patch("scraper.philea.time.sleep") + @patch("scrapers.philea.requests.request") + @patch("scrapers.philea.time.sleep") def test_make_request_persistent_failure(self, mock_sleep, mock_request): # All requests fail with ConnectionError mock_request.side_effect = requests.exceptions.ConnectionError("Connection failed") @@ -50,8 +53,8 @@ def test_make_request_persistent_failure(self, mock_sleep, mock_request): make_request("GET", "https://example.com", max_retries=3, backoff_factor=0.1) self.assertEqual(mock_request.call_count, 3) - @patch("scraper.philea.make_request") - @patch("scraper.philea.BeautifulSoup") + @patch("scrapers.philea.make_request") + @patch("scrapers.philea.BeautifulSoup") def test_scrape_limit(self, mock_bs, mock_make_request): # Mock members list call mock_list_resp = MagicMock() @@ -125,6 +128,31 @@ def test_extract_tags_special_boundary(self): extract_tags(members) self.assertEqual(members[0]["tags_focus"], ["Human/Civil Rights"]) + def test_extract_tags_tech_enablement(self): + # 1. Robust path: from official tags + members_robust = [ + { + "name": "Org Tech Robust", + "philea_info": { + "Programme Areas": "Digital Transformation\nEducation" + } + } + ] + extract_tags(members_robust) + self.assertEqual(sorted(members_robust[0]["tags_focus"]), ["Education", "tech-enablement"]) + + # 2. Fallback path: from free text keywords + members_fallback = [ + { + "name": "Org Tech Fallback", + "philea_info": { + "About": "Supporting the development of custom software and ai-driven solutions." + } + } + ] + extract_tags(members_fallback) + self.assertEqual(members_fallback[0]["tags_focus"], ["tech-enablement"]) + def test_extract_geo_taxonomy_matching(self): members = [ { @@ -157,6 +185,62 @@ def test_extract_geo_abbreviation_and_alternation(self): self.assertIn("Europe (Western / General)", members[0]["geo_locations"]) self.assertIn("United Kingdom", members[0]["geo_locations"]["Europe (Western / General)"]) + def test_extract_geo_uk_local_counties(self): + members = [ + { + "name": "3R Foundation", + "philea_info": { + "Geographic Focus": "Local community funding.", + "areaOfOperation": "Cumbria, Lancashire" + } + } + ] + extract_geo(members) + self.assertIn("Europe (Western / General)", members[0]["geo_locations"]) + self.assertIn("United Kingdom", members[0]["geo_locations"]["Europe (Western / General)"]) + + def test_extract_geo_fallback_leaves_ambiguous_places_without_context_unresolved(self): + members = [ + { + "name": "Lancaster Fund", + "philea_info": { + "Geographic Focus": "Local community funding.", + "areaOfOperation": "Lancaster" + } + }, + { + "name": "Reading Fund", + "philea_info": { + "Geographic Focus": "Local community funding.", + "areaOfOperation": "Reading" + } + }, + { + "name": "Georgia Fund", + "philea_info": { + "Geographic Focus": "Local community funding.", + "areaOfOperation": "Georgia" + } + }, + { + "name": "Jordan Fund", + "philea_info": { + "Geographic Focus": "Local community funding.", + "areaOfOperation": "Jordan" + } + }, + { + "name": "Victoria Fund", + "philea_info": { + "Geographic Focus": "Local community funding.", + "areaOfOperation": "Victoria" + } + } + ] + extract_geo(members) + for member in members: + self.assertEqual(member["geo_locations"], {}) + def test_extract_geo_substring_safety(self): members = [ { @@ -177,5 +261,76 @@ def test_extract_geo_substring_safety(self): west_europe = members[0]["geo_locations"].get("Europe (Western / General)", []) self.assertNotIn("United Kingdom", west_europe) + def test_extract_geo_fallback(self): + members = [ + { + "name": "The Social Change Nest", + "address": "Albert House, 256-260 Old St, London EC1V 9DD, UK", + "philea_info": { + # Geographic Focus doesn't mention any locations, but About and address do. + "Geographic Focus": "We tear down the barriers that prevent communities from creating change.", + "About": "Helping groups in the UK.", + } + } + ] + extract_geo(members) + self.assertIn("Europe (Western / General)", members[0]["geo_locations"]) + self.assertIn("United Kingdom", members[0]["geo_locations"]["Europe (Western / General)"]) + +class TestHinchillaQualityPreprocessing(unittest.TestCase): + + def test_placeholder_values_are_not_informative(self): + placeholders = [ + "Not available", + "Not publicly available", + "Not published", + "Not specified", + "Not disclosed", + "Not publicly disclosed", + "Data not available", + "Data not publicly available", + "N/A", + "Unknown", + "Not publicly disclosed (operates through partnerships)", + ] + + for value in placeholders: + self.assertTrue(has_technical_value(value)) + self.assertTrue(is_placeholder_value(value)) + self.assertFalse(is_informative_value(value)) + + self.assertTrue(is_informative_value("£250 - £1,000")) + self.assertFalse(is_placeholder_value("No public application process")) + + def test_infer_application_portal_from_existing_url(self): + url = "https://www.3rc.org.uk/grant-application" + + self.assertEqual(infer_application_portal([url]), url) + self.assertEqual(infer_application_portal(["Invitation only", "Rolling basis via online portal"]), "") + + def test_extract_email_from_existing_hinchilla_text(self): + text = "Online application form submission via email to grants@rgs.org." + + self.assertEqual(extract_email_from_text(text), "grants@rgs.org") + + def test_annual_income_is_preserved_but_not_used_as_annual_giving(self): + raw_hinchilla = { + "name": "Income Only Trust", + "philea_info": { + "annual_income": "£100", + "number_of_grants": "68 grants awarded", + "quick_stats": { + "Annual Income": "£100", + "Number of Grants": "68 grants awarded", + }, + }, + } + + clean = normalize_to_clean_schema(raw_hinchilla, "Hinchilla") + + self.assertEqual(clean["funding_info"]["annual_giving"], "") + self.assertEqual(clean["funding_info"]["annual_income"], "€120 (converted from GBP)") + self.assertEqual(clean["funding_info"]["number_of_grants"], "68 grants awarded") + if __name__ == "__main__": unittest.main() diff --git a/src/tests/test_register_of_charities.py b/src/tests/test_register_of_charities.py new file mode 100644 index 0000000..98e5130 --- /dev/null +++ b/src/tests/test_register_of_charities.py @@ -0,0 +1,153 @@ +import unittest +from unittest.mock import patch, MagicMock +import os +import sys + + +# Add project root to sys.path so we can import scrapers +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) + +from scrapers.register_of_charities import ( + CharityCommissionAPI, + get_all_charity_details, + get_charity_assets_liabilities, + get_check_primary_grants, + get_charity_who_what_how, + get_charity_financial_history, + search_charity_name, + scrape +) + +class TestCharityCommissionAPI(unittest.TestCase): + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_api_key_header(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_request.return_value = mock_resp + + # Instantiate with api_key + api = CharityCommissionAPI(api_key="test-secret-key") + api.all_charity_details(12345, 0) + + # Check that request was called with key in session headers + self.assertEqual(api.session.headers.get("Ocp-Apim-Subscription-Key"), "test-secret-key") + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_all_charity_details_success(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.return_value = {"charity_name": "Test Charity"} + mock_request.return_value = mock_resp + + details = get_all_charity_details(12345, 0, api_key="dummy") + self.assertEqual(details, {"charity_name": "Test Charity"}) + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_charity_assets_liabilities_success(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.return_value = {"assets": 1000} + mock_request.return_value = mock_resp + + res = get_charity_assets_liabilities(12345, 0, api_key="dummy") + self.assertEqual(res, {"assets": 1000}) + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_check_primary_grants_success(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.return_value = {"grants": []} + mock_request.return_value = mock_resp + + res = get_check_primary_grants(12345, 0, api_key="dummy") + self.assertEqual(res, {"grants": []}) + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_charity_who_what_how_success(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.return_value = {"activities": "helping people"} + mock_request.return_value = mock_resp + + res = get_charity_who_what_how(12345, 0, api_key="dummy") + self.assertEqual(res, {"activities": "helping people"}) + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_charity_financial_history_success(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.return_value = [{"year": 2023}] + mock_request.return_value = mock_resp + + res = get_charity_financial_history(12345, 0, api_key="dummy") + self.assertEqual(res, [{"year": 2023}]) + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_search_charity_name_success(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.return_value = [{"reg_charity_number": 12345, "group_subsid_suffix": 0}] + mock_request.return_value = mock_resp + + res = search_charity_name("Test", api_key="dummy") + self.assertEqual(res, [{"reg_charity_number": 12345, "group_subsid_suffix": 0}]) + + @patch("scrapers.register_of_charities.requests.Session.request") + def test_all_charity_details_not_found(self, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 404 + mock_request.return_value = mock_resp + + details = get_all_charity_details(12345, 0, api_key="dummy") + self.assertIsNone(details) + + @patch("scrapers.register_of_charities.requests.Session.request") + @patch("scrapers.register_of_charities.time.sleep") + def test_scrape_by_registered_numbers(self, mock_sleep, mock_request): + mock_resp = MagicMock() + mock_resp.status_code = 200 + mock_resp.json.side_effect = [ + {"name": "Details"}, # all_charity_details + {"assets": 100}, # assets_liabilities + {"grants": ["A"]}, # check_primary_grants + {"who": "what"}, # charity_who_what_how + {"history": []} # charity_financial_history + ] + mock_request.return_value = mock_resp + + results = scrape(registered_numbers=[12345], sleep_time=0.01, api_key="dummy") + self.assertEqual(len(results), 1) + self.assertEqual(results[0]["registered_charity_number"], 12345) + self.assertEqual(results[0]["all_details"], {"name": "Details"}) + self.assertEqual(results[0]["assets_liabilities"], {"assets": 100}) + self.assertEqual(results[0]["primary_grants"], {"grants": ["A"]}) + self.assertEqual(results[0]["who_what_how"], {"who": "what"}) + self.assertEqual(results[0]["financial_history"], {"history": []}) + + @patch("scrapers.register_of_charities.requests.Session.request") + @patch("scrapers.register_of_charities.time.sleep") + def test_scrape_by_search_name(self, mock_sleep, mock_request): + mock_resp_search = MagicMock() + mock_resp_search.status_code = 200 + mock_resp_search.json.return_value = [{"reg_charity_number": 12345, "group_subsid_suffix": 0}] + + mock_resp_details = MagicMock() + mock_resp_details.status_code = 200 + mock_resp_details.json.side_effect = [ + {"name": "Details"}, # all_charity_details + {"assets": 100}, # assets_liabilities + {"grants": []}, # check_primary_grants + {"who": "what"}, # charity_who_what_how + {"history": []} # charity_financial_history + ] + + mock_request.side_effect = [mock_resp_search, mock_resp_details, mock_resp_details, mock_resp_details, mock_resp_details, mock_resp_details] + + results = scrape(search_name="Test", sleep_time=0.01, api_key="dummy") + self.assertEqual(len(results), 1) + self.assertEqual(results[0]["registered_charity_number"], 12345) + self.assertEqual(results[0]["all_details"], {"name": "Details"}) + +if __name__ == "__main__": + unittest.main()