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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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/?division=malmi&format=api&page=43
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1640,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=44",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=42"
    },
    "data": [
        {
            "id": "kulke:64028",
            "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:42/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151444,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:03.518891Z",
                    "last_modified_time": "2024-06-13T10:13:03.518908Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:03.461791Z",
            "last_modified_time": "2024-09-05T16:14:00.089989Z",
            "date_published": null,
            "start_time": "2024-09-05",
            "end_time": "2024-09-28",
            "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,
            "short_description": {
                "fi": "Kurkkaa, avaa, kurota, katsele, piiloudu, kosketa, kuuntele, lue, väritä… Mutta minne värit ovat kadonneet?",
                "sv": "Kika, öppna, sträck dig, titta, göm dig, vidrör, lyssna, läs, färglägg... Men vart har färgerna tagit vägen?",
                "en": "Peek, open, reach, watch, hide, touch, listen, read, colour… But where have the colours gone?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E1C0B39035DD464BBB7CF7E7D15B5B70/Kun_yo_varittaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1C0B39035DD464BBB7CF7E7D15B5B70/Kun_yo_varittaa",
                "en": "http://www.malmitalo.fi/en/events/event/E1C0B39035DD464BBB7CF7E7D15B5B70/Kun_yo_varittaa"
            },
            "description": {
                "fi": "<p>Kurkkaa, avaa, kurota, katsele, piiloudu, kosketa, kuuntele, lue, väritä… Mutta minne värit ovat kadonneet?</p><p>Kun yö värittää on Värinauttien oma elämyksellinen taidenäyttely yöstä, peloista, möröistä ja kadonneista väreistä. Näyttely kutsuu kävijänsä mukaan öiseen seikkailuun, jossa sanat ovat sadetta ja möröt kesytettävissä. Sanataidetta, käsityötä ja kuvataidetta yhdistelevä näyttely on koottu pääosin kierrätysmateriaaleista. Värinauttien taidenäyttelyssä kaikkeen saa koskea.</p><p>Värinautit <b>Anni Pöyhönen</b> ja <b>Mona Paalanen</b> tunnetaan monipuolisesta pedagogisesta materiaalistaan, joka on käytössä varhaiskasvatuksesta yläkoululuokille ympäri Suomea. Värinauttien taidenäyttely perustuu samannimiseen tarinaan, jossa Annu ja Unna heräävät kotoaan keskellä yötä etsimään kadonneita värejä.</p><p>Näyttelystä on saatavilla maksuton pedagoginen opas osoitteessa: https://www.varinautit.fi/taidenayttely/</p><p>Näyttely soveltuu kaikenikäisille lapsille perheineen.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Kika, öppna, sträck dig, titta, göm dig, vidrör, lyssna, läs, färglägg... Men vart har färgerna tagit vägen?</p><p>Kun yö värittää är en upplevelsebaserad konstutställning av Färgnauterna om natten, rädslor, monster och försvunna färger. Utställningen bjuder in besökarna på ett nattligt äventyr där orden är regn och monstren går att tämja. Utställningen kombinerar ordkonst, handarbete och bildkonst, och är huvudsakligen sammanställd av återvunnet material. På Färgnauternas utställning får man röra vid allt.</p><p>Färgnauterna Anni Pöyhönen och Mona Paalanen är kända för sitt mångsidiga pedagogiska material, som används från småbarnspedagogiken till högstadieklasser runt om i Finland. Färgnauternas utställning är baserad på berättelsen med samma namn, och handlar om Annu och Unna som vaknar mitt i natten för att leta efter de försvunna färgerna.</p><p>Utställningen är lämplig för barn i alla åldrar och deras familjer.</p><p>Fritt inträde!</p>",
                "en": "<p>Peek, open, reach, watch, hide, touch, listen, read, colour… But where have the colours gone?</p><p>Colours of the Night is Värinautit’s experiential art exhibition about the night, fears, monsters and lost colours. The exhibition invites its visitors on a nighttime adventure where the words are rain and the monsters can be tamed. The exhibition combines word art, handicraft and visual arts and is mainly made from recycled materials. At the Värinautit exhibition, you can touch everything.</p><p>Anni Pöyhönen and Mona Paalanen, who make up Värinautit, are known for their versatile pedagogical material, which is used from early childhood education to secondary school classes all over Finland. Their exhibition is based on a story of the same name, in which Annu and Unna wake up in the middle of the night to go on a search for the lost colours.</p><p>The exhibition is suitable for children of all ages and their families.</p><p>Admission is free!</p>"
            },
            "name": {
                "fi": "Kun yö värittää",
                "sv": "Kun yö värittää",
                "en": "Kun yö värittää"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64028/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64409",
            "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/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T08:14:40.999710Z",
                    "last_modified_time": "2024-08-22T08:14:40.999731Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757103.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-22T08:14:40.979152Z",
            "last_modified_time": "2024-09-04T12:15:07.079215Z",
            "date_published": null,
            "start_time": "2024-09-07T12: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,
            "short_description": {
                "fi": "Disneyn ja Pixarin elokuva “Inside Out - mielen sopukoissa 2” asettuu jälleen tunteiden tasapainon jo kerran löytäneen teinitytön Rileyn mieleen juuri sillä hetkellä, kun hänen päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille!",
                "en": "Disney and Pixar’s “Inside Out 2” returns to the mind of newly minted teenager Riley just as headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/364FEB3002115D56B9ECBA59B0DB5C12/Inside_Out_Mielen_sopukoissa_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/364FEB3002115D56B9ECBA59B0DB5C12/Inside_Out_2_7_"
            },
            "description": {
                "fi": "<p>Disneyn ja Pixarin elokuva “Inside Out - mielen sopukoissa 2” asettuu jälleen tunteiden tasapainon jo kerran löytäneen teinitytön Rileyn mieleen juuri sillä hetkellä, kun hänen päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille!</p><p>Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet Rileyn mieltä hyvällä menestyksellä, eivät tiedä, mitä pitäisi ajatella, kun kuvioihin ilmestyvät  Ahdistus, Kateus, Ennui ja Nolous.  Elokuvan “Inside Out - mielen sopukoissa 2” on ohjannut Kelsey Mann ja tuottanut Mark Nielsen ja se nähdään Suomen elokuvateattereissa 17. heinäkuuta 2024.</p><p>Kesto 97 min<br>Ikäraja 7<br>Elokuva on puhuttu ja tekstitetty suomeksi.</p>",
                "en": "<p>Disney and Pixar’s “Inside Out 2” returns to the mind of newly minted teenager Riley just as headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions!</p><p>Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone. Maya Hawke lends her voice to Anxiety, alongside Amy Poehler as Joy, Phyllis Smith as Sadness, Lewis Black as Anger, Tony Hale as Fear, and Liza Lapira as Disgust. Directed by Kelsey Mann and produced by Mark Nielsen, “Inside Out 2” releases only in theaters Summer 2024.</p><p>Duration: 97 min<br>Age limit: 7</p>"
            },
            "name": {
                "fi": "Inside Out – Mielen sopukoissa 2 (7) – Kino Helios",
                "en": "Inside Out 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64409/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64242",
            "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:52/?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:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151808,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T12:15:45.580000Z",
                    "last_modified_time": "2024-07-24T12:15:45.580050Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756157.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T12:15:45.547955Z",
            "last_modified_time": "2024-09-03T12:13:37.615130Z",
            "date_published": null,
            "start_time": "2024-09-14T12: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,
            "short_description": {
                "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.",
                "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.",
                "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "en": "http://www.malmitalo.fi/en/events/event/2610EA67AB13F10050E9D36F5AB1A583/M_-_Merkintoja_yhden_malmilaisen_tapauksesta"
            },
            "description": {
                "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b>  https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>"
            },
            "name": {
                "fi": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "sv": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "en": "M - Merkintöjä yhden malmilaisen tapauksesta"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64398",
            "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/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152162,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T07:13:57.872685Z",
                    "last_modified_time": "2024-08-21T07:13:57.872700Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745701.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152162/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T07:13:57.859601Z",
            "last_modified_time": "2024-09-03T08:14:03.279710Z",
            "date_published": null,
            "start_time": "2024-09-13T15: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,
            "short_description": {
                "fi": "Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.",
                "en": "Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DF81CC8187CC3878E4F8ADA648808412/Fly_Me_To_The_Moon_K7_",
                "en": "http://www.malmitalo.fi/en/events/event/DF81CC8187CC3878E4F8ADA648808412/Fly_Me_To_The_Moon_7_"
            },
            "description": {
                "fi": "<p>Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.</p><p>Elokuva sijoittuu NASA:n historiallisen kuulennon kulisseihin, joissa panokset ovat korkealla. Kipinät sinkoilevat, kun NASA:n julkisuuskuvaa kiillottamaan palkattu markkinoinnin ihmelapsi Kelly Jones (Johansson) tekee laukaisujohtaja Cole Davisin (Tatum) ennestäänkin vaikeasta tehtävästä yhtä hullunmyllyä. Presidentti ei salli tehtävän epäonnistua, joten Jones saa tehtäväkseen lavastaa varajärjestelynä kuuhun laskeutumisen, jolloin lähtölaskenta alkaa toden teolla...</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto: 132 min<br>Ikäraja 7<br>Liput 7 €</p>",
                "en": "<p>Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing.</p><p>Brought in to fix NASA’s public image, sparks fly in all directions as marketing maven Kelly Jones (Johansson) wreaks havoc on launch director Cole Davis’s (Tatum) already difficult task. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as back-up and the countdown truly begins…</p><p>Duration: 132 min<br>Age limit: 7<br>Tickets: 7 €</p>"
            },
            "name": {
                "fi": "Fly Me To The Moon (K7) – Kino Helios",
                "en": "Fly Me To The Moon (7+) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64413",
            "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/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152176,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T08:14:41.752357Z",
                    "last_modified_time": "2024-08-22T08:14:41.752373Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745698.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152176/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-22T08:14:41.737052Z",
            "last_modified_time": "2024-09-03T08:14:02.887563Z",
            "date_published": null,
            "start_time": "2024-09-11T15: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,
            "short_description": {
                "fi": "Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.",
                "en": "The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AF642743C81D929138B592364CF14C92/Se_paattyy_meihin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/AF642743C81D929138B592364CF14C92/It_Ends_With_Us_12_"
            },
            "description": {
                "fi": "<p>Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.</p><p>Satunnainen tapaaminen hurmaavan neurokirurgi Ryle Kincaidin (Justin Baldoni) kanssa sytyttää vahvan kipinän heidän välillään, mutta heidän rakastuessaan syvästi Lily alkaa nähdä Rylesta puolia, jotka muistuttavat häntä hänen vanhempiensa suhteesta.</p><p>Kun Lilyn ensirakkaus, Atlas Corrigan (Brandon Sklenar), yhtäkkiä palaa hänen elämäänsä, hänen suhteensa Ryleen luhistuu, ja Lily tajuaa, että hänen täytyy oppia luottamaan omaan voimaansa tehdäkseen mahdottoman päätöksen oman tulevaisuutensa puolesta.</p><p>Elokuvan on ohjannut Justin Baldoni ja tuottanut Alex Saks, Jamey Heath ja Christy Hall. Rooleissa Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton ja Brandon Sklenar, Christy Hallin tekemästä käsikirjoituksesta, joka perustuu Colleen Hooverin kirjaan.</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto 131 min<br>Ikäraja 12<br>Liput 7 €</p>",
                "en": "<p>The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business.</p><p>A chance meeting with charming neurosurgeon Ryle Kincaid (Justin Baldoni) sparks an intense connection, but as the two fall deeply in love, Lily begins to see sides of Ryle that remind her of her parents’ relationship.</p><p>When Lily’s first love, Atlas Corrigan (Brandon Sklenar), suddenly reenters her life, her relationship with Ryle is upended, and Lily realizes she must learn to rely on her own strength to make an impossible choice for her future.</p><p>Directed by Justin Baldoni and produced by Alex Saks, Jamey Heath, and Christy Hall. The film stars Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton and Brandon Sklenar, from a screenplay by Christy Hall, based on the book by Colleen Hoover.</p><p>Duration: 131 min<br>Age limit: 12<br>Tickets: 7 €</p>"
            },
            "name": {
                "fi": "Se päättyy meihin (12) – Kino Helios",
                "en": "It Ends With Us (12+) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64413/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64397",
            "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/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152161,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T07:13:57.798129Z",
                    "last_modified_time": "2024-08-21T07:13:57.798146Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745692.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152161/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T07:13:57.784908Z",
            "last_modified_time": "2024-09-03T08:14:02.026426Z",
            "date_published": null,
            "start_time": "2024-09-06T15: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,
            "short_description": {
                "fi": "Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.",
                "en": "Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/123B11C1AFB85CA7395B3E71FCD27D1F/Fly_Me_To_The_Moon_K7_",
                "en": "http://www.malmitalo.fi/en/events/event/123B11C1AFB85CA7395B3E71FCD27D1F/Fly_Me_To_The_Moon_7_"
            },
            "description": {
                "fi": "<p>Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.</p><p>Elokuva sijoittuu NASA:n historiallisen kuulennon kulisseihin, joissa panokset ovat korkealla. Kipinät sinkoilevat, kun NASA:n julkisuuskuvaa kiillottamaan palkattu markkinoinnin ihmelapsi Kelly Jones (Johansson) tekee laukaisujohtaja Cole Davisin (Tatum) ennestäänkin vaikeasta tehtävästä yhtä hullunmyllyä. Presidentti ei salli tehtävän epäonnistua, joten Jones saa tehtäväkseen lavastaa varajärjestelynä kuuhun laskeutumisen, jolloin lähtölaskenta alkaa toden teolla...</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto: 132 min<br>Ikäraja 7<br>Liput 7 €</p>",
                "en": "<p>Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing.</p><p>Brought in to fix NASA’s public image, sparks fly in all directions as marketing maven Kelly Jones (Johansson) wreaks havoc on launch director Cole Davis’s (Tatum) already difficult task. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as back-up and the countdown truly begins…</p><p>Duration: 132 min<br>Age limit: 7<br>Tickets: 7 €</p>"
            },
            "name": {
                "fi": "Fly Me To The Moon (K7) – Kino Helios",
                "en": "Fly Me To The Moon (7+) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64397/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64412",
            "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/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-22T08:14:40.123331Z",
                    "last_modified_time": "2024-08-22T08:14:40.123355Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745689.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-22T08:14:40.085590Z",
            "last_modified_time": "2024-09-03T08:14:01.369031Z",
            "date_published": null,
            "start_time": "2024-09-04T15: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,
            "short_description": {
                "fi": "Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.",
                "en": "The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6F125950655094FA417E47DCB12AFA56/Se_paattyy_meihin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6F125950655094FA417E47DCB12AFA56/It_Ends_With_Us_12_"
            },
            "description": {
                "fi": "<p>Ensimmäinen Colleen Hooverin valkokankaalle sovitettu romaani kertoo mukaansatempaavan tarinan Lily Bloomista (Blake Lively), joka selviytyy traumaattisesta lapsuudesta ja aloittaa uuden elämän Bostonissa toteuttaakseen pitkäaikaisen unelmansa oman yrityksen perustamisesta.</p><p>Satunnainen tapaaminen hurmaavan neurokirurgi Ryle Kincaidin (Justin Baldoni) kanssa sytyttää vahvan kipinän heidän välillään, mutta heidän rakastuessaan syvästi Lily alkaa nähdä Rylesta puolia, jotka muistuttavat häntä hänen vanhempiensa suhteesta.</p><p>Kun Lilyn ensirakkaus, Atlas Corrigan (Brandon Sklenar), yhtäkkiä palaa hänen elämäänsä, hänen suhteensa Ryleen luhistuu, ja Lily tajuaa, että hänen täytyy oppia luottamaan omaan voimaansa tehdäkseen mahdottoman päätöksen oman tulevaisuutensa puolesta.</p><p>Elokuvan on ohjannut Justin Baldoni ja tuottanut Alex Saks, Jamey Heath ja Christy Hall. Rooleissa Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton ja Brandon Sklenar, Christy Hallin tekemästä käsikirjoituksesta, joka perustuu Colleen Hooverin kirjaan.</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto 131 min<br>Ikäraja 12<br>Liput 7 €</p>",
                "en": "<p>The first Colleen Hoover novel adapted for the big screen, tells the compelling story of Lily Bloom (Blake Lively), a woman who overcomes a traumatic childhood to embark on a new life in Boston and chase a lifelong dream of opening her own business.</p><p>A chance meeting with charming neurosurgeon Ryle Kincaid (Justin Baldoni) sparks an intense connection, but as the two fall deeply in love, Lily begins to see sides of Ryle that remind her of her parents’ relationship.</p><p>When Lily’s first love, Atlas Corrigan (Brandon Sklenar), suddenly reenters her life, her relationship with Ryle is upended, and Lily realizes she must learn to rely on her own strength to make an impossible choice for her future.</p><p>Directed by Justin Baldoni and produced by Alex Saks, Jamey Heath, and Christy Hall. The film stars Blake Lively, Justin Baldoni, Jenny Slate, Hasan Minhaj, Amy Morton and Brandon Sklenar, from a screenplay by Christy Hall, based on the book by Colleen Hoover.</p><p>Duration: 131 min<br>Age limit: 12<br>Tickets: 7 €</p>"
            },
            "name": {
                "fi": "Se päättyy meihin (12) – Kino Helios",
                "en": "It Ends With Us (12+) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64412/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64396",
            "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/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T07:13:57.671984Z",
                    "last_modified_time": "2024-08-21T07:13:57.672010Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745688.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152160/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T07:13:57.633844Z",
            "last_modified_time": "2024-09-03T08:14:01.293872Z",
            "date_published": null,
            "start_time": "2024-09-04T12: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,
            "short_description": {
                "fi": "Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.",
                "en": "Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44CD5E6FDB7D08B409F635F68A50D770/Fly_Me_To_The_Moon_K7_",
                "en": "http://www.malmitalo.fi/en/events/event/44CD5E6FDB7D08B409F635F68A50D770/Fly_Me_To_The_Moon_7_"
            },
            "description": {
                "fi": "<p>Scarlett Johanssonin ja Channing Tatumin tähdittämä FLY ME TO THE MOON on terävä ja tyylikäs romanttinen komedia.</p><p>Elokuva sijoittuu NASA:n historiallisen kuulennon kulisseihin, joissa panokset ovat korkealla. Kipinät sinkoilevat, kun NASA:n julkisuuskuvaa kiillottamaan palkattu markkinoinnin ihmelapsi Kelly Jones (Johansson) tekee laukaisujohtaja Cole Davisin (Tatum) ennestäänkin vaikeasta tehtävästä yhtä hullunmyllyä. Presidentti ei salli tehtävän epäonnistua, joten Jones saa tehtäväkseen lavastaa varajärjestelynä kuuhun laskeutumisen, jolloin lähtölaskenta alkaa toden teolla...</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Kesto: 132 min<br>Ikäraja 7<br>Liput 7 €</p>",
                "en": "<p>Starring Scarlett Johansson and Channing Tatum, FLY ME TO THE MOON is a sharp, stylish romantic comedy set against the high-stakes backdrop of NASA’s historic Apollo 11 moon landing.</p><p>Brought in to fix NASA’s public image, sparks fly in all directions as marketing maven Kelly Jones (Johansson) wreaks havoc on launch director Cole Davis’s (Tatum) already difficult task. When the White House deems the mission too important to fail, Jones is directed to stage a fake moon landing as back-up and the countdown truly begins…</p><p>Duration: 132 min<br>Age limit: 7<br>Tickets: 7 €</p>"
            },
            "name": {
                "fi": "Fly Me To The Moon (K7) – Kino Helios",
                "en": "Fly Me To The Moon (7+) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64403",
            "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:p16919/?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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:13.754052Z",
                    "last_modified_time": "2024-08-21T08:13:13.754065Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745700.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:13.742087Z",
            "last_modified_time": "2024-09-02T06:14:37.937021Z",
            "date_published": null,
            "start_time": "2024-09-13T12: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,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FCFE94506866C6C34D35FFC3BBE536A4/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64402",
            "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:p16919/?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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:13.341070Z",
                    "last_modified_time": "2024-08-21T08:13:13.341083Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745697.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:13.328928Z",
            "last_modified_time": "2024-09-02T06:14:37.033440Z",
            "date_published": null,
            "start_time": "2024-09-11T12: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,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A68EED1E1D7608417E363091E7C0111/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64400",
            "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:p16919/?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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152165,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:12.910974Z",
                    "last_modified_time": "2024-08-21T08:13:12.910986Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745695.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:12.903366Z",
            "last_modified_time": "2024-09-02T06:14:36.281057Z",
            "date_published": null,
            "start_time": "2024-09-07T15: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,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7363AE4CCC49C7C7E1E04D8E6BCC9C4E/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64399",
            "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:p16919/?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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:12.639225Z",
                    "last_modified_time": "2024-08-21T08:13:12.639237Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745691.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:12.625557Z",
            "last_modified_time": "2024-09-02T06:14:35.610391Z",
            "date_published": null,
            "start_time": "2024-09-06T12: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,
            "short_description": {
                "fi": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58078401CF8FB2F614B6E7E5061C4469/Mielensapahoittajan_rakkaustarina_S_"
            },
            "description": {
                "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63316",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/gasthaus-orkesteri-malmitalo-18621894/",
                        "sv": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/",
                        "en": "https://www.lippu.fi/event/gasthaus-orkesteri-malmitalo-18621894/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 19,50 €",
                        "sv": "24,50 € / 19,50 €",
                        "en": "24,50 € / 19,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151878,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:02.759347Z",
                    "last_modified_time": "2024-07-25T15:15:02.759366Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748962.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151878/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T15:15:02.717731Z",
            "last_modified_time": "2024-08-29T05:13:35.613882Z",
            "date_published": null,
            "start_time": "2024-10-19T16: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,
            "short_description": {
                "fi": "Samaan aikaan kaunista ja outoa – Gasthaus Orkesteri on täydellinen soundtrack valon ja pimeyden välillä kulkeville uneksijoille.",
                "sv": "Vackert och märkligt på samma gång – Gasthaus Orkesteri är det perfekta soundtracket för drömmare som vandrar mellan ljuset och mörkret.",
                "en": "Beautiful and strange at the same time – Gasthaus Orchestra is the perfect soundtrack for dreamers wandering between light and darkness."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orkesteri",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orkester",
                "en": "http://www.malmitalo.fi/en/events/event/5220ADBEB85AC177799AFB99A908E73B/Gasthaus_Orchestra"
            },
            "description": {
                "fi": "<p>Samaan aikaan kaunista ja outoa – Gasthaus Orkesteri on täydellinen soundtrack valon ja pimeyden välillä kulkeville uneksijoille.</p><p>Kahdeksanhenkinen yhtye on tehnyt hurmioituneita keikkoja Twin Peaksin jalanjäljissä ja vakiinnuttanut asemansa Angelo Badalamentin selittämättömän musiikin tulkitsijana.</p><p>Nyt on aika rikkoa raiteet: Gasthaus Orkesteri tuo mukanaan uuden suunnan omaleimaiselle, elokuvalliselle tyylilleen, unohtamatta kuitenkaan juuriaan. Gasthaus Orkesteri sukeltaa yöhön ja salaisuuksiin, laulaa ja raastaa, repäisee riehuvat sydämet paikalleen. Luvassa on uusia omia kappaleita ja sopivasti vanhaa.</p>",
                "sv": "<p>Vackert och märkligt på samma gång – Gasthaus Orkesteri är det perfekta soundtracket för drömmare som vandrar mellan ljuset och mörkret.</p><p>Åttamannabandet har gjort extatiska spelningar i Twin Peaks fotspår, och etablerat sin ställning som tolkare av Angelo Badalamentis oförklarliga musik.</p><p>Nu är det dags att byta spår: Gasthaus Orkesteri för med sig en ny riktning i sin särpräglade, filmatiska stil, dock utan att glömma sina rötter. Gasthaus Orchestra dyker ner i natten och hemligheterna, sjunger och sliter, river vilda hjärtan på plats. Nya originallåtar och en lämplig mängd gamla låtar utlovas.</p>",
                "en": "<p>Beautiful and strange at the same time – Gasthaus Orchestra is the perfect soundtrack for dreamers wandering between light and darkness.</p><p>The eight-piece band has played enchanting gigs in the footsteps of Twin Peaks and established themselves as interpreters of Angelo Badalamenti's inexplicable music.</p><p>Now, it’s time for a new path: The Gasthaus Orchestra introduces a new direction to its distinctive, cinematic style, without forgetting its roots. The Gasthaus Orchestra dives headfirst into the night and the secrets, sings and tears, tears the raging hearts into place. Their set includes a nice mix of new and old material.</p>"
            },
            "name": {
                "fi": "Gasthaus Orkesteri",
                "sv": "Gasthaus Orkester",
                "en": "Gasthaus Orchestra"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63316/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64290",
            "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:105/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151874,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:01.690653Z",
                    "last_modified_time": "2024-07-25T15:15:01.690668Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751041.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151874/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T15:15:01.661484Z",
            "last_modified_time": "2024-08-29T05:13:34.629813Z",
            "date_published": null,
            "start_time": "2024-10-17T08:00:00Z",
            "end_time": "2024-10-17T10: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,
            "short_description": {
                "fi": "Plop plop plop - putkahtelee kuin sieniä sateella! Askartele työpajassa oma pieni sieni.",
                "sv": "Plopp plopp plopp – de ploppar upp som svampar i regn! Pyssla en egen liten svamp i workshoppen.",
                "en": "Plop plop plop - pops up like mushrooms in the rain! Craft your own small shroom in the workshop."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C37DB1768A1FCAC19E90D9B44497EA30/Sienia_sateella_-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C37DB1768A1FCAC19E90D9B44497EA30/Workshop_svampar_i_regn_",
                "en": "http://www.malmitalo.fi/en/events/event/C37DB1768A1FCAC19E90D9B44497EA30/Mushrooms_in_the_Rain_workshop_"
            },
            "description": {
                "fi": "<p>Plop plop plop - putkahtelee kuin sieniä sateella! Askartele työpajassa oma pieni sieni.</p><p>Värikkäässä sienimetsässä kasvavat mielikuvitukselliset hattupäät ja ihan tavalliset tatit. Asuuko sienessä joku? Mahdatko tunnistaa kaikki mielikuvitukselliset sienilajit? Askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.<br> <br>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>Plopp plopp plopp – de ploppar upp som svampar i regn! Pyssla en egen liten svamp i workshoppen.</p><p>I den färgglada svampskogen växer fantasifulla hatthuvuden och helt vanliga soppar. Bor det någon i svampen? Känner du igen alla de fantasifulla svamparterna? Pysslet passar för alla åldrar, men barn under skolåldern ska ha sällskap av en vuxen.<br> <br>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala<br>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>Plop plop plop - pops up like mushrooms in the rain! Craft your own small shroom in the workshop.</p><p>Imaginary hat heads and simple boletes grow in a colourful mushroom forest. Does anyone live in the mushroom? Can you identify all the imaginative mushrooms? Crafting is suitable for all ages, but artists under school age need to be accompanied by an adult.<br> <br>Design and implementation of the workshop by Runoropinoita/Ulla-Maija<br>Malmitalo lobby, free of charge!</p>"
            },
            "name": {
                "fi": "Sieniä sateella -työpaja – Nonstop",
                "sv": "Workshop – svampar i regn – Nonstop",
                "en": "Mushrooms in the Rain workshop – Nonstop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64290/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64288",
            "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:105/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151872,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:01.089511Z",
                    "last_modified_time": "2024-07-25T15:15:01.089539Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751040.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151872/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T15:15:01.054039Z",
            "last_modified_time": "2024-08-29T05:13:34.144060Z",
            "date_published": null,
            "start_time": "2024-10-16T08:00:00Z",
            "end_time": "2024-10-16T10: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,
            "short_description": {
                "fi": "Ripaus tulipunaista, sipaus jäänsinistä, hiukkasen tähtien tuiketta. Millainen on sinun ikioma ihmeplaneettasi?",
                "sv": "En gnutta scharlakansrött, lite isblått, en aning stjärnglimmer. Hur ser din egna förunderliga planet ut?",
                "en": "A dash of scarlet, a splash of ice blue, a little star twinkle. What is your very own planet of wonders like?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78CE1F6FF7912B4BB7A3E72CF646D257/Ihme_planeetta_-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78CE1F6FF7912B4BB7A3E72CF646D257/Workshop_en_forunderlig_planet_",
                "en": "http://www.malmitalo.fi/en/events/event/78CE1F6FF7912B4BB7A3E72CF646D257/Planet_of_Wonders_workshop_"
            },
            "description": {
                "fi": "<p>Ripaus tulipunaista, sipaus jäänsinistä, hiukkasen tähtien tuiketta. Millainen on sinun ikioma ihmeplaneettasi?</p><p>Työpajassa ihmetellään ja kuvitellaan planeettoja sekä askarrellaan mobileen yksi tai useampi ihmeellinen taivaankappale. Askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.</p><p>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>En gnutta scharlakansrött, lite isblått, en aning stjärnglimmer. Hur ser din egna förunderliga planet ut?</p><p>I workshoppen förundras vi över och fantiserar om planeter, och pysslar en eller flera förunderliga himlakroppar till en mobil. Pysslet passar för alla åldrar, men barn under skolåldern ska ha sällskap av en vuxen.</p><p>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala<br>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>A dash of scarlet, a splash of ice blue, a little star twinkle. What is your very own planet of wonders like?</p><p>In the workshop, think about and imagine planets, and create one or more wondrous body for a mobile. Crafting is suitable for all ages, but artists under school age need to be accompanied by an adult.</p><p>Design and implementation of the workshop by Runoropinoita/Ulla-Maija<br>Malmitalo lobby, free of charge!</p>"
            },
            "name": {
                "fi": "Ihme planeetta -työpaja",
                "sv": "Workshop – en förunderlig planet",
                "en": "Planet of Wonders workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64288/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64286",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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/search/?affiliate=ADV&searchterm=mama+events+dhorpatan",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151870,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:07.465509Z",
                    "last_modified_time": "2024-07-25T14:14:07.465525Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751039.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151870/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T14:14:07.437605Z",
            "last_modified_time": "2024-08-29T05:13:33.679632Z",
            "date_published": null,
            "start_time": "2024-10-15T08:00:00Z",
            "end_time": "2024-10-15T10: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,
            "short_description": {
                "fi": "Nyt on vauhti päällä ja hommat hoituvat! Tepsuttele askartelemaan syysloman hupsuin ja haukuttavin pääkoriste.",
                "sv": "Nu är det fart och fläkt och vi får saker gjorda! Kom och pyssla höstlovets skojigaste och gläfsigaste huvudbonad.",
                "en": "The pace is high and things are getting done! Craft the funniest and most borky headpiece of the fall holiday."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/99FD239CE75E0092FF8C5FE9A93A13A9/Koirankorvilla-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/99FD239CE75E0092FF8C5FE9A93A13A9/Hundoron-workshop_",
                "en": "http://www.malmitalo.fi/en/events/event/99FD239CE75E0092FF8C5FE9A93A13A9/Dog_Ear_Workshop_"
            },
            "description": {
                "fi": "<p>Nyt on vauhti päällä ja hommat hoituvat! Tepsuttele askartelemaan syysloman hupsuin ja haukuttavin pääkoriste.</p><p>Luppakorva, pystykorva, jättikorva! Minkälaisilla korvilla kutsuhuudot kuuluvat parhaiten? Koirankorva-askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.</p><p>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>Nu är det fart och fläkt och vi får saker gjorda! Kom och pyssla höstlovets skojigaste och gläfsigaste huvudbonad.</p><p>Hängöron, upprättstående öron, jätteöron! Vilken typ av öron är bäst för att höra lockrop? Hundöronpysslet passar för alla åldrar, men konstnärer under skolåldern ska ha sällskap av en vuxen.</p><p>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala</p><p>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>The pace is high and things are getting done! Craft the funniest and most borky headpiece of the fall holiday.</p><p>Droopy ears, upright ears, giant ears! With which kind of ears hear the call best? The Dog Ear Workshop is suitable for all ages, but artists under school age need to be accompanied by an adult.</p><p>Design and implementation of the workshop by Runoropinoita/Ulla-Maija</p><p>Malmitalo lobby, free of charge!</p>"
            },
            "name": {
                "fi": "Koirankorvilla-työpaja – Nonstop",
                "sv": "Hundöron-workshop – Nonstop",
                "en": "Dog Ear Workshop – Nonstop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63770",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/malmijazz-ida-alanen-trio-malmitalo-18646610/#tab=",
                        "sv": "https://www.lippu.fi/event/malmijazz-ida-alanen-trio-malmitalo-18646610/#tab=",
                        "en": "https://www.lippu.fi/event/malmijazz-ida-alanen-trio-malmitalo-18646610/#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 10 €",
                        "sv": "20 € / 10 €",
                        "en": "20 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151869,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:06.899385Z",
                    "last_modified_time": "2024-07-25T14:14:06.899401Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752508.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151869/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T14:14:06.870113Z",
            "last_modified_time": "2024-08-29T05:13:32.295998Z",
            "date_published": null,
            "start_time": "2024-10-10T16: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,
            "short_description": {
                "fi": "Ida Alanen Trion musiikki ammentaa inspiraationsa visuaalisista muodoista, orgaanisista tekstuureista sekä unikuvastosta.",
                "sv": "Ida Alanen Trios musik hämtar inspiration från visuella former, organiska texturer och drömbilder.",
                "en": "Ida Alanen Trio's music draws its inspiration from visual forms, organic textures and sleepy imagery"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/50195EB7A901667833ABD8DE0CDAA846/Ida_Alanen_Trio",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/50195EB7A901667833ABD8DE0CDAA846/Ida_Alanen_Trio",
                "en": "http://www.malmitalo.fi/en/events/event/50195EB7A901667833ABD8DE0CDAA846/Ida_Alanen_Trio"
            },
            "description": {
                "fi": "<p>Ida Alanen Trion musiikki ammentaa inspiraationsa visuaalisista muodoista, orgaanisista tekstuureista sekä unikuvastosta.</p><p>Trio tulkitsee Alasen sävellyksiä suvereenisti, leikitellen vaivattomasti huolellisesti orkestroitujen sävellysten ja vapaan improvisaation välillä.</p><p>Trion syksyllä 2023 ilmestynyt esikoisalbumi Awake Asleep tutkii maisemia unen ja valveillaolon rajamailta ja tuo alitajunnan kuvia päivänvaloon. Tämä vahva debyytti nosti yhtyeen valokeilaan niin suomalaisella kuin eurooppalaisellakin jazzkentällä. Malmitalon konsertissa kuullaan tuoreita versioita levyn kappaleista sekä trion uutta, ennen julkaisematonta ohjelmistoa.</p><p>”Awake Asleep is a wonderful debut from the Ida Alanen Trio. Highly engaging, quietly intoxicating, and sumptuously imagined. Highly recommended listening.” – Mike Gates, UK Vibe, 9.12.2023</p><p>Pianisti-säveltäjä Ida Alanen viimeistelee parhaillaan maisteriopintojaan Amsterdamin Konservatoriolla Harmen Fraanjen johdolla. Kontrabasisti Jonathan Bäckström ja rumpali Benjamin Nylund tunnetaan komppiparina myös muun muassa Jonathan Bäckström Quartetista. Kaikki kolme ovat kovassa nosteessa olevia tekijöitä ja vahvasti omaäänisiä muusikoita.</p><p>”On ilmeistä, että nämä soittajat ovat tulevaisuudessa jazzkenttämme eturivissä. Alanen luo musiikkiaan modernein ottein jazzpianismin perinteet tiedostaen. Hän kunnioittaa melodista ilmaisua ja on hyvin runollinen.” – Marita Nyrhinen, Kulttuuritoimituksen levykatsaus, 18.12.2023</p><p>”Awake Asleep kartoittaa kuvitteellisia lakeuksia, etsien inspiraatiota Alasen värikkäistä unista. Teokset tuntuvat impressionistisilta, joskin meditatiivinen ote tiivistää tunnelman liitelemisen olotiloihin.” – Juha Seitz, Ilkka-Pohjalainen 11.12.2023</p><p>”Käytän joskus tarpeettomankin kevyesti sanaa kaunis, mutta Awake Asleep jos mikä on kaunis levy. Useammalla eri tasolla ja tavalla.” – Mika Roth, Desibeli.net, 26.11.2023</p><p>MalmiJazz tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p>",
                "sv": "<p>Ida Alanen Trios musik hämtar inspiration från visuella former, organiska texturer och drömbilder.</p><p>Trion tolkar Alanens kompositioner suveränt, lekfullt och ledigt mellan de omsorgsfullt orkestrerade kompositionerna och fri improvisation.</p><p>Trions debutalbum Awake Asleep som släpptes hösten 2023 utforskar landskap i gränslandet mellan sömn och vakenhet, och lyfter bilder från undermedvetandet fram i dagsljuset. Den starka debuten lyfte bandet i rampljuset både på den finländska och europeiska jazzscenen. Konserten på Malms kulturhus kommer att innehålla nya versioner av låtar från albumet samt nytt, tidigare outgivet material av trion.</p><p>”Awake Asleep is a wonderful debut from the Ida Alanen Trio. Highly engaging, quietly intoxicating, and sumptuously imagined. Highly recommended listening.” – Mike Gates, UK Vibe, 9.12.2023</p><p>Pianisten och kompositören Ida Alanen fullbordar för närvarande sina magisterstudier vid Amsterdams konservatorium under ledning av Harmen Fraanje. Kontrabasisten Jonathan Bäckström och trummisen Benjamin Nylund är också kända bland annat under namnet Jonathan Bäckström Quartet. Alla tre är artister i starkt uppsving och musiker med en alldeles egen röst.</p><p>“Det är uppenbart att de här musikerna i framtiden kommer finnas bland de främsta på vår jazzscen. Alanen skapar sin musik med ett modernt grepp och medvetande om jazzpianismens traditioner. Han respekterar det melodiska uttrycket och är mycket poetisk.” – Marita Nyrhinen, Kulttuuritoimitus skivöversikt, 18.12.2023</p><p>“Awake Asleep kartlägger fiktiva vidder och hämtar inspiration från Alanens färgstarka drömmar. Verken känns impressionistiska, men den meditativa känslan förtätar stämningen till ett svävande tillstånd.” – Juha Seitz, Ilkka-Pohjalainen 11.12.2023</p><p>“Jag använder ibland ordet vackert för lättvindigt, men Awake Asleep om något är ett vackert album. På olika nivåer och på olika sätt.” – Mika Roth, Desibeli.net, 26.11.2023</p><p>MalmiJazz bjuder på ett brett utbud av jazzmusikens stilarter i en förstklassig konserthusmiljö. Den upphöjningsbara, numrerade läktaren erbjuder varje konsertbesökare en bekväm sittplats och en bra utsikt över scenen. De utmärkta akustik-, ljudåtergivnings- och ljusförhållandena i Malmsalen garanterar en konsertupplevelse av hög kvalitet.</p>",
                "en": "<p>Ida Alanen Trio's music draws its inspiration from visual forms, organic textures and sleepy imagery</p><p>The trio interprets Alanen's compositions with confidence, playing effortlessly between carefully orchestrated compositions and free improvisation.</p><p>The Trio's debut album, Awake Asleep, was released in the autumn of 2023 and explores the borderline between sleep and wakefulness, exposing images from the subconscious. This strong debut put the band in the spotlight in both the Finnish and European jazz scenes. The Malmitalo concert will feature fresh versions of the album's songs as well as the Trio's new, previously unreleased material.</p><p>”Awake Asleep is a wonderful debut from the Ida Alanen Trio. Highly engaging, quietly intoxicating, and sumptuously imagined. Highly recommended listening.” – Mike Gates, UK Vibe, 9.12.2023</p><p>Pianist-composer Ida Alanen is currently finishing her Master's studies at the Amsterdam Conservatory with Harmen Fraanje. Double bassist Jonathan Bäckström and drummer Benjamin Nylund are also well known as partners in the Jonathan Bäckström Quartet, among others. All three are up-and-coming creators and significantly unique musicians.</p><p>“It is clear that these players will stand at the forefront of our jazz scene in the future. Alanen creates her music in a modern way while remaining aware of the traditions of jazz piano. She respects melodic expression and is very poetic.\" – Marita Nyrhinen, Kulttuuritoimitus review, 18.12.2023</p><p>“Awake Asleep charts the expanse of imagination, seeking inspiration from Alanen's colourful dreams. The pieces seem impressionistic, although the meditative approach firmly places the atmosphere in a floaty state of being.\" – Juha Seitz, Ilkka-Pohjalainen 11.12.2023</p><p>“I sometimes use the word beautiful too easily, but Awake Asleep, if anything, is a beautiful record. In more ways and levels than one.\" – Mika Roth, Desibeli.net, 26.11.2023</p><p>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p>"
            },
            "name": {
                "fi": "Ida Alanen Trio – MalmiJazz",
                "sv": "Ida Alanen Trio – MalmiJazz",
                "en": "Ida Alanen Trio – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63770/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63769",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/roots-musiikin-evoluutio-sarja-malmitalo-18621891/#tab=",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18621891/#tab=",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18621891/#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 17,50 €",
                        "sv": "24,50 € / 17,50 €",
                        "en": "24,50 € / 17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151868,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:06.610998Z",
                    "last_modified_time": "2024-07-25T14:14:06.611013Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752507.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151868/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T14:14:06.583294Z",
            "last_modified_time": "2024-08-29T05:13:31.964099Z",
            "date_published": null,
            "start_time": "2024-10-09T16: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,
            "short_description": {
                "fi": "Tinos on vuonna 1965 perustettu Sixties- ja Beatles-musiikkia esittävä yhtye, jonka ohjelmistoon kuuluu 60-luvulle uskollista melodista, tanssittavaa ja moniäänisesti laulettua pop rokkia, rock ´n´ rollia ja rautalankaa.",
                "sv": "Bandet Tinos grundades 1965 och spelar sextiotals- och Beatlesmusik. Bandets repertoar omfattar melodisk, dansant och flerstämmig poprock, rock 'n' roll och ståltrådsmusik som är trogen 60-talet.",
                "en": "Tinos is a band that performs Sixties music and Beatles songs that was formed in 1965, with a repertoire of melodic, danceable and polyphonic pop rock, rock 'n' roll and rautalanka of the 60s."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/058C25CB557CB12C603F382542214ADC/Tinos",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/058C25CB557CB12C603F382542214ADC/Tinos",
                "en": "http://www.malmitalo.fi/en/events/event/058C25CB557CB12C603F382542214ADC/Tinos"
            },
            "description": {
                "fi": "<p>Tinos on vuonna 1965 perustettu Sixties- ja Beatles-musiikkia esittävä yhtye, jonka ohjelmistoon kuuluu 60-luvulle uskollista melodista, tanssittavaa ja moniäänisesti laulettua pop rokkia, rock ´n´ rollia ja rautalankaa.</p><p>Tinos on viime vuosina keikkaillut aktiivisesti Suomessa ja ulkomailla. Erityisesti ulkomaan keikoilla on ollut teemana The Beatles ja esiintymiset erilaisilla Beatles-festareilla.  Tinos onkin nähty useamman kerran maineikkaan Cavern Clubin Beatles-viikoilla Liverpoolissa. Tinos on myös Back To The Sixties -yhdistyksen tapahtumien vakioesiintyjä.</p><p>Tinos-kokoonpanossa esiintyvät pitkän linjan muusikot Kari Aulo (soolokitara), Hate Sjöblom (rummut, laulu), Jussi Koskinen (kitara ja laulu) sekä Janne Viitanen (basso ja laulu).</p><p>Malmitalon Roots-musiikin evoluutio -sarja jatkuu syksyllä 2024! Kerran kuukaudessa lavalla nähdään ja kuullaan alansa terävin kärki Suomessa. Jokaisessa konsertissa käsitellään kyseisen aikakauden tyylilajia roots-musiikin kehityksessä. Keväällä esitettiin 1920–1950-lukujen rootsia ja syksyllä edetään 1960-luvulla syntyneeseen rautalankamusiikkiin, rock’n’rolliin ja beatmusiikkiin.</p>",
                "sv": "<p>Bandet Tinos grundades 1965 och spelar sextiotals- och Beatlesmusik. Bandets repertoar omfattar melodisk, dansant och flerstämmig poprock, rock 'n' roll och ståltrådsmusik som är trogen 60-talet.</p><p>Under de senaste åren har Tinos turnerat aktivt i Finland och utomlands. Särskilt på spelningarna utomlands har The Beatles varit temat, och bandet har framträtt på olika Beatlesfestivaler.  Tinos har framträtt flera gånger på Cavern Clubs berömda Beatles-vecka i Liverpool. Tinos är också en ständig gäst på föreningen Back To The Sixties evenemang.</p><p>Tinos består av de erfarna musikerna Kari Aulo (sologitarr), Hate Sjöblom (trummor, sång), Jussi Koskinen (gitarr och sång) och Janne Viitanen (bas och sång).</p><p>Serien Rootsmusikens evolution på Malms kulturhus fortsätter hösten 2024! En gång i månaden får vi på scenen se och höra de bästa inom sitt område i Finland. Varje konsert fokuserar på stilriktningen för en viss period i rootsmusikens evolution. Under våren framfördes rootsmusik från 1920–1950-talen och under hösten går vi vidare till 1960-talets ståltrådsmusik, rock'n'roll och beatmusik.</p>",
                "en": "<p>Tinos is a band that performs Sixties music and Beatles songs that was formed in 1965, with a repertoire of melodic, danceable and polyphonic pop rock, rock 'n' roll and rautalanka of the 60s.</p><p>In recent years, Tinos has been actively touring in Finland and abroad. In particular, foreign concerts have been themed around The Beatles, with performances at various Beatles festivals.  Tinos has shown up several times during the famous Cavern Club’s Beatles week in Liverpool. Tinos is also a regular performer at Back To The Sixties association’s events.</p><p>The Tinos line-up features longtime musicians Kari Aulo (lead guitar), Hate Sjöblom (drums, vocals), Jussi Koskinen (guitar and vocals) and Janne Viitanen (bass and vocals).</p><p>Malmitalo's Evolution of Roots Music series will continue in the autumn of 2024! Once a month, we get to see the best and brightest of the Finnish scene. Each concert deals with the genre of that era in the development of roots music. In the spring, the series tackled the roots music of the 1920s and 1950s, and in the autumn, we will proceed to the rautalanka, rock n' roll and beat music that emerged in the 1960s.</p>"
            },
            "name": {
                "fi": "Tinos – Roots-musiikin evoluutio vol. 6",
                "sv": "Tinos – Rootsmusikens evolution vol. 6",
                "en": "Tinos – Evolution of Roots Music, Vol. 6"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63769/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63767",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/pentti-hietanen-tessa-virta-duo-pentti-hietanen-ja-tessa-virta-duo-minulta-sinulle-malmitalo-18649859/",
                        "sv": "https://www.lippu.fi/event/pentti-hietanen-tessa-virta-duo-pentti-hietanen-ja-tessa-virta-duo-minulta-sinulle-malmitalo-18649859/",
                        "en": "https://www.lippu.fi/event/pentti-hietanen-tessa-virta-duo-pentti-hietanen-ja-tessa-virta-duo-minulta-sinulle-malmitalo-18649859/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,50 € / 24,50 €",
                        "sv": "28,50 € / 24,50 €",
                        "en": "28,50 € / 24,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151867,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:06.310431Z",
                    "last_modified_time": "2024-07-25T14:14:06.310447Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752505.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151867/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T14:14:06.279821Z",
            "last_modified_time": "2024-08-29T05:13:31.612730Z",
            "date_published": null,
            "start_time": "2024-10-08T16: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,
            "short_description": {
                "fi": "Intiimissä illassa kuullaan tarinoita ja musiikkia, jotka ovat koskettaneet ja värittäneet Pentti Hietasen elämän polkua.",
                "sv": "På den intima kvällen får vi höra berättelser och musik som har berört och färgat Pentti Hietanens livsväg.",
                "en": "During this intimate evening session, you get to hear stories and music that have touched and coloured the life of Pentti Hietanen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/661252769664B5B302E6BF957C4FEB1A/Pentti_Hietanen_Tessa_Virta_Duo_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/661252769664B5B302E6BF957C4FEB1A/Pentti_Hietanen_Tessa_Virta_Duo_",
                "en": "http://www.malmitalo.fi/en/events/event/661252769664B5B302E6BF957C4FEB1A/Pentti_Hietanen_Tessa_Virta_Duo_"
            },
            "description": {
                "fi": "<p>Intiimissä illassa kuullaan tarinoita ja musiikkia, jotka ovat koskettaneet ja värittäneet Pentti Hietasen elämän polkua.</p><p>Luvassa on viihdyttävä ja koskettava musiikillinen matka tarinoiden lomassa Pentin nuoruusvuosista tähän päivään. Suurten klassikkoviihdesävelmien lisäksi kuullaan helmiä ooppera-, pop- ja rocksaralta. Ohjelmistossa on mm. kappaleet, Granada, Kun aika on, Oli kuu oli ilta ja Olet kaikki. Pentin kanssa esiintyvät pianisti-laulaja Tessa Virta sekä kontrabasisti Olli Peuhu.</p><p>Pentti Hietanen on kuulunut jo pitkään rakastettujen suomalaisartistien joukkoon, mistä kertoo valtava suosio konsertti- ja keikkarintamalla sekä menestyksekkäät kymmenen albumia, joista kaksi on tavoittanut kultalevyrajan ja yksi yltänyt platinalevyn velvoittamaan myyntimäärään.</p><p>Pianisti- laulaja- sovittaja- säveltäjä Tessa Virta on johtanut omaa orkesteriaan vuodesta 1990 ja tullut tunnetuksi lukuisten maamme eturivin artistien kanssa omien esiintymisien ja julkaisujen lisäksi.</p><p>Pentti Hietanen – laulu ja kitara<br>Tessa Virta – piano ja laulu<br>Olli Peuhu – kontrabasso ja juonto</p>",
                "sv": "<p>På den intima kvällen får vi höra berättelser och musik som har berört och färgat Pentti Hietanens livsväg.</p><p>Vi utlovas en underhållande och gripande musikalisk resa med berättelser från Penttis ungdomsår fram till nutiden. Förutom de stora klassiska poplåtarna får vi höra pärlor från opera, pop och rock. I repertoaren ingår låtar såsom Granada, Kun aika on, Oli kuu oli ilta och Olet kaikki. Tillsammans med Pentti framträder pianisten och sångerskan Tessa Virta och kontrabasisten Olli Peuhu.</p><p>Pentti Hietanen har länge tillhört de mest älskade finska artisterna, vilket framgår av hans enorma popularitet på konsert- och spelningsbanan och hans tio framgångsrika album, varav två har nått den försäljningsmängd som berättigar till guldskiva och ett till platinaskiva.</p><p>Pianisten, sångerskan, arrangören och kompositören Tessa Virta har lett sin egen orkester sedan 1990, och blivit känd för sina framträdanden och utgivningar med många av landets ledande artister.</p><p>Pentti Hietanen – sång och gitarr<br>Tessa Virta – piano och sång<br>Olli Peuhu – kontrabas och mellanprat</p>",
                "en": "<p>During this intimate evening session, you get to hear stories and music that have touched and coloured the life of Pentti Hietanen.</p><p>Take an entertaining and touching musical journey through stories from Pentti's youth to the present day. In addition to the great classical entertainment tunes, the set features gems from opera, pop and rock. The programme includes songs like Granada, Kun aika on, Oli kuu oli ilta, and Olet kaikki. Pianist-singer Tessa Virta and double bassist Olli Peuhu perform with Pentti.</p><p>Pentti Hietanen has been one of Finland’s most popular artists for a long time, as evidenced by his huge popularity on the concert and gig front, the success of his ten albums, two of which have reached the gold record and one of which reached the sales volume required for a platinum record.</p><p>Pianist-singer-arranger-composer Tessa Virta has conducted her own orchestra since 1990 and has become known to work with numerous leading artists in Finland in addition to her own performances and releases.</p><p>Pentti Hietanen – vocals and guitar<br>Tessa Virta – piano and vocals<br>Olli Peuhu – double bass and speeches</p>"
            },
            "name": {
                "fi": "Pentti Hietanen & Tessa Virta Duo – ”Minulta sinulle” – tarinoita ja musiikkia",
                "sv": "Pentti Hietanen & Tessa Virta Duo – Från mig till dig – berättelser och musik",
                "en": "Pentti Hietanen & Tessa Virta Duo – \"From Me to You\" stories and music"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63767/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63768",
            "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:31/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:04.191875Z",
                    "last_modified_time": "2024-06-13T10:13:04.191896Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752506.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:04.175245Z",
            "last_modified_time": "2024-08-29T05:13:31.504146Z",
            "date_published": null,
            "start_time": "2024-10-08T14: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,
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!",
                "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!",
                "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/50C2D1D6EE7B58E1FA27513D53BAAA92/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/50C2D1D6EE7B58E1FA27513D53BAAA92/Yhteislaulut",
                "en": "http://www.malmitalo.fi/en/events/event/50C2D1D6EE7B58E1FA27513D53BAAA92/Yhteislaulut"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>",
                "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>",
                "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Yhteislaulut",
                "en": "Yhteislaulut"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}