diff --git a/package.json b/package.json index f25ac62..e64889c 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,12 @@ "@types/node": "^12.0.0", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", + "@types/react-router-dom": "^5.3.0", "bootstrap": "^5.1.1", "react": "^17.0.2", "react-bootstrap": "^1.6.3", "react-dom": "^17.0.2", + "react-router-dom": "^5.3.0", "react-scripts": "4.0.3", "typescript": "^4.1.2", "web-vitals": "^1.0.1" @@ -22,7 +24,8 @@ "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", - "eject": "react-scripts eject" + "eject": "react-scripts eject", + ":(": "yarn start" }, "eslintConfig": { "extends": [ diff --git a/src/ApiClient.ts b/src/ApiClient.ts index 05f153a..c9aaa98 100644 --- a/src/ApiClient.ts +++ b/src/ApiClient.ts @@ -1,5 +1,5 @@ import axiosInstance from "./AxiosInstance"; -import { Band } from "./Types"; +import { Band, Response } from "./Types"; export class ApiClient { private readonly _cache: { [route: string]: any }; @@ -8,12 +8,12 @@ export class ApiClient { this._cache = {}; } - public async get(route: string, force = false): Promise { + public async get(route: string, force = false): Promise> { if (!force && this._cache[route]) { return this._cache[route]; } const res = await axiosInstance.get(route); - const data = res.data.response; + const data: Response = res.data.response; if (res.status === 200) { this._cache[route] = data; } @@ -21,7 +21,7 @@ export class ApiClient { } public async searchBand(name: string): Promise { - const res = await this.get(`/bands?query=${encodeURIComponent(name)}`); + const res = await this.get(`/bands?query=${encodeURIComponent(name)}`); return res.bands; } } diff --git a/src/App.tsx b/src/App.tsx index 40dbb55..f5482ea 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,19 +1,33 @@ -import React, { useRef, useState } from "react"; -import { Button, Card, Container, FormControl, FormGroup, FormLabel, Row } from "react-bootstrap"; +import React, { useEffect, useRef, useState } from "react"; +import { Button, Card, Container, FormControl, FormGroup, FormLabel, Row, Spinner } from "react-bootstrap"; import client from "./ApiClient"; -import { Band } from "./Types"; +import { Band, Option } from "./Types"; +import ModalBand from "./ModalBand"; +import { useHistory, useParams } from "react-router-dom"; function App() { const searchRef = useRef(null); - const [bands, setBands] = useState([]); + const [bands, setBands] = useState>(null); + const [selectedBand, setSelectedBand] = useState>(null); + + const params = useParams(); + const bandQuery = decodeURIComponent(params.query); + const history = useHistory(); + + useEffect(() => { + if (bandQuery) { + client.searchBand(bandQuery).then((res) => setBands(res)); + } + }, [bandQuery]); const search = () => { const input = searchRef.current?.value; if (!input) { return; } - client.searchBand(input).then((res) => setBands(res)); + history.push(`/${encodeURIComponent(input)}`); + setBands(null); }; return ( @@ -26,22 +40,35 @@ function App() { - {bands && + {selectedBand && setSelectedBand(null)} band={selectedBand} />} + {bands ? ( bands.map((band) => ( - + setSelectedBand(band)} style={{ width: "18rem" }} key={band.uid}> {band.name} - {getBioText(band)} + {getBioText(band, 200)} - ))} + )) + ) : bandQuery ? ( + <> + ) : ( + + )} ); } -function getBioText(band: Band): string { +export function getBioText(band: Band, maxLen: number): string { const bio = band.biographies.find((bio) => bio.lang === "de") || band.biographies[0]; - return bio?.description || "Keine Biographie angegeben."; + return limit(bio?.description || "Keine Biographie angegeben.", maxLen); +} + +function limit(str: string, max: number): string { + if (str.length > max) { + return str.substr(0, max - 3) + "..."; + } + return str; } export default App; diff --git a/src/Band.tsx b/src/Band.tsx deleted file mode 100644 index 7383905..0000000 --- a/src/Band.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React, { useEffect, useState } from "react"; -import client from "./ApiClient"; -import { BandById, Option } from "./Types"; - -const Band = ({ id }: { id: number }) => { - const [band, setBand] = useState>(null); - - useEffect(() => { - client.get(`/bands/${id}`).then((data) => setBand(data)); - }, [id]); - - return
; -}; - -export default Band; diff --git a/src/ModalBand.tsx b/src/ModalBand.tsx new file mode 100644 index 0000000..460dc8b --- /dev/null +++ b/src/ModalBand.tsx @@ -0,0 +1,28 @@ +import React from "react"; +import { Band } from "./Types"; +import { Button, Modal, Spinner } from "react-bootstrap"; +import { getBioText } from "./App"; + +interface Props { + onClose: () => void; + band: Band; +} + +const ModalBand = ({ band, onClose }: Props) => { + return ( +
+ + + + + {band.name} + + {band.name} +
{getBioText(band, 10000)}
+
+
+
+ ); +}; + +export default ModalBand; diff --git a/src/Types.ts b/src/Types.ts index f194f90..e86d5f0 100644 --- a/src/Types.ts +++ b/src/Types.ts @@ -1,5 +1,3 @@ -import band from "./bandByIdRes.json"; - export type Option = T | null; export interface Band { @@ -34,4 +32,8 @@ export interface Band { singles_count: number; performances: Array; } -export type BandById = typeof band; + +export type Response = { + status: string; + code: string; +} & { [P in Name]: T }; diff --git a/src/bandByIdRes.json b/src/bandByIdRes.json deleted file mode 100644 index a9bc4f9..0000000 --- a/src/bandByIdRes.json +++ /dev/null @@ -1,3249 +0,0 @@ -{ - "uid": { - "type": "integer", - "": "101330" - }, - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "language": { - "nil": "true" - }, - "permalink": "https://mx3.ch/catalyst", - "public-page-url": "https://mx3.ch/catalyst", - "permalink-name": "catalyst", - "created-at": { - "type": "dateTime", - "": "2016-11-17T08:54:02+01:00" - }, - "city": {}, - "address": {}, - "country": { - "nil": "true" - }, - "email": "Catalyst.band@outlook.com", - "profile-views-count": { - "type": "integer", - "": "12577" - }, - "playlists-count": { - "type": "integer", - "": "2" - }, - "image": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-original": "https://mx3.ch/pictures/mx3/file/0100/3042/original/201023_cat2001_5277_web.jpg?1620243848", - "links": { - "type": "array", - "link": [ - { - "name": "Linktree", - "href": "https://linktr.ee/Catalyst.duo" - }, - { - "name": {}, - "href": "https://www.instagram.com/catalyst_duo/" - }, - { - "name": {}, - "href": "https://www.catalyst-official.com/" - }, - { - "name": {}, - "href": "https://www.youtube.com/channel/UCeiuIHmpBhOMOqOAG4b_45A" - }, - { - "name": {}, - "href": "https://soundcloud.com/catalyst_duo" - }, - { - "name": {}, - "href": "https://www.facebook.com/Official.Band.Catalyst/" - } - ] - }, - "biographies": { - "type": "array", - "biography": { - "language-code": "EN", - "description": "Alternative rock duo from St.Gallen, Switzerland.\n" - } - }, - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - }, - "state": { - "name": "St-Gall", - "code": "SG" - }, - "listening-count": { - "type": "integer", - "": "17842" - }, - "listening-count-last-period": { - "type": "integer", - "": "961" - }, - "is-broadcasted": { - "type": "boolean", - "": "true" - }, - "singles-count": { - "type": "integer", - "": "16" - }, - "performances": { - "type": "array", - "performance": [ - { - "name": "Annie Taylor Support: Catalyst", - "date": { - "type": "dateTime", - "": "2021-12-04T19:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "ZAK Jona", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.starticket.ch/de/tickets/annie-taylor-20211204-2100-zak-jona?PartnerID=23", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "46953" - }, - "name": "ZAK Jona", - "address": "Werkstrasse 9 8645 Jona", - "city": "Rapperswil- Jona" - } - }, - { - "name": "Pablo Infernal (CH) & Catalyst (CH)", - "date": { - "type": "dateTime", - "": "2021-10-29T19:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "WerKK ", - "location": "Baden", - "location-url": "https://werkk-baden.ch/", - "shopping-url": "https://www.starticket.ch/de/tickets/pablo-infernal-ch-catalyst-ch-20211029-2030-werkk-kulturlokal-baden?PartnerID=23", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": "Catalyst & Pablo Infernal", - "date": { - "type": "dateTime", - "": "2021-10-28T19:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Gaskessel Bern", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.petzi.ch/de/events/47142-gaskessel-pablo-infernal-catalyst-i-gaskessel-bern/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "14018" - }, - "name": "Gaskessel Bern", - "address": { - "nil": "true" - }, - "city": { - "nil": "true" - } - } - }, - { - "name": "Catalyst & Pablo Infernal", - "date": { - "type": "dateTime", - "": "2021-10-27T19:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Schüür", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.starticket.ch/de/tickets/catalyst-pablo-infernal-20211027-2000-konzerthaus-schuur-luzern?PartnerID=23", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12506" - }, - "name": "Schüür", - "address": "Verein Konzertzentrum Schüür\nTribschenstrasse 1\n6005 Luzern", - "city": "Luzern" - } - }, - { - "name": "Dirty Sound Magnet Release Show", - "date": { - "type": "dateTime", - "": "2021-10-02T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Centre culturel Ebullition", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.petzi.ch/fr/events/46785-ebullition-dirty-sound-magnet-ch-catalyst-ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "109048" - }, - "name": "Centre culturel Ebullition", - "address": { - "nil": "true" - }, - "city": { - "nil": "true" - } - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2021-09-24T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "PlyNite", - "location": "Lausanne", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2021-09-11T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Festa de lad Musica", - "location": "mendrisio", - "location-url": "http://www.festadellamusica.ch/", - "shopping-url": "http://www.festadellamusica.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": "Skunk Anansie CELEBRATING 25 Years", - "date": { - "type": "dateTime", - "": "2022-07-03T17:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Römisches Theater Augusta Raurica", - "location": "Basel", - "location-url": "https://www.z-7.ch/", - "shopping-url": "https://www.z-7.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2021-08-21T21:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Openair Stoppelfäld", - "location": "Wohlen", - "location-url": "https://www.facebook.com/openairstoppelfaeld/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2021-07-17T16:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Open Ear Festival", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://openear.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "45073" - }, - "name": "Open Ear Festival", - "address": {}, - "city": "Brunnadern" - } - }, - { - "name": "CATALYST (SG) / DIRTY SOUND MAGNET (FR)", - "date": { - "type": "dateTime", - "": "2021-10-30T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Grabenhalle", - "location": "St.Gallen", - "location-url": "https://www.grabenhalle.ch/", - "shopping-url": "https://www.starticket.ch/de/tickets/catalyst-ch-und-support-20211030-2115-grabenhalle-stgallen", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": "Catalyst live in der Kleberei", - "date": { - "type": "dateTime", - "": "2021-06-19T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Kleberei", - "location": "Rorschach", - "location-url": "https://kleberei.ch/", - "shopping-url": "https://eventfrog.ch/de/p/konzert/indie-alternative/catalyst-live-in-der-kleberei-6793425298106344448.html", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-11-09T20:30:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Fabriggli ", - "location": "Buchs", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-12-31T22:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Grabenhalle", - "location": "St.Gallen", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-12-14T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Mundwerk", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "35291" - }, - "name": "Mundwerk", - "address": "Dörflistrasse 76\n8050 Zürich", - "city": "Zürich" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-11-15T19:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Swiss Live Talents", - "location": "Bern", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": "Johnossi Support: CATALYST", - "date": { - "type": "dateTime", - "": "2019-10-26T20:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "KiFF - Kultur in der Futterfabrik", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.starticket.ch/de/tickets/johnossi-swe-20191026-2030-kiff-aarau", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12661" - }, - "name": "KiFF - Kultur in der Futterfabrik", - "address": "Tellistrasse 118\nCH-5001 Aarau\nTel +41 62 824 06 50\nFax +41 62 822 05 53", - "city": "Aarau" - } - }, - { - "name": "Johnossi Support: CATALYST", - "date": { - "type": "dateTime", - "": "2019-10-25T19:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Presswerk", - "location": "Arbon", - "location-url": "https://presswerk-arbon.ch/events/johnossi-im-presswerk/", - "shopping-url": "https://www.ticketcorner.ch/?affiliate=XGA&doc=artistPages/tickets&fun=artist&action=tickets&includeOnlybookable=true&kuid=428447&gclid=CjwKCAjw0tHoBRBhEiwAvP1GFawVUD8lAqDHI951fl9B0NskLGiOpvMnQrUElSoi3Yzz2Fej8IXjNxoCCuMQAvD_BwE", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-10-05T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Fasskeller", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "18041" - }, - "name": "Fasskeller", - "address": "Webergasse 13", - "city": "8200" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-09-13T23:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Weihern Openair Festival", - "location": "St.Gallen", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-08-30T22:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Festival am Gleis", - "location": "Aarau", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-05-18T18:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "La Quairmesse", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "42261" - }, - "name": "La Quairmesse", - "address": "Piazza Manzoni, Rivetta Tell, Mojito", - "city": "Lugano" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-06-26T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "MUZ", - "location": "Nürnberg", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-06-21T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Kohi ", - "location": "Karlsruhe", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-06-14T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "8x15", - "location": "Chur", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-06-15T18:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Open Air Rock am Weier", - "location": "Wil", - "location-url": "https://rockamweier.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-08-08T18:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Winterthurer Musikfestwochen", - "location": "Winterthur", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-05-31T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Vorstadt Sounds Festival", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "17796" - }, - "name": "Vorstadt Sounds Festival", - "address": "Fellenbergstrasse 231\n8047 Zürich", - "city": "Zürich" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-05-03T21:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Treppenhaus", - "location": "Rorschach", - "location-url": "https://treppenhaus.ch/", - "shopping-url": "https://l.facebook.com/l.php?u=https%3A%2F%2Feventfrog.ch%2Fde%2Fp%2Fkonzert%2Findie-alternative%2Fcatalyst-ch-bordeaux-lip-ch-6508738536647201577.html%3Ffbclid%3DIwAR2AhYv-FVAnISe8q1pim8-vBZVa-t-gdOAJQWz3MypJ36beFNIrdob9iLc&h=AT35iQhe3T7s5glZtGHuNipk_1QW1X0gLq7T1FNuOT8xylPS2zNbTBwwpdtwPqVlTQ-y6s0wJBOTb4DfJy6-nMQiaa_nMiIZgLq3-S_jDCtDqP53snKSpsien9Qo5Pph-G_E", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-03-16T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Funkerhütte", - "location": "Funkerhütte", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-03-08T19:30:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Ride on Music", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "46808" - }, - "name": "Ride on Music", - "address": "Xquisit Events Gstaad\n\n", - "city": "Schönried" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-03-30T20:30:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Gare de Lion", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://l.facebook.com/l.php?u=https%3A%2F%2Fbit.ly%2F2QF0AGu%3Ffbclid%3DIwAR0FH2MwqB9uNAPMFldnCHCEryIisc4AP3uhiJ7WL6o3_OroNrPBRcTlOy0&h=AT0g5KeWUF4Pe2oLcfc0Vq2R4Na2fNWHZ0pzCdhNMJ20tc4I2YPh5fZswgpT-lDNzvrCJUUKL-7zMsh0FaQhC_JfTkR0f6_wEd0z8qbUvOjtvyFXTgmdzm7VPneYVrzjEf_IpO32ihuyrqi6rTtv", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "31414" - }, - "name": "Gare de Lion", - "address": "Silostr. 10\n9500 Wil", - "city": "Wil" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-02-22T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Kulturfabrik KUFA Lyss", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.starticket.ch/de/tickets/velvet-two-stripes-catalyst-20190222-2000-kulturfabrik-kufa-lyss-lyss", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "13036" - }, - "name": "Kulturfabrik KUFA Lyss", - "address": "Werdtstrasse 17\n3250 Lyss", - "city": "Lyss" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-03-02T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Kulturhalle", - "location": "Burgdorf", - "location-url": "https://www.saegegasse.ch/", - "shopping-url": "https://eventfrog.ch/de/p/konzert/pop-rock/velvet-two-stripes-catalyst-1539673048286001384.html", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-03-22T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "KiFF - Kultur in der Futterfabrik", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.starticket.ch/de/tickets/ricky-harsh-ch-velvet-two-stripes-ch-catalyst-ch-20190322-2030-kiff-foyer-aarau", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12661" - }, - "name": "KiFF - Kultur in der Futterfabrik", - "address": "Tellistrasse 118\nCH-5001 Aarau\nTel +41 62 824 06 50\nFax +41 62 822 05 53", - "city": "Aarau" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-04-12T19:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Kofmehl", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.ticketcorner.ch/tickets.html?fun=evdetail&affiliate=tcs&doc=evdetailb&key=2352419$11434749", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12510" - }, - "name": "Kofmehl", - "address": "Kulturfabrik Kofmehl\nKofmehlweg 1 \nPostfach 321\n4503 Solothurn", - "city": "Solothurn" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-01-23T20:30:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "rote Fabrik Zürich", - "location": "rote Fabrik", - "location-url": "https://www.starticket.ch/de/tickets/catalyst-the-pack-ad-20190123-2100-rote-fabrik-ziegel-oh-lac-zurich", - "shopping-url": "https://www.starticket.ch/de/tickets/catalyst-the-pack-ad-20190123-2100-rote-fabrik-ziegel-oh-lac-zurich", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-03-07T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Albani", - "location": "Winterthur", - "location-url": "https://albani.ch/", - "shopping-url": "https://www.ticketino.com/de/Event/Velvet-Two-Stripes-CH-Catalyst-CH/78813", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-02-23T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Sedel", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.petzi.ch/en/events/40283-sedel-velvet-two-stripes-catalyst/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "29057" - }, - "name": "Sedel", - "address": "\nPostfach 6921\n6000 Luzern 6\n++41 (0)41 420 63 10\nsedel@sedel.ch", - "city": "Luzern" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-02-16T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Sommercasino", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.starticket.ch/de/tickets/live-velvet-two-stripes-catalyst-20190216-2100-sommercasino-basel", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12619" - }, - "name": "Sommercasino", - "address": "Münchensteinerstrasse 1", - "city": "Basel" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-02-15T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Cult.", - "location": "Scuol", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2019-01-26T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Kulturcafé COQ D'OR", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://eventfrog.ch/de/p/konzert/pop-rock/the-pack-a-d-can-velvet-two-stripes-catalyst-by-tine-1540372293586001034.html", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "34392" - }, - "name": "Kulturcafé COQ D'OR", - "address": "Tannwaldstrasse 48\nOlten", - "city": "Olten" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-12-15T20:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Alteszeughaus", - "location": "Herisau", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-12-01T19:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Eisenwerk", - "location": "Frauenfeld", - "location-url": "https://www.eisenwerk.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-10-13T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "La Tour Vagabonde", - "location": "La Tour Vagabonde", - "location-url": "http://tourvagabonde.com/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-08-07T19:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Stars in Town", - "location": "Schaffhausen", - "location-url": "http://www.starsintown.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-08-16T19:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "43. Winterthurer Musikfestwochen", - "location": "Winterthur", - "location-url": "https://musikfestwochen.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-06-23T19:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Parkplatzfest", - "location": "St.Gallen", - "location-url": "http://www.grabenhalle.ch/parkplatzfest/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-07-07T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Rock im Knast", - "location": "Tobel", - "location-url": "http://www.komturei.ch/index.php", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-07-20T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "KulturFestival", - "location": "St.Gallen", - "location-url": "http://www.kulturfestival.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-08-04T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Heizwerk-Festival", - "location": "Arbon", - "location-url": "http://heizwerk-festival.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": "Robocobra Quartet/ CATALYST", - "date": { - "type": "dateTime", - "": "2018-05-05T20:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Gaswerk Kulturzentrum", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "http://gaswerk.ch/programm/programm", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "34055" - }, - "name": "Gaswerk Kulturzentrum", - "address": "Gaswerk Kulturzentrum\nUntere Schöntalstrasse 19\n8400 Winterthur", - "city": "Winterthur" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-03-31T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Feel me Flow Kulturfestival", - "location": "Altstätten ", - "location-url": "https://www.feelmeflow.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-04-21T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Kulturhaus Rose", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.facebook.com/events/1281481208651694/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "45188" - }, - "name": "Kulturhaus Rose", - "address": "Schedlern 561\n9063 Stein", - "city": "Stein" - } - }, - { - "name": "Krach am Bach Party", - "date": { - "type": "dateTime", - "": "2018-04-13T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Horst Klub", - "location": "Kreuzlingen", - "location-url": "https://www.facebook.com/events/178526292773170/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": "Paris Monster (USA) | The Catalyst präsentiert von Indierekt und Alternative Live", - "date": { - "type": "dateTime", - "": "2018-04-11T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Werkk ", - "location": "Baden", - "location-url": "http://werkk-baden.ch/kultur/programm/2018/04/11/paris-monster-usa-the-catalyst/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-06-22T23:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Konkret Festival", - "location": "Nänikon", - "location-url": "http://konkret-festival.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-06-16T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Chräen Openair", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "20584" - }, - "name": "Chräen Openair", - "address": "Chräen Openair \nPostfach 370\n8413 Neftenbach", - "city": "Neftenbach " - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-03-27T19:30:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Werk 21", - "location": "Dynamo", - "location-url": "http://www.dynamo.ch/", - "shopping-url": "https://www.starticket.ch/de/tickets/the-world-is-20180327-2000-dynamo-werk-21-zurich", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-10-06T21:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Grabenhalle", - "location": "Beware of the Volcano/Release Show", - "location-url": "http://www.grabenhalle.ch/catalyst-plattentaufe-support/", - "shopping-url": "https://www.starticket.ch/de/tickets/catalyst-beware-of-the-volcano-plattentaufe-support-20181006-2100-grabenhalle-stgallen", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-07-28T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Mutterschiff OpenAir", - "location": "Mutterschiff", - "location-url": "http://www.mutterschiff.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-07-21T12:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Open Air Lumnezia", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://openair-lumnezia.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12775" - }, - "name": "Open Air Lumnezia", - "address": {}, - "city": {} - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2018-03-24T14:15:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "m4Music Festival", - "location": "M4Music Festival", - "location-url": "https://www.m4music.ch/", - "shopping-url": "https://www.starticket.ch/de/tickets/m4music-2018-20180323-1830-20180325-0400-schiffbau-moods-exil-zurich", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-11-18T19:30:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Presswerk", - "location": "Arbon", - "location-url": "http://www.presswerk-arbon.ch/", - "shopping-url": "https://www.facebook.com/events/177436006136664/?acontext=%7B%22source%22%3A5%2C%22page_id_source%22%3A737602309658301%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%7B%5C%22page_id%5C%22%3A737602309658301%2C%5C%22tour_id%5C%22%3Anull%7D%22%7D]%2C%22has_source%22%3Atrue%7D", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-12-02T21:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Grabenhalle", - "location": "Grabenhalle ", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-08-12T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "JungKult Festival", - "location": "Jung Kult SG", - "location-url": {}, - "shopping-url": "https://www.facebook.com/events/1688221228152551/?active_tab=discussion&__xt__=33.%7B%22logging_data%22%3A%7B%22profile_id%22%3A1688221228152551%2C%22event_type%22%3A%22clicked_view_event_posts%22%2C%22impression_info%22%3A%22eyJmIjp7Iml0ZW1fY291bnQiOiIwIn19%22%2C%22surface%22%3A%22www_events_permalink%22%2C%22interacted_story_type%22%3A%22236412393365972%22%2C%22session_id%22%3A%221308b4c3be9729c36bae4a7f113fdea5%22%7D%7D", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-08-18T22:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "St.Galler Fest", - "location": "Torpedo", - "location-url": {}, - "shopping-url": "https://www.facebook.com/events/882864088536244/?acontext=%7B%22source%22%3A5%2C%22page_id_source%22%3A737602309658301%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%7B%5C%22page_id%5C%22%3A737602309658301%2C%5C%22tour_id%5C%22%3Anull%7D%22%7D]%2C%22has_source%22%3Atrue%7D", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-06-29T21:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "St.Gallen Open Airs", - "location": "OASG", - "location-url": {}, - "shopping-url": "http://www.openairsg.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-08-25T18:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Clanx Festival", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "19185" - }, - "name": "Clanx Festival", - "address": "Lehnstrasse, \nCH-9050 Appenzell\n(Anfahrt auf clanx.ch)", - "city": "Appenzell" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-08-04T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Out in the Gurin", - "location": "Out in the Gurin", - "location-url": "http://www.outinthegurin.ch/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-08-26T18:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Sounds of Glarus", - "location": "Glarus", - "location-url": {}, - "shopping-url": "http://www.soundofglarus.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-06-10T18:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Openair Krach am Bach", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.facebook.com/events/1913600455540182/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "41670" - }, - "name": "Openair Krach am Bach", - "address": "Openair Krach am Bach\n8274 Tägerwilen", - "city": "Tägerwilen" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-07-20T23:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "25. Open Air Lumnezia", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://openair-lumnezia.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "21029" - }, - "name": "25. Open Air Lumnezia", - "address": "Open Air Lumnezia\nCH-7145 Degen ", - "city": {} - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-07-08T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Rock am Gleis", - "location": "Rock am Gleis", - "location-url": {}, - "shopping-url": "https://www.facebook.com/events/1210561798980109/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-06-24T17:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Quell Rock Openair", - "location": "Quell Rock Openair", - "location-url": {}, - "shopping-url": "http://quellrock.ch/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-04-28T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Tap Tab Musikraum", - "location": { - "nil": "true" - }, - "location-url": { - "nil": "true" - }, - "shopping-url": "https://www.taptab.ch/#hielo-sh-support-tba", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "id": { - "type": "integer", - "": "12304" - }, - "name": "Tap Tab Musikraum", - "address": "Baumgartenstrasse 19\n", - "city": "Schaffhausen" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-04-15T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "KAFF", - "location": "KAFF", - "location-url": {}, - "shopping-url": "https://www.facebook.com/events/429166467417048/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-04-22T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Kultur Rose", - "location": "Kultur Rose", - "location-url": {}, - "shopping-url": "https://www.facebook.com/events/1513887315297442/", - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-04-01T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Flon", - "location": "Flon", - "location-url": "https://www.facebook.com/events/599896896886845/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-05-12T20:00:00+02:00" - }, - "band-name": "CATALYST", - "stage-name": "Treppenhaus Rorschach", - "location": "Treppenhaus Rorschach", - "location-url": "https://www.facebook.com/events/1891523424418513/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-02-24T21:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Stage8580", - "location": "Stage8580", - "location-url": "https://www.facebook.com/stage8580/", - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - }, - { - "name": {}, - "date": { - "type": "dateTime", - "": "2017-02-18T21:00:00+01:00" - }, - "band-name": "CATALYST", - "stage-name": "Grabenhalle", - "location": "Grabenhalle", - "location-url": {}, - "shopping-url": {}, - "band": { - "id": { - "type": "integer", - "": "101330" - }, - "name": "CATALYST", - "url-for-image-thumb": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-head": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "url-for-image-list": "https://mx3.ch/pictures/mx3/file/0100/3042/square_small/201023_cat2001_5277_web.jpg?1620243848", - "categories": { - "type": "array", - "category": { - "id": { - "type": "integer", - "": "41" - }, - "name": "Rock" - } - } - }, - "stage": { - "nil": "true" - } - } - ] - } -} \ No newline at end of file diff --git a/src/index.tsx b/src/index.tsx index 608790d..216d08d 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,10 +2,18 @@ import React from "react"; import ReactDOM from "react-dom"; import App from "./App"; import "bootstrap/dist/css/bootstrap.min.css"; +import { BrowserRouter, Route, Switch } from "react-router-dom"; ReactDOM.render( - + + + + + + + + , document.getElementById("root") ); diff --git a/yarn.lock b/yarn.lock index 9e1efd6..52fbc01 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1091,6 +1091,13 @@ dependencies: regenerator-runtime "^0.13.4" +"@babel/runtime@^7.1.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.8", "@babel/runtime@^7.14.0", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" + integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== + dependencies: + regenerator-runtime "^0.13.4" + "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": version "7.12.18" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.18.tgz#af137bd7e7d9705a412b3caaf991fe6aaa97831b" @@ -1098,13 +1105,6 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.12.5", "@babel/runtime@^7.13.8", "@babel/runtime@^7.14.0", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" - integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== - dependencies: - regenerator-runtime "^0.13.4" - "@babel/template@^7.10.4", "@babel/template@^7.12.13", "@babel/template@^7.3.3": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" @@ -1738,6 +1738,11 @@ dependencies: "@types/node" "*" +"@types/history@*": + version "4.7.9" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.9.tgz#1cfb6d60ef3822c589f18e70f8b12f9a28ce8724" + integrity sha512-MUc6zSmU3tEVnkQ78q0peeEjKWPUADMlC/t++2bI8WnAG2tvYRPIgHG8lWkXwqc8MsUF6Z2MOf+Mh5sazOmhiQ== + "@types/html-minifier-terser@^5.0.0": version "5.1.1" resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" @@ -1840,6 +1845,23 @@ dependencies: "@types/react" "*" +"@types/react-router-dom@^5.3.0": + version "5.3.0" + resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.3.0.tgz#8c4e0aa0ccaf638ba965829ad29a10ac3cbe2212" + integrity sha512-svUzpEpKDwK8nmfV2vpZNSsiijFNKY8+gUqGqvGGOVrXvX58k1JIJubZa5igkwacbq/0umphO5SsQn/BQsnKpw== + dependencies: + "@types/history" "*" + "@types/react" "*" + "@types/react-router" "*" + +"@types/react-router@*": + version "5.1.16" + resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.16.tgz#f3ba045fb96634e38b21531c482f9aeb37608a99" + integrity sha512-8d7nR/fNSqlTFGHti0R3F9WwIertOaaA1UEB8/jr5l5mDMOs4CidEgvvYMw4ivqrBK+vtVLxyTj2P+Pr/dtgzg== + dependencies: + "@types/history" "*" + "@types/react" "*" + "@types/react-transition-group@^4.4.1": version "4.4.3" resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.3.tgz#b0994da0a7023d67dbb4a8910a62112bc00d5688" @@ -5524,6 +5546,18 @@ hex-color-regex@^1.1.0: resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== +history@^4.9.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" + integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== + dependencies: + "@babel/runtime" "^7.1.2" + loose-envify "^1.2.0" + resolve-pathname "^3.0.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + value-equal "^1.0.1" + hmac-drbg@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" @@ -5533,6 +5567,13 @@ hmac-drbg@^1.0.1: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.1" +hoist-non-react-statics@^3.1.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + hoopy@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" @@ -6210,6 +6251,11 @@ is-wsl@^2.1.1, is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -7071,7 +7117,7 @@ loglevel@^1.6.8: resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197" integrity sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw== -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== @@ -7277,6 +7323,14 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== +mini-create-react-context@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz#072171561bfdc922da08a60c2197a497cc2d1d5e" + integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ== + dependencies: + "@babel/runtime" "^7.12.1" + tiny-warning "^1.0.3" + mini-css-extract-plugin@0.11.3: version "0.11.3" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz#15b0910a7f32e62ffde4a7430cfefbd700724ea6" @@ -8036,6 +8090,13 @@ path-to-regexp@0.1.7: resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= +path-to-regexp@^1.7.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" + integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== + dependencies: + isarray "0.0.1" + path-type@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" @@ -9152,7 +9213,7 @@ react-error-overlay@^6.0.9: resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a" integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew== -react-is@^16.3.2, react-is@^16.8.1: +react-is@^16.3.2, react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -9186,6 +9247,35 @@ react-refresh@^0.8.3: resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== +react-router-dom@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.0.tgz#da1bfb535a0e89a712a93b97dd76f47ad1f32363" + integrity sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ== + dependencies: + "@babel/runtime" "^7.12.13" + history "^4.9.0" + loose-envify "^1.3.1" + prop-types "^15.6.2" + react-router "5.2.1" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + +react-router@5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.2.1.tgz#4d2e4e9d5ae9425091845b8dbc6d9d276239774d" + integrity sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ== + dependencies: + "@babel/runtime" "^7.12.13" + history "^4.9.0" + hoist-non-react-statics "^3.1.0" + loose-envify "^1.3.1" + mini-create-react-context "^0.4.0" + path-to-regexp "^1.7.0" + prop-types "^15.6.2" + react-is "^16.6.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + react-scripts@4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-4.0.3.tgz#b1cafed7c3fa603e7628ba0f187787964cb5d345" @@ -9560,6 +9650,11 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== +resolve-pathname@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" + integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== + resolve-url-loader@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz#235e2c28e22e3e432ba7a5d4e305c59a58edfc08" @@ -10655,6 +10750,16 @@ timsort@^0.3.0: resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= +tiny-invariant@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875" + integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== + +tiny-warning@^1.0.0, tiny-warning@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + tmpl@1.0.x: version "1.0.4" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" @@ -11087,6 +11192,11 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" +value-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" + integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== + vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"