Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27579,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=321",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=319"
    },
    "data": [
        {
            "id": "kulke:64349",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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/kinetic-orchestra/",
                        "sv": "https://www.lippu.fi/artist/kinetic-orchestra/",
                        "en": "https://www.lippu.fi/artist/kinetic-orchestra/"
                    },
                    "price": {
                        "fi": "24,80 € / 15 €",
                        "sv": "24,80 € / 15 €",
                        "en": "24,80 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152726,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-03T13:14:15.766706Z",
                    "last_modified_time": "2024-10-03T13:14:15.766719Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756022.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152726/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-03T13:14:15.754454Z",
            "last_modified_time": "2024-12-20T01:14:22.875609Z",
            "date_published": null,
            "start_time": "2024-12-13T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Gravity on nopeatempoinen ja liikkeellisesti sykähdyttävä esitys kahdeksalle virtuoottiselle tanssijalle.",
                "sv": "Gravity är en föreställning med snabbt tempo och hänförande rörelser för åtta virtuosa dansare.",
                "en": "Gravity is a 50-minute long, high-paced, physically stunning performance danced by eight highly skilled dancers."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/379D46C977B240D6ED19F51DCA6AF925/Kinetic_Orchestra_Gravity",
                "sv": "http://www.stoa.fi/sv/evenemang/event/379D46C977B240D6ED19F51DCA6AF925/Kinetic_Orchestra_Gravity",
                "en": "http://www.stoa.fi/en/events/event/379D46C977B240D6ED19F51DCA6AF925/Kinetic_Orchestra_Gravity"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kinetic Orchestra: Gravity",
                "sv": "Kinetic Orchestra: Gravity",
                "en": "Kinetic Orchestra: Gravity"
            },
            "description": {
                "fi": "<p>Gravity on nopeatempoinen ja liikkeellisesti sykähdyttävä esitys kahdeksalle virtuoottiselle tanssijalle.</p><p>Teos on jatkumoa koreografi <b>Jarkko Mandelinin</b> työlle äärimmäisen fyysisten ja liikelähtöisten tanssiteosten parissa.</p><p><i>”Gravity on kuin aikansa kuva. Monikerroksinen, nopeatempoinen ja monista eri liiketekniikoista ja liikekulttuureista koostuva verkko. Sen vauhti ja liikekeskeisyys eivät ainoastaan tutki ja tee näkyväksi painovoimaa, mutta myös aikaa niin kirjaimellisesti kuin yleisemminkin sitä omalla olemassaolollaan kommentoiden.”</i><br>Koreografi Jarkko Mandelin</p><p>Gravity tuntuu samanaikaisesti vetävän meitä puoleensa ja riippuvan uhkaavana päällämme. Tämä heijastuu myös William Ilesin yksinkertaisessa mutta tehokkaassa skenografiassa sekä Janne Hastin periksiantamattomassa äänisuunnittelussa.</p><p>Vauhdin ja rytmin voimakas manipulointi, nykivät liikkeet sekä pysähdykset ja romahdukset, jotka nopeasti katkovat yhä kiihtyviä liikejaksoja, tuovat Gravityyn todellisen tuntuman painovoimasta ja sen rajoitteista. Teoksen dramaturginen rakenne seuraa toisiinsa limittyvien lyhyiden kohtausten kiihkeää kehää ja tuntuu näin saavuttavan jotain olennaista tästä ajasta ja sen hektisestä tahdista.</p><p>Teos on toteutettu Helsinki Dance Companyn ja Kinetic Orchestran yhteistyönä.</p><p>Kesto: 50 minuuttia<br>Kieli: sanaton<br> <br><b>Työryhmä:</b><br>Koreografia: Jarkko Mandelin ja työryhmä<br>Tanssijat: Sanni Giordani, Jyrki Kasper, Anni Koskinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne, ja Oskari Turpeinen<br>Tanssijat kiertueella: Sanni Giordani, Anni Koskinen, Kalle Lähde, Oskari Turpeinen, Minna Karttunen, Suvi Nieminen, Manuela Hierl, Hugo Sellam</p><p>Kiertueteknikko: Niila Rantala<br>Skenografia: William Iles<br>Äänisuunnittelu: Janne Hast<br>Puvustus: Elina Kolehmainen<br>Koreografin assistentti: Suvi Nieminen<br>Tuotanto: Helsinki Dance Company / Helsingin kaupunginteatteri<br>Kiertuetuotanto: Kinetic Orchestra</p><p><i>”GRAVITY on kuin tuuli ja aurinko ja raikas sade tanssin puutteesta nääntyneelle sielulle.”</i><br>Merja Koskiniemi, HS 14.11.2021<br> <br><i>”Tekee melkein mieli sanoa, että jos aikoo tänä syksynä katsoa vain yhden tanssiesityksen, tämä 45-minuuttinen on must.”</i><br>Annikki Alku, Demokraatti 12.11.2021</p>",
                "sv": "<p>Gravity är en föreställning med snabbt tempo och hänförande rörelser för åtta virtuosa dansare.</p><p>Verket fortsätter koreografen <b>Jarkko Mandelins</b> arbete med extremt fysiska och rörelsebaserade dansverk.</p><p><i>\"Gravity är som en bild av sin tid. Ett nätverk med flera skikt och snabbt tempo som består av många olika rörelsetekniker och rörelsekulturer. Tempot och fokusen på rörelse studerar och synliggör inte bara tyngdkraften, utan också tiden, både bokstavligen och mer allmänt, genom att kommentera den med sin egen existens.\"</i><br>Koreografen Jarkko Mandelin</p><p>Gravity verkar samtidigt dra oss till sig och hotfullt hänga över oss. Detta återspeglas också i den enkla men effektiva scenografin av William Iles och den orubbliga ljuddesignen av Janne Hast.</p><p>Den kraftiga manipulationen av tempot och rytmen, de ryckiga rörelserna samt pauserna och kollapserna som snabbt avbryter de ständigt accelererande rörelseserierna ger Gravity en verklig känsla av tyngdkraft och dess begränsningar. Verkets dramaturgiska struktur följer en intensiv cirkel av överlappande korta scener och tycks därmed uppnå något väsentligt med denna tid och dess hektiska tempo.</p><p>Verket har genomförts i samarbete mellan Helsinki Dance Company och Kinetic Orchestra.</p><p>Längd: 50 minuter<br>Inget språk</p><p><b>Arbetsgrupp</b><br>Koreografi: Jarkko Mandelin och arbetsgruppen<br>Dansare: Sanni Giordani, Jyrki Kasper, Anni Koskinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne och Oskari Turpeinen<br>Dansare på turnén: Sanni Giordani, Anni Koskinen, Kalle Lähde, Oskari Turpeinen, Minna Karttunen, Suvi Nieminen, Manuela Hierl, Hugo Sellam<br>Turnétekniker: Niila Rantala<br>Scenografi: William Iles<br>Ljuddesign: Janne Hast<br>Kostymdesign: Elina Kolehmainen<br>Koreografassistent: Suvi Nieminen<br>Produktion: Helsinki Dance Company/Helsingfors stadsteater<br>Turnéproduktion: Kinetic Orchestra:</p><p><i>\"GRAVITY är som vind och sol och ett friskt regn för en själ som svälter av brist på dans.\"</i><br>Merja Koskiniemi, HS 14.11.2021</p><p><i>\"Jag får nästan lust att säga att om du bara ska se en dansföreställning i höst, så är de här 45 minuterna ett måste.”</i> Annikki Alku, Demokraatti 12.11.2021</p>",
                "en": "<p>Gravity is a 50-minute long, high-paced, physically stunning performance danced by eight highly skilled dancers.</p><p>The piece follows the continuum of choreographer <b>Jarkko Mandelin's</b> extremely physical and movement-focused dance works.</p><p><i>“Gravity functions as a sign of the times. Multi-layered and fast-paced, a web weaved from many different movement techniques and cultures of physicality. The speed and emphasis on movement not only research and visualise gravity but also time, both literally and more generally by commenting on it through its mere existence.”</i><br>Choreographer Jarkko Mandelin</p><p>The dancers fly in the air, catch, lift and carry each other, seamlessly blending acrobatic partnering into the fabric of the piece in Kinetic Orchestra’s distinctive style. Forceful manipulation of pace and rhythm, twitching movement and stills and crashes that quickly bring accelerated movement sequences to a halt further create the sense and feeling of Gravity. This is echoed in the simple yet effective scenography by William Iles and Janne Hast’s relentless sound design.</p><p>Gravity creates an immersive atmosphere of something pulling us in and simultaneously looming over us. The dramaturgical structure follows an urgent loop of overlapping scenes, each less than two minutes long. While doing so, the work grasps something fundamental about the time we live in and its unrelenting pace.</p><p>The piece was produced in collaboration with Helsinki City Theatre's Dance Company HDC.</p><p>Duration: 50 minutes</p><p><b>Working group:</b><br>Choreography: Jarkko Mandelin & the working group<br>Dancers: Sanni Giordani, Jyrki Kasper, Anni Koskinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne, ja Oskari Turpeinen<br>Dancers on tour: Sanni Giordani, Anni Koskinen, Kalle Lähde, Suvi Nieminen, Hugo Sellam, Manuela Hierl, Minna Karttunen, Oskari Turpeinen</p><p>Technician on tour: Niila Rantala<br>Scenography: William Iles<br>Sound Design: Janne Hast<br>Costume Design: Elina Kolehmainen<br>Choreographer's assistant: Suvi Nieminen</p><p>Production: Helsinki Dance Company and Helsinki City Theatre<br>Tour production: Kinetic Orchestra <br>Photos: Petra Tiihonen</p><p>Reviews:</p><p>“Gravity is like the wind, and the sun, and fresh rain, for the soul starving for dance.” – Merja Koskiniemi, HS 14.11.2021</p><p>“I feel an urge to say that if one is going to see only one dance performance this fall, then this 50-min is a must.” – Annikki Alku, Demokraatti 12.11.2021</p><p>“Jarkko Mandelin’s choreography is a combination of bubbling energy and skin-piercing sensitivity.” – Matti Saarela, blog: Kielipuolen päiväkirja, 12.11.2021</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64349/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65102",
            "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: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:755/?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/kino-helios-crossing-3780609/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153093,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:30.095397Z",
                    "last_modified_time": "2024-11-27T11:14:30.095416Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745818.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153093/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:30.065673Z",
            "last_modified_time": "2024-12-20T01:14:22.783978Z",
            "date_published": null,
            "start_time": "2024-12-13T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44001AF1280E8A7CAE43347C68FF4D83/Crossing_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/44001AF1280E8A7CAE43347C68FF4D83/Crossing_7_",
                "en": "http://www.malmitalo.fi/en/events/event/44001AF1280E8A7CAE43347C68FF4D83/Crossing_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Crossing (7) – Kino Helios",
                "sv": "Crossing (7) – Kino Helios",
                "en": "Crossing (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.</p><p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan. Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa.</p><p>Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.</p><p>Ruotsin ehdokas Pohjoismaiden neuvoston vuoden 2024 elokuvapalkinnon saajaksi.</p><p>Ikäraja: 7<br>Kesto: 106 min.<br>Ensi-ilta: 08.11.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61386",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/jarkko-tamminen/"
                    },
                    "price": {
                        "fi": "42,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T16:13:48.062747Z",
                    "last_modified_time": "2024-02-06T13:23:45.145382Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740125.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T16:13:48.041511Z",
            "last_modified_time": "2024-12-20T01:14:22.696093Z",
            "date_published": null,
            "start_time": "2024-12-13T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Imitaattori Jarkko Tamminen lähtee syksyllä 2024 soolokiertueelle ympäri Suomea."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3C383C6E72611796B563EB6651FCF469/Jarkko_Tamminen_Kuuleeko_Helsinki_-imitaatioshow"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jarkko Tamminen \"Kuuleeko Helsinki?\" -imitaatioshow"
            },
            "description": {
                "fi": "<p>Imitaattori Jarkko Tamminen lähtee syksyllä 2024 soolokiertueelle ympäri Suomea.</p><p>Jarkko lähtee kiertämään Suomenmaata jo suosituksi tulleella konseptilla: päivitetyllä \"Kuuleeko..\"-esityksellään.</p><p>Show koostuu sekä puhe- että lauluimitaatioista. Esityksessä Jarkko esittää yli 40 hahmoa. Lavalla nähdään ja kuullaan imitaatioita Kape Aihisesta Kaija Koohon, Pasi Rautiaisesta Stigiin ja Olli Jokisesta Käärijään. Myös yleisöllä on mahdollisuus vaikuttaa esityksessä nähtäviin hahmoihin toiveiden kautta. Illan aikana käydään läpi ajankohtaisia aiheita ja lisäksi kunkin kiertuepaikkakunnan paikallisuutiset saavat osansa, kun hahmot ottavat esille aina kullakin paikkakunnalla puhuttavia aiheita.</p><p>Esityksessä Jarkko on lavalla yksin ja esityksessä käytetään vain pientä rekvisiittaa: lakkeja, peruukkeja ja takkeja. Lauluosuudet esitetään taustanauhojen kera. Esityksen sisältö on pääosin parhaita paloja Jarkon edelliskiertueiden jutuista, mutta mukaan mahtuu myös runsaasti uutta materiaalia.</p><p>Ilta koostuu kahdesta noin 45min setistä, joiden välissä on väliaika.<br>Esityksen kesto on siis 2 h, sisältäen puolen tunnin mittaisen väliajan.</p><p>Katso kiertuepaikkakunnat, liput ja lisätiedot osoitteesta: www.jarkkotamminen.com</p><p>Ikäsuositus: +12</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Comedy Corner Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64334",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152000,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T17:14:08.016304Z",
                    "last_modified_time": "2024-07-30T17:14:08.016319Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751347.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152000/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-30T17:14:07.981497Z",
            "last_modified_time": "2024-12-20T01:14:22.605023Z",
            "date_published": null,
            "start_time": "2024-12-13T14:30:00Z",
            "end_time": "2024-12-13T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut AnnanHouse-diskotapahtuma valtaa jälleen Annantalon ja kutsuu tanssilattialle koko perheen!",
                "sv": "Det omåttligt populära discoevenemanget AnnanHouse tar återigen över Annegården och bjuder in hela familjen på dansgolvet!",
                "en": "Hugely popular AnnanHouse Disco returns to Annantalo and invites the whole family to the dance floor!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9BE3FB362FCB0FE3A70E7ACC0086DB96/AnnanHouse_Tanssivat_tontut",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9BE3FB362FCB0FE3A70E7ACC0086DB96/AnnanHouse_Dansande_tomtar",
                "en": "http://www.annantalo.fi/en/events/event/9BE3FB362FCB0FE3A70E7ACC0086DB96/AnnanHouse_Dancing_Elves"
            },
            "location_extra_info": null,
            "name": {
                "fi": "AnnanHouse: Tanssivat tontut – Koko perheen yhteinen disko",
                "sv": "AnnanHouse: Dansande tomtar – Ett disco för hela familjen",
                "en": "AnnanHouse: Dancing Elves – Family Disco"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut AnnanHouse-diskotapahtuma valtaa jälleen Annantalon ja kutsuu tanssilattialle koko perheen!</p><p>Tervetuloa koko perheen elektronisen tanssimusiikin ja diskokulttuurin erikoistapahtumaan. Tämänkertaisen diskon teemana on tanssivat tontut! Haluaisitko olla kotitonttu, myllytonttu, riihitonttu tai joulutonttu? Pukeudu valitsemallasi tonttutyylillä tai piipahda Annantalon pukulainaamoon, josta löydät sopivan asun diskoiltaan. Tonttumaisuutta voit lisätä valmistamalla työpajassa tonttulakin tai hakemalla punaposket kasvomaalauspisteeltä.</p><p>Illan musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon.</p><p>Klo 16.30 Pukulainaamo SÄIHKE avautuu. <br>Työpajat käynnistyvät: valmista oma tonttulakkisi, muovaile elämäsi tonttu, loihdi pomppiva pukukoru ja ota teemaan sopiva kasvomaalaus.<br>Klo 17.00 Diskon ovet aukeavat <br>Klo 17.15 Fiona Fiouhn (lausutaan fiuun) tanssituokio<br>Klo 17.30 Koko perheen näyttelyopastus, mukana robotti B-Ö<br>Klo 18.00 Fiona Fiouhn tanssituokio, robotti B-Ö liittyy seuraan tanssilattialle<br>Klo 19 Diskon ovet sulkeutuvat ja työpajat päättyvät. <br>Illan huipentaa Annantalon etupihalla kuultava lähtöserenadi: oopperalaulaja Fezziwick, haitari sylissään ja rumpusetti selässään, on kuin kokonainen orkesteri – mutta paljon hulvattomampi.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Annantalon oma kahvila Puffy Mini Pancakes palvelee koko tapahtuman ajan!</p><p>--</p><p><b>Työpajat klo 16.30–19:</b><br>Viimeiset osallistujat otetaan sisään työpajoihin klo 18.45.</p><p><b>Tanssittavat tonttulakit </b><br>Valmista oma persoonallinen tonttulakkisi – kuvioi, koristele ja lisää tupsuja sekä hupsuja yksityiskohtia makusi mukaan. Kun lakki on valmis, sujauta se päähäsi ja suuntaa muina tonttuina tanssilattialle!</p><p><b>Kasvomaalaamo Tonttula</b><br>Kasvomaalaukset loihtivat tonttutunnelman! Tonttulasta saat punaa poskiin tai talvisen kuvan kasvojen alueelle. Pipari, lumihiutale tai joulupallo, minkä kuvan valitset? Laitetaanko ripaus glitteriä?</p><p><b>Pomppiva tonttukoru</b><br>Valmista kierrätysmateriaaleista jouluinen, pomppiva ja heiluva pukukoru! Voit viedä valmistamasi korun kotiin tai jättää sen meille Annantalolle. Lahjoitetut pukukorut toimitamme Roihuvuoren Seniorikeskuksen asukkaille joulutervehdyksinä.</p><p><b>Oman elämäsi tonttu</b><br>Tiesitkö, että suomalaisessa kansanperinteessä seikkailee monenlaisia tonttuja? Sanataidepajassa pääset valmistamaan oman elämäsi tontun ja kertomaan siitä tonttumaisen esittelyn.</p><p><b>Unelmien Annantalo</b> (huom! kello 16.30-18.45) <br>Työpajassa ajatukset suunnataan tulevaisuuteen. Miltä unelmiesi Annantalo näyttäisi? Mitä kivaa haluaisit tehdä Annantalossa tulevaisuudessa? Tule mukaan luomaan tulevaisuuden Annantaloa utopiatyöpajaan!</p><p><b>Tervetuloa tanssimaan ja tonttuilemaan!</b></p>",
                "sv": "<p>Det omåttligt populära discoevenemanget AnnanHouse tar återigen över Annegården och bjuder in hela familjen på dansgolvet!</p><p>Denna gång är temat för discot dansande tomtar. Vill du vara en hustomte, kvarntomte, ritomte eller jultomte? Klä dig i valfri tomtestil eller besök Annegårdens kostymutlåning för att hitta den perfekta utstyrseln för discokvällen. Du kan bli extra tomteaktig genom att tillverka en tomteluva i workshoppen eller genom att få röda kinder vid ansiktsmålningspunkten.</p><p>För kvällens musik står Annegårdens egen dj Nicolas Sebastien, som bjuder på toppmusik från house till disco.</p><p>Klockan 16.30 öppnar kostymutlåningen SÄIHKE.<br>Workshopparna inleds: gör din egen tomteluva, forma ditt livs tomte, skapa studsande bijouterier och få en ansiktsmålning som matchar temat.<br>Kl. 17.00 Dörrarna till discot öppnar<br>Kl. 17.15 Fiona Fiouhs (uttalas fios) dansstund<br>Kl. 17.30 Guidad tur av utställningen för hela familjen, robot B-Ö deltar<br>Kl. 18.00 Fiona Fiouhs dansstund, robot B-Ö följer med  på dansgolvet<br>Klockan 19 Dörrarna till diskoteket stängs och workshopparna avslutas.<br>Kvällen kulminerar med en serenad på Annegårdens främre gård: operasångaren Fezziwick med dragspel i knät och trumset på ryggen är som en hel orkester – fast mycket skojigare.</p><p>Fritt inträde, ingen förhandsanmälan.</p><p>Annegårdens eget café Puffy Kahvila Puffy Mini Pancakes är öppen under hela evenemanget!</p><p>--</p><p><b>Workshoppar kl. 16.30–19</b></p><p><b>Dansanta tomteluvor</b><br>Laga en egen personliga tomteluva – mönstra, dekorera och lägg till tofsar och skojiga detaljer enligt din smak. När luvan är klar kan du sätta på den och tomta dig ut på dansgolvet!</p><p><b>Ansiktsmålning Tomtebo</b><br>Ansiktsmålningar skapar tomtestämning! I Tomtebo får du röda kinder eller en vintrig bild på ansiktet. Pepparkaka, snöflinga eller julgranskula, vilken bild väljer du? Ska vi lägga till en gnutta glitter?</p><p><b>Studsande tomtesmycke</b><br>Laga studsande och dinglande bijouterier med jultema av återvunnet material! Du kan ta med dig ditt smycke hem eller lämna det hos oss på Annegården. De donerade bijouterierna kommer att delas ut som julhälsningar till de boende på Kasbergets seniorcenter.</p><p><b>Tomten i ditt liv</b><br>Visste du att det finns många olika sorters tomtar i den finska folktraditionen? I ordkonstworkshoppen får du laga tomten i ditt liv och hålla en tomteliknande presentation av den.</p><p>De sista deltagarna i workshopparna tas in kl. 18.45.</p><p><b>Välkommen att dansa och tomta!</b></p>",
                "en": "<p>Hugely popular AnnanHouse Disco returns to Annantalo and invites the whole family to the dance floor!</p><p>Welcome, to this special event for electronic dance music and disco culture for the whole family. The theme of the disco is dancing elves! Would you like to be a home gnome, mill gnome, garden gnome, or Christmas elf? Dress up as your elf of choice or stop by the Annantalo costume shop, where you can find the right outfit for your disco. Boost your gnomish appearance by preparing an gnome cap in the workshop or get your cheeks painted at a face painting workshop.</p><p>Annantalo’s own DJ, Nicolas Sebastien is in charge of the night’s music, ranging from house to disco.</p><p>4:30 pm Costume rental SÄIHKE opens.<br>The workshops open: make your own gnome cap, sculpt your own gnome, conjure up a bouncing costume jewel and have your face painted to fit the theme.<br>5:00 pm Disco doors open<br>5:15 pm Fiona Fiouhn's dance session<br>5:30 pm Exhibition guide for the whole family, including robot companion B-Ö<br>6:00 pm Fiona Fiouhn's dance session, robot companion B-Ö joins everyone on the dance floor<br>7:00 pm Disco doors and workshops close.<br>The evening culminates in a departure serenade in the front yard of Annantalo: opera singer Fezziwick, with an accordion in his arms and a drum set on his back, is the entire orchestra – and much more hilarious.</p><p>Free admission, no advance registration.</p><p>Annantalo's own cafe Puffy Mini Pancakes is open during the entire event!</p><p>--</p><p><b>Workshops from 4:30 to 7 pm:</b></p><p><b>Gnome caps to make you dance</b><br>Make your own personalised gnome cap – put on patterns, decorate and add tassels and silly details to suit your taste. When your cap is finished, slip it on and head to the dance floor with the other gnomes!</p><p><b>Face Paint Tonttula</b><br>The face paintings are what make the elf! Tonttula will paint your cheeks red or put a winter on your face. Gingerbread, snowflake or Christmas orb, which picture do you choose? What a dash of glitter?</p><p><b>Bouncy Elf Jewellery</b><br>Make a Christmasy, bouncy and swaying dress jewel from recycled materials! You will be able to take your jewel home or leave it with us at Annantalo. We deliver the donated costume jewels to the residents of Roihuvuori Senior Centre as Christmas greetings.</p><p><b>The elf of your own life</b><br>Did you know that there are many types of elves and gnomes in Finnish folklore? In the word art workshop, you can create the elf of your own life and tell an elfish presentation on it.</p><p>The last workshop participants are admitted at 6:45 pm.</p><p><b>Come dance like an elf!</b></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64334/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65105",
            "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: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:755/?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/kino-helios-pieni-pala-kakkua-3780610/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153092,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:29.899222Z",
                    "last_modified_time": "2024-11-27T11:14:29.899241Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745817.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153092/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:29.877874Z",
            "last_modified_time": "2024-12-20T01:14:22.514904Z",
            "date_published": null,
            "start_time": "2024-12-13T13: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1175629E45BE5A61E4BAEFF557207019/Pieni_pala_kakkua_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1175629E45BE5A61E4BAEFF557207019/Pieni_pala_kakkua_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1175629E45BE5A61E4BAEFF557207019/Pieni_pala_kakkua_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pieni pala kakkua (7) – Kino Helios",
                "sv": "Pieni pala kakkua (7) – Kino Helios",
                "en": "Pieni pala kakkua (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina.</p><p>Pitkään leskenä omin päin elänyt Mahin viettää puheliasta iltaa tyttökaveriensa kanssa, ja päättää että elämässä voisi vielä kerran olla tilaa romanssille. Mahin kohtaa sympaattisen taksikuskin eläkeläisten lounaspaikassa. Faramarz saa ajaa Mahinin kotiin. Mahin kaivaa esiin pitkään piilotellun viinipullon ja leipoo herkullisen kakun. On aika jakaa yhteinen, onnellinen illallinen.</p><p>Naisia alistava mikroskooppisen tarkka sääntöjen ja kieltojen verkko tekee sympaattisista hetkistä Teheranissa harvinaista herkkua.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 97 min.<br>Ensi-ilta: 06.12.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65105/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64979",
            "has_user_editable_resources": false,
            "location": null,
            "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: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/kulke:755/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-12T13:14:52.055562Z",
                    "last_modified_time": "2024-11-12T13:14:52.055589Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760619.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-11-12T13:14:52.033214Z",
            "last_modified_time": "2024-12-20T01:14:22.413102Z",
            "date_published": null,
            "start_time": "2024-12-13T13:00:00Z",
            "end_time": "2024-12-13T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Joulutorin toisessa päivässä kuullaan juurimusiikkia, nähdään upea tulishow ja nautitaan yhdessä joulupuuroa ja glögiä joulumarkkinoiden humussa.",
                "sv": "På jultorgets andra dag får vi höra rootsmusik, se en spektakulär eldshow och njuta av julgröt och glögg tillsammans i julmarknadsstämningen.",
                "en": "On the second day of the Christmas market, you will get to hear roots music, see a fabulous fire show and enjoy Christmas porridge and mulled wine together in the din of the Christmas market."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7886D7391B7153AE953217FBA719E161/Malmin_joulutori",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7886D7391B7153AE953217FBA719E161/Malms_jultorg",
                "en": "http://www.malmitalo.fi/en/events/event/7886D7391B7153AE953217FBA719E161/Malmi_Christmas_Market"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Malmin joulutori – Juurimusiikkia, tulitaidetta ja paljon muuta",
                "sv": "Malms jultorg – Rootsmusik, eldkonst och mycket mer",
                "en": "Malmi Christmas Market – Roots music, fire art, and more"
            },
            "description": {
                "fi": "<p>Joulutorin toisessa päivässä kuullaan juurimusiikkia, nähdään upea tulishow ja nautitaan yhdessä joulupuuroa ja glögiä joulumarkkinoiden humussa.</p><p>Perjantaina Malmin joulutori on avoinna klo 15–19. Tervetuloa joulun taikaan Ylä-Malmin torille!</p><p><b>Päivän ohjelma</p><p>klo 15–19 Joulumarkkinat</p><p>15–18 A-kilta Ry ja Naapurustotyö ja sovitteluhanke: Joulupuuro & glögit</b><br>A-Kilta tarjoaa torilla joulupuuroa ja glögiä niin kauan kuin riittää.</p><p><b>15–16 Roof Aerial Club: LED-vanteet & esittäytyminen</p><p>klo 15–19Forum Virium: Mun Malmi, mun talvi<br>Heijastinpaja ja selviytymisvinkkejä talveen<br></b><br>Mun Malmi, mun talvi! Mistä on malmilaisten talvi tehty? Mikä saa malmilaiset pysymään liikkeellä ja mikä tekee Malmin ulkotiloista viihtyisiä myös talvella? Tule jakamaan omat vinkkisi ja opi muilta, miten taklata pimeän, kylmän ja kostean vuodenajan tuomat haasteet.</p><p><b>klo 16–16.15 ja 18–18.15<br>Belenos Group of Arts: Kaiku tulishow</b><br>Kaiku on mahtipontinen ja menevä tulishow, jossa nähdään flow-taiteiden huippuosaamista! Kaiku, tulen kuiskaus, syntyy taitavien tuliesiintyjien käsittelyssä ja kasvaa näyttävän tanssin voimalla aina roihuksi saakka.</p><p><b>klo 16.30–17<br>Pohjois-Helsingin musiikkiopiston puhallinyhtye</b><br>Pohjois-Helsingin musiikkiopiston puhallinyhtye esittää jouluista torimusiikkia. (Säävaraus)</p><p><b>klo 17–17.30 ja 18.30–19<br>Paula Wolski Ensemble</b><br>Paula Wolski Ensemble on laaja-alaisen juurimusiikin konkareista koostuva uusi yhtye, jonka soinnissa suomalainen kansanlaulu punoutuu saumattomasti americanaan. Yhtye esiintyy Malmin joulutorilla kolmihenkisenä. <br>Paula Wolski (laulu & ukulele)<br>Jarmo Romppanen (mandoliini) <br>Jani Snellman (kontrabasso)</p><p><b>klo 18–18.30<br>Koilliskuoro</b><br>Helsingin työväenopiston malmilainen Koilliskuoro on perinteikäs sekakuoro, jonka ohjelmistossa kuullaan niin kuoroklassikkoja kuin viihteellisempää musiikkia. Kuoroa johtaa Emma Kuntsi.</p><p>Esitysten lisäksi joulutori on täynnä paikallisten käsityöläisten ja leipureiden laadukkaita tuotteita. Hanki lahjaksi tai omaksi iloksi mm. leivonnaisia, jouluisia elintarvikkeita, koristeita, kortteja ja muuta mukavaa.</p><p>Markkinahumussa iso nälkä saattaa yllättää, vaan eipä hätää! Perjantaina Malmin joulutorilla palvelevat Bro’s Burgersin Bamilamin ruokarekat.</p>",
                "sv": "<p>På jultorgets andra dag får vi höra rootsmusik, se en spektakulär eldshow och njuta av julgröt och glögg tillsammans i julmarknadsstämningen.</p><p>På fredag är Malms jultorg öppet kl. 15–19. Välkommen med i julens magi på Övre Malms torg!</p><p><b>kl. 15–19 Julmarknad</p><p>15–18 A-Kilta Ry: Julgröt & glögg (eller så länge det varar)</b><br>A-Kilta bjuder på julgröt och glögg på torget.</p><p><b>15–16 Roof Aerial Club: LED-tunnband & introduktion</b></p><p><b>kl. 15–19<br>Forum Virium operativ punkt för Helsingfors projekt GreenInCities och Kauko</b><br>Mitt Malm, min vinter! Vad består Malmbornas vinter av? Vad får Malmborna att hålla igång och vad gör Malms uterum trivsamma även på vintern? Kom och dela med dig av dina tips och lär dig av andra hur du kan tackla utmaningarna med den mörka, kalla och våta årstiden.</p><p><b>kl. 16–16.15 och 18–18.15<br>Belenos Group of Arts: Kaiku eldshow</b><br>Kaiku (Ekot) är en spektakulär och häftig eldshow med det bästa inom flowkonst! Ekot, eldens viskning, föds i händerna på skickliga eldartister och växer till en mäktig låga genom imponerande dans.</p><p><b>kl. 16.30–17<br>Blåsensemble från Pohjois-Helsingin musiikkiopisto</b><br>Blåsensemblen från Pohjois-Helsingin musiikkiopisto framför torgmusik i julanda.<br>(Väderreservation)</p><p><b>kl. 17–17.30 och 18.30–19<br>Paula Wolski Ensemble</b><br>Paula Wolski Ensemble är ett nytt band som består av veteraner inom ett brett spektrum av rootsmusik. Deras sound väver sömlöst samman finsk folksång och americana. På Malms jultorg uppträder bandet som en trio. <br>Paula Wolski (sång & ukulele)<br>Jarmo Romppanen (mandolin) <br>Jani Snellman (kontrabas)</p><p><b>kl. 18–18.30<br>Koilliskuoro</b><br>Malmbaserade Koilliskuoro (Nordöstra kören) från Helsingfors finska arbetarinstitut är en traditionell blandad kör, vars repertoar omfattar både körklassiker och mer underhållande musik. Kören leds av Emma Kuntsi.</p>",
                "en": "<p>On the second day of the Christmas market, you will get to hear roots music, see a fabulous fire show and enjoy Christmas porridge and mulled wine together in the din of the Christmas market.</p><p>On Friday, the Malmi Christmas Market will be open from 3 pm to 7 pm. Find the Christmas magic at Ylä-Malmi Square!</p><p><b>3 pm – 7 pm Christmas Market</p><p>3–6 pm A-Kilta Ry: Christmas Porridge & mulled wine (as long as the goods last)</b><br>A-Kilta offers Christmas porridge and mulled wine at the market.</p><p><b>3–4 pm Roof Aerial Club: LED hoops & presentation</b></p><p><b>3 pm to 7 pm<br>Activity point by Forum Virium Helsinki's GreenInCities and Kauko projects</b><br>My Malmi, my winter! What is the winter of Malmi’s people made of? What keeps the people of Malmi on the move and what makes the outdoor spaces of Malmi attractive in winter? Come and share your tips and learn from others how to tackle the challenges of the dark, cold and wet seasons.</p><p><b>4–4:15 pm and 6–6:30 pm<br>Belenos Group of Arts: Fire Show Kaiku</b><br>Kaiku is an extravagant and flamboyant fire show that shows excellence in the flow arts! The echo, the whisper of fire, rises from the skilled hands of the fire artists and grows with the power of spectacular dance all the way to a blaze.</p><p><b>4:30 pm – 5 pm<br>Northern Helsinki Music Institute Wind Orchestra</b><br>The wind orchestra of the Northern Helsinki Music Institute performs Christmasy market music.<br>(Subject to weather conditions)</p><p><b>5–5:30 pm and 6:30–7 pm<br>Paula Wolski Ensemble</b><br>Paula Wolski Ensemble is a new band consisting of roots music veterans, whose sound mixes Finnish folk songs with Americana. Three members of the band will perform at Malmi Christmas Market. <br>Paula Wolski (vocals & ukulele)<br>Jarmo Romppanen (mandolin) <br>Jani Snellman (double bass)</p><p><b>6 pm – 6:30 pm<br>Northeast Choir</b><br>The Northeast Choir of the Helsinki Adult Education Centre is a traditional mixed choir from Malmi, whose repertoire includes both choral classics and more entertaining music. The choir leader is Emma Kuntsi.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64979/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64740",
            "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/kulke:755/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152851,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-22T11:15:25.475296Z",
                    "last_modified_time": "2024-10-22T11:15:25.475315Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759111.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152851/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-22T11:15:25.425558Z",
            "last_modified_time": "2024-12-20T01:14:22.322134Z",
            "date_published": null,
            "start_time": "2024-12-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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Staffansbyn koulun kolmasluokkalaisten Luciakulkue tuo valoa ja iloa joulukuun pimeyteen.",
                "sv": "Luciaföljet från Staffansby skola, årskurs 3, sprider ljus och glädje i decembermörkret med ett uppträdande i Malms kulturhus aula.",
                "en": "The Staffansby Primary School’s 3rd graders' Lucia procession will bring light and joy to the December darkness with a performance in the lobby of Malmi Cultural Centre."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8B2E122B4BF71F75492621C0162E0850/Luciakulkue_ja_-kuoro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8B2E122B4BF71F75492621C0162E0850/Staffansby_Lucia_och_de_vackraste_julsangerna",
                "en": "http://www.malmitalo.fi/en/events/event/8B2E122B4BF71F75492621C0162E0850/Staffansby_Lucia_and_the_Most_Beautiful_Christmas_Songs"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Luciakulkue ja -kuoro",
                "sv": "Staffansby Lucia och de vackraste julsångerna",
                "en": "Staffansby Lucia and the Most Beautiful Christmas Songs"
            },
            "description": {
                "fi": "<p>Staffansbyn koulun kolmasluokkalaisten Luciakulkue tuo valoa ja iloa joulukuun pimeyteen.</p><p>Luciakulkue esiintyy Malmitalon aulassa. Kulkueen jälkeen siirrymme toiseen kerrokseen kokoushuoneeseen 2, jossa tarjoillaan kahvia ja pientä purtavaa sekä lauletaan yhdessä joululauluja Petrus församlingin kanssa.</p><p>Paikalla on myös infopiste, jossa Helsingin kaupunki ja eri järjestöt esittelevät senioreille suunnattuja palvelujaan ruotsiksi.</p><p>Maksuton, ei ennakkoilmoittautumista.</p><p><b>Kieli:</b> Ruotsi<br><b>Paikka:</b> Malmitalon aula ja kokoushuone 2<br><b>Järjestäjä:</b> Seniornätverket i Helsingfors</p>",
                "sv": "<p>Luciaföljet från Staffansby skola, årskurs 3, sprider ljus och glädje i decembermörkret med ett uppträdande i Malms kulturhus aula.</p><p>Efter Luciaföljet förflyttar vi oss upp i mötesrum 2, andra våningen, där det serveras kaffe med tilltugg och bjuds på julig allsång tillsammans med Petrus församling. På plats finns även ett infotorg där Helsingfors stad och olika organisationer presenterar sin verksamhet riktad till seniorer på svenska.</p><p>Gratis, ingen förhandsanmälning.</p><p><b>Plats:</b> Malm kulturhus, aulan och mötesrum 2<br><b>Arrangör:</b> Seniornätverket i Helsingfors</p>",
                "en": "<p>The Staffansby Primary School’s 3rd graders' Lucia procession will bring light and joy to the December darkness with a performance in the lobby of Malmi Cultural Centre.</p><p>After the procession, we’ll move upstairs to meeting room 2 on the second floor, where coffee and snacks will be served.</p><p>You’re also invited to join in a festive sing-along of Christmas songs with Petrus församling.</p><p>There will also be an information desk where the City of Helsinki and various organizations will present their services aimed at seniors in Swedish.</p><p>Free entry</p><p><b>Language:</b> Swedish<br><b>Location:</b> Lobby and meeting room 2<br><b>Organizer:</b> Seniornätverket i Helsingfors</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64740/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65215",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153330,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-09T14:15:49.085175Z",
                    "last_modified_time": "2024-12-09T14:15:49.085195Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764240.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153330/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-09T14:15:49.053152Z",
            "last_modified_time": "2024-12-20T01:14:22.228394Z",
            "date_published": null,
            "start_time": "2024-12-13T08: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nordsjö lågstadieskolanin 3. luokan Lucia-kulkue vierailee Vuotalon aulassa Lucia-päivän aamuna.",
                "sv": "Lucia-tåget från Nordsjö lågstadieskolas årskurs 3 gästar Nordhusets aula på Lucia-dagsmorgonen."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/60BAB6DF3914A84059FC34FD7815DABF/Rastis-Lucia_besoker_Nordhuset",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/60BAB6DF3914A84059FC34FD7815DABF/Rastis-Lucia_besoker_Nordhuset"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Rastis-Lucia besöker Nordhuset",
                "sv": "Rastis-Lucia besöker Nordhuset"
            },
            "description": {
                "fi": "<p>Nordsjö lågstadieskolanin 3. luokan Lucia-kulkue vierailee Vuotalon aulassa Lucia-päivän aamuna.</p><p>He esittävät musiikkiohjelman toisen kerroksen portaissa.</p><p>Kesto n. 15 min.</p><p>Vapaa pääsy.</p><p>Järj. Nordslö ls yhteistyössä Vuotalon kanssa.</p>",
                "sv": "<p>Lucia-tåget från Nordsjö lågstadieskolas årskurs 3 gästar Nordhusets aula på Lucia-dagsmorgonen.</p><p>De framför ett musikprogram i trappan till andra våningen. <br>Längd ca 15 min.<br>Fri entré.</p><p>Arr. Nordsjö ls i samarbete med Nordhuset.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65215/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63190",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/eventseries/name-3610797"
                    },
                    "price": {
                        "fi": "38,50/28,50/22,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 20865,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-22T11:15:01.645434Z",
                    "last_modified_time": "2024-03-22T11:15:01.645469Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745382.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/20865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-22T11:15:01.610645Z",
            "last_modified_time": "2024-12-20T01:14:22.140651Z",
            "date_published": null,
            "start_time": "2024-12-12T17: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,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/75E00BA34973DEE6195E5A71E94C3AE5/Steve_n_Seagulls_-_More_than_a_Tour"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Steve'n'Seagulls - More than a Tour"
            },
            "description": {
                "fi": "<p><b>Steve'n'Seagulls</b>'ien energinen ja taidokas livemusiikki on tullut tutuksi niin kotimaan kamaralla, festivaaleilla ja klubeilla ympäri Euroopan, Pohjois-Amerikan kiertueilla, Australiassa ja Etelä-Amerikan lämmössä. Joka kolkassa yleisöstä tuntuu huokuvan sama tunne; bändin keikoilla viihdytään, pidetään hauskaa ja nautitaan ainutlaatuisesta musiikillisesta keitoksesta! Puhumattakaan yhtyeen hirmuisesta suosiosta sosiaalisessa mediassa, eritoten YouTubessa - siellä yksin yhtyeellä on yli miljoona tilaajaa!</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Sahara Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63190/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64978",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:p4354/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153008,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-12T12:14:29.046624Z",
                    "last_modified_time": "2024-11-12T12:14:29.046636Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760616.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153008/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-11-12T12:14:29.025253Z",
            "last_modified_time": "2024-12-20T01:14:22.046406Z",
            "date_published": null,
            "start_time": "2024-12-12T13:00:00Z",
            "end_time": "2024-12-12T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Joulumarkkinoiden ensimmäinen päivä tuo Ylä-Malmin torille jouluista musiikkia koko perheelle! Näe myös Fauna Humanan eläinhahmot!",
                "sv": "Julmarknadens första dag bjuder på julmusik för hela familjen på Övre malms torg! Träffa också Fauna Humanas djurfigurer!",
                "en": "The first day of the Christmas market brings Christmas music to Ylä-Malmi Square for the whole family! Also see the animal figures of Fauna Humana!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE7AE4416A23E6517F5D04B4779FBDDE/Malmin_joulutori",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE7AE4416A23E6517F5D04B4779FBDDE/Malms_jultorg",
                "en": "http://www.malmitalo.fi/en/events/event/BE7AE4416A23E6517F5D04B4779FBDDE/Malmi_Christmas_Market"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Malmin joulutori – Janne Masalin, Fauna Humana & paljon muuta",
                "sv": "Malms jultorg – Janne Masalin, Fauna Humana & mycket mer",
                "en": "Malmi Christmas Market – Janne Masalin, Fauna Humana & many others"
            },
            "description": {
                "fi": "<p>Joulumarkkinoiden ensimmäinen päivä tuo Ylä-Malmin torille jouluista musiikkia koko perheelle! Näe myös Fauna Humanan eläinhahmot!</p><p>Malmin joulutori on avoinna torstaina 12.12.2024 klo 15–19. Paikka: Ylä-Malmin tori</p><p><b>Päivän ohjelma</p><p>klo 15–19<br>Joulumarkkinat</p><p>klo 16–17 <br>Malmin Varustamo: <br>klo 16–16.30 Jouluisia satuja<br>klo 16.30–17.00 Jouluinen muskari</b><br>Pysähdy joulukiireiden keskellä lasten kanssa laulamaan ja leikkimään joulumieli koko perheelle! Joulutorin esitysteltassa musiikkia ja tunnelmaa luomassa tontut Mari, Päivi ja Petra Malmin Varustamolta.</p><p><b>klo 16–16.30, 17.30–18 ja 18.30–19<br>Fauna Humana</b><br>Katukarnevaaliryhmä Fauna Humana on musisoiva ja tanssiva seurue, jonka hahmot muistuttavat inhimillistä eläintä, tai eläimellistä ihmistä – kuten haluat. Fauna humana on aina hyvän puolella ja puolustaa kansalaisia arjen apatialta! Ryhmän toiminta on sekoitus karnevaalia, performanssia, nukke- ja naamioteatteria, tanssia ja mimiikkaa. Vaikuttavat katuteatterihahmot kiertelevät yleisön seassa ja laittavat muusikkojen säestyksellä pystyyn pari tanssiesitystäkin.</p><p>Hahmot liikkuvat joulutorin alueella.<br>Naamiot: Iida Vanttaja</p><p><b>klo 17–17.30 ja 18–18.30<br>Janne Masalin</b> <br>Aiemmin slaavipunkkia, autotallirokkia ja jazziakin sotkeneen Tundramatiksin ja 13-päisen marssivan torvibändin Bad Ass Brass Bandin solisti Janne Masalin on sooloartistina urbaani pelimanni ja hipsterikiertolainen. Malmin joulutorilla Masalin esiintyy akustisesti, harmonikkaa soittaen ja laulaen.</p><p>Esitysten lisäksi joulutori on täynnä paikallisten käsityöläisten ja leipureiden laadukkaita tuotteita. Hanki lahjaksi tai omaksi iloksi mm. leivonnaisia, jouluisia elintarvikkeita, koristeita, kortteja ja muuta mukavaa.</p><p>Markkinahumussa nälkä saattaa yllättää, vaan eipä hätää! Torstaina Malmin joulutorilla palvelevat Bulin, Bro’s Burgersin ja Bamilamin ruokarekat.</p>",
                "sv": "<p>Julmarknadens första dag bjuder på julmusik för hela familjen på Övre malms torg! Träffa också Fauna Humanas djurfigurer!</p><p>Malms jultorg är öppet torsdagen 12.12.2024 kl. 15–19.</p><p><b>Dagens program</b></p><p><b>kl. 16–16.30, 17.30–18 och 18.30–19<br>Fauna Humana</b><br>Gatukarnevalsgruppen Fauna Humana är ett musicerande och dansande följe vars figurer påminner om mänskliga djur, eller djurliknande människor – välj själv. Fauna humana står alltid på det godas sida och försvarar medborgarna mot vardagens apati! Gruppens aktiviteter är en blandning av karneval, performance, dock- och maskteater, dans och mimik. De imponerande gatuteaterfigurerna vandrar omkring bland publiken och bjuder även på några dansuppvisningar till ackompanjemang musiker.</p><p>Figurerna rör sig omkring på jultorgets område.<br>Ansiktsmasker: Iida Vanttaja</p><p><b>kl. 16–17 <br>Malmin Varustamo: <br>kl. 16–16.30 Julsagor<br>kl. 16.30–17.00 Musikskola med jultema</b><br>Mitt i julruschen kan du sticka dig in med barnen för att sjunga och leka fram julstämning för hela familjen! I jultorgets föreställningstält skapas musiken och stämningen av tomtarna Mari, Päivi och Petra från Malmin Varustamo.</p><p><b>kl. 17–17.30 och 18–18.30<br>Janne Masalin </b><br>Janne Masalin var tidigare solist för bandet Tundramatiks, vars musik var en blandning av slavisk punk, garagerock och jazz samt det 13 man starka marscherande brassbandet Bad Ass Brass Band. Som soloartist är han en urban spelman och hipsternomad. På jultorget uppträder Masalin akustiskt, spelar dragspel och sjunger.</p><p>Förutom uppträdandena är jultorget fullt av kvalitetsprodukter från lokala, skickliga hantverkare och bagare. Köp bakverk, julmat, dekorationer, kort och mycket mer till gåva eller till din egen glädje.</p><p>I marknadsrusningen kan man bli hungrig, men det är inget problem! På torsdagen betjänar matbilarna Buli, Bro's Burgers och Bamilami på Malms jultorg kl. 15–19.</p>",
                "en": "<p>The first day of the Christmas market brings Christmas music to Ylä-Malmi Square for the whole family! Also see the animal figures of Fauna Humana!</p><p>Malmi Christmas Market will be open on Thursday, 12 December 2024 from 3 pm to 7 pm.</p><p><b>Programme</p><p>4–4:30 pm, 5:30–6 pm and 6:30–7 pm<br>Fauna Humana</b><br>Street carnival group Fauna Humana is a music and dance company, whose characters resemble a human-like animal, or an animal person – as you like. Fauna Humana is always on the side of good and protects the people from everyday apathy! The group's activities are a mixture of carnival, performance, puppet and mask theatre, dance and mime. Their impressive street theatre characters roam the audience and may even put up a few dance performances with the accompaniment of musicians.</p><p>The characters move around the Christmas market area.<br>Masks: Iida Vanttaja</p><p><b>4 pm to 5 pm <br>Malmin Varustamo: <br>4–4:30 pm Christmas fairy tales<br>4:30–5 pm Christmas Musical Play School</b><br>In the midst of the Christmas rush, stop with the children to sing and play, and find the Christmas spirit for your whole family! In the Christmas market show tent, elves Mari, Päivi and Petra, from Malmin Varustamo, create the atmosphere with music.</p><p><b>5–5:30 pm and 6–6:30 pm<br>Janne Masalin </b><br>Janne Masalin, the soloist of the Bad Ass Brass Band, a 13-headed marching band that previously mixed up Slavic punk, garage rock and jazz, is an urban folk musician and hipster touring artist. At Malmi Christmas Market, Masalin plays an acoustic show with the accordion and his voice.</p><p>In addition to the different shows, the Christmas Market is full of high-quality local products by skilled craftsmen and bakers. There are gifts and treats like pastries, Christmas foods, decorations, cards, and more.</p><p>You may get hungry while browsing the markets, but don’t worry! On Thursday, food trucks from Bulin, Bro's Burgers and Bamilami will serve food at Malmi Christmas Market from 3 pm to 7 pm.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64978/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64860",
            "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: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152927,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-01T10:14:53.323093Z",
                    "last_modified_time": "2024-11-01T10:14:53.323110Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757767.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152927/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-01T10:14:53.291524Z",
            "last_modified_time": "2024-12-20T01:14:21.966808Z",
            "date_published": null,
            "start_time": "2024-12-12T10:00:00Z",
            "end_time": "2024-12-12T12: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ikäihmisten liikuntaraati on tilaisuus, jossa on mahdollisuus osallistua Helsingin liikuntapalvelujen kehittämiseen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B0272BCD3B164D8953171D0B773D120B/Vaikuta_ikaihmisten_liikuntapalveluihin_tervetuloa_liikuntaraatiin"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaikuta ikäihmisten liikuntapalveluihin – tervetuloa liikuntaraatiin"
            },
            "description": {
                "fi": "<p>Ikäihmisten liikuntaraati on tilaisuus, jossa on mahdollisuus osallistua Helsingin liikuntapalvelujen kehittämiseen.</p><p>Ensimmäisen liikuntaraadin teemana on ikääntyneiden ohjatut liikuntapalvelut ja omatoimiset liikuntamahdollisuudet. Käsittelemme teemaa erityisesti Malmin alueen liikuntapalveluiden näkökulmasta.</p><p>Liikuntaraatiin voivat ilmoittautua yli 64-vuotiaat helsinkiläiset. Tilaisuus järjestetään Malmitalossa osoitteessa Ala-Malmin tori 1. Malmitalossa kokoonnumme Kokoushuone 3:ssa.</p><p>Tilaisuudessa on kahvitarjoilu, ja lisäksi saat vaivasi palkaksi pienen tuotelahjan.</p><p><b>Lisätiedot ja ilmoittautumiset tilaisuuteen 5.12.2024 mennessä:</b><br>Minna Ekman, erityssuunnittelija<br>minna.ekman@hel.fi, puh. 040 334 5605</p>"
            },
            "provider": {
                "fi": "Helsinki Liikkuu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64860/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64909",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152957,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T11:14:47.897537Z",
                    "last_modified_time": "2024-11-06T11:14:47.897560Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760615.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152957/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-11-06T11:14:47.872684Z",
            "last_modified_time": "2024-12-20T01:14:21.881574Z",
            "date_published": null,
            "start_time": "2024-12-12",
            "end_time": "2024-12-14",
            "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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nauti joulumarkkinoiden taiasta esitysten ja herkkujen keskellä. Mukana mm. hassuttelevat Fauna Humanan eläinhahmot, tonttuorkesteri sekä tietenkin joulupukki!",
                "sv": "Njut av julmarknadens magi bland framträdanden och godsaker. Med i vimlet finns bland annat Fauna Humanas finurliga djurfigurer, en tomteorkester och naturligtvis julgubben!",
                "en": "Enjoy the magic of the Christmas market amidst presentations and treats. Featuring, for example, the funny animal characters of Fauna Humana, an elf orchestra and, of course, Santa Claus!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CB4A6963929C3E40C23248C44822F84F/Malmin_joulutori",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CB4A6963929C3E40C23248C44822F84F/Malms_jultorg",
                "en": "http://www.malmitalo.fi/en/events/event/CB4A6963929C3E40C23248C44822F84F/Malmi_Christmas_Market"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Malmin joulutori – Joulutunnelmaa Ylä-Malmin torilla",
                "sv": "Malms jultorg – Julstämning på Övre Malms torg",
                "en": "Malmi Christmas Market – Christmas atmosphere at Ylä-Malmi Square"
            },
            "description": {
                "fi": "<p>Nauti joulumarkkinoiden taiasta esitysten ja herkkujen keskellä. Mukana mm. hassuttelevat Fauna Humanan eläinhahmot, tonttuorkesteri sekä tietenkin joulupukki!</p><p>Tänä jouluna joulupukki tuo Ylä-Malmin torille Tonttuorkesterin ja erikoistonttujoukot! Torilla tavataan glögin ja puuron lisäksi mm. jouluinen nukketeatteri, Malmin mieslaulajat, Paula Wolski Ensemble ja Janne Masalin. Fauna Humanan näyttävät eläinhahmot seikkailevat myös joulutorilla.</p><p>Esitysten lisäksi jouluiset tuoksut ja kojut kutsuvat sinut viihtymään – virittäydy joulun tunnelmaan Malmin joulutorilla!</p><p>Malmin joulutori on avoin kaikille, ja paikalliset yhdistykset ja yritykset tuovat mukanaan markkinoille uniikin tarjonnan. Helsingin A-kilta järjestää perjantaina 13.12. joulupuuro- ja glögitarjoilun Ylä-Malmin torilla. Puuro ja glögitarjoilu on maksuton.</p><p><b>Malmin joulutori on avoinna</b><br>to 12.12. klo 15–19<br>pe 13.12. klo 15–19<br>la 14.12. klo 10–15<br>Paikka: Ylä-Malmin tori</p><p><b>Malmin joulutorin ohjelma ja aikataulut</p><p>to 12.12 klo 15–19</b> <br>klo 15–19 Joulumarkkinat <br>klo 16–17 Malmin Varustamo: joulusadut ja lasten muskari <br>klo 16–16.30, 17.30–18 ja 18.30–19 Fauna Humana -katuteatteriesitys <br>klo 17–17.30 ja 18–18.30 Haitaristi Janne Masalin <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/BE7AE4416A23E6517F5D04B4779FBDDE/Malmin_joulutori\">Lue lisää päivän ohjelmasta</a></u></p><p><b>pe 13.12 klo 15–19</b> <br>15–19 Joulumarkkinat <br>15–18 A-kilta Ry ja Naapurustotyö ja sovitteluhanke: Joulupuuro & glögit (niin kauan kuin riittää) <br>15–16 Roof Aerial Club: LED-vanteet & esittäytyminen <br>15–19 Forum Virium: Heijastinpaja ja selviytymisvinkkejä talveen<br>16–16.15 ja 18–18.15 Belenos Group of Arts: Kaiku tulishow<br>16.30–17 PHMO:n puhallinyhtye <br>17–17.30 ja 18.30–19 Paula Wolski Ensemble  <br>18–18.30 Koilliskuoro<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/7886D7391B7153AE953217FBA719E161/Malmin_joulutori\">Lue lisää päivän ohjelmasta</a></u></p><p><b>la 14.12 klo 10–15</b> <br>10–15 Joulumarkkinat <br>10–14 Joulupukki tavattavissa<br>10–11 ja 12.30–13.30 Tiptop Walkers: Joulupukin erikoisjoukot <br>10.30–11 ja 11.30–12 Malmin Mieslaulajat <br>12–12:30 Taigamatto: Saunatonttu-nukketeatteriesitys<br>12.30–13 ja 14–14.30 Posetiivari Pikku-Markku<br>13.30–14 & 14.30–15 Tonttuorkesteri Mikä Lie<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/E1B3BEB269AF583ABB4A88539A6C53DC/Malmin_joulutori\">Lue lisää päivän ohjelmasta</a></u></p><p>Markkinahumussa nälkä saattaa yllättää, vaan eipä hätää! Paikalla on erilaisia ruokarekkoja, joissa on herkullisia vaihtoehtoja yli kardemumman ja kanelin.</p><p><b>Ruokarekat paikalla Malmin joulutorilla:</b><br>to 12.12 klo 15–19 Buli, Bro’s Burgers, Bamilami<br>pe 13.12 klo 15–19 Bro’s Burgers, Bamilami<br>la 14.12 klo 10–15 MeatOut, Bro’s Burgers, Bamilami</p><p>Tervetuloa mukaan joulun taikaan!</p><p>Tapahtuma on osa OmaStadi-äänestyksen myötä toteutukseen valittua Ylä-Malmin tori ja Ala-Malmin puisto -viihtyisäksi -hanketta. Hanke keskittyy viihtyisyyden, osallisuuden ja yhteisöllisyyden edistämiseen alueella. Joulutorin yhteistyökumppanina toimii torikaupasta vastaava Helsingin Kaupunkitilat Oy.</p>",
                "sv": "<p>Njut av julmarknadens magi bland framträdanden och godsaker. Med i vimlet finns bland annat Fauna Humanas finurliga djurfigurer, en tomteorkester och naturligtvis julgubben!</p><p>Denna jul tar julgubben med sig Tomteorkestern och tomtarnas specialstyrkor till Övre Malms torg! På torget finns både glögg och gröt och en dockteater med jultema, Malmin Mieslaulajat (Malms manssångare), Paula Wolski Ensemble och Janne Masalin.</p><p>Dofter av jul, positivspelarens melodier och dekorerade torgstånd inbjuder dig att njuta – du hittar garanterat allt du behöver för att komma i julstämning!</p><p>Malms jultorg är öppet för alla, och lokala föreningar och företag bidrar med ett unikt julmarknadsutbud. På fredag ordnar Helsingin A-kilta en avgiftsfri julgröt- och glöggservering på Övre Malms torg.</p><p><b>Malms jultorg är öppet</b><br>to 12.12. kl. 15–19<br>fre 13.12. kl. 15–19<br>lö 14.12. kl. 10–15<br>Plats: Övre Malms torg</p><p><b>Program och tidtabeller för Malms jultorg:</b></p><p><b>to 12.12 kl. 15–19</b> <br>15–19 Julmarknad <br>16–17 Malmin Varustamo: julsagor och musikskola för barn <br>16–16.30, 17.30–18 och 18.30–19 Fauna Humana gatuteaterföreställning<br>17–17.30 och 18–18.30 Dragspelaren Janne Masalin  <br>  <br><b>fre 13.12 kl. 15–19</b> <br>15–19 Julmarknad <br>15–18 A-Kilta Ry: Julgröt & glögg (eller så länge det varar) <br>15–16 Roof Aerial Club: LED-tunnband & introduktion <br>15–19 Forum Virium operativ punkt för Helsingfors projekt GreenInCities och Kauko <br>16–16.15 och 18–18.15 Belenos Group of Arts: Kaiku eldshow<br>16.30–17 PHMO:s blåsorkester <br>17–17.30 och 18.30–19 Paula Wolski Ensemble  <br>18–18.30 Koilliskuoro (Nordöstra kören)</p><p><b>lö 14.12 kl. 10–15</b> <br>10–15 Julmarknad <br>10–14 Julgubben är anträffbar<br>10–11 och 12.30–13.30 Tiptop Walkers: Julgubbens specialstyrkor <br>10.30–11 och 11.30–12 Malmin Mieslaulajat (Malms manssångare) <br>12–12.30 Taigamatto: Dockteaterföreställning med en bastutomte<br>12.30–13 och 14–14.30 Positivspelaren Pikku-Markku<br>13.30–14 & 14.30–15 Tomteorkestern Mikä Lie</p><p>I marknadsrusningen kan man bli hungrig, men det är inget problem! Det finns olika matbilar på plats med läckra alternativ utöver kardemumma och kanel.</p><p><b>Matbilar på plats på Malms jultorg:</b><br>to 12.12 kl. 15–19 Buli, Bro’s Burgers, Bamilami<br>fre 13.12 kl. 15–19 Bro’s Burgers, Bamilami<br>lö 14.12 kl. 10–15 MeatOut, Bro’s Burgers, Bamilami</p><p>Välkommen till julens magi!</p><p>Evenemanget är en del av projektet för att göra Övre Malms torg och Nedre Malms park trivsamma. Projektet valdes ut för genomförande genom en VårStad-omröstning. Projektet fokuserar på att främja trivsamhet, delaktighet och gemenskap i området. Jultorgets samarbetspartner är Helsingin Kaupunkitilat Oy, som ansvarar för torghandeln.</p>",
                "en": "<p>Enjoy the magic of the Christmas market amidst presentations and treats. Featuring, for example, the funny animal characters of Fauna Humana, an elf orchestra and, of course, Santa Claus!</p><p>This Christmas, Santa will bring the Elf Orchestra and special elf troops to Ylä-Malmi Square! In addition to mulled wine and porridge, on the square, you will find a Christmas puppet theatre, the Malmi Male Choir, Paula Wolski Ensemble and Janne Masalin.</p><p>The scents of Christmas, the hand played tunes of a barrel organ and the decorated stalls invite you to enjoy yourself – you will surely find everything you need to get into the Christmas spirit!</p><p>Malmi Christmas Market is open to everyone, and local associations and businesses bring with them the unique offerings of the Christmas market. On Friday, the A-Guild of Helsinki will hold a free serving of Christmas porridge and mulled wine at Ylä-Malmi Market.</p><p><b>Malmi Christmas Market is open</b><br>Thu 12 December 3 pm – 7 pm<br>Fri 13 December 3 pm – 7 pm<br>Sat 14 December 10 am – 5 pm<br>Location: Ylä-Malmi square</p><p><b>Malmi Christmas Market programme and schedule:</b></p><p><b>Thu 12 Dec 3 pm – 7 pm</b> <br>3–7 pm Christmas Market <br>4–5 pm Malmin Varustamo: Christmas fairy tales and children's musical play school <br>4–4:30 pm, 5:30–6 pm and 6:30–7 pm Fauna Humana street theatre performance<br>5–5:30 pm and 6–6:30 pm Accordionist Janne Masalin  <br>  <br><b>Fri 13 Dec 3 pm – 7 pm</b> <br>3–7 pm Christmas Market <br>3–6 pm A-Kilta Ry: Christmas Porridge & mulled wine (as long as the goods last) <br>3–4 pm Roof Aerial Club: LED hoops & presentation <br>3–7 pm Activity point by Forum Virium Helsinki's GreenInCities and Kauko projects <br>4–4:15 pm and 6–6:15 pm Belenos Group of Arts: Fire Show Kaiku<br>4:30–5 pm PHMO Wind Orchestra <br>5–5:30 pm and 6:30–7 pm Paula Wolski Ensemble  <br>6–6:30 pm Northeast Choir</p><p><b>Sat 14 Dec 10 am – 3 pm</b> <br>10 am – 3 pm Christmas Market <br>10 am – 2 pm Santa Meet and Greet<br>10–11 am and 12:30 –1:30 pm Tiptop Walkers: Santa's Special Forces <br>10:30–11 am and 11:30 am – 12 pm Malmi Male Choir <br>12–12:30 pm Taiga-Matto: Sauna Elf Puppet Theatre Show<br>12:30–1 pm and 2–2:30 pm Barrel Organist Pikku-Markku<br>1:30–2 pm & 2:30–3 pm Elf Orchestra Mikä Lie</p><p>You may get hungry while browsing the markets, but don’t worry! There are a variety of food trucks with delicious options other than cardamom and cinnamon.</p><p><b>Food trucks at Malmi Christmas Market:</b><br>Thu 12 Dec 3–7 pm Buli, Bro's Burgers, Bamilami<br>Fri 13 Dec 3–7 pm Bro's Burgers, Bamilami<br>Sat 14 Dec 10 am – 3 pm MeatOut, Bro's Burgers, Bamilami</p><p>Join the Christmas magic!</p><p>The event is part of the Let’s make Ylä-Malmi Square and Ala-Malmi Park more attractive project, which was chosen for implementation with an OmaStadi vote. The project focuses on promoting the attractiveness, inclusion and sense of community in the district. The partner of the Christmas market is Helsingin Kaupunkitilat Oy, which is responsible for the market booths.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64909/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64227",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151790,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:36.776085Z",
                    "last_modified_time": "2024-07-22T14:13:36.776102Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750152.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151790/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:36.761528Z",
            "last_modified_time": "2024-12-20T01:14:21.784175Z",
            "date_published": null,
            "start_time": "2024-12-12T09:45:00Z",
            "end_time": "2024-12-12T11:15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0E20166834FAF07052AD37997070E899/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0E20166834FAF07052AD37997070E899/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/0E20166834FAF07052AD37997070E899/Learn_Finnish_by_Singing_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64227/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64224",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-113/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151789,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:36.689500Z",
                    "last_modified_time": "2024-07-22T14:13:36.689511Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756143.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151789/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:36.679902Z",
            "last_modified_time": "2024-12-20T01:14:21.697750Z",
            "date_published": null,
            "start_time": "2024-12-12T08:00:00Z",
            "end_time": "2024-12-12T09:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C3BF74581E4DED89E7789BC2FCAB0ED3/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C3BF74581E4DED89E7789BC2FCAB0ED3/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/C3BF74581E4DED89E7789BC2FCAB0ED3/Learn_Finnish_by_Singing_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p><b>Syksyn laulupajakerrat:</b> <br>to 12.9. klo 10 ja 11.45 <br>to 3.10. klo 10 ja 11.45 <br>to 14.11. klo 10 ja 11.45 <br>to 12.12. klo 10 ja 11.45</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Höstens sångverkstäder:</b><br>To 12.9 kl. 10 och 11.45 <br>To 3.10 kl. 10 och 11.45<br>To 14.11 kl. 10 och 11.45<br>To 12.12 kl. 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p><b>Autumn song workshops:</b><br>Thu 12.9. at 10 and 11:45<br>Thu 3.10. at 10 and 11:45<br>Thu 14.11. at 10 and 11:45<br>Thu 12.12. at 10 and 11:45</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64224/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64284",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kinetic-orchestra/",
                        "sv": "https://www.lippu.fi/artist/kinetic-orchestra/",
                        "en": "https://www.lippu.fi/artist/kinetic-orchestra/"
                    },
                    "price": {
                        "fi": "24,80 € / 15 €",
                        "sv": "24,80 € / 15 €",
                        "en": "24,80 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152725,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-03T13:14:14.439835Z",
                    "last_modified_time": "2024-10-03T13:14:14.439848Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756019.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152725/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-03T13:14:14.400774Z",
            "last_modified_time": "2024-12-20T01:14:21.605348Z",
            "date_published": null,
            "start_time": "2024-12-11T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Gravity on nopeatempoinen ja liikkeellisesti sykähdyttävä esitys kahdeksalle virtuoottiselle tanssijalle.",
                "sv": "Gravity är en föreställning med snabbt tempo och hänförande rörelser för åtta virtuosa dansare.",
                "en": "Gravity is a 50-minute long, high-paced, physically stunning performance danced by eight highly skilled dancers."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/383232B17DECF82FE2B2448001C70F7B/Kinetic_Orchestra_Gravity",
                "sv": "http://www.stoa.fi/sv/evenemang/event/383232B17DECF82FE2B2448001C70F7B/Kinetic_Orchestra_Gravity",
                "en": "http://www.stoa.fi/en/events/event/383232B17DECF82FE2B2448001C70F7B/Kinetic_Orchestra_Gravity"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kinetic Orchestra: Gravity",
                "sv": "Kinetic Orchestra: Gravity",
                "en": "Kinetic Orchestra: Gravity"
            },
            "description": {
                "fi": "<p>Gravity on nopeatempoinen ja liikkeellisesti sykähdyttävä esitys kahdeksalle virtuoottiselle tanssijalle.</p><p>Teos on jatkumoa koreografi <b>Jarkko Mandelinin</b> työlle äärimmäisen fyysisten ja liikelähtöisten tanssiteosten parissa.</p><p>”Gravity on kuin aikansa kuva. Monikerroksinen, nopeatempoinen ja monista eri liiketekniikoista ja liikekulttuureista koostuva verkko. Sen vauhti ja liikekeskeisyys eivät ainoastaan tutki ja tee näkyväksi painovoimaa, mutta myös aikaa niin kirjaimellisesti kuin yleisemminkin sitä omalla olemassaolollaan kommentoiden.” – Koreografi Jarkko Mandelin</p><p>Gravity tuntuu samanaikaisesti vetävän meitä puoleensa ja riippuvan uhkaavana päällämme. Tämä heijastuu myös William Ilesin yksinkertaisessa mutta tehokkaassa skenografiassa sekä Janne Hastin periksiantamattomassa äänisuunnittelussa.</p><p>Vauhdin ja rytmin voimakas manipulointi, nykivät liikkeet sekä pysähdykset ja romahdukset, jotka nopeasti katkovat yhä kiihtyviä liikejaksoja, tuovat Gravityyn todellisen tuntuman painovoimasta ja sen rajoitteista. Teoksen dramaturginen rakenne seuraa toisiinsa limittyvien lyhyiden kohtausten kiihkeää kehää ja tuntuu näin saavuttavan jotain olennaista tästä ajasta ja sen hektisestä tahdista.</p><p>Teos on toteutettu Helsinki Dance Companyn ja Kinetic Orchestran yhteistyönä.</p><p>Kesto: noin 50 minuuttia<br> <br><b>Työryhmä:</b><br>Koreografia: Jarkko Mandelin ja työryhmä<br>Tanssijat: Sanni Giordani, Jyrki Kasper, Mia Jaatinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne, ja Oskari Turpeinen<br>Tanssijat kiertueella: Sanni Giordani,  Mia Jaatinen, Kalle Lähde, Oskari Turpeinen, Minna Kaaronen, Suvi Nieminen, Manuela Hierl, Hugo Sellam</p><p>Kiertueteknikko: Niila Rantala<br>Skenografia: William Iles<br>Äänisuunnittelu: Janne Hast<br>Puvustus: Elina Kolehmainen<br>Koreografin assistentti: Suvi Nieminen<br>Tuotanto: Helsinki Dance Company / Helsingin kaupunginteatteri<br>Kiertuetuotanto: Kinetic Orchestra</p><p><i>”GRAVITY on kuin tuuli ja aurinko ja raikas sade tanssin puutteesta nääntyneelle sielulle.”</i><br>Merja Koskiniemi, HS 14.11.2021<br> <br><i>”Tekee melkein mieli sanoa, että jos aikoo tänä syksynä katsoa vain yhden tanssiesityksen, tämä 45-minuuttinen on must.”</i> Annikki Alku, Demokraatti 12.11.2021</p>",
                "sv": "<p>Gravity är en föreställning med snabbt tempo och hänförande rörelser för åtta virtuosa dansare.</p><p>Verket fortsätter koreografen <b>Jarkko Mandelins</b> arbete med extremt fysiska och rörelsebaserade dansverk.</p><p>\"Gravity är som en bild av sin tid. Ett nätverk med flera skikt och snabbt tempo som består av många olika rörelsetekniker och rörelsekulturer. Tempot och fokusen på rörelse studerar och synliggör inte bara tyngdkraften, utan också tiden, både bokstavligen och mer allmänt, genom att kommentera den med sin egen existens.\" – Koreografen Jarkko Mandelin</p><p>Gravity verkar samtidigt dra oss till sig och hotfullt hänga över oss. Detta återspeglas också i den enkla men effektiva scenografin av William Iles och den orubbliga ljuddesignen av Janne Hast.</p><p>Den kraftiga manipulationen av tempot och rytmen, de ryckiga rörelserna samt pauserna och kollapserna som snabbt avbryter de ständigt accelererande rörelseserierna ger Gravity en verklig känsla av tyngdkraft och dess begränsningar. Verkets dramaturgiska struktur följer en intensiv cirkel av överlappande korta scener och tycks därmed uppnå något väsentligt med denna tid och dess hektiska tempo.</p><p>Verket har genomförts i samarbete mellan Helsinki Dance Company och Kinetic Orchestra.</p><p><b>Arbetsgrupp</b><br>Koreografi: Jarkko Mandelin och arbetsgruppen<br>Dansare: Sanni Giordani, Jyrki Kasper,  Mia Jaatinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne och Oskari Turpeinen<br>Dansare på turnén: Sanni Giordani, Mia Jaatinen, Kalle Lähde, Oskari Turpeinen, Minna Kaaronen, Suvi Nieminen, Manuela Hierl, Hugo Sellam<br>Turnétekniker: Niila Rantala<br>Scenografi: William Iles<br>Ljuddesign: Janne Hast<br>Kostymdesign: Elina Kolehmainen<br>Koreografassistent: Suvi Nieminen<br>Produktion: Helsinki Dance Company/Helsingfors stadsteater<br>Turnéproduktion: Kinetic Orchestra</p><p><i>\"GRAVITY är som vind och sol och ett friskt regn för en själ som svälter av brist på dans.\"</i><br>Merja Koskiniemi, HS 14.11.2021</p><p><i>\"Jag får nästan lust att säga att om du bara ska se en dansföreställning i höst, så är de här 45 minuterna ett måste.”</i><br>Annikki Alku, Demokraatti 12.11.2021</p><p>Längd: 50 minuter<br>Inget språk</p>",
                "en": "<p>Gravity is a 50-minute long, high-paced, physically stunning performance danced by eight highly skilled dancers.</p><p>The piece follows the continuum of choreographer <b>Jarkko Mandelin's</b> extremely physical and movement-focused dance works.</p><p>“Gravity functions as a sign of the times. Multi-layered and fast-paced, a web weaved from many different movement techniques and cultures of physicality. The speed and emphasis on movement not only research and visualise gravity but also time, both literally and more generally by commenting on it through its mere existence.” – Choreographer Jarkko Mandelin</p><p>The dancers fly in the air, catch, lift and carry each other, seamlessly blending acrobatic partnering into the fabric of the piece in Kinetic Orchestra’s distinctive style. Forceful manipulation of pace and rhythm, twitching movement and stills and crashes that quickly bring accelerated movement sequences to a halt further create the sense and feeling of Gravity. This is echoed in the simple yet effective scenography by William Iles and Janne Hast’s relentless sound design.</p><p>Gravity creates an immersive atmosphere of something pulling us in and simultaneously looming over us. The dramaturgical structure follows an urgent loop of overlapping scenes, each less than two minutes long. While doing so, the work grasps something fundamental about the time we live in and its unrelenting pace.</p><p>The piece was produced in collaboration with Helsinki City Theatre's Dance Company HDC.</p><p>Duration: 50 minutes</p><p><b>Working group:</b><br>Choreography: Jarkko Mandelin & the working group<br>Dancers: Sanni Giordani, Jyrki Kasper, Mia Jaatinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne, ja Oskari Turpeinen<br>Dancers on tour: Sanni Giordani, Mia Jaatinen, Kalle Lähde, Suvi Nieminen, Hugo Sellam, Manuela Hierl, Minna Kaaronen, Oskari Turpeinen</p><p>Technician on tour: Niila Rantala<br>Scenography: William Iles<br>Sound Design: Janne Hast<br>Costume Design: Elina Kolehmainen<br>Choreographer's assistant: Suvi Nieminen</p><p>Production: Helsinki Dance Company and Helsinki City Theatre<br>Tour production: Kinetic Orchestra <br>Photos: Petra Tiihonen</p><p>Reviews:</p><p>“Gravity is like the wind, and the sun, and fresh rain, for the soul starving for dance.” – Merja Koskiniemi, HS 14.11.2021</p><p>“I feel an urge to say that if one is going to see only one dance performance this fall, then this 50-min is a must.” – Annikki Alku, Demokraatti 12.11.2021</p><p>“Jarkko Mandelin’s choreography is a combination of bubbling energy and skin-piercing sensitivity.” – Matti Saarela, blog: Kielipuolen päiväkirja, 12.11.2021</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64207",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/eventseries/name-3695509"
                    },
                    "price": {
                        "fi": "35 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151724,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-16T15:13:56.802303Z",
                    "last_modified_time": "2024-07-16T15:13:56.802319Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756131.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151724/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-16T15:13:56.735311Z",
            "last_modified_time": "2024-12-20T01:14:21.523130Z",
            "date_published": null,
            "start_time": "2024-12-11T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suositut a cappella kuorot joulukonsertissa"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A8AECBC8C1063B8075C6A21D8D9BB90F/The_Most_Wonderful_Time"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Most Wonderful Time – SOLALA (SWE) & Let Us be Frank"
            },
            "description": {
                "fi": "<p>Suositut a cappella kuorot joulukonsertissa</p><p>Let Us Be Frank järjestää tänä vuonna aivan erityisen joulukonsertin yhdessä ruotsalaisen trion Solalan kanssa, joka on yksi Ruotsin suosituimmista a cappella -yhtyeistä! Ryhmästä on tullut ilmiö sosiaalisessa mediassa ja se on myös tunnettu Ruotsin televisiosta. Solala on aiemmin myynyt loppuun konserttinsa Suomessa, joten hanki lippusi ajoissa!</p><p>Tarjoamme sekä svengaavaa, raikasta ohjelmistoa, että klassikoita joulutunnelmissa.</p><p>Lisää meistä: www.letusbefrank.fi  ja www.solala.se<br>Instagramissa @letusbefrankchoir</p><p>Konsertti kestää noin 2 tuntia väliajan kanssa, tauko on 30 minuutin pituinen.</p><p>Tapahtuma sopii koko perheelle, mutta koska konsertti on melko pitkä, emme suosittele sitä perheen kaikkein pienimmille.</p>"
            },
            "provider": {
                "fi": "Let Us Be Frank"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63827",
            "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/artist/tapiola-big-band/",
                        "sv": "https://www.lippu.fi/artist/tapiola-big-band/",
                        "en": "https://www.lippu.fi/artist/tapiola-big-band/"
                    },
                    "price": {
                        "fi": "24,50 € / 20 €",
                        "sv": "24,50 € / 20 €",
                        "en": "24,50 € / 20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-30T10:15:14.831390Z",
                    "last_modified_time": "2024-10-30T10:15:14.831407Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753148.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152908/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-30T10:15:14.775885Z",
            "last_modified_time": "2024-12-20T01:14:21.435383Z",
            "date_published": null,
            "start_time": "2024-12-11T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Legendaarisen Tapiola Big Bandin joulukonserttiin on valikoitu parhaat koti- ja ulkomaiset joulun klassikkosävelmät.",
                "sv": "Legendariska Tapiola Big Bands julkonsert innehåller ett urval av de bästa julklassikerna både från hemlandet och utlandet.",
                "en": "The legendary Tapiola Big Band’s Christmas concert includes the best Christmas classics from Finland and abroad."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D4CF96828E4BC2E7D32A7998559D0DD/Christmas_Time_is_Here",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D4CF96828E4BC2E7D32A7998559D0DD/Christmas_Time_is_Here",
                "en": "http://www.malmitalo.fi/en/events/event/3D4CF96828E4BC2E7D32A7998559D0DD/Christmas_Time_is_Here"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Christmas Time is Here – Tapiola Big Band solistinaan Anna Inginmaa",
                "sv": "Christmas Time is Here – Tapiola Big Band med Anna Inginmaa som solist",
                "en": "Christmas Time is Here – Tapiola Big Band with vocal soloist Anna Inginmaa"
            },
            "description": {
                "fi": "<p>Legendaarisen Tapiola Big Bandin joulukonserttiin on valikoitu parhaat koti- ja ulkomaiset joulun klassikkosävelmät.</p><p>Tapiola Big Bandin tunnelmallisessa Christmas Time is Here -joulukonsertissa kuullaan rakkaita ja tuttuja joululauluja eri vuosikymmeniltä. Lähde mukaan tunnelmalliselle matkalle läpi vuosikymmenten joululaulujen parissa. Konsertissa kuullaan perinteisten joululaulujen lisäksi musiikkia mm. Sammy Nesticolta, joka edustaa big band-musiikin säveltäjien raskainta sarjaa ja on kirjoittanut musiikkia esimerkiksi Count Basien orkesterille.</p><p>Vuonna 1969 perustettu Tapiola big band koostuu tunnetuista jazzmuusiikoista ja aktiiviharrastajista. Tänä vuonna 55 v täyttävä legendaarinen orkesteri on yksi Suomen vanhimmista aktiivisesti toimivista big band -kokoonpanoista ja Tapiola big band onkin monelle jazz-harrastajalle lähes synonyymi suomalaiselle big band -perinteelle. Orkesterin ohjelmistoon kuuluu tunnettujen big bandien klassikot sekä uudempi kotimainen big band musiikki.<br>Tapiola Big Bandiä johtaa kapellimestari Markku Renko, joka on trumpetinsoiton mestari ja musiikin monipuolinen ammattilainen. Hän on arvostettu muusikko, säveltäjä, sovittaja, kapellimestari ja pedagogi, joka on soittanut yli 500 äänitteellä.</p><p>Konsertin valovoimainen solisti, Anna Inginmaa, on artisti, jonka intensiivinen tulkinta ja tummanpuhuva ääni kuljettavat musiikilliseen maailmaan, jonka mittakaava ulottuu tarkkanäköisestä pohdiskelusta laajankin kankaan vaivattomasti täyttävään melodraamaan. Anna Inginmaa on lumoava tulkitsija, joka kuuluu maamme jazzlaulajien kärkinimiin.</p>",
                "sv": "<p>Legendariska Tapiola Big Bands julkonsert innehåller ett urval av de bästa julklassikerna både från hemlandet och utlandet.</p><p>I den stämningsfulla julkonserten \"Christmas Time is Here\" med Tapiola Big Band får vi höra älskade och välbekanta julsånger från olika årtionden. Följ med på en stämningsfull resa genom julens sånger över årtionden. Utöver traditionella julsånger framförs musik från bland annat Sammy Nestico, en av de främsta kompositörerna inom storbandsmusik, som har skrivit musik för exempelvis Count Basies orkester.</p><p>Tapiola Big Band, som grundades år 1969, består av kända jazzmusiker och aktiva entusiaster. Den legendariska orkestern, som i år fyller 55 år, är en av Finlands äldsta aktivt verksamma storbandsensembler och är för många jazzentusiaster närapå synonymt med den finska storbandstraditionen. Orkesterns repertoar omfattar klassiker från kända storband samt nyare inhemsk storbandsmusik. Tapiola Big Band leds av kapellmästare Markku Renko, en mästare på trumpet och en mångsidig musikproffs. Han är en respekterad musiker, kompositör, arrangör, dirigent och pedagog som har medverkat på över 500 inspelningar.</p><p>Konsertens lysande solist, Anna Inginmaa, är en artist vars intensiva tolkning och mörka röst skapar en musikaliskt storslagen värld, från skarp iakttagelse till storslagen melankoli. Anna Inginmaa är en fängslande tolkare och en av vårt lands främsta jazzsångare.</p>",
                "en": "<p>The legendary Tapiola Big Band’s Christmas concert includes the best Christmas classics from Finland and abroad.</p><p>In Tapiola Big Band’s atmospheric \"Christmas Time is Here\" concert, cherished and familiar Christmas songs from various decades will be performed. Embark on an evocative journey through decades of Christmas music. In addition to traditional Christmas songs, the concert will feature music from, among others, Sammy Nestico, one of the most esteemed composers in big band music, who has written for the likes of Count Basie’s orchestra.</p><p>Founded in 1969, Tapiola Big Band is composed of renowned jazz musicians and active enthusiasts. This legendary orchestra, celebrating its 55th anniversary this year, is one of Finland's oldest active big bands and, for many jazz fans, is nearly synonymous with the Finnish big band tradition. The orchestra’s repertoire includes classics from well-known big bands as well as more recent Finnish big band music. Tapiola Big Band is led by conductor Markku Renko, a trumpet master and a versatile music professional. He is a respected musician, composer, arranger, conductor, and educator who has played on over 500 recordings.</p><p>The concert's brilliant soloist, Anna Inginmaa, is an artist whose intense interpretation and rich, dark voice transport listeners into a musical realm spanning sharp insight to sweeping melodrama. Anna Inginmaa is an enchanting performer and one of the leading jazz vocalists in Finland.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63827/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65101",
            "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: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:755/?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/kino-helios-crossing-3780609/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153091,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:29.251843Z",
                    "last_modified_time": "2024-11-27T11:14:29.251937Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745815.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153091/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:29.210605Z",
            "last_modified_time": "2024-12-20T01:14:21.350553Z",
            "date_published": null,
            "start_time": "2024-12-11T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Crossing (7) – Kino Helios",
                "sv": "Crossing (7) – Kino Helios",
                "en": "Crossing (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.</p><p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan. Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa.</p><p>Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.</p><p>Ruotsin ehdokas Pohjoismaiden neuvoston vuoden 2024 elokuvapalkinnon saajaksi.</p><p>Ikäraja: 7<br>Kesto: 106 min.<br>Ensi-ilta: 08.11.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65101/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65005",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153042,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-16T13:14:59.507696Z",
                    "last_modified_time": "2024-11-16T13:14:59.507713Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-16T13:14:59.469189Z",
            "last_modified_time": "2024-12-20T01:14:21.259198Z",
            "date_published": null,
            "start_time": "2024-12-11T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.",
                "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.",
                "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_",
                "en": "http://www.vuotalo.fi/en/events/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mummola (7) – Keskiviikkokino",
                "sv": "Mummola (7) – Onsdagskino",
                "en": "Mummola (7) – Wednesday movie"
            },
            "description": {
                "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Kesto: 115 min<br>K-7<br>Kieli: suomi, tekstitys ruotsiksi<br>Vapaa sisäänpääsy!<br>Ohjaaja: Tia Kouvo, 2023<br>Näyttelijät:Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.</p>",
                "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Längd: 115 min.<br>F-7<br>Språk: finska, undertexter på svenska<br>Fri entré!<br>Regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.</p>",
                "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Duration: 115 mins.<br>Age recommendation: 7+<br>Language: Finnish with subtitles in Swedish<br>Free entry!<br>Director: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65005/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63579",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/",
                        "sv": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/",
                        "en": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/"
                    },
                    "price": {
                        "fi": "25 €",
                        "sv": "25 €",
                        "en": "25 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152128,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-16T12:15:41.715462Z",
                    "last_modified_time": "2024-08-16T12:15:41.715480Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751672.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152128/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-16T12:15:41.681018Z",
            "last_modified_time": "2024-12-20T01:14:21.141312Z",
            "date_published": null,
            "start_time": "2024-12-11T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.",
                "sv": "Vi kommer i julstämning! På konserten får vi höra stämningsfulla och älskade julsånger.",
                "en": "Let's get ready for Christmas! The concert will feature atmospheric and touching Christmas carols."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti",
                "en": "http://www.kanneltalo.fi/en/events/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jore Marjaranta & Olli Ahvenlahti – Joulun tuoksu -konsertti",
                "sv": "Jore Marjaranta & Olli Ahvenlahti – Konsert – Joulun tuoksu, Doften av jul",
                "en": "Jore Marjaranta & Olli Ahvenlahti – Christmas Concert"
            },
            "description": {
                "fi": "<p>Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Leningrad Cowboys -yhtyeen keulahahmona tutuksi tullut kaunisääninen pop-tenori Jore Marjaranta on tehnyt mittavan soolouran laulaja-lauluntekijänä useiden albumien ja esiintymisten myötä.</p><p>Pianon ääreen istahtaa Olli Ahvenlahti, tuo television monista musiikkiohjelmista tuttu pianisti, säveltäjä ja kapellimestari, kotimaisen musiikkiviihteen grand old man.</p><p>Kaksikon Joulun tuoksu -konserttikokonaisuudessa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Kesto 1 t 50 min, sis. 20 min väliajan</p>",
                "sv": "<p>Vi kommer i julstämning! På konserten får vi höra stämningsfulla och älskade julsånger.</p><p>Den skönsjungande poptenoren Jore Marjaranta, som blev känd som frontfigur i bandet Leningrad Cowboys, har haft en omfattande solokarriär som sångare och låtskrivare med flera album och framträdanden.</p><p>Vid pianot sitter Olli Ahvenlahti, pianist, kompositör och dirigent, den finländska musikunderhållningens grand old man, känd från många musikprogram i TV.</p><p>Duons konsert Joulun tuoksu innefattar stämningsfulla och älskade julsånger.</p><p>Längd 1 h 50 min., inkl. en paus på 20 minuter</p>",
                "en": "<p>Let's get ready for Christmas! The concert will feature atmospheric and touching Christmas carols.</p><p>The beautiful pop-tenor of Jore Marjaranta, known for being the frontman of the Leningrad Cowboys, has forged an extensive solo career as a singer-songwriter with several albums and shows.</p><p>At the piano, we have Olli Ahvenlahti, pianist, composer and conductor familiar from many music shows on television, the grand old man of Finland’s music entertainment.</p><p>The duo's Christmas Concert will feature atmospheric and touching Christmas songs.</p><p>Duration 1 h 50 min, incl. 20 min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}