Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
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=732
{ "meta": { "count": 32759, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=733", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=731" }, "data": [ { "id": "kulke:63429", "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: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: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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T15:13:41.054678Z", "last_modified_time": "2024-06-27T15:13:41.054694Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749889.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151567/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T15:13:41.004682Z", "last_modified_time": "2024-08-29T05:13:21.288698Z", "date_published": null, "start_time": "2024-09-02T07:15:00Z", "end_time": "2024-09-02T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F39E7847CC5787440AF057872F174375/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/F39E7847CC5787440AF057872F174375/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/F39E7847CC5787440AF057872F174375/Musical_Art_Adventure" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://urly.fi/3zLO\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569\">ilmoittaudu tästä mukaan</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 30 min <br>Age group: 3–12 months<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</u></a></p>" }, "name": { "fi": "Musiikillinen taideseikkailu – vauvoille", "sv": "Musikaliskt konstäventyr – för bebisar", "en": "Musical Art Adventure – for babies" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63429/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63422", "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: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: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: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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151556, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T11:13:29.924919Z", "last_modified_time": "2024-06-27T11:13:29.924938Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749875.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151556/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T11:13:29.879067Z", "last_modified_time": "2024-08-29T05:13:21.235960Z", "date_published": null, "start_time": "2024-09-02T06:00:00Z", "end_time": "2024-09-02T06:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1E22339645B2634E949F12704C240EF6/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/1E22339645B2634E949F12704C240EF6/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/1E22339645B2634E949F12704C240EF6/Musical_Art_Adventure" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63422/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63596", "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: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: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/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151483, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T13:13:05.133155Z", "last_modified_time": "2024-06-17T13:13:05.133170Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751709.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151483/?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-06-17T13:13:05.118538Z", "last_modified_time": "2024-08-29T05:13:21.095103Z", "date_published": null, "start_time": "2024-09-01T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.", "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FA9B9955E749BBEA0BAA5DC4B0AE7D30/Ter_n_Brno_Pienia_vierailuja", "sv": "http://www.annantalo.fi/sv/evenemang/event/FA9B9955E749BBEA0BAA5DC4B0AE7D30/SAMPO_Festivaali_Little_Visitors_NETTIIN", "en": "http://www.annantalo.fi/en/events/event/FA9B9955E749BBEA0BAA5DC4B0AE7D30/Ter_n_Brno_Little_Visitors" }, "description": { "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>", "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>" }, "name": { "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali", "sv": "SAMPO Festivaali:Little Visitors_NETTIIN", "en": "Terén Brno: Little Visitors – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63596/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63857", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=mukamas", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=mukamas" }, "description": null, "price": { "fi": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151486, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T15:12:58.011667Z", "last_modified_time": "2024-06-17T15:12:58.011684Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753228.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151486/?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-06-17T15:12:57.972405Z", "last_modified_time": "2024-08-29T05:13:21.040564Z", "date_published": null, "start_time": "2024-09-01T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Esitys yhdistelee hauskasti nukketeatteria, musiikkia ja tanssia.", "en": "The performance combines puppetry, music and dance in a fun way." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BDF568114211A82D6F0382436CF8094C/Teatteri_Mukamas_Juhlapaiva", "en": "http://www.annantalo.fi/en/events/event/BDF568114211A82D6F0382436CF8094C/Theatre_Mukamas_Celebration_Day" }, "description": { "fi": "<p>Esitys yhdistelee hauskasti nukketeatteria, musiikkia ja tanssia.</p><p>Kaksi ystävystä päättää järjestää Fea-koiralle yllätyksen, mutta yleisön apua kaivataan. Mitä juhlapäivään tarvitaan? Mansikoita, hattaroita vai punajuuria ja porkkanoita? Tehdään yhdessä juhlapäivä!<br> <br>Käsikirjoitus, ohjaus ja visuaalinen suunnittelu: Katarina Stycz<br>Musiikki: Henrika Nieminen<br>Koreografia: Raisa Kekarainen<br>Näyttelijät: Ella Numminen ja Riikka Nyrhilä</p><p>Kesto: 35 min<br>Kieli: suomi<br>Ikäsuositus: koko perhe</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi</p>", "en": "<p>The performance combines puppetry, music and dance in a fun way.</p><p>Two friends decide to organize a surprise for Fea the dog, but the audiences´ help is needed. What does one need for a celebration? Strawberries, cotton candy or beets and carrots? Let's celebrate together!</p><p>Script, direction and visual design: Katarina Stycz<br>Music: Henrika Nieminen<br>Choreography: Raisa Kekarainen<br>Actors: Ella Numminen and Riikka Nyrhilä<br>Lighting design: Juha Kaijomaa</p><p>Duration: 35 min<br>Age recommendation: 0+<br>Language: Finnish</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo<br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p>" }, "name": { "fi": "Teatteri Mukamas: Juhlapäivä – SAMPO Festivaali", "en": "Theatre Mukamas: Celebration Day – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63857/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63595", "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: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: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/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151578, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-28T12:12:58.656004Z", "last_modified_time": "2024-06-28T12:12:58.656018Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151578/?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-06-28T12:12:58.632130Z", "last_modified_time": "2024-08-29T05:13:20.985524Z", "date_published": null, "start_time": "2024-09-01T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.", "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/22C9AC4669C60B24D0535F65DA6E5837/Ter_n_Brno_Pienia_vierailuja", "sv": "http://www.annantalo.fi/sv/evenemang/event/22C9AC4669C60B24D0535F65DA6E5837/SAMPO_Festivaali_Little_Visitors_NETTIIN", "en": "http://www.annantalo.fi/en/events/event/22C9AC4669C60B24D0535F65DA6E5837/Ter_n_Brno_Little_Visitors" }, "description": { "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>", "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>" }, "name": { "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali", "sv": "SAMPO Festivaali:Little Visitors_NETTIIN", "en": "Terén Brno: Little Visitors – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64081", "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: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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/" }, "description": null, "price": { "fi": "17,50 €", "sv": "17,50 €", "en": "17,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-18T12:13:41.045733Z", "last_modified_time": "2024-06-18T12:13:41.045751Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753193.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-18T12:13:41.014166Z", "last_modified_time": "2024-08-29T05:13:20.926194Z", "date_published": null, "start_time": "2024-08-31T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Varjoteatteria ja livemusiikkia yhdistävä esitys vie tutkimaan, miten koemme valon, pimeyden ja varjojen leikin. Millaisia tunteita se meissä herättää?", "sv": "En föreställning som kombinerar skuggteater och levande musik får oss att utforska hur vi upplever leken mellan ljus, mörker och skuggor. Hurdana känslor väcker den hos oss?", "en": "Tunnel is an unusual production that seeks comfort in the dark and treats light like a delicious dessert." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2786942A8B22F696D9C4B6758AA5DF91/Tunnel", "sv": "http://www.stoa.fi/sv/evenemang/event/2786942A8B22F696D9C4B6758AA5DF91/Tunnel", "en": "http://www.stoa.fi/en/events/event/2786942A8B22F696D9C4B6758AA5DF91/Tunnel" }, "description": { "fi": "<p>Varjoteatteria ja livemusiikkia yhdistävä esitys vie tutkimaan, miten koemme valon, pimeyden ja varjojen leikin. Millaisia tunteita se meissä herättää?</p><p>Aluksi näyttää siltä, että valoa voidaan hallita, kun taas pimeyttä – tuntematonta, vaarallista – ei voi. Tilanne kuitenkin kääntyy pian päinvastaiseksi: tarvitaan vain ripaus rohkeutta sekä yhteistyötä ja voimme turvallisesti nauttia pimeydestä ja annostella sitä itse!</p><p>Tunnelissa asuu sekä valo että pimeys. Pimeässä emme näe värejä, emme voi havaita todellisia muotoja ja kokoja, emme tunnista rakennetta koskematta, emmekä pysty määrittämään etäisyyksiä. Valossa kylpenyt maailma katoaa, äänet vääristyvät epämääräisiksi ja moni tuntee olonsa epämukavaksi. Ehkä pelokkaaksikin?</p><p>Valolla voi leikkiä, mutta valolla leikkiminen tarkoittaa myös pimeyden kanssa leikkimistä. Tiedämmekö yhä minkä värinen ja muotoinen maailma ympärillämme on? Millainen se on tekstuuriltaan? Missä me olemme? Entä keitä olemme – menetämmekö myös me pimeydessä värimme, muotomme, rakenteemme, syvyytemme ja kokomme?</p><p>Valon ja pimeyden animaatioon perustuva varjoteatteriesitys luo ”leikkipaikan pimeydelle”. Pimeässä ympäristössä luodaan assosiatiivisia visuaalisia ja äänikuvia, jotka leikkisästi esittävät kysymyksiä pelosta ja rohkeudesta. Tunneli on epätavallinen esitys, joka etsii mukavuutta pimeässä ja kohtelee valoa kuin se olisi herkullinen jälkiruoka.</p><p>Esitys sisältää valotehosteita.</p><p>Yhteistuotanto Klaipėdan nukketeatterin (Liettua) kanssa osana eurooppalaista Mapping-projektia.</p><p>Kesto: 50 min<br>Ikäsuositus: 5+<br>Kieli: sanaton, Suomi (tallenteelta)</p><p>Ohjaaja, AD, lavastaja: Miha Golob<br>Dramaturgi: Mojca Redjko<br>Pukusuunnittelija: Dajana Ljubičić<br>Musiikki: Andrius Šiurys<br>Virtuaalisen sisällön toteutus: Borut Kumperščak<br>Valosuunnittelija: Gregor Kuhar<br>Näyttelijät: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Lämmin kiitos yhteistyöstä: Ada, Ana, Brin, Jonatan, Lara, Luisa, Oliver, Timeja,<br>Varja, Veno, Vid, Zora<br>Tuotantopäällikkö, äänisuunnittelija ja videoteknikko: Aleš Erjavec<br>Keskustelujen äänitys ja äänimateriaalin editointi: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Tuottajat: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Valot: Gregor Kuhar/Kristjan Vidner<br>Lavatekniikka: Sašo Kitić<br>Lavastus, nuket, rekvisiitta ja puvut: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror-tuotanto: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> on palkittu teatteri- ja nukkeohjaaja. Hänen alkuperäiset konseptinsa perustuvat usein ajatukseen tutkimisesta ja materiaalilla leikkimisestä, mikä antaa myös katsojalle aktiivisen ja luovan roolin teoksissa. Osana European Mapping -projektia Golob on tuonut Ljubljanan nukketeatteriin alkuperäisen Tunnel-projektinsa, jossa tutkitaan valoa ja pimeyttä teatterin keinoin.</p><p><b>Klaipėdan nukketeatteri</b> (1991) keskittyy rohkeasti uusien ilmaisutapojen löytämiseen nukeille, ja sen ohjelmisto koostuu sekä paikallisten että ulkomaisten kirjailijoiden tulkinnoista. Teatterin päätehtävä on esittää klassista ja modernia nukketeatteria Klaipėdan ja sen lähialueen lapsille ja nuorille, mutta Länsi-Liettuan ainoana ammattimaisena nukketeatterina se tuottaa teoksia kaikenikäisille yleisöille.</p><p><b>Mapping – Kartta esittävän taiteen estetiikasta nuorille katsojille</b> on laajamittainen Luova Eurooppa -ohjelman 2018–2022 tukema kansainvälinen hanke, joka keskittyy tataiteelliseen tutkimukseen ja aistisuhteen luomiseen nuoren yleisön (0–6-vuotiaiden) kanssa.</p>", "sv": "<p>En föreställning som kombinerar skuggteater och levande musik får oss att utforska hur vi upplever leken mellan ljus, mörker och skuggor. Hurdana känslor väcker den hos oss?</p><p>Först verkar det som om ljuset kan kontrolleras, medan mörkret – okänt, farligt – inte kan. Situationen förvandlas dock snart till det motsatta: Allt som krävs är en nypa mod och samarbete, och vi kan tryggt njuta av mörkret och själva välja hur stora doser vi vill ha!</p><p>I Tunneln bor både ljuset och mörkret. I mörkret kan vi inte se färger, vi kan inte upptäcka verkliga former och storlekar, vi kan inte identifiera en struktur utan att röra den och vi kan inte bestämma avstånd. En värld som badade i ljus försvinner, ljuden förvrängs och många känner sig obekväma. Kanske till och med rädda?<br>Man kan leka med ljuset, men att leka med ljuset innebär att man också leker med mörkret. Vet vi fortfarande vilken färg och form världen omkring oss har? Hurdan är dess textur? Var är vi? Och vem är vi – förlorar vi också vår färg, form, struktur, djup och storlek i mörkret?</p><p>Skuggteaterföreställningen som baserar sig på ljusets och mörkrets animation skapar en \"lekplats för mörkret\". I den mörka miljön skapas associativa visuella bilder och ljudbilder som lekfullt ställer frågor om rädsla och mod. Tunnel är en ovanlig föreställning som söker komfort i mörkret och behandlar ljuset som om det var en utsökt efterrätt.</p><p>Föreställningen innehåller ljuseffekter.<br>Samproduktion med Klaipėda dockteater (Litauen) som en del av det europeiska projektet Mapping.</p><p>Längd: 50 min.<br>Åldersrekommendation: 5+<br>Språk: ordlös, finska (från inspelning)</p><p>Regissör, AD, scenograf: Miha Golob<br>Dramaturg: Mojca Redjko<br>Kostymdesigner: Dajana Ljubičić<br>Musik: Andrius Šiurys<br>Virtuellt innehåll: Borut Kumperščak<br>Ljusdesigner: Gregor Kuhar<br>I rollerna: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Varmt tack för samarbetet: Ada, Ana, Brin, Jonathan, Lara, Luisa, Oliver, Timeja,<br>Göm, Veno, Vid, Zora<br>Produktionschef, ljuddesigner och videotekniker: Aleš Erjavec<br>Inspelning av dialogerna och ljudredigering: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Producenter: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Belysning: Gregor Kuhar/Kristjan Vidner<br>Scenteknik: Sašo Kitić<br>Scenografi, dockor, rekvisita och kostymer: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror-produktion: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> är en prisbelönt teater- och dockregissör. Hans ursprungliga koncept bygger ofta på idén om att utforska material och leka med det, vilket ger också åskådaren en aktiv och skapande roll i verken. Som en del av projektet European Mapping har Golob tagit med sig sitt ursprungliga projekt Tunnel till dockteatern i Ljubljana. I projektet utforskas ljus och mörker genom teater.</p><p><b>Klaipėda dockteater</b> (1991) fokuserar djärvt på att hitta nya uttryckssätt för dockor, och dess repertoar består av tolkningar av både lokala och utländska författare. Teaterns huvudsakliga uppgift är att framföra klassisk och modern dockteater för barn och ungdomar i Klaipėda och dess omgivning, men som den enda professionella dockteatern i västra Litauen producerar den verk för publik i alla åldrar.</p><p><b>Mapping – En karta över scenkonstens estetik för ung publik</b> är ett storskaligt internationellt projekt som stöds av programmet Kreativa Europa 2018–2022. Projektet fokuserar på konstnärlig forskning och på att skapa ett sensoriskt förhållande till ung publik (0–6-åringar).</p>", "en": "<p>Tunnel is an unusual production that seeks comfort in the dark and treats light like a delicious dessert.</p><p>Based on the animation of light and darkness, the performance creates a playground for darkness, where associative visual and sound images are created that playfully raise questions about fear and courage.</p><p>At first it seems that the light can be controlled, while the darkness— unknown, dangerous —cannot. However, in the performance, the situation is soon reversed – with a pinch of courage and a pinch of cooperation, we can safely enjoy the darkness as we dose it ourselves.</p><p>Tunnel is inhabited by both light and darkness. Light is inseparably linked to colour, shape, structure, depth, distance, and activity. In darkness the world revealed in the light disappears, sounds become distorted without a clear picture and many people feel discomfort. Fear?</p><p>Playing with light also means playing with darkness. Do we then still know what colour, shape, texture, size the world is? Where are we? And who are we – do we also change, lose our colour, shape, structure, depth and size?</p><p>Based on the animation of light and darkness, the performance creates a playground for darkness, where associative visual and sound images are created that playfully raise questions about fear and courage.</p><p>The performance includes lighting effects that may disturb sensitive viewers.</p><p>Co-produced with the Klaipėda Puppet Theatre (Lithuania) as part of the European project<br>Mapping.</p><p>Age recommendation 5+<br>Duration: 50 min<br>Language: nonverbal, Finnish (from recording)</p><p>Director, art director, set designer: Miha Golob<br>Dramaturgy: Mojca Redjko<br>Costume designer: Dajana Ljubičić<br>Music: Andrius Šiurys<br>Virtual content designer: Borut Kumperščak<br>Lighting designer: Gregor Kuhar<br>Actors: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Sincere thanks for kind cooperation: Ada, Ana, Brin, Jonatan, Lara, Luisa, Oliver, Timeja,<br>Varja, Veno, Vid, Zora<br>Performance manager, sound designer and video technician: Aleš Erjavec<br>Recording conversations and editing audio recordings: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Producer: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Lighting control: Gregor Kuhar/Kristjan Vidner<br>Stage technician: Sašo Kitić<br>Set, puppets, props and costumes: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror production: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> is a theatre and puppet director. His original concepts are often based on the idea of exploration and play with material, which consistently ensures an active and creative role of the spectator. As part of the European Mapping project, he returns to the Ljubljana Puppet Theatre with his original project Tunnel, in which light and darkness are the key theatrical symbols and the field of research.<br> <br><b>The Klaipėda Puppet Theatre</b> (1991) boldly focuses on discovering new ways of puppet expression, and its repertoire consists of interpretations by both local and foreign authorsThe theatre's main mission is to present classical and contemporary puppetry to children and young people from Klaipėda and the region, but as the only professional puppet theatre in western Lithuania it produces works for audiences of all ages.</p><p><b>Mapping – A Map on the aesthetics of performing arts for early years</b> – is a large-scale international project supported by the Creative Europe Programme 2018–2022.The project focuses on artistic research and the creation of a sensory relationship with young audiences (0–6 years old), resulting in four exhibitions, 16 premieres for younger audiences and five illustrated expert publications.</p>" }, "name": { "fi": "Tunnel – SAMPO Festivaali", "sv": "Tunnel – SAMPO-festivalen", "en": "Tunnel – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64144", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151550, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T13:12:52.575757Z", "last_modified_time": "2024-06-26T13:12:52.575772Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753482.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151550/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T13:12:52.563397Z", "last_modified_time": "2024-08-29T05:13:20.871141Z", "date_published": null, "start_time": "2024-08-31T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Flamenco-jazzia pohjoismaisella otteella! Cuejeron musiikki imaisee kuulijansa energisten rytmien ja sydäntä särkevien melodioiden maailmaan.", "sv": "Flamencojazz med ett nordiskt grepp! Cuejeros musik drar med sig åhörarna i en värld av energiska rytmer och hjärtinnerliga melodier.", "en": "Flamenco-jazz with a nordic twist! The music of Cuejero immerses the audience in a world of energetic rhythms and heartbreaking melodies." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/FB3357D676C89C185AB09DF92A9882E1/CUEJERO_ES_FI_Flamenco-jazzia_pohjoisesta_etelaan", "sv": "http://www.espanlava.fi/sv/evenemang/event/FB3357D676C89C185AB09DF92A9882E1/CUEJERO_ES_FI_Flamenco-jazz_de_norte_a_sur_", "en": "http://www.espanlava.fi/en/events/event/FB3357D676C89C185AB09DF92A9882E1/CUEJERO_ES_FI_Flamenco-jazz_de_norte_a_sur_" }, "description": { "fi": "<p>Flamenco-jazzia pohjoismaisella otteella! Cuejeron musiikki imaisee kuulijansa energisten rytmien ja sydäntä särkevien melodioiden maailmaan.</p><p>Näissä ainutlaatuisissa sävellyksissä toisensa kohtaavat viinistä ja rakkaudesta kertovat flamenco-laulut sekä pohjoismaalaisen jazzin tekstuurit. Tämä maukas cocktail on saanut inspiraationsa musiikillisista perinteistä, jotka alun perin syntyivät monenlaisten kulttuurien fuusioiduttua samalla maankamaralla. Soittimien syvät sävelet laulavat Cuejeron tarinat, jotka toisaalta pitävät kiinni perinteistä toisen jalan seisoessa vahvasti nyky-yhteiskunnassa.</p><p>Javier Sánchezin tuliset sävelet ja hänen karismaattinen lavaläsnäolonsa valloittivat kansainvälisen yleisön Cuejero-debyyttialbumilla. \"Inmerso\" on hänen uusin levynsä, jolla voi kuulla tiiviin yhteistyön maailmanluokan flamencolaulajien ja skandinaavisten jazzmuusikoiden välillä. Javier osoittaa kypsyytensä säveltäjänä yhdistelemällä loistavasti pohjoisen akustisia sointuja ja etelän intohimoisia säveliä.</p><p>Beatríz Vela aloitti musiikillisen matkansa kotikaupungissaan Granadassa. Hän valmistui konservatoriosta ja tutki flamencoon kiehtovaa maailmaa sukeltamalla \"tablaon\" maailmaan. Hän tutkii aktiivisesti flamencolauluperinteen integroimista huilun repertuaariin.</p><p>Milla-Maija Saari on tanssija, joka on viime aikoina tutkinut turvallisuuden tunnetta töissään. Hän aloitti flamencotanssin neljän vuoden ikäisenä Sinikka Vainion oppilaana. Saari on opiskellut Espanjassa, Alicia Márquezin tanssistudiolla Sevillassa ja Madridissa Amor de Dios -tanssikoulussa.</p><p>Milla-Maija Saari: Tanssi<br>Beatríz Vela: Huilu<br>Henri Syrjänen: Kitara<br>Javier Sánchez: Kontrabasso ja laulu<br>Teemu Mustonen: Perkussiot</p>", "sv": "<p>Flamencojazz med ett nordiskt grepp! Cuejeros musik drar med sig åhörarna i en värld av energiska rytmer och hjärtinnerliga melodier.</p><p>Dessa unika kompositioner sammanför flamencosånger om vin och kärlek och texturer av nordisk jazz. Denna läckra cocktail har inhämtat sin inspiration av musiktraditioner som uppstod då olika kulturer smälte samman inom ett och samma geografiska område. Instrumentens djupa toner sjunger om Cuejeros berättelser, som å ena sidan håller fast vid traditionen och å andra sidan är starkt förankrat i det moderna samhället.</p><p>Javier Sánchez eldiga toner och karismatiska scennärvaro förtjusade den internationella publiken på debutalbumet Cuejero. På hans senaste album “Inmerso” får vi höra ett nära samarbete mellan flamencosångare i världsklass och skandinaviska jazzmusiker. Javier visar sin mognad som kompositör genom att briljant kombinera Nordens akustiska ackord med söderns passionerade toner.</p><p><b>Medlemmarna:</b><br>Javier Sánchez: bas och sång<br>Milla-Maija Saari: dans<br>Beatríz Vela: flöjt<br>Henri Syrjänen: gitarr<br>Teemu Mustonen: slagverk</p>", "en": "<p>Flamenco-jazz with a nordic twist! The music of Cuejero immerses the audience in a world of energetic rhythms and heartbreaking melodies.</p><p>Stories of red wine and love of flamenco songs are gently blended with Nordic-Jazz textures. This tasty cocktail is inspired by those musical traditions born through the fusion of cultures sharing the same land. Their stories are sung by the deep voices of instruments with one foot in the tradition and the other one in current society.</p><p>The fiery tunes of Javier Sánchez and his charismatic stage presence captivated the attention of international audiences with his debut album. \"Inmerso” is his latest record and features an elegant collaboration between world-class flamenco singers and Scandinavian Jazz musicians. Javier demonstrates his maturity as a composer with a brilliant combination of northern acoustic sounds and passionate southern vocals.</p><p>Beatríz Vela began her musical journey in her hometown of Granada. She graduated from the conservatory and explored the captivating realm of flamenco by immersing herself in the world of “tablao”. She actively researches integrating the flamenco vocal tradition into the flute repertoire. <br> <br>Milla-Maija Saari is a dancer who has recently examined a sense of security in her works. She started flamenco dancing at the age of 4 as a student of Sinikka Vainio. Saari has studied in Spain at the Estudio de Baile Alicia Márquez in Sevilla and in Madrid at Amor de Dios dance school.</p><p><b>Line-up:</b><br>Javier Sánchez: Double bass and vocals<br>Milla-Maija Saari: Dance<br>Beatríz Vela: Flute<br>Henri Syrjänen: Guitar<br>Teemu Mustonen: Percussion</p>" }, "name": { "fi": "CUEJERO (ES/FI): Flamenco-jazzia pohjoisesta etelään", "sv": "CUEJERO (ES/FI): Flamenco-jazz de norte a sur", "en": "CUEJERO (ES/FI) Flamenco-jazz de norte a sur" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64144/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64143", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151549, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T13:12:52.492181Z", "last_modified_time": "2024-06-26T13:12:52.492195Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745077.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T13:12:52.464856Z", "last_modified_time": "2024-08-29T05:13:20.822189Z", "date_published": null, "start_time": "2024-08-31T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Flok on suomalaisen a cappellan seuraava household name. Musiikin ammattilaisista koostuva, palkittu kokoonpano uudistaa a cappellaa Suomessa kirjoittamalla uutta, omaa pop-musiikkia.", "sv": "Flok är nästa household name inom finländsk a cappella. Den prisbelönta ensemblen består av musikproffs och förnyar a cappellan i Finland genom att skriva ny, egen popmusik.", "en": "Flok is the upcoming household name of Finnish a cappella. Consisting of music professionals, the award-winning line-up is trying to reform Finnish a cappella by writing new, original pop music." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/14987BC9765064056D6042969B631EC3/Flok", "sv": "http://www.espanlava.fi/sv/evenemang/event/14987BC9765064056D6042969B631EC3/Flok", "en": "http://www.espanlava.fi/en/events/event/14987BC9765064056D6042969B631EC3/Flok" }, "description": { "fi": "<p>Flok on suomalaisen a cappellan seuraava household name. Musiikin ammattilaisista koostuva, palkittu kokoonpano uudistaa a cappellaa Suomessa kirjoittamalla uutta, omaa pop-musiikkia.</p><p>Flokin tuotannossa lauluyhtyemusiikki kohtaa modernin tuotantosoundin. Flok näkee itsensä konserttisalien lisäksi loppuunmyydyillä klubi- ja festarikeikoilla. Yhtye voitti kansainvälisen Tampereen Sävel -lauluyhtyekilpailun vahvistettujen yhtyeiden kategorian kesäkuussa 2023. Saman palkinnon ovat voittaneet aikanaan mm. Rajaton ja Club for Five. Lisäksi Flok voitti debyyttisinglellään ko. kilpailun yleisöäänestyksen.</p><p>Flok on kerännyt TikTok-videoilleen (@flokvocals) yhteensä yli miljoona katselukertaa ja onnistunut tavoitteessaan kutsua nuorempaa yleisöä genren pariin. Sosiaalisessa mediassa julkaisemistaan covereista Flok on saanut kiitosta niin levy-yhtiöiltä kuin artisteiltakin.</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>", "sv": "<p>Flok är nästa household name inom finländsk a cappella. Den prisbelönta ensemblen består av musikproffs och förnyar a cappellan i Finland genom att skriva ny, egen popmusik.</p><p>I Floks produktion möts ensemblemusik med ett modernt produktionssound. Flok ses inte bara i konsertsalar, utan också på utsålda klubb- och festivalspelningar. I juni 2023 vann bandet kategorin för förstärkta band på Tammerfors internationella vokalmusikfestival. Samma pris har tidigare vunnits av exempelvis Rajaton och Club for Five. Dessutom vann Flok publikomröstningen i den aktuella tävlingen med sin debutsingel.</p><p>Flok har samlat mer än en miljon visningar för sina TikTok-videor (@ flokvocals), och uppnått sitt mål att locka en yngre publik till genren. Flok har fått beröm av både skivbolag och artister för sina covers som publicerats på sociala medier.</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>", "en": "<p>Flok is the upcoming household name of Finnish a cappella. Consisting of music professionals, the award-winning line-up is trying to reform Finnish a cappella by writing new, original pop music.</p><p>Flok's production combines vocal ensemble music with modern production. Flok have been seen in concert halls as well as at sold-out club and festival gigs. The band won the international Tampere Vocal Music Festival’s ensemble contest in the amplified ensemble category in June 2023. Winners of the award include Rajaton and Club for Five, among others. In addition, Flok won the public vote of the contest with their debut single.</p><p>Flok has amassed over a million views on its TikTok videos (@flokvocals) and succeeded in its goal of enticing a younger audience to the genre. Flok has received praise from both record companies and artists for its covers published on social media.</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>" }, "name": { "fi": "Flok", "sv": "Flok", "en": "Flok" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64143/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64142", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T12:13:07.076954Z", "last_modified_time": "2024-06-26T12:13:07.076969Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744850.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T12:13:07.068057Z", "last_modified_time": "2024-08-29T05:13:20.771571Z", "date_published": null, "start_time": "2024-08-31T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Leija Lautamaja on helsinkiläinen taiteilija ja muusikko, joka on aiemmin kiertänyt maailmaa useiden menestyneiden folk-yhtyeiden, kuten ENKELin ja Floating Sofan, kanssa.", "sv": "Leija Lautamaja är en konstnär och musiker från Helsingfors som tidigare har turnerat runt om i världen med flera framgångsrika folkband, såsom ENKEL och Floating Sofa.", "en": "Leija Lautamaja is a Helsinki-based artist and musician who has previously toured the world with several successful folk bands, such as ENKEL and Floating Sofa." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/89738E2F269830B19A566596F8E2FEE9/Leija_Lautamaja", "sv": "http://www.espanlava.fi/sv/evenemang/event/89738E2F269830B19A566596F8E2FEE9/Leija_Lautamaja", "en": "http://www.espanlava.fi/en/events/event/89738E2F269830B19A566596F8E2FEE9/Leija_Lautamaja" }, "description": { "fi": "<p>Leija Lautamaja on helsinkiläinen taiteilija ja muusikko, joka on aiemmin kiertänyt maailmaa useiden menestyneiden folk-yhtyeiden, kuten ENKELin ja Floating Sofan, kanssa.</p><p>Soolomusiikissaan Leija ottaa kotimaisemman lähestymistavan. Tuoreen artistin tuotanto on lempeää suomirokkia, jonka sointimaailma muodostuu polkuharmoonin, sähkökitaran ja retro-rytmikoneen liitosta.</p><p>Hänen ihastuttava soundinsa takertuu sieluun ja tuo osin mieleen Samuli Putron ja Gösta Sundqvistin kaltaiset uranuurtajat, säilyttäen kuitenkin oman raikkaan ja uniikin tunnelmansa.</p>", "sv": "<p>Leija Lautamaja är en konstnär och musiker från Helsingfors som tidigare har turnerat runt om i världen med flera framgångsrika folkband, såsom ENKEL och Floating Sofa.</p><p>I sin solomusik har Leija ett mer inhemskt grepp. Den färska artistens produktion är mild Suomirock, vars klangvärld består av en kombination av trampharmonium, elgitarr och retrorytmmaskin.</p><p>Hennes förtjusande sound ljud klamrar sig fast vid själen och för tankarna till pionjärer såsom Samuli Putro och Gösta Sundqvist, samtidigt som det bevarar en egen fräsch och unik stämning.</p>", "en": "<p>Leija Lautamaja is a Helsinki-based artist and musician who has previously toured the world with several successful folk bands, such as ENKEL and Floating Sofa.</p><p>In her solo music, Leija takes a more fennistic approach. Her original music is gentle Finnish rock, the sound of which is a combination of pump organ, electric guitar and a retro rhythm machine.</p><p>Her delightful sound clings to the soul and reminds us of pioneers like Samuli Putro and Gösta Sundqvist, while maintaining its own fresh and unique atmosphere.</p>" }, "name": { "fi": "Leija Lautamaja", "sv": "Leija Lautamaja", "en": "Leija Lautamaja" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64092", "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: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: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:55/?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:p29865/?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/event/helsingin-kulttuurikeskus-stoa-sampo-festivaali-stoa-18735979/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-sampo-festivaali-stoa-18735979/" }, "description": null, "price": { "fi": "32 € / 21,50 €", "en": "32 € / 21,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151492, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-18T13:13:32.116685Z", "last_modified_time": "2024-06-18T13:13:32.116702Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753198.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151492/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-18T13:13:32.091180Z", "last_modified_time": "2024-08-29T05:13:20.650440Z", "date_published": null, "start_time": "2024-08-31T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.", "en": "Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/33DC03717298D5CF20B913BE42E5EF6D/Les_ombres_port_es_NATCHAV_FRA_", "en": "http://www.stoa.fi/en/events/event/33DC03717298D5CF20B913BE42E5EF6D/Les_ombres_port_es_NATCHAV_FRA_" }, "description": { "fi": "<p>Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.</p><p>Sirkus on saapunut kaupunkiin! Karavaani ottaa paikkansa keskusaukiolla ja lekavasaran iskut jylisevät, kun maahan lyödään tolppia valtavien, tuulessa pyörivien telttakankaiden kesyttämiseksi. Kaupunginjohtajat vastustavat vierailua, joten sirkus määrätään siirtymään kaupungin laitamille, akrobaatti pidätetään, ja hänen myötään koko maailma tuntuu olevan vangittuna.</p><p>Sirkusryhmä päättää toteuttaa mahtavan pakomatkan, joka on täynnä kekseliäitä käänteitä. Natchav (juosta pois, juosta karkuun romanikielellä) sekoittaa fantasiaa ja todellisuutta ja antaa maistiaisen vapauden tunteesta.</p><p>Varjon ja valon leikin kautta esitys kertoo yhteiskunnan marginaaliin sijoittuvan tarinan, jossa kaksi pohjimmiltaan vastakkaista maailmaa – sirkus ja vankila – sekoittuvat. Sanaton esitys yhdistää elävää musiikkia ja tarinan edetessä rakentuvaa visuaalisuutta ja luo näin uudenlaisen, provokatiivisen sommitelman todellisuuden ja fantasian välimaastoon.</p><p>Kesto: 60 min<br>Ikäsuositus: 8+<br>Kieli: sanaton</p><p>Esitys on osa SAMPO Festivaalin ohjelmistoa. Nukketeatteri Sampon kahdeksatta kertaa järjestämä festivaali esittelee kansainvälistä nukketeatteria eri paikoissa Helsingissä 28.8.–1.9.2024.</p><p>Festivaaliviikon aikana Stoan aulassa on esillä Les ombres porteés -ryhmän esityksen Natchav suunnitteluun ja toteutukseen liittyvä näyttely.</p><p>Idea ja suunnittelu: Les ombres portées, ryhmän nettisivut: www.lesombresportees.fr<br>Nuket ja valot: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Musiikki ja äänitehosteet: Séline Gülgönen (klarinetti), Simon Plane (trumpetti, tuuba, haitari, perkussiot)<br>Valot: Nicolas Dalban-Moreynas<br>Äänet: Yaniz Mango<br>Puvut: Zoé Caugant<br>Kiertuemanageri: Claire Van Zande</p><p>Margot Chamberlin avusti nukkien rakentamisessa ja esiintyi kanssamme vuoteen 2023 saakka. Apua antoivat myös Léo Maurel (ääniefektilaitteisto), Baptiste Bouquin (ulkopuolinen korva), Jean-Yves Pénafiel (ulkopuolinen korva).</p><p>Kiitokset myös seuraaville: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande</p><p>Esitys on omistettu ryhmämme arvostetulle jäsenelle Olivier Cuetolle, joka menehtyi maaliskuussa 2020. Hän oli mukana ideoimassa ja luomassa tätä esitystä ja esiintyi siinä aivan loppuun saakka.</p>", "en": "<p>Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free.</p><p>In the darkness of the early morning, the Natchav circus arrives to town. Its caravan of trailers and lorries take their place in the central square. The sledge gang begins its concert of steady blows, pounding the first stakes into the ground; the sound of the immense canvas whips through the air as the tent poles are hoisted to the sky.</p><p>Suddenly, out of concern for security, the authorities order the circus to leave, forcing them onto a vacant lot in the outskirts of town. Following a scuffle, one of the acrobats is arrested and jailed for contempt and rebellion. So, the circus troupe, along with the other prisoners, decide to carry out a spectacular escape, one full of ingenuity and twists and turns...</p><p>Through an extraordinary play of shadow and light, Natchav (go away, run away in Romani) recounts a story in which, on the margins of society, two fundamentally opposed worlds mingle — that of the circus and of the prison.</p><p>It is a story of intrigue that unfolds through a dynamic scenography. With no spoken dialogue, the visuals and music generated and performed live guide the narration, creating an original and provocative composition between reality and fantasy.</p><p>Duration: 60 min<br>Age recommendation: 8+<br>Language: nonverbal</p><p>Tickets: 32 € / 21,50 € <br>Tickets from Nukketeatteri Sampo.<br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Idea and design: Les ombres portées<br>Puppets and lights: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Music and sound effects: Séline Gülgönen (clarinet), Simon Plane (trumpet, tuba, accordion, percussion)<br>Lighting: Nicolas Dalban-Moreynas<br>Sound: Yaniz Mango<br>Costumes: Zoé Caugant<br>Touring: Claire Van Zande</p><p>Margot Chamberlin helped build the puppets and performed with us until 2023.<br>With help from: Léo Maurel (sound effect machines), Baptiste Bouquin (outside ear), Jean-Yves Pénafiel (outside eye)</p><p>Also thanks to: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande</p><p>We dedicate this show to Olivier Cueto, a cherished member of the company who passed away in March 2020. He imagined, created and performed this show with us until the very end.</p>" }, "name": { "fi": "Les ombres portées: NATCHAV (FRA) – SAMPO Festivaali", "en": "Les ombres portées: NATCHAV (FRA) – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63594", "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: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: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/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T13:13:05.042410Z", "last_modified_time": "2024-06-17T13:13:05.042425Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751706.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151482/?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-06-17T13:13:05.027501Z", "last_modified_time": "2024-08-29T05:13:20.569998Z", "date_published": null, "start_time": "2024-08-31T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.", "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0749F57B5BAE772E29FCE78BD8F87B2E/Ter_n_Brno_Pienia_vierailuja", "sv": "http://www.annantalo.fi/sv/evenemang/event/0749F57B5BAE772E29FCE78BD8F87B2E/SAMPO_Festivaali_Little_Visitor", "en": "http://www.annantalo.fi/en/events/event/0749F57B5BAE772E29FCE78BD8F87B2E/Ter_n_Brno_Little_Visitors" }, "description": { "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>", "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>" }, "name": { "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali", "sv": "SAMPO Festivaali:Little Visitor", "en": "Terén Brno: Little Visitors – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63594/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63856", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan" }, "description": null, "price": { "fi": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151481, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T13:13:04.943913Z", "last_modified_time": "2024-06-17T13:13:04.943928Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753226.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151481/?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-06-17T13:13:04.917061Z", "last_modified_time": "2024-08-29T05:13:20.515743Z", "date_published": null, "start_time": "2024-08-31T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”", "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EBF70AEDED8E8E7D04F48EA274AB06AC/Ornan_Braier_Raatalin_taikaseikkailu", "en": "http://www.annantalo.fi/en/events/event/EBF70AEDED8E8E7D04F48EA274AB06AC/Ornan_Braier_Tailor_made" }, "description": { "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun! Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti (käännetään suomeksi)<br>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p>Adaptaatio, suunnittelu, musiikki ja manipulointi: Ornan Braier<br>Taiteellinen valvonta: Marit Benisrael<br>Vaate- ja tekstiilisuunnittelu: Vali Mintzi<br>Nukenrakennus: Sharon Silver-Merrett<br>Valosuunnittelu: Shahar Maron<br>Mekaaniset rakennelmat: Shaul Mograbi-Berger, Ornan Braier<br>Kuvat: Dor Kedmi</p><p><b>Ornan Braier</b> on nukeillanäyttelijä, näyttelijä ja muusikko. Hän yhdistää esityksissään laajan valikoiman esittäviä taiteita ja on siten tullut tunnetuksi ainutlaatuisena ja omaperäisenä taiteilijana Israelissa ja ympäri maailmaa. Hänen näyttämökielensä perustuu voimakkaisiin visuaalisiin kuviin yhdistettynä omaleimaiseen musiikkiin, joten esitykset läpäisevät katsojan kaikki aistit. Hänen työnsä ovat voittaneet kansallisia ja kansainvälisiä palkintoja. Yhdessä Train Theatren kanssa tehty Tailor Made on kiertänyt ympäri maailmaa, ja se on voittanut lukuisia kansainvälisiä palkintoja. Ornanin toinen esitys, Little Love Machine eli Pieni Lempilaite (2019) nähtiin vuoden 2023 SAMPO Festivaalilla.</p>", "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and<br>music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English (translated in Finnish)<br>Tickets: 15 €, from Nukketeatteri Sampo: nukketeatterisampo.fi/esityskalenteri<br>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Adaptation, design, music and manipulation: Ornan Braier<br>Artistic supervision: Marit Benisrael<br>Costume and fabric design: Vali Mintzi<br>Puppet design: Sharon Silver-Merrett<br>Lighting design: Shahar Maron<br>Mechanical constructions: Shaul Mograbi-Berger, Ornan Braier<br>Photo: Dor Kedmi</p><p><b>Ornan Braier</b> is a puppeteer, actor and musician. He combines a wide variety of performing arts in his shows and thus has become a unique and original artist in Israel and around the world. His stage language is based on powerful visual images combined with distinctive music, which sweeps all the senses of the audience. His work has won local and international prizes. Tailor Made, produced together with the Train Theatre, has been performed around the world and has won local and international prizes. Another show by Ornan, Little Love Machine (2019) was seen on SAMPO Festival 2023 and it has also received several awards.</p>" }, "name": { "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaali", "en": "Ornan Braier: Tailor made – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63856/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63592", "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: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: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/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151480, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T13:13:04.831428Z", "last_modified_time": "2024-06-17T13:13:04.831442Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751705.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151480/?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-06-17T13:13:04.814109Z", "last_modified_time": "2024-08-29T05:13:20.436107Z", "date_published": null, "start_time": "2024-08-31T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.", "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F84DA7B08CA9F1235075E6911534DABC/Ter_n_Brno_Pienia_vierailuja", "sv": "http://www.annantalo.fi/sv/evenemang/event/F84DA7B08CA9F1235075E6911534DABC/SAMPO_Festivaali_Little_Visitor", "en": "http://www.annantalo.fi/en/events/event/F84DA7B08CA9F1235075E6911534DABC/Ter_n_Brno_Little_Visitors" }, "description": { "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>", "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>" }, "name": { "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali", "sv": "SAMPO Festivaali:Little Visitor", "en": "Terén Brno: Little Visitors – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63592/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64065", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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" }, { "@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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151498, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-19T15:12:59.232771Z", "last_modified_time": "2024-06-19T15:12:59.232786Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753763.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151498/?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-06-19T15:12:59.201139Z", "last_modified_time": "2024-08-29T05:13:20.384010Z", "date_published": null, "start_time": "2024-08-31T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa juhlistamaan Suomen luonnon päivää yhdessä muskariope Tuuli Paasolaisen kanssa laulamalla, leikkimällä, liikkumalla, loruttelemalla ja kehosoittimia soittamalla!", "sv": "Välkommen med att fira den finska naturens dag tillsammans med musikskoleläraren Tuuli Paasolainen! Vi sjunger, leker, rör på oss, rimmar och spelar kroppsinstrument!", "en": "Welcome to celebrate Finnish Nature Day together with music teacher Tuuli Paasolainen by singing, playing, moving, rhyming and playing body instruments!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2F039B42A82A7BB3E3E81E2436C854C4/Suomen_luonnon_paivan_Megamuskari", "sv": "http://www.stoa.fi/sv/evenemang/event/2F039B42A82A7BB3E3E81E2436C854C4/Megamusikskola_pa_finska_naturens_dag_", "en": "http://www.stoa.fi/en/events/event/2F039B42A82A7BB3E3E81E2436C854C4/Megamuskari_on_Finnish_Nature_Day_" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Suomen luonnon päivää yhdessä muskariope Tuuli Paasolaisen kanssa laulamalla, leikkimällä, liikkumalla, loruttelemalla ja kehosoittimia soittamalla!</p><p>Suomen luonnon päivän Megamuskari on suunnattu 0–8-vuotiaille aikuisen kanssa, mutta kaikenikäiset ovat lämpimästi tervetulleita mukaan. Pidetään yhdessä ääntä luonnon päivän kunniaksi! Pianistina Sergei Sokolov.</p><p>Kesto: 40 min<br>Ikäsuositus: 0–8-v aikuisen kanssa<br>Paikka: Stoan aukion viherlava, huonon sään sattuessa Stoan aulassa</p><p>Vapaa pääsy</p>", "sv": "<p>Välkommen med att fira den finska naturens dag tillsammans med musikskoleläraren Tuuli Paasolainen! Vi sjunger, leker, rör på oss, rimmar och spelar kroppsinstrument!</p><p>Megamusikskolan på den finska naturens dag riktar sig till 0–8-åriga i sällskap av en vuxen, men alla åldrar är varmt välkomna att delta. Vi musicerar tillsammans till ära för naturens dag! Pianist är Sergei Sokolov.</p><p>Längd: 40 min.</p><p>Åldersrekommendation: 0–8-åringar i sällskap av en vuxen</p><p>Plats: Stoaplatsens gröna scen, i händelse av dåligt väder foajén i Stoa</p><p>Fritt inträde!</p>", "en": "<p>Welcome to celebrate Finnish Nature Day together with music teacher Tuuli Paasolainen by singing, playing, moving, rhyming and playing body instruments!</p><p>The Megamuskari on Finnish Nature Day is intended for 0-8-year-olds with an adult, but all ages are welcome to join. Let's make some noise together to celebrate Nature Day! Pianist Sergey Sokolov.</p><p>Duration: 40 mins.</p><p>Age recommendation: 0-8 yrs with adult</p><p>Location: Green stage in Stoa Square, Stoa lobby in case of bad weather</p><p>Free of charge!</p>" }, "name": { "fi": "Suomen luonnon päivän Megamuskari", "sv": "Megamusikskola på finska naturens dag", "en": "Megamuskari on Finnish Nature Day" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64065/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63590", "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: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: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/yso:p2625/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "sv": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=little" }, "description": null, "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151479, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T13:13:04.697872Z", "last_modified_time": "2024-06-17T13:13:04.697886Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751703.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151479/?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-06-17T13:13:04.680954Z", "last_modified_time": "2024-08-29T05:13:20.305889Z", "date_published": null, "start_time": "2024-08-30T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.", "en": "Little Visitors is a theatre play for children, their parents, and all who love visiting others." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D43266A6BD750AB6A401C68BE668A4E0/Ter_n_Brno_Pienia_vierailuja", "sv": "http://www.annantalo.fi/sv/evenemang/event/D43266A6BD750AB6A401C68BE668A4E0/SAMPO_Festivaali_Llittle_Visitors", "en": "http://www.annantalo.fi/en/events/event/D43266A6BD750AB6A401C68BE668A4E0/Ter_n_Brno_Little_Visitors" }, "description": { "fi": "<p>Pieniä vierailuja on teatteriesitys lapsille, heidän vanhemmilleen ja kaikille, jotka rakastavat vierailuja toisten luona.</p><p>Melko erikoinen emäntämme asuu yhdessä eläinten, sienten ja uniolentojen kanssa. Hän hauduttaa väriaineita kukista, yrteistä ja mausteista ja pitää maalaamisesta. Maalatessaan hän on joko hiljaa tai mutisee itsekseen. Hän toivottaa sinut mielellään tervetulleeksi kotiinsa, jossa voit katsella hänen maalauksiaan, istua alas ja nauttia tästä ihmeellisestä tapaamisesta. Voit vapaasti maalata ja nauttia kupillisen mehua.</p><p>Pieniä vierailuja on yritys näyttää asioita läheltä. Voit kokea värin luomisen hetken, tuntea kuinka paperi imee värin, katsoa kuinka sivellintä pidellään, kuinka se liukuu pinnalla ja kuinka se vastustelee. Esitys on kurkistus tuttuihin ja yksinkertaisiin asioihin, jotka kuitenkin lähemmin katsoen puhuvat ihmeiden kielellä. Esitys etenee vuoropuheluna taidemaalari ja kuvittaja <b>Veronika Vlkován</b> ja nukkenäyttelijä ja lavastaja <b>Robert Smolíkin</b> välillä. Se on vuoropuhelua näyttelyn ja teatterin rajalla.</p><p>Kesto: 60 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo.<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi</p><p><b>Taiteilija Robert Smolík</b> on omistautunut luomaan nukkeja, kuvituksia ja lavastuksia. Hän on työskennellyt elokuvien nukkien parissa ja ollut ehdolla tsekkiläisen elokuva-alan palkinnon saajaksi lavastuskategoriassa. Hän on työskennellyt useiden teattereiden ja teatteriryhmien kanssa. Smolík asuu Jičínissä, missä hän on perustanut nukketeatterin. Tällä hetkellä hän toimii apulaisprofessorina DAMU:n soveltavan taiteen ja nukketeatterin laitoksella.</p><p><b>Taiteilija Veronika Vlková</b> on lastenkirjojen kuvittaja. Hän on työskennellyt paljon taiteilija Jan Šrámekin kanssa. Kaksikko on voittanut kirjoillaan muun muassa Vuoden kuvittaja -palkinnon Tšekin Grand Designissa 2020. Vlková työskentelee Brnon taiteiden tiedekunnassa.</p>", "en": "<p>Little Visitors is a theatre play for children, their parents, and all who love visiting others.</p><p>Our rather peculiar hostess lives together with animals, mushrooms and dream creatures. She brews colourful dyes from flowers, herbs and spices, and she likes to paint. While she does so, she is either silent or she is murmuring to herself. She’ll be happy to welcome you to her home, where you can look at her paintings, sit down and enjoy this miraculous meeting. Feel free to paint and have a cup of juice.</p><p>Little Visitors attempts to show things up close. To let you experience the moment of colour creation, feel how the paper soaks it up, see how to hold a brush, how it glides over the surface, and how it resists. It is a glance at things common and simple that, however, at a closer look speak in a language of miracles.</p><p>The performance unfolds as a dialogue between Veronika Vlková, a painter and an illustrator, and Robert Smolík, a puppeteer and a scenographer, both from Czech Republic. It is a dialogue on the border between an exhibition and theatre.</p><p>Duration: 60 min<br>Age recommendation: 4+<br>Language:nonverbal</p><p>Tickets 15 €<br>Tickets from Nukketeatteri Sampo. <br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi.</p><p><b>The artist Robert Smolík</b> is mainly dedicated to the creation of puppets, illustration & scenography. He has worked on the puppets for films and has been nominated for the Český lev award in the category of film set design. He has worked with a number of theatres and theatre groups. Smolík lives in Jičín, where he founded a puppet theatre. He is currently an assistant professor at DAMU, Department of Alternative and Puppet Theatre.</p><p><b>The artist Veronika Vlková</b> is mainly dedicated to the illustration of children's books, which she creates in collaboration with the artist Jan Šrámek. The duo has won the Illustrator of the Year Award at the Czech Grand Design in 2020. She works at the Faculty of Fine Arts in Brno.</p>" }, "name": { "fi": "Terén Brno: Pieniä vierailuja – SAMPO Festivaali", "sv": "SAMPO Festivaali: Llittle Visitors", "en": "Terén Brno: Little Visitors – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63590/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64031", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T11:14:36.422680Z", "last_modified_time": "2024-07-24T11:14:36.422698Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T11:14:36.357433Z", "last_modified_time": "2024-08-29T05:13:20.245653Z", "date_published": null, "start_time": "2024-08-30T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.", "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.", "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta", "en": "http://www.malmitalo.fi/en/events/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta" }, "description": { "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>", "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>", "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b> https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>" }, "name": { "fi": "M - Merkintöjä yhden malmilaisen tapauksesta", "sv": "M - Merkintöjä yhden malmilaisen tapauksesta", "en": "M - Merkintöjä yhden malmilaisen tapauksesta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64031/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64141", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/", "sv": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/", "en": "https://www.lippu.fi/artist/savoy-teatteri/savoy-lounaskonsertti-umo-helsinki-ensemble-tribuutti-ch-3562845/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151546, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T12:13:06.819076Z", "last_modified_time": "2024-06-26T12:13:06.819095Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752379.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151546/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T12:13:06.785520Z", "last_modified_time": "2024-08-29T05:13:20.193570Z", "date_published": null, "start_time": "2024-08-30T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Liisa Akimof julkaisi vuoden alussa pitkästä aikaa uuden albumin, Kaikenlaista uutta tulossa.", "sv": "Efter en lång paus släppte Liisa Akimof ett nytt album i början av året – Kaikenlaista uutta tulossa.", "en": "Early this year, Liisa Akimof released a new album, Kaikenlaista uutta tulossa." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C745651DB748A182B2F73DA5797A98BD/Liisa_Akimof_Yokerho", "sv": "http://www.espanlava.fi/sv/evenemang/event/C745651DB748A182B2F73DA5797A98BD/Liisa_Akimof_Yokerho", "en": "http://www.espanlava.fi/en/events/event/C745651DB748A182B2F73DA5797A98BD/Liisa_Akimof_Yokerho" }, "description": { "fi": "<p>Liisa Akimof julkaisi vuoden alussa pitkästä aikaa uuden albumin, Kaikenlaista uutta tulossa.</p><p>Levy sai innostuneen vastaanoton:</p><p>”Akimof putsaa pöydän anarkiallaan” (Riffi)</p><p>“Liisa Akimof osuu uuden levynsä ajankuvassa napakymppiin” (Demokraatti)</p><p>“Liisa Akimof on kokonaisvaltaisesti rock” (Keskisuomalainen)</p><p>Uuden albumin myötä albumilla soittavat muusikot muodostivat Yökerhon.</p><p>“Mukana on nuoremman polven nimekkäitä indiemuusikoita, joiden omissa tekemisissä ironisuus, tiedostavuus ja vilpittömyys yhdistyvät vähän samaan tapaan kuin Akimofilla itsellään” (Ahti Väntänen, Musiikkikirjastot).</p><p>Yökerhossa soittavat Mikko Siltanen (basso), Pekka Tuomi (kitara), Antti Vuorenmaa (kosketinsoittimet ja Sebastian Krühn (rummut).<br> <br>Liisa Akimof & Yökerhon kevään keikat ovat olleet puheenaiheita, energisiä ja yllätyksellisiä. Uusien biisien lisäksi settiin kuuluu joitakin Akimofin klassikoita kuten Tavaramarkkinoiden Kevät vuodelta 1986.</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>", "sv": "<p>Efter en lång paus släppte Liisa Akimof ett nytt album i början av året – Kaikenlaista uutta tulossa.</p><p>Albumet fick ett entusiastiskt mottagande:</p><p>“Akimof gör rent bord med sin anarki” (Riffi)</p><p>“Liisa Akimof träffar mitt i prick med tidsbilden på sitt nya album” (Demokraatti) “Liisa Akimof är total rock” (Keskisuomalainen)</p><p>Musikerna som spelar på albumet bildade bandet <b>Yökerho</b>. <br>“Med finns välkända indiemusiker av den yngre generationen som i sitt musicerande kombinerar ironi, medvetenhet och uppriktighet, på samma sätt som Akimof själv” (Ahti Väntänen, Musiikkikirjastot).</p><p>Yökerho består av <b>Mikko Siltanen</b> (bas), <b>Pekka Tuomi</b> (gitarr),<b> Antti Vuorenmaa </b>(keyboard) och <b>Sebastian Krühn</b> (trummor).<br> <br>Liisa Akimof & Yökerhos spelningar i våras har varit väckt diskussion och varit energiska och överraskande. Förutom nya låtar innehåller setet även några av Akimofs klassiker, såsom Tavaramarkkinoiden <i>Kevät</i> från 1986.</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>", "en": "<p>Early this year, Liisa Akimof released a new album, Kaikenlaista uutta tulossa.</p><p>The album was very well received:</p><p>\"Akimof wipes the slate clean with her anarchy\" (Riffi)</p><p>“Liisa Akimof hits the bull's-eye with the period portrayal on her new album” (Demokraatti) “Liisa Akimof is entirely rock” (Keskisuomalainen)</p><p>With the new album, its musicians formed the band, <b>Yökerho</b>.</p><p>\"They include renowned indie musicians from the younger generation, who combine irony, awareness and sincerity in what they do in a way similar to Akimof herself\" (Ahti Väntänen, Musiikkikirjastot).</p><p>Yökerho features <b>Mikko Siltanen</b> (bass), <b>Pekka Tuomi</b> (guitar), <b>Antti Vuorenmaa</b> (keyboards) and <b>Sebastian Krühn</b> (drums).<br> <br>Liisa Akimof & Yökerho's spring gigs have become talking points with their surprising energy. In addition to new songs, the set includes some of Akimof's classics, such as 1986’s <i>Kevät</i>, by Tavaramarkkinat.</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>" }, "name": { "fi": "Liisa Akimof & Yökerho", "sv": "Liisa Akimof & Yökerho", "en": "Liisa Akimof & Yökerho" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64141/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64140", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T12:13:06.714474Z", "last_modified_time": "2024-06-26T12:13:06.714490Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752378.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T12:13:06.696576Z", "last_modified_time": "2024-08-29T05:13:20.144583Z", "date_published": null, "start_time": "2024-08-30T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suomen Musiikki julkaisi kulttimaineeseen nousseen Brian-yhtyeen (ent. Brian & Helvetin Peruna) kolmannen albumin maaliskuussa 2024.", "sv": "Bandet Brian (tidigare Brian & Helvetin Peruna) har i det närmaste uppnått kultstatus. I mars 2024 släppte Suomen Musiikki bandets tredje album.", "en": "Suomen Musiikki released cult band Brian’s (formerly Brian & Helvetin Peruna) third album in March 2024." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9B4C5487560694BC1FEFADE0D1291A4C/Brian", "sv": "http://www.espanlava.fi/sv/evenemang/event/9B4C5487560694BC1FEFADE0D1291A4C/Brian", "en": "http://www.espanlava.fi/en/events/event/9B4C5487560694BC1FEFADE0D1291A4C/Brian" }, "description": { "fi": "<p>Suomen Musiikki julkaisi kulttimaineeseen nousseen Brian-yhtyeen (ent. Brian & Helvetin Peruna) kolmannen albumin maaliskuussa 2024.</p><p><i>Ei tunnu kipua enää</i> seuraa vuonna 2023 julkaistua, yhtyeen luovuuden uuden kukoistuksen käynnistänyttä <i>Viime aikoina minulla on ollut jotenkin alakuloinen olo</i> -albumia. Tulevan levyn ensimmäinen single Turussa kaikki on toisin voitti Radio Suomen Levylautakunnan. Tuorein single Vuosia myöhemmin jatkaa hittiputkea.</p><p>Tappavan tarttuvista kertosäkeistään tunnetun yhtyeen keikkakokoonpanon täydentää Miron rumpaliveli Aarni Palokallio sekä maamme eturivin muusikoista koostuva, vaihteleva valikoima basisteja ja vierailevia rumpaleita.</p>", "sv": "<p>Bandet Brian (tidigare Brian & Helvetin Peruna) har i det närmaste uppnått kultstatus. I mars 2024 släppte Suomen Musiikki bandets tredje album.</p><p>\"Ei tunnu kipua enää\" följer på albumet \"Viime aikoina minulla on ollut jotenkin alakuloinen olo\" från år 2023, som utgjorde starten på bandets nya skapande blomstringsperiod. Den första singeln på det kommande albumet \"Turussa kaikki on toisin\" vann Radio Suomis program Levylautakunta. Den senaste singeln \"Vuosia myöhemmin\" fortsätter raden av hittar.</p><p>Bandet är känt för sina dödligt smittsamma refränger, och spelningsensemblen kompletteras av Miros trummisbror Aarni Palokallio samt ett urval varierande basister och gästande trummisar som består av Finlands mest framstående musiker.</p>", "en": "<p>Suomen Musiikki released cult band Brian’s (formerly Brian & Helvetin Peruna) third album in March 2024.</p><p>\"Ei tunnu kipua enää\" follows the 2023 release of \"Viime aikoina minulla on ollut jotenkin alakuloinen olo\", which propelled the band to its new success. The first single from the upcoming album is \"Turussa kaikki on toisin\", which won the hearts of Radio Suomi’s Levylautakunta podcast hosts. The latest single, \"Vuosia myöhemmin\", continues the hit streak.</p><p>Known for their infectious choruses, the band's gig line-up is complemented by Miro's drummer brother, Aarni Palokallio, as well as a varied selection of bassists and guest drummers from a lineup of Finland's foremost musicians.</p>" }, "name": { "fi": "Brian", "sv": "Brian", "en": "Brian" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64140/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63588", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151559, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:37.738522Z", "last_modified_time": "2024-06-27T14:13:37.738563Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751699.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151559/?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-06-27T14:13:37.707401Z", "last_modified_time": "2024-08-29T05:13:20.097055Z", "date_published": null, "start_time": "2024-08-30T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”", "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B54769EDDFF3EF86D2D332478B341831/Ornan_Braier_Raatalin_taikaseikkailu", "en": "http://www.annantalo.fi/en/events/event/B54769EDDFF3EF86D2D332478B341831/Ornan_Braier_Tailor_made" }, "description": { "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun!</p><p>Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti</p><p>Maksuton, ilmoittautuminen vaaditaan.</p><p>Ilmoittautuminen esitykseen aukeaa 8.8. klo 8 osoitteessa https://kultus.fi/</p>", "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English</p><p>Free of charge, registration: https://kultus.fi/en from 8 August at 8 am</p>" }, "name": { "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaalin esitys lapsiryhmille, ilmoittautuminen kultus.fi", "en": "Ornan Braier: Tailor made – SAMPO Festival's performance for children groups" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63588/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63587", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151558, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:37.446957Z", "last_modified_time": "2024-06-27T14:13:37.446973Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751698.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151558/?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-06-27T14:13:37.387847Z", "last_modified_time": "2024-08-29T05:13:20.046019Z", "date_published": null, "start_time": "2024-08-30T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”", "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4A025B1AFF62E81F59BB8CAD98766885/Ornan_Braier_Raatalin_taikaseikkailu", "en": "http://www.annantalo.fi/en/events/event/4A025B1AFF62E81F59BB8CAD98766885/Ornan_Braier_Tailor_made" }, "description": { "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun!</p><p>Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti</p><p>Maksuton, ilmoittautuminen vaaditaan.</p><p>Ilmoittautuminen esitykseen aukeaa 8.8. klo 8 osoitteessa https://kultus.fi/</p>", "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English</p><p>Free of charge, registration: https://kultus.fi/en from 8 August at 8 am</p>" }, "name": { "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaalin esitys lapsiryhmille, ilmoittautuminen kultus.fi", "en": "Ornan Braier: Tailor made – SAMPO Festival's performance for children groups" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63587/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }