Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&page=1170&registration__remaining_waiting_list_capacity__isnull=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27030,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1171&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1169&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:60898",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4224,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:58.436483Z",
                    "last_modified_time": "2023-09-07T14:21:58.436517Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737005.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4224/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:58.288380Z",
            "last_modified_time": "2023-11-14T06:13:06.465025Z",
            "date_published": null,
            "start_time": "2023-09-16T17:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EC6FB239469A43AA4A4F3617F5AE3445/You_hurt_my_feelings_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/EC6FB239469A43AA4A4F3617F5AE3445/You_hurt_my_feelings_2023_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Yhdysvaltalainen ohjaaja-käsikirjoittaja Nicole Holofcener aloitti uransa 1980-luvulla assistenttina Woody Allenin elokuvissa. Hänelle Oscar-ehdokkuuden käsikirjoituksesta tuonut Can You Ever Forgive Me -elokuva nähtiin vuonna 2019 myös Season Film Festivalilla.</p><p>Holofcenerin elokuvat pyörivät New Yorkissa elävän luovan alan, erityisesti kirjoittavien ihmisten arjen ja perhesuhteiden ympärillä. You Hurt My Feelings ei ole poikkeus. Beth (Julia Louis-Dreyfus) kirjoittaa ja opettaa sitä työkseen. Hänen puolisonsa Don (Tobias Menzies) on psykiatri, ja heidän poikansa Elliot (Owen Teague), aloitteleva näytelmäkirjailija, on töissä marihuanaliikkeessä.</p><p>Omaelämäkertansa suhteellisella menestyksellä julkaissut Beth on kirjoittanut toisen teoksen. Palaute kustantajalta ei ole kaksista. Onneksi sentään puoliso Don ylistää sitä. Iltapäiväkävelyllä Beth kuitenkin kuulee, kuinka Don kertoo langolleen, ettei voi sietää vaimonsa uutta kirjaa. Tästä muotoutuu kehys, jonka läpi kaikki elokuvassa kerrotut “totuudet” pistävät miettimään, kuinka paljon valehtelemme toisia suojellaksemme. You Hurt My Feelings on herkkua New Yorkin puisto- ja diner-kuvastoa haikaileville sekä myötävärähtelyä työkseen kirjoittaville.</p><p>Arda Yildirim</p><p>Teema: United States of Indie<br>Maa: Yhdysvallat<br>Ohjaus: Nicole Holofcener<br>Käsikirjoitus: Nicole Holofcener<br>Näyttelijät: Julia Louis-Dreyfus, Tobias Menzies, Michaela Watkins, Arian Moayed, Owen Teague<br>Tuotanto: Anthony Bregman, Stefanie Azpiazu, Nicole Holofcener, Julia Louis-Dreyfus / FilmNation Entertainment, Likely Story<br>Kesto: 93 min<br>Ikäraja: K16<br>Kieli: englanti<br>Levittäjä: Sony Pictures Releasing International<br>Esityskopio: Sony Pictures Releasing International<br>Kuvaus: Jeffrey Waldron<br>Leikkaus: Alisa Lepselter<br>Musiikki: Michael Andrews<br>Äänisuunnittelu: Lewis Goldstein<br>Lavastus: Sally Levi<br>Pukusuunnittelu: Chloe Karmin<br>Maskeeraus: Anouck Sullivan, Stella Sensel, Oriane De Neve</p>",
                "en": "<p>In Nicole Holofcener’s sharp comedy, fragile egos implode when faced with the uncomfortable truth. Julia Louis-Dreyfus (reuniting here with her Enough Said director) plays Beth, a writer in a rock-solid marriage with therapist Don (Tobias Menzies). (…) But on a trip to a sporting-goods shop with her sister, Beth hears her husband admit that, actually, he doesn’t think the book she’s currently writing is very good. And so her world shatters, destroying the bond of trust between them and igniting an existential crisis about her abilities as an author.</p><p>Holofcener has always excelled at drawing empathy from even the prickliest of characters (see: Can You Ever Forgive Me?, The Last Duel), and in You Hurt My Feelings, she does so by striking something universal. The truth really does hurt, but what makes the film so rich and alive is its examination of how people treat the wounds.</p><p>Iana Murray, Empire</p><p>What Holofcener has always done best is to make us laugh at these kinds of wince-inducing moments without sanding down the edges or selling her characters short. Along with her comedic partner in crime, the filmmaker is willing to bypass the niceties and dig into what’s real.</p><p>David Fear, Rolling Stone</p><p>Theme: United States of Indie<br>Country: United States<br>Director: Nicole Holofcener<br>Screenplay: Nicole Holofcener<br>Starring: Julia Louis-Dreyfus, Tobias Menzies, Michaela Watkins, Arian Moayed, Owen Teague<br>Production: Anthony Bregman, Stefanie Azpiazu, Nicole Holofcener, Julia Louis-Dreyfus / FilmNation Entertainment, Likely Story<br>Duration: 93 min<br>Age limit: K16<br>Language: English<br>Distribution: Sony Pictures Releasing International<br>Print source: Sony Pictures Releasing International<br>Cinematography: Jeffrey Waldron<br>Editing: Alisa Lepselter<br>Music: Michael Andrews<br>Sound: Lewis Goldstein<br>Production design: Sally Levi<br>Costume design: Chloe Karmin<br>Make-up: Anouck Sullivan, Stella Sensel, Oriane De Neve</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "You hurt my feelings (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "You hurt my feelings (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Yhdysvaltalainen ohjaaja-käsikirjoittaja Nicole Holofcener aloitti uransa 1980-luvulla assistenttina Woody Allenin elokuvissa. Hänelle Oscar-ehdokkuuden käsikirjoituksesta tuonut Can You Ever Forgive Me -elokuva nähtiin vuonna 2019 myös Season Film Festivalilla."
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60898/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60897",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4223,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:58.061906Z",
                    "last_modified_time": "2023-09-07T14:21:58.061937Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737004.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4223/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:57.898084Z",
            "last_modified_time": "2023-11-14T06:13:06.388251Z",
            "date_published": null,
            "start_time": "2023-09-16T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3D5B2889ECD4FA0DA14014DBD87FA7A8/Medusa_deluxe_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/3D5B2889ECD4FA0DA14014DBD87FA7A8/Medusa_deluxe_2022_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tällaista murhamysteeriä et ole ennen nähnyt. Hiusmuotoilukilpailu saa hälyttävän käänteen, kun yksi osanottajista löytyy skalpeerattuna. Murha ei kuitenkaan riitä pysäyttämään hulppeiden hiustyylien rakentamista. Voitonjanoiset kampaajat, mallit ja muut asianosaiset supattelevat tapahtumista, riitelevät ja epäilevät toisiaan. Paljastuu pikkuhiljaa, että kilpailun kulisseissa kaikilla on omat vihamiehensä ja liittolaisensa.</p><p>Yhteen rakennukseen sijoittuvassa Medusa Deluxessa murhamysteeri ja altmanilaisen hahmovetoinen ensembledraama tulevat yhteen värikkääksi paketiksi. Kokonaisuus on yhtä kimurantti kuin mallien päähän rakentuvat avantgarde-hiustyylit, todelliset taideteokset, joista vastaa hiusmuotoilija Eugene Souleiman. Whodunnit-genrestä poiketen syyllistä selvittämässä ei tällä kertaa nähdä poliisia, vaan mysteeri aukenee katsojalle ainoastaan kirjavan hahmokaartin käymien keskustelujen välityksellä. Jokainen on potentiaalinen syyllinen.</p><p>Muun muassa Andrea Arnoldin ja Yorgos Lanthimoksen elokuvia kuvannut virtuoosi Robbie Ryan luo elokuvaan vetävän yhden oton illuusion, joka imaisee katsojan tarinan sisään. Ryanin kamera kiemurtelee hahmojen perässä pukuhuoneissa, saleissa ja käytävillä. Synkkää huumoria, jännitystä ja yllätyksiä riittää loppuun asti.</p><p>Inari Ylinen</p><p>Teema: Lifestyle<br>Maa: Iso-Britannia<br>Ohjaus: Thomas Hardiman<br>Käsikirjoitus: Thomas Hardiman<br>Näyttelijät: Clare Perkins, Kayla Meikle<br>Tuotanto: Michael Elliott, Lee Groombridge, Louise Palmkvist Hansen / BBC Films, British Film Institute (BFI)<br>Kesto: 101 min<br>Ikäraja: K16<br>Kieli: englanti<br>Tekstitys: suomi<br>Levittäjä: NonStop Entertainment<br>Esityskopio: NonStop Entertainment<br>Kuvaus: Robbie Ryan<br>Leikkaus: Fouad Gaber<br>Musiikki: Toby Williams<br>Äänisuunnittelu: Anna Bertmark<br>Lavastus: Gary Williamson<br>Pukusuunnittelu: Andrea Fiquitiva<br>Maskeeraus: Chloe Dixon</p>",
                "en": "<p>Agatha Christie meets Pedro Almodóvar in this flamboyant British murder mystery set in the unglamorous world of regional hairdressing competitions. The victim is a hairdresser who’s been scalped backstage at an event seven hours into coiffing his piece de resistance. He’s found dead by the model returning from a fag break. “One minute he’s shaping my ’fro, the next he’s dead,” she marvels.</p><p>Medusa Deluxe is packed with funny, outrageous lines, and there are excellent performances especially from the female cast of hairdressers behaving badly.</p><p>Cath Clarke, The Guardian</p><p>That’s the setup for British writer-director Thomas Hardiman’s splashy, hooky debut feature Medusa Deluxe, an arch, gossip-fueled murder mystery that delights more in rounding up its many unusual suspects than in any kind of logical, procedural detective work: Whodunnit isn’t a pressing question in a film where everyone is 100% that bitch.</p><p>It sounds good on paper, and looks great on screen, thanks in no small part to genius DP Robbie Ryan — who, following vertiginous collaborations with the likes of Andrea Arnold and Yorgos Lanthimos, finally gets to add a one-take movie to his résumé.</p><p>Guy Lodge, Variety</p><p>Theme: Lifestyle<br>Country: United Kingdom<br>Director: Thomas Hardiman<br>Screenplay: Thomas Hardiman<br>Starring: Clare Perkins, Kayla Meikle<br>Production: Michael Elliott, Lee Groombridge, Louise Palmkvist Hansen / BBC Films, British Film Institute (BFI)<br>Duration: 101 min<br>Age limit: K16<br>Language: English<br>Subtitles: Finnish<br>Distribution: NonStop Entertainment<br>Print source: NonStop Entertainment<br>Cinematography: Robbie Ryan<br>Editing: Fouad Gaber<br>Music: Toby Williams<br>Sound: Anna Bertmark<br>Production design: Gary Williamson<br>Costume design: Andrea Fiquitiva<br>Make-up: Chloe Dixon</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Medusa deluxe (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Medusa deluxe (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Tällaista murhamysteeriä et ole ennen nähnyt. Hiusmuotoilukilpailu saa hälyttävän käänteen, kun yksi osanottajista löytyy skalpeerattuna. Murha ei kuitenkaan riitä pysäyttämään hulppeiden hiustyylien rakentamista. Voitonjanoiset kampaajat, mallit ja muut asianosaiset supattelevat tapahtumista, riitelevät ja epäilevät toisiaan. Paljastuu pikkuhiljaa, että kilpailun kulisseissa kaikilla on omat vihamiehensä ja liittolaisensa."
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60897/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60439",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/pientae-laittoa-malmitalo-17462311/",
                        "sv": "https://www.lippu.fi/event/pientae-laittoa-malmitalo-17462311/",
                        "en": "https://www.lippu.fi/event/pientae-laittoa-malmitalo-17462311/"
                    },
                    "price": {
                        "fi": "17,50 € / 31,50 €",
                        "sv": "17,50 € / 31,50 €",
                        "en": "17,50 € / 31,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4222,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:57.667946Z",
                    "last_modified_time": "2023-09-07T14:21:57.667967Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728851.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4222/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:57.495714Z",
            "last_modified_time": "2023-11-14T06:13:06.310486Z",
            "date_published": null,
            "start_time": "2023-09-16T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/724E37A3CB0BC4EF103947A443EFE543/Parisuhdekomedia_Pienta_laittoa_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/724E37A3CB0BC4EF103947A443EFE543/Pienta_laittoa_",
                "en": "http://www.malmitalo.fi/en/events/event/724E37A3CB0BC4EF103947A443EFE543/Pienta_laittoa_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Masa ja Lissu ovat olleet naimisissa 25 vuotta. Vieläkö on toivoa vai onko kaikki jo menetetty? Lissu päättää tarttua härkää, siis Masaa sarvesta... Siis sarvista.</p><p>Katsomossa tämän pitkän parisuhteen ongelmat ja niiden purkaminen naurattaa. Luultavasti ilmassa on myös pientä huokailua ja hikoilua varsinkin, jos kumppani sattuu istumaan vieressä. Tervetuloa rohkeasti testaamaan.</p><p>Keväällä elämä herää, vaan piristyykö suhde. Tarttisko tehdä jotain vai pysytäänkö näissä?<br> ”LISSU: Oot sä koskaan pettäny mua?<br> MASA: Mitä, mitä… En oo! Ja sun ois nyt paras lopettaa.<br> LISSU: Me ollaan oltu kakskyt viis vuotta kimpassa. Tilastojen mukaan sä oot pettäny mua.<br> MASA: Niiden samojen tilastojen mukaan sä oot pettäny mua!<br> LISSU: En tietenkään oo.<br> MASA: Miten sä voi olla niin varma, että mä oon?<br> LISSU: Sä oot mies…”</p><p>Rooleissa: Maarit Peltomaa ja Juha Veijonen<br>Käsikirjoitus ja ohjaus: Heikki Lund</p><p>Maarit Peltomaa ja Juha Veijonen eivät esittelyjä kaipaa. Heidät tunnetaan elokuva- ja TV- rooleistaan. Peltomaa ja Veijonen ovat kiertäneet parisuhdekomedialla \"Pientä laittoa\" jo vuodesta 2019. Vastaanotto kaikkialla Suomessa sekä Espanjassa on ollut huikea ja yleisöpalaute ihanaa. Komedia 25-vuotisesta avioliitosta on hämmästyttänyt monia pariskuntia ja sinkkuja todenmukaisuudellaan. Tarina on komedia tutusta aiheesta; parisuhteen haasteista.<br> <br>Tervetuloa 1,5 tunniksi nauttimaan, nauramaan ja jakamaan tuttuja tilanteita.</p><p>”Miten upeaa dialogia teidän välillä, huh huh. Aivan kuin olisitte olleet 25 vuotta yhdessä. Niin hauska ja koskettava tarina. Moni kommentoi katsomossa, että tämähän oli kuin meillä kotona. Ihana oli lähteä teatterilta hymy huulilla, esityksestä jäi niin hyvä mieli.”</p>",
                "sv": "<p>Masa och Lissu har varit gifta i 25 år. Finns det ännu hopp eller är allt redan förlorat? Lissu bestämmer sig för att ta tjuren vid hornen, det vill säga Masa... Alltså vid hornen.</p><p>Publiken roas av problemen i och bearbetandet av dem i denna långa parrelation. Troligen är luften fylld av suckar och lite oro, i synnerhet om ens partner råkar sitta bredvid. Välkommen att modigt pröva.</p><p>Språk: finska<br>Längd: 1 t. 30 min.</p>",
                "en": "<p>Masa and Lissu have been married for 25 years. Is there still hope or is it all lost? Lissu decides to take the bull, or rather Masa, by the horn... Erm, the horns.</p><p>The problems of this long relationship and how they are resolved will make the audience laugh. There will probably also be some sighing and sweating in the room, especially if your partner happens to be sitting next to you. So if you are brave enough, you are welcome to see the show.</p><p>Language: Finnish<br>Duration: 1 h 30 min</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Parisuhdekomedia Pientä laittoa",
                "sv": "Pientä laittoa",
                "en": "Pientä laittoa"
            },
            "short_description": {
                "fi": "Masa ja Lissu ovat olleet naimisissa 25 vuotta. Vieläkö on toivoa vai onko kaikki jo menetetty? Lissu päättää tarttua härkää, siis Masaa sarvesta... Siis sarvista.",
                "sv": "Masa och Lissu har varit gifta i 25 år. Finns det ännu hopp eller är allt redan förlorat? Lissu bestämmer sig för att ta tjuren vid hornen, det vill säga Masa... Alltså vid hornen.",
                "en": "Masa and Lissu have been married for 25 years. Is there still hope or is it all lost? Lissu decides to take the bull, or rather Masa, by the horn... Erm, the horns."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60439/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60896",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4221,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:56.926573Z",
                    "last_modified_time": "2023-09-07T14:21:56.926597Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737003.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:56.250556Z",
            "last_modified_time": "2023-11-14T06:13:06.226509Z",
            "date_published": null,
            "start_time": "2023-09-16T13:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DFF74F3E103BA98A19CB7F45AA390720/Meet_me_in_the_bathroom_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/DFF74F3E103BA98A19CB7F45AA390720/Meet_me_in_the_bathroom_2022_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>New York, 2000-luvun alku. MusicTV pauhaa Linkin Parkia ja The Offspringia aamusta iltaan, mutta Brooklynissa muhii jotain, joka on pian osa rockhistoriaa.</p><p>Lizzy Goodmanin samannimiseen bestselleriin perustuva Meet Me in the Bathroom on aikamatka ja rakkauskirje New Yorkin viimeisimmän suuren rokkiskenen rakentajille. The Strokes, Interpol, Yeah Yeah Yeahs, LCD Soundsystem ja TV on the Radio saivat kaikki alkunsa samoihin aikoihin kaupungissa, joka tulisi kohtaamaan suurimman tragediansa vuonna 2001.</p><p>Vimmainen elokuva nykäisee katsojan reilun 20 vuoden taakse hengästyttävälle aikamatkalle, jossa yhtyeiden jäsenet kertovat, millaista oli olla mukana rakentamassa musiikkihistoriaa. Elokuva valottaa, mitä äkillinen suosio tai väärään kohtaan suunniteltu kiertue voivat saada aikaan. Yeah Yeah Yeahsin Karen O’n muistelot miehisen rokkiskenen keskeltä ovat elokuvan kiinnostavinta antia.</p><p>Dylan Southernin ja Will Lovelacen (Shut Up and Play the Hits, R&A 2012) runsaaseen arkistomateriaalin nojaava elokuva on pakkokatsottavaa kaikille Brooklynin indierock-skeneä seuranneille. Varoituksena kuitenkin, että elokuvan katsominen saa katsojan kaivamaan bändien klassikkolevyt välittömään uudelleenkuunteluun.</p><p>Sanna-Maria Nikula</p><p>Teema: Taiteen voima<br>Maa: Iso-Britannia<br>Ohjaus: Will Lovelace, Dylan Southern<br>Tuotanto: Vivienne Perry, Sam Bridger, Marisa Clifford / Pulse Films, XTR<br>Kesto: 105 min<br>Ikäraja: K12<br>Kieli: englanti<br>Levittäjä: Park Circus<br>Esityskopio: Park Circus<br>Kuvaus: Jason Banker, Scott Crary, Peter Dizozza, Joly MacFie<br>Leikkaus: Andrew Cross, Sam Rice-Edwards<br>Musiikki: Zebedee Budworth<br>Äänisuunnittelu: Greg Gettens</p>",
                "en": "<p>This scuzzy, dreamy nonfiction greatest hits compilation prefers lyricism to reportage, with testimony told entirely in voiceover instead of talking heads. It’s also entirely a montage of on-the-fly found footage — of concerts, early interviews, Courtney Love flashing her boobs to a crowd of frothing onlookers during her 24-hour MTV takeover — and it’ll make you feel nostalgia for the bygone heyday of millennial indie rock. The Strokes, The Yeah Yeah Yeahs, the Moldy Peaches, James Murphy, and Interpol all get significant play here, with the film going back to their DIY roots in Lower Manhattan (…)</p><p>Ryan Lattanzio, IndieWire</p><p>Part of the documentary’s charm is seeing the pre-fame Strokes light up a bar with their shot-fueled charisma, or witnessing Karen O’s transformation, after four margaritas, into one of rock’s most commanding performers. (…)</p><p>What stands out most here is how many of these bands recall forming because, first and foremost, they were friends: weirdos seeking other weirdos. At that parking lot show in Williamsburg, O remembers how she could feel the love from her community, “like a current flowing through me.” Two decades later, that sense of camaraderie could be the scene’s most moving legacy.</p><p>Marc Hogan, Pitchfork</p><p>Theme: Power of Art<br>Country: United Kingdom<br>Director: Will Lovelace, Dylan Southern<br>Production: Vivienne Perry, Sam Bridger, Marisa Clifford / Pulse Films, XTR<br>Duration: 105 min<br>Age limit: K12<br>Language: English<br>Distribution: Park Circus<br>Print source: Park Circus<br>Cinematography: Jason Banker, Scott Crary, Peter Dizozza, Joly MacFie<br>Editing: Andrew Cross, Sam Rice-Edwards<br>Music: Zebedee Budworth<br>Sound: Greg Gettens</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Meet me in the bathroom (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Meet me in the bathroom (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "New York, 2000-luvun alku. MusicTV pauhaa Linkin Parkia ja The Offspringia aamusta iltaan, mutta Brooklynissa muhii jotain, joka on pian osa rockhistoriaa."
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60896/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60908",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4220,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:55.426986Z",
                    "last_modified_time": "2023-09-07T14:21:55.427006Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736551.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:21:55.078848Z",
            "last_modified_time": "2023-11-14T06:13:06.145866Z",
            "date_published": null,
            "start_time": "2023-09-16T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/87E286ACA09648BAEA6D2BEC4266D8A7/DanceAbility_Lasten_inklusiivinen_tanssitunti_",
                "en": "http://www.annantalo.fi/en/events/event/87E286ACA09648BAEA6D2BEC4266D8A7/DanceAbility_Children_s_inclusive_dance_class"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>",
                "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "DanceAbility: Lasten inklusiivinen tanssitunti",
                "en": "DanceAbility: Children's inclusive dance class"
            },
            "short_description": {
                "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60908/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60895",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:54.845595Z",
                    "last_modified_time": "2023-09-07T14:21:54.845623Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737002.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:54.699517Z",
            "last_modified_time": "2023-11-14T06:13:06.067939Z",
            "date_published": null,
            "start_time": "2023-09-16T10:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D907735F04286FB046D60B65C061B2DC/Blind_willow_sleeping_woman_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/D907735F04286FB046D60B65C061B2DC/Blind_willow_sleeping_woman_2022_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Haruki Murakamin novelleihin pohjautuva elokuva esittelee joukon tavallisia japanilaisia, jotka koettavat käsitellä mittavan maanjäristyksen pintaan tuomia traumoja, tyytymättömyyttä ja kaipausta. Murakamin arjesta ponnistavaan maagiseen realismiin animaation keinot sopivat fantastisesti.</p><p>Tarinat lähtevät liikkeelle virastosta, jossa moni niiden hahmoista työskentelee. Virkamies Komura koettaa pitää työrutiineistaan kiinni, kunnes maanjäristyksestä järkyttynyt vaimo jättää hänet, mikä saa hänet erikoisen tehtävän äärelle. Toisaalla yksinäinen vanhus näkee yllättäen ihmisen kokoisen, puhuvan ja nietzscheläisen sammakon, joka yrittää värvätä hänet taistelemaan maanjäristyksiä aiheuttavaa matoa vastaan. Naapurin nuoret aikuiset etsivät omalle seikkailulleen kadonnutta kissaa. Komura alkaa muistella mennyttä rakkauttaan.</p><p>Esikoisohjaaja Pierre Földes on toiminut aiemmin säveltäjänä ja kuvataiteilijana. Animaattorina hänen työnsä vakuutti tiettävästi myös itse kirjailijan. Elokuva toimii niin ranskalaisen kuin japanilaisenkin animaation ystäville, kuten myös niin Murakamin kirjat läpikotaisin tunteville kuin täysille ummikoillekin. Kirjailijan monipuolisuutta ihmissuhdekuvaajana ja omaperäisten skenaarioiden kehittäjänä ei ole aiemmin saatu taltioitua näin monitahoisesti.</p><p>Paavo Ihalainen</p><p>Teema: Animoituja unia<br>Maa: Alankomaat, Kanada, Luxemburg, Ranska<br>Ohjaus: Pierre Földes<br>Käsikirjoitus: Pierre Földes, Haruki Murakami<br>Näyttelijät: Amaury de Crayencour, Mathilde Auneveux, Arnaud Maillard, Bruno Paviot, Féodor Atkine, Pierre Földes<br>Tuotanto: Pierre Baussaron, Tom Dercourt, Emmanuel-Alain Raynal / Miyu Productions, Cinémadefacto<br>Kesto: 108 min<br>Ikäraja: K16<br>Alkup. nimi: Saules aveugles, femme endormie<br>Kieli: englanti<br>Tekstitys: suomi<br>Levittäjä: NonStop Entertainment<br>Esityskopio: NonStop Entertainment<br>Kuvaus: Étienne Boilard<br>Leikkaus: Kara Blake<br>Musiikki: Pierre Földes<br>Äänisuunnittelu: Mattew Földes<br>Lavastus: Julien De Man, Pierre Földes</p>",
                "en": "<p>Pierre Földes, a composer and visual artist at the helm of his first feature, has made something that mixes the painterly and the stylized, a film that’s lovely, mysterious and also, at times, fittingly odd.</p><p>The writer-director finds connective tissue among the various storylines in the idea of an earthquake as a psychic rupture, shaking loose the dissatisfactions and yearnings that are usually under wraps, keeping people shut off and stuck. Földes’ multiple roles here include writing the score, voicing a key part and, not least, designing the characters and settings — his graphic style having won over Murakami, otherwise not a fan of animated movies.</p><p>Sheri Linden, The Hollywood Reporter</p><p>Regardless of whether this new Murakami adaptation (based on his short story collection of the same name) comes to be considered the best, I think it might actually capture the elusive essence of Murakami more than any other – something in it being a Rotoscope animation of elegant simplicity. It has the ruminative lightness, almost weightlessness, the watercolour delicacy and reticence of the emotions, the sense of the uncanny, the insistent play of erotic possibility and that Murakami keynote: a cat.</p><p>Peter Bradshaw, The Guardian</p><p>Theme: Animated Dreams<br>Country: Netherlands, Canada, Luxembourg, France<br>Director: Pierre Földes<br>Screenplay: Pierre Földes, Haruki Murakami<br>Starring: Amaury de Crayencour, Mathilde Auneveux, Arnaud Maillard, Bruno Paviot, Féodor Atkine, Pierre Földes<br>Production: Pierre Baussaron, Tom Dercourt, Emmanuel-Alain Raynal / Miyu Productions, Cinémadefacto<br>Duration: 108 min<br>Age limit: K16<br>Orig. title: Saules aveugles, femme endormie<br>Language: English<br>Subtitles: Finnish<br>Distribution: NonStop Entertainment<br>Print source: NonStop Entertainment<br>Cinematography: Étienne Boilard<br>Editing: Kara Blake<br>Music: Pierre Földes<br>Sound: Mattew Földes<br>Production design: Julien De Man, Pierre Földes</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Blind willow, sleeping woman (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Blind willow, sleeping woman (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Haruki Murakamin novelleihin pohjautuva elokuva esittelee joukon tavallisia japanilaisia, jotka koettavat käsitellä mittavan maanjäristyksen pintaan tuomia traumoja, tyytymättömyyttä ja kaipausta. Murakamin arjesta ponnistavaan maagiseen realismiin animaation keinot sopivat fantastisesti."
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60895/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60351",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:54.443088Z",
                    "last_modified_time": "2023-09-07T14:21:54.443120Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731337.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:54.283446Z",
            "last_modified_time": "2023-11-14T06:13:05.978309Z",
            "date_published": null,
            "start_time": "2023-09-16T10:00:00Z",
            "end_time": "2023-09-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/27544A107CA1BEB25379D9533A642B8A/Debatti_1970-luvun_arkkitehtuurin_aatteet_ja_arki_tanaan_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/27544A107CA1BEB25379D9533A642B8A/Debatt_Ideologier_inom_1970-talets_arkitektur_och_vardagen_idag",
                "en": "http://www.vuotalo.fi/en/events/event/27544A107CA1BEB25379D9533A642B8A/Debate_1970s_architectural_ideologies_and_everyday_life_today"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Keskustelua arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä.</p><p>Dialogiin perustuvassa, osallistavassa tapahtumassa keskustellaan arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä. Tapahtuman järjestävät yhteistyössä Docomomo Suomi Finland ry, Arkkitehti-lehti, Architectural Democracy -kollektiivi ja Vuotalo.</p><p>Paikka: Vuosali, Vuotalo (Mosaiikkitori 2, Vuosaari, 00980 Helsinki)<br>Kieli: suomi ja englanti<br>Osallistuminen: maksuton, pakollinen ennakkoilmoittautuminen</p><p>Debatti 1: 1970-luvun rakennusperintö – uhka vai mahdollisuus? <br>Debatti 2: Arkkitehtuurin aatteet ja arki vuonna 2023<br>Debatti 3: Meidän on parannettava osallistavaa kaupunkisuunnittelua!</p><p><b>Osallistuminen</b><br>Ilmoittautuminen tapahtumaan avatttu! Tapahtumaan voidaan ottaa yhteensä 200 osallistujaa. Huomioithan, että ilmoittautuminen on sitova ja henkilökohtainen: yhdellä lomakkeella voi tehdä ainoastaan yhden ilmoittautumisen yhdelle henkilölle. Lomakkeen onnistunut lähettäminen on merkki onnistuneesta ilmoittautumisesta. Jos joutuisit perumaan osallistumisesi, ilmoita siitä sähköpostitse osoitteeseen: jemina.lindholm@mfa.fi. Tieto mahdollisesta esteestä on tärkeä, jotta voimme antaa paikkasi jonotuslistalla seuraavalle.</p><p><b>Saavutettavuus</b><br>Tapahtuma on kaikille avoin ja maksuton. Tapahtuma järjestetään suomeksi ja englanniksi. Tapahtumassa on tarjolla virvokkeita. Tapahtuma striimataan kokonaisuudessaan Helsinki-kanavalle, josta se on mahdollista katsoa reaaliajassa tai tallenteena jälkikäteen kahden viikon ajan.</p><p>Vuotalo on liikuntaesteetön. Lisätietoja Vuotalon saavutettavuudesta löydät <u><a href=\"https://www.vuotalo.fi/yhteystiedot\">täältä</a></u>.</p><p>Arkkitehtuurimuseossa on käytössä turvallisemman tilan periaatteet, joihin sitoudutaan kaikessa museon toiminnassa. Lisätietoja Arkkitehtuurimuseon turvallisemman tilan periaatteista löydät <u><a href=\"https://www.mfa.fi/tule-meille/arkkitehtuurimuseon-turvallisemman-tilan-periaatteet/\">täältä</u></a>.</p><p><b>Lisätietoja:</b><br>Jemina Lindholm, yleisötyövastaava, Arkkitehtuurimuseo  <br>+358 45 7731 0476, jemina.lindholm@mfa.fi</p>",
                "sv": "<p>Diskussion om arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.</p><p>Vid detta inkluderande evenemang som baseras på dialog, diskuterar vi arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.</p><p>Debatt 1: 1970-talets byggnadstradition – ett hot eller en möjlighet? <br>Debatt 2: Ideologier inom arkitektur och vardagen 2023<br>Debatt 3: Vi måste förbättra den inkluderande stadsplaneringen!</p><p>Evenemanget är gratis och öppet för alla. Evenemanget ordnas på finska och engelska. Se deltagaranvisningarna och tillgänglighetsuppgifterna på Finlands arkitekturmuseums webbplats:<br>på finska https://www.mfa.fi/tapahtumat/debatti-1970-luvun-arkkitehtuurin-aatteet-ja-arki-tanaan/<br>på engelska https://www.mfa.fi/en/events/debate-1970s-architectures-ideas-and-everyday-life-today/</p><p>Nordhuset är tillgängligt. Ytterligare information om Nordhusets tillgänglighet hittar du här: https://www.vuotalo.fi/sv/kontaktuppgifter.</p><p>På Finlands arkitekturmuseum tillämpas principerna för tryggare rum, vilka man förbinder sig till i all verksamhet på museet. Ytterligare information om Finlands arkitekturmuseums principer för tryggare rum hittar du här: https://www.mfa.fi/sv/valkommen-till-arkitekturmuseet/finlands-arkitekturmuseums-principer-for-ett-tryggare-utrymme/</p>",
                "en": "<p>Discussion on architecture, ideas, and everyday life in the spirit of 1970s debating culture.</p><p>Date: Saturday, September 16th, 2023, from 1:00 PM to 5:00 PM - Helsinki Design Week 2023 Location: Vuosali, Vuotalo (Mosaiikkitori 2, Vuosaari, 00980 Helsinki) <br>Language: Finnish and English <br>Participation: Free | Pre-registration required</p><p>Debate: \"The Ideas and Everyday Life of 1970s Architecture Today\" is a participatory and dialogue-based event where architecture, ideas, and everyday life are discussed in the spirit of the 1970s debating culture. The event is organized in cooperation by Docomomo Suomi Finland ry, Finnish Architectural Review, Architectural Democracy collective, and Vuotalo.</p><p>Debate 1: The Built Heritage of the 1970s - A Threat or an Opportunity?<br>Debate 2: Architecture's Ideas and Everyday Life in 2023<br>Debate 3: We Need to Improve Participatory Urban Planning!</p><p><b>Participation</b><br>Registration for the event is now open. A total of 200 participants can be admitted to the event. Please note that the registration is binding and personal: you can only make one registration for one person with one form. Successful submission of the form is a sign of successful registration. If you have to cancel your participation, please notify us by email to: jemina.lindholm@mfa.fi. Information about a possible cancellation is important so that we can give your place to the next person on the waiting list.</p><p><b>Accessibility</b><br>The event is open to everyone and free of charge. The event is organized in Finnish and English. Refreshments are available at the event. The event will be streamed in its entirety on the Helsinki channel, where it is possible to watch it in real time or as a recording afterwards for two weeks.</p><p>Vuotalo is physically accessible. You can find more information about Vuotalo's accessibility <u><a href=\"https://www.vuotalo.fi/en/contact-information\">here</u></a>.</p><p>The Museum of Finnish Architecture is committed to the principles for a safer space in all museum activities. You can find more information about the Museum of Finnish Architecture's principles for a safer space <u><a href=\"https://www.mfa.fi/en/visit-us/the-museum-of-finnish-architecture-principles-for-a-safer-space/\">here</u></a>.</p><p><b>For more information</b><br>Jemina Lindholm, Manager of Learning and Public Programmes, Museum of Finnish Architecture<br>+358 45 7731 0476, jemina.lindholm@mfa.fi</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Debatti: 1970-luvun arkkitehtuurin aatteet ja arki tänään – Helsinki Design Week 2023",
                "sv": "Debatt: Ideologier inom 1970-talets arkitektur och vardagen idag – Helsinki Design Week 2023",
                "en": "Debate: 1970s architectural ideologies and everyday life today – Helsinki Design Week 2023"
            },
            "short_description": {
                "fi": "Keskustelua arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä.",
                "sv": "Diskussion om arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.",
                "en": "Discussion on architecture, ideas, and everyday life in the spirit of 1970s debating culture."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60351/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60894",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:54.050712Z",
                    "last_modified_time": "2023-09-07T14:21:54.050741Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737001.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:53.555219Z",
            "last_modified_time": "2023-11-14T06:13:05.898612Z",
            "date_published": null,
            "start_time": "2023-09-15T18:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E301985E29001663704AA0A5F0BCFA79/Return_to_reason_1923_",
                "en": "http://www.savoyteatteri.fi/en/events/event/E301985E29001663704AA0A5F0BCFA79/Return_to_reason_1923_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Man Ray, maalari ja valokuvaaja dadaismin ja surrealismin ytimessä, kohtasi 1921 lumoavan Kiki de Montparnassen, 20-luvun Pariisin keskushahmoihin lukeutuvan taiteilijan ja mallin. Heidän yhdessäolonsa aikana syntyivät neljä Man Rayn kuuluisinta elokuvaa Le Retour à la raison (1923), Emak-Bakia (1926), L’Étoile de mer (1928) ja Les Mystères du château de Dé (1929). Ne ovat rakkausrunoja. Kysymys ”mieskatseesta” on surrealistien kohdalla epäilemättä aina aiheellinen. Mutta Kiki de Montparnasse on naissubjekti. Hän katsoo ja haastaa meitä.</p><p>Kuvarunoissaan Man Ray näyttää meille taivaan merkit. Niissä on tähtitaivas ja meritähti. Niissä on tulikukkia ja vauhdin hurmaa. Ne ovat kineettistä taidetta, jossa on monivalotuksia, päällekkäiskuvia, abstrakteja valoilmiöitä, geometrisiä muotoja, negatiivikuvia, 360 asteen panorointeja ja tietenkin rayogrammeja. Mutta myös tanssin ja transsin hurmiota. Niistä kasvaa elävä virta, tajunnanvirta, matka ulkoiseen ja sisäiseen.</p><p>Man Rayn elokuvat ovat innoittaneet taiteilijasukupolvia sadan vuoden ajan. Tänä vuonna sai Cannesissa ensiesityksensä neljän mykkäklassikon uusi tyylikäs restaurointi. Kuvia siivittää Sqürlin (Jim Jarmuschin ja Carter Loganin) musiikki. Man Rayn elokuvat on tuotu nykypäivään tavalla, joka houkuttelee palaamaan niihin seuraavat sata vuotta.</p><p>Antti Alanen</p><p>Teema: R&A Trailblazers<br>Maa: Ranska<br>Ohjaus: Man Ray<br>Tuotanto: Man Ray<br>Kesto: 70 min<br>Ikäraja: K12<br>A bunch of amateurs (2022)<br>Alkup. nimi: Le Retour à la raison<br>Kieli: ranska<br>Tekstitys: suomi<br>Levittäjä: NonStop Entertainment<br>Esityskopio: NonStop Entertainment<br>Kuvaus: Man Ray<br>Leikkaus: Man Ray<br>Musiikki: Sqürl</p>",
                "en": "<p>In 1923, Man Ray improvises his first film. This movie, boldly surrealist, is called Le Retour à la raison. Subsequently, he renews the experience with Emak-Bakia in 1926, L‘Étoile de mer in 1928 and Les Mystères du château de Dé in 1929.</p><p>In 2023, Jim Jarmush and Carter Logan, the founding members of the group Sqürl, compose a soundtrack to the four films as if they were forming one unique piece.</p><p>Return To Reason celebrates the 100th anniversary of Man Ray’s cinematic Œuvre, restored for the first time in 4K. Il reveals the unique dialogue between two multitalented artists, and creates an undefinable object, a piece of visual music that resonates through its modernity and poetry.</p><p>Production notes</p><p>Man Ray’s films have inspired generations of artists for a hundred years. This year, a stylish new restoration of his four silent film classics had its world premiere at the Cannes Film Festival. The images are brought to life by the music of Sqürl (Jim Jarmusch and Carter Logan). Man Ray’s films have been brought to the modern day here in a way that will tempt audiences to return to them for the next hundred years.</p><p>Antti Alanen (translated by Inari Ylinen)</p><p>Theme: R&A Trailblazers<br>Country: France<br>Director: Man Ray<br>Production: Man Ray<br>Duration: 70 min<br>Age limit: K12<br>Orig. title: Le Retour à la raison<br>Language: French<br>Subtitles: Finnish<br>Distribution: NonStop Entertainment<br>Print source: NonStop Entertainment<br>Cinematography: Man Ray<br>Editing: Man Ray<br>Music: Sqürl</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Return to reason (1923) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Return to reason (1923) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60894/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59874",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923",
                        "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923",
                        "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:52.840890Z",
                    "last_modified_time": "2023-09-07T14:21:52.840914Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730789.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:52.251930Z",
            "last_modified_time": "2023-11-14T06:13:05.808410Z",
            "date_published": null,
            "start_time": "2023-09-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_stand_up_-klubi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_stand_up-klubb",
                "en": "http://www.stoa.fi/en/events/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_Stand-up_Club"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.<br>  <br>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”<br>  <br>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä!  ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"<br>  <br>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.<br> <br>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\" <br> <br>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>www.instagram.com/comedyfabe/ <br>www.instagram.com/mebekoomikko/, www.tiktok.com/@comedyfabe/ <br> <br>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi<br> <br>Klubi-illan tarjoiluista vastaa ravintola Skutta.<br> <br>Paikka: teatterisali    <br>Liput: 20/15 €</p>",
                "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p>",
                "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Itäkuskus stand up -klubi",
                "sv": "Itäkuskus stand up-klubb",
                "en": "Itäkuskus Stand-up Club"
            },
            "short_description": {
                "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"",
                "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”",
                "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59874/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60893",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4215,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:51.813422Z",
                    "last_modified_time": "2023-09-07T14:21:51.813443Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737000.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4215/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:51.661498Z",
            "last_modified_time": "2023-11-14T06:13:05.732135Z",
            "date_published": null,
            "start_time": "2023-09-15T15:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8A2EC0D5BDBCA9B6E542DCC30A51A0C4/The_nature_of_love_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/8A2EC0D5BDBCA9B6E542DCC30A51A0C4/The_nature_of_love_2023_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Filosofian opettaja Sophian päällisin puolin täydellisestä elämästä puuttuu intohimoa, kunnes hän tapaa karskin ja miehekkään Sylvainin. Ennennäkemättömän voimakas yhteys johtaa heidät nopeasti intohimoiseen suhteeseen. Teorian pilvilinnoissa leijailevalle Sophialle työläistaustaisen Sylvainin kohtaamisella on maadoittava vaikutus, mutta pian pariskunnan erilaiset taustat alkavat muodostua ylitsepääsemättömiksi esteiksi.</p><p>Xavier Dolanin elokuvissa näytellyt käsikirjoittaja-ohjaaja Monia Chokri esittelee meille vetovoiman lait komediallisen linssinsä läpi. Chokrilla on mieletön kyky tasapainoilla kömpelyyden ja kiihottavuuden välillä ja asettaa vuoron perään kaikki yhteiskuntaluokat naurunalaisiksi. Vanhempien hahmojen kautta Chokri tuo kokonaisuuteen vakavuutta ja tarkastelee, kuinka jokaiselle ihmisille on tärkeää tulla nähdyksi.</p><p>Persoonallisen kädenjäljen omaavan Chokrin visuaalinen tyyli, villit kuvakulmat ja äkkiväärät leikkaukset tekevät elokuvasta piristävän päivityksen geneerisiin romanttisiin komedioihin. Kyse ei nyt ole kuitenkaan yhtä rajusta visuaalisesta leikittelystä kuin Chokrin Cannesissa palkitussa elokuvassa A Brother’s Love (2019) tai liioitellussa satiirissa Babysitter (2022), vaan tällä kertaa tunteille ja intohimolle annetaan enemmän tilaa hengittää.</p><p>Otto Kylmälä</p><p>Teema: Let's Talk about Sex!<br>Maa: Kanada, Ranska<br>Ohjaus: Monia Chokri<br>Käsikirjoitus: Monia Chokri<br>Näyttelijät: Magalie Lépine Blondeau, Pierre-Yves Cardinal, Monia Chokri, Francis-William Rhéaume<br>Tuotanto: Sylvain Corbeil, Nancy Grant / Metafilms, MK Productions<br>Kesto: 111 min<br>Ikäraja: K16<br>Alkup. nimi: Simple comme Sylvain<br>Kieli: ranska<br>Tekstitys: englanti<br>Levittäjä: MK2 Films<br>Esityskopio: MK2 Films<br>Kuvaus: André Turpin<br>Leikkaus: Pauline Gaillard<br>Musiikki: Emile Sornin<br>Äänisuunnittelu: François Grenon, Julien Roig, Olivier Guillaume<br>Lavastus: Colombe Raby</p>",
                "en": "<p>In Monia Chokri’s new film, The Nature of Love, the main guiding force is passion. After ten years of marriage, love and intellectual fulfillment, philosophy teacher Sophia (Magalie Lépine Blondeau) flips her life around when she gives in to a passionate affair with the handsome Sylvain (Pierre-Yves Cardinal), who’s been contracted to renovate their house. Interested in the intricacies of love and male-female relationships, the film does not moralise or preach, and this is perhaps its most important quality. (…)</p><p>The Nature of Love offers up a refreshing take on the shortcomings of monogamy and a wonderfully acted process of self-searching for the main character, Sophia.</p><p>Savina Petkova, Cineuropa</p><p>There’s much to recommend the film, but the writing, in particular is first-rate: it establishes a rattling screwball-style dialogue pace early on, and combines cynical smarts and deceptively light handling of some undeniably mature themes – what happens to love, for example, when your partner is hollowed out by dementia? Does a sexual connection have a sell-by date? There’s a kinship, in the film’s clear-eye gaze at mismatched romance, with Nicole Holofcener’s Enough Said.</p><p>Wendy Ide, Screen Daily</p><p>Theme: Let's Talk about Sex!<br>Country: Canada, France<br>Director: Monia Chokri<br>Screenplay: Monia Chokri<br>Starring: Magalie Lépine Blondeau, Pierre-Yves Cardinal, Monia Chokri, Francis-William Rhéaume<br>Production: Sylvain Corbeil, Nancy Grant / Metafilms, MK Productions<br>Duration: 111 min<br>Age limit: K16<br>Orig. title: Simple comme Sylvain<br>Language: French<br>Subtitles: English<br>Distribution: MK2 Films<br>Print source: MK2 Films<br>Cinematography: André Turpin<br>Editing: Pauline Gaillard<br>Music: Emile Sornin<br>Sound: François Grenon, Julien Roig, Olivier Guillaume<br>Production design: Colombe Raby</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The nature of love (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "The nature of love (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Filosofian opettaja Sophian päällisin puolin täydellisestä elämästä puuttuu intohimoa, kunnes hän tapaa karskin ja miehekkään Sylvainin. Ennennäkemättömän voimakas yhteys johtaa heidät nopeasti intohimoiseen suhteeseen. Teorian pilvilinnoissa leijailevalle Sophialle työläistaustaisen Sylvainin kohtaamisella on maadoittava vaikutus, mutta pian pariskunnan erilaiset taustat alkavat muodostua ylitsepääsemättömiksi esteiksi."
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60893/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60135",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/honey-b-t-bones-vuotalo-17199001/",
                        "sv": "https://www.lippu.fi/event/honey-b-t-bones-vuotalo-17199001/",
                        "en": "https://www.lippu.fi/event/honey-b-t-bones-vuotalo-17199001/"
                    },
                    "price": {
                        "fi": "23 €",
                        "sv": "23 €",
                        "en": "23 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4214,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:51.425893Z",
                    "last_modified_time": "2023-09-07T14:21:51.425915Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730879.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4214/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:51.276873Z",
            "last_modified_time": "2023-11-14T06:13:05.651208Z",
            "date_published": null,
            "start_time": "2023-09-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/40020331F090D8590C1E3267B12B953F/Honey_B_T-Bones",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/40020331F090D8590C1E3267B12B953F/Honey_B_T-Bones",
                "en": "http://www.vuotalo.fi/en/events/event/40020331F090D8590C1E3267B12B953F/Honey_B_T-Bones"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Suomalaisen rytmimusiikin kulttikokoonpanoihin lukeutuva Honey B & T-Bones on laadullisesti korkeatasoinen ja tunnettu evolutiivisuudestaan ja yllättävyydestään.</p><p>Psykedeeliset värit tyrskyävät yhteen bluesin, funkin ja popin kanssa. Tuloksena persoonallista ja tässä ajassa elävää musiikkia. \"Honey B & T-Bones on nyt 40-vuotiaana ehdottomasti parhaassa vedossaan\", kirjoittaa Keskisuomalaisen Pentti Ronkanen live-arviossaan (KS 10/10–22).</p><p>\"Intensiteetti on huikea, komppi ryskää energisenä ja Aija Puurtisen persoonallisen laulun rinnalla kulkee Esa Kuloniemen kitarataituruus sekä mieletön soundivalikoima. Rakkaudella vaalittu perheyhtye on tyylien hurmaavana sekoituksena ainutlaatuinen maailmassa.”</p><p>Aija Puurtinen: laulu, kosketinsoittimet ja basso<br>Esa Kuloniemi: kitarat ja laulu<br>Pekka Rajamäki: basso, kakkoskitara ja laulu<br>Mooses Kuloniemi: rummut ja laulu</p><p>Liput 23 / Lippu.fi<br>Kesto: 2 x 45 min, sisältää väliajan<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.</p>",
                "sv": "<p>Den finska rytmmusikens kultensemble Honey B & T Bones håller hög kvalitet och är känd för sin evolutionsbenägenhet och överraskande karaktär.</p><p>Psykedeliska färger sköljer samman med blues, funk och pop. Resultatet är personlig musik som lever i den här tiden.</p>",
                "en": "<p>Honey B & T-Bones, one of the cult ensembles of Finnish rhythm music, is a high quality band known for its evolutionary and surprising approach.</p><p>Psychedelic colours collide with blues, funk and pop. The result is distinctive music that lives in the present.</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Honey B & T-Bones",
                "sv": "Honey B & T-Bones",
                "en": "Honey B & T-Bones"
            },
            "short_description": {
                "fi": "Suomalaisen rytmimusiikin kulttikokoonpanoihin lukeutuva Honey B & T-Bones on laadullisesti korkeatasoinen ja tunnettu evolutiivisuudestaan ja yllättävyydestään.",
                "sv": "Den finska rytmmusikens kultensemble Honey B & T Bones håller hög kvalitet och är känd för sin evolutionsbenägenhet och överraskande karaktär.",
                "en": "Honey B & T-Bones, one of the cult ensembles of Finnish rhythm music, is a high quality band known for its evolutionary and surprising approach."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60800",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4213,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:51.024977Z",
                    "last_modified_time": "2023-09-07T14:21:51.024997Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735136.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4213/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:50.786172Z",
            "last_modified_time": "2023-11-14T06:13:05.566925Z",
            "date_published": null,
            "start_time": "2023-09-15T15:00:00Z",
            "end_time": "2023-09-15T16:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3F913936EF2EF9850A682770D29072F3/Kuolleet_lehdet_7_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kuolleet lehdet (7) – Kino Helios"
            },
            "short_description": {
                "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60800/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60743",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4212,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:50.257944Z",
                    "last_modified_time": "2023-09-07T14:21:50.257966Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735831.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4212/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:49.559683Z",
            "last_modified_time": "2023-11-14T06:13:05.471774Z",
            "date_published": null,
            "start_time": "2023-09-15T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3BF06D9C5D3F6484F6DDE14FB3E8F39C/Machu_Picchu_-yhtye_tietokirjailija_Jaana_Kanninen"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kanneltalon galleriassa esiintyy Macchu Picchu -yhtye klo 17–18, jonka jälkeen klo 18–19 tietokirjailija Jaana Kanninen kertoo kirjastaan Kaunis kuolema.</p><p>Machu Picchu –yhtyeessä esiintyvät Rodrigo Rodríguez, Tito Chauca, Pedro Castellón, Mikko Nousiainen ja Roberto Cueto.</p><p>Galleriassa on esillä edesmenneiden Soledad Chuaqui Lahiattin (1937–2018), Héctor Wistuba Lorcan (1932–2018) ja Luis Baudrandin (1951–2021) teoksia. Kaikki kolme asuivat Suomessa vuosikymmeniä poliittisina pakolaisina, koska olivat joutuneet lähtemään kotimaastaan vuoden 1973 vallankaappauksen seurauksena.</p><p>Soledad Chuaqui tuli tunnetuksi omintakeisen paperinleikkaustekniikkansa sekä rautalangasta tehtyjen reliefien vuoksi. Hän myös opetti monia tulevia taiteilijoita Taideteollisessa korkeakoulussa.</p><p>Héctor Wistuba puolestaan yhdisti chileläisen ja suomalaisen kulttuurin taidokkailla vesiväri- ja öljymaalauksillaan, joiden aiheen hän usein löysi suomalaisesta luonnosta.</p><p>Luis Baudrand oli dokumenttivalokuvaaja, jonka tuotanto keskittyy ihmisoikeuksiin; hän pyrki antamaan äänen niille, joilla sitä ei muutoin ollut. Näyttelyn kuvat kertovat Guatemalan alkuperäiskansojen kulttuurin voimasta pitkän sisällissodan jälkeen.</p><p><i>Kokonaisuus on osa tapahtumasarjaa, jonka Suomen chileläisyhteisö tarjoaa muistellakseen puolen vuosisadan takaisia Chilen vallankaappauksen tapahtumia.</i></p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Machu Picchu -yhtye & tietokirjailija Jaana Kanninen"
            },
            "short_description": {
                "fi": "Kanneltalon galleriassa esiintyy Macchu Picchu -yhtye klo 17–18, jonka jälkeen klo 18–19 tietokirjailija Jaana Kanninen kertoo kirjastaan Kaunis kuolema."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60885",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    },
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4211,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:48.835218Z",
                    "last_modified_time": "2023-09-07T14:21:48.835239Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736999.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4211/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:48.574525Z",
            "last_modified_time": "2023-11-14T06:13:05.394150Z",
            "date_published": null,
            "start_time": "2023-09-15T13:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/50863E134935C4CCDCF374B88704D7B9/A_bunch_of_amateurs_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/50863E134935C4CCDCF374B88704D7B9/A_bunch_of_amateurs_2022_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pohjoisenglantilainen Bradford sai vuonna 2009 ensimmäisenä maailmassa Unescon elokuvakaupungin arvonimen. Festivaalien ja elokuvamuseon ohella ruohonjuuritasolla perinnettä pitää yllä Bradford Movie Makers -niminen amatöörielokuvantekijöiden kerho, josta Kim Hopkinsin vastustamaton dokumentti kertoo.</p><p>Vuonna 1932 perustetulla kerholla on rikas historia mutta vuonna 2019 jäseniä enää kourallinen, rahat loppu ja riesana ränsistyneen klubitalon sisäpihaa kaatopaikkana käyttävät ryökäleet.</p><p>Kerho on jäsenilleen kuitenkin henkireikä arjen keskellä ja monelle jopa ainoa sosiaalinen kontakti. ”Lyhytelokuvien tekeminen ei ehkä ole universumille tärkeää, mutta jos minä lopetan sen, mikä minun elämäni tarkoitus on?”, filosofoi Yorkshiren Wes Andersonilta näyttävä Phil. Koronapandemia ajoi kerhotoiminnan ja koko elokuvakulttuurin henkiinjäämistaisteluun, mutta bradfordilaisille koronapilvellä oli yllättävä hopeareunus.</p><p>Melankolisen hauska A Bunch of Amateurs on yhteisöllisyyden ja cinefilian ylistyslaulu, jossa on samaa kotoisaa henkeä kuin Mike Leigh’n komedioissa ja Konttori-sarjassa. Elokuva voitti vuoden 2022 Sheffieldin dokumenttifestivaalilla yleisöpalkinnon ja on sittemmin hurmannut elokuvafaneja ympäri maailman.</p><p>Tommi Kumén</p><p>Teema: Lifestyle<br>Maa: Iso-Britannia<br>Ohjaus: Kim Hopkins<br>Tuotanto: Margareta Szabo, Kim Hopkins / Labor of Love Films<br>Kesto: 95 min<br>Ikäraja: K7<br>Kieli: englanti<br>Levittäjä: MetFilm Sales<br>Esityskopio: MetFilm Sales<br>Kuvaus: Kim Hopkins<br>Leikkaus: Leah Marino<br>Musiikki: Terence Dunn<br>Äänisuunnittelu: Miles Foster-Greenwood, Wayne Bell</p>",
                "en": "<p>It’s not an insult: the Bradford Movie Makers proudly call themselves a bunch of amateurs. Since 1932, members have been making virtually zero-budget films with rickety production values and acting of a quality that often results in fond mickey-taking among themselves. With this warm and rather wonderful documentary Kim Hopkins finds comedy in their idiosyncratic passion without ever being mean or mocking. A Bunch of Amateurs is a thoughtful film about film-making and has some unexpectedly deep things to say too about camaraderie, community and male friendship – though there are a couple of women in the club’s ageing membership.</p><p>Cath Clarke, The Guardian</p><p>Though A Bunch of Amateurs initially appears to fit neatly into the tradition of amusing studies of English eccentrics, it deepens into a touching reflection on the importance of cinema and community for an ageing population whose lives are too often isolated and lacking in purpose. The weekly meetings of the Bradford Movie Makers offer the club’s members a human connection and respite from caring for the loved ones who are currently bedridden or struggling with dementia; one member tells us that being part of the group has helped him cope with bouts of depression.</p><p>Philip Concannon, Sight & Sound</p><p>Theme: Lifestyle<br>Country: United Kingdom<br>Director: Kim Hopkins<br>Production: Margareta Szabo, Kim Hopkins / Labor of Love Films<br>Duration: 95 min<br>Age limit: K7<br>Language: English<br>Distribution: MetFilm Sales<br>Print source: MetFilm Sales<br>Cinematography: Kim Hopkins<br>Editing: Leah Marino<br>Music: Terence Dunn<br>Sound: Miles Foster-Greenwood, Wayne Bell</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "A bunch of amateurs (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "A bunch of amateurs (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "short_description": {
                "fi": "Pohjoisenglantilainen Bradford sai vuonna 2009 ensimmäisenä maailmassa Unescon elokuvakaupungin arvonimen. Festivaalien ja elokuvamuseon ohella ruohonjuuritasolla perinnettä pitää yllä Bradford Movie Makers -niminen amatöörielokuvantekijöiden kerho, josta Kim Hopkinsin vastustamaton dokumentti kertoo."
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60885/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60702",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4210,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:48.337909Z",
                    "last_modified_time": "2023-09-07T14:21:48.337936Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735132.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4210/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:48.185460Z",
            "last_modified_time": "2023-11-14T06:13:05.298659Z",
            "date_published": null,
            "start_time": "2023-09-15T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/699C0411BBD66CD73B8A8B02BF76055F/Kesyttamaton_12_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa.</p><p>Maren leimataan huonotapaiseksi ja hänet sijoitetaan Sprogøn saarelle laitokseen, joka on tarkoitettu henkisesti heikoille ja yhteiskuntaan sopeutumattomille naisille. Saarella Maren solmii ystävyyssuhteen kanssasisarensa Sørinen kanssa ja naiset alkavat kapinoida – kauaskantoisin ja kohtalokkain seurauksin.</p><p>Malou Reymannin väkevä draamaelokuva kuvaa kappaleen tummasävyistä Tanskan historiaa ja sitä kuinka yhteiskunta petti aikansa kesyttämättömät naiset.</p><p>Kesyttämätön (Ustyrlig) palkittiin parhaan pohjoismaisen elokuvan palkinnolla Göteborgin elokuvajuhlilla 2023.</p><p>Ikäraja 12<br>Kesto 134 min<br>Ensi-ilta 4.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kesyttämätön (12) – Kino Helios"
            },
            "short_description": {
                "fi": "Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60234",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4208,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:47.538593Z",
                    "last_modified_time": "2023-09-07T14:21:47.538615Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734249.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4208/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:21:47.167828Z",
            "last_modified_time": "2023-11-14T06:13:05.221756Z",
            "date_published": null,
            "start_time": "2023-09-15T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/16067E52A0BA0E5838B359F094D144BA/Skidikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/16067E52A0BA0E5838B359F094D144BA/Skidikino",
                "en": "http://www.stoa.fi/en/events/event/16067E52A0BA0E5838B359F094D144BA/Skidikino"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 6.10. ja 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>",
                "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Skidikino",
                "sv": "Skidikino",
                "en": "Skidikino"
            },
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.",
                "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60233",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4207,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:46.531220Z",
                    "last_modified_time": "2023-09-07T14:21:46.531239Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734248.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4207/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:21:45.652726Z",
            "last_modified_time": "2023-11-14T06:13:05.139858Z",
            "date_published": null,
            "start_time": "2023-09-15T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino",
                "en": "http://www.stoa.fi/en/events/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 6.10. ja 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>",
                "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Skidikino",
                "sv": "Skidikino",
                "en": "Skidikino"
            },
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.",
                "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60233/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60791",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "link",
                    "link": "https://helsinkidesignweek.com/events/visioita-tulevaisuuden-kaduista/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4188,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:21:32.215074Z",
                    "last_modified_time": "2023-09-07T14:21:32.215101Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735479.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4188/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:21:32.072186Z",
            "last_modified_time": "2023-11-14T06:13:05.059999Z",
            "date_published": null,
            "start_time": "2023-09-13",
            "end_time": "2023-09-15",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A6CC0BA69D998986A7113D5F61269A27/Helsinki_Design_Week_Visioita_tulevaisuuden_kaduista"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?</p><p>Näihin kysymyksiin saat vastauksen WSP Design Studion järjestämässä näyttelyssä Espan lavalla 13.–15.9. klo 12–18.</p><p>Esplanadien katukokeilu on täynnä yllättäviä yksityiskohtia, joista jokainen on tarkoin harkittu.<br>Helsinki Design Weekin yhteydessä järjestetään näyttely, jossa pääset tutustumaan Esplanadien katukokeilun suunnitelmaan, kertomaan mielipiteesi ja keskustelemaan katuympäristöjen tulevaisuudesta. Esplanadien katukokeilun lisäksi näyttelyssä on esillä Helsingin kantakaupungin uusia opastemalleja.</p><p>Tule katsomaan, miten muotoilu auttaa suunnittelemaan turvallista ja kaikille helppokulkuista katutilaa, ja kertomaan mielipiteesi opasteista.</p><p>Tapahtuma on osa Helsinki Design Weekin ohjelmaa.</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsinki Design Week: Visioita tulevaisuuden kaduista – Taidetta Espan lavalla"
            },
            "short_description": {
                "fi": "Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60791/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59810",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4026,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:19:41.370551Z",
                    "last_modified_time": "2023-09-07T14:19:41.370580Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728463.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4026/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:19:41.228100Z",
            "last_modified_time": "2023-11-14T06:13:04.955733Z",
            "date_published": null,
            "start_time": "2023-08-17",
            "end_time": "2023-09-20",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Labra_pedagoginen_konttinayttely_Vuotalon_pihalla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Labb_pedagogisk_containerutstallning_utanfor_Nordhuset",
                "en": "http://www.vuotalo.fi/en/events/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Lab_pedagogic_exhibition_outside_of_Vuosaari_House"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan.</p><p>AVOIMET YLEISÖOPASTUKSET LAUANTAISIN klo 13 ja 14!</p><p>Nyt kahteen konttiin rakennettu arkkitehtuuri- ja muotoiluoppimisen näyttely palaa Helsinkiin – kaikki kiertomatkan opit mukanaan. A&DO Labra rantautuu Vuotalon pihalle Vuosaareen, missä avautuu loistava paikka hyvän lähiympäristön tarkasteluun kaikenikäisille. Näyttely on avoinna 17.8.–20.9.2023.</p><p><b>Avajaiset Taiteiden yönä 17.8. klo 16–19 </b></p><p>A&DO Labra -näyttely haastaa pohtimaan, minkälainen arkkitehtuuri ja muotoilu tukee hyvää arkea ja kestävää kehitystä. Minkälaisessa ympäristössä sinä haluat elää tulevaisuudessa? Minkälainen on hyvä lähiympäristö? Näyttelyn tavoite on saada sinut pohtimaan kriittisesti ympäristöäsi. Voit pohtia asioita yksin, kaverin kanssa tai ryhmässä. Valmiita ratkaisuja ei tarjota. Tavoite on osoittaa, että tulevaisuus ei ole ennalta määrätty. Voimme jokainen vaikuttaa siihen, minkälainen tulevaisuuden ympäristö on.</p><p>Ilmoita ryhmäsi vierailulle Kultuksessa!</p><p>Työryhmä<br>Vastaava tuottaja: Hanna Kapanen<br>Näyttelyarkkitehtuuri: Marjut Alitalo<br>Graafinen suunnittelu: Dog Design, Salla Bedard<br>Kuvitukset: Hanna Kutvonen<br>Oppimateriaalin palvelumuotoilu: Riikka Jalava</p><p>Näyttelytuotanto: A&DO – Arkkitehtuurin ja muotoilun oppimisen keskus<br>Yhteistyössä: Arkkitehtuurimuseo, Designmuseo<br>Kiitos: Suomen kulttuurirahasto, Konttivuokraus oy ja kaikki yhteissuunnitteluun osallistuneet</p><p>A&DO Labra -näyttely on tuotettu yhteistyössä Konttivuokraus Oy:n kanssa.</p>",
                "sv": "<p>Arkitekturmuseets och Designmuseets gemensamma utställning A&DO Labb har turnerat i Finland redan i två års tid.</p><p>Nu återvänder utställningen om arkitektur- och designinlärning som är uppbyggd i två containrar till Helsingfors – med alla lärdomar från rundresan i bagaget. A&DO Labb parkeras utanför Nordhuset i Nordsjö som bjuder på en fantastisk plats för studier i en bra näromgivning. Utställningen passar alla åldrar. <br> <br>Utställningen A&DO Labb utmanar besökaren att fundera på hurdan arkitektur och design som stödjer en bra vardag och hållbar utveckling. I en hurdan miljö vill du leva i framtiden? Hurdan är en bra närmiljö? Utställningens syfte är att få dig att kritiskt granska din omgivning. Du kan reflektera över saken för dig själv, med en vän eller i en grupp. Det finns inga färdiga lösningar. Målet är att visa att framtiden inte alltid är förutbestämd. Var och en av oss kan påverka vår framtida miljö.</p>",
                "en": "<p>The joint A&DO Labra exhibition of the Museum of Finnish Architecture and Design Museum Helsinki has been touring Finland for two years.</p><p>Now, the exhibition of architectural and design learning set up in two shipping containers returns to Helsinki – with all of the lessons learned during the tour. A&DO Labra will arrive at Vuotalo courtyard in Vuosaari, which will provide an excellent location for people of all ages to examine the nearby environment. <br> <br>The A&DO Labra challenges visitors to consider what kind of architecture and design ensures good day-to-day living and sustainable development. What would you like your living environment to be like in the future? What is a good local environment like? The aim of the exhibition is to get you to think about your environment critically. You can think about these things alone, with a friend or in a group. No ready-made solutions will be available. The aim is to show that the future is not predetermined. We can all impact the environment of the future.</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "A&DO Labra – pedagoginen konttinäyttely Vuotalon pihalla",
                "sv": "A&DO Labb – pedagogisk containerutställning utanför Nordhuset",
                "en": "A&DO Lab – pedagogic exhibition outside of Vuosaari House"
            },
            "short_description": {
                "fi": "Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan.",
                "sv": "Arkitekturmuseets och Designmuseets gemensamma utställning A&DO Labb har turnerat i Finland redan i två års tid.",
                "en": "The joint A&DO Labra exhibition of the Museum of Finnish Architecture and Design Museum Helsinki has been touring Finland for two years."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59810/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60131",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 3924,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:18:35.226260Z",
                    "last_modified_time": "2023-09-07T14:18:35.226279Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727785.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:18:34.830628Z",
            "last_modified_time": "2023-11-14T06:13:04.848969Z",
            "date_published": null,
            "start_time": "2023-06-15",
            "end_time": "2023-09-23",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_poimintoja_afrosuomalaisuudesta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_glimtar_ur_livet_som_afrofinlandare",
                "en": "http://www.vuotalo.fi/en/events/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_Afro_Finns_Experiences"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Vuotalon rinnakkaisnäyttelyssä on esillä valokuvia ja haastatteluvideo afrosuomalaisen Good Hair Day -kollektiivin toiminnasta.</p><p>Menneiden vuosikymmenien näkökulmaa tuovat henkilöhistorialliset poiminnat afrosuomalaisista 1800- ja 1900-luvuilla. Elokuussa Vuotalossa järjestetään työpaja, jossa kerätään osallistujien omia kuvia osaksi näyttelyä.</p><p>Helsingin kaupunginmuseon Being Black – poimintoja afrosuomalaisuudesta -rinnakkaisnäyttely avautuu 15.6. Vuotalossa. Näyttelyn avulla halutaan lisätä afrosuomalaisuuteen liittyvää tietoisuutta kertomalla, kuinka afrosuomalaiset ovat osa Helsinkiä ja helsinkiläisyyttä sekä vahvistaa afrosuomalaista kulttuuriperintöä.</p>",
                "sv": "<p>På parallellutställningen i Nordhuset visas fotografier och en intervjuvideo om det afrofinländska Good Hair Day-kollektivets verksamhet.</p><p>Perspektiv på gångna årtionden öppnas av personhistoriska glimtar om afrofinländare på 1800- och 1900-talen. I augusti ordnas i Nordhuset en verkstad där deltagarnas egna bilder samlas in för att fogas till utställningen.</p><p>Helsingfors stadsmuseums parallellutställning Being Black – glimtar ur livet som afrofinländare öppnas 15 juni i Nordhuset. Med hjälp av utställningen vill man öka medvetenheten om afrofinländskhet genom att berätta på vilka sätt afrofinländarna är en del av Helsingfors-identiteten och Helsingfors samt stärka det afrofinländska kulturarvet.</p>",
                "en": "<p>The Vuotalo parallel exhibition will feature photographs and an interview video on the activities of the Afro-Finnish Good Hair Day collective.</p><p>To add some perspective in terms of past decades, the exhibition will also shed light on some Afro Finns from the 19th and 20th centuries. In August, Vuotalo will be hosting a workshop to collect photos from visitors to include in the exhibition.</p><p>Helsinki City Museum’s Being Black – Afro Finns’ Experiences parallel exhibition will open at Vuotalo on 15 June. The purpose of the exhibition is to raise awareness of Afro-Finnish culture by telling how the Afro Finns are part of Helsinki and the Helsinki identity, and to strengthen the Afro-Finnish cultural heritage in the museum’s collections.</p>"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Being Black – poimintoja afrosuomalaisuudesta – Helsingin kaupunginmuseon rinnakkaisnäyttely Vuotalossa",
                "sv": "Being Black – glimtar ur livet som afrofinländare – Helsingfors stadsmuseums parallellutställning i Nordhuset",
                "en": "Being Black – Afro Finns’ Experiences – Helsinki City Museum’s parallel exhibition at Vuotalo"
            },
            "short_description": {
                "fi": "Vuotalon rinnakkaisnäyttelyssä on esillä valokuvia ja haastatteluvideo afrosuomalaisen Good Hair Day -kollektiivin toiminnasta.",
                "sv": "På parallellutställningen i Nordhuset visas fotografier och en intervjuvideo om det afrofinländska Good Hair Day-kollektivets verksamhet.",
                "en": "The Vuotalo parallel exhibition will feature photographs and an interview video on the activities of the Afro-Finnish Good Hair Day collective."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}