diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..a4cca36 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +src/storage/logs/* +src/vendor diff --git a/.gitignore b/.gitignore index 4354f84..15e9eff 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ -/vendor/ -node_modules/ +/src/vendor/ +/src/node_modules/ package-lock.json composer.lock .idea /src/storage/debugbar +.vite diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..dc4d15a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,131 @@ + +networks: + laravel: + mariadb: + external: true + name: mariadb + +volumes: + vendor_data: + +services: + nginx: + image: nginx:alpine-slim + restart: always + ports: + - '8877:80' + container_name: shipping-nginx + volumes: + # Please update below path as per your environment. + - ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf + depends_on: + - php + - laravel-redis + # - laravel-queue + # - laravel-cron + # - phpmyadmin + networks: + - laravel + - mariadb + + php: + container_name: shipping-php + # user: "www-data" + # restart: always + platform: linux/amd64 + user: www-data:1002 + build: + # Please update below path as per your environment. + context: . + dockerfile: ./docker/php/Dockerfile + ports: + - '9001:9001' + volumes: + - ./src:/var/www/html + - vendor_data:/var/www/html/vendor + - ./src/.env:/var/www/html/.env + - ./docker/roadrunner.yaml:/var/www/html/.rr.yaml + networks: + - laravel + - mariadb + depends_on: + - laravel-redis + + laravel-redis: + image: redis:alpine + container_name: laravel-redis + restart: unless-stopped + ports: + - 6380:6379 + networks: + - laravel + - mariadb + + npm: + image: node:alpine + # container_name: npm + volumes: + - ./src:/var/www/html + - ./src/.env:/var/www/html/.env + ports: + - 3000:3000 + - 3001:3001 + working_dir: /var/www/html + profiles: [ "npm" ] + entrypoint: [ 'npm' ] + networks: + - laravel + - mariadb + + horizon: + # user: "www-data" + user: www-data:1002 + container_name: shipping-horizon + platform: linux/arm64/v8 + build: + context: . + dockerfile: ./docker/horizon.dockerfile + restart: unless-stopped + volumes: + - ./src:/var/www/html + - ./src/.env:/var/www/html/.env + - vendor_data:/var/www/html/vendor + - ./docker/supervisor/horizon.conf:/etc/supervisor/conf.d/horizon.conf + depends_on: + - laravel-redis + networks: + - laravel + - mariadb + +# +# +# pdf_manager: +# container_name: shipping-pdf_manager +# build: +# context: . +# dockerfile: ./docker/python/Dockerfile +# ports: +# - "5001:5000" +# volumes: +# - ./src/scripts/pdf_manage.py:/app/pdf_manage.py +# - ./src/scripts/pdf_data:/app/pdfs +# networks: +# - laravel +# - mariadb + + + + + laravel-cron: + build: + context: . + dockerfile: ./docker/php.dockerfile + container_name: laravel-cron + volumes: + - ./src:/var/www/html + - ./src/.env:/var/www/html/.env + - vendor_data:/var/www/html/vendor + + networks: + - laravel + - mariadb diff --git a/docker/composer.dockerfile b/docker/composer.dockerfile new file mode 100644 index 0000000..cf4e266 --- /dev/null +++ b/docker/composer.dockerfile @@ -0,0 +1,19 @@ +FROM composer:latest as composer + +# environment arguments +ARG UID +ARG GID +ARG USER + +ENV UID=${UID} +ENV GID=${GID} +ENV USER=${USER} + +# Dialout group in alpine linux conflicts with MacOS staff group's gid, whis is 20. So we remove it. +RUN delgroup dialout + +# Creating user and group +RUN addgroup -g ${GID} --system ${USER} +RUN adduser -G ${USER} --system -D -s /bin/sh -u ${UID} ${USER} + +WORKDIR /var/www/html \ No newline at end of file diff --git a/docker/horizon.dockerfile b/docker/horizon.dockerfile new file mode 100644 index 0000000..2d1f0c7 --- /dev/null +++ b/docker/horizon.dockerfile @@ -0,0 +1,25 @@ +FROM t0is/laravel-roadrunner-base:latest + +RUN apt update -y && apt upgrade -y +RUN apt-get install -y supervisor +RUN docker-php-ext-enable redis + +WORKDIR /var/www/html + + +COPY --chown=www-data src/. /var/www/html +COPY --chown=www-data src/.env /var/www/html/.env +COPY --chown=www-data docker/roadrunner.yaml /var/www/html/.rr.yaml +COPY --chown=www-data docker/supervisor/horizon.conf /etc/supervisor/conf.d/horizon.conf + +USER www-data:1002 + +ENV COMPOSER_HOME=/tmp/composer +RUN composer install --optimize-autoloader --no-dev +RUN #chown -R www-data:www-data /var/www/html/vendor + +RUN #php artisan optimize:clear && php artisan optimize + +RUN php artisan octane:install --server=roadrunner + +CMD ["supervisord", "-c", "/etc/supervisor/conf.d/horizon.conf"] diff --git a/docker/init_db.sql b/docker/init_db.sql new file mode 100644 index 0000000..7000def --- /dev/null +++ b/docker/init_db.sql @@ -0,0 +1,7 @@ +CREATE USER IF NOT EXISTS 'shipping'@'%' IDENTIFIED BY 'shipping'; +CREATE DATABASE IF NOT EXISTS shipping CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +GRANT ALL ON shipping.* TO shipping@'%'; +GRANT ALL ON pps.* TO shipping@'%'; +GRANT ALL ON vat_warehouse.* TO shipping@'%'; +GRANT SELECT,DELETE,DROP ON mysql.general_log TO shipping@'%'; +flush privileges; \ No newline at end of file diff --git a/docker/nginx.dockerfile b/docker/nginx.dockerfile new file mode 100644 index 0000000..c544a93 --- /dev/null +++ b/docker/nginx.dockerfile @@ -0,0 +1,26 @@ +FROM nginx:stable-alpine + +# environment arguments +ARG UID +ARG GID +ARG USER + +ENV UID=${UID} +ENV GID=${GID} +ENV USER=${USER} + +# Dialout group in alpine linux conflicts with MacOS staff group's gid, whis is 20. So we remove it. +RUN delgroup dialout + +# Creating user and group +RUN addgroup -g ${GID} --system ${USER} +RUN adduser -G ${USER} --system -D -s /bin/sh -u ${UID} ${USER} + +# Modify nginx configuration to use the new user's priviledges for starting it. +RUN sed -i "s/user nginx/user '${USER}'/g" /etc/nginx/nginx.conf + +# Copies nginx configurations to override the default. +ADD ./nginx/*.conf /etc/nginx/conf.d/ + +# Make html directory +RUN mkdir -p /var/www/html \ No newline at end of file diff --git a/docker/nginx/default.conf b/docker/nginx/default.conf new file mode 100644 index 0000000..9bce2b4 --- /dev/null +++ b/docker/nginx/default.conf @@ -0,0 +1,129 @@ +# Nginx default.conf + +gzip on; +gzip_disable "msie6"; +gzip_vary on; +gzip_proxied any; +gzip_comp_level 6; +gzip_buffers 16 8k; +gzip_http_version 1.1; +gzip_min_length 256; +gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon; + +server_tokens off; + +client_body_buffer_size 200; +client_max_body_size 200m; + +fastcgi_buffers 16 16k; +fastcgi_buffer_size 32k; + +map $http_upgrade $connection_upgrade { + default upgrade; + '' close; +} + +upstream upstream_backend_php { + server shipping-php:9001; +} + +server { + listen 80; + listen [::]:80; + server_name my_backend; + + add_header X-Frame-Options "SAMEORIGIN"; + add_header X-XSS-Protection "1; mode=block"; + add_header X-Content-Type-Options "nosniff"; + + index index.php index.html index.htm; + + charset utf-8; + server_tokens off; + + error_log /var/log/nginx/error.log; + access_log /var/log/nginx/access.log; + + # SEO trailing slash problem fix + # rewrite ^/(.*)/$ /$1 permanent; # remove trailing slash + # rewrite ^(.*[^/])$ $1/ permanent; # add a trailing slash + + ############################ + # Reference: https://gist.github.com/Ellrion/4eb5df00173f0fb13a76 + ############################ + + location ~* \.(jpg|jpeg|png|gif|svg|webp|html|txt|json|ico|css|js)$ { + expires 1d; + add_header Cache-Control public; + access_log off; + + try_files $uri $uri/ @octane; + } + + location ~ /\.(?!well-known).* { + deny all; + } + + # /etc/nginx/global/php-restrictions.conf + # Don't throw any errors for missing favicons and don't display them in the logs + location = /favicon.ico { log_not_found off; access_log off; try_files $uri $uri/ @octane;} + + # Don't log missing robots or show them in the nginx logs + location = /robots.txt { allow all; log_not_found off; access_log off; try_files $uri $uri/ @octane;} + + # Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac). + # Keep logging the requests to parse later (or to pass to firewall utilities such as fail2ban) + location ~ /\. { + deny all; + } + + # Deny access to any files with a .php extension in the uploads directory + # Works in sub-directory installs and also in multisite network + # Keep logging the requests to parse later (or to pass to firewall utilities such as fail2ban) + location ~* /(?:uploads|files)/.*\.php$ { + deny all; + } + + ############################ + # Customize + ############################ + location /index.php { + try_files /not_exists @octane; + } + + location / { + if ($request_method !~ ^(GET|POST|HEAD|OPTIONS|PUT|DELETE)$) { + return 405; + } + + try_files $uri $uri/ @octane; + } + + location @octane { + set $suffix ""; + + if ($uri = /index.php) { + set $suffix ?$query_string; + } + + proxy_http_version 1.1; + proxy_set_header Http_Host $http_host; + proxy_set_header Host $host; + proxy_set_header Scheme $scheme; + proxy_set_header SERVER_PORT $server_port; + proxy_set_header REMOTE_ADDR $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $connection_upgrade; + proxy_set_header X-CSRF-TOKEN $http_x_csrf_token; + proxy_set_header X-Real-IP $remote_addr; + + # Add timeout settings + proxy_read_timeout 300s; # Increase read timeout + proxy_send_timeout 300s; # Increase send timeout + proxy_connect_timeout 300s; # Increase connect timeout + send_timeout 300s; # Increase overall send timeout + + proxy_pass http://upstream_backend_php$suffix; + } +} diff --git a/docker/php.dockerfile b/docker/php.dockerfile new file mode 100644 index 0000000..9643e2e --- /dev/null +++ b/docker/php.dockerfile @@ -0,0 +1,19 @@ +FROM t0is/laravel-roadrunner-base:latest-amd64 + +RUN apt update -y && apt upgrade -y + +WORKDIR /var/www/html +RUN docker-php-ext-enable redis + + +COPY --chown=www-data src/. /var/www/html +COPY --chown=www-data src/.env /var/www/html/.env + +USER www-data:1002 + +ENV COMPOSER_HOME=/tmp/composer +RUN composer install --optimize-autoloader --no-dev +RUN #chown -R www-data:www-data /var/www/html/vendor + + +CMD ["php", "artisan", "schedule:work"] diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile new file mode 100644 index 0000000..ce90592 --- /dev/null +++ b/docker/php/Dockerfile @@ -0,0 +1,28 @@ +FROM t0is/laravel-roadrunner-base:latest + +RUN apt update -y && apt upgrade -y + +WORKDIR /var/www/html +RUN docker-php-ext-enable redis + +RUN python3 -m venv /var/www/html/shipping_env + +# Activate the virtual environment and install pymupdf +RUN /var/www/html/shipping_env/bin/pip install --upgrade pip && \ + /var/www/html/shipping_env/bin/pip install pymupdf + +COPY --chown=www-data src/. /var/www/html +COPY --chown=www-data src/.env /var/www/html/.env +COPY --chown=www-data docker/roadrunner.yaml /var/www/html/.rr.yaml + +USER www-data:1002 + +ENV COMPOSER_HOME=/tmp/composer +RUN composer install --optimize-autoloader --no-dev +RUN #chown -R www-data:www-data /var/www/html/vendor + +RUN php artisan octane:install --server=roadrunner + +EXPOSE 9001 + +CMD ["php", "artisan", "octane:start", "--server=roadrunner", "--host=0.0.0.0", "--port=9001", "--log-level=debug", "--rr-config=/var/www/html/.rr.yaml"] diff --git a/docker/php/base/Dockerfile b/docker/php/base/Dockerfile new file mode 100644 index 0000000..8355e8c --- /dev/null +++ b/docker/php/base/Dockerfile @@ -0,0 +1,62 @@ + +FROM php:8.3-cli + +RUN apt update -y && apt upgrade -y + +RUN apt install -y --no-install-recommends \ + libfreetype-dev \ + libjpeg62-turbo-dev \ + libpng-dev \ + imagemagick \ + libmagickwand-dev \ + git \ + zip unzip \ + openssl libssl-dev libcurl4-openssl-dev \ + autoconf zlib1g-dev \ + python3 python3-venv python3-pip ghostscript\ + && docker-php-ext-configure gd --with-freetype --with-jpeg \ + && docker-php-ext-install -j$(nproc) gd + +RUN pecl install redis +RUN docker-php-ext-install opcache +RUN docker-php-ext-install pdo pdo_mysql +RUN docker-php-ext-install mysqli +RUN docker-php-ext-install sockets +RUN docker-php-ext-install soap +RUN docker-php-ext-install intl + +# https://github.com/viest/php-ext-xlswriter +RUN pecl install xlswriter + +# https://dev.to/kakisoft/php-docker-how-to-enable-pcntlprocess-control-extensions-1afk +RUN docker-php-ext-configure pcntl --enable-pcntl && docker-php-ext-install pcntl + +RUN pecl install apcu + +RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer + +RUN rm -rf /var/cache/apt/lists + +# Please refer to the README.md for updating these 2 files. +#COPY src/composer.json /tmp + +#RUN cd /tmp && composer install && composer update --optimize-autoloader + +#RUN mv /tmp/vendor /var/www/html +#RUN cp /tmp/composer.* /var/www/html + +#RUN composer clear-cache + +RUN curl -L https://github.com/roadrunner-server/roadrunner/releases/download/v2024.3.0/roadrunner-2024.3.0-linux-amd64.tar.gz -o /tmp/roadrunner.tar.gz \ + && tar -xvzf /tmp/roadrunner.tar.gz -C /tmp \ + && mv /tmp/roadrunner-2024.3.0-linux-amd64/rr /var/www/html/rr \ + && chmod +x /var/www/html/rr \ + && rm -rf /tmp/roadrunner.tar.gz /tmp/roadrunner-2024.3.0-linux-amd64 + +# Set PHP configurations for memory, execution time, and file upload sizes +RUN echo "memory_limit = 1024M" > /usr/local/etc/php/conf.d/custom-php-memlimit.ini; \ + echo "max_execution_time = 500" > /usr/local/etc/php/conf.d/custom-php-time.ini; \ + echo "post_max_size = 100M" > /usr/local/etc/php/conf.d/custom-php-size.ini; + +# Modify user and group ID for www-data +RUN groupmod -g 1001 www-data && usermod -u 1001 -g 1001 www-data diff --git a/docker/policy.xml b/docker/policy.xml new file mode 100644 index 0000000..3fbbee3 --- /dev/null +++ b/docker/policy.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docker/python/Dockerfile b/docker/python/Dockerfile new file mode 100644 index 0000000..1bf4ff4 --- /dev/null +++ b/docker/python/Dockerfile @@ -0,0 +1,28 @@ +FROM python:3.11-slim + +ENV PYTHONUNBUFFERED=1 + +# Set working directory +WORKDIR /app + +# Install system dependencies for WeasyPrint +RUN apt-get update && apt-get install -y \ + python3-pip \ + libpango-1.0-0 \ + libharfbuzz0b \ + libpangoft2-1.0-0 \ + libharfbuzz-subset0 \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + +# Install Python dependencies +RUN pip install --no-cache-dir Flask PyMuPDF weasyprint + +# Copy application files +COPY ./src/scripts/pdf_manage.py /app/pdf_manage.py + +# Expose the Flask port +EXPOSE 5000 + +# Run Flask server +CMD ["python", "pdf_manage.py"] \ No newline at end of file diff --git a/docker/roadrunner.yaml b/docker/roadrunner.yaml new file mode 100644 index 0000000..b65ae25 --- /dev/null +++ b/docker/roadrunner.yaml @@ -0,0 +1,54 @@ +version: '3' + +rpc: + # RPC interface for internal communication + listen: tcp://127.0.0.1:6001 + +server: + # Command to start Laravel Octane server + command: "php artisan octane:start --server=roadrunner --host=0.0.0.0 --port=9001" + +http: + # HTTP server configuration + address: 0.0.0.0:9001 + + pool: + # Worker pool configuration + num_workers: 8 + max_jobs: 1000 + allocate_timeout: 60s + destroy_timeout: 60s + + static: + # Serve static files + dir: ./public + forbid: [ ".php", ".env", ".htaccess" ] + +jobs: + num_pollers: 64 + timeout: 60 + pipeline_size: 100000 + driver: redis + redis: + addr: laravel-redis:6379 # Redis host and port + stream: [ "fetch_tracking", "callback_retry", "default", "storage_management" ] + timeout: 10s # Fetch timeout + prefetch: 10 + + pool: + num_workers: 10 + allocate_timeout: 60s + destroy_timeout: 60s + +logs: + # Logging configuration + level: debug + mode: development + +metrics: + # Metrics for monitoring + address: 0.0.0.0:2112 + +health: + # Health check endpoint + address: 0.0.0.0:2113 diff --git a/docker/supervisor/horizon.conf b/docker/supervisor/horizon.conf new file mode 100644 index 0000000..b039744 --- /dev/null +++ b/docker/supervisor/horizon.conf @@ -0,0 +1,15 @@ +[supervisord] +nodaemon=true + + +[program:horizon] +process_name=%(program_name)s +command=php /var/www/html/artisan horizon +autostart=true +autorestart=true +stopasgroup=true +killasgroup=true +user=www-data +redirect_stderr=true +stdout_logfile=/var/www/html/storage/logs/horizon.log +stopwaitsecs=3600 \ No newline at end of file diff --git a/docker/xdebug.ini b/docker/xdebug.ini new file mode 100644 index 0000000..54c4538 --- /dev/null +++ b/docker/xdebug.ini @@ -0,0 +1,16 @@ +zend_extension=xdebug.so +xdebug.remote_enable=1 +xdebug.mode=debug +xdebug.start_with_request=yes +xdebug.idekey=shipping +xdebug.client_host=host.docker.internal +xdebug.client_port=9003 +xdebug.remote_autostart=1 +;xdebug.remote_connect_back=1 +xdebug.remote_handler = dbgp +xdebug.remote_mode = req +xdebug.log = /var/www/html/xdebug.log +xdebug.log_level = 10 + + + diff --git a/.env b/src/.env similarity index 99% rename from .env rename to src/.env index fffb839..a34e324 100644 --- a/.env +++ b/src/.env @@ -12,6 +12,7 @@ DB_DATABASE=transcriptor DB_USERNAME=t0is DB_PASSWORD=Silenceisgolden555 + APP_KEY=base64:ZbNIu92nsvQmghttxsgjENh6Aqk4xR+o6LU7Wt9mpy8= diff --git a/README.md b/src/README.md similarity index 100% rename from README.md rename to src/README.md diff --git a/app/Actions/Fortify/CreateNewUser.php b/src/app/Actions/Fortify/CreateNewUser.php similarity index 100% rename from app/Actions/Fortify/CreateNewUser.php rename to src/app/Actions/Fortify/CreateNewUser.php diff --git a/app/Actions/Fortify/PasswordValidationRules.php b/src/app/Actions/Fortify/PasswordValidationRules.php similarity index 100% rename from app/Actions/Fortify/PasswordValidationRules.php rename to src/app/Actions/Fortify/PasswordValidationRules.php diff --git a/app/Actions/Fortify/ResetUserPassword.php b/src/app/Actions/Fortify/ResetUserPassword.php similarity index 100% rename from app/Actions/Fortify/ResetUserPassword.php rename to src/app/Actions/Fortify/ResetUserPassword.php diff --git a/app/Actions/Fortify/UpdateUserPassword.php b/src/app/Actions/Fortify/UpdateUserPassword.php similarity index 100% rename from app/Actions/Fortify/UpdateUserPassword.php rename to src/app/Actions/Fortify/UpdateUserPassword.php diff --git a/app/Actions/Fortify/UpdateUserProfileInformation.php b/src/app/Actions/Fortify/UpdateUserProfileInformation.php similarity index 100% rename from app/Actions/Fortify/UpdateUserProfileInformation.php rename to src/app/Actions/Fortify/UpdateUserProfileInformation.php diff --git a/app/Actions/Jetstream/AddTeamMember.php b/src/app/Actions/Jetstream/AddTeamMember.php similarity index 100% rename from app/Actions/Jetstream/AddTeamMember.php rename to src/app/Actions/Jetstream/AddTeamMember.php diff --git a/app/Actions/Jetstream/CreateTeam.php b/src/app/Actions/Jetstream/CreateTeam.php similarity index 100% rename from app/Actions/Jetstream/CreateTeam.php rename to src/app/Actions/Jetstream/CreateTeam.php diff --git a/app/Actions/Jetstream/DeleteTeam.php b/src/app/Actions/Jetstream/DeleteTeam.php similarity index 100% rename from app/Actions/Jetstream/DeleteTeam.php rename to src/app/Actions/Jetstream/DeleteTeam.php diff --git a/app/Actions/Jetstream/DeleteUser.php b/src/app/Actions/Jetstream/DeleteUser.php similarity index 100% rename from app/Actions/Jetstream/DeleteUser.php rename to src/app/Actions/Jetstream/DeleteUser.php diff --git a/app/Actions/Jetstream/InviteTeamMember.php b/src/app/Actions/Jetstream/InviteTeamMember.php similarity index 100% rename from app/Actions/Jetstream/InviteTeamMember.php rename to src/app/Actions/Jetstream/InviteTeamMember.php diff --git a/app/Actions/Jetstream/RemoveTeamMember.php b/src/app/Actions/Jetstream/RemoveTeamMember.php similarity index 100% rename from app/Actions/Jetstream/RemoveTeamMember.php rename to src/app/Actions/Jetstream/RemoveTeamMember.php diff --git a/app/Actions/Jetstream/UpdateTeamName.php b/src/app/Actions/Jetstream/UpdateTeamName.php similarity index 100% rename from app/Actions/Jetstream/UpdateTeamName.php rename to src/app/Actions/Jetstream/UpdateTeamName.php diff --git a/app/Http/Controllers/ChannelController.php b/src/app/Http/Controllers/ChannelController.php similarity index 100% rename from app/Http/Controllers/ChannelController.php rename to src/app/Http/Controllers/ChannelController.php diff --git a/app/Http/Controllers/ClipController.php b/src/app/Http/Controllers/ClipController.php similarity index 100% rename from app/Http/Controllers/ClipController.php rename to src/app/Http/Controllers/ClipController.php diff --git a/app/Http/Controllers/Controller.php b/src/app/Http/Controllers/Controller.php similarity index 100% rename from app/Http/Controllers/Controller.php rename to src/app/Http/Controllers/Controller.php diff --git a/app/Http/Controllers/StatsController.php b/src/app/Http/Controllers/StatsController.php similarity index 73% rename from app/Http/Controllers/StatsController.php rename to src/app/Http/Controllers/StatsController.php index cf2e487..563beb7 100644 --- a/app/Http/Controllers/StatsController.php +++ b/src/app/Http/Controllers/StatsController.php @@ -23,15 +23,29 @@ class StatsController extends Controller ->selectRaw('AVG(TIMESTAMPDIFF(SECOND, transcription_start, transcription_finish)) as avg_duration') ->value('avg_duration'); - // 2. Average VOD processing time (last 30 days, downloaded & processed = true) - $vodProcessingAverage = Video::where('data_downloaded', true) - ->where('processed', true) + // 2. Average VOD processing time + $vodProcessingAverage = Video::join('transcriptions as t', 'videos.id', '=', 't.video_id') + ->where('videos.processed', true) + ->whereNotNull('t.transcription_finish') + ->where('videos.created_at', '>=', $thirtyDaysAgo) + ->selectRaw( + 'AVG(TIMESTAMPDIFF( + SECOND, + videos.created_at, + t.transcription_finish + )) as avg_seconds' + ) + ->value('avg_seconds'); + + $vodDownloadAverage = Video::where('data_downloaded', true) + ->whereNotNull('download_start') + ->whereNotNull('download_end') ->where('created_at', '>=', $thirtyDaysAgo) ->whereNotNull('created_at') ->whereNotNull('updated_at') ->whereRaw('updated_at > "2025-03-31 23:59:59"') - ->selectRaw('AVG(TIMESTAMPDIFF(SECOND, created_at, updated_at)) as avg_processing') - ->value('avg_processing'); + ->selectRaw('AVG(TIMESTAMPDIFF(SECOND, download_start, download_end)) as avg_download') + ->value('avg_download'); $averageExternalDate = DB::table('videos') ->where('data_downloaded', false) @@ -64,7 +78,9 @@ class StatsController extends Controller // Return all the stats return response()->json([ 'transcription_duration_average' => round($transcriptionDurationAverage, 2), - 'vod_processing_average' => round($vodDelayNow, 2), + 'vod_delay_now' => round($vodDelayNow, 2), + 'vod_download_average' => round($vodDownloadAverage, 2), + 'vod_processing_average' => round($vodProcessingAverage, 2), 'clip_average_per_day' => round($averageClipsPerDay, 0), 'video_downloaded_true' => $videoDownloadStats->downloaded_true, 'video_downloaded_false' => $videoDownloadStats->downloaded_false, diff --git a/app/Http/Controllers/VideoController.php b/src/app/Http/Controllers/VideoController.php similarity index 100% rename from app/Http/Controllers/VideoController.php rename to src/app/Http/Controllers/VideoController.php diff --git a/app/Http/Middleware/HandleInertiaRequests.php b/src/app/Http/Middleware/HandleInertiaRequests.php similarity index 100% rename from app/Http/Middleware/HandleInertiaRequests.php rename to src/app/Http/Middleware/HandleInertiaRequests.php diff --git a/app/Models/Channel.php b/src/app/Models/Channel.php similarity index 100% rename from app/Models/Channel.php rename to src/app/Models/Channel.php diff --git a/app/Models/Clip.php b/src/app/Models/Clip.php similarity index 100% rename from app/Models/Clip.php rename to src/app/Models/Clip.php diff --git a/app/Models/Membership.php b/src/app/Models/Membership.php similarity index 100% rename from app/Models/Membership.php rename to src/app/Models/Membership.php diff --git a/app/Models/Team.php b/src/app/Models/Team.php similarity index 100% rename from app/Models/Team.php rename to src/app/Models/Team.php diff --git a/app/Models/TeamInvitation.php b/src/app/Models/TeamInvitation.php similarity index 100% rename from app/Models/TeamInvitation.php rename to src/app/Models/TeamInvitation.php diff --git a/app/Models/Transcription.php b/src/app/Models/Transcription.php similarity index 100% rename from app/Models/Transcription.php rename to src/app/Models/Transcription.php diff --git a/app/Models/User.php b/src/app/Models/User.php similarity index 100% rename from app/Models/User.php rename to src/app/Models/User.php diff --git a/app/Models/Video.php b/src/app/Models/Video.php similarity index 100% rename from app/Models/Video.php rename to src/app/Models/Video.php diff --git a/app/Policies/TeamPolicy.php b/src/app/Policies/TeamPolicy.php similarity index 100% rename from app/Policies/TeamPolicy.php rename to src/app/Policies/TeamPolicy.php diff --git a/app/Providers/AppServiceProvider.php b/src/app/Providers/AppServiceProvider.php similarity index 100% rename from app/Providers/AppServiceProvider.php rename to src/app/Providers/AppServiceProvider.php diff --git a/app/Providers/FortifyServiceProvider.php b/src/app/Providers/FortifyServiceProvider.php similarity index 100% rename from app/Providers/FortifyServiceProvider.php rename to src/app/Providers/FortifyServiceProvider.php diff --git a/app/Providers/JetstreamServiceProvider.php b/src/app/Providers/JetstreamServiceProvider.php similarity index 100% rename from app/Providers/JetstreamServiceProvider.php rename to src/app/Providers/JetstreamServiceProvider.php diff --git a/artisan b/src/artisan similarity index 100% rename from artisan rename to src/artisan diff --git a/bootstrap/app.php b/src/bootstrap/app.php similarity index 100% rename from bootstrap/app.php rename to src/bootstrap/app.php diff --git a/bootstrap/cache/.gitignore b/src/bootstrap/cache/.gitignore similarity index 100% rename from bootstrap/cache/.gitignore rename to src/bootstrap/cache/.gitignore diff --git a/bootstrap/providers.php b/src/bootstrap/providers.php similarity index 100% rename from bootstrap/providers.php rename to src/bootstrap/providers.php diff --git a/bootstrap/ssr/app.js b/src/bootstrap/ssr/app.js similarity index 100% rename from bootstrap/ssr/app.js rename to src/bootstrap/ssr/app.js diff --git a/bootstrap/ssr/assets/APITokenManager-iZxUx3eK.js b/src/bootstrap/ssr/assets/APITokenManager-iZxUx3eK.js similarity index 100% rename from bootstrap/ssr/assets/APITokenManager-iZxUx3eK.js rename to src/bootstrap/ssr/assets/APITokenManager-iZxUx3eK.js diff --git a/bootstrap/ssr/assets/ActionMessage-s_mcCJ3s.js b/src/bootstrap/ssr/assets/ActionMessage-s_mcCJ3s.js similarity index 100% rename from bootstrap/ssr/assets/ActionMessage-s_mcCJ3s.js rename to src/bootstrap/ssr/assets/ActionMessage-s_mcCJ3s.js diff --git a/bootstrap/ssr/assets/AppLayout-DitNPgwT.js b/src/bootstrap/ssr/assets/AppLayout-DitNPgwT.js similarity index 100% rename from bootstrap/ssr/assets/AppLayout-DitNPgwT.js rename to src/bootstrap/ssr/assets/AppLayout-DitNPgwT.js diff --git a/bootstrap/ssr/assets/AuthenticationCard--MCzdtHR.js b/src/bootstrap/ssr/assets/AuthenticationCard--MCzdtHR.js similarity index 100% rename from bootstrap/ssr/assets/AuthenticationCard--MCzdtHR.js rename to src/bootstrap/ssr/assets/AuthenticationCard--MCzdtHR.js diff --git a/bootstrap/ssr/assets/AuthenticationCardLogo-CZgVhhfE.js b/src/bootstrap/ssr/assets/AuthenticationCardLogo-CZgVhhfE.js similarity index 100% rename from bootstrap/ssr/assets/AuthenticationCardLogo-CZgVhhfE.js rename to src/bootstrap/ssr/assets/AuthenticationCardLogo-CZgVhhfE.js diff --git a/bootstrap/ssr/assets/Checkbox-XR8K_oHK.js b/src/bootstrap/ssr/assets/Checkbox-XR8K_oHK.js similarity index 100% rename from bootstrap/ssr/assets/Checkbox-XR8K_oHK.js rename to src/bootstrap/ssr/assets/Checkbox-XR8K_oHK.js diff --git a/bootstrap/ssr/assets/ConfirmPassword-ju6YtACP.js b/src/bootstrap/ssr/assets/ConfirmPassword-ju6YtACP.js similarity index 100% rename from bootstrap/ssr/assets/ConfirmPassword-ju6YtACP.js rename to src/bootstrap/ssr/assets/ConfirmPassword-ju6YtACP.js diff --git a/bootstrap/ssr/assets/ConfirmationModal-BYr2Juy2.js b/src/bootstrap/ssr/assets/ConfirmationModal-BYr2Juy2.js similarity index 100% rename from bootstrap/ssr/assets/ConfirmationModal-BYr2Juy2.js rename to src/bootstrap/ssr/assets/ConfirmationModal-BYr2Juy2.js diff --git a/bootstrap/ssr/assets/Create-Bq48ODsT.js b/src/bootstrap/ssr/assets/Create-Bq48ODsT.js similarity index 100% rename from bootstrap/ssr/assets/Create-Bq48ODsT.js rename to src/bootstrap/ssr/assets/Create-Bq48ODsT.js diff --git a/bootstrap/ssr/assets/CreateTeamForm-CmUI_Zfp.js b/src/bootstrap/ssr/assets/CreateTeamForm-CmUI_Zfp.js similarity index 100% rename from bootstrap/ssr/assets/CreateTeamForm-CmUI_Zfp.js rename to src/bootstrap/ssr/assets/CreateTeamForm-CmUI_Zfp.js diff --git a/bootstrap/ssr/assets/DangerButton-BAZynYAq.js b/src/bootstrap/ssr/assets/DangerButton-BAZynYAq.js similarity index 100% rename from bootstrap/ssr/assets/DangerButton-BAZynYAq.js rename to src/bootstrap/ssr/assets/DangerButton-BAZynYAq.js diff --git a/bootstrap/ssr/assets/Dashboard-CkDsUhZk.js b/src/bootstrap/ssr/assets/Dashboard-CkDsUhZk.js similarity index 100% rename from bootstrap/ssr/assets/Dashboard-CkDsUhZk.js rename to src/bootstrap/ssr/assets/Dashboard-CkDsUhZk.js diff --git a/bootstrap/ssr/assets/DeleteTeamForm-CDG-Mx5L.js b/src/bootstrap/ssr/assets/DeleteTeamForm-CDG-Mx5L.js similarity index 100% rename from bootstrap/ssr/assets/DeleteTeamForm-CDG-Mx5L.js rename to src/bootstrap/ssr/assets/DeleteTeamForm-CDG-Mx5L.js diff --git a/bootstrap/ssr/assets/DeleteUserForm-Ptw0GKXr.js b/src/bootstrap/ssr/assets/DeleteUserForm-Ptw0GKXr.js similarity index 100% rename from bootstrap/ssr/assets/DeleteUserForm-Ptw0GKXr.js rename to src/bootstrap/ssr/assets/DeleteUserForm-Ptw0GKXr.js diff --git a/bootstrap/ssr/assets/DialogModal-D0pyMzH2.js b/src/bootstrap/ssr/assets/DialogModal-D0pyMzH2.js similarity index 100% rename from bootstrap/ssr/assets/DialogModal-D0pyMzH2.js rename to src/bootstrap/ssr/assets/DialogModal-D0pyMzH2.js diff --git a/bootstrap/ssr/assets/ForgotPassword-BhYnh0qc.js b/src/bootstrap/ssr/assets/ForgotPassword-BhYnh0qc.js similarity index 100% rename from bootstrap/ssr/assets/ForgotPassword-BhYnh0qc.js rename to src/bootstrap/ssr/assets/ForgotPassword-BhYnh0qc.js diff --git a/bootstrap/ssr/assets/FormSection-DI6t3wFC.js b/src/bootstrap/ssr/assets/FormSection-DI6t3wFC.js similarity index 100% rename from bootstrap/ssr/assets/FormSection-DI6t3wFC.js rename to src/bootstrap/ssr/assets/FormSection-DI6t3wFC.js diff --git a/bootstrap/ssr/assets/Index-CwIeEkIw.js b/src/bootstrap/ssr/assets/Index-CwIeEkIw.js similarity index 100% rename from bootstrap/ssr/assets/Index-CwIeEkIw.js rename to src/bootstrap/ssr/assets/Index-CwIeEkIw.js diff --git a/bootstrap/ssr/assets/InputLabel-DhqxoV6M.js b/src/bootstrap/ssr/assets/InputLabel-DhqxoV6M.js similarity index 100% rename from bootstrap/ssr/assets/InputLabel-DhqxoV6M.js rename to src/bootstrap/ssr/assets/InputLabel-DhqxoV6M.js diff --git a/bootstrap/ssr/assets/Login-P_qEmbLO.js b/src/bootstrap/ssr/assets/Login-P_qEmbLO.js similarity index 100% rename from bootstrap/ssr/assets/Login-P_qEmbLO.js rename to src/bootstrap/ssr/assets/Login-P_qEmbLO.js diff --git a/bootstrap/ssr/assets/LogoutOtherBrowserSessionsForm-Bd8DyQdZ.js b/src/bootstrap/ssr/assets/LogoutOtherBrowserSessionsForm-Bd8DyQdZ.js similarity index 100% rename from bootstrap/ssr/assets/LogoutOtherBrowserSessionsForm-Bd8DyQdZ.js rename to src/bootstrap/ssr/assets/LogoutOtherBrowserSessionsForm-Bd8DyQdZ.js diff --git a/bootstrap/ssr/assets/Modal-D5yHmTM4.js b/src/bootstrap/ssr/assets/Modal-D5yHmTM4.js similarity index 100% rename from bootstrap/ssr/assets/Modal-D5yHmTM4.js rename to src/bootstrap/ssr/assets/Modal-D5yHmTM4.js diff --git a/bootstrap/ssr/assets/PrimaryButton-C2B8UWiv.js b/src/bootstrap/ssr/assets/PrimaryButton-C2B8UWiv.js similarity index 100% rename from bootstrap/ssr/assets/PrimaryButton-C2B8UWiv.js rename to src/bootstrap/ssr/assets/PrimaryButton-C2B8UWiv.js diff --git a/bootstrap/ssr/assets/PrivacyPolicy-DYEevN3b.js b/src/bootstrap/ssr/assets/PrivacyPolicy-DYEevN3b.js similarity index 100% rename from bootstrap/ssr/assets/PrivacyPolicy-DYEevN3b.js rename to src/bootstrap/ssr/assets/PrivacyPolicy-DYEevN3b.js diff --git a/bootstrap/ssr/assets/Register-anJ95HWS.js b/src/bootstrap/ssr/assets/Register-anJ95HWS.js similarity index 100% rename from bootstrap/ssr/assets/Register-anJ95HWS.js rename to src/bootstrap/ssr/assets/Register-anJ95HWS.js diff --git a/bootstrap/ssr/assets/ResetPassword-DAOSACWm.js b/src/bootstrap/ssr/assets/ResetPassword-DAOSACWm.js similarity index 100% rename from bootstrap/ssr/assets/ResetPassword-DAOSACWm.js rename to src/bootstrap/ssr/assets/ResetPassword-DAOSACWm.js diff --git a/bootstrap/ssr/assets/SecondaryButton-G68tKuYQ.js b/src/bootstrap/ssr/assets/SecondaryButton-G68tKuYQ.js similarity index 100% rename from bootstrap/ssr/assets/SecondaryButton-G68tKuYQ.js rename to src/bootstrap/ssr/assets/SecondaryButton-G68tKuYQ.js diff --git a/bootstrap/ssr/assets/SectionBorder-Dh4nHf2e.js b/src/bootstrap/ssr/assets/SectionBorder-Dh4nHf2e.js similarity index 100% rename from bootstrap/ssr/assets/SectionBorder-Dh4nHf2e.js rename to src/bootstrap/ssr/assets/SectionBorder-Dh4nHf2e.js diff --git a/bootstrap/ssr/assets/SectionTitle-DnuUNpyS.js b/src/bootstrap/ssr/assets/SectionTitle-DnuUNpyS.js similarity index 100% rename from bootstrap/ssr/assets/SectionTitle-DnuUNpyS.js rename to src/bootstrap/ssr/assets/SectionTitle-DnuUNpyS.js diff --git a/bootstrap/ssr/assets/Show-C_aCmrEJ.js b/src/bootstrap/ssr/assets/Show-C_aCmrEJ.js similarity index 100% rename from bootstrap/ssr/assets/Show-C_aCmrEJ.js rename to src/bootstrap/ssr/assets/Show-C_aCmrEJ.js diff --git a/bootstrap/ssr/assets/Show-DAwzGQF4.js b/src/bootstrap/ssr/assets/Show-DAwzGQF4.js similarity index 100% rename from bootstrap/ssr/assets/Show-DAwzGQF4.js rename to src/bootstrap/ssr/assets/Show-DAwzGQF4.js diff --git a/bootstrap/ssr/assets/TeamMemberManager-vS8Og7eY.js b/src/bootstrap/ssr/assets/TeamMemberManager-vS8Og7eY.js similarity index 100% rename from bootstrap/ssr/assets/TeamMemberManager-vS8Og7eY.js rename to src/bootstrap/ssr/assets/TeamMemberManager-vS8Og7eY.js diff --git a/bootstrap/ssr/assets/TermsOfService-CfLQttvD.js b/src/bootstrap/ssr/assets/TermsOfService-CfLQttvD.js similarity index 100% rename from bootstrap/ssr/assets/TermsOfService-CfLQttvD.js rename to src/bootstrap/ssr/assets/TermsOfService-CfLQttvD.js diff --git a/bootstrap/ssr/assets/TextInput-CMJy2hIv.js b/src/bootstrap/ssr/assets/TextInput-CMJy2hIv.js similarity index 100% rename from bootstrap/ssr/assets/TextInput-CMJy2hIv.js rename to src/bootstrap/ssr/assets/TextInput-CMJy2hIv.js diff --git a/bootstrap/ssr/assets/TwoFactorAuthenticationForm-BLalZpWn.js b/src/bootstrap/ssr/assets/TwoFactorAuthenticationForm-BLalZpWn.js similarity index 100% rename from bootstrap/ssr/assets/TwoFactorAuthenticationForm-BLalZpWn.js rename to src/bootstrap/ssr/assets/TwoFactorAuthenticationForm-BLalZpWn.js diff --git a/bootstrap/ssr/assets/TwoFactorChallenge-Tkr6HCx-.js b/src/bootstrap/ssr/assets/TwoFactorChallenge-Tkr6HCx-.js similarity index 100% rename from bootstrap/ssr/assets/TwoFactorChallenge-Tkr6HCx-.js rename to src/bootstrap/ssr/assets/TwoFactorChallenge-Tkr6HCx-.js diff --git a/bootstrap/ssr/assets/UpdatePasswordForm-B_100APE.js b/src/bootstrap/ssr/assets/UpdatePasswordForm-B_100APE.js similarity index 100% rename from bootstrap/ssr/assets/UpdatePasswordForm-B_100APE.js rename to src/bootstrap/ssr/assets/UpdatePasswordForm-B_100APE.js diff --git a/bootstrap/ssr/assets/UpdateProfileInformationForm-g6OOT46r.js b/src/bootstrap/ssr/assets/UpdateProfileInformationForm-g6OOT46r.js similarity index 100% rename from bootstrap/ssr/assets/UpdateProfileInformationForm-g6OOT46r.js rename to src/bootstrap/ssr/assets/UpdateProfileInformationForm-g6OOT46r.js diff --git a/bootstrap/ssr/assets/UpdateTeamNameForm-CArH28KV.js b/src/bootstrap/ssr/assets/UpdateTeamNameForm-CArH28KV.js similarity index 100% rename from bootstrap/ssr/assets/UpdateTeamNameForm-CArH28KV.js rename to src/bootstrap/ssr/assets/UpdateTeamNameForm-CArH28KV.js diff --git a/bootstrap/ssr/assets/VerifyEmail--hB-n-6S.js b/src/bootstrap/ssr/assets/VerifyEmail--hB-n-6S.js similarity index 100% rename from bootstrap/ssr/assets/VerifyEmail--hB-n-6S.js rename to src/bootstrap/ssr/assets/VerifyEmail--hB-n-6S.js diff --git a/bootstrap/ssr/assets/Welcome-Bnby2VG4.js b/src/bootstrap/ssr/assets/Welcome-Bnby2VG4.js similarity index 100% rename from bootstrap/ssr/assets/Welcome-Bnby2VG4.js rename to src/bootstrap/ssr/assets/Welcome-Bnby2VG4.js diff --git a/bootstrap/ssr/assets/useTypedPage-Do3SqtsL.js b/src/bootstrap/ssr/assets/useTypedPage-Do3SqtsL.js similarity index 100% rename from bootstrap/ssr/assets/useTypedPage-Do3SqtsL.js rename to src/bootstrap/ssr/assets/useTypedPage-Do3SqtsL.js diff --git a/bootstrap/ssr/ssr-manifest.json b/src/bootstrap/ssr/ssr-manifest.json similarity index 100% rename from bootstrap/ssr/ssr-manifest.json rename to src/bootstrap/ssr/ssr-manifest.json diff --git a/composer.json b/src/composer.json similarity index 100% rename from composer.json rename to src/composer.json diff --git a/config/app.php b/src/config/app.php similarity index 100% rename from config/app.php rename to src/config/app.php diff --git a/config/auth.php b/src/config/auth.php similarity index 100% rename from config/auth.php rename to src/config/auth.php diff --git a/config/cache.php b/src/config/cache.php similarity index 100% rename from config/cache.php rename to src/config/cache.php diff --git a/config/database.php b/src/config/database.php similarity index 100% rename from config/database.php rename to src/config/database.php diff --git a/config/filesystems.php b/src/config/filesystems.php similarity index 100% rename from config/filesystems.php rename to src/config/filesystems.php diff --git a/config/fortify.php b/src/config/fortify.php similarity index 100% rename from config/fortify.php rename to src/config/fortify.php diff --git a/config/jetstream.php b/src/config/jetstream.php similarity index 100% rename from config/jetstream.php rename to src/config/jetstream.php diff --git a/config/logging.php b/src/config/logging.php similarity index 100% rename from config/logging.php rename to src/config/logging.php diff --git a/config/mail.php b/src/config/mail.php similarity index 100% rename from config/mail.php rename to src/config/mail.php diff --git a/config/queue.php b/src/config/queue.php similarity index 100% rename from config/queue.php rename to src/config/queue.php diff --git a/config/sanctum.php b/src/config/sanctum.php similarity index 100% rename from config/sanctum.php rename to src/config/sanctum.php diff --git a/config/services.php b/src/config/services.php similarity index 100% rename from config/services.php rename to src/config/services.php diff --git a/config/session.php b/src/config/session.php similarity index 100% rename from config/session.php rename to src/config/session.php diff --git a/database/.gitignore b/src/database/.gitignore similarity index 100% rename from database/.gitignore rename to src/database/.gitignore diff --git a/database/factories/TeamFactory.php b/src/database/factories/TeamFactory.php similarity index 100% rename from database/factories/TeamFactory.php rename to src/database/factories/TeamFactory.php diff --git a/database/factories/UserFactory.php b/src/database/factories/UserFactory.php similarity index 100% rename from database/factories/UserFactory.php rename to src/database/factories/UserFactory.php diff --git a/database/migrations/0001_01_01_000000_create_users_table.php b/src/database/migrations/0001_01_01_000000_create_users_table.php similarity index 100% rename from database/migrations/0001_01_01_000000_create_users_table.php rename to src/database/migrations/0001_01_01_000000_create_users_table.php diff --git a/database/migrations/0001_01_01_000001_create_cache_table.php b/src/database/migrations/0001_01_01_000001_create_cache_table.php similarity index 100% rename from database/migrations/0001_01_01_000001_create_cache_table.php rename to src/database/migrations/0001_01_01_000001_create_cache_table.php diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/src/database/migrations/0001_01_01_000002_create_jobs_table.php similarity index 100% rename from database/migrations/0001_01_01_000002_create_jobs_table.php rename to src/database/migrations/0001_01_01_000002_create_jobs_table.php diff --git a/database/migrations/2025_03_21_025423_add_two_factor_columns_to_users_table.php b/src/database/migrations/2025_03_21_025423_add_two_factor_columns_to_users_table.php similarity index 100% rename from database/migrations/2025_03_21_025423_add_two_factor_columns_to_users_table.php rename to src/database/migrations/2025_03_21_025423_add_two_factor_columns_to_users_table.php diff --git a/database/migrations/2025_03_21_025431_create_personal_access_tokens_table.php b/src/database/migrations/2025_03_21_025431_create_personal_access_tokens_table.php similarity index 100% rename from database/migrations/2025_03_21_025431_create_personal_access_tokens_table.php rename to src/database/migrations/2025_03_21_025431_create_personal_access_tokens_table.php diff --git a/database/migrations/2025_03_21_025431_create_teams_table.php b/src/database/migrations/2025_03_21_025431_create_teams_table.php similarity index 100% rename from database/migrations/2025_03_21_025431_create_teams_table.php rename to src/database/migrations/2025_03_21_025431_create_teams_table.php diff --git a/database/migrations/2025_03_21_025432_create_team_user_table.php b/src/database/migrations/2025_03_21_025432_create_team_user_table.php similarity index 100% rename from database/migrations/2025_03_21_025432_create_team_user_table.php rename to src/database/migrations/2025_03_21_025432_create_team_user_table.php diff --git a/database/migrations/2025_03_21_025433_create_team_invitations_table.php b/src/database/migrations/2025_03_21_025433_create_team_invitations_table.php similarity index 100% rename from database/migrations/2025_03_21_025433_create_team_invitations_table.php rename to src/database/migrations/2025_03_21_025433_create_team_invitations_table.php diff --git a/database/seeders/DatabaseSeeder.php b/src/database/seeders/DatabaseSeeder.php similarity index 100% rename from database/seeders/DatabaseSeeder.php rename to src/database/seeders/DatabaseSeeder.php diff --git a/jsconfig.json b/src/jsconfig.json similarity index 100% rename from jsconfig.json rename to src/jsconfig.json diff --git a/package.json b/src/package.json similarity index 100% rename from package.json rename to src/package.json diff --git a/phpunit.xml b/src/phpunit.xml similarity index 100% rename from phpunit.xml rename to src/phpunit.xml diff --git a/postcss.config.js b/src/postcss.config.js similarity index 100% rename from postcss.config.js rename to src/postcss.config.js diff --git a/public/.htaccess b/src/public/.htaccess similarity index 100% rename from public/.htaccess rename to src/public/.htaccess diff --git a/public/build/assets/APITokenManager-DJxa8V1W.js b/src/public/build/assets/APITokenManager-DJxa8V1W.js similarity index 100% rename from public/build/assets/APITokenManager-DJxa8V1W.js rename to src/public/build/assets/APITokenManager-DJxa8V1W.js diff --git a/public/build/assets/ActionMessage-BR0zIw5R.js b/src/public/build/assets/ActionMessage-BR0zIw5R.js similarity index 100% rename from public/build/assets/ActionMessage-BR0zIw5R.js rename to src/public/build/assets/ActionMessage-BR0zIw5R.js diff --git a/public/build/assets/AppLayout-ZM0oZ-BJ.js b/src/public/build/assets/AppLayout-ZM0oZ-BJ.js similarity index 100% rename from public/build/assets/AppLayout-ZM0oZ-BJ.js rename to src/public/build/assets/AppLayout-ZM0oZ-BJ.js diff --git a/public/build/assets/AuthenticationCard-CH5UMK9r.js b/src/public/build/assets/AuthenticationCard-CH5UMK9r.js similarity index 100% rename from public/build/assets/AuthenticationCard-CH5UMK9r.js rename to src/public/build/assets/AuthenticationCard-CH5UMK9r.js diff --git a/public/build/assets/AuthenticationCardLogo-DxGGqaxw.js b/src/public/build/assets/AuthenticationCardLogo-DxGGqaxw.js similarity index 100% rename from public/build/assets/AuthenticationCardLogo-DxGGqaxw.js rename to src/public/build/assets/AuthenticationCardLogo-DxGGqaxw.js diff --git a/public/build/assets/Checkbox-DRbLuUpm.js b/src/public/build/assets/Checkbox-DRbLuUpm.js similarity index 100% rename from public/build/assets/Checkbox-DRbLuUpm.js rename to src/public/build/assets/Checkbox-DRbLuUpm.js diff --git a/public/build/assets/ConfirmPassword-Cf-6lS2z.js b/src/public/build/assets/ConfirmPassword-Cf-6lS2z.js similarity index 100% rename from public/build/assets/ConfirmPassword-Cf-6lS2z.js rename to src/public/build/assets/ConfirmPassword-Cf-6lS2z.js diff --git a/public/build/assets/ConfirmationModal-A-4mK9mU.js b/src/public/build/assets/ConfirmationModal-A-4mK9mU.js similarity index 100% rename from public/build/assets/ConfirmationModal-A-4mK9mU.js rename to src/public/build/assets/ConfirmationModal-A-4mK9mU.js diff --git a/public/build/assets/Create-CC2vQbdY.js b/src/public/build/assets/Create-CC2vQbdY.js similarity index 100% rename from public/build/assets/Create-CC2vQbdY.js rename to src/public/build/assets/Create-CC2vQbdY.js diff --git a/public/build/assets/CreateTeamForm-B2bh2Oa6.js b/src/public/build/assets/CreateTeamForm-B2bh2Oa6.js similarity index 100% rename from public/build/assets/CreateTeamForm-B2bh2Oa6.js rename to src/public/build/assets/CreateTeamForm-B2bh2Oa6.js diff --git a/public/build/assets/DangerButton--OsE_WB2.js b/src/public/build/assets/DangerButton--OsE_WB2.js similarity index 100% rename from public/build/assets/DangerButton--OsE_WB2.js rename to src/public/build/assets/DangerButton--OsE_WB2.js diff --git a/public/build/assets/Dashboard-BxXaChya.js b/src/public/build/assets/Dashboard-BxXaChya.js similarity index 100% rename from public/build/assets/Dashboard-BxXaChya.js rename to src/public/build/assets/Dashboard-BxXaChya.js diff --git a/public/build/assets/DeleteTeamForm-CGH7MRmP.js b/src/public/build/assets/DeleteTeamForm-CGH7MRmP.js similarity index 100% rename from public/build/assets/DeleteTeamForm-CGH7MRmP.js rename to src/public/build/assets/DeleteTeamForm-CGH7MRmP.js diff --git a/public/build/assets/DeleteUserForm-PfxYNbC_.js b/src/public/build/assets/DeleteUserForm-PfxYNbC_.js similarity index 100% rename from public/build/assets/DeleteUserForm-PfxYNbC_.js rename to src/public/build/assets/DeleteUserForm-PfxYNbC_.js diff --git a/public/build/assets/DialogModal-CM2pkQ7Q.js b/src/public/build/assets/DialogModal-CM2pkQ7Q.js similarity index 100% rename from public/build/assets/DialogModal-CM2pkQ7Q.js rename to src/public/build/assets/DialogModal-CM2pkQ7Q.js diff --git a/public/build/assets/ForgotPassword-D6Y0jXzy.js b/src/public/build/assets/ForgotPassword-D6Y0jXzy.js similarity index 100% rename from public/build/assets/ForgotPassword-D6Y0jXzy.js rename to src/public/build/assets/ForgotPassword-D6Y0jXzy.js diff --git a/public/build/assets/FormSection-fM5DX8Wc.js b/src/public/build/assets/FormSection-fM5DX8Wc.js similarity index 100% rename from public/build/assets/FormSection-fM5DX8Wc.js rename to src/public/build/assets/FormSection-fM5DX8Wc.js diff --git a/public/build/assets/Index-DJE2XEsV.js b/src/public/build/assets/Index-DJE2XEsV.js similarity index 100% rename from public/build/assets/Index-DJE2XEsV.js rename to src/public/build/assets/Index-DJE2XEsV.js diff --git a/public/build/assets/InputLabel-Cl3yDvOx.js b/src/public/build/assets/InputLabel-Cl3yDvOx.js similarity index 100% rename from public/build/assets/InputLabel-Cl3yDvOx.js rename to src/public/build/assets/InputLabel-Cl3yDvOx.js diff --git a/public/build/assets/Login-DXsbRqWh.js b/src/public/build/assets/Login-DXsbRqWh.js similarity index 100% rename from public/build/assets/Login-DXsbRqWh.js rename to src/public/build/assets/Login-DXsbRqWh.js diff --git a/public/build/assets/LogoutOtherBrowserSessionsForm-BMipD7tw.js b/src/public/build/assets/LogoutOtherBrowserSessionsForm-BMipD7tw.js similarity index 100% rename from public/build/assets/LogoutOtherBrowserSessionsForm-BMipD7tw.js rename to src/public/build/assets/LogoutOtherBrowserSessionsForm-BMipD7tw.js diff --git a/public/build/assets/Modal-Dl0HSC4q.js b/src/public/build/assets/Modal-Dl0HSC4q.js similarity index 100% rename from public/build/assets/Modal-Dl0HSC4q.js rename to src/public/build/assets/Modal-Dl0HSC4q.js diff --git a/public/build/assets/PrimaryButton-Gixff4KF.js b/src/public/build/assets/PrimaryButton-Gixff4KF.js similarity index 100% rename from public/build/assets/PrimaryButton-Gixff4KF.js rename to src/public/build/assets/PrimaryButton-Gixff4KF.js diff --git a/public/build/assets/PrivacyPolicy-wz23YJr7.js b/src/public/build/assets/PrivacyPolicy-wz23YJr7.js similarity index 100% rename from public/build/assets/PrivacyPolicy-wz23YJr7.js rename to src/public/build/assets/PrivacyPolicy-wz23YJr7.js diff --git a/public/build/assets/Register-Bcw9Ay4s.js b/src/public/build/assets/Register-Bcw9Ay4s.js similarity index 100% rename from public/build/assets/Register-Bcw9Ay4s.js rename to src/public/build/assets/Register-Bcw9Ay4s.js diff --git a/public/build/assets/ResetPassword--VP9wqb4.js b/src/public/build/assets/ResetPassword--VP9wqb4.js similarity index 100% rename from public/build/assets/ResetPassword--VP9wqb4.js rename to src/public/build/assets/ResetPassword--VP9wqb4.js diff --git a/public/build/assets/SecondaryButton-CKdOzt0Y.js b/src/public/build/assets/SecondaryButton-CKdOzt0Y.js similarity index 100% rename from public/build/assets/SecondaryButton-CKdOzt0Y.js rename to src/public/build/assets/SecondaryButton-CKdOzt0Y.js diff --git a/public/build/assets/SectionBorder-DsOSyNBH.js b/src/public/build/assets/SectionBorder-DsOSyNBH.js similarity index 100% rename from public/build/assets/SectionBorder-DsOSyNBH.js rename to src/public/build/assets/SectionBorder-DsOSyNBH.js diff --git a/public/build/assets/SectionTitle-CmR6E75W.js b/src/public/build/assets/SectionTitle-CmR6E75W.js similarity index 100% rename from public/build/assets/SectionTitle-CmR6E75W.js rename to src/public/build/assets/SectionTitle-CmR6E75W.js diff --git a/public/build/assets/Show-BA148_LA.js b/src/public/build/assets/Show-BA148_LA.js similarity index 100% rename from public/build/assets/Show-BA148_LA.js rename to src/public/build/assets/Show-BA148_LA.js diff --git a/public/build/assets/Show-C33iaoUd.js b/src/public/build/assets/Show-C33iaoUd.js similarity index 100% rename from public/build/assets/Show-C33iaoUd.js rename to src/public/build/assets/Show-C33iaoUd.js diff --git a/public/build/assets/TeamMemberManager-BrsMsdPA.js b/src/public/build/assets/TeamMemberManager-BrsMsdPA.js similarity index 100% rename from public/build/assets/TeamMemberManager-BrsMsdPA.js rename to src/public/build/assets/TeamMemberManager-BrsMsdPA.js diff --git a/public/build/assets/TermsOfService-pgtmp1TJ.js b/src/public/build/assets/TermsOfService-pgtmp1TJ.js similarity index 100% rename from public/build/assets/TermsOfService-pgtmp1TJ.js rename to src/public/build/assets/TermsOfService-pgtmp1TJ.js diff --git a/public/build/assets/TextInput-CdoY_jBz.js b/src/public/build/assets/TextInput-CdoY_jBz.js similarity index 100% rename from public/build/assets/TextInput-CdoY_jBz.js rename to src/public/build/assets/TextInput-CdoY_jBz.js diff --git a/public/build/assets/TwoFactorAuthenticationForm-DzHJ9Wxl.js b/src/public/build/assets/TwoFactorAuthenticationForm-DzHJ9Wxl.js similarity index 100% rename from public/build/assets/TwoFactorAuthenticationForm-DzHJ9Wxl.js rename to src/public/build/assets/TwoFactorAuthenticationForm-DzHJ9Wxl.js diff --git a/public/build/assets/TwoFactorChallenge-CSR_9ApP.js b/src/public/build/assets/TwoFactorChallenge-CSR_9ApP.js similarity index 100% rename from public/build/assets/TwoFactorChallenge-CSR_9ApP.js rename to src/public/build/assets/TwoFactorChallenge-CSR_9ApP.js diff --git a/public/build/assets/UpdatePasswordForm-DVugAY5_.js b/src/public/build/assets/UpdatePasswordForm-DVugAY5_.js similarity index 100% rename from public/build/assets/UpdatePasswordForm-DVugAY5_.js rename to src/public/build/assets/UpdatePasswordForm-DVugAY5_.js diff --git a/public/build/assets/UpdateProfileInformationForm-DZ00vhI3.js b/src/public/build/assets/UpdateProfileInformationForm-DZ00vhI3.js similarity index 100% rename from public/build/assets/UpdateProfileInformationForm-DZ00vhI3.js rename to src/public/build/assets/UpdateProfileInformationForm-DZ00vhI3.js diff --git a/public/build/assets/UpdateTeamNameForm-DroFqiCd.js b/src/public/build/assets/UpdateTeamNameForm-DroFqiCd.js similarity index 100% rename from public/build/assets/UpdateTeamNameForm-DroFqiCd.js rename to src/public/build/assets/UpdateTeamNameForm-DroFqiCd.js diff --git a/public/build/assets/VerifyEmail-DYMOR58w.js b/src/public/build/assets/VerifyEmail-DYMOR58w.js similarity index 100% rename from public/build/assets/VerifyEmail-DYMOR58w.js rename to src/public/build/assets/VerifyEmail-DYMOR58w.js diff --git a/public/build/assets/Welcome-CfvT9jGT.js b/src/public/build/assets/Welcome-CfvT9jGT.js similarity index 100% rename from public/build/assets/Welcome-CfvT9jGT.js rename to src/public/build/assets/Welcome-CfvT9jGT.js diff --git a/public/build/assets/app-43FwoUKv.js b/src/public/build/assets/app-43FwoUKv.js similarity index 100% rename from public/build/assets/app-43FwoUKv.js rename to src/public/build/assets/app-43FwoUKv.js diff --git a/public/build/assets/app-CtEIEE0y.css b/src/public/build/assets/app-CtEIEE0y.css similarity index 100% rename from public/build/assets/app-CtEIEE0y.css rename to src/public/build/assets/app-CtEIEE0y.css diff --git a/public/build/assets/index-C3aXnQRR.js b/src/public/build/assets/index-C3aXnQRR.js similarity index 100% rename from public/build/assets/index-C3aXnQRR.js rename to src/public/build/assets/index-C3aXnQRR.js diff --git a/public/build/assets/transition-aKza8ZE9.js b/src/public/build/assets/transition-aKza8ZE9.js similarity index 100% rename from public/build/assets/transition-aKza8ZE9.js rename to src/public/build/assets/transition-aKza8ZE9.js diff --git a/public/build/assets/useTypedPage-_EZ6P4Xz.js b/src/public/build/assets/useTypedPage-_EZ6P4Xz.js similarity index 100% rename from public/build/assets/useTypedPage-_EZ6P4Xz.js rename to src/public/build/assets/useTypedPage-_EZ6P4Xz.js diff --git a/public/build/manifest.json b/src/public/build/manifest.json similarity index 100% rename from public/build/manifest.json rename to src/public/build/manifest.json diff --git a/public/favicon.ico b/src/public/favicon.ico similarity index 100% rename from public/favicon.ico rename to src/public/favicon.ico diff --git a/public/hot b/src/public/hot similarity index 100% rename from public/hot rename to src/public/hot diff --git a/public/index.php b/src/public/index.php similarity index 100% rename from public/index.php rename to src/public/index.php diff --git a/public/robots.txt b/src/public/robots.txt similarity index 100% rename from public/robots.txt rename to src/public/robots.txt diff --git a/resources/css/app.css b/src/resources/css/app.css similarity index 100% rename from resources/css/app.css rename to src/resources/css/app.css diff --git a/resources/js/Components/ActionMessage.tsx b/src/resources/js/Components/ActionMessage.tsx similarity index 100% rename from resources/js/Components/ActionMessage.tsx rename to src/resources/js/Components/ActionMessage.tsx diff --git a/resources/js/Components/ActionSection.tsx b/src/resources/js/Components/ActionSection.tsx similarity index 100% rename from resources/js/Components/ActionSection.tsx rename to src/resources/js/Components/ActionSection.tsx diff --git a/resources/js/Components/ApplicationLogo.tsx b/src/resources/js/Components/ApplicationLogo.tsx similarity index 100% rename from resources/js/Components/ApplicationLogo.tsx rename to src/resources/js/Components/ApplicationLogo.tsx diff --git a/resources/js/Components/ApplicationMark.tsx b/src/resources/js/Components/ApplicationMark.tsx similarity index 100% rename from resources/js/Components/ApplicationMark.tsx rename to src/resources/js/Components/ApplicationMark.tsx diff --git a/resources/js/Components/AuthenticationCard.tsx b/src/resources/js/Components/AuthenticationCard.tsx similarity index 100% rename from resources/js/Components/AuthenticationCard.tsx rename to src/resources/js/Components/AuthenticationCard.tsx diff --git a/resources/js/Components/AuthenticationCardLogo.tsx b/src/resources/js/Components/AuthenticationCardLogo.tsx similarity index 100% rename from resources/js/Components/AuthenticationCardLogo.tsx rename to src/resources/js/Components/AuthenticationCardLogo.tsx diff --git a/resources/js/Components/Banner.tsx b/src/resources/js/Components/Banner.tsx similarity index 100% rename from resources/js/Components/Banner.tsx rename to src/resources/js/Components/Banner.tsx diff --git a/resources/js/Components/Checkbox.tsx b/src/resources/js/Components/Checkbox.tsx similarity index 100% rename from resources/js/Components/Checkbox.tsx rename to src/resources/js/Components/Checkbox.tsx diff --git a/resources/js/Components/ConfirmationModal.tsx b/src/resources/js/Components/ConfirmationModal.tsx similarity index 100% rename from resources/js/Components/ConfirmationModal.tsx rename to src/resources/js/Components/ConfirmationModal.tsx diff --git a/resources/js/Components/ConfirmsPassword.tsx b/src/resources/js/Components/ConfirmsPassword.tsx similarity index 100% rename from resources/js/Components/ConfirmsPassword.tsx rename to src/resources/js/Components/ConfirmsPassword.tsx diff --git a/resources/js/Components/DangerButton.tsx b/src/resources/js/Components/DangerButton.tsx similarity index 100% rename from resources/js/Components/DangerButton.tsx rename to src/resources/js/Components/DangerButton.tsx diff --git a/resources/js/Components/DialogModal.tsx b/src/resources/js/Components/DialogModal.tsx similarity index 100% rename from resources/js/Components/DialogModal.tsx rename to src/resources/js/Components/DialogModal.tsx diff --git a/resources/js/Components/Dropdown.tsx b/src/resources/js/Components/Dropdown.tsx similarity index 100% rename from resources/js/Components/Dropdown.tsx rename to src/resources/js/Components/Dropdown.tsx diff --git a/resources/js/Components/DropdownLink.tsx b/src/resources/js/Components/DropdownLink.tsx similarity index 100% rename from resources/js/Components/DropdownLink.tsx rename to src/resources/js/Components/DropdownLink.tsx diff --git a/resources/js/Components/FormSection.tsx b/src/resources/js/Components/FormSection.tsx similarity index 100% rename from resources/js/Components/FormSection.tsx rename to src/resources/js/Components/FormSection.tsx diff --git a/resources/js/Components/InputError.tsx b/src/resources/js/Components/InputError.tsx similarity index 100% rename from resources/js/Components/InputError.tsx rename to src/resources/js/Components/InputError.tsx diff --git a/resources/js/Components/InputLabel.tsx b/src/resources/js/Components/InputLabel.tsx similarity index 100% rename from resources/js/Components/InputLabel.tsx rename to src/resources/js/Components/InputLabel.tsx diff --git a/resources/js/Components/Modal.tsx b/src/resources/js/Components/Modal.tsx similarity index 100% rename from resources/js/Components/Modal.tsx rename to src/resources/js/Components/Modal.tsx diff --git a/resources/js/Components/MultiSelect.tsx b/src/resources/js/Components/MultiSelect.tsx similarity index 100% rename from resources/js/Components/MultiSelect.tsx rename to src/resources/js/Components/MultiSelect.tsx diff --git a/resources/js/Components/NavLink.tsx b/src/resources/js/Components/NavLink.tsx similarity index 100% rename from resources/js/Components/NavLink.tsx rename to src/resources/js/Components/NavLink.tsx diff --git a/resources/js/Components/PrimaryButton.tsx b/src/resources/js/Components/PrimaryButton.tsx similarity index 100% rename from resources/js/Components/PrimaryButton.tsx rename to src/resources/js/Components/PrimaryButton.tsx diff --git a/resources/js/Components/ResponsiveNavLink.tsx b/src/resources/js/Components/ResponsiveNavLink.tsx similarity index 100% rename from resources/js/Components/ResponsiveNavLink.tsx rename to src/resources/js/Components/ResponsiveNavLink.tsx diff --git a/resources/js/Components/SecondaryButton.tsx b/src/resources/js/Components/SecondaryButton.tsx similarity index 100% rename from resources/js/Components/SecondaryButton.tsx rename to src/resources/js/Components/SecondaryButton.tsx diff --git a/resources/js/Components/SectionBorder.tsx b/src/resources/js/Components/SectionBorder.tsx similarity index 100% rename from resources/js/Components/SectionBorder.tsx rename to src/resources/js/Components/SectionBorder.tsx diff --git a/resources/js/Components/SectionTitle.tsx b/src/resources/js/Components/SectionTitle.tsx similarity index 100% rename from resources/js/Components/SectionTitle.tsx rename to src/resources/js/Components/SectionTitle.tsx diff --git a/resources/js/Components/TextInput.tsx b/src/resources/js/Components/TextInput.tsx similarity index 100% rename from resources/js/Components/TextInput.tsx rename to src/resources/js/Components/TextInput.tsx diff --git a/resources/js/Components/Welcome.tsx b/src/resources/js/Components/Welcome.tsx similarity index 100% rename from resources/js/Components/Welcome.tsx rename to src/resources/js/Components/Welcome.tsx diff --git a/resources/js/Hooks/useRoute.ts b/src/resources/js/Hooks/useRoute.ts similarity index 100% rename from resources/js/Hooks/useRoute.ts rename to src/resources/js/Hooks/useRoute.ts diff --git a/resources/js/Hooks/useTypedPage.ts b/src/resources/js/Hooks/useTypedPage.ts similarity index 100% rename from resources/js/Hooks/useTypedPage.ts rename to src/resources/js/Hooks/useTypedPage.ts diff --git a/resources/js/Layouts/AppLayout.tsx b/src/resources/js/Layouts/AppLayout.tsx similarity index 100% rename from resources/js/Layouts/AppLayout.tsx rename to src/resources/js/Layouts/AppLayout.tsx diff --git a/resources/js/Pages/API/Index.tsx b/src/resources/js/Pages/API/Index.tsx similarity index 100% rename from resources/js/Pages/API/Index.tsx rename to src/resources/js/Pages/API/Index.tsx diff --git a/resources/js/Pages/API/Partials/APITokenManager.tsx b/src/resources/js/Pages/API/Partials/APITokenManager.tsx similarity index 100% rename from resources/js/Pages/API/Partials/APITokenManager.tsx rename to src/resources/js/Pages/API/Partials/APITokenManager.tsx diff --git a/resources/js/Pages/Auth/ConfirmPassword.tsx b/src/resources/js/Pages/Auth/ConfirmPassword.tsx similarity index 100% rename from resources/js/Pages/Auth/ConfirmPassword.tsx rename to src/resources/js/Pages/Auth/ConfirmPassword.tsx diff --git a/resources/js/Pages/Auth/ForgotPassword.tsx b/src/resources/js/Pages/Auth/ForgotPassword.tsx similarity index 100% rename from resources/js/Pages/Auth/ForgotPassword.tsx rename to src/resources/js/Pages/Auth/ForgotPassword.tsx diff --git a/resources/js/Pages/Auth/Login.tsx b/src/resources/js/Pages/Auth/Login.tsx similarity index 93% rename from resources/js/Pages/Auth/Login.tsx rename to src/resources/js/Pages/Auth/Login.tsx index 9603f23..4dafc8e 100644 --- a/resources/js/Pages/Auth/Login.tsx +++ b/src/resources/js/Pages/Auth/Login.tsx @@ -98,7 +98,7 @@ export default function Login({ canResetPassword, status }: Props) {
Need an account? diff --git a/resources/js/Pages/Auth/Register.tsx b/src/resources/js/Pages/Auth/Register.tsx similarity index 100% rename from resources/js/Pages/Auth/Register.tsx rename to src/resources/js/Pages/Auth/Register.tsx diff --git a/resources/js/Pages/Auth/ResetPassword.tsx b/src/resources/js/Pages/Auth/ResetPassword.tsx similarity index 100% rename from resources/js/Pages/Auth/ResetPassword.tsx rename to src/resources/js/Pages/Auth/ResetPassword.tsx diff --git a/resources/js/Pages/Auth/TwoFactorChallenge.tsx b/src/resources/js/Pages/Auth/TwoFactorChallenge.tsx similarity index 100% rename from resources/js/Pages/Auth/TwoFactorChallenge.tsx rename to src/resources/js/Pages/Auth/TwoFactorChallenge.tsx diff --git a/resources/js/Pages/Auth/VerifyEmail.tsx b/src/resources/js/Pages/Auth/VerifyEmail.tsx similarity index 100% rename from resources/js/Pages/Auth/VerifyEmail.tsx rename to src/resources/js/Pages/Auth/VerifyEmail.tsx diff --git a/resources/js/Pages/Clips.tsx b/src/resources/js/Pages/Clips.tsx similarity index 100% rename from resources/js/Pages/Clips.tsx rename to src/resources/js/Pages/Clips.tsx diff --git a/resources/js/Pages/Dashboard.tsx b/src/resources/js/Pages/Dashboard.tsx similarity index 85% rename from resources/js/Pages/Dashboard.tsx rename to src/resources/js/Pages/Dashboard.tsx index 599d9d6..54ebb2f 100644 --- a/resources/js/Pages/Dashboard.tsx +++ b/src/resources/js/Pages/Dashboard.tsx @@ -5,6 +5,8 @@ import {Typography} from "@material-tailwind/react"; interface StatsData { transcription_duration_average: number; + vod_delay_now: number; + vod_download_average: number; vod_processing_average: number; clip_average_per_day: number; video_downloaded_true: number; @@ -71,11 +73,25 @@ export default function Dashboard() {
-

VOD processing delay

+

VOD processing average

{formatDuration(stats?.vod_processing_average ?? 0)}

+
+
+

Avg. Download duration

+

{formatDuration(stats?.vod_download_average ?? 0)}

+
+
+ +
+
+

VOD processing delay

+

{formatDuration(stats?.vod_delay_now ?? 0)}

+
+
+

Avg. Clips per Day

diff --git a/resources/js/Pages/PrivacyPolicy.tsx b/src/resources/js/Pages/PrivacyPolicy.tsx similarity index 100% rename from resources/js/Pages/PrivacyPolicy.tsx rename to src/resources/js/Pages/PrivacyPolicy.tsx diff --git a/resources/js/Pages/Profile/Partials/DeleteUserForm.tsx b/src/resources/js/Pages/Profile/Partials/DeleteUserForm.tsx similarity index 100% rename from resources/js/Pages/Profile/Partials/DeleteUserForm.tsx rename to src/resources/js/Pages/Profile/Partials/DeleteUserForm.tsx diff --git a/resources/js/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.tsx b/src/resources/js/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.tsx similarity index 100% rename from resources/js/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.tsx rename to src/resources/js/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.tsx diff --git a/resources/js/Pages/Profile/Partials/TwoFactorAuthenticationForm.tsx b/src/resources/js/Pages/Profile/Partials/TwoFactorAuthenticationForm.tsx similarity index 100% rename from resources/js/Pages/Profile/Partials/TwoFactorAuthenticationForm.tsx rename to src/resources/js/Pages/Profile/Partials/TwoFactorAuthenticationForm.tsx diff --git a/resources/js/Pages/Profile/Partials/UpdatePasswordForm.tsx b/src/resources/js/Pages/Profile/Partials/UpdatePasswordForm.tsx similarity index 100% rename from resources/js/Pages/Profile/Partials/UpdatePasswordForm.tsx rename to src/resources/js/Pages/Profile/Partials/UpdatePasswordForm.tsx diff --git a/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.tsx b/src/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.tsx similarity index 100% rename from resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.tsx rename to src/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.tsx diff --git a/resources/js/Pages/Profile/Show.tsx b/src/resources/js/Pages/Profile/Show.tsx similarity index 100% rename from resources/js/Pages/Profile/Show.tsx rename to src/resources/js/Pages/Profile/Show.tsx diff --git a/resources/js/Pages/Teams/Create.tsx b/src/resources/js/Pages/Teams/Create.tsx similarity index 100% rename from resources/js/Pages/Teams/Create.tsx rename to src/resources/js/Pages/Teams/Create.tsx diff --git a/resources/js/Pages/Teams/Partials/CreateTeamForm.tsx b/src/resources/js/Pages/Teams/Partials/CreateTeamForm.tsx similarity index 100% rename from resources/js/Pages/Teams/Partials/CreateTeamForm.tsx rename to src/resources/js/Pages/Teams/Partials/CreateTeamForm.tsx diff --git a/resources/js/Pages/Teams/Partials/DeleteTeamForm.tsx b/src/resources/js/Pages/Teams/Partials/DeleteTeamForm.tsx similarity index 100% rename from resources/js/Pages/Teams/Partials/DeleteTeamForm.tsx rename to src/resources/js/Pages/Teams/Partials/DeleteTeamForm.tsx diff --git a/resources/js/Pages/Teams/Partials/TeamMemberManager.tsx b/src/resources/js/Pages/Teams/Partials/TeamMemberManager.tsx similarity index 100% rename from resources/js/Pages/Teams/Partials/TeamMemberManager.tsx rename to src/resources/js/Pages/Teams/Partials/TeamMemberManager.tsx diff --git a/resources/js/Pages/Teams/Partials/UpdateTeamNameForm.tsx b/src/resources/js/Pages/Teams/Partials/UpdateTeamNameForm.tsx similarity index 100% rename from resources/js/Pages/Teams/Partials/UpdateTeamNameForm.tsx rename to src/resources/js/Pages/Teams/Partials/UpdateTeamNameForm.tsx diff --git a/resources/js/Pages/Teams/Show.tsx b/src/resources/js/Pages/Teams/Show.tsx similarity index 100% rename from resources/js/Pages/Teams/Show.tsx rename to src/resources/js/Pages/Teams/Show.tsx diff --git a/resources/js/Pages/TermsOfService.tsx b/src/resources/js/Pages/TermsOfService.tsx similarity index 100% rename from resources/js/Pages/TermsOfService.tsx rename to src/resources/js/Pages/TermsOfService.tsx diff --git a/resources/js/Pages/Videos.tsx b/src/resources/js/Pages/Videos.tsx similarity index 100% rename from resources/js/Pages/Videos.tsx rename to src/resources/js/Pages/Videos.tsx diff --git a/resources/js/Pages/Welcome.tsx b/src/resources/js/Pages/Welcome.tsx similarity index 100% rename from resources/js/Pages/Welcome.tsx rename to src/resources/js/Pages/Welcome.tsx diff --git a/resources/js/app.tsx b/src/resources/js/app.tsx similarity index 100% rename from resources/js/app.tsx rename to src/resources/js/app.tsx diff --git a/resources/js/bootstrap.ts b/src/resources/js/bootstrap.ts similarity index 100% rename from resources/js/bootstrap.ts rename to src/resources/js/bootstrap.ts diff --git a/resources/js/ssr.tsx b/src/resources/js/ssr.tsx similarity index 100% rename from resources/js/ssr.tsx rename to src/resources/js/ssr.tsx diff --git a/resources/js/types.ts b/src/resources/js/types.ts similarity index 100% rename from resources/js/types.ts rename to src/resources/js/types.ts diff --git a/resources/markdown/policy.md b/src/resources/markdown/policy.md similarity index 100% rename from resources/markdown/policy.md rename to src/resources/markdown/policy.md diff --git a/resources/markdown/terms.md b/src/resources/markdown/terms.md similarity index 100% rename from resources/markdown/terms.md rename to src/resources/markdown/terms.md diff --git a/resources/views/app.blade.php b/src/resources/views/app.blade.php similarity index 100% rename from resources/views/app.blade.php rename to src/resources/views/app.blade.php diff --git a/resources/views/emails/team-invitation.blade.php b/src/resources/views/emails/team-invitation.blade.php similarity index 100% rename from resources/views/emails/team-invitation.blade.php rename to src/resources/views/emails/team-invitation.blade.php diff --git a/routes/api.php b/src/routes/api.php similarity index 100% rename from routes/api.php rename to src/routes/api.php diff --git a/routes/console.php b/src/routes/console.php similarity index 100% rename from routes/console.php rename to src/routes/console.php diff --git a/routes/web.php b/src/routes/web.php similarity index 100% rename from routes/web.php rename to src/routes/web.php diff --git a/storage/app/.gitignore b/src/storage/app/.gitignore similarity index 100% rename from storage/app/.gitignore rename to src/storage/app/.gitignore diff --git a/storage/app/private/.gitignore b/src/storage/app/private/.gitignore similarity index 100% rename from storage/app/private/.gitignore rename to src/storage/app/private/.gitignore diff --git a/storage/app/public/.gitignore b/src/storage/app/public/.gitignore similarity index 100% rename from storage/app/public/.gitignore rename to src/storage/app/public/.gitignore diff --git a/storage/framework/.gitignore b/src/storage/framework/.gitignore similarity index 100% rename from storage/framework/.gitignore rename to src/storage/framework/.gitignore diff --git a/storage/framework/cache/.gitignore b/src/storage/framework/cache/.gitignore similarity index 100% rename from storage/framework/cache/.gitignore rename to src/storage/framework/cache/.gitignore diff --git a/storage/framework/cache/data/.gitignore b/src/storage/framework/cache/data/.gitignore similarity index 100% rename from storage/framework/cache/data/.gitignore rename to src/storage/framework/cache/data/.gitignore diff --git a/storage/framework/sessions/.gitignore b/src/storage/framework/sessions/.gitignore similarity index 100% rename from storage/framework/sessions/.gitignore rename to src/storage/framework/sessions/.gitignore diff --git a/storage/framework/testing/.gitignore b/src/storage/framework/testing/.gitignore similarity index 100% rename from storage/framework/testing/.gitignore rename to src/storage/framework/testing/.gitignore diff --git a/storage/framework/views/.gitignore b/src/storage/framework/views/.gitignore similarity index 100% rename from storage/framework/views/.gitignore rename to src/storage/framework/views/.gitignore diff --git a/storage/logs/.gitignore b/src/storage/logs/.gitignore similarity index 100% rename from storage/logs/.gitignore rename to src/storage/logs/.gitignore diff --git a/tests/Feature/ApiTokenPermissionsTest.php b/src/tests/Feature/ApiTokenPermissionsTest.php similarity index 100% rename from tests/Feature/ApiTokenPermissionsTest.php rename to src/tests/Feature/ApiTokenPermissionsTest.php diff --git a/tests/Feature/AuthenticationTest.php b/src/tests/Feature/AuthenticationTest.php similarity index 100% rename from tests/Feature/AuthenticationTest.php rename to src/tests/Feature/AuthenticationTest.php diff --git a/tests/Feature/BrowserSessionsTest.php b/src/tests/Feature/BrowserSessionsTest.php similarity index 100% rename from tests/Feature/BrowserSessionsTest.php rename to src/tests/Feature/BrowserSessionsTest.php diff --git a/tests/Feature/CreateApiTokenTest.php b/src/tests/Feature/CreateApiTokenTest.php similarity index 100% rename from tests/Feature/CreateApiTokenTest.php rename to src/tests/Feature/CreateApiTokenTest.php diff --git a/tests/Feature/CreateTeamTest.php b/src/tests/Feature/CreateTeamTest.php similarity index 100% rename from tests/Feature/CreateTeamTest.php rename to src/tests/Feature/CreateTeamTest.php diff --git a/tests/Feature/DeleteAccountTest.php b/src/tests/Feature/DeleteAccountTest.php similarity index 100% rename from tests/Feature/DeleteAccountTest.php rename to src/tests/Feature/DeleteAccountTest.php diff --git a/tests/Feature/DeleteApiTokenTest.php b/src/tests/Feature/DeleteApiTokenTest.php similarity index 100% rename from tests/Feature/DeleteApiTokenTest.php rename to src/tests/Feature/DeleteApiTokenTest.php diff --git a/tests/Feature/DeleteTeamTest.php b/src/tests/Feature/DeleteTeamTest.php similarity index 100% rename from tests/Feature/DeleteTeamTest.php rename to src/tests/Feature/DeleteTeamTest.php diff --git a/tests/Feature/EmailVerificationTest.php b/src/tests/Feature/EmailVerificationTest.php similarity index 100% rename from tests/Feature/EmailVerificationTest.php rename to src/tests/Feature/EmailVerificationTest.php diff --git a/tests/Feature/ExampleTest.php b/src/tests/Feature/ExampleTest.php similarity index 100% rename from tests/Feature/ExampleTest.php rename to src/tests/Feature/ExampleTest.php diff --git a/tests/Feature/InviteTeamMemberTest.php b/src/tests/Feature/InviteTeamMemberTest.php similarity index 100% rename from tests/Feature/InviteTeamMemberTest.php rename to src/tests/Feature/InviteTeamMemberTest.php diff --git a/tests/Feature/LeaveTeamTest.php b/src/tests/Feature/LeaveTeamTest.php similarity index 100% rename from tests/Feature/LeaveTeamTest.php rename to src/tests/Feature/LeaveTeamTest.php diff --git a/tests/Feature/PasswordConfirmationTest.php b/src/tests/Feature/PasswordConfirmationTest.php similarity index 100% rename from tests/Feature/PasswordConfirmationTest.php rename to src/tests/Feature/PasswordConfirmationTest.php diff --git a/tests/Feature/PasswordResetTest.php b/src/tests/Feature/PasswordResetTest.php similarity index 100% rename from tests/Feature/PasswordResetTest.php rename to src/tests/Feature/PasswordResetTest.php diff --git a/tests/Feature/ProfileInformationTest.php b/src/tests/Feature/ProfileInformationTest.php similarity index 100% rename from tests/Feature/ProfileInformationTest.php rename to src/tests/Feature/ProfileInformationTest.php diff --git a/tests/Feature/RegistrationTest.php b/src/tests/Feature/RegistrationTest.php similarity index 100% rename from tests/Feature/RegistrationTest.php rename to src/tests/Feature/RegistrationTest.php diff --git a/tests/Feature/RemoveTeamMemberTest.php b/src/tests/Feature/RemoveTeamMemberTest.php similarity index 100% rename from tests/Feature/RemoveTeamMemberTest.php rename to src/tests/Feature/RemoveTeamMemberTest.php diff --git a/tests/Feature/TwoFactorAuthenticationSettingsTest.php b/src/tests/Feature/TwoFactorAuthenticationSettingsTest.php similarity index 100% rename from tests/Feature/TwoFactorAuthenticationSettingsTest.php rename to src/tests/Feature/TwoFactorAuthenticationSettingsTest.php diff --git a/tests/Feature/UpdatePasswordTest.php b/src/tests/Feature/UpdatePasswordTest.php similarity index 100% rename from tests/Feature/UpdatePasswordTest.php rename to src/tests/Feature/UpdatePasswordTest.php diff --git a/tests/Feature/UpdateTeamMemberRoleTest.php b/src/tests/Feature/UpdateTeamMemberRoleTest.php similarity index 100% rename from tests/Feature/UpdateTeamMemberRoleTest.php rename to src/tests/Feature/UpdateTeamMemberRoleTest.php diff --git a/tests/Feature/UpdateTeamNameTest.php b/src/tests/Feature/UpdateTeamNameTest.php similarity index 100% rename from tests/Feature/UpdateTeamNameTest.php rename to src/tests/Feature/UpdateTeamNameTest.php diff --git a/tests/TestCase.php b/src/tests/TestCase.php similarity index 100% rename from tests/TestCase.php rename to src/tests/TestCase.php diff --git a/tests/Unit/ExampleTest.php b/src/tests/Unit/ExampleTest.php similarity index 100% rename from tests/Unit/ExampleTest.php rename to src/tests/Unit/ExampleTest.php diff --git a/src/transcriptor.sql b/src/transcriptor.sql new file mode 100644 index 0000000..2029ce3 --- /dev/null +++ b/src/transcriptor.sql @@ -0,0 +1,461 @@ +-- MySQL dump 10.13 Distrib 9.2.0, for macos15.2 (arm64) +-- +-- Host: 192.168.0.187 Database: transcriptor +-- ------------------------------------------------------ +-- Server version 11.6.2-MariaDB-ubu2404 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `cache` +-- + +DROP TABLE IF EXISTS `cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache` ( + `key` varchar(255) NOT NULL, + `value` mediumtext NOT NULL, + `expiration` int(11) NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache` +-- + +INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES ('transcriptor_cache_57011c83660812ca0859ceaa42422d80','i:1;',1743512988),('transcriptor_cache_57011c83660812ca0859ceaa42422d80:timer','i:1743512988;',1743512988),('transcriptor_cache_58a529729abdfedf1f6a0f17c1ebdaf4','i:1;',1742912591),('transcriptor_cache_58a529729abdfedf1f6a0f17c1ebdaf4:timer','i:1742912591;',1742912591),('transcriptor_cache_7f74d356df3008faf61d723f9ae1766c','i:1;',1743861882),('transcriptor_cache_7f74d356df3008faf61d723f9ae1766c:timer','i:1743861881;',1743861881),('transcriptor_cache_tomas.eisner@dalkove-ovladace.cz|127.0.0.1','i:1;',1743512988),('transcriptor_cache_tomas.eisner@dalkove-ovladace.cz|127.0.0.1:timer','i:1743512988;',1743512988); + +-- +-- Table structure for table `cache_locks` +-- + +DROP TABLE IF EXISTS `cache_locks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache_locks` ( + `key` varchar(255) NOT NULL, + `owner` varchar(255) NOT NULL, + `expiration` int(11) NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_locks` +-- + + +-- +-- Table structure for table `channels` +-- + +DROP TABLE IF EXISTS `channels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `channels` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `channel_name` varchar(64) NOT NULL, + `twitch_name` varchar(64) DEFAULT NULL, + `youtube_name` varchar(64) DEFAULT NULL, + `twitch_id` varchar(64) DEFAULT NULL, + `youtube_id` varchar(64) DEFAULT NULL, + `language` varchar(2) DEFAULT 'cs', + `fetching_enabled` tinyint(1) DEFAULT 1, + `created_at` datetime DEFAULT current_timestamp(), + `updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `channels` +-- + +INSERT INTO `channels` (`id`, `channel_name`, `twitch_name`, `youtube_name`, `twitch_id`, `youtube_id`, `language`, `fetching_enabled`, `created_at`, `updated_at`) VALUES (1,'agraelus','agraelus',NULL,'36620767',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:21:50'),(2,'czechcloud','czechcloud',NULL,'31453284',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 12:35:54'),(3,'arcadebulls','arcadebulls',NULL,'102440358',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 13:06:15'),(4,'freezecz','freezecz',NULL,'26753250',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 12:39:52'),(5,'astatoro','astatoro',NULL,'96602646',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:05'),(6,'xnapycz','xnapycz',NULL,'27370971',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 12:39:52'),(7,'claina','claina',NULL,'131291001',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:08'),(8,'kokiii_','kokiii_',NULL,'103871463',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 12:39:52'),(9,'patrikturi','patrikturi',NULL,'35669163',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:11'),(10,'styko','styko',NULL,'39403466',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 12:39:52'),(11,'flyguncz','flyguncz',NULL,'27122439',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:14'),(12,'batmanova','batmanova',NULL,'56374289',NULL,'cs',0,'2025-03-21 12:18:31','2025-03-21 12:39:52'),(13,'liveoliverr','liveoliverr',NULL,'32557028',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:16'),(14,'artix','artix',NULL,'78005819',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:17'),(15,'resttpowered','resttpowered',NULL,'50063424',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:17'),(16,'herdyn','herdyn',NULL,'27187962',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:18'),(17,'spajkk','spajkk',NULL,'70962587',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:20'),(18,'bladeito','bladeito',NULL,'72602541',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:22'),(19,'marty_vole','marty_vole',NULL,'49099014',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:23'),(20,'andrej_kalinin','andrej_kalinin',NULL,'51974412',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:26'),(21,'domovnikofc','domovnikofc',NULL,'56094329',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:28'),(22,'love_stanislove','love_stanislove',NULL,'77945005',NULL,'cs',0,'2025-03-21 12:18:31','2025-04-05 13:32:12'),(23,'elbowcz146','elbowcz146',NULL,'251840010',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:31'),(24,'hornakcz','hornakcz',NULL,'156466776',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:31'),(25,'jorantheviking','jorantheviking',NULL,'97534187',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:32'),(27,'mullersie','mullersie',NULL,'110904086',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:34'),(28,'avatar0fwar','avatar0fwar',NULL,'451022707',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:35'),(29,'heddi2k','heddi2k',NULL,'127143855',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:36'),(30,'vvudy','vvudy',NULL,'140111463',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:38'),(31,'himtheoldboy','himtheoldboy',NULL,'72355913',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:39'),(32,'fluffcz','fluffcz',NULL,'416703208',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:41'),(33,'tensterakdary','tensterakdary',NULL,'39661750',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:42'),(34,'amfikcz','amfikcz',NULL,'646961467',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:44'),(35,'tom__mm','tom__mm',NULL,'61717610',NULL,'cs',1,'2025-03-21 12:18:31','2025-03-21 12:29:45'),(36,'pimpcs','pimpcs',NULL,'37799181',NULL,'en',0,'2025-03-21 12:18:31','2025-03-21 12:40:05'),(37,'dafran','dafran',NULL,'41314239',NULL,'en',0,'2025-03-21 12:18:31','2025-03-21 19:56:00'),(38,'lexveldhuis','lexveldhuis',NULL,'25009441',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:48'),(39,'mrtweeday','mrtweeday',NULL,'28635446',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:48'),(40,'forsen','forsen',NULL,'22484632',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:49'),(41,'kuruhs','kuruhs',NULL,'63179445',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:51'),(42,'quickgabi','quickgabi',NULL,'411451327',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:53'),(43,'paoloidolo','paoloidolo',NULL,'29750090',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:53'),(44,'39daph','39daph',NULL,'160504245',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:55'),(45,'sodapoppin','sodapoppin',NULL,'26301881',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:57'),(46,'nymn','nymn',NULL,'62300805',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:29:59'),(47,'knut','knut',NULL,'43494917',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:00'),(48,'nmplol','nmplol',NULL,'21841789',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:02'),(49,'rachtaz','rachtaz',NULL,'168514917',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:03'),(50,'delaney','delaney',NULL,'186818440',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:04'),(52,'flatz00','flatz00',NULL,'727077167',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:06'),(53,'kharliito','kharliito',NULL,'461938762',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:06'),(54,'pawkt','pawkt',NULL,'123583893',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:07'),(55,'stabitabi','stabitabi',NULL,'967147142',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:09'),(56,'thehollowedknight','thehollowedknight',NULL,'74467940',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:10'),(57,'wakewilder','wakewilder',NULL,'526832402',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:11'),(58,'vadikus007','vadikus007',NULL,'72256775',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:12'),(59,'jaystreazy','jaystreazy',NULL,'119128245',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:13'),(60,'mhyochi','mhyochi',NULL,'801798086',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:13'),(61,'esfandtv','esfandtv',NULL,'38746172',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:14'),(62,'cooksux','cooksux',NULL,'59016177',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:16'),(63,'vei','vei',NULL,'97245742',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:17'),(64,'ntbees','ntbees',NULL,'108463491',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:18'),(65,'nmplol','nmplol',NULL,'21841789',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:18'),(66,'yabbe','yabbe',NULL,'70811818',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:19'),(67,'cyr','cyr',NULL,'37522866',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:21'),(68,'rachtaz','rachtaz',NULL,'168514917',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:23'),(69,'khalamity','khalamity',NULL,'32239862',NULL,'en',1,'2025-03-21 12:18:31','2025-03-21 12:30:24'),(70,'papaplatte','papaplatte',NULL,'50985620',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:30:26'),(71,'revedtv','revedtv',NULL,'97123979',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:30:27'),(72,'mirza_jahic','mirza_jahic',NULL,'116882497',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:30:28'),(73,'rewinside','rewinside',NULL,'46780407',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:30:29'),(74,'maxim','maxim',NULL,'172376071',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:30:30'),(75,'tolkin','tolkin',NULL,'181357564',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:33:18'),(76,'vlesk','vlesk',NULL,'26707784',NULL,'de',1,'2025-03-21 12:18:31','2025-03-21 12:30:32'),(77,'kaydop','kaydop',NULL,'63675549',NULL,'fr',0,'2025-03-21 12:18:31','2025-04-03 10:33:53'),(78,'ponce','ponce',NULL,'50597026',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:35'),(79,'locklear','locklear',NULL,'137347549',NULL,'fr',0,'2025-03-21 12:18:31','2025-04-05 13:29:43'),(80,'alfacast','alfacast',NULL,'464926748',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:38'),(81,'valouzz','valouzz',NULL,'39129104',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:39'),(82,'kamet0','kamet0',NULL,'27115917',NULL,'fr',0,'2025-03-21 12:18:31','2025-04-05 13:29:43'),(83,'shaunz','shaunz',NULL,'43102846',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:42'),(84,'jbzzed','jbzzed',NULL,'114497555',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:43'),(85,'nisqyy','nisqyy',NULL,'84539108',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:44'),(86,'skyyart','skyyart',NULL,'70298660',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:45'),(87,'jladz','jladz',NULL,NULL,NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:20:36'),(88,'dye_live','dye_live',NULL,'40693942',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:47'),(89,'chewbydslife','chewbydslife',NULL,'751026933',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:48'),(90,'aloonea','aloonea',NULL,'123579297',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:49'),(91,'thomacky','thomacky',NULL,'80981775',NULL,'fr',0,'2025-03-21 12:18:31','2025-04-05 13:32:12'),(93,'loupiote3','loupiote3',NULL,'270997352',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:53'),(94,'nawk_','nawk_',NULL,'81105199',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:54'),(95,'yoona','yoona',NULL,'76846779',NULL,'fr',0,'2025-03-21 12:18:31','2025-04-02 03:41:28'),(96,'adztv','adztv',NULL,'170547313',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:57'),(97,'helydia','helydia',NULL,'253195796',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:30:58'),(98,'kaffworld','kaffworld',NULL,'82144721',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:31:00'),(99,'levraidoffy','levraidoffy',NULL,'407902778',NULL,'fr',0,'2025-03-21 12:18:31','2025-04-05 13:32:12'),(100,'sniper_biscuit','sniper_biscuit',NULL,'441936307',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:31:03'),(101,'azuma','azuma',NULL,'128675986',NULL,'fr',1,'2025-03-21 12:18:31','2025-03-21 12:31:05'),(102,'duklock','duklock','DuklockPlus','442789346','DuklockPlus','cs',1,'2025-03-23 11:48:13','2025-03-23 12:24:57'),(103,'kapesnik69','kapesnik69',NULL,'951135532',NULL,'cs',1,'2025-03-25 11:38:55','2025-03-25 11:43:39'),(104,'miken','miken',NULL,'26381995',NULL,'cs',1,'2025-03-25 11:38:55','2025-03-25 11:43:40'); + +-- +-- Table structure for table `clips` +-- + +DROP TABLE IF EXISTS `clips`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `clips` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `video_id` int(11) NOT NULL, + `filename` text NOT NULL, + `created_at` datetime DEFAULT current_timestamp(), + `updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(), + `gdrive_file_id` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_id` (`video_id`), + CONSTRAINT `clips_ibfk_1` FOREIGN KEY (`video_id`) REFERENCES `videos` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=697 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `clips` +-- + +INSERT INTO `clips` (`id`, `video_id`, `filename`, `created_at`, `updated_at`, `gdrive_file_id`) VALUES (203,978,'clips/agraelus/from_vod/20-03-25/clip_2410788006_960.mp4','2025-03-26 13:32:40','2025-04-02 03:37:04','1jso69-DsW0tEq-Hi8Ag3CJ0EH7pjTsxY'),(204,978,'clips/agraelus/from_vod/20-03-25/clip_2410788006_963.mp4','2025-03-26 13:32:40','2025-04-02 03:38:15','1xcqdp9HvfICNo6EX5TqViaIoqvX7G3RR'),(205,978,'clips/agraelus/from_vod/20-03-25/clip_2410788006_7900.mp4','2025-03-26 13:32:40','2025-04-02 03:38:16','1ou5lxwXIiHfRBr7KhvMDiLXoaUNL7uLf'),(206,978,'clips/agraelus/from_vod/20-03-25/clip_2410788006_8452.mp4','2025-03-26 13:32:40','2025-04-02 03:38:17','1PRwHnCNoESPEen2uCdTaKXLS2NZzw4WH'),(207,978,'clips/agraelus/from_vod/20-03-25/clip_2410788006_8944.mp4','2025-03-26 13:32:40','2025-04-02 03:38:18','1p6o2jOxoDfCjP_cNdA1pFVKCyhT9cvTF'),(208,982,'clips/agraelus/from_vod/15-03-25/clip_2406687665_13601.mp4','2025-03-26 13:32:40','2025-04-02 03:38:20','1JTpnzg9ZC-zO_JzFifBVSOXtDwQvLZ-n'),(209,982,'clips/agraelus/from_vod/15-03-25/clip_2406687665_13605.mp4','2025-03-26 13:32:40','2025-04-02 03:38:21','1vrcr5AGoqXAUysWRK3q1Gd-ntzLWv84U'),(210,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_2004.mp4','2025-03-26 13:32:40','2025-04-02 03:38:22','1MqCPb6O_IDupwvDB2Bt8Ey_Vnzoniz85'),(211,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_2008.mp4','2025-03-26 13:32:40','2025-04-02 03:38:23','1aULRb4FdKf47KCZrxjRteQHocmIAWRBC'),(212,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_2018.mp4','2025-03-26 13:32:40','2025-04-02 03:38:24','1iC4p_6UXiG63xW3yvWOpgN2AzghwqyIk'),(213,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_2022.mp4','2025-03-26 13:32:40','2025-04-02 03:38:25','1fv7qwYrF9tox0MC6qtAtgOwr_McegM-P'),(214,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_2036.mp4','2025-03-26 13:32:40','2025-04-02 03:38:26','1SxOE_AAr1Woub0G09mwv-RNGV6DhOA-P'),(215,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_2062.mp4','2025-03-26 13:32:40','2025-04-02 03:38:27','1mJHGFnLwmudjdteUY9C4iyoZQ9CtryM1'),(216,983,'clips/agraelus/from_vod/14-03-25/clip_2405662465_20403.mp4','2025-03-26 13:32:40','2025-04-02 03:38:28','154rwoirbDyFFMXQMLbqoY3ytsqjPElhX'),(217,984,'clips/agraelus/from_vod/12-03-25/clip_2403968067_886.mp4','2025-03-26 13:32:40','2025-04-02 03:38:29','1S46EPw-r_a8njhKHJCk668q5Uu10JI8y'),(218,999,'clips/astatoro/from_vod/20-03-25/clip_2410595939_6353.mp4','2025-03-26 13:32:40','2025-04-02 03:38:30','1Q9w_MEJustw-OwUxoXdDEV3V0VM5ZkDk'),(219,1001,'clips/astatoro/from_vod/18-03-25/clip_2408916224_412.mp4','2025-03-26 13:32:40','2025-04-02 03:38:31','1JAnPWuNo3Ice748euZt9tJtc2nWZ83s0'),(220,1001,'clips/astatoro/from_vod/18-03-25/clip_2408916224_5774.mp4','2025-03-26 13:32:40','2025-04-02 03:38:32','1Eieo49whXi8VB4KlCGlroOVXJHQuWAx7'),(221,1001,'clips/astatoro/from_vod/18-03-25/clip_2408916224_5858.mp4','2025-03-26 13:32:40','2025-04-02 03:38:33','1fzF72jLJF-LeIj345ucHkG_qo7PvQm2d'),(222,1001,'clips/astatoro/from_vod/18-03-25/clip_2408916224_27836.mp4','2025-03-26 13:32:40','2025-04-02 03:38:34','1H8pLFwfZRdZyw4EJdWNe1d38eIlfkctJ'),(223,1001,'clips/astatoro/from_vod/18-03-25/clip_2408916224_27840.mp4','2025-03-26 13:32:40','2025-04-02 03:38:35','1deFFaOXWmTlFGK50pLTYIVX9yrIhMsus'),(224,1002,'clips/astatoro/from_vod/17-03-25/clip_2408094896_2648.mp4','2025-03-26 13:32:40','2025-04-02 03:38:37','1jEB7D97QsfM2oZEzcIkny9-VwsC2qtp1'),(225,1002,'clips/astatoro/from_vod/17-03-25/clip_2408094896_2660.mp4','2025-03-26 13:32:40','2025-04-02 03:38:38','1LP1OgGsH_CrZDgYuVK_aewm-UaKUQ3ct'),(226,1002,'clips/astatoro/from_vod/17-03-25/clip_2408094896_2665.mp4','2025-03-26 13:32:40','2025-04-02 03:38:39','16W4dV_J7dgsc3kj-mjx54Q3TOoe_6_QB'),(227,1002,'clips/astatoro/from_vod/17-03-25/clip_2408094896_2668.mp4','2025-03-26 13:32:40','2025-04-02 03:38:40','1oNVYOE-OMuQyHqi2RqPnBSULu_ln3RUL'),(228,1002,'clips/astatoro/from_vod/17-03-25/clip_2408094896_2670.mp4','2025-03-26 13:32:40','2025-04-02 03:38:41','1n9bnNzMJOWAEEuDrXxrlcibz3XvdZ1Et'),(229,1002,'clips/astatoro/from_vod/17-03-25/clip_2408094896_2673.mp4','2025-03-26 13:32:40','2025-04-02 03:38:42','1HUzPHJGL_NXZVn4946e_7kZVMjECYANq'),(230,1003,'clips/astatoro/from_vod/14-03-25/clip_2405440755_5035.mp4','2025-03-26 13:32:40','2025-04-02 03:38:43','14pinTZMQMu2dtB_G65t7fG_wBUnZRTIQ'),(231,1003,'clips/astatoro/from_vod/14-03-25/clip_2405440755_18272.mp4','2025-03-26 13:32:40','2025-04-02 03:38:44','1LEN4PAcKVL9Xpr6mf_qT4hlVZeTyERnP'),(232,1004,'clips/astatoro/from_vod/12-03-25/clip_2403690361_18896.mp4','2025-03-26 13:32:40','2025-04-02 03:38:45','1OPiGn0V2LU4REGUPQE7lz849xcEoTCNy'),(233,1004,'clips/astatoro/from_vod/12-03-25/clip_2403690361_19081.mp4','2025-03-26 13:32:40','2025-04-02 03:38:46','1tlN2XLauf11FFUrzZN4BM_XUMgKlDB-2'),(234,1004,'clips/astatoro/from_vod/12-03-25/clip_2403690361_24324.mp4','2025-03-26 13:32:40','2025-04-02 03:38:47','1elp91HdjyU8GYS8BGsTXZ_ysxEzecg8e'),(235,1004,'clips/astatoro/from_vod/12-03-25/clip_2403690361_24339.mp4','2025-03-26 13:32:40','2025-04-02 03:38:48','1kaowQp_Uet5a-jPo5yRCN_P0UdRMvKDa'),(236,1004,'clips/astatoro/from_vod/12-03-25/clip_2403690361_24353.mp4','2025-03-26 13:32:40','2025-04-02 03:38:49','1Oe5QEpzo8OSXIgN_97nv4HHvlkOLIulu'),(237,1005,'clips/astatoro/from_vod/11-03-25/clip_2402920869_841.mp4','2025-03-26 13:32:40','2025-04-02 03:38:50','14YFpzjolEBh6_AnWdGjAAhO-QHGoarMu'),(238,1005,'clips/astatoro/from_vod/11-03-25/clip_2402920869_9935.mp4','2025-03-26 13:32:40','2025-04-02 03:38:51','1fqqHJDc36dyrcKHiiaM_eSzEi4npESN7'),(239,1006,'clips/astatoro/from_vod/10-03-25/clip_2402106602_14548.mp4','2025-03-26 13:32:40','2025-04-02 03:38:52','1KrPXhjIx8RLNH4BhHz3Ektjy1sGsX7QS'),(240,1010,'clips/claina/from_vod/17-03-25/clip_2408085019_4495.mp4','2025-03-26 13:32:40','2025-04-02 03:38:53','1GxEdPI29Fn3HMsR-ojcpSBmLzVfrTrx7'),(241,1028,'clips/flyguncz/from_vod/18-03-25/clip_2409069940_12006.mp4','2025-03-26 13:32:40','2025-04-02 03:38:54','1oTvhuIEpEeiz_E_hmqL6k8gl4Xlr_zX-'),(242,1029,'clips/flyguncz/from_vod/17-03-25/clip_2408430271_6323.mp4','2025-03-26 13:32:40','2025-04-02 03:38:55','1cma5iw981ZLk3K03GjGvsbKN4hBFMonQ'),(243,1029,'clips/flyguncz/from_vod/17-03-25/clip_2408430271_6357.mp4','2025-03-26 13:32:40','2025-04-02 03:38:56','1D7WrzDUIse-YaXkPyXnwKzYfFu8CBohH'),(244,1031,'clips/flyguncz/from_vod/14-03-25/clip_2405601024_2903.mp4','2025-03-26 13:32:41','2025-04-02 03:38:57','1bolN8-vtigrR4Cy_IS9Bk2UUIPO4eiOW'),(245,1036,'clips/flyguncz/from_vod/10-03-25/clip_2402259509_9738.mp4','2025-03-26 13:32:41','2025-04-02 03:38:58','1IKnoUyOmYhUI_ovSg7Vld-7tpoR7hvqv'),(246,1036,'clips/flyguncz/from_vod/10-03-25/clip_2402259509_20670.mp4','2025-03-26 13:32:41','2025-04-02 03:38:59','1aLD9CdntqClHX8vebGLKivup33Hv4ZdY'),(247,1036,'clips/flyguncz/from_vod/10-03-25/clip_2402259509_20672.mp4','2025-03-26 13:32:41','2025-04-02 03:39:01','1xrj1xc46bDEuH5cchPYs-Sp4tzINJC-5'),(248,1036,'clips/flyguncz/from_vod/10-03-25/clip_2402259509_20680.mp4','2025-03-26 13:32:41','2025-04-02 03:39:02','17OCXXh7j24zt2ZdT-GN9pZ-e76Uu-Lhc'),(249,1042,'clips/herdyn/from_vod/12-03-25/clip_2403940129_5873.mp4','2025-03-26 13:32:41','2025-04-02 03:39:03','1am5nk2hF0OdRosXnZ90-Y31jggEMqYzW'),(250,1042,'clips/herdyn/from_vod/12-03-25/clip_2403940129_5876.mp4','2025-03-26 13:32:41','2025-04-02 03:39:04','1T0xC1YCsNodRIgavXlXn13SNoHhuPr-5'),(251,1053,'clips/spajkk/from_vod/12-03-25/clip_2403732468_1352.mp4','2025-03-26 13:32:41','2025-04-02 03:39:05','1wnHJi04RZKaA-j8S1H5UeLhsa3hU5E_4'),(252,1056,'clips/bladeito/from_vod/17-03-25/clip_2408103233_10055.mp4','2025-03-26 13:32:41','2025-04-02 03:39:06','1ydBGbV9XrMiZOFHH8iIKXhaDOCqnkPic'),(253,1057,'clips/bladeito/from_vod/16-03-25/clip_2407157866_23202.mp4','2025-03-26 13:32:41','2025-04-02 03:39:07','12zcvmJTPcWjEUK1-pAYxUtiawXxyI63I'),(254,1057,'clips/bladeito/from_vod/16-03-25/clip_2407157866_26282.mp4','2025-03-26 13:32:41','2025-04-02 03:39:08','1NCsJGshJCNgtm4kIGCV0EB1XzaF9lQPc'),(255,1057,'clips/bladeito/from_vod/16-03-25/clip_2407157866_30368.mp4','2025-03-26 13:32:41','2025-04-02 03:39:09','1C9aA-jFljc82QwzHRbSchVPxxs7o1bK9'),(256,1057,'clips/bladeito/from_vod/16-03-25/clip_2407157866_30498.mp4','2025-03-26 13:32:41','2025-04-02 03:39:10','1jTGhuddjSyKGYex4ncNi32YVG-IIdl3t'),(257,1057,'clips/bladeito/from_vod/16-03-25/clip_2407157866_30521.mp4','2025-03-26 13:32:41','2025-04-02 03:39:11','1-jEIf285a9t9Z4eAx09lCqahP8LRPx_A'),(258,1058,'clips/bladeito/from_vod/15-03-25/clip_2406240959_2797.mp4','2025-03-26 13:32:41','2025-04-02 03:39:12','1LqfsrqwWH9oeHpbrd7VlDEGkjBgbSazP'),(259,1058,'clips/bladeito/from_vod/15-03-25/clip_2406240959_13993.mp4','2025-03-26 13:32:41','2025-04-02 03:39:13','11Pac7omKDdnDTd0_Wvm2ZSuGZ434U87T'),(260,1058,'clips/bladeito/from_vod/15-03-25/clip_2406240959_23817.mp4','2025-03-26 13:32:41','2025-04-02 03:39:14','1eLaGUOxW7e7Z5UEdF3RSb4qF2RUwt31I'),(261,1060,'clips/bladeito/from_vod/11-03-25/clip_2402924375_2107.mp4','2025-03-26 13:32:41','2025-04-02 03:39:15','1O7LRG8ti849FPk9_UFqbI2TCtXMKlhKJ'),(262,1097,'clips/domovnikofc/from_vod/15-03-25/clip_2406472951_18016.mp4','2025-03-26 13:32:42','2025-04-02 03:39:16','1Aqu_VBMoYlqTl_1eN6RyuGIz5UkvbvXF'),(263,1121,'clips/mullersie/from_vod/12-03-25/clip_2403668784_5876.mp4','2025-03-26 13:32:42','2025-04-02 03:39:17','1TPlbJIcqcSewftezhoYCEJ9UIHIB34DO'),(264,1121,'clips/mullersie/from_vod/12-03-25/clip_2403668784_19022.mp4','2025-03-26 13:32:42','2025-04-02 03:39:18','187AxQV8yHVToaRR8AtLsAiRaEW7f5EQ1'),(265,1122,'clips/mullersie/from_vod/11-03-25/clip_2402879492_7051.mp4','2025-03-26 13:32:43','2025-04-02 03:39:19','1-0ECwX0b7ZMSsegy9j_Dr77BYMyLSTmM'),(266,1124,'clips/avatar0fwar/from_vod/20-03-25/clip_2410614960_1521.mp4','2025-03-26 13:32:43','2025-04-02 03:39:20','1Lw5D5cfDAAHK3vxplpKTfgP-3ZLnExwh'),(267,1124,'clips/avatar0fwar/from_vod/20-03-25/clip_2410614960_1787.mp4','2025-03-26 13:32:43','2025-04-02 03:39:21','1-Lue3W8S01qPRhNmumADclHLbMkBWClq'),(268,1124,'clips/avatar0fwar/from_vod/20-03-25/clip_2410614960_6894.mp4','2025-03-26 13:32:43','2025-04-02 03:39:22','1KXR91DgQRiLOu3RibJ6Sad_sjhseDT1g'),(269,1124,'clips/avatar0fwar/from_vod/20-03-25/clip_2410614960_6899.mp4','2025-03-26 13:32:43','2025-04-02 03:39:23','1D_S16SrjQF0wPuzmUFiMcKee9OcQoHig'),(270,1124,'clips/avatar0fwar/from_vod/20-03-25/clip_2410614960_6934.mp4','2025-03-26 13:32:43','2025-04-02 03:39:24','1fM2Ylac3q8BiAYaKXcsj3xhOxGYa0XxN'),(271,1125,'clips/avatar0fwar/from_vod/18-03-25/clip_2409022443_9942.mp4','2025-03-26 13:32:43','2025-04-02 03:39:25','1ALr4j3Ax8wFKefgd6gwmCxvu1HSfc-m2'),(272,1125,'clips/avatar0fwar/from_vod/18-03-25/clip_2409022443_10046.mp4','2025-03-26 13:32:43','2025-04-02 03:39:26','15duUMeesHRgYqZ1tjwIpi5MzChBxH3tS'),(273,1142,'clips/himtheoldboy/from_vod/20-03-25/clip_2410564551_4286.mp4','2025-03-26 13:32:43','2025-04-02 03:39:28','155sl7MiLyHJGm0mY4L5GhNoIodG8lRiW'),(274,1143,'clips/himtheoldboy/from_vod/17-03-25/clip_2408191739_6927.mp4','2025-03-26 13:32:43','2025-04-02 03:39:29','1Mtb-qJG5ozQzWzSb4dq_PsrqhzVJHkyq'),(275,1146,'clips/himtheoldboy/from_vod/12-03-25/clip_2403715145_10898.mp4','2025-03-26 13:32:43','2025-04-02 03:39:30','1NPJbFvi0FGMEzgbhWV4x8-YYVSMj20QV'),(276,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4252.mp4','2025-03-26 13:32:43','2025-04-02 03:39:31','1EGWC1Hqr4kOBDXux0r2UgljCI52Drn6C'),(277,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4254.mp4','2025-03-26 13:32:43','2025-04-02 03:39:32','1f2B25msisSFXmRUFgWq6qhlm_4DKwHob'),(278,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4261.mp4','2025-03-26 13:32:43','2025-04-02 03:39:33','1PkChZOIzQ-lryjAYu1Le8cJlRKqAdZ9J'),(279,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4270.mp4','2025-03-26 13:32:43','2025-04-02 03:39:34','1r0qC_EaUhwTlDvRzsi-cfDQrfn_rpzev'),(280,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4356.mp4','2025-03-26 13:32:43','2025-04-02 03:39:35','1zWsCt6K_CKl1Fap2YRrjVnp-8GE_fdzM'),(281,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4372.mp4','2025-03-26 13:32:43','2025-04-02 03:39:36','1dfqUT0QLIG8Z59pO8clc19qQU7Picl9m'),(282,1148,'clips/fluffcz/from_vod/20-03-25/clip_2410588355_4375.mp4','2025-03-26 13:32:43','2025-04-02 03:39:37','1O9GvL4aYiME0rtnknhnPvpLA5l4VGtPn'),(283,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_10421.mp4','2025-03-26 13:32:43','2025-04-02 03:39:38','16WpwJQhwBvKApGvDXo3zqnOhLXzV-Upn'),(284,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_10425.mp4','2025-03-26 13:32:43','2025-04-02 03:39:39','1zE7hu4FONuNsCx71Or0jW_7FfyOGJoMW'),(285,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_10431.mp4','2025-03-26 13:32:43','2025-04-02 03:39:40','1BlXVjzgCwVFVLL7cHUCtUZ-bffKbRnU6'),(286,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_10435.mp4','2025-03-26 13:32:43','2025-04-02 03:39:41','1zKusWiNUjC1_ailZgM8fvvH1njhb216V'),(287,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_10465.mp4','2025-03-26 13:32:43','2025-04-02 03:39:42','1rUndApMoL502Si7CXQdbz_96Ggr2naPS'),(288,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_10571.mp4','2025-03-26 13:32:43','2025-04-02 03:39:43','1sy5Mt9jVAEa2awa-7hHdzoKA7cGtLhUR'),(289,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_16966.mp4','2025-03-26 13:32:43','2025-04-02 03:39:44','1rvzsFJWzQWEUpIEEd4q656uchiszRiSv'),(290,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_16968.mp4','2025-03-26 13:32:43','2025-04-02 03:39:45','1L7dXnUBX2Mnj1DYKwOn5JgPklZCnejjc'),(291,1150,'clips/fluffcz/from_vod/18-03-25/clip_2409048071_16971.mp4','2025-03-26 13:32:43','2025-04-02 03:39:46','1N5o7SHvgrs6VkR79qXMTk5yRcf3IJoQn'),(292,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_982.mp4','2025-03-26 13:32:43','2025-04-02 03:39:47','1peL_zo6bpu6Uzf8FVEyCqcO58NhBsIBF'),(293,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_984.mp4','2025-03-26 13:32:43','2025-04-02 03:39:48','1W7U4409b1mm6YwyWOgMGmTGbdH3_lbDc'),(294,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_1082.mp4','2025-03-26 13:32:43','2025-04-02 03:39:49','1tQg-_cZ2eSh0r3GU0XkKwbaIWr2Hv8cR'),(295,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_1146.mp4','2025-03-26 13:32:43','2025-04-02 03:39:50','1WLuWuroXN9fOq0Gs6YN-eMBRvLsJAm7n'),(296,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_1148.mp4','2025-03-26 13:32:43','2025-04-02 03:39:51','1jP2_T5aV3RZHLvO4zYhes8QpjYWfQEJG'),(297,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_1176.mp4','2025-03-26 13:32:43','2025-04-02 03:39:52','17mHGQLJZUpjF9Bf_QR2Oawde_8nYueke'),(298,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_1182.mp4','2025-03-26 13:32:43','2025-04-02 03:39:54','1BEJ0-CihH2VuhmcjaQwGLzpfvBYk3eed'),(299,1154,'clips/fluffcz/from_vod/13-03-25/clip_2404835771_1184.mp4','2025-03-26 13:32:43','2025-04-02 03:39:55','1PaU9i-ml2UB-K-EUZxLFvAIrFQWh1gq0'),(300,1155,'clips/fluffcz/from_vod/13-03-25/clip_2404457035_9580.mp4','2025-03-26 13:32:43','2025-04-02 03:39:56','1I2ULANRut2jZ-3NlwquK-pl_0V3ALbp1'),(301,1157,'clips/fluffcz/from_vod/11-03-25/clip_2402981466_4803.mp4','2025-03-26 13:32:43','2025-04-02 03:39:57','1RpMH6PuH2FPV03Z0-9O-kGKzJ5esGmq8'),(302,1157,'clips/fluffcz/from_vod/11-03-25/clip_2402981466_4804.mp4','2025-03-26 13:32:43','2025-04-02 03:39:58','1Ns_mKO1dOY1E8431yk877J-EnoHmx8Z2'),(303,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_3369.mp4','2025-03-26 13:32:43','2025-04-02 03:39:59','1CNg6lJACmK-nzQNVTSI71stW6yh1X1RM'),(304,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_3505.mp4','2025-03-26 13:32:43','2025-04-02 03:40:00','1DpcP3Ff-rGQytKDgQTwk6tLBvCjTjt_x'),(305,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_3511.mp4','2025-03-26 13:32:43','2025-04-02 03:40:01','1cSsf3jk6zXZ2wCJr4Se66Fa1KMTuNyRF'),(306,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_3531.mp4','2025-03-26 13:32:43','2025-04-02 03:40:02','1SYZpmpc_fa8vUGSKJOqHvcBpXn8zkTjU'),(307,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_3536.mp4','2025-03-26 13:32:43','2025-04-02 03:40:03','1NetUKRvW-ta9BU4cBIInH5_RFUNjBfwJ'),(308,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_3556.mp4','2025-03-26 13:32:43','2025-04-02 03:40:04','1FPWwzECu1ti1nMTc8pIlrOS68gQWkXKL'),(309,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_16115.mp4','2025-03-26 13:32:43','2025-04-02 03:40:05','1rMiQsWZfTT9mHgc-PwDXDnwisBK1cYb-'),(310,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_16117.mp4','2025-03-26 13:32:43','2025-04-02 03:40:06','1MVhMnQqM8axitKDnBzyYBpaaX1jg2rJ7'),(311,1158,'clips/fluffcz/from_vod/10-03-25/clip_2402220821_16119.mp4','2025-03-26 13:32:43','2025-04-02 03:40:07','1FflpKq_qTADKII463qy29TTMWA_QSWjd'),(312,1160,'clips/tensterakdary/from_vod/18-03-25/clip_2408989713_3208.mp4','2025-03-26 13:32:43','2025-04-02 03:40:08','1OjiodHmKSEc8hWbzf9aDmE5f4uPfJsIc'),(313,1160,'clips/tensterakdary/from_vod/18-03-25/clip_2408989713_3212.mp4','2025-03-26 13:32:43','2025-04-02 03:40:09','1iXKSyUkc_TzYU6KGIFJ_3sFtsiHVigSK'),(314,1163,'clips/tensterakdary/from_vod/14-03-25/clip_2405500871_566.mp4','2025-03-26 13:32:43','2025-04-02 03:40:10','1kpOLm9O75ptAp7dVYwLOZIQnPigwNOIA'),(315,1165,'clips/amfikcz/from_vod/16-03-25/clip_2407091826_17544.mp4','2025-03-26 13:32:43','2025-04-02 03:40:11','198f5B3BLePIsIMGvPts-4n4UextzI789'),(316,1189,'clips/kuruhs/from_vod/20-03-25/clip_2410701349_21935.mp4','2025-03-26 13:32:43','2025-04-02 03:40:13','1p6WHgulYCYKcj4RxXQdD8aP6jR3nS2q0'),(317,1192,'clips/kuruhs/from_vod/18-03-25/clip_2408997099_3729.mp4','2025-03-26 13:32:43','2025-04-02 03:40:14','1WQ3TBy5d7dfYrk8QNvwFov7WknX_NMDo'),(318,1192,'clips/kuruhs/from_vod/18-03-25/clip_2408997099_4722.mp4','2025-03-26 13:32:43','2025-04-02 03:40:15','1DDybYaN8u1NbdA-sAWIPRCG36YX4LIJ7'),(319,1193,'clips/kuruhs/from_vod/17-03-25/clip_2408177957_2185.mp4','2025-03-26 13:32:43','2025-04-02 03:40:16','1Z_ZUyUp0GcnusB87N6UuVNh5qddr6fYF'),(320,1194,'clips/kuruhs/from_vod/15-03-25/clip_2406442569_6407.mp4','2025-03-26 13:32:44','2025-04-02 03:40:17','1lwExhL18g2UTAiUylwZbiHo4SBKhg2-D'),(321,1194,'clips/kuruhs/from_vod/15-03-25/clip_2406442569_20676.mp4','2025-03-26 13:32:44','2025-04-02 03:40:18','1og9Z8PmN6GOTbzYpi0O5-TKKLJGW0dYk'),(322,1195,'clips/kuruhs/from_vod/14-03-25/clip_2405508744_22296.mp4','2025-03-26 13:32:44','2025-04-02 03:40:19','1mmr9aLbbKBxiKQnrZMpsBnCEsSAlM-hS'),(323,1196,'clips/kuruhs/from_vod/13-03-25/clip_2404683443_9269.mp4','2025-03-26 13:32:44','2025-04-02 03:40:20','1tqRvUroJ76zwc3WnYvk0XQygZq4lBI1l'),(324,1196,'clips/kuruhs/from_vod/13-03-25/clip_2404683443_11182.mp4','2025-03-26 13:32:44','2025-04-02 03:40:21','1Pm7QmnzwGux9IPstLJO0qOcEDo8YV9b8'),(325,1196,'clips/kuruhs/from_vod/13-03-25/clip_2404683443_22279.mp4','2025-03-26 13:32:44','2025-04-02 03:40:22','15SYJnwI6UHGMYaftrds1iBbnfxPw0mGg'),(326,1197,'clips/kuruhs/from_vod/12-03-25/clip_2403836837_12208.mp4','2025-03-26 13:32:44','2025-04-02 03:40:23','1KIOoYsJi1TmC_wAMlLNsgCiF2Hu0T1PC'),(327,1198,'clips/kuruhs/from_vod/11-03-25/clip_2403001833_8117.mp4','2025-03-26 13:32:44','2025-04-02 03:40:24','1o1JgAVvz5lcQvAL1sU5X4ig7zdwkXp_M'),(328,1199,'clips/kuruhs/from_vod/10-03-25/clip_2402197813_10594.mp4','2025-03-26 13:32:44','2025-04-02 03:40:25','1axfbItYTpsqWS4APLDL7qtbnx1gNZ4FK'),(329,1246,'clips/knut/from_vod/17-03-25/clip_2408177350_39729.mp4','2025-03-26 13:32:45','2025-04-02 03:40:26','1KmABvDdQBUoMaoKoEqmIfKBA-75x8AFn'),(330,1252,'clips/knut/from_vod/10-03-25/clip_2402233475_2540.mp4','2025-03-26 13:32:45','2025-04-02 03:40:27','1jn6IpYdaXT8M3TqRTz628IgDmOpfPSvk'),(331,1252,'clips/knut/from_vod/10-03-25/clip_2402233475_2637.mp4','2025-03-26 13:32:45','2025-04-02 03:40:28','1NfW1eG17fcOg1tBbie5Z1ncge-midrNm'),(332,1256,'clips/rachtaz/from_vod/19-03-25/clip_2409843447_16056.mp4','2025-03-26 13:32:45','2025-04-02 03:40:29','1Q6xf_KnybedMnv-GzDvkPI3Kxr_Qijr2'),(333,1257,'clips/rachtaz/from_vod/18-03-25/clip_2408985175_1240.mp4','2025-03-26 13:32:45','2025-04-02 03:40:30','1XYwGJbYo7ShEtDPrsuOokrmNgdtWWvto'),(334,1257,'clips/rachtaz/from_vod/18-03-25/clip_2408985175_1251.mp4','2025-03-26 13:32:45','2025-04-02 03:40:31','18QiMbMM72VLv9V1rTZ5dNPt9SAfojiiA'),(335,1259,'clips/rachtaz/from_vod/16-03-25/clip_2407344344_6840.mp4','2025-03-26 13:32:45','2025-04-02 03:40:32','1aqrxEQ12_ythum8dN6r_iZ7W6GB3GsT7'),(336,1259,'clips/rachtaz/from_vod/16-03-25/clip_2407344344_6847.mp4','2025-03-26 13:32:45','2025-04-02 03:40:34','1JTh1gLb5VNS6PRLkfjHhs77rBfPmE6OJ'),(337,1260,'clips/rachtaz/from_vod/15-03-25/clip_2406411770_14112.mp4','2025-03-26 13:32:45','2025-04-02 03:40:35','1XopT9kKpDo2qUskfUsnyAdToG82V_R70'),(338,1263,'clips/rachtaz/from_vod/12-03-25/clip_2403912270_11661.mp4','2025-03-26 13:32:45','2025-04-02 03:40:36','1lYyZN0pQBYBONW9iEZxQLtp4g_IMIrV3'),(339,1263,'clips/rachtaz/from_vod/12-03-25/clip_2403912270_11667.mp4','2025-03-26 13:32:45','2025-04-02 03:40:37','1VOLDMlbsHCpYVC-IWol50aPw3AeDuM7i'),(340,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_2034.mp4','2025-03-26 13:32:45','2025-04-02 03:40:38','1iGW1J8XyyFNH6v9W5BTDqdzEKY9CfiPU'),(341,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_2038.mp4','2025-03-26 13:32:45','2025-04-02 03:40:39','14pKIgiunDSCowlfLsfWWAoXDwIsAjIly'),(342,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_3144.mp4','2025-03-26 13:32:45','2025-04-02 03:40:40','1k-_gsXKBqJJND9NbJb-4gSTAvwpGJWo_'),(343,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_3146.mp4','2025-03-26 13:32:45','2025-04-02 03:40:41','1ADVn0fxGIfEPczoXt-NMI_RpwGXfC9zm'),(344,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_3164.mp4','2025-03-26 13:32:45','2025-04-02 03:40:42','1Q3iDGNv5IoXrgFTyFUCXu8rNOiugQpAt'),(345,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_3174.mp4','2025-03-26 13:32:45','2025-04-02 03:40:43','1QKDy2_46glAlfxihS5N-1CbtkAhiMy8L'),(346,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_3178.mp4','2025-03-26 13:32:45','2025-04-02 03:40:44','14-AgfKDIRuJzXiefJ2K_CSHkNsJksb27'),(347,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_14239.mp4','2025-03-26 13:32:45','2025-04-02 03:40:45','1_UeeQkNHTJzsos_usBlRrb9j3GMJk87l'),(348,1264,'clips/rachtaz/from_vod/11-03-25/clip_2402963124_14262.mp4','2025-03-26 13:32:45','2025-04-02 03:40:46','1aABhRLKclMSJArDbK3oXZgIRw6FRPkDk'),(349,1290,'clips/esfandtv/from_vod/18-03-25/clip_2409000099_18600.mp4','2025-03-26 13:32:45','2025-04-02 03:40:47','1VFfINdgPB08TSZI4oNc0S22YSRE50Ovb'),(350,1290,'clips/esfandtv/from_vod/18-03-25/clip_2409000099_18601.mp4','2025-03-26 13:32:45','2025-04-02 03:40:48','1PBbGBDSrgtdzz5nY8PTJzAtjJL6dqcUU'),(351,1312,'clips/cyr/from_vod/19-03-25/clip_2410097602_709.mp4','2025-03-26 13:32:46','2025-04-02 03:40:50','1fVmgN9GPRaq3JaqjXOO8m7G74Evt93kD'),(352,1312,'clips/cyr/from_vod/19-03-25/clip_2410097602_1464.mp4','2025-03-26 13:32:46','2025-04-02 03:40:51','1CsQuWG-rGsaKMqsQA80l6n8SMZgK4Vkf'),(353,1312,'clips/cyr/from_vod/19-03-25/clip_2410097602_4212.mp4','2025-03-26 13:32:46','2025-04-02 03:40:52','1YyFyTzNXq9aZZQxI72ALHv0lQA9BRTg2'),(354,1313,'clips/cyr/from_vod/18-03-25/clip_2409324358_2345.mp4','2025-03-26 13:32:46','2025-04-02 03:40:53','1-rkWUThgpuwOzzuLEcFmCHNyBk-1wxkN'),(355,1313,'clips/cyr/from_vod/18-03-25/clip_2409324358_2347.mp4','2025-03-26 13:32:46','2025-04-02 03:40:54','1gfS1oFDHfO42goFEWUNGgA1Z16egEfci'),(356,1313,'clips/cyr/from_vod/18-03-25/clip_2409324358_2351.mp4','2025-03-26 13:32:46','2025-04-02 03:40:55','1yFvQ2ctZwSJ3AAS52fcdYwnxnwHgSzoY'),(357,1316,'clips/cyr/from_vod/14-03-25/clip_2405040947_807.mp4','2025-03-26 13:32:46','2025-04-02 03:40:56','1MJiDWEpt8uGJ6ht_lIUFDwyT2A2rZJuS'),(358,1317,'clips/cyr/from_vod/12-03-25/clip_2403909295_14421.mp4','2025-03-26 13:32:46','2025-04-02 03:40:57','1TmSSysBjz-1X7UMDVGQLnvNOsh_sPyXr'),(359,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19273.mp4','2025-03-26 13:32:46','2025-04-02 03:40:58','1BX8cjl6T2WSqJs4KPFFLj3lw8iNJEaDK'),(360,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19305.mp4','2025-03-26 13:32:46','2025-04-02 03:40:59','1wS0fgp-j2TEEA-Cf4f5xEUF-54LCKs1r'),(361,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19307.mp4','2025-03-26 13:32:46','2025-04-02 03:41:00','15jfOV-5s-MpnN23kNpGdhL08YVB_cM_0'),(362,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19356.mp4','2025-03-26 13:32:46','2025-04-02 03:41:02','171nF3IktnYbjD1f516jcYmhn0t7o9Til'),(363,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19369.mp4','2025-03-26 13:32:46','2025-04-02 03:41:03','1XojGlZVSl91myz4xsJiCqmdmFmacXCaP'),(364,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19370.mp4','2025-03-26 13:32:46','2025-04-02 03:41:04','1fXFykxgYVeu9PTt5fDn5QbFT8sXTD_jS'),(365,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19377.mp4','2025-03-26 13:32:46','2025-04-02 03:41:05','1_b0Qg1TnTydKLWov69yW4Ynmp_Yt57jr'),(366,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19446.mp4','2025-03-26 13:32:46','2025-04-02 03:41:06','1D46wA_ii9xiNDff1JW3D3obeNxOY5Rq2'),(367,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19490.mp4','2025-03-26 13:32:46','2025-04-02 03:41:07','1GbelNf7bDj9DF94-k3y4ZHfAwfPcmoLv'),(368,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19508.mp4','2025-03-26 13:32:46','2025-04-02 03:41:08','1OX4qiY6Os0vtFoEK92wLlompphrPPkuo'),(369,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19557.mp4','2025-03-26 13:32:46','2025-04-02 03:41:09','1B4zhLX3elXQQntkuREkaIgUYqbHoeBiS'),(370,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_19561.mp4','2025-03-26 13:32:46','2025-04-02 03:41:10','1re04gHMC2MHeNhIwYSz59Jre3a2hjZIc'),(371,1318,'clips/cyr/from_vod/11-03-25/clip_2403048869_20519.mp4','2025-03-26 13:32:46','2025-04-02 03:41:11','1sV9fZrJ7NHISYsyDg3XP-jAWtSYy-2-l'),(372,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_167.mp4','2025-03-26 13:32:46','2025-04-02 03:41:12','1rTxl4ShrkDixhKf6wR9aFu_SRFz2S9qz'),(373,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_249.mp4','2025-03-26 13:32:46','2025-04-02 03:41:13','1aWDkPBmkOIIsLrDNTHpuE00AKbIGFmcd'),(374,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_855.mp4','2025-03-26 13:32:46','2025-04-02 03:41:14','1pRZGGLzEaM5AAquGQx_w3DJr-aw3ODxl'),(375,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_12564.mp4','2025-03-26 13:32:46','2025-04-02 03:41:16','1jtsC1PvrT7y52FjeLwLpp7KQGLE0lLch'),(376,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_12571.mp4','2025-03-26 13:32:46','2025-04-02 03:41:17','12heUMWrWeEB09Q_9UBzHgR0F7kg6gssI'),(377,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_12578.mp4','2025-03-26 13:32:46','2025-04-02 03:41:18','1Ltt3Cbohtp2UMA4S46OKdGFAichp7Rfr'),(378,1319,'clips/cyr/from_vod/10-03-25/clip_2402431404_12581.mp4','2025-03-26 13:32:46','2025-04-02 03:41:19','1eIFPnxC9e5B4CH4W7RmhWE3HpzjJ51lV'),(379,1320,'clips/khalamity/from_vod/20-03-25/clip_2410312873_10009.mp4','2025-03-26 13:32:46','2025-04-02 03:41:20','1_uMKpl3NpoZDZN9sIJye9hZSVLN0byMv'),(380,1320,'clips/khalamity/from_vod/20-03-25/clip_2410312873_11600.mp4','2025-03-26 13:32:46','2025-04-02 03:41:21','1WmKyEW3i8tAmLWXBbe7xvNDqrhx5Idk2'),(381,1321,'clips/khalamity/from_vod/18-03-25/clip_2408665245_4232.mp4','2025-03-26 13:32:46','2025-04-02 03:41:22','1ct50UX5MO7J_XTpCLPfZayn80C9D_ZdT'),(382,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_4276.mp4','2025-03-26 13:32:46','2025-04-02 03:41:23','1UsFRiItKCU5PxQpj6OPSgNtOrCPcBF2-'),(383,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_13305.mp4','2025-03-26 13:32:46','2025-04-02 03:41:24','1Obn_yfkmlF9lqhOfmmpDcXy19io0bQKH'),(384,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_13360.mp4','2025-03-26 13:32:46','2025-04-02 03:41:25','1I--tte8XmGxAbsqdAnrTLdSVYVgIiQRr'),(385,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_15853.mp4','2025-03-26 13:32:46','2025-04-02 03:41:26','1vkSpmfugHHR1kRsY8NADnlnp7CE2QkMH'),(386,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_15885.mp4','2025-03-26 13:32:46','2025-04-02 03:41:27','1LS4BuDGkl4GkM_zUijXpR-mn3316wIQH'),(387,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_15907.mp4','2025-03-26 13:32:46','2025-04-02 03:41:28','1Y5dNGxTFkTC5thyk9bSCbbV0LZhCzTFM'),(388,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_15927.mp4','2025-03-26 13:32:46','2025-04-02 03:41:29','1pzE2e6z_g55u3U5xZnY2svKuFws7x-19'),(389,1322,'clips/khalamity/from_vod/17-03-25/clip_2407832637_15927.mp4','2025-03-26 13:32:46','2025-04-02 03:41:30','1pzE2e6z_g55u3U5xZnY2svKuFws7x-19'),(390,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_727.mp4','2025-03-26 13:32:46','2025-04-02 03:41:31','1bDolp0pqdxeyo2aE5hSZSSV_Zb-IoLZW'),(391,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_733.mp4','2025-03-26 13:32:46','2025-04-02 03:41:32','1tUm3cQi8uxuez6WuaHFO2YOrGgMCpwOq'),(392,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_769.mp4','2025-03-26 13:32:46','2025-04-02 03:41:33','18B8B1cdWUpyxbjpYlU_4bOcjyZ9GGk5m'),(393,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_2577.mp4','2025-03-26 13:32:46','2025-04-02 03:41:34','1Zdr_C2-qHDyd_E7SUh9DU3EFnJP59nQM'),(394,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_2597.mp4','2025-03-26 13:32:46','2025-04-02 03:41:35','1yJG9-Hvh3yGFlmjH19ygElNOdu8zJ4uz'),(395,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_2626.mp4','2025-03-26 13:32:46','2025-04-02 03:41:36','19XMnhN02Qu9DipM-BrJCGzPfN2y515kd'),(396,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_2928.mp4','2025-03-26 13:32:46','2025-04-02 03:41:37','1EvvoLAOmGu1nPfbxZ8uqhHbNNe2WTcux'),(397,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_14747.mp4','2025-03-26 13:32:46','2025-04-02 03:41:38','1Tf_GayQSkpY9vTiykmqqBD5hVmcabeF3'),(398,1323,'clips/khalamity/from_vod/16-03-25/clip_2406870894_14758.mp4','2025-03-26 13:32:46','2025-04-02 03:41:39','1GgSKpjZdgE2JoG5jyXYKC6PZG37RAkmC'),(399,1324,'clips/khalamity/from_vod/15-03-25/clip_2406053991_138.mp4','2025-03-26 13:32:46','2025-04-02 03:41:41','1YSar7YRgtQNzerVvasDx_91tgJC3z5op'),(400,1324,'clips/khalamity/from_vod/15-03-25/clip_2406053991_2016.mp4','2025-03-26 13:32:46','2025-04-02 03:41:42','1Dhk3_t_ORA8lljdRemTL23HygJi3hMXj'),(401,1324,'clips/khalamity/from_vod/15-03-25/clip_2406053991_2036.mp4','2025-03-26 13:32:46','2025-04-02 03:41:43','1xm0oP466XouUTqAb6DM08lrLANVUWWui'),(402,1324,'clips/khalamity/from_vod/15-03-25/clip_2406053991_14147.mp4','2025-03-26 13:32:46','2025-04-02 03:41:44','1LIUWUN5r88ofE1Vuuz8EJQsNdJe56qav'),(403,1325,'clips/khalamity/from_vod/13-03-25/clip_2404341971_14780.mp4','2025-03-26 13:32:46','2025-04-02 03:41:45','1B_hfoXfnSb1Nf71odbEJb4Vt4kFbaKCs'),(404,1325,'clips/khalamity/from_vod/13-03-25/clip_2404341971_14787.mp4','2025-03-26 13:32:46','2025-04-02 03:41:46','1w94JpT1Xa4SvT06kpvYA2qVjjFkp4jzd'),(405,1532,'clips/fluffcz/from_vod/21-03-25/clip_2411611971_1116.mp4','2025-03-26 13:32:50','2025-04-02 03:41:47','1-7X-gEqFOdzFadYeXyRFICT99g_lde9O'),(406,1532,'clips/fluffcz/from_vod/21-03-25/clip_2411611971_1117.mp4','2025-03-26 13:32:50','2025-04-02 03:41:48','1A5diFYvpI4OEmxnouKy7l7JpDluY0-Jo'),(407,1533,'clips/tensterakdary/from_vod/21-03-25/clip_2411507618_1833.mp4','2025-03-26 13:32:50','2025-04-02 03:41:49','17cJf8s6WJNPHSOL5jUbRUSdRmBM0O-HA'),(408,1533,'clips/tensterakdary/from_vod/21-03-25/clip_2411507618_1837.mp4','2025-03-26 13:32:50','2025-04-02 03:41:50','1ShGi9FF1wzRRrFUzmMI2kpoeQT_Z6rO3'),(409,1533,'clips/tensterakdary/from_vod/21-03-25/clip_2411507618_3356.mp4','2025-03-26 13:32:50','2025-04-02 03:41:51','1aNDjyK6kIG6TgdFWf9fetevCi5hbbY6d'),(410,1534,'clips/kuruhs/from_vod/21-03-25/clip_2411521360_1086.mp4','2025-03-26 13:32:50','2025-04-02 03:41:52','1E1Nif8fP0H6yvqBmM4uFOUn7t654X92g'),(411,1534,'clips/kuruhs/from_vod/21-03-25/clip_2411521360_1090.mp4','2025-03-26 13:32:50','2025-04-02 03:41:53','1Wcbn7pIUVvN-qNo4IJM5-_JM4YW0xbwP'),(412,1534,'clips/kuruhs/from_vod/21-03-25/clip_2411521360_1099.mp4','2025-03-26 13:32:50','2025-04-02 03:41:54','1vFct_k2L1duvHtqr2pvJYpM1-anf-o5U'),(413,1534,'clips/kuruhs/from_vod/21-03-25/clip_2411521360_1132.mp4','2025-03-26 13:32:50','2025-04-02 03:41:55','1h_nUlqxIUGjSqXAEx4RbcICGHOn_4Kfu'),(414,1534,'clips/kuruhs/from_vod/21-03-25/clip_2411521360_3714.mp4','2025-03-26 13:32:50','2025-04-02 03:41:56','12sslzSC6Sog_G8MJCgQI8_Gmknlbz0Q0'),(415,1565,'clips/bladeito/from_vod/22-03-25/clip_2412276430_22309.mp4','2025-03-26 13:32:51','2025-04-02 03:41:57','19vzmX93EYO4mQLednZW610xM6gch_WM8'),(416,1565,'clips/bladeito/from_vod/22-03-25/clip_2412276430_22313.mp4','2025-03-26 13:32:51','2025-04-02 03:41:58','1KYDtDPfDm4O1lOG1UjXwCEy-o79NSA-t'),(417,1565,'clips/bladeito/from_vod/22-03-25/clip_2412276430_22334.mp4','2025-03-26 13:32:51','2025-04-02 03:41:59','1VRVltpaQ1qVRO-D_aRG4kuW6KQu8Eow-'),(418,1565,'clips/bladeito/from_vod/22-03-25/clip_2412276430_22350.mp4','2025-03-26 13:32:51','2025-04-02 03:42:00','1sHcnPphuRYCwhE03fUKimNLsnOAtw3vx'),(419,1565,'clips/bladeito/from_vod/22-03-25/clip_2412276430_22382.mp4','2025-03-26 13:32:51','2025-04-02 03:42:01','1ThVTOmY2jiEnD1zRBnbsWvenQ9hyiOCx'),(420,1565,'clips/bladeito/from_vod/22-03-25/clip_2412276430_22447.mp4','2025-03-26 13:32:51','2025-04-02 03:42:02','1I0D9TvQWGTR0OxmB-__eNxmQ5F0jqUoN'),(421,1609,'clips/duklock/from_vod/20-03-25/clip_ovPOUrJiCcY_596.mp4','2025-03-26 13:32:51',NULL,NULL),(422,1609,'clips/duklock/from_vod/20-03-25/clip_ovPOUrJiCcY_617.mp4','2025-03-26 13:32:51',NULL,NULL),(423,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_7386.mp4','2025-03-27 00:41:58','2025-04-02 03:42:06','1CbumIkAD0m74Vweu_D9VI6POjurkuNAy'),(424,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_7434.mp4','2025-03-27 00:42:03','2025-04-02 03:42:07','1-Slz-C6BKEE2SPP2-W9n-c53cI2knaxE'),(425,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_10544.mp4','2025-03-27 00:42:10','2025-04-02 03:42:08','119B-3HFT2IyJ45YI86E-dBRgIaf3RQL7'),(426,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_10552.mp4','2025-03-27 00:42:14','2025-04-02 03:42:09','1KsvnmB46kgrpLq01UWIoFy1Z1R_Kl9Pq'),(427,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_12230.mp4','2025-03-27 00:42:21','2025-04-02 03:42:10','1Zcu7M65ARTETtpHujpMuzMpBCvEOJzcO'),(428,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_12235.mp4','2025-03-27 00:42:25','2025-04-02 03:42:11','1YDpKlYTApCWrGHcV4drgzQt-O6Vo6aj_'),(429,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_12242.mp4','2025-03-27 00:42:30','2025-04-02 03:42:12','1839XtX9jioA6_GaohWaW-0PeNpbCMPIH'),(430,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_22294.mp4','2025-03-27 00:42:37','2025-04-02 03:42:13','17FkfspmVLC7zOoJ6I0GE2RK1m8zE2Tgi'),(431,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_22296.mp4','2025-03-27 00:42:41','2025-04-02 03:42:14','1z0XUm1E2MfUt_My3flvuBjSKOJjS_gD6'),(432,1574,'clips/himtheoldboy/from_vod/22-03-25/clip_2412309150_22377.mp4','2025-03-27 00:42:47','2025-04-02 03:42:15','1nIEoNzP_7jIGYVmoidNJAKL6kIGsF1Xh'),(433,1576,'clips/fluffcz/from_vod/22-03-25/clip_2412288021_1758.mp4','2025-03-27 01:10:09','2025-04-02 03:42:16','1uVPpuDVfEszhh02a5VtAWkxvoLCwmaWK'),(434,1576,'clips/fluffcz/from_vod/22-03-25/clip_2412288021_1762.mp4','2025-03-27 01:10:13','2025-04-02 03:42:17','1FIq2QaGMBGL6FFeoVD7VB_08ft5bbJOX'),(435,1576,'clips/fluffcz/from_vod/22-03-25/clip_2412288021_2386.mp4','2025-03-27 01:10:19','2025-04-02 03:42:18','1BUiHSVs6C4S9LorUwYulJ09Bi8hTHz7H'),(436,1576,'clips/fluffcz/from_vod/22-03-25/clip_2412288021_5909.mp4','2025-03-27 01:10:26','2025-04-02 03:42:19','1z2SJ7yolUKOwMqlU8DiKjqLcVosTj4Uh'),(437,1576,'clips/fluffcz/from_vod/22-03-25/clip_2412288021_9781.mp4','2025-03-27 01:10:33','2025-04-02 03:42:20','1VNA_kWSYeMwnEaaC1IMAGAyl_Qh0pCi6'),(438,1576,'clips/fluffcz/from_vod/22-03-25/clip_2412288021_9786.mp4','2025-03-27 01:10:37','2025-04-02 03:42:21','1RKXlQnM6HjL9NF4zbGoBMk9eATC28pb1'),(439,1577,'clips/tensterakdary/from_vod/22-03-25/clip_2412434840_1975.mp4','2025-03-27 01:17:08','2025-04-02 03:42:22','122gCu61tBvGVomqF_TU_wCviv41RiKHD'),(440,1622,'clips/bladeito/from_vod/23-03-25/clip_2413156013_1830.mp4','2025-03-27 04:18:24','2025-04-02 03:42:23','1k02gpXb7VeGjKR71-rWiMje311hGWIGS'),(441,1622,'clips/bladeito/from_vod/23-03-25/clip_2413156013_2951.mp4','2025-03-27 04:18:31','2025-04-02 03:42:24','1AKMwFGa6Eq1u8ptBTon8hpj4kVIN5cY8'),(442,1624,'clips/domovnikofc/from_vod/23-03-25/clip_2413416265_20211.mp4','2025-03-27 04:54:14','2025-04-02 03:42:25','1tUWPqRMEJqzH7GENu4X3IQoDG_m6Sg-U'),(443,1624,'clips/domovnikofc/from_vod/23-03-25/clip_2413416265_20214.mp4','2025-03-27 04:54:19','2025-04-02 03:42:26','1KhOhiL-IMPCjSZSsambc_UBOQ4ehZeL5'),(444,1624,'clips/domovnikofc/from_vod/23-03-25/clip_2413416265_20219.mp4','2025-03-27 04:54:25','2025-04-02 03:42:27','1SDbPa4-dPoLkd5Xmp9Aa6LIuGb-wkr6j'),(445,1624,'clips/domovnikofc/from_vod/23-03-25/clip_2413416265_20257.mp4','2025-03-27 04:54:33','2025-04-02 03:42:28','1KpbP1gv5-MArRNirDWWa2NJiY-9S8neh'),(446,1631,'clips/kuruhs/from_vod/23-03-25/clip_2413410017_2946.mp4','2025-03-27 06:28:27','2025-04-02 03:42:29','1HDKcASVV-54jwo1KeQH13gf3nZVrurEX'),(447,1631,'clips/kuruhs/from_vod/23-03-25/clip_2413410017_18049.mp4','2025-03-27 06:28:35','2025-04-02 03:42:30','1p-ry2XvQJLVKnEZsPQYaobPRy_gI4Lst'),(448,1631,'clips/kuruhs/from_vod/23-03-25/clip_2413410017_18092.mp4','2025-03-27 06:28:38','2025-04-02 03:42:31','13drsG_YFsUn0IQ7N1A29tqSrwF_VY3CI'),(449,1628,'clips/vvudy/from_vod/23-03-25/clip_2413155731_13138.mp4','2025-03-27 06:33:02','2025-04-02 03:42:32','1f-u6fiBTpMgpwNOSdQUAjVYx-Fd-Wc47'),(450,1628,'clips/vvudy/from_vod/23-03-25/clip_2413155731_13155.mp4','2025-03-27 06:33:07','2025-04-02 03:42:34','1MPiMOtFvCZTK-hBdz3JHn_sfCI5epw83'),(451,1644,'clips/khalamity/from_vod/23-03-25/clip_2412961070_1791.mp4','2025-03-27 11:12:48','2025-04-02 03:42:35','1VnInBEaB4aEGGvNZneZcPk4KDX3Zn9Gx'),(452,1644,'clips/khalamity/from_vod/23-03-25/clip_2412961070_3638.mp4','2025-03-27 11:13:04','2025-04-02 03:42:36','1vbbcMa7QbWvi1jm4MjVV7j52TAxnFG0u'),(453,1644,'clips/khalamity/from_vod/23-03-25/clip_2412961070_3663.mp4','2025-03-27 11:13:11','2025-04-02 03:42:37','142ccEFC-PLNm3c7CEOCi14x-0GHLUm41'),(454,1644,'clips/khalamity/from_vod/23-03-25/clip_2412961070_17171.mp4','2025-03-27 11:13:26','2025-04-02 03:42:38','1L_uakRJMPcrZ2zGWXMZ2Uv3-OPrpT4Xs'),(455,1644,'clips/khalamity/from_vod/23-03-25/clip_2412961070_17189.mp4','2025-03-27 11:13:33','2025-04-02 03:42:39','14L4d2599aUlO5EPN0VGxAINwkNBABDL1'),(456,1644,'clips/khalamity/from_vod/23-03-25/clip_2412961070_17200.mp4','2025-03-27 11:13:39','2025-04-02 03:42:40','1d2VXGkbUtcm_nJPAOyGxO3s9Xz-B4fNV'),(457,1658,'clips/astatoro/from_vod/24-03-25/clip_2414112181_7168.mp4','2025-03-27 15:20:23','2025-04-02 03:42:41','1hFBZNBhGdG3fxVFsoglOYOUCKLIdwkgI'),(458,1658,'clips/astatoro/from_vod/24-03-25/clip_2414112181_7174.mp4','2025-03-27 15:20:28','2025-04-02 03:42:42','1h8t_8KYcoV-KNw1tuGmkJpVopHpX1ADL'),(459,1658,'clips/astatoro/from_vod/24-03-25/clip_2414112181_25268.mp4','2025-03-27 15:20:35','2025-04-02 03:42:43','1tMtU1uQuCUBuaiRg76NEnDQzCva_7yOH'),(460,1659,'clips/claina/from_vod/24-03-25/clip_2414106935_736.mp4','2025-03-27 15:37:58','2025-04-02 03:42:44','17SOS6NVf9u7yQ3_brOePdlaseckXwifz'),(461,1659,'clips/claina/from_vod/24-03-25/clip_2414106935_1004.mp4','2025-03-27 15:38:04','2025-04-02 03:42:45','1kYlRblaQZ4t0yGI7_TfBIpUj2wbBWE3S'),(462,1659,'clips/claina/from_vod/24-03-25/clip_2414106935_1011.mp4','2025-03-27 15:38:09','2025-04-02 03:42:46','1yG4oFoWdhEteooRvdg6moM4z3hRcB_EI'),(463,1661,'clips/flyguncz/from_vod/24-03-25/clip_2414266089_9960.mp4','2025-03-27 16:04:39','2025-04-02 03:42:47','1Z5FsVYlu3C7GaPBZJ1-Ai1RhXV-FJvku'),(464,1663,'clips/bladeito/from_vod/24-03-25/clip_2414198053_23504.mp4','2025-03-27 16:55:05','2025-04-02 03:42:48','1IlHTWAaP2uAWyZv9enve8dr8tdnRc7F_'),(465,1663,'clips/bladeito/from_vod/24-03-25/clip_2414198053_23506.mp4','2025-03-27 16:55:11','2025-04-02 03:42:49','1QSvVQuHrbou25yX4Af44hR3K18sYlyxB'),(466,1663,'clips/bladeito/from_vod/24-03-25/clip_2414198053_23521.mp4','2025-03-27 16:55:16','2025-04-02 03:42:51','1scSGi0Fs6L7ZODQXavrr7XMPnkhy4tgC'),(467,1663,'clips/bladeito/from_vod/24-03-25/clip_2414198053_23537.mp4','2025-03-27 16:55:22','2025-04-02 03:42:52','1N2lZr5SIDF5dTLnPhigKYTTmOFGN80ZU'),(468,1663,'clips/bladeito/from_vod/24-03-25/clip_2414198053_23540.mp4','2025-03-27 16:55:29','2025-04-02 03:42:53','1GKYelKnWpnX5ViDLYGp5Wf8kYpNlwbO8'),(469,1672,'clips/himtheoldboy/from_vod/24-03-25/clip_2414214365_1141.mp4','2025-03-28 10:55:45','2025-04-02 03:42:54','1LY9I6JyKCUGg182e-iS6bTvn7r101lSB'),(470,1675,'clips/tensterakdary/from_vod/24-03-25/clip_2414231601_3056.mp4','2025-03-28 11:12:07','2025-04-02 03:42:55','1T-s5vJlSwpZgOOo61mV6vWZtX7gmmz7J'),(471,1677,'clips/kuruhs/from_vod/24-03-25/clip_2414205611_1383.mp4','2025-03-28 11:40:38','2025-04-02 03:42:56','1BKWrD3mrUJesMGuEfYqG2Hd2HsXAnBwV'),(472,1677,'clips/kuruhs/from_vod/24-03-25/clip_2414205611_19158.mp4','2025-03-28 11:40:43','2025-04-02 03:42:57','1sCus7PDWu1ik7G2coXjn2lu3bF8zgJ9E'),(473,1684,'clips/cyr/from_vod/24-03-25/clip_2414455198_1379.mp4','2025-03-28 15:07:17','2025-04-02 03:42:58','1NsEFiwOO9mLysirPnUooSZNQawixwJgJ'),(474,1684,'clips/cyr/from_vod/24-03-25/clip_2414455198_1433.mp4','2025-03-28 15:07:24','2025-04-02 03:42:59','1aVh-EF3_0Uz1bv6WtrdqSzV6W9C0o1ME'),(475,1684,'clips/cyr/from_vod/24-03-25/clip_2414455198_1442.mp4','2025-03-28 15:07:29','2025-04-02 03:43:00','1lG55BU8b0sanYBUNApQbV4vzNNIc25VF'),(476,1684,'clips/cyr/from_vod/24-03-25/clip_2414455198_1597.mp4','2025-03-28 15:07:38','2025-04-02 03:43:01','1z_W2Sa5O_OGgmd7bMkGDeWboo1Ic85Nr'),(477,1686,'clips/khalamity/from_vod/24-03-25/clip_2413848928_21612.mp4','2025-03-28 15:51:34','2025-04-02 03:43:02','1wG04-kunPFKr57lC3Nl0A4kl5oczH4hg'),(478,1710,'clips/miken/from_vod/21-03-25/clip_2411496129_3563.mp4','2025-03-28 20:24:57','2025-04-02 03:43:03','1h9QKM1wPEz0_Fvb6oDYi3elP6VY4reJA'),(479,1712,'clips/miken/from_vod/19-03-25/clip_2409791776_1241.mp4','2025-03-28 21:10:50','2025-04-02 03:43:04','1CGg6EfXfoNnZ--gLyFv4m4KPbCfbvYq_'),(480,1712,'clips/miken/from_vod/19-03-25/clip_2409791776_2319.mp4','2025-03-28 21:10:57','2025-04-02 03:43:05','1XZMtCyD-ihx6K103UgbTvMZpyeiRuYzD'),(481,1715,'clips/astatoro/from_vod/25-03-25/clip_2414954878_3894.mp4','2025-03-28 22:04:23','2025-04-02 03:43:06','1pF9Eh7xFOCcmjk6znwlY2x-3nhRRBBQ8'),(482,1720,'clips/flyguncz/from_vod/25-03-25/clip_2415106646_10343.mp4','2025-03-28 22:56:58','2025-04-02 03:43:07','1kVWchZWdkscOQDEgjKtUtBrFlktaq-ys'),(483,1726,'clips/avatar0fwar/from_vod/25-03-25/clip_2415002497_6051.mp4','2025-03-29 00:16:45','2025-04-02 03:43:08','1eCyrViHDoBL1jKSfjGIMfa06K5HTdPzf'),(484,1726,'clips/avatar0fwar/from_vod/25-03-25/clip_2415002497_6066.mp4','2025-03-29 00:16:51','2025-04-02 03:43:09','1qTGM22mnt4zJ1aomFpxuJGUsAFcx57gq'),(485,1740,'clips/cyr/from_vod/25-03-25/clip_2415177873_15047.mp4','2025-03-29 07:00:59','2025-04-02 03:43:10','1J82va1ngpitB9WnvEsKcreFL80hBrcBz'),(486,1740,'clips/cyr/from_vod/25-03-25/clip_2415177873_15065.mp4','2025-03-29 07:01:06','2025-04-02 03:43:11','1c0zI59R-3jhk1wcDEXKQ7dYcel2xmRGg'),(487,1740,'clips/cyr/from_vod/25-03-25/clip_2415177873_15072.mp4','2025-03-29 07:01:11','2025-04-02 03:43:12','1NgutmD5LLNJu_jES9oz-crQyrIIKy3dw'),(488,1740,'clips/cyr/from_vod/25-03-25/clip_2415177873_15099.mp4','2025-03-29 07:01:17','2025-04-02 03:43:13','1KtksUHefT0MVEjavsdFU_BZ6hElNmsvE'),(489,1741,'clips/khalamity/from_vod/25-03-25/clip_2414705194_4055.mp4','2025-03-29 07:32:06','2025-04-02 03:43:14','12OPJnYPFjVuXH-oVTWXbuU60NCo3abTA'),(490,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_5473.mp4','2025-03-29 10:25:01','2025-04-02 03:43:15','1vylSqoIKgUWUZFA0hgyD6_b8AU5Z08sJ'),(491,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_5955.mp4','2025-03-29 10:25:07','2025-04-02 03:43:17','19pS8YKw66dicuDdNG3U1if_43iq1YzC4'),(492,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_6232.mp4','2025-03-29 10:25:16','2025-04-02 03:43:18','17xmU5eEhI2OdmgyUY0Rle7LgIfnwQBcY'),(493,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_9525.mp4','2025-03-29 10:25:24','2025-04-02 03:43:19','14ydvnyJ_cke75cvYAQ2MIclAF3VsboW9'),(494,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_13306.mp4','2025-03-29 10:25:31','2025-04-02 03:43:20','1mpo7muMxvUkZvn0bxpllCEhvBWTSd-1G'),(495,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_13311.mp4','2025-03-29 10:25:37','2025-04-02 03:43:21','1v08w5igprNuynD27MdFjZVqaMHKAz9Xn'),(496,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_13371.mp4','2025-03-29 10:25:44','2025-04-02 03:43:22','1i_JxR04G0k5W8kKIsRH9KL1eEmnGwVxO'),(497,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_14837.mp4','2025-03-29 10:25:53','2025-04-02 03:43:23','13lcOSlpdseJmLE9kfjFPBg0SVIH8eYKC'),(498,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_21868.mp4','2025-03-29 10:26:01','2025-04-02 03:43:24','1msbyU8c_hBuxxuJ51SThGIa-Bu-pc7uA'),(499,1758,'clips/agraelus/from_vod/26-03-25/clip_2415954296_21889.mp4','2025-03-29 10:26:07','2025-04-02 03:43:25','1C8rZ0fCtQUSk677zpOardw7aGyR05q9J'),(500,1759,'clips/astatoro/from_vod/26-03-25/clip_2415819411_1612.mp4','2025-03-29 10:59:30','2025-04-02 03:43:26','1GXUZ1fnTMO70jRkazmnVggnQnJTcwury'),(501,1764,'clips/spajkk/from_vod/26-03-25/clip_2415820480_30940.mp4','2025-03-29 12:40:59','2025-04-02 03:43:27','1Tc859urbAm_9z9dQeKTLIHSz4QLo-7lK'),(502,1764,'clips/spajkk/from_vod/26-03-25/clip_2415820480_30952.mp4','2025-03-29 12:41:06','2025-04-02 03:43:28','1gxhXcbSkFB7dqbP8WeztRj7T4at8jB2B'),(503,1769,'clips/jorantheviking/from_vod/26-03-25/clip_2415769205_686.mp4','2025-03-29 13:53:08','2025-04-02 03:43:29','1KdfRAco4fxhxQMTc3Ep18YfE9P9Vdk18'),(504,1772,'clips/tensterakdary/from_vod/26-03-25/clip_2415887208_5870.mp4','2025-03-29 20:17:05','2025-04-02 03:43:30','14lu8xwOVuy04gdERSXFgxISF07ZBAXmo'),(505,1772,'clips/tensterakdary/from_vod/26-03-25/clip_2415887208_5872.mp4','2025-03-29 20:17:09','2025-04-02 03:43:31','1jcGR6IAk4vZeLsTpoIWNDGYzYXT_hXmC'),(506,1796,'clips/cyr/from_vod/26-03-25/clip_2416091764_1620.mp4','2025-03-30 04:18:02','2025-04-02 03:43:32','1Gc-3bOT8IsponZp6-AbsA4T6ZMEwPchn'),(507,1796,'clips/cyr/from_vod/26-03-25/clip_2416091764_1631.mp4','2025-03-30 04:18:07','2025-04-02 03:43:33','1Fzx1-0fDtK0g1dBI2I50AugmUhnY_nsm'),(508,1796,'clips/cyr/from_vod/26-03-25/clip_2416091764_1663.mp4','2025-03-30 04:18:13','2025-04-02 03:43:34','12yTnfZ57Y3yoe_pw5Pl1xvePQwSH5B6T'),(509,1796,'clips/cyr/from_vod/26-03-25/clip_2416091764_1790.mp4','2025-03-30 04:18:23','2025-04-02 03:43:35','16hGHYdtuvaguBsEmL4FnPhyN3YNT5-xv'),(510,1796,'clips/cyr/from_vod/26-03-25/clip_2416091764_1805.mp4','2025-03-30 04:18:27','2025-04-02 03:43:36','1wzI9ODRhpDSKvtfbJlLSA1EsAukFqRqR'),(511,1796,'clips/cyr/from_vod/26-03-25/clip_2416091764_1810.mp4','2025-03-30 04:18:32','2025-04-02 03:43:37','1ZER5iLn8ll1LSJ7NokRU9WsNHJChG0lF'),(512,1799,'clips/agraelus/from_vod/27-03-25/clip_2416870756_4164.mp4','2025-03-30 05:01:18','2025-04-02 03:43:38','1X_zAaxFBiYGbG8WOlnwBmh_mQSCWEs_Z'),(513,1812,'clips/domovnikofc/from_vod/27-03-25/clip_2416858198_1788.mp4','2025-03-30 08:52:41','2025-04-02 03:43:39','1nFHISyIE3BgKIWCPHYq1xotwB-ubDRgL'),(514,1814,'clips/vvudy/from_vod/27-03-25/clip_2416605497_8119.mp4','2025-03-30 09:14:47','2025-04-02 03:43:41','1G1b48ljZ08W_hzTsE0XIN7inwHqR7jXt'),(515,1816,'clips/himtheoldboy/from_vod/27-03-25/clip_2416611490_2024.mp4','2025-03-30 09:50:42','2025-04-02 03:43:42','1h9nsHVhOZA9OQbe_C_qjDbPi30L9l677'),(516,1816,'clips/himtheoldboy/from_vod/27-03-25/clip_2416611490_2025.mp4','2025-03-30 09:50:49','2025-04-02 03:43:43','1FVh0j3Anp3aoHKU088ZgdIB-i7W0FQki'),(517,1816,'clips/himtheoldboy/from_vod/27-03-25/clip_2416611490_17337.mp4','2025-03-30 09:50:57','2025-04-02 03:43:44','1moeAOTLZDeGT7MG3Rt-DkCWL7LSVZwe4'),(518,1816,'clips/himtheoldboy/from_vod/27-03-25/clip_2416611490_23959.mp4','2025-03-30 09:51:05','2025-04-02 03:43:45','1NVJV5hQFoPkTCQDZgJoLZb_fk13uvQ3t'),(519,1858,'clips/agraelus/from_vod/28-03-25/clip_2417747866_18306.mp4','2025-03-30 19:33:09','2025-04-02 03:43:46','1vQVFJEgPGf9DTP5CEpliROVcENsN7fd6'),(520,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_3059.mp4','2025-03-31 02:12:01','2025-04-02 03:43:47','1JTVDXl_J4qPwvvcsaOaM2Lrp1tbz01JI'),(521,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_4595.mp4','2025-03-31 02:12:08','2025-04-02 03:43:48','1zcFd1lyS2__TppxWQEbv_HNcbBnbx1x0'),(522,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_4598.mp4','2025-03-31 02:12:13','2025-04-02 03:43:49','1oUFpveAiGj9UqlS44PTvW9UacNJYCjC1'),(523,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_5615.mp4','2025-03-31 02:12:20','2025-04-02 03:43:50','17OlvbgXifwP5t3u6Nm9AhrowFidU8mm7'),(524,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_6527.mp4','2025-03-31 02:12:26','2025-04-02 03:43:51','1bpaPjjcWS7rpZbPGAaIdTb0HXotr9lXN'),(525,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_7588.mp4','2025-03-31 02:12:33','2025-04-02 03:43:52','1IntlO_iTM0eJ-7z4BU652Z5qodT5t4fc'),(526,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_8236.mp4','2025-03-31 02:12:41','2025-04-02 03:43:53','1sSK2MlRCx6NgSe8TmZJO2g_oMdJm-N69'),(527,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_9603.mp4','2025-03-31 02:12:48','2025-04-02 03:43:54','1yel4FuxOhASfzGvjx2BgOueg9Cd8vnX_'),(528,1874,'clips/fluffcz/from_vod/28-03-25/clip_2417586157_9927.mp4','2025-03-31 02:12:55','2025-04-02 03:43:55','1Uwphq3iMfIHK0PqpweJv9bY6iiYiH_rd'),(529,1907,'clips/agraelus/from_vod/29-03-25/clip_2418750049_825.mp4','2025-03-31 10:23:41','2025-04-02 03:43:56','1c3-TmcPGoUj7ImzDFbzkJgeg43gc9NmM'),(530,1907,'clips/agraelus/from_vod/29-03-25/clip_2418750049_16683.mp4','2025-03-31 10:23:45','2025-04-02 03:43:57','1WEdkoL4Oy5Hacai5RecmsW-qi3guQUkj'),(531,1907,'clips/agraelus/from_vod/29-03-25/clip_2418750049_19943.mp4','2025-03-31 10:23:50','2025-04-02 03:43:58','1INg8ZF8xbw6IJeCoIzmmQsvZErESOzZg'),(532,1918,'clips/kuruhs/from_vod/29-03-25/clip_2418583291_1801.mp4','2025-03-31 13:41:55','2025-04-02 03:43:59','1MPDg27XmEd-QLxIgK7DRYluplF5wu7F3'),(533,1918,'clips/kuruhs/from_vod/29-03-25/clip_2418583291_1824.mp4','2025-03-31 13:42:00','2025-04-02 03:44:00','1zrX9Jl7zKh0WSVho38XFOtuLKqsT-t7P'),(534,1918,'clips/kuruhs/from_vod/29-03-25/clip_2418583291_1846.mp4','2025-03-31 13:42:05','2025-04-02 03:44:01','1Re4nmXpLlKYCulQZjFHi1y2-192q8B7J'),(535,1918,'clips/kuruhs/from_vod/29-03-25/clip_2418583291_1871.mp4','2025-03-31 13:42:10','2025-04-02 03:44:03','1xX0PRRp1rK32Mcw65hivmDyAuav4dJt3'),(536,1918,'clips/kuruhs/from_vod/29-03-25/clip_2418583291_1876.mp4','2025-03-31 13:42:15','2025-04-02 03:44:04','1tFpTgQJyjldsXaIrGD4vqlhojWo9M6jL'),(537,1918,'clips/kuruhs/from_vod/29-03-25/clip_2418583291_6955.mp4','2025-03-31 13:42:22','2025-04-02 03:44:05','15beHv3C2UCDK2BmHH_KW4VC7Cy6xBnqv'),(538,1924,'clips/rachtaz/from_vod/29-03-25/clip_2418531142_13403.mp4','2025-03-31 17:09:55','2025-04-02 03:44:06','1zNzKrSyTXKlD6j2-YLeHZk_Pb9OuacWZ'),(539,1952,'clips/claina/from_vod/30-03-25/clip_2419280888_13084.mp4','2025-03-31 23:50:46','2025-04-02 03:44:07','1UWksh14GlJ6ZRJbo7RG5lyLlVP1BVVPv'),(540,1954,'clips/patrikturi/from_vod/30-03-25/clip_2419187495_19345.mp4','2025-04-01 00:31:09','2025-04-02 03:44:08','1DeRBf3VsjwAZNQ7OAyh6d39k-sPoY21l'),(541,1961,'clips/jorantheviking/from_vod/30-03-25/clip_2419349484_7144.mp4','2025-04-01 02:14:11','2025-04-02 03:44:09','12vwc-p3E1eOIkmjUNLlwHxNdTBVewVoE'),(542,1961,'clips/jorantheviking/from_vod/30-03-25/clip_2419349484_7146.mp4','2025-04-01 02:14:15','2025-04-02 03:44:10','1MXlLJhkdeBkSbYhrvu7QBdrCI1cHKpQf'),(543,1961,'clips/jorantheviking/from_vod/30-03-25/clip_2419349484_7148.mp4','2025-04-01 02:14:19','2025-04-02 03:44:11','14_Q5TzXI-q-wVpf-WZzUegvCoAlWI5id'),(544,1963,'clips/fluffcz/from_vod/30-03-25/clip_2419545430_14836.mp4','2025-04-01 02:40:39','2025-04-02 03:44:12','1rGALBrnyqHxFvmGX_ihOzlv8oF-4gFxG'),(545,1963,'clips/fluffcz/from_vod/30-03-25/clip_2419545430_14846.mp4','2025-04-01 02:40:44','2025-04-02 03:44:13','1bwH2W1GIBxfLxMG_W9MUWp6VGhzPJO1o'),(546,1964,'clips/tensterakdary/from_vod/30-03-25/clip_2419401945_2797.mp4','2025-04-01 02:55:40','2025-04-02 03:44:14','14aJ25gnnkO2_9147Mzig2ZVbO5PDKirp'),(547,1966,'clips/kuruhs/from_vod/30-03-25/clip_2419480909_6789.mp4','2025-04-01 03:21:58','2025-04-02 03:44:15','1euLFXx2i1R-ljWpqoI0zYdVtWzdqFMcP'),(548,1966,'clips/kuruhs/from_vod/30-03-25/clip_2419480909_8340.mp4','2025-04-01 03:22:10','2025-04-02 03:44:17','1GW9CQ3xmDEaCNNTqnVF_snvsS4ZUjZlK'),(549,1966,'clips/kuruhs/from_vod/30-03-25/clip_2419480909_8363.mp4','2025-04-01 03:22:17','2025-04-02 03:44:18','1lBQ_N7sNj1bs255Ge87p-yqFXS341W5B'),(550,1966,'clips/kuruhs/from_vod/30-03-25/clip_2419480909_15739.mp4','2025-04-01 03:22:41','2025-04-02 03:44:19','1Jtpb70ED8jS5ZcA2VYsxAAxV2qYs0LDM'),(551,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15452.mp4','2025-04-01 05:55:30','2025-04-02 03:44:20','1UjrEkWQKIQhM_7ozAbS7MgezxqQPSrLy'),(552,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15467.mp4','2025-04-01 05:55:36','2025-04-02 03:44:21','1oIi_0FsLwNM9V8j-IfT0E9lr5U8r4eZ7'),(553,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15486.mp4','2025-04-01 05:55:42','2025-04-02 03:44:22','15bF0j7pKMYoES1LpbN9rrtUyraeXjJJt'),(554,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15488.mp4','2025-04-01 05:55:47','2025-04-02 03:44:23','18OeNJCLz9oZ-5ehBptkmJmJRozZrMs8X'),(555,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15514.mp4','2025-04-01 05:55:53','2025-04-02 03:44:24','1vkIIZBhxySESC5DEReuVOi9qS8sG_XWg'),(556,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15520.mp4','2025-04-01 05:55:57','2025-04-02 03:44:25','1aMJ52V24hbvUQ9P3s6IL2l8VZDB2ozrm'),(557,1976,'clips/rachtaz/from_vod/30-03-25/clip_2419418220_15594.mp4','2025-04-01 05:56:04','2025-04-02 03:44:26','1NDdZunvN2VdUiCQqr8aFDeLgTrgpUXT2'),(558,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_5938.mp4','2025-04-01 10:59:05','2025-04-02 03:44:27','1Pwpf6K4DEgr0mqNzRgbaFfr2KzdiecXx'),(559,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6151.mp4','2025-04-01 10:59:12','2025-04-02 03:44:28','18nF58enkCw9Ov-BFRCgCcZmhVI84X518'),(560,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6226.mp4','2025-04-01 10:59:19','2025-04-02 03:44:29','1XmkwfuZ9rMN55KIuzfi7D_Iyi0Z1P09i'),(561,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6260.mp4','2025-04-01 10:59:24','2025-04-02 03:44:30','1NKNxOrn78zNPSyF0rpwOTc56isPg8_MJ'),(562,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6497.mp4','2025-04-01 10:59:32','2025-04-02 03:44:31','1nFwW0-Cte_gUTh4Ht4ZnjyqkZidu_X-h'),(563,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6513.mp4','2025-04-01 10:59:37','2025-04-02 03:44:32','11dmT9kJvyTuzrdlfTpmbxS4p1wBkXOrn'),(564,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6514.mp4','2025-04-01 10:59:43','2025-04-02 03:44:33','1Elzn5UuInUnnUgRX88OEsL9W1m-9hJhT'),(565,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_6523.mp4','2025-04-01 10:59:48','2025-04-02 03:44:34','1etm3kZv8UDK3qW7v3qbh8tYnCtmwIApG'),(566,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_7959.mp4','2025-04-01 10:59:57','2025-04-02 03:44:36','1HlMM1IRBEJKYE_maYV2Xuvu_-f2G30kK'),(567,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_13393.mp4','2025-04-01 11:00:05','2025-04-02 03:44:37','1_9fbRy0t2ZGDrKOYldAC5lV8IXNMBs4n'),(568,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_14095.mp4','2025-04-01 11:00:13','2025-04-02 03:44:38','1xCc1zy_tXSLY2L78dj7ATjcN8qnpTIS7'),(569,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_14099.mp4','2025-04-01 11:00:18','2025-04-02 03:44:39','13C5oPAe_1hqKA0-KbpiWuHYwmRf7lW40'),(570,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_16964.mp4','2025-04-01 11:00:26','2025-04-02 03:44:40','162pSOilWeIdn7XPwDWjIUCq1wrL87yL6'),(571,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_16969.mp4','2025-04-01 11:00:30','2025-04-02 03:44:41','105I_zuxQqz_bdn3-oGGZ0SK-d_niXp9h'),(572,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_16973.mp4','2025-04-01 11:00:35','2025-04-02 03:44:42','1EFgeranl5PaBcFi-BxLcrUCx1_L3PG_H'),(573,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_16987.mp4','2025-04-01 11:00:40','2025-04-02 03:44:43','1VYWfhxX3o9XQgXnl2nzhd4tX3Etc2TLm'),(574,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17487.mp4','2025-04-01 11:00:48','2025-04-02 03:44:44','1gJS-x7jH7ODQ59vcRkKjmjedLc9uJo68'),(575,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17492.mp4','2025-04-01 11:00:52','2025-04-02 03:44:45','1zJ0MUxLwJh523qyYaXjbCnwNj_DT-q2U'),(576,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17511.mp4','2025-04-01 11:00:57','2025-04-02 03:44:46','13whHF0kcsb9jMgTCJs8KA1RBWh00vp_C'),(577,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17515.mp4','2025-04-01 11:01:03','2025-04-02 03:44:47','1jS_1qQFiC-dR2JHbP3zKgjvCIuQgnh_2'),(578,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17517.mp4','2025-04-01 11:01:07','2025-04-02 03:44:48','1xauuUjucZ2X0fIYdrpsOMHGQ0kFtyXDX'),(579,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17531.mp4','2025-04-01 11:01:13','2025-04-02 03:44:49','1PnUfGyGaSPcmnRAgxIQKtJpb9yUoRnsJ'),(580,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17533.mp4','2025-04-01 11:01:17','2025-04-02 03:44:50','1Pqne_JOcQ6ESsGrz5BnLdnAN1ufqoAG8'),(581,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17543.mp4','2025-04-01 11:01:25','2025-04-02 03:44:51','1JaqxWS9aykTs1POcalbzs09Zluy_iYn6'),(582,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17544.mp4','2025-04-01 11:01:33','2025-04-02 03:44:52','1zmEglRumla8AI5NL5JqVMooJ1e6i_Rf5'),(583,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17603.mp4','2025-04-01 11:01:40','2025-04-02 03:44:53','10Wjkpu8Uc73Q9SKrkLpPEk7gZY5CwsYS'),(584,1996,'clips/amfikcz/from_vod/30-03-25/clip_2419523712_17619.mp4','2025-04-01 11:01:47','2025-04-02 03:44:54','10b6G6vJMF-9SxFTuC97DHRhg8WPnT0lc'),(585,1997,'clips/agraelus/from_vod/31-03-25/clip_2420440174_10188.mp4','2025-04-01 11:23:14','2025-04-02 03:44:55','1PAhGFWkAUGUCwkeV4cOtKCOn8Lr2ZGjM'),(586,1997,'clips/agraelus/from_vod/31-03-25/clip_2420440174_21926.mp4','2025-04-01 11:23:19','2025-04-02 03:44:56','11bKE0rz450nyHDqJdknfF3zGjmzUaM5y'),(587,1999,'clips/claina/from_vod/31-03-25/clip_2420239349_2873.mp4','2025-04-01 11:51:17','2025-04-02 03:44:57','1kvMPo7nzwgZ-31PTbEZ1nwCWiLW9030e'),(588,2001,'clips/flyguncz/from_vod/31-03-25/clip_2420392759_7708.mp4','2025-04-01 12:39:01','2025-04-02 03:44:59','1cMCogU6yztjCeRmmMjCOF_KP8gR6ZYHv'),(589,2008,'clips/mullersie/from_vod/31-03-25/clip_2420193284_10331.mp4','2025-04-01 14:02:10','2025-04-02 03:45:00','196WfjSbl48BERUJKkmrCMH1of7wjCfl_'),(590,2009,'clips/avatar0fwar/from_vod/31-03-25/clip_2420356976_9784.mp4','2025-04-01 14:20:34','2025-04-02 03:45:01','13s9DXOXOQP7TFV6wJL-49-nXqhhlgPcT'),(591,2009,'clips/avatar0fwar/from_vod/31-03-25/clip_2420356976_9821.mp4','2025-04-01 14:20:40','2025-04-02 03:45:02','14_zsHFTliU0uqliHg-6riDcBIEW-DF7r'),(592,2012,'clips/fluffcz/from_vod/31-03-25/clip_2420353000_8393.mp4','2025-04-01 15:01:54','2025-04-02 03:45:03','1k9-0L5zKDfyFzyVKcHaLLbS-lrfULrfg'),(593,2013,'clips/tensterakdary/from_vod/31-03-25/clip_2420287863_3808.mp4','2025-04-01 15:19:28','2025-04-02 03:45:04','1w0Qz-VawPpt8oqMlqzTh7EPsxQ51A69g'),(594,2015,'clips/kuruhs/from_vod/31-03-25/clip_2420312204_22911.mp4','2025-04-01 16:03:09','2025-04-02 03:45:05','1zZu4tTj5EQxSpz3nSLCG2fDptbLDCPN6'),(595,2025,'clips/cyr/from_vod/31-03-25/clip_2420466483_4274.mp4','2025-04-01 21:14:56','2025-04-02 03:45:06','1KUNduiEZad1xWIsdtuomZrhq9PKZKlPd'),(596,2025,'clips/cyr/from_vod/31-03-25/clip_2420466483_4300.mp4','2025-04-01 21:15:02','2025-04-02 03:45:07','1bUy5a1eWgLR5MWjQBR8fK2vp8gYTy_3-'),(597,2044,'clips/kapesnik69/from_vod/30-03-25/clip_2419376266_30256.mp4','2025-04-02 02:05:22','2025-04-02 03:45:08','1rirYUr5VaEnGVYkJjppQZCz3kq31PYAV'),(598,2044,'clips/kapesnik69/from_vod/30-03-25/clip_2419376266_30278.mp4','2025-04-02 02:05:28','2025-04-02 03:45:09','1KP4tPGY9JD0JNp-ZDk6-UUSECBVOjMhO'),(599,2049,'clips/astatoro/from_vod/01-04-25/clip_2421075921_24631.mp4','2025-04-02 03:44:17','2025-04-02 19:17:03','1B08Cofbxn5yEE4IFatke8bNb5SKBLaPR'),(600,2049,'clips/astatoro/from_vod/01-04-25/clip_2421075921_24647.mp4','2025-04-02 03:44:22','2025-04-02 19:17:04','1Qg0A6ccgG5K8y3Es6N7Imqj9BYUIk-4U'),(601,2049,'clips/astatoro/from_vod/01-04-25/clip_2421075921_24868.mp4','2025-04-02 03:44:28','2025-04-02 19:17:05','1QcxUkR85poYvuLDBZZJObt4RJNeUs-9M'),(602,2050,'clips/patrikturi/from_vod/01-04-25/clip_2420935225_29174.mp4','2025-04-02 04:15:19','2025-04-02 19:17:06','1ES33m4ahDFrjoMg1pENQUzsnQycZ_N88'),(603,2050,'clips/patrikturi/from_vod/01-04-25/clip_2420935225_29176.mp4','2025-04-02 04:15:24','2025-04-02 19:17:08','1FOs29sW4zHwaNo7ZxAyGhvVlEI9vF0sP'),(604,2057,'clips/avatar0fwar/from_vod/01-04-25/clip_2421203620_2220.mp4','2025-04-02 06:18:48','2025-04-02 19:17:09','1Kv1WUt1qt2Wt-0-_KWSiDrXI4uToSgVr'),(605,2057,'clips/avatar0fwar/from_vod/01-04-25/clip_2421203620_2302.mp4','2025-04-02 06:18:55','2025-04-02 19:17:10','1qXIid-BrPp9XNXQTqeTS15XBP4SAv9j8'),(606,2057,'clips/avatar0fwar/from_vod/01-04-25/clip_2421203620_2367.mp4','2025-04-02 06:19:00','2025-04-02 19:17:11','13pL975lqJgr7TyxxElaxP7ME7q3mFjnR'),(607,2057,'clips/avatar0fwar/from_vod/01-04-25/clip_2421203620_2399.mp4','2025-04-02 06:19:05','2025-04-02 19:17:12','13WrGt_j85VuxbnMXVIHMkvbxQItYNRcF'),(608,2057,'clips/avatar0fwar/from_vod/01-04-25/clip_2421203620_2402.mp4','2025-04-02 06:19:10','2025-04-02 19:17:13','1B6YiYjsagTpgduwwq_XjkdDk4EHnrYfU'),(609,2059,'clips/tensterakdary/from_vod/01-04-25/clip_2421144139_2791.mp4','2025-04-02 06:58:36','2025-04-02 19:17:14','1IrWzKG6IfC6k-hLd5nq56u65DhQK37us'),(610,2059,'clips/tensterakdary/from_vod/01-04-25/clip_2421144139_2795.mp4','2025-04-02 06:58:41','2025-04-02 19:17:15','1yXsGzFgIOOpPDSfB40GtXBoI5uTwbaY2'),(611,2061,'clips/kuruhs/from_vod/01-04-25/clip_2421186554_4243.mp4','2025-04-02 07:43:00','2025-04-02 19:17:17','1dLJFRrlB-ICgmpHv_n2IGtV4UTUX93eX'),(612,2061,'clips/kuruhs/from_vod/01-04-25/clip_2421186554_6099.mp4','2025-04-02 07:43:07','2025-04-02 19:17:18','1TsT0j6iqk6kBzb2zof4XIrTj_yLyBwgI'),(613,2061,'clips/kuruhs/from_vod/01-04-25/clip_2421186554_6112.mp4','2025-04-02 07:43:12','2025-04-02 19:17:19','1w57QdkWJw-6frYiECLkOJx-z18VwYEHy'),(614,2061,'clips/kuruhs/from_vod/01-04-25/clip_2421186554_6162.mp4','2025-04-02 07:43:17','2025-04-02 19:17:20','155PB-mRX3LzCHcNzHtN0VURewAsA40Rk'),(615,2061,'clips/kuruhs/from_vod/01-04-25/clip_2421186554_21710.mp4','2025-04-02 07:43:22','2025-04-02 19:17:21','1VplUbOEqYxa1pLCN7rJjLUeUeA_nMMlj'),(616,2093,'clips/agraelus/from_vod/02-04-25/clip_2422123950_14443.mp4','2025-04-02 22:49:22','2025-04-03 10:24:10','1A_MCHI_QGG-fKiL9gJHVvNWEkogyNRm_'),(617,2093,'clips/agraelus/from_vod/02-04-25/clip_2422123950_14445.mp4','2025-04-02 22:49:30','2025-04-03 10:24:11','1falbe3Gms_CaKgiXIh0ADL91Wnd6dfh0'),(618,2094,'clips/astatoro/from_vod/02-04-25/clip_2421932925_12696.mp4','2025-04-02 23:30:04','2025-04-03 10:24:12','1L_L4SYahmpXYnqfYutfoMY3uViZDaib7'),(619,2094,'clips/astatoro/from_vod/02-04-25/clip_2421932925_13515.mp4','2025-04-02 23:30:16','2025-04-03 10:24:13','17lFQt9t9oC5wYXRLXhQ4lIno4WtE-n3T'),(620,2101,'clips/patrikturi/from_vod/02-04-25/clip_2421768187_5541.mp4','2025-04-03 00:03:59','2025-04-03 10:24:14','1znDST19gioEAPtV33gumzzqvZg65RwDp'),(621,2101,'clips/patrikturi/from_vod/02-04-25/clip_2421768187_5554.mp4','2025-04-03 00:04:05','2025-04-03 10:24:15','1XNgkhtNVaLFW4vDzeyjjbFTy1bNOxLYH'),(622,2101,'clips/patrikturi/from_vod/02-04-25/clip_2421768187_5561.mp4','2025-04-03 00:04:11','2025-04-03 10:24:16','1ixVdnT8ZZC1qzUyYq0ZzNKgypi1XRD-w'),(623,2104,'clips/spajkk/from_vod/02-04-25/clip_2422055860_1104.mp4','2025-04-03 01:12:56','2025-04-03 10:24:17','1KBKIqrI5mwD6lqtj6wZaMiePolXLXcAq'),(624,2104,'clips/spajkk/from_vod/02-04-25/clip_2422055860_1107.mp4','2025-04-03 01:13:02','2025-04-03 10:24:18','1KNwC2VyOc0TlcVq5Pmx-RmHWnlXOhNPK'),(625,2104,'clips/spajkk/from_vod/02-04-25/clip_2422055860_1111.mp4','2025-04-03 01:13:08','2025-04-03 10:24:19','1DczvNWykd0WtMyr5geYy1wfI3Z-nTBqx'),(626,2104,'clips/spajkk/from_vod/02-04-25/clip_2422055860_1114.mp4','2025-04-03 01:13:14','2025-04-03 10:24:21','1fw-11f8QqWfJhNMG2ijwBqFVs7Dzwnyl'),(627,2113,'clips/mullersie/from_vod/02-04-25/clip_2421931288_1915.mp4','2025-04-03 02:44:13','2025-04-03 10:24:22','1qI6hNtt-hKLx5j9cuY3kSt4-IiCPiRCU'),(628,2113,'clips/mullersie/from_vod/02-04-25/clip_2421931288_1917.mp4','2025-04-03 02:44:18','2025-04-03 10:24:23','1Mp4Q4Hr8ra8nzL8cnzps0-NCxLo_qAdY'),(629,2113,'clips/mullersie/from_vod/02-04-25/clip_2421931288_1919.mp4','2025-04-03 02:44:23','2025-04-03 10:24:24','1G_jP2xxzEbPbzaQvc_d1fMsC22ObHLhI'),(630,2118,'clips/kuruhs/from_vod/02-04-25/clip_2422014328_2578.mp4','2025-04-03 05:22:59','2025-04-03 10:24:25','15-EeXhXG_uaSdOdJLcMISsDZIUEKDtwY'),(631,2118,'clips/kuruhs/from_vod/02-04-25/clip_2422014328_4966.mp4','2025-04-03 05:23:10','2025-04-03 10:24:26','1tAwAjlmGIiGhc29i9FGF4Q_Oes3fd4O4'),(632,2118,'clips/kuruhs/from_vod/02-04-25/clip_2422014328_24691.mp4','2025-04-03 05:23:18','2025-04-03 10:24:27','12ITEOwb1CRtukMbGvmoQuyyW5NP7nOHt'),(633,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2119.mp4','2025-04-03 12:56:38','2025-04-03 13:10:07','1Uqg78KOu1iIX4GXCRixJfQM1_0p44NbI'),(634,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2132.mp4','2025-04-03 12:56:44','2025-04-03 13:10:08','1_vnZW3NZlt1GDjC8ZcRGREZh54w-xNn7'),(635,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2257.mp4','2025-04-03 12:56:59','2025-04-03 13:10:09','1YaCYWtdOnfp_LtkbxYcIzZyUT3e9gBEC'),(636,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2284.mp4','2025-04-03 12:57:06','2025-04-03 13:10:11','1IyKNYz5j3V7Cl8OJSjSoiJIaRziVquuB'),(637,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2326.mp4','2025-04-03 12:57:12','2025-04-03 13:10:12','16Vj-UvDUm1XGL59wnnK3a0KDXev9iZd7'),(638,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2353.mp4','2025-04-03 12:57:19','2025-04-03 13:10:13','1DcoUnQbFTzWYl6jQZxwzwALJW_HhyUP5'),(639,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2353.mp4','2025-04-03 12:57:21','2025-04-03 13:10:14','1DcoUnQbFTzWYl6jQZxwzwALJW_HhyUP5'),(640,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2355.mp4','2025-04-03 12:57:27','2025-04-03 13:10:16','1CQUoc28h7PrPCBlSe9jgNyYCszMDRvyU'),(641,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2369.mp4','2025-04-03 12:57:32','2025-04-03 13:10:17','1lEY2hsGSRXPj6GlBI4w-fHDPzKyn0H2r'),(642,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_2372.mp4','2025-04-03 12:57:37','2025-04-03 13:10:18','1uGDYxl80xuNjeMK7zFYR0Fevgl-SsCIS'),(643,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_5194.mp4','2025-04-03 12:57:52','2025-04-03 13:10:19','1N9_8Li0LxowuWRgVliULowRn5rDL1w7C'),(644,2132,'clips/cyr/from_vod/02-04-25/clip_2422199034_5239.mp4','2025-04-03 12:58:01','2025-04-03 13:10:21','1l8VwzqyEoQkWNwVdhAcAsuz_o7UDCPpz'),(645,2149,'clips/miken/from_vod/02-04-25/clip_2422044799_11887.mp4','2025-04-03 15:24:35','2025-04-03 15:30:06','1fuuGLs-AjXC2FDZBbtMNSNKLMkDIBqdE'),(646,2149,'clips/miken/from_vod/02-04-25/clip_2422044799_11896.mp4','2025-04-03 15:24:40','2025-04-03 15:30:07','1NLrGf0LwCvgOJSwe0ImyGI7gyUfjggNt'),(647,2149,'clips/miken/from_vod/02-04-25/clip_2422044799_19433.mp4','2025-04-03 15:24:48','2025-04-03 15:30:08','1W3hv_2SeuAcShmcgwyacmU1znNtkoUfd'),(648,2151,'clips/agraelus/from_vod/03-04-25/clip_2422970345_10959.mp4','2025-04-03 22:49:22','2025-04-03 23:00:06','1tvmueao9nsE6yRq_9Xp_Ad53BX8r5R5J'),(649,2152,'clips/astatoro/from_vod/03-04-25/clip_2422795746_14795.mp4','2025-04-03 23:20:48','2025-04-03 23:30:06','1aF1624KzUZgIW263tb2Rkza-ecZolqBB'),(650,2152,'clips/astatoro/from_vod/03-04-25/clip_2422795746_18894.mp4','2025-04-03 23:20:55','2025-04-03 23:30:08','1LW0gWT-0uWZfWAPnf7RRYO0jVh9_sD96'),(651,2153,'clips/claina/from_vod/03-04-25/clip_2422791744_9179.mp4','2025-04-03 23:26:43','2025-04-03 23:30:09','1SxNJKfkmj_QTacVDf_PTmxyeEe_op4yV'),(652,2153,'clips/claina/from_vod/03-04-25/clip_2422791744_10441.mp4','2025-04-03 23:26:48','2025-04-03 23:30:10','1Q7dCSWqv6jKacWbib8VsP9wacuEWlCND'),(653,2161,'clips/avatar0fwar/from_vod/03-04-25/clip_2422929674_963.mp4','2025-04-04 01:39:44','2025-04-04 01:50:06','1UgNKu5x0gY4bzQM0iJvnEu_MxnG6T3LU'),(654,2161,'clips/avatar0fwar/from_vod/03-04-25/clip_2422929674_1090.mp4','2025-04-04 01:39:55','2025-04-04 01:50:07','1An_SuAZC7vm9mcNEzxg6uxPLAJ4nin2H'),(655,2161,'clips/avatar0fwar/from_vod/03-04-25/clip_2422929674_1095.mp4','2025-04-04 01:40:00','2025-04-04 01:50:08','1mcovcRrpFfhNITMNIW-EIEUuO8NiVjtu'),(656,2161,'clips/avatar0fwar/from_vod/03-04-25/clip_2422929674_8422.mp4','2025-04-04 01:40:12','2025-04-04 01:50:09','15y2uziV4ZBspEpSmKnWgM04IxWdQDA0y'),(657,2167,'clips/kuruhs/from_vod/03-04-25/clip_2422931418_20969.mp4','2025-04-04 03:21:51','2025-04-04 03:30:07','1maQT5NjNPI4fIjxWl2f7Tqi5Lsk3PLO3'),(658,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3143.mp4','2025-04-04 15:40:05','2025-04-04 15:50:06','12vzX12NRmMD1CpBpl7_nWCWYMthF2lyo'),(659,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3156.mp4','2025-04-04 15:40:10','2025-04-04 15:50:07','1O06JK0UizLfBl-g559VWazCDbj8EWyOv'),(660,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3163.mp4','2025-04-04 15:40:14','2025-04-04 15:50:08','1plzmv9o4eHM3Dt_PBBtambZ3qbJOMvkj'),(661,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3174.mp4','2025-04-04 15:40:18','2025-04-04 15:50:10','1CM3YlEdfyJ1yaPo1C4xCJyP9IynVBbYG'),(662,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3188.mp4','2025-04-04 15:40:23','2025-04-04 15:50:11','1kjgsXDA-neec13VtBHz5FMSUCKLdiFIR'),(663,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3194.mp4','2025-04-04 15:40:27','2025-04-04 15:50:12','1DgU6wcGPukveFHxX5gD0scY_MgW5qIFv'),(664,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3203.mp4','2025-04-04 15:40:31','2025-04-04 15:50:13','1J4IrnMmCctU74Y5jFs8XIRdgUdV39Rjf'),(665,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3225.mp4','2025-04-04 15:40:36','2025-04-04 15:50:14','1wbA0s6hqU9Hb-Ft_qHY1bfd2FbR6TZ7k'),(666,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3317.mp4','2025-04-04 15:40:41','2025-04-04 15:50:15','1LgFJVE1SnQ_l5yQCEe5M4s5WnxaKMUWu'),(667,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_3579.mp4','2025-04-04 15:40:48','2025-04-04 15:50:16','1C0EYeg2KAaFtiyAh4jhXmqb0p9fvSgbr'),(668,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_6134.mp4','2025-04-04 15:40:54','2025-04-04 15:50:17','1PsgVTr_RtLVRiEiD1pB5RVyJqXc8FZlb'),(669,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_26216.mp4','2025-04-04 15:41:00','2025-04-04 15:50:18','1sTRWinTFXbEYUUG1kBbvjSZ2fS28TGBC'),(670,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_27271.mp4','2025-04-04 15:41:06','2025-04-04 15:50:20','1d1x_zKvbK4LNxcc7nh8p50ZI1E90YTzd'),(671,1771,'clips/fluffcz/from_vod/26-03-25/clip_2415773530_27277.mp4','2025-04-04 15:41:10','2025-04-04 15:50:21','18MAXEIRdBN5_Uu7OgFEoA3u28CQFTvP2'),(672,2199,'clips/astatoro/from_vod/04-04-25/clip_2423697360_13206.mp4','2025-04-05 03:06:47','2025-04-05 03:20:06','16fiAn5P1S7suawx60vcyzyLVLX2Yp6CI'),(673,2199,'clips/astatoro/from_vod/04-04-25/clip_2423697360_15368.mp4','2025-04-05 03:06:54','2025-04-05 03:20:07','1NaY75qpAaj_b2fa8sm86724EBKzlwYe-'),(674,2199,'clips/astatoro/from_vod/04-04-25/clip_2423697360_15378.mp4','2025-04-05 03:07:00','2025-04-05 03:20:08','1yjU8y3x0zw5oKTmfGYMR8EZ3rBYnMrFL'),(675,2200,'clips/patrikturi/from_vod/04-04-25/clip_2423524894_17294.mp4','2025-04-05 04:05:42','2025-04-05 04:20:06','1fwhujQLweI-7NVF49Wwza4F4GlNQT3eJ'),(676,2200,'clips/patrikturi/from_vod/04-04-25/clip_2423524894_22519.mp4','2025-04-05 04:05:49','2025-04-05 04:20:07','1k6se6_WGc0v4Cz4ObiFbDtKP2p7Ab9CR'),(677,2200,'clips/patrikturi/from_vod/04-04-25/clip_2423524894_39086.mp4','2025-04-05 04:05:56','2025-04-05 04:20:08','125670EaIPgNJT-ihrviIx_-MEYeieatc'),(678,2200,'clips/patrikturi/from_vod/04-04-25/clip_2423524894_39118.mp4','2025-04-05 04:06:01','2025-04-05 04:20:09','1ONCLtxcfD1dtncdr2NjUeBInZbqM8aUL'),(679,2200,'clips/patrikturi/from_vod/04-04-25/clip_2423524894_39181.mp4','2025-04-05 04:06:06','2025-04-05 04:20:10','1aLVO-pyS5ZqgRZn7KJYwIh8QbfLzUMyy'),(680,2245,'clips/miken/from_vod/04-04-25/clip_2423812579_1670.mp4','2025-04-05 18:53:55','2025-04-05 19:10:06','1x7n9h-Z5SVQbnKaGqix5YBqS2CB13J3k'),(681,2251,'clips/domovnikofc/from_vod/05-04-25/clip_2424797762_9381.mp4','2025-04-06 00:32:38','2025-04-06 00:50:05','11UHDnEQirYR_NybW3oz_kW-_q5nD21Ep'),(682,2253,'clips/tensterakdary/from_vod/05-04-25/clip_2424520279_15529.mp4','2025-04-06 00:58:15','2025-04-06 01:10:06','1TRwiuqkEUzqq--TtyXjqqY_BKjLg-RSU'),(683,2253,'clips/tensterakdary/from_vod/05-04-25/clip_2424520279_15886.mp4','2025-04-06 00:58:20','2025-04-06 01:10:07','1c2eAv93iJnSWwTZo8Ww_8DrLLMrdPqOD'),(684,2253,'clips/tensterakdary/from_vod/05-04-25/clip_2424520279_16339.mp4','2025-04-06 00:58:26','2025-04-06 01:10:08','1FU3eExgJrDbI0oNWSQwu9aqOdk2F2gWe'),(685,2253,'clips/tensterakdary/from_vod/05-04-25/clip_2424520279_16345.mp4','2025-04-06 00:58:33','2025-04-06 01:10:09','10wKZk35es5hP0GhfSpeKaKYxcesoGdsA'),(686,2253,'clips/tensterakdary/from_vod/05-04-25/clip_2424520279_16421.mp4','2025-04-06 00:58:38','2025-04-06 01:10:10','1z7bm6mHHJlDBo1WDuXT2Bl1DIvgrak6F'),(687,2255,'clips/kuruhs/from_vod/05-04-25/clip_2424777184_1673.mp4','2025-04-06 01:29:47','2025-04-06 01:40:06','1XOQNinuRQACJrOkTzOlpC--bKAzyW1dY'),(688,2255,'clips/kuruhs/from_vod/05-04-25/clip_2424777184_1685.mp4','2025-04-06 01:29:52','2025-04-06 01:40:07','1K9rIQlseGk9-NSqFiXJSYrKdqRCQmGFa'),(689,2255,'clips/kuruhs/from_vod/05-04-25/clip_2424777184_3297.mp4','2025-04-06 01:29:58','2025-04-06 01:40:08','1ELKw07OuV3qMvoWXcPBcTrI6nuwSTP6y'),(690,2255,'clips/kuruhs/from_vod/05-04-25/clip_2424777184_17945.mp4','2025-04-06 01:30:04','2025-04-06 01:40:09','1D1xgq3qurqpPdLoVg7x-rzZnfIuB5Duk'),(691,2267,'clips/tolkin/from_vod/05-04-25/clip_2424546395_20544.mp4','2025-04-06 07:05:07','2025-04-06 07:10:07','1ysQKynkArMCqOYwW6n-nGy1_n81KXK4L'),(692,2267,'clips/tolkin/from_vod/05-04-25/clip_2424546395_20549.mp4','2025-04-06 07:05:13','2025-04-06 07:10:08','1IRpGWc8AyCn0eUNYZiqPmcENRyblv0dD'),(693,2267,'clips/tolkin/from_vod/05-04-25/clip_2424546395_20610.mp4','2025-04-06 07:05:19','2025-04-06 07:10:09','1rsZqzyALHz7RkWyKtQQ5UmHake_yzm7W'),(694,2273,'clips/miken/from_vod/05-04-25/clip_2424566173_379.mp4','2025-04-06 07:42:30','2025-04-06 08:00:07','12ZUI5i7YHVuuenUfe4QMzMQ3XHW9vUjo'),(695,2273,'clips/miken/from_vod/05-04-25/clip_2424566173_391.mp4','2025-04-06 07:42:35','2025-04-06 08:00:08','1JEkMqUevJu8-0RTUGjsB_Xaa-P9rI4sA'),(696,2273,'clips/miken/from_vod/05-04-25/clip_2424566173_2412.mp4','2025-04-06 07:42:40','2025-04-06 08:00:09','1lKCreiH5BURLpFUL57pR4qvP0y6ln50t'); + +-- +-- Table structure for table `failed_jobs` +-- + +DROP TABLE IF EXISTS `failed_jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `failed_jobs` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `uuid` varchar(255) NOT NULL, + `connection` text NOT NULL, + `queue` text NOT NULL, + `payload` longtext NOT NULL, + `exception` longtext NOT NULL, + `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`), + UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `failed_jobs` +-- + + +-- +-- Table structure for table `job_batches` +-- + +DROP TABLE IF EXISTS `job_batches`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `job_batches` ( + `id` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `total_jobs` int(11) NOT NULL, + `pending_jobs` int(11) NOT NULL, + `failed_jobs` int(11) NOT NULL, + `failed_job_ids` longtext NOT NULL, + `options` mediumtext DEFAULT NULL, + `cancelled_at` int(11) DEFAULT NULL, + `created_at` int(11) NOT NULL, + `finished_at` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `job_batches` +-- + + +-- +-- Table structure for table `jobs` +-- + +DROP TABLE IF EXISTS `jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `jobs` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `queue` varchar(255) NOT NULL, + `payload` longtext NOT NULL, + `attempts` tinyint(3) unsigned NOT NULL, + `reserved_at` int(10) unsigned DEFAULT NULL, + `available_at` int(10) unsigned NOT NULL, + `created_at` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `jobs_queue_index` (`queue`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jobs` +-- + + +-- +-- Table structure for table `migrations` +-- + +DROP TABLE IF EXISTS `migrations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `migrations` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `migration` varchar(255) NOT NULL, + `batch` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `migrations` +-- + +INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'0001_01_01_000000_create_users_table',1),(2,'0001_01_01_000001_create_cache_table',1),(3,'0001_01_01_000002_create_jobs_table',1),(4,'2025_03_21_025423_add_two_factor_columns_to_users_table',1),(5,'2025_03_21_025431_create_personal_access_tokens_table',1),(6,'2025_03_21_025431_create_teams_table',1),(7,'2025_03_21_025432_create_team_user_table',1),(8,'2025_03_21_025433_create_team_invitations_table',1); + +-- +-- Table structure for table `password_reset_tokens` +-- + +DROP TABLE IF EXISTS `password_reset_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `password_reset_tokens` ( + `email` varchar(255) NOT NULL, + `token` varchar(255) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`email`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `password_reset_tokens` +-- + + +-- +-- Table structure for table `personal_access_tokens` +-- + +DROP TABLE IF EXISTS `personal_access_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `personal_access_tokens` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `tokenable_type` varchar(255) NOT NULL, + `tokenable_id` bigint(20) unsigned NOT NULL, + `name` varchar(255) NOT NULL, + `token` varchar(64) NOT NULL, + `abilities` text DEFAULT NULL, + `last_used_at` timestamp NULL DEFAULT NULL, + `expires_at` timestamp NULL DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `personal_access_tokens_token_unique` (`token`), + KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `personal_access_tokens` +-- + + +-- +-- Table structure for table `sessions` +-- + +DROP TABLE IF EXISTS `sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sessions` ( + `id` varchar(255) NOT NULL, + `user_id` bigint(20) unsigned DEFAULT NULL, + `ip_address` varchar(45) DEFAULT NULL, + `user_agent` text DEFAULT NULL, + `payload` longtext NOT NULL, + `last_activity` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `sessions_user_id_index` (`user_id`), + KEY `sessions_last_activity_index` (`last_activity`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sessions` +-- + +INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('fPa6YE7Tkwb55UhWiQ43llYv9fBBgaITYQofSnsz',2,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','YTo1OntzOjY6Il90b2tlbiI7czo0MDoiUmcxYmJHQzcyd0NTM1RQdlZxeWRSZVVoV0MzMDRSdE9BMWh6dlFRMiI7czo1MDoibG9naW5fd2ViXzU5YmEzNmFkZGMyYjJmOTQwMTU4MGYwMTRjN2Y1OGVhNGUzMDk4OWQiO2k6MjtzOjIxOiJwYXNzd29yZF9oYXNoX3NhbmN0dW0iO3M6NjA6IiQyeSQxMiR4Vk9XZVJuOWpPd3BSWlEuWW11dC9leUFiamlHY1ZvNVI1Q1lQbGJ4YVQvSmRyRlhGSkRUUyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mjg6Imh0dHA6Ly9sb2NhbGhvc3Q6ODAwNC92aWRlb3MiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1743881178),('PlF6kuKqHz2BTZrP8CXHecNAvXmnl9fLQYStdD9c',2,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','YTo1OntzOjY6Il90b2tlbiI7czo0MDoiTEt3UkFVdkJCbmNJWnpqdlFybE81THRUb0pYQ2NSRjVyRk5Vdk9tRiI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mjg6Imh0dHA6Ly9sb2NhbGhvc3Q6ODAwNC92aWRlb3MiO31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToyO3M6MjE6InBhc3N3b3JkX2hhc2hfc2FuY3R1bSI7czo2MDoiJDJ5JDEyJHhWT1dlUm45ak93cFJaUS5ZbXV0L2V5QWJqaUdjVm81UjVDWVBsYnhhVC9KZHJGWEZKRFRTIjt9',1743866245); + +-- +-- Table structure for table `team_invitations` +-- + +DROP TABLE IF EXISTS `team_invitations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `team_invitations` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `team_id` bigint(20) unsigned NOT NULL, + `email` varchar(255) NOT NULL, + `role` varchar(255) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `team_invitations_team_id_email_unique` (`team_id`,`email`), + CONSTRAINT `team_invitations_team_id_foreign` FOREIGN KEY (`team_id`) REFERENCES `teams` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `team_invitations` +-- + + +-- +-- Table structure for table `team_user` +-- + +DROP TABLE IF EXISTS `team_user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `team_user` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `team_id` bigint(20) unsigned NOT NULL, + `user_id` bigint(20) unsigned NOT NULL, + `role` varchar(255) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `team_user_team_id_user_id_unique` (`team_id`,`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `team_user` +-- + + +-- +-- Table structure for table `teams` +-- + +DROP TABLE IF EXISTS `teams`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `teams` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL, + `name` varchar(255) NOT NULL, + `personal_team` tinyint(1) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `teams_user_id_index` (`user_id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `teams` +-- + +INSERT INTO `teams` (`id`, `user_id`, `name`, `personal_team`, `created_at`, `updated_at`) VALUES (1,2,'Tom\'s Team',1,'2025-03-25 14:22:59','2025-03-25 14:22:59'),(2,3,'madmonq\'s Team',1,'2025-04-05 13:52:42','2025-04-05 13:52:42'); + +-- +-- Table structure for table `transcriptions` +-- + +DROP TABLE IF EXISTS `transcriptions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transcriptions` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `video_id` int(11) NOT NULL, + `filename` varchar(128) NOT NULL, + `transcription_start` datetime DEFAULT current_timestamp(), + `transcription_finish` datetime DEFAULT NULL, + `updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `video_id` (`video_id`), + CONSTRAINT `transcriptions_ibfk_1` FOREIGN KEY (`video_id`) REFERENCES `videos` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=1849 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transcriptions` +-- + +INSERT INTO `transcriptions` (`id`, `video_id`, `filename`, `transcription_start`, `transcription_finish`, `updated_at`) VALUES (1,978,'transcripts/agraelus/transcript_2410788006.json','2025-03-21 15:23:46','2025-03-26 13:28:22','2025-03-26 13:28:22'),(2,1322,'transcripts/khalamity/transcript_2407832637.json','2025-03-21 15:23:46','2025-03-26 13:28:33','2025-03-26 13:28:33'),(3,980,'transcripts/agraelus/transcript_2408264731.json','2025-03-21 18:38:24','2025-03-26 13:28:22','2025-03-26 13:28:22'),(4,981,'transcripts/agraelus/transcript_2407467379.json','2025-03-21 18:44:37','2025-03-26 13:28:22','2025-03-26 13:28:22'),(5,982,'transcripts/agraelus/transcript_2406687665.json','2025-03-21 18:49:20','2025-03-26 13:28:22','2025-03-26 13:28:22'),(6,983,'transcripts/agraelus/transcript_2405662465.json','2025-03-21 18:58:50','2025-03-26 13:28:22','2025-03-26 13:28:22'),(7,984,'transcripts/agraelus/transcript_2403968067.json','2025-03-21 19:08:25','2025-03-26 13:28:22','2025-03-26 13:28:22'),(8,985,'transcripts/agraelus/transcript_2403131018.json','2025-03-21 19:17:40','2025-03-26 13:28:22','2025-03-26 13:28:22'),(9,986,'transcripts/agraelus/transcript_2402488894.json','2025-03-21 19:20:47','2025-03-26 13:28:22','2025-03-26 13:28:22'),(10,987,'transcripts/agraelus/transcript_2402343826.json','2025-03-21 19:20:47','2025-03-26 13:28:22','2025-03-26 13:28:22'),(11,999,'transcripts/astatoro/transcript_2410595939.json','2025-03-21 19:20:47','2025-03-26 13:28:22','2025-03-26 13:28:22'),(12,1000,'transcripts/astatoro/transcript_2409754130.json','2025-03-21 19:20:50','2025-03-26 13:28:22','2025-03-26 13:28:22'),(13,1001,'transcripts/astatoro/transcript_2408916224.json','2025-03-21 19:20:50','2025-03-26 13:28:22','2025-03-26 13:28:22'),(14,1002,'transcripts/astatoro/transcript_2408094896.json','2025-03-21 19:21:01','2025-03-26 13:28:22','2025-03-26 13:28:22'),(15,1003,'transcripts/astatoro/transcript_2405440755.json','2025-03-21 19:21:14','2025-03-26 13:28:22','2025-03-26 13:28:22'),(16,1004,'transcripts/astatoro/transcript_2403690361.json','2025-03-21 19:21:45','2025-03-26 13:28:22','2025-03-26 13:28:22'),(21,1005,'transcripts/astatoro/transcript_2402920869.json','2025-03-21 19:46:38','2025-03-26 13:28:22','2025-03-26 13:28:22'),(23,1006,'transcripts/astatoro/transcript_2402106602.json','2025-03-21 20:11:40','2025-03-26 13:28:22','2025-03-26 13:28:22'),(24,1007,'transcripts/claina/transcript_2410623973.json','2025-03-21 20:11:53','2025-03-26 13:28:22','2025-03-26 13:28:22'),(25,1008,'transcripts/claina/transcript_2409737143.json','2025-03-21 20:19:40','2025-03-26 13:28:22','2025-03-26 13:28:22'),(26,1009,'transcripts/claina/transcript_2408912503.json','2025-03-21 20:25:32','2025-03-26 13:28:22','2025-03-26 13:28:22'),(27,1178,'transcripts/forsen/transcript_2410639353.json','2025-03-21 20:30:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(28,1010,'transcripts/claina/transcript_2408085019.json','2025-03-21 20:33:46','2025-03-26 13:28:22','2025-03-26 13:28:22'),(29,1011,'transcripts/claina/transcript_2404572189.json','2025-03-21 20:42:16','2025-03-26 13:28:22','2025-03-26 13:28:22'),(30,1179,'transcripts/forsen/transcript_2409795400.json','2025-03-21 20:50:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(31,1012,'transcripts/claina/transcript_2403744006.json','2025-03-21 20:50:20','2025-03-26 13:28:22','2025-03-26 13:28:22'),(32,1013,'transcripts/claina/transcript_2402908265.json','2025-03-21 21:01:49','2025-03-26 13:28:23','2025-03-26 13:28:23'),(33,1014,'transcripts/claina/transcript_2402089929.json','2025-03-21 21:08:39','2025-03-26 13:28:23','2025-03-26 13:28:23'),(34,1180,'transcripts/forsen/transcript_2408964336.json','2025-03-21 21:10:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(35,1015,'transcripts/patrikturi/transcript_2410439186.json','2025-03-21 21:18:25','2025-03-26 13:28:23','2025-03-26 13:28:23'),(36,1181,'transcripts/forsen/transcript_2408137981.json','2025-03-21 21:30:03','2025-03-26 13:28:28','2025-03-26 13:28:28'),(37,1182,'transcripts/forsen/transcript_2407354814.json','2025-03-21 21:49:59','2025-03-26 13:28:28','2025-03-26 13:28:28'),(38,1016,'transcripts/patrikturi/transcript_2409604505.json','2025-03-21 22:05:18','2025-03-26 13:28:23','2025-03-26 13:28:23'),(39,1183,'transcripts/forsen/transcript_2407307003.json','2025-03-21 22:10:22','2025-03-26 13:28:28','2025-03-26 13:28:28'),(40,1184,'transcripts/forsen/transcript_2406381418.json','2025-03-21 22:11:07','2025-03-26 13:28:28','2025-03-26 13:28:28'),(41,1185,'transcripts/forsen/transcript_2404625437.json','2025-03-21 22:20:39','2025-03-26 13:28:28','2025-03-26 13:28:28'),(42,1186,'transcripts/forsen/transcript_2403803534.json','2025-03-21 22:40:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(43,1017,'transcripts/patrikturi/transcript_2408778092.json','2025-03-21 22:51:36','2025-03-26 13:28:23','2025-03-26 13:28:23'),(44,1187,'transcripts/forsen/transcript_2402968787.json','2025-03-21 23:10:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(45,1188,'transcripts/forsen/transcript_2402143711.json','2025-03-21 23:30:03','2025-03-26 13:28:28','2025-03-26 13:28:28'),(46,1189,'transcripts/kuruhs/transcript_2410701349.json','2025-03-21 23:40:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(47,1018,'transcripts/patrikturi/transcript_2407947411.json','2025-03-21 23:40:27','2025-03-26 13:28:23','2025-03-26 13:28:23'),(48,1190,'transcripts/kuruhs/transcript_2410673099.json','2025-03-22 00:00:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(49,1191,'transcripts/kuruhs/transcript_2409151341.json','2025-03-22 00:01:49','2025-03-26 13:28:28','2025-03-26 13:28:28'),(50,1192,'transcripts/kuruhs/transcript_2408997099.json','2025-03-22 00:10:01','2025-03-26 13:28:28','2025-03-26 13:28:28'),(51,1019,'transcripts/patrikturi/transcript_2407068009.json','2025-03-22 00:29:46','2025-03-26 13:28:23','2025-03-26 13:28:23'),(52,1193,'transcripts/kuruhs/transcript_2408177957.json','2025-03-22 00:30:03','2025-03-26 13:28:28','2025-03-26 13:28:28'),(53,1194,'transcripts/kuruhs/transcript_2406442569.json','2025-03-22 00:48:08','2025-03-26 13:28:28','2025-03-26 13:28:28'),(54,1020,'transcripts/patrikturi/transcript_2406151333.json','2025-03-22 01:04:51','2025-03-26 13:28:23','2025-03-26 13:28:23'),(55,1195,'transcripts/kuruhs/transcript_2405508744.json','2025-03-22 01:10:03','2025-03-26 13:28:28','2025-03-26 13:28:28'),(56,1196,'transcripts/kuruhs/transcript_2404683443.json','2025-03-22 01:30:03','2025-03-26 13:28:28','2025-03-26 13:28:28'),(57,1021,'transcripts/patrikturi/transcript_2405428473.json','2025-03-22 01:41:11','2025-03-26 13:28:23','2025-03-26 13:28:23'),(58,1022,'transcripts/patrikturi/transcript_2405266393.json','2025-03-22 01:42:31','2025-03-26 13:28:23','2025-03-26 13:28:23'),(59,1197,'transcripts/kuruhs/transcript_2403836837.json','2025-03-22 01:50:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(60,1198,'transcripts/kuruhs/transcript_2403001833.json','2025-03-22 02:10:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(61,1023,'transcripts/patrikturi/transcript_2403613132.json','2025-03-22 02:18:10','2025-03-26 13:28:23','2025-03-26 13:28:23'),(62,1199,'transcripts/kuruhs/transcript_2402197813.json','2025-03-22 02:40:04','2025-03-26 13:28:28','2025-03-26 13:28:28'),(63,1024,'transcripts/patrikturi/transcript_2402765784.json','2025-03-22 03:03:03','2025-03-26 13:28:23','2025-03-26 13:28:23'),(64,1200,'transcripts/paoloidolo/transcript_2410536323.json','2025-03-22 03:10:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(65,1025,'transcripts/patrikturi/transcript_2401963518.json','2025-03-22 03:16:15','2025-03-26 13:28:23','2025-03-26 13:28:23'),(66,1026,'transcripts/flyguncz/transcript_2410753007.json','2025-03-22 03:16:15','2025-03-26 13:28:23','2025-03-26 13:28:23'),(67,1201,'transcripts/paoloidolo/transcript_2409663786.json','2025-03-22 03:32:44','2025-03-26 13:28:29','2025-03-26 13:28:29'),(68,1027,'transcripts/flyguncz/transcript_2409924816.json','2025-03-22 03:35:12','2025-03-26 13:28:23','2025-03-26 13:28:23'),(69,1028,'transcripts/flyguncz/transcript_2409069940.json','2025-03-22 03:35:12','2025-03-26 13:28:23','2025-03-26 13:28:23'),(70,1202,'transcripts/paoloidolo/transcript_2408591453.json','2025-03-22 03:38:15','2025-03-26 13:28:29','2025-03-26 13:28:29'),(71,1203,'transcripts/paoloidolo/transcript_2408472853.json','2025-03-22 03:43:51','2025-03-26 13:28:29','2025-03-26 13:28:29'),(72,1204,'transcripts/paoloidolo/transcript_2408168859.json','2025-03-22 03:50:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(73,1029,'transcripts/flyguncz/transcript_2408430271.json','2025-03-22 03:53:09','2025-03-26 13:28:23','2025-03-26 13:28:23'),(74,1030,'transcripts/flyguncz/transcript_2408261318.json','2025-03-22 04:04:43','2025-03-26 13:28:23','2025-03-26 13:28:23'),(75,1205,'transcripts/paoloidolo/transcript_2408073220.json','2025-03-22 04:07:53','2025-03-26 13:28:29','2025-03-26 13:28:29'),(76,1031,'transcripts/flyguncz/transcript_2405601024.json','2025-03-22 04:16:57','2025-03-26 13:28:23','2025-03-26 13:28:23'),(77,1206,'transcripts/paoloidolo/transcript_2408046967.json','2025-03-22 04:17:01','2025-03-26 13:28:29','2025-03-26 13:28:29'),(78,1207,'transcripts/paoloidolo/transcript_2406274665.json','2025-03-22 04:17:36','2025-03-26 13:28:29','2025-03-26 13:28:29'),(79,1208,'transcripts/paoloidolo/transcript_2404538267.json','2025-03-22 04:30:04','2025-03-26 13:28:29','2025-03-26 13:28:29'),(80,1032,'transcripts/flyguncz/transcript_2404762653.json','2025-03-22 04:31:59','2025-03-26 13:28:23','2025-03-26 13:28:23'),(81,1209,'transcripts/paoloidolo/transcript_2403773844.json','2025-03-22 04:32:43','2025-03-26 13:28:29','2025-03-26 13:28:29'),(82,1210,'transcripts/paoloidolo/transcript_2403698577.json','2025-03-22 04:32:48','2025-03-26 13:28:29','2025-03-26 13:28:29'),(83,1211,'transcripts/paoloidolo/transcript_2403269082.json','2025-03-22 04:34:51','2025-03-26 13:28:29','2025-03-26 13:28:29'),(84,1033,'transcripts/flyguncz/transcript_2404251432.json','2025-03-22 04:43:36','2025-03-26 13:28:23','2025-03-26 13:28:23'),(85,1034,'transcripts/flyguncz/transcript_2403930997.json','2025-03-22 04:46:18','2025-03-26 13:28:23','2025-03-26 13:28:23'),(86,1212,'transcripts/paoloidolo/transcript_2403064051.json','2025-03-22 04:50:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(87,1213,'transcripts/paoloidolo/transcript_2402891657.json','2025-03-22 04:53:33','2025-03-26 13:28:29','2025-03-26 13:28:29'),(88,1035,'transcripts/flyguncz/transcript_2403079691.json','2025-03-22 05:03:35','2025-03-26 13:28:23','2025-03-26 13:28:23'),(89,1214,'transcripts/paoloidolo/transcript_2402017638.json','2025-03-22 05:10:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(90,1036,'transcripts/flyguncz/transcript_2402259509.json','2025-03-22 05:20:25','2025-03-26 13:28:23','2025-03-26 13:28:23'),(91,1037,'transcripts/herdyn/transcript_2410765749.json','2025-03-22 05:20:34','2025-03-26 13:28:23','2025-03-26 13:28:23'),(92,1038,'transcripts/herdyn/transcript_2409896161.json','2025-03-22 05:32:53','2025-03-26 13:28:23','2025-03-26 13:28:23'),(93,1039,'transcripts/herdyn/transcript_2407455249.json','2025-03-22 05:38:02','2025-03-26 13:28:23','2025-03-26 13:28:23'),(94,1040,'transcripts/herdyn/transcript_2406577327.json','2025-03-22 05:47:49','2025-03-26 13:28:23','2025-03-26 13:28:23'),(95,1041,'transcripts/herdyn/transcript_2404721934.json','2025-03-22 05:59:10','2025-03-26 13:28:24','2025-03-26 13:28:24'),(96,1042,'transcripts/herdyn/transcript_2403940129.json','2025-03-22 06:08:22','2025-03-26 13:28:24','2025-03-26 13:28:24'),(97,1216,'transcripts/39daph/transcript_2409583927.json','2025-03-22 06:20:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(98,1043,'transcripts/herdyn/transcript_2403078665.json','2025-03-22 06:20:48','2025-03-26 13:28:24','2025-03-26 13:28:24'),(99,1044,'transcripts/herdyn/transcript_2402243030.json','2025-03-22 06:37:58','2025-03-26 13:28:24','2025-03-26 13:28:24'),(100,1045,'transcripts/spajkk/transcript_2410584970.json','2025-03-22 06:37:58','2025-03-26 13:28:24','2025-03-26 13:28:24'),(101,1046,'transcripts/spajkk/transcript_2409863015.json','2025-03-22 06:57:12','2025-03-26 13:28:24','2025-03-26 13:28:24'),(102,1217,'transcripts/39daph/transcript_2408741608.json','2025-03-22 07:00:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(103,1047,'transcripts/spajkk/transcript_2408935358.json','2025-03-22 07:21:02','2025-03-26 13:28:24','2025-03-26 13:28:24'),(104,1218,'transcripts/39daph/transcript_2407937496.json','2025-03-22 07:40:04','2025-03-26 13:28:29','2025-03-26 13:28:29'),(105,1048,'transcripts/spajkk/transcript_2408194034.json','2025-03-22 07:49:36','2025-03-26 13:28:24','2025-03-26 13:28:24'),(106,1049,'transcripts/spajkk/transcript_2407161878.json','2025-03-22 08:06:17','2025-03-26 13:28:24','2025-03-26 13:28:24'),(107,1219,'transcripts/39daph/transcript_2407024613.json','2025-03-22 08:30:04','2025-03-26 13:28:29','2025-03-26 13:28:29'),(108,1050,'transcripts/spajkk/transcript_2406326029.json','2025-03-22 08:34:23','2025-03-26 13:28:24','2025-03-26 13:28:24'),(109,1220,'transcripts/39daph/transcript_2406064275.json','2025-03-22 09:00:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(110,1051,'transcripts/spajkk/transcript_2405343269.json','2025-03-22 09:03:29','2025-03-26 13:28:24','2025-03-26 13:28:24'),(111,1052,'transcripts/spajkk/transcript_2404644422.json','2025-03-22 09:24:38','2025-03-26 13:28:24','2025-03-26 13:28:24'),(112,1221,'transcripts/39daph/transcript_2404325923.json','2025-03-22 09:30:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(113,1053,'transcripts/spajkk/transcript_2403732468.json','2025-03-22 09:51:30','2025-03-26 13:28:24','2025-03-26 13:28:24'),(114,1222,'transcripts/39daph/transcript_2403581339.json','2025-03-22 10:00:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(115,1054,'transcripts/spajkk/transcript_2402881466.json','2025-03-22 10:22:58','2025-03-26 13:28:24','2025-03-26 13:28:24'),(116,1223,'transcripts/39daph/transcript_2402723741.json','2025-03-22 10:40:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(117,1055,'transcripts/spajkk/transcript_2402164323.json','2025-03-22 10:49:50','2025-03-26 13:28:24','2025-03-26 13:28:24'),(118,1056,'transcripts/bladeito/transcript_2408103233.json','2025-03-22 10:49:50','2025-03-26 13:28:24','2025-03-26 13:28:24'),(119,1224,'transcripts/39daph/transcript_2401867134.json','2025-03-22 11:10:04','2025-03-26 13:28:29','2025-03-26 13:28:29'),(120,1057,'transcripts/bladeito/transcript_2407157866.json','2025-03-22 11:15:21','2025-03-26 13:28:25','2025-03-26 13:28:25'),(121,1225,'transcripts/sodapoppin/transcript_2410694896.json','2025-03-22 11:50:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(122,1058,'transcripts/bladeito/transcript_2406240959.json','2025-03-22 11:58:38','2025-03-26 13:28:25','2025-03-26 13:28:25'),(123,1226,'transcripts/sodapoppin/transcript_2409875692.json','2025-03-22 12:30:03','2025-03-26 13:28:29','2025-03-26 13:28:29'),(124,1059,'transcripts/bladeito/transcript_2405408217.json','2025-03-22 12:46:47','2025-03-26 13:28:25','2025-03-26 13:28:25'),(125,1060,'transcripts/bladeito/transcript_2402924375.json','2025-03-22 12:51:34','2025-03-26 13:28:25','2025-03-26 13:28:25'),(126,1227,'transcripts/sodapoppin/transcript_2409037964.json','2025-03-22 13:10:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(127,1061,'transcripts/bladeito/transcript_2402037056.json','2025-03-22 13:13:40','2025-03-26 13:28:25','2025-03-26 13:28:25'),(128,1062,'transcripts/marty_vole/transcript_2410708509.json','2025-03-22 13:13:40','2025-03-26 13:28:25','2025-03-26 13:28:25'),(129,1063,'transcripts/marty_vole/transcript_2410487415.json','2025-03-22 13:25:24','2025-03-26 13:28:25','2025-03-26 13:28:25'),(130,1064,'transcripts/marty_vole/transcript_2409915735.json','2025-03-22 13:34:55','2025-03-26 13:28:25','2025-03-26 13:28:25'),(131,1065,'transcripts/marty_vole/transcript_2409633728.json','2025-03-22 13:40:30','2025-03-26 13:28:25','2025-03-26 13:28:25'),(132,1066,'transcripts/marty_vole/transcript_2409087881.json','2025-03-22 13:46:29','2025-03-26 13:28:25','2025-03-26 13:28:25'),(133,1067,'transcripts/marty_vole/transcript_2408817981.json','2025-03-22 13:52:28','2025-03-26 13:28:25','2025-03-26 13:28:25'),(134,1068,'transcripts/marty_vole/transcript_2408244354.json','2025-03-22 13:58:57','2025-03-26 13:28:25','2025-03-26 13:28:25'),(135,1228,'transcripts/sodapoppin/transcript_2408209480.json','2025-03-22 14:00:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(136,1069,'transcripts/marty_vole/transcript_2407998555.json','2025-03-22 14:06:52','2025-03-26 13:28:25','2025-03-26 13:28:25'),(137,1070,'transcripts/marty_vole/transcript_2407365813.json','2025-03-22 14:17:16','2025-03-26 13:28:25','2025-03-26 13:28:25'),(138,1071,'transcripts/marty_vole/transcript_2406475284.json','2025-03-22 14:23:53','2025-03-26 13:28:25','2025-03-26 13:28:25'),(139,1072,'transcripts/marty_vole/transcript_2406169159.json','2025-03-22 14:28:26','2025-03-26 13:28:25','2025-03-26 13:28:25'),(140,1229,'transcripts/sodapoppin/transcript_2407371379.json','2025-03-22 14:40:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(141,1073,'transcripts/marty_vole/transcript_2405562834.json','2025-03-22 14:40:17','2025-03-26 13:28:25','2025-03-26 13:28:25'),(142,1074,'transcripts/marty_vole/transcript_2405297963.json','2025-03-22 14:47:58','2025-03-26 13:28:25','2025-03-26 13:28:25'),(143,1075,'transcripts/marty_vole/transcript_2404709558.json','2025-03-22 14:54:12','2025-03-26 13:28:25','2025-03-26 13:28:25'),(144,1076,'transcripts/marty_vole/transcript_2404472980.json','2025-03-22 15:01:11','2025-03-26 13:28:25','2025-03-26 13:28:25'),(145,1077,'transcripts/marty_vole/transcript_2403965024.json','2025-03-22 15:06:33','2025-03-26 13:28:25','2025-03-26 13:28:25'),(146,1078,'transcripts/marty_vole/transcript_2403919055.json','2025-03-22 15:10:39','2025-03-26 13:28:25','2025-03-26 13:28:25'),(147,1079,'transcripts/marty_vole/transcript_2403668525.json','2025-03-22 15:12:38','2025-03-26 13:28:25','2025-03-26 13:28:25'),(148,1080,'transcripts/marty_vole/transcript_2402999648.json','2025-03-22 15:17:30','2025-03-26 13:28:25','2025-03-26 13:28:25'),(149,1081,'transcripts/marty_vole/transcript_2402824504.json','2025-03-22 15:26:21','2025-03-26 13:28:25','2025-03-26 13:28:25'),(150,1230,'transcripts/sodapoppin/transcript_2405473945.json','2025-03-22 15:30:39','2025-03-26 13:28:30','2025-03-26 13:28:30'),(151,1082,'transcripts/marty_vole/transcript_2402174706.json','2025-03-22 15:34:00','2025-03-26 13:28:25','2025-03-26 13:28:25'),(152,1083,'transcripts/andrej_kalinin/transcript_2410851639.json','2025-03-22 15:34:00','2025-03-26 13:28:25','2025-03-26 13:28:25'),(153,1084,'transcripts/andrej_kalinin/transcript_2410013553.json','2025-03-22 15:44:05','2025-03-26 13:28:25','2025-03-26 13:28:25'),(154,1085,'transcripts/andrej_kalinin/transcript_2409176394.json','2025-03-22 15:49:43','2025-03-26 13:28:25','2025-03-26 13:28:25'),(155,1086,'transcripts/andrej_kalinin/transcript_2408350794.json','2025-03-22 16:01:23','2025-03-26 13:28:25','2025-03-26 13:28:25'),(156,1087,'transcripts/andrej_kalinin/transcript_2407550082.json','2025-03-22 16:05:58','2025-03-26 13:28:26','2025-03-26 13:28:26'),(157,1088,'transcripts/andrej_kalinin/transcript_2406565089.json','2025-03-22 16:17:22','2025-03-26 13:28:26','2025-03-26 13:28:26'),(158,1215,'transcripts/39daph/transcript_2410410535.json','2025-03-22 16:20:04','2025-03-26 13:28:29','2025-03-26 13:28:29'),(159,1089,'transcripts/andrej_kalinin/transcript_2405692042.json','2025-03-22 16:21:59','2025-03-26 13:28:26','2025-03-26 13:28:26'),(160,1090,'transcripts/andrej_kalinin/transcript_2404844311.json','2025-03-22 16:38:28','2025-03-26 13:28:26','2025-03-26 13:28:26'),(161,1091,'transcripts/andrej_kalinin/transcript_2403182252.json','2025-03-22 16:48:44','2025-03-26 13:28:26','2025-03-26 13:28:26'),(162,1092,'transcripts/andrej_kalinin/transcript_2402354842.json','2025-03-22 16:54:29','2025-03-26 13:28:26','2025-03-26 13:28:26'),(163,1093,'transcripts/domovnikofc/transcript_2410735905.json','2025-03-22 16:54:29','2025-03-26 13:28:26','2025-03-26 13:28:26'),(164,1232,'transcripts/sodapoppin/transcript_2403845796.json','2025-03-22 17:00:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(165,1094,'transcripts/domovnikofc/transcript_2409899545.json','2025-03-22 17:24:04','2025-03-26 13:28:26','2025-03-26 13:28:26'),(166,1233,'transcripts/sodapoppin/transcript_2402233974.json','2025-03-22 17:40:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(167,1095,'transcripts/domovnikofc/transcript_2408270318.json','2025-03-22 17:48:00','2025-03-26 13:28:26','2025-03-26 13:28:26'),(168,1234,'transcripts/nymn/transcript_2410545230.json','2025-03-22 18:00:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(169,1096,'transcripts/domovnikofc/transcript_2407393950.json','2025-03-22 18:13:01','2025-03-26 13:28:26','2025-03-26 13:28:26'),(170,1235,'transcripts/nymn/transcript_2409650748.json','2025-03-22 18:14:22','2025-03-26 13:28:30','2025-03-26 13:28:30'),(171,1097,'transcripts/domovnikofc/transcript_2406472951.json','2025-03-22 18:29:55','2025-03-26 13:28:26','2025-03-26 13:28:26'),(172,1236,'transcripts/nymn/transcript_2408051500.json','2025-03-22 18:30:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(173,1237,'transcripts/nymn/transcript_2407193141.json','2025-03-22 18:50:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(174,1238,'transcripts/nymn/transcript_2406360698.json','2025-03-22 19:08:44','2025-03-26 13:28:30','2025-03-26 13:28:30'),(175,1098,'transcripts/domovnikofc/transcript_2405486044.json','2025-03-22 19:09:48','2025-03-26 13:28:26','2025-03-26 13:28:26'),(176,1239,'transcripts/nymn/transcript_2405367168.json','2025-03-22 19:30:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(177,1099,'transcripts/domovnikofc/transcript_2404801582.json','2025-03-22 19:46:42','2025-03-26 13:28:26','2025-03-26 13:28:26'),(178,1240,'transcripts/nymn/transcript_2404543578.json','2025-03-22 19:47:28','2025-03-26 13:28:30','2025-03-26 13:28:30'),(179,1100,'transcripts/domovnikofc/transcript_2403850250.json','2025-03-22 19:54:17','2025-03-26 13:28:26','2025-03-26 13:28:26'),(180,1101,'transcripts/domovnikofc/transcript_2403078954.json','2025-03-22 20:10:01','2025-03-26 13:28:26','2025-03-26 13:28:26'),(181,1241,'transcripts/nymn/transcript_2403706005.json','2025-03-22 20:10:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(182,1242,'transcripts/nymn/transcript_2402076333.json','2025-03-22 20:27:43','2025-03-26 13:28:30','2025-03-26 13:28:30'),(183,1102,'transcripts/domovnikofc/transcript_2402181623.json','2025-03-22 20:28:37','2025-03-26 13:28:26','2025-03-26 13:28:26'),(184,1111,'transcripts/jorantheviking/transcript_2410503073.json','2025-03-22 20:28:37','2025-03-26 13:28:26','2025-03-26 13:28:26'),(185,1243,'transcripts/knut/transcript_2410795791.json','2025-03-22 20:40:15','2025-03-26 13:28:30','2025-03-26 13:28:30'),(186,1112,'transcripts/jorantheviking/transcript_2409686910.json','2025-03-22 20:59:16','2025-03-26 13:28:26','2025-03-26 13:28:26'),(187,1113,'transcripts/jorantheviking/transcript_2407206175.json','2025-03-22 21:10:52','2025-03-26 13:28:26','2025-03-26 13:28:26'),(188,1114,'transcripts/jorantheviking/transcript_2405317076.json','2025-03-22 21:19:31','2025-03-26 13:28:26','2025-03-26 13:28:26'),(189,1244,'transcripts/knut/transcript_2409865937.json','2025-03-22 21:30:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(190,1115,'transcripts/mullersie/transcript_2410523205.json','2025-03-22 21:31:03','2025-03-26 13:28:26','2025-03-26 13:28:26'),(191,1245,'transcripts/knut/transcript_2409028832.json','2025-03-22 22:10:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(192,1116,'transcripts/mullersie/transcript_2408990377.json','2025-03-22 22:13:53','2025-03-26 13:28:26','2025-03-26 13:28:26'),(193,1117,'transcripts/mullersie/transcript_2407289196.json','2025-03-22 22:23:04','2025-03-26 13:28:26','2025-03-26 13:28:26'),(194,1118,'transcripts/mullersie/transcript_2406297945.json','2025-03-22 22:38:12','2025-03-26 13:28:26','2025-03-26 13:28:26'),(195,1119,'transcripts/mullersie/transcript_2405369095.json','2025-03-22 22:48:20','2025-03-26 13:28:27','2025-03-26 13:28:27'),(196,1246,'transcripts/knut/transcript_2408177350.json','2025-03-22 22:50:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(197,1120,'transcripts/mullersie/transcript_2404559075.json','2025-03-22 23:15:12','2025-03-26 13:28:27','2025-03-26 13:28:27'),(198,1121,'transcripts/mullersie/transcript_2403668784.json','2025-03-22 23:30:15','2025-03-26 13:28:27','2025-03-26 13:28:27'),(199,1247,'transcripts/knut/transcript_2407387577.json','2025-03-22 23:50:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(200,1122,'transcripts/mullersie/transcript_2402879492.json','2025-03-22 23:55:22','2025-03-26 13:28:27','2025-03-26 13:28:27'),(201,1123,'transcripts/mullersie/transcript_2402105816.json','2025-03-23 00:08:01','2025-03-26 13:28:27','2025-03-26 13:28:27'),(202,1124,'transcripts/avatar0fwar/transcript_2410614960.json','2025-03-23 00:08:01','2025-03-26 13:28:27','2025-03-26 13:28:27'),(203,1125,'transcripts/avatar0fwar/transcript_2409022443.json','2025-03-23 00:24:51','2025-03-26 13:28:27','2025-03-26 13:28:27'),(204,1248,'transcripts/knut/transcript_2406453658.json','2025-03-23 00:40:03','2025-03-26 13:28:30','2025-03-26 13:28:30'),(205,1126,'transcripts/heddi2k/transcript_2410778607.json','2025-03-23 00:43:44','2025-03-26 13:28:27','2025-03-26 13:28:27'),(206,1127,'transcripts/heddi2k/transcript_2409928533.json','2025-03-23 01:01:47','2025-03-26 13:28:27','2025-03-26 13:28:27'),(207,1128,'transcripts/heddi2k/transcript_2409093882.json','2025-03-23 01:06:16','2025-03-26 13:28:27','2025-03-26 13:28:27'),(208,1249,'transcripts/knut/transcript_2405478235.json','2025-03-23 01:10:04','2025-03-26 13:28:30','2025-03-26 13:28:30'),(209,1129,'transcripts/heddi2k/transcript_2408247164.json','2025-03-23 01:33:06','2025-03-26 13:28:27','2025-03-26 13:28:27'),(210,1130,'transcripts/heddi2k/transcript_2407558423.json','2025-03-23 01:39:10','2025-03-26 13:28:27','2025-03-26 13:28:27'),(211,1131,'transcripts/heddi2k/transcript_2406533534.json','2025-03-23 01:55:09','2025-03-26 13:28:27','2025-03-26 13:28:27'),(212,1132,'transcripts/heddi2k/transcript_2405616291.json','2025-03-23 01:57:16','2025-03-26 13:28:27','2025-03-26 13:28:27'),(213,1133,'transcripts/heddi2k/transcript_2404718979.json','2025-03-23 02:00:52','2025-03-26 13:28:27','2025-03-26 13:28:27'),(214,1134,'transcripts/heddi2k/transcript_2403922256.json','2025-03-23 02:04:04','2025-03-26 13:28:27','2025-03-26 13:28:27'),(215,1135,'transcripts/heddi2k/transcript_2403100952.json','2025-03-23 02:09:02','2025-03-26 13:28:27','2025-03-26 13:28:27'),(216,1250,'transcripts/knut/transcript_2404647796.json','2025-03-23 02:10:40','2025-03-26 13:28:31','2025-03-26 13:28:31'),(217,1136,'transcripts/heddi2k/transcript_2402527179.json','2025-03-23 02:31:48','2025-03-26 13:28:27','2025-03-26 13:28:27'),(218,1137,'transcripts/heddi2k/transcript_2402254791.json','2025-03-23 02:36:34','2025-03-26 13:28:27','2025-03-26 13:28:27'),(219,1138,'transcripts/vvudy/transcript_2410487549.json','2025-03-23 02:36:35','2025-03-26 13:28:27','2025-03-26 13:28:27'),(220,1139,'transcripts/vvudy/transcript_2409670099.json','2025-03-23 02:40:11','2025-03-26 13:28:27','2025-03-26 13:28:27'),(221,1140,'transcripts/vvudy/transcript_2404517143.json','2025-03-23 02:40:11','2025-03-26 13:28:27','2025-03-26 13:28:27'),(222,1141,'transcripts/vvudy/transcript_2402143929.json','2025-03-23 02:42:34','2025-03-26 13:28:27','2025-03-26 13:28:27'),(223,1142,'transcripts/himtheoldboy/transcript_2410564551.json','2025-03-23 02:54:43','2025-03-26 13:28:27','2025-03-26 13:28:27'),(224,1251,'transcripts/knut/transcript_2402937268.json','2025-03-23 03:10:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(225,1143,'transcripts/himtheoldboy/transcript_2408191739.json','2025-03-23 03:20:53','2025-03-26 13:28:27','2025-03-26 13:28:27'),(226,1144,'transcripts/himtheoldboy/transcript_2407193818.json','2025-03-23 03:31:57','2025-03-26 13:28:27','2025-03-26 13:28:27'),(227,1145,'transcripts/himtheoldboy/transcript_2404577745.json','2025-03-23 03:42:58','2025-03-26 13:28:27','2025-03-26 13:28:27'),(228,1146,'transcripts/himtheoldboy/transcript_2403715145.json','2025-03-23 03:47:51','2025-03-26 13:28:27','2025-03-26 13:28:27'),(229,1252,'transcripts/knut/transcript_2402233475.json','2025-03-23 04:00:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(230,1147,'transcripts/himtheoldboy/transcript_2402200628.json','2025-03-23 04:04:20','2025-03-26 13:28:27','2025-03-26 13:28:27'),(231,1148,'transcripts/fluffcz/transcript_2410588355.json','2025-03-23 04:04:20','2025-03-26 13:28:27','2025-03-26 13:28:27'),(232,1149,'transcripts/fluffcz/transcript_2409907446.json','2025-03-23 04:22:11','2025-03-26 13:28:27','2025-03-26 13:28:27'),(233,1150,'transcripts/fluffcz/transcript_2409048071.json','2025-03-23 04:30:13','2025-03-26 13:28:27','2025-03-26 13:28:27'),(234,1151,'transcripts/fluffcz/transcript_2408225391.json','2025-03-23 04:45:42','2025-03-26 13:28:28','2025-03-26 13:28:28'),(235,1254,'transcripts/nmplol/transcript_2402105145.json','2025-03-23 04:50:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(236,1152,'transcripts/fluffcz/transcript_2406330521.json','2025-03-23 04:59:11','2025-03-26 13:28:28','2025-03-26 13:28:28'),(237,1255,'transcripts/rachtaz/transcript_2410650028.json','2025-03-23 05:01:08','2025-03-26 13:28:31','2025-03-26 13:28:31'),(238,1256,'transcripts/rachtaz/transcript_2409843447.json','2025-03-23 05:01:08','2025-03-26 13:28:31','2025-03-26 13:28:31'),(239,1257,'transcripts/rachtaz/transcript_2408985175.json','2025-03-23 05:01:10','2025-03-26 13:28:31','2025-03-26 13:28:31'),(240,1258,'transcripts/rachtaz/transcript_2408161459.json','2025-03-23 05:01:15','2025-03-26 13:28:31','2025-03-26 13:28:31'),(241,1259,'transcripts/rachtaz/transcript_2407344344.json','2025-03-23 05:01:15','2025-03-26 13:28:31','2025-03-26 13:28:31'),(242,1260,'transcripts/rachtaz/transcript_2406411770.json','2025-03-23 05:01:19','2025-03-26 13:28:31','2025-03-26 13:28:31'),(243,1261,'transcripts/rachtaz/transcript_2405537672.json','2025-03-23 05:01:22','2025-03-26 13:28:31','2025-03-26 13:28:31'),(244,1262,'transcripts/rachtaz/transcript_2404677219.json','2025-03-23 05:01:22','2025-03-26 13:28:31','2025-03-26 13:28:31'),(245,1263,'transcripts/rachtaz/transcript_2403912270.json','2025-03-23 05:01:22','2025-03-26 13:28:31','2025-03-26 13:28:31'),(246,1264,'transcripts/rachtaz/transcript_2402963124.json','2025-03-23 05:01:26','2025-03-26 13:28:31','2025-03-26 13:28:31'),(247,1265,'transcripts/rachtaz/transcript_2402159761.json','2025-03-23 05:02:00','2025-03-26 13:28:31','2025-03-26 13:28:31'),(248,1153,'transcripts/fluffcz/transcript_2404915890.json','2025-03-23 05:04:40','2025-03-26 13:28:28','2025-03-26 13:28:28'),(249,1154,'transcripts/fluffcz/transcript_2404835771.json','2025-03-23 05:06:21','2025-03-26 13:28:28','2025-03-26 13:28:28'),(250,1266,'transcripts/pawkt/transcript_2410589875.json','2025-03-23 05:10:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(251,1155,'transcripts/fluffcz/transcript_2404457035.json','2025-03-23 05:10:46','2025-03-26 13:28:28','2025-03-26 13:28:28'),(252,1156,'transcripts/fluffcz/transcript_2403944321.json','2025-03-23 05:23:39','2025-03-26 13:28:28','2025-03-26 13:28:28'),(253,1267,'transcripts/pawkt/transcript_2409922322.json','2025-03-23 05:24:16','2025-03-26 13:28:31','2025-03-26 13:28:31'),(254,1268,'transcripts/pawkt/transcript_2409879471.json','2025-03-23 05:30:03','2025-03-26 13:28:31','2025-03-26 13:28:31'),(255,1157,'transcripts/fluffcz/transcript_2402981466.json','2025-03-23 05:31:08','2025-03-26 13:28:28','2025-03-26 13:28:28'),(256,1269,'transcripts/pawkt/transcript_2409730498.json','2025-03-23 05:40:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(257,1158,'transcripts/fluffcz/transcript_2402220821.json','2025-03-23 05:45:32','2025-03-26 13:28:28','2025-03-26 13:28:28'),(258,1159,'transcripts/tensterakdary/transcript_2409826284.json','2025-03-23 05:45:53','2025-03-26 13:28:28','2025-03-26 13:28:28'),(259,1160,'transcripts/tensterakdary/transcript_2408989713.json','2025-03-23 05:51:42','2025-03-26 13:28:28','2025-03-26 13:28:28'),(260,1161,'transcripts/tensterakdary/transcript_2408211089.json','2025-03-23 05:57:32','2025-03-26 13:28:28','2025-03-26 13:28:28'),(261,1162,'transcripts/tensterakdary/transcript_2407335926.json','2025-03-23 06:00:46','2025-03-26 13:28:28','2025-03-26 13:28:28'),(262,1163,'transcripts/tensterakdary/transcript_2405500871.json','2025-03-23 06:05:35','2025-03-26 13:28:28','2025-03-26 13:28:28'),(263,1270,'transcripts/pawkt/transcript_2408910049.json','2025-03-23 06:10:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(264,1164,'transcripts/tensterakdary/transcript_2404651580.json','2025-03-23 06:13:09','2025-03-26 13:28:28','2025-03-26 13:28:28'),(265,1165,'transcripts/amfikcz/transcript_2407091826.json','2025-03-23 06:24:35','2025-03-26 13:28:28','2025-03-26 13:28:28'),(266,1271,'transcripts/pawkt/transcript_2408126260.json','2025-03-23 06:30:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(267,1272,'transcripts/pawkt/transcript_2407393368.json','2025-03-23 07:00:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(268,1273,'transcripts/pawkt/transcript_2406376129.json','2025-03-23 07:40:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(269,1274,'transcripts/pawkt/transcript_2405799190.json','2025-03-23 08:00:15','2025-03-26 13:28:31','2025-03-26 13:28:31'),(270,1275,'transcripts/pawkt/transcript_2405263836.json','2025-03-23 08:40:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(271,1276,'transcripts/pawkt/transcript_2404491070.json','2025-03-23 09:10:03','2025-03-26 13:28:31','2025-03-26 13:28:31'),(272,1277,'transcripts/pawkt/transcript_2403752678.json','2025-03-23 09:40:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(273,1278,'transcripts/pawkt/transcript_2402854317.json','2025-03-23 10:10:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(274,1279,'transcripts/wakewilder/transcript_2410811250.json','2025-03-23 10:50:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(275,1280,'transcripts/wakewilder/transcript_2409372560.json','2025-03-23 11:10:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(276,1281,'transcripts/wakewilder/transcript_2408581160.json','2025-03-23 11:30:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(277,1282,'transcripts/wakewilder/transcript_2406878644.json','2025-03-23 11:50:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(278,1253,'transcripts/nmplol/transcript_2403764290.json','2025-03-23 12:10:04','2025-03-26 13:28:31','2025-03-26 13:28:31'),(279,1608,'transcripts/duklock/transcript_6aRKVheZ6Yk.json','2025-03-23 12:25:08','2025-03-23 12:39:04','2025-03-23 12:39:04'),(280,1284,'transcripts/wakewilder/transcript_2401810413.json','2025-03-23 12:30:03','2025-03-26 13:28:32','2025-03-26 13:28:32'),(281,1609,'transcripts/duklock/transcript_ovPOUrJiCcY.json','2025-03-23 12:39:04','2025-03-23 12:53:04','2025-03-23 12:53:04'),(282,1285,'transcripts/vadikus007/transcript_2410514976.json','2025-03-23 12:50:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(283,1286,'transcripts/vadikus007/transcript_2408860882.json','2025-03-23 12:58:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(284,1287,'transcripts/vadikus007/transcript_2408040449.json','2025-03-23 13:10:06','2025-03-26 13:28:32','2025-03-26 13:28:32'),(285,1288,'transcripts/vadikus007/transcript_2407175487.json','2025-03-23 13:15:47','2025-03-26 13:28:32','2025-03-26 13:28:32'),(286,1289,'transcripts/esfandtv/transcript_2410229547.json','2025-03-23 13:40:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(287,1290,'transcripts/esfandtv/transcript_2409000099.json','2025-03-23 14:50:03','2025-03-26 13:28:32','2025-03-26 13:28:32'),(288,1291,'transcripts/esfandtv/transcript_2408431269.json','2025-03-23 15:40:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(289,1292,'transcripts/esfandtv/transcript_2407450224.json','2025-03-23 17:00:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(290,1293,'transcripts/esfandtv/transcript_2406980584.json','2025-03-23 17:30:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(291,1294,'transcripts/esfandtv/transcript_2403049375.json','2025-03-23 18:50:03','2025-03-26 13:28:32','2025-03-26 13:28:32'),(292,1295,'transcripts/esfandtv/transcript_2402467623.json','2025-03-23 19:10:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(293,1296,'transcripts/cooksux/transcript_2410525175.json','2025-03-23 19:40:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(294,1297,'transcripts/cooksux/transcript_2408622436.json','2025-03-23 19:50:03','2025-03-26 13:28:32','2025-03-26 13:28:32'),(295,1298,'transcripts/cooksux/transcript_2403577506.json','2025-03-23 20:30:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(296,1299,'transcripts/cooksux/transcript_2402700750.json','2025-03-23 21:40:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(297,1300,'transcripts/cooksux/transcript_2401981361.json','2025-03-23 22:30:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(298,1301,'transcripts/cooksux/transcript_2401970311.json','2025-03-23 22:51:21','2025-03-26 13:28:32','2025-03-26 13:28:32'),(299,1302,'transcripts/vei/transcript_2408950772.json','2025-03-23 23:00:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(300,1303,'transcripts/vei/transcript_2407291829.json','2025-03-23 23:10:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(301,1304,'transcripts/yabbe/transcript_2410657888.json','2025-03-23 23:30:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(302,1305,'transcripts/yabbe/transcript_2408134738.json','2025-03-23 23:40:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(303,1306,'transcripts/yabbe/transcript_2407318214.json','2025-03-23 23:48:53','2025-03-26 13:28:32','2025-03-26 13:28:32'),(304,1307,'transcripts/yabbe/transcript_2406430606.json','2025-03-24 00:00:15','2025-03-26 13:28:32','2025-03-26 13:28:32'),(305,1308,'transcripts/yabbe/transcript_2405573525.json','2025-03-24 00:10:04','2025-03-26 13:28:32','2025-03-26 13:28:32'),(306,1309,'transcripts/yabbe/transcript_2405475524.json','2025-03-24 00:16:56','2025-03-26 13:28:32','2025-03-26 13:28:32'),(307,1310,'transcripts/yabbe/transcript_2404604614.json','2025-03-24 00:30:04','2025-03-26 13:28:33','2025-03-26 13:28:33'),(308,1311,'transcripts/yabbe/transcript_2402206705.json','2025-03-24 00:40:04','2025-03-26 13:28:33','2025-03-26 13:28:33'),(309,1312,'transcripts/cyr/transcript_2410097602.json','2025-03-24 00:40:26','2025-03-26 13:28:33','2025-03-26 13:28:33'),(310,1313,'transcripts/cyr/transcript_2409324358.json','2025-03-24 00:40:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(311,1314,'transcripts/cyr/transcript_2408427987.json','2025-03-24 00:40:41','2025-03-26 13:28:33','2025-03-26 13:28:33'),(312,1315,'transcripts/cyr/transcript_2407481263.json','2025-03-24 00:40:41','2025-03-26 13:28:33','2025-03-26 13:28:33'),(313,1316,'transcripts/cyr/transcript_2405040947.json','2025-03-24 00:40:41','2025-03-26 13:28:33','2025-03-26 13:28:33'),(314,1317,'transcripts/cyr/transcript_2403909295.json','2025-03-24 00:40:43','2025-03-26 13:28:33','2025-03-26 13:28:33'),(315,1318,'transcripts/cyr/transcript_2403048869.json','2025-03-24 00:40:46','2025-03-26 13:28:33','2025-03-26 13:28:33'),(316,1319,'transcripts/cyr/transcript_2402431404.json','2025-03-24 00:41:16','2025-03-26 13:28:33','2025-03-26 13:28:33'),(317,1320,'transcripts/khalamity/transcript_2410312873.json','2025-03-24 00:41:32','2025-03-26 13:28:33','2025-03-26 13:28:33'),(318,1321,'transcripts/khalamity/transcript_2408665245.json','2025-03-24 00:41:37','2025-03-26 13:28:33','2025-03-26 13:28:33'),(319,1323,'transcripts/khalamity/transcript_2406870894.json','2025-03-24 00:41:39','2025-03-26 13:28:33','2025-03-26 13:28:33'),(320,1324,'transcripts/khalamity/transcript_2406053991.json','2025-03-24 00:42:00','2025-03-26 13:28:33','2025-03-26 13:28:33'),(321,1325,'transcripts/khalamity/transcript_2404341971.json','2025-03-24 00:42:09','2025-03-26 13:28:33','2025-03-26 13:28:33'),(322,1326,'transcripts/khalamity/transcript_2402685286.json','2025-03-24 00:42:13','2025-03-26 13:28:33','2025-03-26 13:28:33'),(323,1327,'transcripts/khalamity/transcript_2401846598.json','2025-03-24 00:42:13','2025-03-26 13:28:33','2025-03-26 13:28:33'),(324,1328,'transcripts/papaplatte/transcript_2409019691.json','2025-03-25 09:42:31','2025-03-26 13:28:33','2025-03-26 13:28:33'),(325,1329,'transcripts/papaplatte/transcript_2407351892.json','2025-03-25 09:53:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(326,1522,'transcripts/claina/transcript_2411415258.json','2025-03-25 10:00:04','2025-03-25 10:08:16','2025-03-25 10:08:16'),(327,1330,'transcripts/papaplatte/transcript_2406442133.json','2025-03-25 10:08:48','2025-03-26 13:28:34','2025-03-26 13:28:34'),(328,1523,'transcripts/patrikturi/transcript_2411281027.json','2025-03-25 10:21:11','2025-03-25 11:16:33','2025-03-25 11:16:33'),(329,1331,'transcripts/papaplatte/transcript_2406353473.json','2025-03-25 10:22:25','2025-03-26 13:28:34','2025-03-26 13:28:34'),(330,1332,'transcripts/papaplatte/transcript_2405519379.json','2025-03-25 10:28:35','2025-03-26 13:28:34','2025-03-26 13:28:34'),(331,1333,'transcripts/papaplatte/transcript_2404665937.json','2025-03-25 10:52:23','2025-03-26 13:28:34','2025-03-26 13:28:34'),(332,1334,'transcripts/papaplatte/transcript_2403851729.json','2025-03-25 11:10:49','2025-03-26 13:28:34','2025-03-26 13:28:34'),(333,1524,'transcripts/herdyn/transcript_2411569959.json','2025-03-25 11:20:04','2025-03-25 11:41:56','2025-03-25 11:41:56'),(334,1335,'transcripts/papaplatte/transcript_2403024178.json','2025-03-25 11:26:22','2025-03-26 13:28:34','2025-03-26 13:28:34'),(335,1336,'transcripts/mirza_jahic/transcript_2410854226.json','2025-03-25 11:41:28','2025-03-26 13:28:34','2025-03-26 13:28:34'),(336,1525,'transcripts/spajkk/transcript_2411616872.json','2025-03-25 11:44:34','2025-03-25 12:07:17','2025-03-25 12:07:17'),(337,1337,'transcripts/mirza_jahic/transcript_2410015398.json','2025-03-25 11:55:22','2025-03-26 13:28:34','2025-03-26 13:28:34'),(338,1338,'transcripts/mirza_jahic/transcript_2407549286.json','2025-03-25 12:09:18','2025-03-26 13:28:34','2025-03-26 13:28:34'),(339,1526,'transcripts/bladeito/transcript_2411427704.json','2025-03-25 12:10:03','2025-03-25 12:34:58','2025-03-25 12:34:58'),(340,1339,'transcripts/mirza_jahic/transcript_2405547047.json','2025-03-25 12:22:17','2025-03-26 13:28:34','2025-03-26 13:28:34'),(341,1527,'transcripts/marty_vole/transcript_2411681319.json','2025-03-25 12:34:58','2025-03-25 12:44:00','2025-03-25 12:44:00'),(342,1528,'transcripts/andrej_kalinin/transcript_2411702156.json','2025-03-25 12:50:03','2025-03-25 13:06:22','2025-03-25 13:06:49'),(343,1340,'transcripts/mirza_jahic/transcript_2404844241.json','2025-03-25 12:50:32','2025-03-26 13:28:34','2025-03-26 13:28:34'),(344,1341,'transcripts/mirza_jahic/transcript_2402359228.json','2025-03-25 12:59:30','2025-03-26 13:28:34','2025-03-26 13:28:34'),(345,1530,'transcripts/jorantheviking/transcript_2411343663.json','2025-03-25 13:06:49','2025-03-25 13:37:06','2025-03-25 13:37:19'),(346,1342,'transcripts/rewinside/transcript_2409022662.json','2025-03-25 13:10:43','2025-03-26 13:28:34','2025-03-26 13:28:34'),(347,1343,'transcripts/rewinside/transcript_2404716320.json','2025-03-25 13:22:31','2025-03-26 13:28:34','2025-03-26 13:28:34'),(348,1344,'transcripts/rewinside/transcript_2404675893.json','2025-03-25 13:33:52','2025-03-26 13:28:34','2025-03-26 13:28:34'),(349,1345,'transcripts/maxim/transcript_2410440918.json','2025-03-25 13:36:49','2025-03-26 13:28:34','2025-03-26 13:28:34'),(350,1531,'transcripts/vvudy/transcript_2411360393.json','2025-03-25 13:40:39','2025-03-25 13:51:06','2025-03-25 13:51:06'),(351,1346,'transcripts/maxim/transcript_2409638409.json','2025-03-25 13:47:23','2025-03-26 13:28:34','2025-03-26 13:28:34'),(352,1534,'transcripts/kuruhs/transcript_2411521360.json','2025-03-25 13:50:03','2025-03-25 14:12:16','2025-03-25 14:12:16'),(353,1532,'transcripts/fluffcz/transcript_2411611971.json','2025-03-25 13:51:06','2025-03-25 14:10:06','2025-03-25 14:10:06'),(354,1347,'transcripts/maxim/transcript_2408764749.json','2025-03-25 14:07:04','2025-03-26 13:28:34','2025-03-26 13:28:34'),(355,1533,'transcripts/tensterakdary/transcript_2411507618.json','2025-03-25 14:10:06','2025-03-25 14:18:22','2025-03-25 14:18:22'),(356,1535,'transcripts/kuruhs/transcript_2411517752.json','2025-03-25 14:12:16','2025-03-25 14:12:42','2025-03-25 14:12:42'),(357,1536,'transcripts/paoloidolo/transcript_2411376526.json','2025-03-25 14:20:04','2025-03-25 14:31:12','2025-03-25 14:31:12'),(358,1348,'transcripts/maxim/transcript_2407944591.json','2025-03-25 14:24:43','2025-03-26 13:28:34','2025-03-26 13:28:34'),(359,1349,'transcripts/maxim/transcript_2407075455.json','2025-03-25 14:36:03','2025-03-26 13:28:34','2025-03-26 13:28:34'),(360,1350,'transcripts/maxim/transcript_2405275759.json','2025-03-25 14:45:54','2025-03-26 13:28:34','2025-03-26 13:28:34'),(361,1537,'transcripts/39daph/transcript_2411239640.json','2025-03-25 14:50:04','2025-03-25 15:11:43','2025-03-25 15:11:43'),(362,1351,'transcripts/maxim/transcript_2404437275.json','2025-03-25 14:58:30','2025-03-26 13:28:35','2025-03-26 13:28:35'),(363,1352,'transcripts/maxim/transcript_2403646321.json','2025-03-25 15:13:04','2025-03-26 13:28:35','2025-03-26 13:28:35'),(364,1353,'transcripts/maxim/transcript_2402769745.json','2025-03-25 15:33:12','2025-03-26 13:28:35','2025-03-26 13:28:35'),(365,1538,'transcripts/sodapoppin/transcript_2411556418.json','2025-03-25 15:40:04','2025-03-25 15:59:08','2025-03-25 15:59:08'),(366,1354,'transcripts/maxim/transcript_2401948613.json','2025-03-25 15:46:18','2025-03-26 13:28:35','2025-03-26 13:28:35'),(367,1355,'transcripts/tolkin/transcript_2410573933.json','2025-03-25 15:59:39','2025-03-26 13:28:35','2025-03-26 13:28:35'),(368,1539,'transcripts/nymn/transcript_2411413117.json','2025-03-25 16:00:40','2025-03-25 16:08:48','2025-03-25 16:08:48'),(369,1356,'transcripts/tolkin/transcript_2409681333.json','2025-03-25 16:16:19','2025-03-26 13:28:35','2025-03-26 13:28:35'),(370,1540,'transcripts/knut/transcript_2411495916.json','2025-03-25 16:30:04','2025-03-25 16:47:58','2025-03-25 16:47:58'),(371,1357,'transcripts/tolkin/transcript_2407090572.json','2025-03-25 16:37:09','2025-03-26 13:28:35','2025-03-26 13:28:35'),(372,1541,'transcripts/pawkt/transcript_2411790132.json','2025-03-25 16:50:04','2025-03-25 16:52:22','2025-03-25 16:52:22'),(373,1358,'transcripts/tolkin/transcript_2406075075.json','2025-03-25 17:01:36','2025-03-26 13:28:35','2025-03-26 13:28:35'),(374,1542,'transcripts/pawkt/transcript_2411432323.json','2025-03-25 17:10:04','2025-03-25 17:24:14','2025-03-25 17:24:14'),(375,1543,'transcripts/pawkt/transcript_2411381098.json','2025-03-25 17:30:04','2025-03-25 17:32:15','2025-03-25 17:32:15'),(376,1544,'transcripts/vadikus007/transcript_2411546301.json','2025-03-25 17:40:03','2025-03-25 17:48:37','2025-03-25 17:48:37'),(377,1359,'transcripts/tolkin/transcript_2405294571.json','2025-03-25 17:51:06','2025-03-26 13:28:35','2025-03-26 13:28:35'),(378,1545,'transcripts/esfandtv/transcript_2411263912.json','2025-03-25 18:10:03','2025-03-25 18:23:20','2025-03-25 18:23:33'),(379,1360,'transcripts/tolkin/transcript_2404465166.json','2025-03-25 18:24:15','2025-03-26 13:28:35','2025-03-26 13:28:35'),(380,1546,'transcripts/yabbe/transcript_2411532104.json','2025-03-25 18:40:03','2025-03-25 18:59:47','2025-03-25 19:00:13'),(381,1361,'transcripts/tolkin/transcript_2403631701.json','2025-03-25 18:55:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(382,1362,'transcripts/tolkin/transcript_2402799091.json','2025-03-25 19:16:27','2025-03-26 13:28:36','2025-03-26 13:28:36'),(383,1363,'transcripts/tolkin/transcript_2401977174.json','2025-03-25 19:39:11','2025-03-26 13:28:36','2025-03-26 13:28:36'),(384,1375,'transcripts/ponce/transcript_2410507534.json','2025-03-25 20:07:43','2025-03-26 13:28:36','2025-03-26 13:28:36'),(385,1376,'transcripts/ponce/transcript_2409670567.json','2025-03-25 20:24:34','2025-03-26 13:28:36','2025-03-26 13:28:36'),(386,1561,'transcripts/himtheoldboy/transcript_2411354535.json','2025-03-25 20:30:03','2025-03-25 21:24:26','2025-03-25 21:24:26'),(387,1377,'transcripts/ponce/transcript_2408834428.json','2025-03-25 20:41:38','2025-03-26 13:28:36','2025-03-26 13:28:36'),(388,1378,'transcripts/ponce/transcript_2408017598.json','2025-03-25 21:11:49','2025-03-26 13:28:36','2025-03-26 13:28:36'),(389,1379,'transcripts/ponce/transcript_2407205649.json','2025-03-25 21:27:50','2025-03-26 13:28:36','2025-03-26 13:28:36'),(390,1380,'transcripts/ponce/transcript_2402838642.json','2025-03-25 21:36:41','2025-03-26 13:28:36','2025-03-26 13:28:36'),(391,1563,'transcripts/patrikturi/transcript_2412159600.json','2025-03-25 21:40:04','2025-03-25 22:45:38','2025-03-25 22:45:38'),(392,1381,'transcripts/ponce/transcript_2402024835.json','2025-03-25 21:57:18','2025-03-26 13:28:36','2025-03-26 13:28:36'),(393,1412,'transcripts/shaunz/transcript_2410490703.json','2025-03-25 22:16:17','2025-03-26 13:28:36','2025-03-26 13:28:36'),(394,1413,'transcripts/shaunz/transcript_2409645459.json','2025-03-25 22:43:38','2025-03-26 13:28:36','2025-03-26 13:28:36'),(395,1414,'transcripts/shaunz/transcript_2409075717.json','2025-03-25 22:49:12','2025-03-26 13:28:36','2025-03-26 13:28:36'),(396,1564,'transcripts/spajkk/transcript_2412391768.json','2025-03-25 22:50:03','2025-03-25 23:10:17','2025-03-25 23:10:17'),(397,1415,'transcripts/shaunz/transcript_2408808748.json','2025-03-25 22:56:06','2025-03-26 13:28:36','2025-03-26 13:28:36'),(398,1416,'transcripts/shaunz/transcript_2407986881.json','2025-03-25 23:05:16','2025-03-26 13:28:36','2025-03-26 13:28:36'),(399,1565,'transcripts/bladeito/transcript_2412276430.json','2025-03-25 23:10:17','2025-03-25 23:36:45','2025-03-25 23:36:45'),(400,1417,'transcripts/shaunz/transcript_2407188798.json','2025-03-25 23:15:23','2025-03-26 13:28:36','2025-03-26 13:28:36'),(401,1418,'transcripts/shaunz/transcript_2406269100.json','2025-03-25 23:28:52','2025-03-26 13:28:36','2025-03-26 13:28:36'),(402,1566,'transcripts/marty_vole/transcript_2412220026.json','2025-03-25 23:36:45','2025-03-25 23:47:15','2025-03-25 23:47:15'),(403,1419,'transcripts/shaunz/transcript_2405370539.json','2025-03-25 23:46:49','2025-03-26 13:28:36','2025-03-26 13:28:36'),(404,1567,'transcripts/andrej_kalinin/transcript_2412634643.json','2025-03-25 23:47:15','2025-03-25 23:53:51','2025-03-25 23:53:51'),(405,1420,'transcripts/nisqyy/transcript_2408917800.json','2025-03-25 23:56:01','2025-03-26 13:28:36','2025-03-26 13:28:36'),(406,1421,'transcripts/nisqyy/transcript_2406638156.json','2025-03-25 23:59:17','2025-03-26 13:28:36','2025-03-26 13:28:36'),(407,1422,'transcripts/nisqyy/transcript_2405764364.json','2025-03-26 00:00:00','2025-03-26 13:28:36','2025-03-26 13:28:36'),(408,1568,'transcripts/domovnikofc/transcript_2412482207.json','2025-03-26 00:00:04','2025-03-26 00:32:23','2025-03-26 00:32:23'),(409,1423,'transcripts/nisqyy/transcript_2405677916.json','2025-03-26 00:00:55','2025-03-26 13:28:36','2025-03-26 13:28:36'),(410,1424,'transcripts/nisqyy/transcript_2404876240.json','2025-03-26 00:02:25','2025-03-26 13:28:36','2025-03-26 13:28:36'),(411,1425,'transcripts/nisqyy/transcript_2404010998.json','2025-03-26 00:03:31','2025-03-26 13:28:36','2025-03-26 13:28:36'),(412,1426,'transcripts/nisqyy/transcript_2402883459.json','2025-03-26 00:05:41','2025-03-26 13:28:36','2025-03-26 13:28:36'),(413,1427,'transcripts/nisqyy/transcript_2402390969.json','2025-03-26 00:15:39','2025-03-26 13:28:36','2025-03-26 13:28:36'),(414,1428,'transcripts/skyyart/transcript_2407269051.json','2025-03-26 00:18:43','2025-03-26 13:28:36','2025-03-26 13:28:36'),(415,1429,'transcripts/skyyart/transcript_2404593766.json','2025-03-26 00:42:33','2025-03-26 13:28:36','2025-03-26 13:28:36'),(416,1430,'transcripts/skyyart/transcript_2402929350.json','2025-03-26 00:57:05','2025-03-26 13:28:36','2025-03-26 13:28:36'),(417,1431,'transcripts/skyyart/transcript_2402089837.json','2025-03-26 01:03:34','2025-03-26 13:28:36','2025-03-26 13:28:36'),(418,1432,'transcripts/dye_live/transcript_2410637421.json','2025-03-26 01:14:54','2025-03-26 13:28:37','2025-03-26 13:28:37'),(419,1433,'transcripts/dye_live/transcript_2409790196.json','2025-03-26 01:22:20','2025-03-26 13:28:37','2025-03-26 13:28:37'),(420,1434,'transcripts/dye_live/transcript_2408137377.json','2025-03-26 01:31:18','2025-03-26 13:28:37','2025-03-26 13:28:37'),(421,1435,'transcripts/dye_live/transcript_2407295528.json','2025-03-26 01:37:26','2025-03-26 13:28:37','2025-03-26 13:28:37'),(422,1436,'transcripts/dye_live/transcript_2406389587.json','2025-03-26 01:46:55','2025-03-26 13:28:37','2025-03-26 13:28:37'),(423,1437,'transcripts/dye_live/transcript_2405462919.json','2025-03-26 01:55:31','2025-03-26 13:28:37','2025-03-26 13:28:37'),(425,1438,'transcripts/dye_live/transcript_2402971285.json','2025-03-26 02:04:24','2025-03-26 13:28:37','2025-03-26 13:28:37'),(427,1439,'transcripts/dye_live/transcript_2402155634.json','2025-03-26 02:13:10','2025-03-26 13:28:37','2025-03-26 13:28:37'),(429,1440,'transcripts/aloonea/transcript_2410694077.json','2025-03-26 02:22:08','2025-03-26 13:28:37','2025-03-26 13:28:37'),(431,1441,'transcripts/aloonea/transcript_2409829627.json','2025-03-26 02:33:19','2025-03-26 13:28:37','2025-03-26 13:28:37'),(433,1442,'transcripts/aloonea/transcript_2408983688.json','2025-03-26 03:04:43','2025-03-26 13:28:37','2025-03-26 13:28:37'),(435,1443,'transcripts/aloonea/transcript_2408423248.json','2025-03-26 08:23:59','2025-03-26 13:28:37','2025-03-26 13:28:37'),(436,1444,'transcripts/aloonea/transcript_2408158326.json','2025-03-26 08:27:15','2025-03-26 13:28:37','2025-03-26 13:28:37'),(437,1445,'transcripts/aloonea/transcript_2407340388.json','2025-03-26 08:34:04','2025-03-26 13:28:37','2025-03-26 13:28:37'),(438,1446,'transcripts/aloonea/transcript_2406567792.json','2025-03-26 08:45:00','2025-03-26 13:28:37','2025-03-26 13:28:37'),(439,1447,'transcripts/aloonea/transcript_2406407950.json','2025-03-26 08:48:27','2025-03-26 13:28:37','2025-03-26 13:28:37'),(440,1448,'transcripts/aloonea/transcript_2405755032.json','2025-03-26 08:54:14','2025-03-26 13:28:37','2025-03-26 13:28:37'),(441,1449,'transcripts/aloonea/transcript_2405477535.json','2025-03-26 08:59:51','2025-03-26 13:28:37','2025-03-26 13:28:37'),(442,1450,'transcripts/aloonea/transcript_2404637671.json','2025-03-26 09:06:57','2025-03-26 13:28:37','2025-03-26 13:28:37'),(443,1451,'transcripts/aloonea/transcript_2403921032.json','2025-03-26 09:16:35','2025-03-26 13:28:37','2025-03-26 13:28:37'),(444,1452,'transcripts/aloonea/transcript_2403027440.json','2025-03-26 09:20:27','2025-03-26 13:28:37','2025-03-26 13:28:37'),(445,1578,'transcripts/forsen/transcript_2412391980.json','2025-03-26 09:30:04','2025-03-26 09:43:26','2025-03-26 09:43:26'),(446,1453,'transcripts/aloonea/transcript_2402202597.json','2025-03-26 09:30:34','2025-03-26 13:28:37','2025-03-26 13:28:37'),(447,1462,'transcripts/loupiote3/transcript_2410798321.json','2025-03-26 09:42:15','2025-03-26 13:28:37','2025-03-26 13:28:37'),(448,1579,'transcripts/paoloidolo/transcript_2412270406.json','2025-03-26 09:50:03','2025-03-26 09:57:33','2025-03-26 09:57:33'),(449,1463,'transcripts/loupiote3/transcript_2410066838.json','2025-03-26 09:56:56','2025-03-26 13:28:37','2025-03-26 13:28:37'),(450,1464,'transcripts/loupiote3/transcript_2409198817.json','2025-03-26 10:01:40','2025-03-26 13:28:37','2025-03-26 13:28:37'),(451,1465,'transcripts/loupiote3/transcript_2408383072.json','2025-03-26 10:11:39','2025-03-26 13:28:37','2025-03-26 13:28:37'),(452,1466,'transcripts/loupiote3/transcript_2407176590.json','2025-03-26 10:21:57','2025-03-26 13:28:37','2025-03-26 13:28:37'),(453,1467,'transcripts/nawk_/transcript_2403197746.json','2025-03-26 10:24:08','2025-03-26 13:28:37','2025-03-26 13:28:37'),(454,1468,'transcripts/nawk_/transcript_2403095055.json','2025-03-26 10:37:47','2025-03-26 13:28:37','2025-03-26 13:28:37'),(455,1580,'transcripts/39daph/transcript_2412164086.json','2025-03-26 10:40:03','2025-03-26 11:03:26','2025-03-26 11:03:39'),(456,1469,'transcripts/nawk_/transcript_2402638240.json','2025-03-26 10:42:16','2025-03-26 13:28:37','2025-03-26 13:28:37'),(457,1470,'transcripts/nawk_/transcript_2401721412.json','2025-03-26 11:02:45','2025-03-26 13:28:37','2025-03-26 13:28:37'),(458,1581,'transcripts/sodapoppin/transcript_2412425380.json','2025-03-26 11:10:22','2025-03-26 11:23:14','2025-03-26 11:23:14'),(459,1477,'transcripts/helydia/transcript_2410829793.json','2025-03-26 11:15:32','2025-03-26 13:28:37','2025-03-26 13:28:37'),(460,1478,'transcripts/helydia/transcript_2409831581.json','2025-03-26 11:24:38','2025-03-26 13:28:37','2025-03-26 13:28:37'),(461,1582,'transcripts/nymn/transcript_2412370809.json','2025-03-26 11:30:03','2025-03-26 11:39:03','2025-03-26 11:39:03'),(462,1479,'transcripts/helydia/transcript_2409250860.json','2025-03-26 11:41:18','2025-03-26 13:28:37','2025-03-26 13:28:37'),(463,1480,'transcripts/helydia/transcript_2408170982.json','2025-03-26 11:50:23','2025-03-26 13:28:37','2025-03-26 13:28:37'),(464,1481,'transcripts/helydia/transcript_2407347740.json','2025-03-26 12:00:45','2025-03-26 13:28:37','2025-03-26 13:28:37'),(465,1482,'transcripts/helydia/transcript_2406754643.json','2025-03-26 12:04:04','2025-03-26 13:28:37','2025-03-26 13:28:37'),(466,1483,'transcripts/helydia/transcript_2404794087.json','2025-03-26 12:10:51','2025-03-26 13:28:37','2025-03-26 13:28:37'),(467,1484,'transcripts/helydia/transcript_2403913361.json','2025-03-26 12:22:07','2025-03-26 13:28:37','2025-03-26 13:28:37'),(468,1583,'transcripts/knut/transcript_2412475581.json','2025-03-26 12:30:03','2025-03-26 12:56:44','2025-03-26 12:56:44'),(469,1485,'transcripts/helydia/transcript_2403280477.json','2025-03-26 12:32:21','2025-03-26 13:28:37','2025-03-26 13:28:37'),(470,1486,'transcripts/helydia/transcript_2402338978.json','2025-03-26 12:47:01','2025-03-26 13:28:37','2025-03-26 13:28:37'),(471,1487,'transcripts/kaffworld/transcript_2410522977.json','2025-03-26 12:59:23','2025-03-26 13:28:37','2025-03-26 13:28:37'),(472,1584,'transcripts/rachtaz/transcript_2412366253.json','2025-03-26 13:00:04','2025-03-26 13:04:53','2025-03-26 13:04:53'),(473,1585,'transcripts/vadikus007/transcript_2412269086.json','2025-03-26 13:04:53','2025-03-26 13:14:29','2025-03-26 13:14:29'),(474,1488,'transcripts/kaffworld/transcript_2409683893.json','2025-03-26 13:15:13','2025-03-26 13:28:37','2025-03-26 13:28:37'),(475,1489,'transcripts/kaffworld/transcript_2406239418.json','2025-03-26 13:21:39','2025-03-26 15:59:39','2025-03-26 15:59:39'),(477,1489,'transcripts/kaffworld/transcript_2406239418.json','2025-03-26 13:27:15','2025-03-26 15:59:39','2025-03-26 15:59:39'),(478,978,'transcripts/agraelus/transcript_2410788006.json','2025-03-26 13:28:21','2025-03-26 13:28:22','2025-03-26 13:28:22'),(479,980,'transcripts/agraelus/transcript_2408264731.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(480,981,'transcripts/agraelus/transcript_2407467379.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(481,982,'transcripts/agraelus/transcript_2406687665.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(482,983,'transcripts/agraelus/transcript_2405662465.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(483,984,'transcripts/agraelus/transcript_2403968067.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(484,985,'transcripts/agraelus/transcript_2403131018.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(485,986,'transcripts/agraelus/transcript_2402488894.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(486,987,'transcripts/agraelus/transcript_2402343826.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(487,999,'transcripts/astatoro/transcript_2410595939.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(488,1000,'transcripts/astatoro/transcript_2409754130.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(489,1001,'transcripts/astatoro/transcript_2408916224.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(490,1002,'transcripts/astatoro/transcript_2408094896.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(491,1003,'transcripts/astatoro/transcript_2405440755.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(492,1004,'transcripts/astatoro/transcript_2403690361.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(493,1005,'transcripts/astatoro/transcript_2402920869.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(494,1006,'transcripts/astatoro/transcript_2402106602.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(495,1007,'transcripts/claina/transcript_2410623973.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(496,1008,'transcripts/claina/transcript_2409737143.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(497,1009,'transcripts/claina/transcript_2408912503.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(498,1010,'transcripts/claina/transcript_2408085019.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(499,1011,'transcripts/claina/transcript_2404572189.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(500,1012,'transcripts/claina/transcript_2403744006.json','2025-03-26 13:28:22','2025-03-26 13:28:22','2025-03-26 13:28:22'),(501,1013,'transcripts/claina/transcript_2402908265.json','2025-03-26 13:28:22','2025-03-26 13:28:23','2025-03-26 13:28:23'),(502,1014,'transcripts/claina/transcript_2402089929.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(503,1015,'transcripts/patrikturi/transcript_2410439186.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(504,1016,'transcripts/patrikturi/transcript_2409604505.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(505,1017,'transcripts/patrikturi/transcript_2408778092.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(506,1018,'transcripts/patrikturi/transcript_2407947411.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(507,1019,'transcripts/patrikturi/transcript_2407068009.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(508,1020,'transcripts/patrikturi/transcript_2406151333.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(509,1021,'transcripts/patrikturi/transcript_2405428473.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(510,1022,'transcripts/patrikturi/transcript_2405266393.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(511,1023,'transcripts/patrikturi/transcript_2403613132.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(512,1024,'transcripts/patrikturi/transcript_2402765784.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(513,1025,'transcripts/patrikturi/transcript_2401963518.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(514,1026,'transcripts/flyguncz/transcript_2410753007.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(515,1027,'transcripts/flyguncz/transcript_2409924816.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(516,1028,'transcripts/flyguncz/transcript_2409069940.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(517,1029,'transcripts/flyguncz/transcript_2408430271.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(518,1030,'transcripts/flyguncz/transcript_2408261318.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(519,1031,'transcripts/flyguncz/transcript_2405601024.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(520,1032,'transcripts/flyguncz/transcript_2404762653.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(521,1033,'transcripts/flyguncz/transcript_2404251432.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(522,1034,'transcripts/flyguncz/transcript_2403930997.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(523,1035,'transcripts/flyguncz/transcript_2403079691.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(524,1036,'transcripts/flyguncz/transcript_2402259509.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(525,1037,'transcripts/herdyn/transcript_2410765749.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(526,1038,'transcripts/herdyn/transcript_2409896161.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(527,1039,'transcripts/herdyn/transcript_2407455249.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(528,1040,'transcripts/herdyn/transcript_2406577327.json','2025-03-26 13:28:23','2025-03-26 13:28:23','2025-03-26 13:28:23'),(529,1041,'transcripts/herdyn/transcript_2404721934.json','2025-03-26 13:28:23','2025-03-26 13:28:24','2025-03-26 13:28:24'),(530,1042,'transcripts/herdyn/transcript_2403940129.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(531,1043,'transcripts/herdyn/transcript_2403078665.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(532,1044,'transcripts/herdyn/transcript_2402243030.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(533,1045,'transcripts/spajkk/transcript_2410584970.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(534,1046,'transcripts/spajkk/transcript_2409863015.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(535,1047,'transcripts/spajkk/transcript_2408935358.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(536,1048,'transcripts/spajkk/transcript_2408194034.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(537,1049,'transcripts/spajkk/transcript_2407161878.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(538,1050,'transcripts/spajkk/transcript_2406326029.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(539,1051,'transcripts/spajkk/transcript_2405343269.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(540,1052,'transcripts/spajkk/transcript_2404644422.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(541,1053,'transcripts/spajkk/transcript_2403732468.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(542,1054,'transcripts/spajkk/transcript_2402881466.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(543,1055,'transcripts/spajkk/transcript_2402164323.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(544,1056,'transcripts/bladeito/transcript_2408103233.json','2025-03-26 13:28:24','2025-03-26 13:28:24','2025-03-26 13:28:24'),(545,1057,'transcripts/bladeito/transcript_2407157866.json','2025-03-26 13:28:24','2025-03-26 13:28:25','2025-03-26 13:28:25'),(546,1058,'transcripts/bladeito/transcript_2406240959.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(547,1059,'transcripts/bladeito/transcript_2405408217.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(548,1060,'transcripts/bladeito/transcript_2402924375.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(549,1061,'transcripts/bladeito/transcript_2402037056.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(550,1062,'transcripts/marty_vole/transcript_2410708509.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(551,1063,'transcripts/marty_vole/transcript_2410487415.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(552,1064,'transcripts/marty_vole/transcript_2409915735.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(553,1065,'transcripts/marty_vole/transcript_2409633728.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(554,1066,'transcripts/marty_vole/transcript_2409087881.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(555,1067,'transcripts/marty_vole/transcript_2408817981.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(556,1068,'transcripts/marty_vole/transcript_2408244354.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(557,1069,'transcripts/marty_vole/transcript_2407998555.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(558,1070,'transcripts/marty_vole/transcript_2407365813.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(559,1071,'transcripts/marty_vole/transcript_2406475284.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(560,1072,'transcripts/marty_vole/transcript_2406169159.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(561,1073,'transcripts/marty_vole/transcript_2405562834.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(562,1074,'transcripts/marty_vole/transcript_2405297963.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(563,1075,'transcripts/marty_vole/transcript_2404709558.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(564,1076,'transcripts/marty_vole/transcript_2404472980.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(565,1077,'transcripts/marty_vole/transcript_2403965024.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(566,1078,'transcripts/marty_vole/transcript_2403919055.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(567,1079,'transcripts/marty_vole/transcript_2403668525.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(568,1080,'transcripts/marty_vole/transcript_2402999648.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(569,1081,'transcripts/marty_vole/transcript_2402824504.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(570,1082,'transcripts/marty_vole/transcript_2402174706.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(571,1083,'transcripts/andrej_kalinin/transcript_2410851639.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(572,1084,'transcripts/andrej_kalinin/transcript_2410013553.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(573,1085,'transcripts/andrej_kalinin/transcript_2409176394.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(574,1086,'transcripts/andrej_kalinin/transcript_2408350794.json','2025-03-26 13:28:25','2025-03-26 13:28:25','2025-03-26 13:28:25'),(575,1087,'transcripts/andrej_kalinin/transcript_2407550082.json','2025-03-26 13:28:25','2025-03-26 13:28:26','2025-03-26 13:28:26'),(576,1088,'transcripts/andrej_kalinin/transcript_2406565089.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(577,1089,'transcripts/andrej_kalinin/transcript_2405692042.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(578,1090,'transcripts/andrej_kalinin/transcript_2404844311.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(579,1091,'transcripts/andrej_kalinin/transcript_2403182252.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(580,1092,'transcripts/andrej_kalinin/transcript_2402354842.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(581,1093,'transcripts/domovnikofc/transcript_2410735905.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(582,1094,'transcripts/domovnikofc/transcript_2409899545.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(583,1095,'transcripts/domovnikofc/transcript_2408270318.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(584,1096,'transcripts/domovnikofc/transcript_2407393950.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(585,1097,'transcripts/domovnikofc/transcript_2406472951.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(586,1098,'transcripts/domovnikofc/transcript_2405486044.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(587,1099,'transcripts/domovnikofc/transcript_2404801582.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(588,1100,'transcripts/domovnikofc/transcript_2403850250.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(589,1101,'transcripts/domovnikofc/transcript_2403078954.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(590,1102,'transcripts/domovnikofc/transcript_2402181623.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(591,1111,'transcripts/jorantheviking/transcript_2410503073.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(592,1112,'transcripts/jorantheviking/transcript_2409686910.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(593,1113,'transcripts/jorantheviking/transcript_2407206175.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(594,1114,'transcripts/jorantheviking/transcript_2405317076.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(595,1115,'transcripts/mullersie/transcript_2410523205.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(596,1116,'transcripts/mullersie/transcript_2408990377.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(597,1117,'transcripts/mullersie/transcript_2407289196.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(598,1118,'transcripts/mullersie/transcript_2406297945.json','2025-03-26 13:28:26','2025-03-26 13:28:26','2025-03-26 13:28:26'),(599,1119,'transcripts/mullersie/transcript_2405369095.json','2025-03-26 13:28:26','2025-03-26 13:28:27','2025-03-26 13:28:27'),(600,1120,'transcripts/mullersie/transcript_2404559075.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(601,1121,'transcripts/mullersie/transcript_2403668784.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(602,1122,'transcripts/mullersie/transcript_2402879492.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(603,1123,'transcripts/mullersie/transcript_2402105816.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(604,1124,'transcripts/avatar0fwar/transcript_2410614960.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(605,1125,'transcripts/avatar0fwar/transcript_2409022443.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(606,1126,'transcripts/heddi2k/transcript_2410778607.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(607,1127,'transcripts/heddi2k/transcript_2409928533.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(608,1128,'transcripts/heddi2k/transcript_2409093882.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(609,1129,'transcripts/heddi2k/transcript_2408247164.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(610,1130,'transcripts/heddi2k/transcript_2407558423.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(611,1131,'transcripts/heddi2k/transcript_2406533534.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(612,1132,'transcripts/heddi2k/transcript_2405616291.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(613,1133,'transcripts/heddi2k/transcript_2404718979.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(614,1134,'transcripts/heddi2k/transcript_2403922256.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(615,1135,'transcripts/heddi2k/transcript_2403100952.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(616,1136,'transcripts/heddi2k/transcript_2402527179.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(617,1137,'transcripts/heddi2k/transcript_2402254791.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(618,1138,'transcripts/vvudy/transcript_2410487549.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(619,1139,'transcripts/vvudy/transcript_2409670099.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(620,1140,'transcripts/vvudy/transcript_2404517143.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(621,1141,'transcripts/vvudy/transcript_2402143929.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(622,1142,'transcripts/himtheoldboy/transcript_2410564551.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(623,1143,'transcripts/himtheoldboy/transcript_2408191739.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(624,1144,'transcripts/himtheoldboy/transcript_2407193818.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(625,1145,'transcripts/himtheoldboy/transcript_2404577745.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(626,1146,'transcripts/himtheoldboy/transcript_2403715145.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(627,1147,'transcripts/himtheoldboy/transcript_2402200628.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(628,1148,'transcripts/fluffcz/transcript_2410588355.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(629,1149,'transcripts/fluffcz/transcript_2409907446.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(630,1150,'transcripts/fluffcz/transcript_2409048071.json','2025-03-26 13:28:27','2025-03-26 13:28:27','2025-03-26 13:28:27'),(631,1151,'transcripts/fluffcz/transcript_2408225391.json','2025-03-26 13:28:27','2025-03-26 13:28:28','2025-03-26 13:28:28'),(632,1152,'transcripts/fluffcz/transcript_2406330521.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(633,1153,'transcripts/fluffcz/transcript_2404915890.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(634,1154,'transcripts/fluffcz/transcript_2404835771.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(635,1155,'transcripts/fluffcz/transcript_2404457035.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(636,1156,'transcripts/fluffcz/transcript_2403944321.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(637,1157,'transcripts/fluffcz/transcript_2402981466.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(638,1158,'transcripts/fluffcz/transcript_2402220821.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(639,1159,'transcripts/tensterakdary/transcript_2409826284.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(640,1160,'transcripts/tensterakdary/transcript_2408989713.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(641,1161,'transcripts/tensterakdary/transcript_2408211089.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(642,1162,'transcripts/tensterakdary/transcript_2407335926.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(643,1163,'transcripts/tensterakdary/transcript_2405500871.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(644,1164,'transcripts/tensterakdary/transcript_2404651580.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(645,1165,'transcripts/amfikcz/transcript_2407091826.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(646,1178,'transcripts/forsen/transcript_2410639353.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(647,1179,'transcripts/forsen/transcript_2409795400.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(648,1180,'transcripts/forsen/transcript_2408964336.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(649,1181,'transcripts/forsen/transcript_2408137981.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(650,1182,'transcripts/forsen/transcript_2407354814.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(651,1183,'transcripts/forsen/transcript_2407307003.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(652,1184,'transcripts/forsen/transcript_2406381418.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(653,1185,'transcripts/forsen/transcript_2404625437.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(654,1186,'transcripts/forsen/transcript_2403803534.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(655,1187,'transcripts/forsen/transcript_2402968787.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(656,1188,'transcripts/forsen/transcript_2402143711.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(657,1189,'transcripts/kuruhs/transcript_2410701349.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(658,1190,'transcripts/kuruhs/transcript_2410673099.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(659,1191,'transcripts/kuruhs/transcript_2409151341.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(660,1192,'transcripts/kuruhs/transcript_2408997099.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(661,1193,'transcripts/kuruhs/transcript_2408177957.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(662,1194,'transcripts/kuruhs/transcript_2406442569.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(663,1195,'transcripts/kuruhs/transcript_2405508744.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(664,1196,'transcripts/kuruhs/transcript_2404683443.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(665,1197,'transcripts/kuruhs/transcript_2403836837.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(666,1198,'transcripts/kuruhs/transcript_2403001833.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(667,1199,'transcripts/kuruhs/transcript_2402197813.json','2025-03-26 13:28:28','2025-03-26 13:28:28','2025-03-26 13:28:28'),(668,1200,'transcripts/paoloidolo/transcript_2410536323.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(669,1201,'transcripts/paoloidolo/transcript_2409663786.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(670,1202,'transcripts/paoloidolo/transcript_2408591453.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(671,1203,'transcripts/paoloidolo/transcript_2408472853.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(672,1204,'transcripts/paoloidolo/transcript_2408168859.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(673,1205,'transcripts/paoloidolo/transcript_2408073220.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(674,1206,'transcripts/paoloidolo/transcript_2408046967.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(675,1207,'transcripts/paoloidolo/transcript_2406274665.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(676,1208,'transcripts/paoloidolo/transcript_2404538267.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(677,1209,'transcripts/paoloidolo/transcript_2403773844.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(678,1210,'transcripts/paoloidolo/transcript_2403698577.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(679,1211,'transcripts/paoloidolo/transcript_2403269082.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(680,1212,'transcripts/paoloidolo/transcript_2403064051.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(681,1213,'transcripts/paoloidolo/transcript_2402891657.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(682,1214,'transcripts/paoloidolo/transcript_2402017638.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(683,1215,'transcripts/39daph/transcript_2410410535.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(684,1216,'transcripts/39daph/transcript_2409583927.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(685,1217,'transcripts/39daph/transcript_2408741608.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(686,1218,'transcripts/39daph/transcript_2407937496.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(687,1219,'transcripts/39daph/transcript_2407024613.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(688,1220,'transcripts/39daph/transcript_2406064275.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(689,1221,'transcripts/39daph/transcript_2404325923.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(690,1222,'transcripts/39daph/transcript_2403581339.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(691,1223,'transcripts/39daph/transcript_2402723741.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(692,1224,'transcripts/39daph/transcript_2401867134.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(693,1225,'transcripts/sodapoppin/transcript_2410694896.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(694,1226,'transcripts/sodapoppin/transcript_2409875692.json','2025-03-26 13:28:29','2025-03-26 13:28:29','2025-03-26 13:28:29'),(695,1227,'transcripts/sodapoppin/transcript_2409037964.json','2025-03-26 13:28:29','2025-03-26 13:28:30','2025-03-26 13:28:30'),(696,1228,'transcripts/sodapoppin/transcript_2408209480.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(697,1229,'transcripts/sodapoppin/transcript_2407371379.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(698,1230,'transcripts/sodapoppin/transcript_2405473945.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(699,1232,'transcripts/sodapoppin/transcript_2403845796.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(700,1233,'transcripts/sodapoppin/transcript_2402233974.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(701,1234,'transcripts/nymn/transcript_2410545230.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(702,1235,'transcripts/nymn/transcript_2409650748.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(703,1236,'transcripts/nymn/transcript_2408051500.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(704,1237,'transcripts/nymn/transcript_2407193141.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(705,1238,'transcripts/nymn/transcript_2406360698.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(706,1239,'transcripts/nymn/transcript_2405367168.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(707,1240,'transcripts/nymn/transcript_2404543578.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(708,1241,'transcripts/nymn/transcript_2403706005.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(709,1242,'transcripts/nymn/transcript_2402076333.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(710,1243,'transcripts/knut/transcript_2410795791.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(711,1244,'transcripts/knut/transcript_2409865937.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(712,1245,'transcripts/knut/transcript_2409028832.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(713,1246,'transcripts/knut/transcript_2408177350.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(714,1247,'transcripts/knut/transcript_2407387577.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(715,1248,'transcripts/knut/transcript_2406453658.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(716,1249,'transcripts/knut/transcript_2405478235.json','2025-03-26 13:28:30','2025-03-26 13:28:30','2025-03-26 13:28:30'),(717,1250,'transcripts/knut/transcript_2404647796.json','2025-03-26 13:28:30','2025-03-26 13:28:31','2025-03-26 13:28:31'),(718,1251,'transcripts/knut/transcript_2402937268.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(719,1252,'transcripts/knut/transcript_2402233475.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(720,1253,'transcripts/nmplol/transcript_2403764290.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(721,1254,'transcripts/nmplol/transcript_2402105145.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(722,1255,'transcripts/rachtaz/transcript_2410650028.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(723,1256,'transcripts/rachtaz/transcript_2409843447.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(724,1257,'transcripts/rachtaz/transcript_2408985175.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(725,1258,'transcripts/rachtaz/transcript_2408161459.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(726,1259,'transcripts/rachtaz/transcript_2407344344.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(727,1260,'transcripts/rachtaz/transcript_2406411770.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(728,1261,'transcripts/rachtaz/transcript_2405537672.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(729,1262,'transcripts/rachtaz/transcript_2404677219.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(730,1263,'transcripts/rachtaz/transcript_2403912270.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(731,1264,'transcripts/rachtaz/transcript_2402963124.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(732,1265,'transcripts/rachtaz/transcript_2402159761.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(733,1266,'transcripts/pawkt/transcript_2410589875.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(734,1267,'transcripts/pawkt/transcript_2409922322.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(735,1268,'transcripts/pawkt/transcript_2409879471.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(736,1269,'transcripts/pawkt/transcript_2409730498.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(737,1270,'transcripts/pawkt/transcript_2408910049.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(738,1271,'transcripts/pawkt/transcript_2408126260.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(739,1272,'transcripts/pawkt/transcript_2407393368.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(740,1273,'transcripts/pawkt/transcript_2406376129.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(741,1274,'transcripts/pawkt/transcript_2405799190.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(742,1275,'transcripts/pawkt/transcript_2405263836.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(743,1276,'transcripts/pawkt/transcript_2404491070.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(744,1277,'transcripts/pawkt/transcript_2403752678.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(745,1278,'transcripts/pawkt/transcript_2402854317.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(746,1279,'transcripts/wakewilder/transcript_2410811250.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(747,1280,'transcripts/wakewilder/transcript_2409372560.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(748,1281,'transcripts/wakewilder/transcript_2408581160.json','2025-03-26 13:28:31','2025-03-26 13:28:31','2025-03-26 13:28:31'),(749,1282,'transcripts/wakewilder/transcript_2406878644.json','2025-03-26 13:28:31','2025-03-26 13:28:32','2025-03-26 13:28:32'),(750,1284,'transcripts/wakewilder/transcript_2401810413.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(751,1285,'transcripts/vadikus007/transcript_2410514976.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(752,1286,'transcripts/vadikus007/transcript_2408860882.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(753,1287,'transcripts/vadikus007/transcript_2408040449.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(754,1288,'transcripts/vadikus007/transcript_2407175487.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(755,1289,'transcripts/esfandtv/transcript_2410229547.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(756,1290,'transcripts/esfandtv/transcript_2409000099.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(757,1291,'transcripts/esfandtv/transcript_2408431269.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(758,1292,'transcripts/esfandtv/transcript_2407450224.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(759,1293,'transcripts/esfandtv/transcript_2406980584.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(760,1294,'transcripts/esfandtv/transcript_2403049375.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(761,1295,'transcripts/esfandtv/transcript_2402467623.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(762,1296,'transcripts/cooksux/transcript_2410525175.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(763,1297,'transcripts/cooksux/transcript_2408622436.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(764,1298,'transcripts/cooksux/transcript_2403577506.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(765,1299,'transcripts/cooksux/transcript_2402700750.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(766,1300,'transcripts/cooksux/transcript_2401981361.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(767,1301,'transcripts/cooksux/transcript_2401970311.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(768,1302,'transcripts/vei/transcript_2408950772.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(769,1303,'transcripts/vei/transcript_2407291829.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(770,1304,'transcripts/yabbe/transcript_2410657888.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(771,1305,'transcripts/yabbe/transcript_2408134738.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(772,1306,'transcripts/yabbe/transcript_2407318214.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(773,1307,'transcripts/yabbe/transcript_2406430606.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(774,1308,'transcripts/yabbe/transcript_2405573525.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(775,1309,'transcripts/yabbe/transcript_2405475524.json','2025-03-26 13:28:32','2025-03-26 13:28:32','2025-03-26 13:28:32'),(776,1310,'transcripts/yabbe/transcript_2404604614.json','2025-03-26 13:28:32','2025-03-26 13:28:33','2025-03-26 13:28:33'),(777,1311,'transcripts/yabbe/transcript_2402206705.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(778,1312,'transcripts/cyr/transcript_2410097602.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(779,1313,'transcripts/cyr/transcript_2409324358.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(780,1314,'transcripts/cyr/transcript_2408427987.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(781,1315,'transcripts/cyr/transcript_2407481263.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(782,1316,'transcripts/cyr/transcript_2405040947.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(783,1317,'transcripts/cyr/transcript_2403909295.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(784,1318,'transcripts/cyr/transcript_2403048869.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(785,1319,'transcripts/cyr/transcript_2402431404.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(786,1320,'transcripts/khalamity/transcript_2410312873.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(787,1321,'transcripts/khalamity/transcript_2408665245.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(788,1322,'transcripts/khalamity/transcript_2407832637.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(789,1323,'transcripts/khalamity/transcript_2406870894.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(790,1324,'transcripts/khalamity/transcript_2406053991.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(791,1325,'transcripts/khalamity/transcript_2404341971.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(792,1326,'transcripts/khalamity/transcript_2402685286.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(793,1327,'transcripts/khalamity/transcript_2401846598.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(794,1328,'transcripts/papaplatte/transcript_2409019691.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(795,1329,'transcripts/papaplatte/transcript_2407351892.json','2025-03-26 13:28:33','2025-03-26 13:28:33','2025-03-26 13:28:33'),(796,1330,'transcripts/papaplatte/transcript_2406442133.json','2025-03-26 13:28:33','2025-03-26 13:28:34','2025-03-26 13:28:34'),(797,1331,'transcripts/papaplatte/transcript_2406353473.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(798,1332,'transcripts/papaplatte/transcript_2405519379.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(799,1333,'transcripts/papaplatte/transcript_2404665937.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(800,1334,'transcripts/papaplatte/transcript_2403851729.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(801,1335,'transcripts/papaplatte/transcript_2403024178.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(802,1336,'transcripts/mirza_jahic/transcript_2410854226.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(803,1337,'transcripts/mirza_jahic/transcript_2410015398.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(804,1338,'transcripts/mirza_jahic/transcript_2407549286.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(805,1339,'transcripts/mirza_jahic/transcript_2405547047.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(806,1340,'transcripts/mirza_jahic/transcript_2404844241.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(807,1341,'transcripts/mirza_jahic/transcript_2402359228.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(808,1342,'transcripts/rewinside/transcript_2409022662.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(809,1343,'transcripts/rewinside/transcript_2404716320.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(810,1344,'transcripts/rewinside/transcript_2404675893.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(811,1345,'transcripts/maxim/transcript_2410440918.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(812,1346,'transcripts/maxim/transcript_2409638409.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(813,1347,'transcripts/maxim/transcript_2408764749.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(814,1348,'transcripts/maxim/transcript_2407944591.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(815,1349,'transcripts/maxim/transcript_2407075455.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(816,1350,'transcripts/maxim/transcript_2405275759.json','2025-03-26 13:28:34','2025-03-26 13:28:34','2025-03-26 13:28:34'),(817,1351,'transcripts/maxim/transcript_2404437275.json','2025-03-26 13:28:34','2025-03-26 13:28:35','2025-03-26 13:28:35'),(818,1352,'transcripts/maxim/transcript_2403646321.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(819,1353,'transcripts/maxim/transcript_2402769745.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(820,1354,'transcripts/maxim/transcript_2401948613.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(821,1355,'transcripts/tolkin/transcript_2410573933.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(822,1356,'transcripts/tolkin/transcript_2409681333.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(823,1357,'transcripts/tolkin/transcript_2407090572.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(824,1358,'transcripts/tolkin/transcript_2406075075.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(825,1359,'transcripts/tolkin/transcript_2405294571.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(826,1360,'transcripts/tolkin/transcript_2404465166.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(827,1361,'transcripts/tolkin/transcript_2403631701.json','2025-03-26 13:28:35','2025-03-26 13:28:35','2025-03-26 13:28:35'),(828,1362,'transcripts/tolkin/transcript_2402799091.json','2025-03-26 13:28:35','2025-03-26 13:28:36','2025-03-26 13:28:36'),(829,1363,'transcripts/tolkin/transcript_2401977174.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(830,1375,'transcripts/ponce/transcript_2410507534.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(831,1376,'transcripts/ponce/transcript_2409670567.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(832,1377,'transcripts/ponce/transcript_2408834428.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(833,1378,'transcripts/ponce/transcript_2408017598.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(834,1379,'transcripts/ponce/transcript_2407205649.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(835,1380,'transcripts/ponce/transcript_2402838642.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(836,1381,'transcripts/ponce/transcript_2402024835.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(837,1412,'transcripts/shaunz/transcript_2410490703.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(838,1413,'transcripts/shaunz/transcript_2409645459.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(839,1414,'transcripts/shaunz/transcript_2409075717.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(840,1415,'transcripts/shaunz/transcript_2408808748.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(841,1416,'transcripts/shaunz/transcript_2407986881.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(842,1417,'transcripts/shaunz/transcript_2407188798.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(843,1418,'transcripts/shaunz/transcript_2406269100.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(844,1419,'transcripts/shaunz/transcript_2405370539.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(845,1420,'transcripts/nisqyy/transcript_2408917800.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(846,1421,'transcripts/nisqyy/transcript_2406638156.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(847,1422,'transcripts/nisqyy/transcript_2405764364.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(848,1423,'transcripts/nisqyy/transcript_2405677916.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(849,1424,'transcripts/nisqyy/transcript_2404876240.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(850,1425,'transcripts/nisqyy/transcript_2404010998.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(851,1426,'transcripts/nisqyy/transcript_2402883459.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(852,1427,'transcripts/nisqyy/transcript_2402390969.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(853,1428,'transcripts/skyyart/transcript_2407269051.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(854,1429,'transcripts/skyyart/transcript_2404593766.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(855,1430,'transcripts/skyyart/transcript_2402929350.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(856,1431,'transcripts/skyyart/transcript_2402089837.json','2025-03-26 13:28:36','2025-03-26 13:28:36','2025-03-26 13:28:36'),(857,1432,'transcripts/dye_live/transcript_2410637421.json','2025-03-26 13:28:36','2025-03-26 13:28:37','2025-03-26 13:28:37'),(858,1433,'transcripts/dye_live/transcript_2409790196.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(859,1434,'transcripts/dye_live/transcript_2408137377.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(860,1435,'transcripts/dye_live/transcript_2407295528.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(861,1436,'transcripts/dye_live/transcript_2406389587.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(862,1437,'transcripts/dye_live/transcript_2405462919.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(863,1438,'transcripts/dye_live/transcript_2402971285.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(864,1439,'transcripts/dye_live/transcript_2402155634.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(865,1440,'transcripts/aloonea/transcript_2410694077.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(866,1441,'transcripts/aloonea/transcript_2409829627.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(867,1442,'transcripts/aloonea/transcript_2408983688.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(868,1443,'transcripts/aloonea/transcript_2408423248.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(869,1444,'transcripts/aloonea/transcript_2408158326.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(870,1445,'transcripts/aloonea/transcript_2407340388.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(871,1446,'transcripts/aloonea/transcript_2406567792.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(872,1447,'transcripts/aloonea/transcript_2406407950.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(873,1448,'transcripts/aloonea/transcript_2405755032.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(874,1449,'transcripts/aloonea/transcript_2405477535.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(875,1450,'transcripts/aloonea/transcript_2404637671.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(876,1451,'transcripts/aloonea/transcript_2403921032.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(877,1452,'transcripts/aloonea/transcript_2403027440.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(878,1453,'transcripts/aloonea/transcript_2402202597.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(879,1462,'transcripts/loupiote3/transcript_2410798321.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(880,1463,'transcripts/loupiote3/transcript_2410066838.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(881,1464,'transcripts/loupiote3/transcript_2409198817.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(882,1465,'transcripts/loupiote3/transcript_2408383072.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(883,1466,'transcripts/loupiote3/transcript_2407176590.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(884,1467,'transcripts/nawk_/transcript_2403197746.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(885,1468,'transcripts/nawk_/transcript_2403095055.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(886,1469,'transcripts/nawk_/transcript_2402638240.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(887,1470,'transcripts/nawk_/transcript_2401721412.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(888,1477,'transcripts/helydia/transcript_2410829793.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(889,1478,'transcripts/helydia/transcript_2409831581.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(890,1479,'transcripts/helydia/transcript_2409250860.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(891,1480,'transcripts/helydia/transcript_2408170982.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(892,1481,'transcripts/helydia/transcript_2407347740.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(893,1482,'transcripts/helydia/transcript_2406754643.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(894,1483,'transcripts/helydia/transcript_2404794087.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(895,1484,'transcripts/helydia/transcript_2403913361.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(896,1485,'transcripts/helydia/transcript_2403280477.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(897,1486,'transcripts/helydia/transcript_2402338978.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(898,1487,'transcripts/kaffworld/transcript_2410522977.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(899,1488,'transcripts/kaffworld/transcript_2409683893.json','2025-03-26 13:28:37','2025-03-26 13:28:37','2025-03-26 13:28:37'),(900,1489,'transcripts/kaffworld/transcript_2406239418.json','2025-03-26 13:28:37','2025-03-26 15:59:39','2025-03-26 15:59:39'),(901,1489,'transcripts/kaffworld/transcript_2406239418.json','2025-03-26 13:30:15','2025-03-26 15:59:39','2025-03-26 15:59:39'),(904,1489,'transcripts/kaffworld/transcript_2406239418.json','2025-03-26 15:49:18','2025-03-26 15:59:39','2025-03-26 15:59:39'),(905,1490,'transcripts/kaffworld/transcript_2404515429.json','2025-03-26 15:59:39','2025-03-26 16:04:16','2025-03-26 16:04:16'),(907,1491,'transcripts/kaffworld/transcript_2403689186.json','2025-03-26 16:04:16','2025-03-26 18:50:43','2025-03-26 18:50:43'),(908,1491,'transcripts/kaffworld/transcript_2403689186.json','2025-03-26 17:20:07','2025-03-26 18:50:43','2025-03-26 18:50:43'),(910,1491,'transcripts/kaffworld/transcript_2403689186.json','2025-03-26 18:41:31','2025-03-26 18:50:43','2025-03-26 18:50:43'),(913,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 18:50:43','2025-03-26 23:37:15','2025-03-26 23:37:15'),(914,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 19:20:07','2025-03-26 23:37:15','2025-03-26 23:37:15'),(917,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 19:28:22','2025-03-26 23:37:15','2025-03-26 23:37:15'),(919,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 19:45:19','2025-03-26 23:37:15','2025-03-26 23:37:15'),(921,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 20:00:04','2025-03-26 23:37:15','2025-03-26 23:37:15'),(923,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 20:10:23','2025-03-26 23:37:15','2025-03-26 23:37:15'),(925,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 21:57:47','2025-03-26 23:37:15','2025-03-26 23:37:15'),(936,1571,'transcripts/mullersie/transcript_2412255936.json','2025-03-26 23:23:00','2025-03-26 23:49:09','2025-03-26 23:49:09'),(937,1492,'transcripts/kaffworld/transcript_2402854515.json','2025-03-26 23:23:00','2025-03-26 23:37:15','2025-03-26 23:37:15'),(938,1503,'transcripts/sniper_biscuit/transcript_2410892150.json','2025-03-26 23:37:15','2025-03-26 23:39:21','2025-03-26 23:39:21'),(939,1504,'transcripts/sniper_biscuit/transcript_2410738852.json','2025-03-26 23:39:21','2025-03-26 23:44:30','2025-03-26 23:44:30'),(940,1505,'transcripts/sniper_biscuit/transcript_2408983594.json','2025-03-26 23:44:30','2025-03-27 00:14:54','2025-03-27 00:14:54'),(941,1572,'transcripts/avatar0fwar/transcript_2412400169.json','2025-03-26 23:49:09','2025-03-27 00:05:44','2025-03-27 00:05:44'),(942,1574,'transcripts/himtheoldboy/transcript_2412309150.json','2025-03-27 00:05:44','2025-03-27 00:42:47','2025-03-27 00:42:47'),(943,1506,'transcripts/sniper_biscuit/transcript_2408347653.json','2025-03-27 00:14:54','2025-03-27 00:32:39','2025-03-27 00:32:39'),(944,1507,'transcripts/sniper_biscuit/transcript_2408162126.json','2025-03-27 00:32:39','2025-03-27 00:42:12','2025-03-27 00:42:12'),(945,1508,'transcripts/sniper_biscuit/transcript_2407568761.json','2025-03-27 00:42:12','2025-03-27 01:01:48','2025-03-27 01:01:48'),(946,1575,'transcripts/fluffcz/transcript_2412601490.json','2025-03-27 00:42:47','2025-03-27 00:44:46','2025-03-27 00:44:46'),(947,1576,'transcripts/fluffcz/transcript_2412288021.json','2025-03-27 00:44:46','2025-03-27 01:10:37','2025-03-27 01:10:37'),(948,1509,'transcripts/sniper_biscuit/transcript_2407410776.json','2025-03-27 01:01:48','2025-03-27 01:07:47','2025-03-27 01:07:47'),(949,1510,'transcripts/sniper_biscuit/transcript_2406665892.json','2025-03-27 01:07:47','2025-03-27 01:26:11','2025-03-27 01:26:11'),(950,1577,'transcripts/tensterakdary/transcript_2412434840.json','2025-03-27 01:10:37','2025-03-27 01:17:08','2025-03-27 01:17:08'),(951,1618,'transcripts/astatoro/transcript_2413276679.json','2025-03-27 01:20:03','2025-03-27 01:52:40','2025-03-27 01:52:40'),(952,1511,'transcripts/sniper_biscuit/transcript_2406421705.json','2025-03-27 01:26:11','2025-03-27 01:35:23','2025-03-27 01:35:23'),(953,1512,'transcripts/sniper_biscuit/transcript_2405804465.json','2025-03-27 01:35:23','2025-03-27 01:46:32','2025-03-27 01:46:32'),(954,1513,'transcripts/sniper_biscuit/transcript_2405506821.json','2025-03-27 01:46:32','2025-03-27 02:01:04','2025-03-27 02:01:04'),(955,1619,'transcripts/patrikturi/transcript_2413114664.json','2025-03-27 01:52:40','2025-03-27 02:33:34','2025-03-27 02:33:34'),(956,1514,'transcripts/sniper_biscuit/transcript_2404668599.json','2025-03-27 02:01:04','2025-03-27 02:38:06','2025-03-27 02:38:06'),(957,1515,'transcripts/sniper_biscuit/transcript_2404007587.json','2025-03-27 02:38:06','2025-03-27 02:49:21','2025-03-27 02:49:21'),(958,1620,'transcripts/herdyn/transcript_2413478943.json','2025-03-27 02:40:04','2025-03-27 02:56:39','2025-03-27 02:56:39'),(959,1516,'transcripts/sniper_biscuit/transcript_2403773951.json','2025-03-27 02:49:21','2025-03-27 03:00:15','2025-03-27 03:00:15'),(960,1621,'transcripts/spajkk/transcript_2413236634.json','2025-03-27 02:56:39','2025-03-27 03:33:28','2025-03-27 03:33:28'),(961,1517,'transcripts/sniper_biscuit/transcript_2403337957.json','2025-03-27 03:00:15','2025-03-27 03:02:53','2025-03-27 03:02:53'),(962,1518,'transcripts/sniper_biscuit/transcript_2403215760.json','2025-03-27 03:02:53','2025-03-27 03:12:50','2025-03-27 03:12:50'),(963,1519,'transcripts/sniper_biscuit/transcript_2403008044.json','2025-03-27 03:12:50','2025-03-27 03:14:46','2025-03-27 03:14:46'),(964,1520,'transcripts/sniper_biscuit/transcript_2402341919.json','2025-03-27 03:14:46','2025-03-27 03:30:30','2025-03-27 03:30:30'),(965,1547,'transcripts/maxim/transcript_2411273716.json','2025-03-27 03:30:30','2025-03-27 03:45:46','2025-03-27 03:45:46'),(966,1622,'transcripts/bladeito/transcript_2413156013.json','2025-03-27 03:33:28','2025-03-27 04:18:31','2025-03-27 04:18:31'),(967,1550,'transcripts/shaunz/transcript_2411323587.json','2025-03-27 03:45:46','2025-03-27 03:51:51','2025-03-27 03:51:51'),(968,1551,'transcripts/nisqyy/transcript_2411747905.json','2025-03-27 03:51:51','2025-03-27 03:52:52','2025-03-27 03:52:52'),(969,1552,'transcripts/skyyart/transcript_2411494243.json','2025-03-27 03:52:52','2025-03-27 04:09:38','2025-03-27 04:09:38'),(970,1553,'transcripts/dye_live/transcript_2411475451.json','2025-03-27 04:09:38','2025-03-27 04:22:05','2025-03-27 04:22:05'),(971,1623,'transcripts/marty_vole/transcript_2413374914.json','2025-03-27 04:20:03','2025-03-27 04:35:35','2025-03-27 04:35:35'),(972,1556,'transcripts/helydia/transcript_2411708971.json','2025-03-27 04:22:05','2025-03-27 04:34:34','2025-03-27 04:34:34'),(973,1557,'transcripts/kaffworld/transcript_2411358204.json','2025-03-27 04:34:34','2025-03-27 04:52:22','2025-03-27 04:52:22'),(974,1624,'transcripts/domovnikofc/transcript_2413416265.json','2025-03-27 04:35:35','2025-03-27 04:54:33','2025-03-27 04:54:33'),(975,1559,'transcripts/sniper_biscuit/transcript_2411782028.json','2025-03-27 04:52:22','2025-03-27 04:54:36','2025-03-27 04:54:36'),(976,1625,'transcripts/jorantheviking/transcript_2413226815.json','2025-03-27 04:54:33','2025-03-27 05:11:48','2025-03-27 05:11:48'),(977,1560,'transcripts/sniper_biscuit/transcript_2411568679.json','2025-03-27 04:54:36','2025-03-27 04:55:44','2025-03-27 04:55:44'),(978,1562,'transcripts/mirza_jahic/transcript_2411554686.json','2025-03-27 04:55:44','2025-03-27 05:20:22','2025-03-27 05:20:22'),(979,1626,'transcripts/heddi2k/transcript_2413412903.json','2025-03-27 05:20:04','2025-03-27 06:10:56','2025-03-27 06:10:56'),(980,1590,'transcripts/papaplatte/transcript_2412440734.json','2025-03-27 05:20:22','2025-03-27 05:41:47','2025-03-27 05:41:47'),(981,1630,'transcripts/forsen/transcript_2413320133.json','2025-03-27 05:40:04','2025-03-27 06:01:51','2025-03-27 06:01:51'),(982,1591,'transcripts/tolkin/transcript_2412342670.json','2025-03-27 05:41:47','2025-03-27 06:04:41','2025-03-27 06:04:41'),(983,1595,'transcripts/shaunz/transcript_2412307509.json','2025-03-27 06:04:41','2025-03-27 06:13:27','2025-03-27 06:13:27'),(984,1631,'transcripts/kuruhs/transcript_2413410017.json','2025-03-27 06:10:03','2025-03-27 06:28:38','2025-03-27 06:28:38'),(985,1627,'transcripts/heddi2k/transcript_2413404339.json','2025-03-27 06:10:56','2025-03-27 06:11:06','2025-03-27 06:11:06'),(986,1628,'transcripts/vvudy/transcript_2413155731.json','2025-03-27 06:11:06','2025-03-27 06:33:07','2025-03-27 06:33:07'),(987,1596,'transcripts/nisqyy/transcript_2412523297.json','2025-03-27 06:13:27','2025-03-27 06:14:32','2025-03-27 06:14:32'),(988,1597,'transcripts/skyyart/transcript_2412210158.json','2025-03-27 06:14:32','2025-03-27 06:40:02','2025-03-27 06:40:02'),(989,1629,'transcripts/himtheoldboy/transcript_2413190694.json','2025-03-27 06:33:07','2025-03-27 07:05:16','2025-03-27 07:05:16'),(990,1598,'transcripts/dye_live/transcript_2412387170.json','2025-03-27 06:40:02','2025-03-27 07:01:23','2025-03-27 07:01:23'),(991,1632,'transcripts/paoloidolo/transcript_2413240933.json','2025-03-27 06:40:03','2025-03-27 07:09:38','2025-03-27 07:09:38'),(992,1633,'transcripts/paoloidolo/transcript_2413223868.json','2025-03-27 07:09:38','2025-03-27 07:10:33','2025-03-27 07:10:33'),(993,1601,'transcripts/helydia/transcript_2412526631.json','2025-03-27 07:10:03','2025-03-27 07:10:54','2025-03-27 07:10:54'),(994,1602,'transcripts/helydia/transcript_2412326697.json','2025-03-27 07:10:54','2025-03-27 07:20:07','2025-03-27 07:20:07'),(995,1634,'transcripts/39daph/transcript_2413064632.json','2025-03-27 07:20:04','2025-03-27 07:35:01','2025-03-27 07:35:01'),(996,1604,'transcripts/sniper_biscuit/transcript_2412688000.json','2025-03-27 07:20:07','2025-03-27 07:36:00','2025-03-27 07:36:00'),(997,1605,'transcripts/sniper_biscuit/transcript_2412548367.json','2025-03-27 07:36:00','2025-03-27 07:42:44','2025-03-27 07:42:44'),(998,1635,'transcripts/sodapoppin/transcript_2413389706.json','2025-03-27 07:40:04','2025-03-27 07:44:43','2025-03-27 07:44:43'),(999,1606,'transcripts/sniper_biscuit/transcript_2412389443.json','2025-03-27 07:42:44','2025-03-27 07:52:36','2025-03-27 07:52:36'),(1000,1636,'transcripts/nymn/transcript_2413240908.json','2025-03-27 07:50:04','2025-03-27 08:00:07','2025-03-27 08:00:07'),(1001,1637,'transcripts/knut/transcript_2413477283.json','2025-03-27 08:30:03','2025-03-27 08:47:30','2025-03-27 08:47:30'),(1002,1638,'transcripts/pawkt/transcript_2413267097.json','2025-03-27 09:00:03','2025-03-27 09:04:18','2025-03-27 09:04:18'),(1003,1639,'transcripts/vadikus007/transcript_2413186851.json','2025-03-27 09:10:03','2025-03-27 09:16:18','2025-03-27 09:16:18'),(1004,1640,'transcripts/esfandtv/transcript_2413474103.json','2025-03-27 09:40:04','2025-03-27 09:52:29','2025-03-27 09:52:29'),(1005,1642,'transcripts/yabbe/transcript_2413440741.json','2025-03-27 10:00:03','2025-03-27 10:02:38','2025-03-27 10:02:38'),(1006,1643,'transcripts/cyr/transcript_2413534368.json','2025-03-27 10:20:03','2025-03-27 10:28:12','2025-03-27 10:28:12'),(1007,1644,'transcripts/khalamity/transcript_2412961070.json','2025-03-27 11:00:03','2025-03-27 11:13:39','2025-03-27 11:13:39'),(1008,1645,'transcripts/papaplatte/transcript_2413188412.json','2025-03-27 11:30:04','2025-03-27 11:51:23','2025-03-27 11:51:23'),(1009,1646,'transcripts/maxim/transcript_2413086506.json','2025-03-27 12:00:04','2025-03-27 12:07:58','2025-03-27 12:07:58'),(1010,1647,'transcripts/tolkin/transcript_2413177960.json','2025-03-27 12:07:58','2025-03-27 12:21:51','2025-03-27 12:21:51'),(1011,1649,'transcripts/skyyart/transcript_2413249476.json','2025-03-27 12:30:04','2025-03-27 12:42:59','2025-03-27 12:42:59'),(1012,1650,'transcripts/dye_live/transcript_2413316682.json','2025-03-27 12:42:59','2025-03-27 12:50:38','2025-03-27 12:50:38'),(1013,1651,'transcripts/aloonea/transcript_2413388760.json','2025-03-27 13:00:04','2025-03-27 13:09:25','2025-03-27 13:09:25'),(1014,1653,'transcripts/loupiote3/transcript_2413663094.json','2025-03-27 13:10:04','2025-03-27 13:12:58','2025-03-27 13:12:58'),(1015,1654,'transcripts/helydia/transcript_2413248130.json','2025-03-27 13:40:04','2025-03-27 13:53:59','2025-03-27 13:53:59'),(1016,1656,'transcripts/sniper_biscuit/transcript_2413388993.json','2025-03-27 14:10:04','2025-03-27 14:18:26','2025-03-27 14:18:26'),(1017,1657,'transcripts/agraelus/transcript_2414256091.json','2025-03-27 14:30:03','2025-03-27 14:43:05','2025-03-27 14:43:05'),(1018,1658,'transcripts/astatoro/transcript_2414112181.json','2025-03-27 15:00:03','2025-03-27 15:20:35','2025-03-27 15:20:35'),(1019,1659,'transcripts/claina/transcript_2414106935.json','2025-03-27 15:30:04','2025-03-27 15:38:09','2025-03-27 15:38:09'),(1020,1660,'transcripts/patrikturi/transcript_2413967766.json','2025-03-27 15:38:09','2025-03-27 15:48:13','2025-03-27 15:48:13'),(1021,1661,'transcripts/flyguncz/transcript_2414266089.json','2025-03-27 15:50:03','2025-03-27 16:04:39','2025-03-27 16:04:39'),(1022,1662,'transcripts/herdyn/transcript_2414250742.json','2025-03-27 16:20:03','2025-03-27 16:33:48','2025-03-27 16:33:48'),(1023,1663,'transcripts/bladeito/transcript_2414198053.json','2025-03-27 16:40:04','2025-03-27 16:55:29','2025-03-27 16:55:29'),(1024,1664,'transcripts/marty_vole/transcript_2414245217.json','2025-03-27 16:55:29','2025-03-27 17:01:55','2025-03-27 17:01:55'),(1025,1665,'transcripts/marty_vole/transcript_2414021669.json','2025-03-27 17:10:03','2025-03-27 17:17:20','2025-03-27 17:17:20'),(1026,1666,'transcripts/andrej_kalinin/transcript_2414369864.json','2025-03-27 17:17:20','2025-03-27 17:28:43','2025-03-27 17:28:43'),(1031,1671,'transcripts/vvudy/transcript_2414078732.json','2025-03-28 10:10:03','2025-03-28 10:13:56','2025-03-28 10:13:56'),(1032,1672,'transcripts/himtheoldboy/transcript_2414214365.json','2025-03-28 10:40:03','2025-03-28 10:55:45','2025-03-28 10:55:45'),(1033,1673,'transcripts/fluffcz/transcript_2414302612.json','2025-03-28 11:00:03','2025-03-28 11:08:31','2025-03-28 11:08:31'),(1034,1674,'transcripts/fluffcz/transcript_2414285056.json','2025-03-28 11:08:31','2025-03-28 11:08:58','2025-03-28 11:08:58'),(1035,1675,'transcripts/tensterakdary/transcript_2414231601.json','2025-03-28 11:08:58','2025-03-28 11:12:07','2025-03-28 11:12:07'),(1036,1676,'transcripts/forsen/transcript_2414150784.json','2025-03-28 11:10:03','2025-03-28 11:21:33','2025-03-28 11:21:33'),(1037,1677,'transcripts/kuruhs/transcript_2414205611.json','2025-03-28 11:30:04','2025-03-28 11:40:43','2025-03-28 11:40:43'),(1038,1679,'transcripts/nymn/transcript_2414070712.json','2025-03-28 12:30:04','2025-03-28 12:39:08','2025-03-28 12:39:08'),(1039,1680,'transcripts/knut/transcript_2414202927.json','2025-03-28 13:10:04','2025-03-28 13:30:03','2025-03-28 13:30:03'),(1040,1681,'transcripts/rachtaz/transcript_2414260273.json','2025-03-28 13:40:03','2025-03-28 13:45:08','2025-03-28 13:45:08'),(1041,1682,'transcripts/pawkt/transcript_2414060374.json','2025-03-28 13:50:03','2025-03-28 13:55:11','2025-03-28 13:55:11'),(1042,1683,'transcripts/wakewilder/transcript_2413822328.json','2025-03-28 14:10:03','2025-03-28 14:20:05','2025-03-28 14:20:05'),(1043,1684,'transcripts/cyr/transcript_2414455198.json','2025-03-28 14:50:03','2025-03-28 15:07:38','2025-03-28 15:07:38'),(1044,1685,'transcripts/cyr/transcript_2413841006.json','2025-03-28 15:10:04','2025-03-28 15:12:56','2025-03-28 15:12:56'),(1045,1686,'transcripts/khalamity/transcript_2413848928.json','2025-03-28 15:40:04','2025-03-28 15:51:34','2025-03-28 15:51:34'),(1046,1687,'transcripts/papaplatte/transcript_2414195930.json','2025-03-28 16:00:04','2025-03-28 16:14:57','2025-03-28 16:14:57'),(1047,1688,'transcripts/rewinside/transcript_2414205798.json','2025-03-28 16:20:04','2025-03-28 16:29:59','2025-03-28 16:29:59'),(1048,1689,'transcripts/maxim/transcript_2413971987.json','2025-03-28 16:29:59','2025-03-28 16:36:49','2025-03-28 16:36:49'),(1049,1690,'transcripts/tolkin/transcript_2414086632.json','2025-03-28 16:40:04','2025-03-28 16:54:27','2025-03-28 16:54:27'),(1050,1691,'transcripts/vlesk/transcript_2414275830.json','2025-03-28 17:00:04','2025-03-28 17:03:02','2025-03-28 17:03:02'),(1051,1696,'transcripts/ponce/transcript_2414047293.json','2025-03-28 17:03:02','2025-03-28 17:13:04','2025-03-28 17:13:04'),(1052,1697,'transcripts/shaunz/transcript_2414007108.json','2025-03-28 17:20:04','2025-03-28 17:26:05','2025-03-28 17:26:05'),(1053,1698,'transcripts/dye_live/transcript_2414160456.json','2025-03-28 17:26:05','2025-03-28 17:33:54','2025-03-28 17:33:54'),(1054,1699,'transcripts/aloonea/transcript_2414505906.json','2025-03-28 17:40:04','2025-03-28 17:48:48','2025-03-28 17:48:48'),(1055,1700,'transcripts/aloonea/transcript_2414192909.json','2025-03-28 17:50:04','2025-03-28 17:56:36','2025-03-28 17:56:36'),(1056,1702,'transcripts/loupiote3/transcript_2414453266.json','2025-03-28 18:00:04','2025-03-28 18:08:25','2025-03-28 18:08:25'),(1057,1703,'transcripts/helydia/transcript_2414324730.json','2025-03-28 18:40:04','2025-03-28 18:52:37','2025-03-28 18:52:37'),(1058,1704,'transcripts/kaffworld/transcript_2414051194.json','2025-03-28 19:00:04','2025-03-28 19:09:51','2025-03-28 19:09:51'),(1059,1706,'transcripts/sniper_biscuit/transcript_2414218586.json','2025-03-28 19:10:04','2025-03-28 19:17:32','2025-03-28 19:17:32'),(1060,1708,'transcripts/kapesnik69/transcript_2410663214.json','2025-03-28 19:30:03','2025-03-28 19:34:16','2025-03-28 19:34:16'),(1061,1707,'transcripts/mirza_jahic/transcript_2414376080.json','2025-03-28 19:30:04','2025-03-28 19:40:34','2025-03-28 19:40:34'),(1062,1709,'transcripts/miken/transcript_2413416958.json','2025-03-28 19:50:03','2025-03-28 20:09:30','2025-03-28 20:09:30'),(1063,1710,'transcripts/miken/transcript_2411496129.json','2025-03-28 20:10:04','2025-03-28 20:24:57','2025-03-28 20:24:57'),(1064,1711,'transcripts/miken/transcript_2410636553.json','2025-03-28 20:30:04','2025-03-28 20:40:20','2025-03-28 20:40:20'),(1065,1712,'transcripts/miken/transcript_2409791776.json','2025-03-28 20:50:03','2025-03-28 21:10:57','2025-03-28 21:10:57'),(1066,1713,'transcripts/miken/transcript_2409080612.json','2025-03-28 21:10:57','2025-03-28 21:28:16','2025-03-28 21:28:16'),(1067,1714,'transcripts/agraelus/transcript_2415048664.json','2025-03-28 21:30:03','2025-03-28 21:41:07','2025-03-28 21:41:07'),(1068,1715,'transcripts/astatoro/transcript_2414954878.json','2025-03-28 21:41:07','2025-03-28 22:04:23','2025-03-28 22:04:23'),(1069,1716,'transcripts/claina/transcript_2414944522.json','2025-03-28 22:10:04','2025-03-28 22:15:49','2025-03-28 22:15:49'),(1070,1717,'transcripts/patrikturi/transcript_2414878198.json','2025-03-28 22:15:49','2025-03-28 22:29:33','2025-03-28 22:29:33'),(1071,1718,'transcripts/patrikturi/transcript_2414854280.json','2025-03-28 22:29:33','2025-03-28 22:31:01','2025-03-28 22:31:01'),(1072,1719,'transcripts/patrikturi/transcript_2414799461.json','2025-03-28 22:31:01','2025-03-28 22:37:12','2025-03-28 22:37:12'),(1073,1720,'transcripts/flyguncz/transcript_2415106646.json','2025-03-28 22:40:03','2025-03-28 22:56:58','2025-03-28 22:56:58'),(1074,1721,'transcripts/herdyn/transcript_2415099783.json','2025-03-28 23:00:03','2025-03-28 23:10:49','2025-03-28 23:10:49'),(1075,1722,'transcripts/spajkk/transcript_2415000332.json','2025-03-28 23:20:04','2025-03-28 23:37:45','2025-03-28 23:37:45'),(1076,1723,'transcripts/marty_vole/transcript_2415080096.json','2025-03-28 23:40:03','2025-03-28 23:47:08','2025-03-28 23:47:08'),(1077,1724,'transcripts/andrej_kalinin/transcript_2415213806.json','2025-03-29 00:00:04','2025-03-29 00:08:25','2025-03-29 00:08:25'),(1078,1726,'transcripts/avatar0fwar/transcript_2415002497.json','2025-03-29 00:10:04','2025-03-29 00:16:51','2025-03-29 00:16:51'),(1079,1727,'transcripts/heddi2k/transcript_2415112667.json','2025-03-29 00:30:04','2025-03-29 00:35:48','2025-03-29 00:35:48'),(1080,1728,'transcripts/fluffcz/transcript_2415116494.json','2025-03-29 00:50:04','2025-03-29 00:59:04','2025-03-29 00:59:04'),(1081,1729,'transcripts/forsen/transcript_2415119524.json','2025-03-29 01:10:04','2025-03-29 01:17:28','2025-03-29 01:17:28'),(1082,1730,'transcripts/kuruhs/transcript_2415055872.json','2025-03-29 01:30:04','2025-03-29 01:36:43','2025-03-29 01:36:43'),(1083,1731,'transcripts/paoloidolo/transcript_2415162692.json','2025-03-29 01:40:03','2025-03-29 01:42:28','2025-03-29 01:42:28'),(1084,1732,'transcripts/paoloidolo/transcript_2414897496.json','2025-03-29 01:50:03','2025-03-29 01:52:28','2025-03-29 01:52:28'),(1085,1733,'transcripts/39daph/transcript_2415112219.json','2025-03-29 02:10:03','2025-03-29 02:14:11','2025-03-29 02:14:11'),(1086,1734,'transcripts/39daph/transcript_2414747599.json','2025-03-29 03:00:03','2025-03-29 03:15:55','2025-03-29 03:15:55'),(1087,1735,'transcripts/knut/transcript_2415039337.json','2025-03-29 03:30:03','2025-03-29 03:47:24','2025-03-29 03:47:24'),(1088,1736,'transcripts/pawkt/transcript_2414925567.json','2025-03-29 04:10:04','2025-03-29 04:27:56','2025-03-29 04:27:56'),(1089,1737,'transcripts/vadikus007/transcript_2414972028.json','2025-03-29 04:40:04','2025-03-29 04:55:48','2025-03-29 04:55:48'),(1090,1738,'transcripts/esfandtv/transcript_2415054420.json','2025-03-29 05:50:04','2025-03-29 06:11:56','2025-03-29 06:11:56'),(1091,1739,'transcripts/esfandtv/transcript_2414625334.json','2025-03-29 06:20:03','2025-03-29 06:30:08','2025-03-29 06:30:08'),(1092,1740,'transcripts/cyr/transcript_2415177873.json','2025-03-29 06:50:04','2025-03-29 07:01:17','2025-03-29 07:01:17'),(1093,1741,'transcripts/khalamity/transcript_2414705194.json','2025-03-29 07:20:04','2025-03-29 07:32:06','2025-03-29 07:32:06'),(1094,1742,'transcripts/papaplatte/transcript_2415041533.json','2025-03-29 07:30:04','2025-03-29 07:43:06','2025-03-29 07:43:06'),(1095,1743,'transcripts/maxim/transcript_2414789767.json','2025-03-29 08:00:04','2025-03-29 08:14:16','2025-03-29 08:14:16'),(1096,1744,'transcripts/tolkin/transcript_2414879527.json','2025-03-29 08:20:05','2025-03-29 08:29:56','2025-03-29 08:29:56'),(1097,1746,'transcripts/ponce/transcript_2414970599.json','2025-03-29 08:40:05','2025-03-29 08:53:22','2025-03-29 08:53:22'),(1098,1749,'transcripts/shaunz/transcript_2414841394.json','2025-03-29 08:53:22','2025-03-29 08:57:12','2025-03-29 08:57:12'),(1099,1750,'transcripts/nisqyy/transcript_2414977564.json','2025-03-29 09:00:04','2025-03-29 09:03:43','2025-03-29 09:03:43'),(1100,1751,'transcripts/aloonea/transcript_2415039138.json','2025-03-29 09:10:04','2025-03-29 09:20:19','2025-03-29 09:20:19'),(1101,1753,'transcripts/loupiote3/transcript_2415316067.json','2025-03-29 09:30:04','2025-03-29 09:38:25','2025-03-29 09:38:25'),(1102,1756,'transcripts/sniper_biscuit/transcript_2415115702.json','2025-03-29 09:38:25','2025-03-29 09:40:23','2025-03-29 09:40:23'),(1103,1757,'transcripts/miken/transcript_2414993728.json','2025-03-29 09:50:03','2025-03-29 09:53:39','2025-03-29 09:53:39'),(1104,1758,'transcripts/agraelus/transcript_2415954296.json','2025-03-29 10:10:03','2025-03-29 10:26:07','2025-03-29 10:26:07'),(1105,1759,'transcripts/astatoro/transcript_2415819411.json','2025-03-29 10:40:03','2025-03-29 10:59:30','2025-03-29 10:59:30'),(1106,1760,'transcripts/claina/transcript_2415794917.json','2025-03-29 10:59:31','2025-03-29 11:04:27','2025-03-29 11:04:27'),(1107,1761,'transcripts/patrikturi/transcript_2415634246.json','2025-03-29 11:10:04','2025-03-29 11:39:50','2025-03-29 11:39:50'),(1108,1762,'transcripts/flyguncz/transcript_2415921087.json','2025-03-29 11:40:04','2025-03-29 11:48:50','2025-03-29 11:48:50'),(1109,1763,'transcripts/herdyn/transcript_2416003167.json','2025-03-29 11:50:04','2025-03-29 12:02:55','2025-03-29 12:02:55'),(1110,1764,'transcripts/spajkk/transcript_2415820480.json','2025-03-29 12:30:04','2025-03-29 12:41:06','2025-03-29 12:41:06'),(1111,1765,'transcripts/marty_vole/transcript_2415966802.json','2025-03-29 12:50:03','2025-03-29 12:56:20','2025-03-29 12:56:20'),(1112,1766,'transcripts/marty_vole/transcript_2415680065.json','2025-03-29 13:00:03','2025-03-29 13:09:05','2025-03-29 13:09:05'),(1113,1767,'transcripts/domovnikofc/transcript_2415950860.json','2025-03-29 13:20:03','2025-03-29 13:32:21','2025-03-29 13:32:21'),(1114,1769,'transcripts/jorantheviking/transcript_2415769205.json','2025-03-29 13:40:03','2025-03-29 13:53:08','2025-03-29 13:53:08'),(1117,1678,'transcripts/39daph/transcript_2413918528.json','2025-03-29 20:00:04','2025-03-29 20:19:24','2025-03-29 20:19:24'),(1118,1772,'transcripts/tensterakdary/transcript_2415887208.json','2025-03-29 20:10:03','2025-03-29 20:17:09','2025-03-29 20:17:09'),(1119,1773,'transcripts/kuruhs/transcript_2415901315.json','2025-03-29 20:30:04','2025-03-29 20:39:07','2025-03-29 20:39:07'),(1120,1774,'transcripts/paoloidolo/transcript_2415727683.json','2025-03-29 21:00:04','2025-03-29 21:07:22','2025-03-29 21:07:22'),(1121,1775,'transcripts/39daph/transcript_2415655702.json','2025-03-29 21:50:04','2025-03-29 22:06:03','2025-03-29 22:06:03'),(1122,1776,'transcripts/sodapoppin/transcript_2415897565.json','2025-03-29 22:30:03','2025-03-29 22:42:08','2025-03-29 22:42:08'),(1123,1777,'transcripts/nmplol/transcript_2415809378.json','2025-03-29 22:50:04','2025-03-29 22:57:53','2025-03-29 22:57:53'),(1124,1778,'transcripts/rachtaz/transcript_2415812832.json','2025-03-29 23:00:04','2025-03-29 23:06:25','2025-03-29 23:06:25'),(1125,1779,'transcripts/pawkt/transcript_2415761908.json','2025-03-29 23:30:03','2025-03-29 23:39:04','2025-03-29 23:39:04'),(1126,1780,'transcripts/wakewilder/transcript_2416087620.json','2025-03-29 23:50:03','2025-03-30 00:07:38','2025-03-30 00:07:38'),(1127,1781,'transcripts/cooksux/transcript_2415706579.json','2025-03-30 00:20:04','2025-03-30 00:35:06','2025-03-30 00:35:06'),(1128,1782,'transcripts/papaplatte/transcript_2415877101.json','2025-03-30 00:30:03','2025-03-30 00:35:44','2025-03-30 00:35:44'),(1129,1783,'transcripts/maxim/transcript_2415683096.json','2025-03-30 00:50:04','2025-03-30 01:01:25','2025-03-30 01:01:25'),(1130,1784,'transcripts/tolkin/transcript_2415718307.json','2025-03-30 01:10:04','2025-03-30 01:30:23','2025-03-30 01:30:23'),(1131,1785,'transcripts/ponce/transcript_2416025119.json','2025-03-30 01:40:04','2025-03-30 01:48:16','2025-03-30 01:48:16'),(1132,1788,'transcripts/shaunz/transcript_2415701417.json','2025-03-30 01:48:16','2025-03-30 01:50:13','2025-03-30 01:50:13'),(1133,1789,'transcripts/skyyart/transcript_2415861353.json','2025-03-30 01:50:13','2025-03-30 01:57:54','2025-03-30 01:57:54'),(1134,1790,'transcripts/dye_live/transcript_2415854851.json','2025-03-30 02:00:04','2025-03-30 02:08:37','2025-03-30 02:08:37'),(1135,1791,'transcripts/aloonea/transcript_2415965589.json','2025-03-30 02:50:04','2025-03-30 03:11:57','2025-03-30 03:11:57'),(1136,1794,'transcripts/miken/transcript_2415925194.json','2025-03-30 03:00:03','2025-03-30 03:03:40','2025-03-30 03:03:40'),(1137,1795,'transcripts/bladeito/transcript_2415856151.json','2025-03-30 03:20:04','2025-03-30 03:38:51','2025-03-30 03:38:51'),(1138,1796,'transcripts/cyr/transcript_2416091764.json','2025-03-30 04:00:04','2025-03-30 04:18:32','2025-03-30 04:18:32'),(1139,1797,'transcripts/mirza_jahic/transcript_2416168846.json','2025-03-30 04:10:04','2025-03-30 04:17:11','2025-03-30 04:17:11'),(1140,1798,'transcripts/mirza_jahic/transcript_2416077489.json','2025-03-30 04:20:04','2025-03-30 04:23:09','2025-03-30 04:23:09'),(1141,1799,'transcripts/agraelus/transcript_2416870756.json','2025-03-30 04:50:03','2025-03-30 05:01:18','2025-03-30 05:01:18'),(1142,1800,'transcripts/astatoro/transcript_2416684937.json','2025-03-30 05:20:03','2025-03-30 05:32:30','2025-03-30 05:32:30'),(1143,1801,'transcripts/claina/transcript_2416869701.json','2025-03-30 05:40:04','2025-03-30 05:45:54','2025-03-30 05:45:54'),(1144,1802,'transcripts/claina/transcript_2416688834.json','2025-03-30 05:50:04','2025-03-30 05:56:09','2025-03-30 05:56:09'),(1145,1803,'transcripts/claina/transcript_2416657192.json','2025-03-30 05:56:09','2025-03-30 05:57:48','2025-03-30 05:57:48'),(1146,1804,'transcripts/patrikturi/transcript_2416508735.json','2025-03-30 06:20:03','2025-03-30 06:50:43','2025-03-30 06:50:43'),(1147,1805,'transcripts/flyguncz/transcript_2416856803.json','2025-03-30 07:00:03','2025-03-30 07:14:14','2025-03-30 07:14:14'),(1148,1806,'transcripts/herdyn/transcript_2416825330.json','2025-03-30 07:14:14','2025-03-30 07:27:01','2025-03-30 07:27:01'),(1149,1807,'transcripts/spajkk/transcript_2416963212.json','2025-03-30 07:30:04','2025-03-30 07:38:18','2025-03-30 07:38:18'),(1150,1808,'transcripts/spajkk/transcript_2416703019.json','2025-03-30 07:38:18','2025-03-30 07:49:12','2025-03-30 07:49:12'),(1151,1809,'transcripts/marty_vole/transcript_2416865496.json','2025-03-30 07:50:03','2025-03-30 07:58:25','2025-03-30 07:58:25'),(1152,1810,'transcripts/marty_vole/transcript_2416569241.json','2025-03-30 07:58:25','2025-03-30 08:04:19','2025-03-30 08:04:19'),(1153,1811,'transcripts/andrej_kalinin/transcript_2416942711.json','2025-03-30 08:10:03','2025-03-30 08:15:41','2025-03-30 08:15:41'),(1154,1812,'transcripts/domovnikofc/transcript_2416858198.json','2025-03-30 08:30:03','2025-03-30 08:52:41','2025-03-30 08:52:41'),(1155,1813,'transcripts/avatar0fwar/transcript_2416767415.json','2025-03-30 09:00:04','2025-03-30 09:07:24','2025-03-30 09:07:24'),(1156,1814,'transcripts/vvudy/transcript_2416605497.json','2025-03-30 09:07:24','2025-03-30 09:14:47','2025-03-30 09:14:47'),(1157,1815,'transcripts/himtheoldboy/transcript_2416912804.json','2025-03-30 09:14:47','2025-03-30 09:21:56','2025-03-30 09:21:56'),(1158,1816,'transcripts/himtheoldboy/transcript_2416611490.json','2025-03-30 09:30:03','2025-03-30 09:51:05','2025-03-30 09:51:05'),(1159,1817,'transcripts/fluffcz/transcript_2416852065.json','2025-03-30 10:00:04','2025-03-30 10:13:59','2025-03-30 10:13:59'),(1160,1818,'transcripts/forsen/transcript_2416724282.json','2025-03-30 10:00:04','2025-03-30 10:04:30','2025-03-30 10:04:30'),(1161,1819,'transcripts/paoloidolo/transcript_2416750501.json','2025-03-30 10:10:04','2025-03-30 10:15:16','2025-03-30 10:15:16'),(1162,1820,'transcripts/paoloidolo/transcript_2416749755.json','2025-03-30 10:15:16','2025-03-30 10:15:19','2025-03-30 10:15:19'),(1163,1821,'transcripts/paoloidolo/transcript_2416623160.json','2025-03-30 10:20:04','2025-03-30 10:22:21','2025-03-30 10:22:21'),(1164,1822,'transcripts/39daph/transcript_2416488557.json','2025-03-30 10:50:04','2025-03-30 11:00:02','2025-03-30 11:00:02'),(1165,1823,'transcripts/sodapoppin/transcript_2416758223.json','2025-03-30 11:40:04','2025-03-30 11:53:15','2025-03-30 11:53:15'),(1166,1824,'transcripts/nymn/transcript_2416616287.json','2025-03-30 12:00:04','2025-03-30 12:05:48','2025-03-30 12:05:48'),(1167,1825,'transcripts/nymn/transcript_2416547334.json','2025-03-30 12:05:48','2025-03-30 12:05:51','2025-03-30 12:05:51'),(1168,1826,'transcripts/knut/transcript_2416712792.json','2025-03-30 12:20:04','2025-03-30 12:36:46','2025-03-30 12:36:46'),(1169,1827,'transcripts/rachtaz/transcript_2416764771.json','2025-03-30 12:40:03','2025-03-30 12:46:17','2025-03-30 12:46:17'),(1170,1828,'transcripts/pawkt/transcript_2416654172.json','2025-03-30 13:00:04','2025-03-30 13:07:57','2025-03-30 13:07:57'),(1171,1829,'transcripts/vadikus007/transcript_2416608612.json','2025-03-30 13:07:57','2025-03-30 13:09:56','2025-03-30 13:09:56'),(1172,1830,'transcripts/cooksux/transcript_2416505404.json','2025-03-30 13:50:04','2025-03-30 14:04:32','2025-03-30 14:04:32'),(1173,1831,'transcripts/cyr/transcript_2416878908.json','2025-03-30 14:20:03','2025-03-30 14:29:35','2025-03-30 14:29:35'),(1174,1832,'transcripts/khalamity/transcript_2416528527.json','2025-03-30 14:29:35','2025-03-30 14:30:38','2025-03-30 14:30:38'),(1175,1833,'transcripts/khalamity/transcript_2416332354.json','2025-03-30 14:40:04','2025-03-30 14:50:42','2025-03-30 14:50:42'),(1176,1834,'transcripts/papaplatte/transcript_2416762311.json','2025-03-30 15:00:04','2025-03-30 15:10:48','2025-03-30 15:10:48'),(1177,1835,'transcripts/mirza_jahic/transcript_2416943383.json','2025-03-30 15:20:04','2025-03-30 15:31:28','2025-03-30 15:31:28'),(1178,1836,'transcripts/rewinside/transcript_2416696182.json','2025-03-30 15:40:04','2025-03-30 15:45:03','2025-03-30 15:45:03'),(1179,1837,'transcripts/maxim/transcript_2416501479.json','2025-03-30 15:50:04','2025-03-30 16:03:53','2025-03-30 16:03:53'),(1180,1838,'transcripts/tolkin/transcript_2416581613.json','2025-03-30 16:10:04','2025-03-30 16:32:18','2025-03-30 16:32:18'),(1181,1840,'transcripts/ponce/transcript_2416662574.json','2025-03-30 16:40:04','2025-03-30 16:58:51','2025-03-30 16:58:51'),(1182,1846,'transcripts/shaunz/transcript_2416561693.json','2025-03-30 16:58:51','2025-03-30 17:01:12','2025-03-30 17:01:12'),(1183,1847,'transcripts/skyyart/transcript_2416772723.json','2025-03-30 17:10:04','2025-03-30 17:18:35','2025-03-30 17:18:35'),(1184,1848,'transcripts/dye_live/transcript_2416715515.json','2025-03-30 17:18:35','2025-03-30 17:27:42','2025-03-30 17:27:42'),(1185,1849,'transcripts/aloonea/transcript_2416798281.json','2025-03-30 17:30:04','2025-03-30 17:42:54','2025-03-30 17:42:54'),(1186,1852,'transcripts/helydia/transcript_2416755240.json','2025-03-30 17:50:04','2025-03-30 18:00:20','2025-03-30 18:00:20'),(1187,1853,'transcripts/kaffworld/transcript_2416601415.json','2025-03-30 18:00:20','2025-03-30 18:11:56','2025-03-30 18:11:56'),(1188,1855,'transcripts/sniper_biscuit/transcript_2416957456.json','2025-03-30 18:20:04','2025-03-30 18:30:56','2025-03-30 18:30:56'),(1189,1856,'transcripts/sniper_biscuit/transcript_2416777840.json','2025-03-30 18:30:56','2025-03-30 18:37:37','2025-03-30 18:37:37'),(1190,1857,'transcripts/miken/transcript_2416741631.json','2025-03-30 18:40:04','2025-03-30 18:56:10','2025-03-30 18:56:10'),(1191,1858,'transcripts/agraelus/transcript_2417747866.json','2025-03-30 19:20:03','2025-03-30 19:33:09','2025-03-30 19:33:09'),(1192,1859,'transcripts/claina/transcript_2417542176.json','2025-03-30 19:40:03','2025-03-30 19:48:12','2025-03-30 19:48:12'),(1193,1860,'transcripts/patrikturi/transcript_2417387849.json','2025-03-30 20:00:03','2025-03-30 20:33:54','2025-03-30 20:33:54'),(1194,1861,'transcripts/flyguncz/transcript_2417680384.json','2025-03-30 20:40:03','2025-03-30 20:49:00','2025-03-30 20:49:00'),(1195,1862,'transcripts/spajkk/transcript_2417591310.json','2025-03-30 20:50:03','2025-03-30 21:02:09','2025-03-30 21:02:09'),(1196,1863,'transcripts/bladeito/transcript_2417699029.json','2025-03-30 21:10:03','2025-03-30 21:21:10','2025-03-30 21:21:10'),(1197,1864,'transcripts/marty_vole/transcript_2417686840.json','2025-03-30 21:21:10','2025-03-30 21:26:16','2025-03-30 21:26:16'),(1198,1865,'transcripts/marty_vole/transcript_2417432174.json','2025-03-30 21:30:04','2025-03-30 21:36:27','2025-03-30 21:36:27'),(1199,1866,'transcripts/andrej_kalinin/transcript_2417807025.json','2025-03-30 21:50:03','2025-03-30 22:03:20','2025-03-30 22:03:20'),(1200,1867,'transcripts/domovnikofc/transcript_2417688777.json','2025-03-30 22:20:04','2025-03-30 22:33:50','2025-03-30 22:33:50'),(1201,1868,'transcripts/jorantheviking/transcript_2417501738.json','2025-03-30 22:40:04','2025-03-30 22:57:55','2025-03-30 22:57:55'),(1202,1870,'transcripts/avatar0fwar/transcript_2417638771.json','2025-03-31 01:10:04','2025-03-31 01:14:08','2025-03-31 01:14:08'),(1203,1871,'transcripts/heddi2k/transcript_2417694785.json','2025-03-31 01:30:04','2025-03-31 01:46:36','2025-03-31 01:46:36'),(1204,1872,'transcripts/vvudy/transcript_2417476049.json','2025-03-31 01:46:36','2025-03-31 01:50:31','2025-03-31 01:50:31'),(1205,1873,'transcripts/vvudy/transcript_2417439983.json','2025-03-31 02:00:03','2025-03-31 02:05:02','2025-03-31 02:05:02'),(1206,1874,'transcripts/fluffcz/transcript_2417586157.json','2025-03-31 02:05:02','2025-03-31 02:12:55','2025-03-31 02:12:55'),(1207,1875,'transcripts/tensterakdary/transcript_2417612257.json','2025-03-31 02:12:55','2025-03-31 02:18:06','2025-03-31 02:18:06'),(1208,1876,'transcripts/forsen/transcript_2417584029.json','2025-03-31 02:20:03','2025-03-31 02:29:07','2025-03-31 02:29:07'),(1209,1877,'transcripts/paoloidolo/transcript_2417478306.json','2025-03-31 02:40:03','2025-03-31 02:52:07','2025-03-31 02:52:07'),(1210,1878,'transcripts/paoloidolo/transcript_2417476299.json','2025-03-31 02:52:07','2025-03-31 02:52:16','2025-03-31 02:52:16'),(1211,1879,'transcripts/paoloidolo/transcript_2417469757.json','2025-03-31 02:52:16','2025-03-31 02:52:28','2025-03-31 02:52:28'),(1212,1880,'transcripts/39daph/transcript_2417354709.json','2025-03-31 03:30:04','2025-03-31 03:46:10','2025-03-31 03:46:10'),(1213,1881,'transcripts/sodapoppin/transcript_2417644556.json','2025-03-31 04:10:04','2025-03-31 04:22:02','2025-03-31 04:22:02'),(1214,1882,'transcripts/nymn/transcript_2417765850.json','2025-03-31 04:40:04','2025-03-31 04:44:58','2025-03-31 04:44:58'),(1215,1883,'transcripts/knut/transcript_2417634389.json','2025-03-31 05:30:04','2025-03-31 05:41:06','2025-03-31 05:41:06'),(1216,1884,'transcripts/rachtaz/transcript_2417591351.json','2025-03-31 05:50:04','2025-03-31 05:55:31','2025-03-31 05:55:31'),(1217,1885,'transcripts/pawkt/transcript_2417475346.json','2025-03-31 06:20:04','2025-03-31 06:26:30','2025-03-31 06:26:30'),(1218,1886,'transcripts/cooksux/transcript_2417580308.json','2025-03-31 06:40:04','2025-03-31 06:44:03','2025-03-31 06:44:03'),(1219,1887,'transcripts/cooksux/transcript_2417331568.json','2025-03-31 07:20:03','2025-03-31 07:33:53','2025-03-31 07:33:53'),(1220,1888,'transcripts/cyr/transcript_2417749273.json','2025-03-31 07:50:04','2025-03-31 07:57:25','2025-03-31 07:57:25'),(1221,1889,'transcripts/maxim/transcript_2417377668.json','2025-03-31 08:00:04','2025-03-31 08:12:46','2025-03-31 08:12:46'),(1222,1896,'transcripts/shaunz/transcript_2417422956.json','2025-03-31 08:20:04','2025-03-31 08:23:48','2025-03-31 08:23:48'),(1223,1897,'transcripts/dye_live/transcript_2417571261.json','2025-03-31 08:23:48','2025-03-31 08:33:48','2025-03-31 08:33:48'),(1224,1898,'transcripts/aloonea/transcript_2417650105.json','2025-03-31 08:40:04','2025-03-31 08:45:18','2025-03-31 08:45:18'),(1225,1900,'transcripts/kaffworld/transcript_2417460880.json','2025-03-31 08:50:04','2025-03-31 08:59:08','2025-03-31 08:59:08'),(1226,1902,'transcripts/sniper_biscuit/transcript_2417675315.json','2025-03-31 09:20:04','2025-03-31 09:28:28','2025-03-31 09:28:28'),(1227,1903,'transcripts/miken/transcript_2417589734.json','2025-03-31 09:30:03','2025-03-31 09:40:30','2025-03-31 09:40:30'),(1228,1904,'transcripts/mirza_jahic/transcript_2417809308.json','2025-03-31 09:40:04','2025-03-31 09:49:20','2025-03-31 09:49:20'),(1229,1890,'transcripts/vlesk/transcript_2417713454.json','2025-03-31 09:50:04','2025-03-31 09:53:37','2025-03-31 09:53:37'),(1230,1907,'transcripts/agraelus/transcript_2418750049.json','2025-03-31 10:10:03','2025-03-31 10:23:50','2025-03-31 10:23:50'),(1231,1908,'transcripts/patrikturi/transcript_2418278909.json','2025-03-31 10:40:03','2025-03-31 11:12:25','2025-03-31 11:12:25'),(1232,1909,'transcripts/spajkk/transcript_2418787786.json','2025-03-31 11:20:03','2025-03-31 11:34:36','2025-03-31 11:34:36'),(1233,1910,'transcripts/spajkk/transcript_2418556069.json','2025-03-31 11:34:36','2025-03-31 11:44:05','2025-03-31 11:44:05'),(1234,1911,'transcripts/marty_vole/transcript_2418540209.json','2025-03-31 11:44:05','2025-03-31 11:53:52','2025-03-31 11:53:52'),(1235,1912,'transcripts/andrej_kalinin/transcript_2418761325.json','2025-03-31 12:00:03','2025-03-31 12:11:14','2025-03-31 12:11:14'),(1236,1913,'transcripts/domovnikofc/transcript_2418610664.json','2025-03-31 12:11:14','2025-03-31 12:31:53','2025-03-31 12:31:53'),(1237,1914,'transcripts/heddi2k/transcript_2418677747.json','2025-03-31 12:40:03','2025-03-31 12:52:36','2025-03-31 12:52:36'),(1238,1915,'transcripts/fluffcz/transcript_2418665034.json','2025-03-31 13:00:03','2025-03-31 13:09:59','2025-03-31 13:09:59'),(1239,1916,'transcripts/tensterakdary/transcript_2418532217.json','2025-03-31 13:09:59','2025-03-31 13:20:25','2025-03-31 13:20:25'),(1240,1917,'transcripts/forsen/transcript_2418518719.json','2025-03-31 13:10:03','2025-03-31 13:19:43','2025-03-31 13:19:43'),(1241,1918,'transcripts/kuruhs/transcript_2418583291.json','2025-03-31 13:30:04','2025-03-31 13:42:22','2025-03-31 13:42:22'),(1242,1919,'transcripts/paoloidolo/transcript_2418714665.json','2025-03-31 14:00:04','2025-03-31 14:03:31','2025-03-31 14:03:31'),(1243,1920,'transcripts/paoloidolo/transcript_2418346793.json','2025-03-31 14:20:04','2025-03-31 14:24:06','2025-03-31 14:24:06'),(1244,1921,'transcripts/39daph/transcript_2418238673.json','2025-03-31 15:10:04','2025-03-31 15:24:32','2025-03-31 15:24:32'),(1245,1922,'transcripts/sodapoppin/transcript_2418598946.json','2025-03-31 15:50:04','2025-03-31 16:04:50','2025-03-31 16:04:50'),(1246,1923,'transcripts/knut/transcript_2418555019.json','2025-03-31 16:30:04','2025-03-31 16:51:34','2025-03-31 16:51:34'),(1247,1924,'transcripts/rachtaz/transcript_2418531142.json','2025-03-31 17:00:04','2025-03-31 17:09:55','2025-03-31 17:09:55'),(1248,1925,'transcripts/pawkt/transcript_2418445961.json','2025-03-31 17:30:04','2025-03-31 17:48:40','2025-03-31 17:48:40'),(1249,1926,'transcripts/thehollowedknight/transcript_2418856229.json','2025-03-31 18:00:04','2025-03-31 18:04:24','2025-03-31 18:04:24'),(1250,1927,'transcripts/wakewilder/transcript_2418792456.json','2025-03-31 18:10:04','2025-03-31 18:22:31','2025-03-31 18:22:31'),(1251,1928,'transcripts/wakewilder/transcript_2418167829.json','2025-03-31 18:30:03','2025-03-31 18:33:13','2025-03-31 18:33:13'),(1252,1930,'transcripts/khalamity/transcript_2418129676.json','2025-03-31 18:50:03','2025-03-31 19:03:36','2025-03-31 19:03:36'),(1253,1931,'transcripts/papaplatte/transcript_2418496886.json','2025-03-31 19:00:03','2025-03-31 19:11:31','2025-03-31 19:11:31'),(1254,1932,'transcripts/rewinside/transcript_2418601158.json','2025-03-31 19:20:04','2025-03-31 19:26:18','2025-03-31 19:26:18'),(1255,1933,'transcripts/rewinside/transcript_2418498364.json','2025-03-31 19:26:18','2025-03-31 19:31:34','2025-03-31 19:31:34'),(1256,1934,'transcripts/tolkin/transcript_2418430029.json','2025-03-31 19:40:04','2025-03-31 19:57:55','2025-03-31 19:57:55'),(1257,1935,'transcripts/vlesk/transcript_2418526020.json','2025-03-31 20:00:04','2025-03-31 20:13:12','2025-03-31 20:13:12'),(1258,1938,'transcripts/valouzz/transcript_2418601926.json','2025-03-31 20:20:04','2025-03-31 20:35:28','2025-03-31 20:35:28'),(1259,1941,'transcripts/skyyart/transcript_2418342663.json','2025-03-31 20:40:04','2025-03-31 20:51:49','2025-03-31 20:51:49'),(1260,1942,'transcripts/dye_live/transcript_2418515968.json','2025-03-31 20:51:49','2025-03-31 20:57:18','2025-03-31 20:57:18'),(1261,1943,'transcripts/aloonea/transcript_2418438505.json','2025-03-31 21:00:04','2025-03-31 21:16:32','2025-03-31 21:16:32'),(1262,1944,'transcripts/helydia/transcript_2418435097.json','2025-03-31 21:20:04','2025-03-31 21:29:44','2025-03-31 21:29:44'),(1263,1946,'transcripts/miken/transcript_2418574802.json','2025-03-31 21:50:03','2025-03-31 22:05:35','2025-03-31 22:05:35'),(1264,1947,'transcripts/bladeito/transcript_2418407252.json','2025-03-31 22:10:04','2025-03-31 22:31:39','2025-03-31 22:31:39'),(1265,1950,'transcripts/agraelus/transcript_2419603195.json','2025-03-31 22:40:03','2025-03-31 22:44:35','2025-03-31 22:44:35'),(1266,1951,'transcripts/astatoro/transcript_2419371559.json','2025-03-31 23:00:03','2025-03-31 23:13:52','2025-03-31 23:13:52'),(1267,1952,'transcripts/claina/transcript_2419280888.json','2025-03-31 23:30:03','2025-03-31 23:50:46','2025-03-31 23:50:46'),(1268,1953,'transcripts/claina/transcript_2419222405.json','2025-03-31 23:50:46','2025-03-31 23:55:49','2025-03-31 23:55:49'),(1269,1954,'transcripts/patrikturi/transcript_2419187495.json','2025-04-01 00:00:03','2025-04-01 00:31:09','2025-04-01 00:31:09'),(1270,1955,'transcripts/herdyn/transcript_2419576271.json','2025-04-01 00:40:06','2025-04-01 00:47:45','2025-04-01 00:47:45'),(1271,1956,'transcripts/spajkk/transcript_2419753419.json','2025-04-01 00:47:45','2025-04-01 00:55:58','2025-04-01 00:55:58'),(1272,1957,'transcripts/spajkk/transcript_2419448425.json','2025-04-01 01:00:04','2025-04-01 01:14:40','2025-04-01 01:14:40'),(1273,1958,'transcripts/marty_vole/transcript_2419407025.json','2025-04-01 01:20:03','2025-04-01 01:31:40','2025-04-01 01:31:40'),(1274,1959,'transcripts/domovnikofc/transcript_2419624191.json','2025-04-01 01:31:40','2025-04-01 01:40:06','2025-04-01 01:40:06'),(1275,1961,'transcripts/jorantheviking/transcript_2419349484.json','2025-04-01 01:50:03','2025-04-01 02:14:19','2025-04-01 02:14:19'),(1276,1962,'transcripts/heddi2k/transcript_2419660699.json','2025-04-01 02:20:04','2025-04-01 02:30:29','2025-04-01 02:30:29'),(1277,1963,'transcripts/fluffcz/transcript_2419545430.json','2025-04-01 02:30:29','2025-04-01 02:40:44','2025-04-01 02:40:44'),(1278,1965,'transcripts/forsen/transcript_2419415255.json','2025-04-01 02:40:03','2025-04-01 02:47:24','2025-04-01 02:47:24'),(1279,1964,'transcripts/tensterakdary/transcript_2419401945.json','2025-04-01 02:50:04','2025-04-01 02:55:40','2025-04-01 02:55:40'),(1280,1966,'transcripts/kuruhs/transcript_2419480909.json','2025-04-01 03:10:03','2025-04-01 03:22:41','2025-04-01 03:22:41'),(1281,1967,'transcripts/paoloidolo/transcript_2419724393.json','2025-04-01 03:22:41','2025-04-01 03:25:46','2025-04-01 03:25:46'),(1282,1968,'transcripts/paoloidolo/transcript_2419303709.json','2025-04-01 03:30:04','2025-04-01 03:34:18','2025-04-01 03:34:18'),(1283,1969,'transcripts/39daph/transcript_2419182464.json','2025-04-01 04:30:04','2025-04-01 04:45:16','2025-04-01 04:45:16'),(1284,1970,'transcripts/sodapoppin/transcript_2419513524.json','2025-04-01 05:00:04','2025-04-01 05:10:23','2025-04-01 05:10:23'),(1285,1971,'transcripts/nymn/transcript_2419416595.json','2025-04-01 05:10:23','2025-04-01 05:10:55','2025-04-01 05:10:55'),(1286,1972,'transcripts/nymn/transcript_2419398580.json','2025-04-01 05:10:55','2025-04-01 05:11:32','2025-04-01 05:11:32'),(1287,1973,'transcripts/nymn/transcript_2419382690.json','2025-04-01 05:11:32','2025-04-01 05:12:04','2025-04-01 05:12:04'),(1288,1974,'transcripts/nymn/transcript_2419332727.json','2025-04-01 05:20:04','2025-04-01 05:23:09','2025-04-01 05:23:09'),(1289,1975,'transcripts/knut/transcript_2419792581.json','2025-04-01 05:23:09','2025-04-01 05:29:02','2025-04-01 05:29:02'),(1290,1976,'transcripts/rachtaz/transcript_2419418220.json','2025-04-01 05:50:04','2025-04-01 05:56:04','2025-04-01 05:56:04'),(1291,1977,'transcripts/pawkt/transcript_2419330514.json','2025-04-01 06:30:04','2025-04-01 06:44:07','2025-04-01 06:44:07'),(1292,1978,'transcripts/khalamity/transcript_2419033397.json','2025-04-01 06:50:04','2025-04-01 07:02:43','2025-04-01 07:02:43'),(1293,1979,'transcripts/maxim/transcript_2419191872.json','2025-04-01 07:10:04','2025-04-01 07:19:02','2025-04-01 07:19:02'),(1294,1980,'transcripts/tolkin/transcript_2419355288.json','2025-04-01 07:30:04','2025-04-01 07:50:40','2025-04-01 07:50:40'),(1295,1981,'transcripts/vlesk/transcript_2419329520.json','2025-04-01 08:00:04','2025-04-01 08:08:33','2025-04-01 08:08:33'),(1296,1984,'transcripts/ponce/transcript_2419534641.json','2025-04-01 08:20:05','2025-04-01 08:23:42','2025-04-01 08:23:42'),(1297,1986,'transcripts/valouzz/transcript_2419491276.json','2025-04-01 08:40:05','2025-04-01 08:53:38','2025-04-01 08:53:38'),(1298,1988,'transcripts/nisqyy/transcript_2419277857.json','2025-04-01 08:53:38','2025-04-01 08:54:52','2025-04-01 08:54:52'),(1299,1989,'transcripts/dye_live/transcript_2419421257.json','2025-04-01 09:00:04','2025-04-01 09:07:25','2025-04-01 09:07:25'),(1300,1990,'transcripts/aloonea/transcript_2419449787.json','2025-04-01 09:30:04','2025-04-01 09:39:59','2025-04-01 09:39:59'),(1301,1991,'transcripts/kaffworld/transcript_2419298202.json','2025-04-01 09:40:05','2025-04-01 09:53:14','2025-04-01 09:53:14'),(1302,1993,'transcripts/miken/transcript_2419479279.json','2025-04-01 10:00:03','2025-04-01 10:03:39','2025-04-01 10:03:39'),(1303,1994,'transcripts/bladeito/transcript_2419312510.json','2025-04-01 10:20:04','2025-04-01 10:42:18','2025-04-01 10:42:18'),(1304,1996,'transcripts/amfikcz/transcript_2419523712.json','2025-04-01 10:50:03','2025-04-01 11:01:47','2025-04-01 11:01:47'),(1305,1997,'transcripts/agraelus/transcript_2420440174.json','2025-04-01 11:10:03','2025-04-01 11:23:19','2025-04-01 11:23:19'),(1306,1998,'transcripts/astatoro/transcript_2420227336.json','2025-04-01 11:30:04','2025-04-01 11:46:09','2025-04-01 11:46:09'),(1307,1999,'transcripts/claina/transcript_2420239349.json','2025-04-01 11:46:09','2025-04-01 11:51:17','2025-04-01 11:51:17'),(1308,2000,'transcripts/patrikturi/transcript_2420078773.json','2025-04-01 12:00:03','2025-04-01 12:25:46','2025-04-01 12:25:46'),(1309,2001,'transcripts/flyguncz/transcript_2420392759.json','2025-04-01 12:30:04','2025-04-01 12:39:01','2025-04-01 12:39:01'),(1310,2003,'transcripts/spajkk/transcript_2420219641.json','2025-04-01 12:39:01','2025-04-01 12:54:05','2025-04-01 12:54:05'),(1311,2004,'transcripts/marty_vole/transcript_2420327579.json','2025-04-01 13:00:03','2025-04-01 13:07:48','2025-04-01 13:07:48'),(1312,2005,'transcripts/marty_vole/transcript_2420142674.json','2025-04-01 13:07:48','2025-04-01 13:14:51','2025-04-01 13:14:51'),(1313,2006,'transcripts/andrej_kalinin/transcript_2420475910.json','2025-04-01 13:20:03','2025-04-01 13:34:16','2025-04-01 13:34:16'),(1314,2007,'transcripts/jorantheviking/transcript_2420140864.json','2025-04-01 13:40:04','2025-04-01 13:53:37','2025-04-01 13:53:37'),(1315,2008,'transcripts/mullersie/transcript_2420193284.json','2025-04-01 13:53:37','2025-04-01 14:02:10','2025-04-01 14:02:10'),(1316,2009,'transcripts/avatar0fwar/transcript_2420356976.json','2025-04-01 14:10:03','2025-04-01 14:20:40','2025-04-01 14:20:40'),(1317,2010,'transcripts/heddi2k/transcript_2420375697.json','2025-04-01 14:30:04','2025-04-01 14:43:23','2025-04-01 14:43:23'),(1318,2011,'transcripts/vvudy/transcript_2420191144.json','2025-04-01 14:43:23','2025-04-01 14:44:44','2025-04-01 14:44:44'),(1319,2012,'transcripts/fluffcz/transcript_2420353000.json','2025-04-01 14:50:03','2025-04-01 15:01:54','2025-04-01 15:01:54'),(1320,2013,'transcripts/tensterakdary/transcript_2420287863.json','2025-04-01 15:10:03','2025-04-01 15:19:28','2025-04-01 15:19:28'),(1321,2014,'transcripts/forsen/transcript_2420270077.json','2025-04-01 15:20:04','2025-04-01 15:30:15','2025-04-01 15:30:15'),(1322,2015,'transcripts/kuruhs/transcript_2420312204.json','2025-04-01 15:50:04','2025-04-01 16:03:09','2025-04-01 16:03:09'),(1323,2016,'transcripts/paoloidolo/transcript_2420538633.json','2025-04-01 16:10:04','2025-04-01 16:11:53','2025-04-01 16:11:53'),(1324,2017,'transcripts/paoloidolo/transcript_2420178665.json','2025-04-01 16:11:53','2025-04-01 16:14:52','2025-04-01 16:14:52'),(1325,2018,'transcripts/39daph/transcript_2420020239.json','2025-04-01 17:20:03','2025-04-01 17:39:59','2025-04-01 17:39:59'),(1326,2019,'transcripts/knut/transcript_2420329978.json','2025-04-01 18:30:03','2025-04-01 18:50:40','2025-04-01 18:50:40'),(1327,2020,'transcripts/rachtaz/transcript_2420295973.json','2025-04-01 19:00:04','2025-04-01 19:03:16','2025-04-01 19:03:16'),(1328,2021,'transcripts/wakewilder/transcript_2419964605.json','2025-04-01 19:10:04','2025-04-01 19:16:18','2025-04-01 19:16:18'),(1329,2022,'transcripts/vadikus007/transcript_2420176438.json','2025-04-01 19:20:04','2025-04-01 19:26:44','2025-04-01 19:26:44'),(1330,2023,'transcripts/esfandtv/transcript_2420429242.json','2025-04-01 19:40:04','2025-04-01 19:47:44','2025-04-01 19:47:44'),(1331,2024,'transcripts/cooksux/transcript_2420107204.json','2025-04-01 20:20:04','2025-04-01 20:36:39','2025-04-01 20:36:39'),(1332,2025,'transcripts/cyr/transcript_2420466483.json','2025-04-01 21:00:04','2025-04-01 21:15:02','2025-04-01 21:15:02'),(1333,2026,'transcripts/khalamity/transcript_2419991380.json','2025-04-01 21:30:04','2025-04-01 21:43:31','2025-04-01 21:43:31'),(1334,2027,'transcripts/papaplatte/transcript_2420313245.json','2025-04-01 21:50:04','2025-04-01 22:02:30','2025-04-01 22:02:30'),(1335,2028,'transcripts/rewinside/transcript_2420301624.json','2025-04-01 22:10:04','2025-04-01 22:18:06','2025-04-01 22:18:06'),(1336,2029,'transcripts/maxim/transcript_2420069923.json','2025-04-01 22:18:06','2025-04-01 22:27:36','2025-04-01 22:27:36'),(1337,2030,'transcripts/tolkin/transcript_2420215173.json','2025-04-01 22:30:04','2025-04-01 22:48:20','2025-04-01 22:48:20'),(1338,2031,'transcripts/vlesk/transcript_2420362133.json','2025-04-01 22:50:04','2025-04-01 22:57:00','2025-04-01 22:57:00'),(1339,2033,'transcripts/ponce/transcript_2420162258.json','2025-04-01 23:10:04','2025-04-01 23:21:59','2025-04-01 23:21:59'),(1340,2036,'transcripts/shaunz/transcript_2420133085.json','2025-04-01 23:30:04','2025-04-01 23:34:15','2025-04-01 23:34:15'),(1341,2037,'transcripts/nisqyy/transcript_2420176621.json','2025-04-01 23:34:15','2025-04-01 23:37:31','2025-04-01 23:37:31'),(1342,2038,'transcripts/dye_live/transcript_2420265767.json','2025-04-01 23:37:31','2025-04-01 23:45:41','2025-04-01 23:45:41'),(1343,2039,'transcripts/aloonea/transcript_2420304917.json','2025-04-01 23:50:05','2025-04-02 00:05:09','2025-04-02 00:05:09'),(1344,2041,'transcripts/helydia/transcript_2420579247.json','2025-04-02 00:10:04','2025-04-02 00:18:19','2025-04-02 00:18:19'),(1345,2042,'transcripts/sniper_biscuit/transcript_2420551313.json','2025-04-02 00:18:19','2025-04-02 00:24:22','2025-04-02 00:24:22'),(1346,2043,'transcripts/sniper_biscuit/transcript_2420355700.json','2025-04-02 00:30:04','2025-04-02 00:36:41','2025-04-02 00:36:41'),(1347,2044,'transcripts/kapesnik69/transcript_2419376266.json','2025-04-02 01:30:03','2025-04-02 02:05:28','2025-04-02 02:05:28'),(1348,2045,'transcripts/kapesnik69/transcript_2416834761.json','2025-04-02 02:10:04','2025-04-02 02:11:50','2025-04-02 02:11:50'),(1349,2046,'transcripts/sodapoppin/transcript_2420378744.json','2025-04-02 02:30:04','2025-04-02 02:41:07','2025-04-02 02:41:07'),(1350,2047,'transcripts/mirza_jahic/transcript_2420481850.json','2025-04-02 02:50:05','2025-04-02 02:58:32','2025-04-02 02:58:32'),(1351,2049,'transcripts/astatoro/transcript_2421075921.json','2025-04-02 03:20:04','2025-04-02 03:44:28','2025-04-02 03:44:28'),(1352,2050,'transcripts/patrikturi/transcript_2420935225.json','2025-04-02 03:50:03','2025-04-02 04:15:24','2025-04-02 04:15:24'),(1353,2051,'transcripts/flyguncz/transcript_2421222823.json','2025-04-02 04:20:04','2025-04-02 04:31:38','2025-04-02 04:31:38'),(1354,2052,'transcripts/spajkk/transcript_2421111734.json','2025-04-02 04:40:03','2025-04-02 05:08:54','2025-04-02 05:08:54'),(1355,2053,'transcripts/marty_vole/transcript_2420963154.json','2025-04-02 05:08:54','2025-04-02 05:17:27','2025-04-02 05:17:27'),(1356,2054,'transcripts/marty_vole/transcript_2420961641.json','2025-04-02 05:17:27','2025-04-02 05:17:40','2025-04-02 05:17:40'),(1357,2055,'transcripts/andrej_kalinin/transcript_2421327077.json','2025-04-02 05:20:04','2025-04-02 05:28:06','2025-04-02 05:28:06'),(1358,2056,'transcripts/domovnikofc/transcript_2421124606.json','2025-04-02 05:40:04','2025-04-02 06:02:24','2025-04-02 06:02:24'),(1359,2057,'transcripts/avatar0fwar/transcript_2421203620.json','2025-04-02 06:10:03','2025-04-02 06:19:10','2025-04-02 06:19:10'),(1360,2058,'transcripts/fluffcz/transcript_2421222343.json','2025-04-02 06:30:03','2025-04-02 06:43:37','2025-04-02 06:43:37'),(1361,2059,'transcripts/tensterakdary/transcript_2421144139.json','2025-04-02 06:50:04','2025-04-02 06:58:41','2025-04-02 06:58:41'),(1362,2060,'transcripts/forsen/transcript_2421118323.json','2025-04-02 07:10:04','2025-04-02 07:23:38','2025-04-02 07:23:38'),(1363,2061,'transcripts/kuruhs/transcript_2421186554.json','2025-04-02 07:30:04','2025-04-02 07:43:22','2025-04-02 07:43:22'),(1364,2062,'transcripts/paoloidolo/transcript_2421098301.json','2025-04-02 07:43:22','2025-04-02 07:45:52','2025-04-02 07:45:52'),(1365,2063,'transcripts/paoloidolo/transcript_2421096618.json','2025-04-02 07:45:52','2025-04-02 07:45:58','2025-04-02 07:45:58'),(1366,2064,'transcripts/paoloidolo/transcript_2421086908.json','2025-04-02 07:45:58','2025-04-02 07:46:18','2025-04-02 07:46:18'),(1367,2065,'transcripts/paoloidolo/transcript_2421034678.json','2025-04-02 07:46:18','2025-04-02 07:47:25','2025-04-02 07:47:25'),(1368,2066,'transcripts/39daph/transcript_2420927227.json','2025-04-02 08:10:04','2025-04-02 08:14:18','2025-04-02 08:14:18'),(1369,2067,'transcripts/knut/transcript_2421216456.json','2025-04-02 08:50:04','2025-04-02 09:08:30','2025-04-02 09:08:30'),(1370,2069,'transcripts/rachtaz/transcript_2421090216.json','2025-04-02 09:20:04','2025-04-02 09:29:55','2025-04-02 09:29:55'),(1371,2070,'transcripts/pawkt/transcript_2421052107.json','2025-04-02 09:50:04','2025-04-02 09:57:06','2025-04-02 09:57:06'),(1372,2071,'transcripts/wakewilder/transcript_2421415211.json','2025-04-02 10:00:04','2025-04-02 10:05:23','2025-04-02 10:05:23'),(1373,2072,'transcripts/wakewilder/transcript_2420759887.json','2025-04-02 10:30:04','2025-04-02 10:37:03','2025-04-02 10:37:03'),(1374,2073,'transcripts/esfandtv/transcript_2421248573.json','2025-04-02 11:40:04','2025-04-02 12:02:54','2025-04-02 12:02:54'),(1375,2074,'transcripts/cyr/transcript_2421411122.json','2025-04-02 12:20:04','2025-04-02 12:28:21','2025-04-02 12:28:21'),(1376,2075,'transcripts/khalamity/transcript_2420850595.json','2025-04-02 12:40:04','2025-04-02 12:50:38','2025-04-02 12:50:38'),(1377,2076,'transcripts/papaplatte/transcript_2421160532.json','2025-04-02 12:50:04','2025-04-02 13:01:04','2025-04-02 13:01:04'),(1378,2077,'transcripts/maxim/transcript_2420909044.json','2025-04-02 13:10:04','2025-04-02 13:22:12','2025-04-02 13:22:12'),(1379,2078,'transcripts/ponce/transcript_2420989758.json','2025-04-02 13:30:04','2025-04-02 13:48:23','2025-04-02 13:48:23'),(1380,2081,'transcripts/shaunz/transcript_2420972717.json','2025-04-02 13:50:04','2025-04-02 13:52:43','2025-04-02 13:52:43'),(1381,2082,'transcripts/aloonea/transcript_2421131558.json','2025-04-02 13:52:43','2025-04-02 14:02:39','2025-04-02 14:02:39'),(1382,2084,'transcripts/loupiote3/transcript_2421367882.json','2025-04-02 14:10:05','2025-04-02 14:20:38','2025-04-02 14:20:38'),(1383,2085,'transcripts/loupiote3/transcript_2421070949.json','2025-04-02 14:30:04','2025-04-02 14:41:27','2025-04-02 14:41:27'),(1384,2087,'transcripts/sniper_biscuit/transcript_2421411814.json','2025-04-02 14:50:04','2025-04-02 14:56:17','2025-04-02 14:56:17'),(1385,2088,'transcripts/sniper_biscuit/transcript_2421197299.json','2025-04-02 14:56:17','2025-04-02 14:59:35','2025-04-02 14:59:35'),(1386,2089,'transcripts/miken/transcript_2421137869.json','2025-04-02 15:00:03','2025-04-02 15:11:02','2025-04-02 15:11:02'),(1387,2090,'transcripts/mirza_jahic/transcript_2421328615.json','2025-04-02 15:30:04','2025-04-02 15:35:36','2025-04-02 15:35:36'),(1388,2091,'transcripts/nawk_/transcript_2421326204.json','2025-04-02 15:50:04','2025-04-02 15:58:07','2025-04-02 15:58:07'),(1389,2093,'transcripts/agraelus/transcript_2422123950.json','2025-04-02 22:40:04','2025-04-02 22:49:30','2025-04-02 22:49:30'),(1390,2094,'transcripts/astatoro/transcript_2421932925.json','2025-04-02 23:10:04','2025-04-02 23:30:16','2025-04-02 23:30:16'),(1391,2095,'transcripts/patrikturi/transcript_2421955695.json','2025-04-02 23:40:03','2025-04-02 23:47:45','2025-04-02 23:47:45'),(1392,2096,'transcripts/patrikturi/transcript_2421925426.json','2025-04-02 23:47:45','2025-04-02 23:47:54','2025-04-02 23:47:54'),(1393,2097,'transcripts/patrikturi/transcript_2421916285.json','2025-04-02 23:47:54','2025-04-02 23:48:15','2025-04-02 23:48:15'),(1394,2098,'transcripts/patrikturi/transcript_2421903941.json','2025-04-02 23:48:15','2025-04-02 23:48:44','2025-04-02 23:48:44'),(1395,2099,'transcripts/patrikturi/transcript_2421893577.json','2025-04-02 23:48:44','2025-04-02 23:49:30','2025-04-02 23:49:30'),(1396,2100,'transcripts/patrikturi/transcript_2421867770.json','2025-04-02 23:49:30','2025-04-02 23:52:28','2025-04-02 23:52:28'),(1397,2101,'transcripts/patrikturi/transcript_2421768187.json','2025-04-02 23:52:28','2025-04-03 00:04:11','2025-04-03 00:04:11'),(1398,2102,'transcripts/flyguncz/transcript_2422111254.json','2025-04-03 00:10:04','2025-04-03 00:26:12','2025-04-03 00:26:12'),(1399,2103,'transcripts/herdyn/transcript_2422115334.json','2025-04-03 00:26:12','2025-04-03 00:29:12','2025-04-03 00:29:12'),(1400,2104,'transcripts/spajkk/transcript_2422055860.json','2025-04-03 00:50:03','2025-04-03 01:13:14','2025-04-03 01:13:14'),(1401,2105,'transcripts/marty_vole/transcript_2422088903.json','2025-04-03 01:20:04','2025-04-03 01:27:45','2025-04-03 01:27:45'),(1402,2106,'transcripts/marty_vole/transcript_2421830785.json','2025-04-03 01:27:45','2025-04-03 01:36:06','2025-04-03 01:36:06'),(1403,2107,'transcripts/domovnikofc/transcript_2421981158.json','2025-04-03 02:00:04','2025-04-03 02:23:56','2025-04-03 02:23:56'),(1404,2113,'transcripts/mullersie/transcript_2421931288.json','2025-04-03 02:30:03','2025-04-03 02:44:23','2025-04-03 02:44:23'),(1405,2114,'transcripts/heddi2k/transcript_2422124039.json','2025-04-03 02:44:23','2025-04-03 02:50:04','2025-04-03 02:50:04'),(1408,2116,'transcripts/fluffcz/transcript_2422101074.json','2025-04-03 05:00:05','2025-04-03 05:12:11','2025-04-03 05:12:11'),(1409,2118,'transcripts/kuruhs/transcript_2422014328.json','2025-04-03 05:10:04','2025-04-03 05:23:18','2025-04-03 05:23:18'),(1410,2117,'transcripts/tensterakdary/transcript_2422004840.json','2025-04-03 05:12:11','2025-04-03 05:25:53','2025-04-03 05:25:53'),(1412,2119,'transcripts/paoloidolo/transcript_2422081341.json','2025-04-03 05:30:04','2025-04-03 05:33:15','2025-04-03 05:33:15'),(1413,2120,'transcripts/paoloidolo/transcript_2422022037.json','2025-04-03 05:33:15','2025-04-03 05:34:22','2025-04-03 05:34:22'),(1415,2121,'transcripts/paoloidolo/transcript_2421887048.json','2025-04-03 05:40:04','2025-04-03 05:47:29','2025-04-03 05:47:29'),(1420,2122,'transcripts/39daph/transcript_2421605572.json','2025-04-03 06:20:04','2025-04-03 06:33:08','2025-04-03 06:33:08'),(1425,2123,'transcripts/sodapoppin/transcript_2422086016.json','2025-04-03 07:00:04','2025-04-03 07:10:48','2025-04-03 07:10:48'),(1431,2124,'transcripts/knut/transcript_2422153913.json','2025-04-03 07:50:04','2025-04-03 08:05:56','2025-04-03 08:05:56'),(1434,2125,'transcripts/rachtaz/transcript_2422031752.json','2025-04-03 08:10:04','2025-04-03 08:18:45','2025-04-03 08:18:45'),(1437,2126,'transcripts/pawkt/transcript_2421896653.json','2025-04-03 08:30:04','2025-04-03 08:43:27','2025-04-03 08:43:27'),(1440,2128,'transcripts/wakewilder/transcript_2421633290.json','2025-04-03 08:50:03','2025-04-03 08:58:05','2025-04-03 08:58:05'),(1442,2129,'transcripts/vadikus007/transcript_2421887961.json','2025-04-03 09:00:03','2025-04-03 09:05:02','2025-04-03 09:05:02'),(1450,2130,'transcripts/esfandtv/transcript_2422110542.json','2025-04-03 10:10:03','2025-04-03 10:31:52','2025-04-03 10:31:52'),(1458,2131,'transcripts/cooksux/transcript_2421765809.json','2025-04-03 11:20:04','2025-04-03 11:42:07','2025-04-03 11:42:07'),(1467,2132,'transcripts/cyr/transcript_2422199034.json','2025-04-03 12:40:04','2025-04-03 12:58:01','2025-04-03 12:58:01'),(1469,2133,'transcripts/maxim/transcript_2421766754.json','2025-04-03 12:50:04','2025-04-03 13:04:11','2025-04-03 13:04:11'),(1473,2134,'transcripts/tolkin/transcript_2421823796.json','2025-04-03 13:20:04','2025-04-03 13:42:06','2025-04-03 13:42:06'),(1477,2135,'transcripts/vlesk/transcript_2422021139.json','2025-04-03 13:50:04','2025-04-03 13:59:25','2025-04-03 13:59:25'),(1478,2138,'transcripts/ponce/transcript_2421895801.json','2025-04-03 13:59:25','2025-04-03 14:05:27','2025-04-03 14:05:27'),(1481,2140,'transcripts/shaunz/transcript_2421822966.json','2025-04-03 14:10:04','2025-04-03 14:14:24','2025-04-03 14:14:24'),(1482,2141,'transcripts/dye_live/transcript_2421963805.json','2025-04-03 14:14:24','2025-04-03 14:21:31','2025-04-03 14:21:31'),(1485,2142,'transcripts/aloonea/transcript_2422025623.json','2025-04-03 14:30:04','2025-04-03 14:38:36','2025-04-03 14:38:36'),(1486,2144,'transcripts/loupiote3/transcript_2422286842.json','2025-04-03 14:38:36','2025-04-03 14:40:11','2025-04-03 14:40:11'),(1489,2145,'transcripts/loupiote3/transcript_2421898858.json','2025-04-03 14:50:04','2025-04-03 14:58:35','2025-04-03 14:58:35'),(1490,2146,'transcripts/helydia/transcript_2422278043.json','2025-04-03 14:58:35','2025-04-03 15:01:28','2025-04-03 15:01:28'),(1492,2148,'transcripts/sniper_biscuit/transcript_2422120550.json','2025-04-03 15:01:28','2025-04-03 15:05:27','2025-04-03 15:05:27'),(1494,2149,'transcripts/miken/transcript_2422044799.json','2025-04-03 15:10:05','2025-04-03 15:24:48','2025-04-03 15:24:48'),(1497,2150,'transcripts/mirza_jahic/transcript_2422197204.json','2025-04-03 15:40:04','2025-04-03 15:45:16','2025-04-03 15:45:16'),(1554,2151,'transcripts/agraelus/transcript_2422970345.json','2025-04-03 22:40:05','2025-04-03 22:49:22','2025-04-03 22:49:22'),(1557,2152,'transcripts/astatoro/transcript_2422795746.json','2025-04-03 23:00:05','2025-04-03 23:20:55','2025-04-03 23:20:55'),(1558,2153,'transcripts/claina/transcript_2422791744.json','2025-04-03 23:20:55','2025-04-03 23:26:48','2025-04-03 23:26:48'),(1560,2154,'transcripts/patrikturi/transcript_2422640499.json','2025-04-03 23:30:05','2025-04-03 23:59:13','2025-04-03 23:59:13'),(1562,2155,'transcripts/flyguncz/transcript_2422970445.json','2025-04-04 00:00:05','2025-04-04 00:16:20','2025-04-04 00:16:20'),(1564,2156,'transcripts/herdyn/transcript_2422990587.json','2025-04-04 00:20:05','2025-04-04 00:29:57','2025-04-04 00:29:57'),(1566,2157,'transcripts/spajkk/transcript_2422809802.json','2025-04-04 00:30:05','2025-04-04 00:48:19','2025-04-04 00:48:19'),(1568,2158,'transcripts/marty_vole/transcript_2422909666.json','2025-04-04 00:50:05','2025-04-04 00:56:14','2025-04-04 00:56:14'),(1570,2159,'transcripts/domovnikofc/transcript_2423002434.json','2025-04-04 01:00:05','2025-04-04 01:10:26','2025-04-04 01:10:26'),(1572,2160,'transcripts/mullersie/transcript_2422755580.json','2025-04-04 01:20:05','2025-04-04 01:33:12','2025-04-04 01:33:12'),(1573,2161,'transcripts/avatar0fwar/transcript_2422929674.json','2025-04-04 01:33:12','2025-04-04 01:40:12','2025-04-04 01:40:12'),(1575,2162,'transcripts/heddi2k/transcript_2422972684.json','2025-04-04 01:50:05','2025-04-04 02:07:03','2025-04-04 02:07:03'),(1576,2163,'transcripts/heddi2k/transcript_2422968377.json','2025-04-04 02:07:03','2025-04-04 02:07:09','2025-04-04 02:07:09'),(1578,2164,'transcripts/fluffcz/transcript_2422963900.json','2025-04-04 02:10:05','2025-04-04 02:18:23','2025-04-04 02:18:23'),(1580,2165,'transcripts/tensterakdary/transcript_2422863905.json','2025-04-04 02:20:05','2025-04-04 02:26:42','2025-04-04 02:26:42'),(1583,2166,'transcripts/forsen/transcript_2422837627.json','2025-04-04 02:40:04','2025-04-04 02:52:25','2025-04-04 02:52:25'),(1587,2167,'transcripts/kuruhs/transcript_2422931418.json','2025-04-04 03:10:04','2025-04-04 03:21:51','2025-04-04 03:21:51'),(1589,2168,'transcripts/paoloidolo/transcript_2422896228.json','2025-04-04 03:21:51','2025-04-04 03:22:50','2025-04-04 03:22:50'),(1590,2169,'transcripts/paoloidolo/transcript_2422884686.json','2025-04-04 03:22:50','2025-04-04 03:23:03','2025-04-04 03:23:03'),(1593,2170,'transcripts/39daph/transcript_2422698399.json','2025-04-04 03:40:04','2025-04-04 03:50:06','2025-04-04 03:50:06'),(1599,2171,'transcripts/sodapoppin/transcript_2422969011.json','2025-04-04 04:30:04','2025-04-04 04:43:27','2025-04-04 04:43:27'),(1602,2172,'transcripts/nymn/transcript_2422745204.json','2025-04-04 04:50:04','2025-04-04 05:00:01','2025-04-04 05:00:01'),(1607,2173,'transcripts/knut/transcript_2423050662.json','2025-04-04 05:30:04','2025-04-04 05:45:26','2025-04-04 05:45:26'),(1610,2174,'transcripts/knut/transcript_2422930764.json','2025-04-04 05:50:04','2025-04-04 05:54:59','2025-04-04 05:54:59'),(1613,2175,'transcripts/rachtaz/transcript_2422809398.json','2025-04-04 06:10:04','2025-04-04 06:23:04','2025-04-04 06:23:04'),(1616,2176,'transcripts/pawkt/transcript_2422764914.json','2025-04-04 06:30:04','2025-04-04 06:41:47','2025-04-04 06:41:47'),(1621,2177,'transcripts/thehollowedknight/transcript_2422473092.json','2025-04-04 07:10:04','2025-04-04 07:21:25','2025-04-04 07:21:25'),(1625,2178,'transcripts/wakewilder/transcript_2422517477.json','2025-04-04 07:40:04','2025-04-04 07:53:54','2025-04-04 07:53:54'),(1629,2179,'transcripts/cooksux/transcript_2422665045.json','2025-04-04 08:10:04','2025-04-04 08:24:26','2025-04-04 08:24:26'),(1632,2180,'transcripts/yabbe/transcript_2422874267.json','2025-04-04 08:30:04','2025-04-04 08:38:51','2025-04-04 08:38:51'),(1636,2181,'transcripts/khalamity/transcript_2422566486.json','2025-04-04 09:00:04','2025-04-04 09:10:35','2025-04-04 09:10:35'),(1639,2182,'transcripts/papaplatte/transcript_2422872573.json','2025-04-04 09:20:04','2025-04-04 09:32:42','2025-04-04 09:32:42'),(1642,2183,'transcripts/maxim/transcript_2422621965.json','2025-04-04 09:40:04','2025-04-04 09:51:56','2025-04-04 09:51:56'),(1646,2184,'transcripts/tolkin/transcript_2422689467.json','2025-04-04 10:10:04','2025-04-04 10:38:08','2025-04-04 10:38:08'),(1650,2185,'transcripts/vlesk/transcript_2422913616.json','2025-04-04 10:40:04','2025-04-04 10:42:19','2025-04-04 10:42:19'),(1651,2188,'transcripts/dye_live/transcript_2422833612.json','2025-04-04 10:42:19','2025-04-04 10:49:22','2025-04-04 10:49:22'),(1653,2189,'transcripts/aloonea/transcript_2422856837.json','2025-04-04 10:50:04','2025-04-04 11:01:22','2025-04-04 11:01:22'),(1656,2191,'transcripts/loupiote3/transcript_2423170256.json','2025-04-04 11:10:05','2025-04-04 11:14:42','2025-04-04 11:14:42'),(1657,2192,'transcripts/loupiote3/transcript_2422790977.json','2025-04-04 11:14:42','2025-04-04 11:20:42','2025-04-04 11:20:42'),(1660,2193,'transcripts/helydia/transcript_2423018807.json','2025-04-04 11:30:04','2025-04-04 11:35:30','2025-04-04 11:35:30'),(1661,2194,'transcripts/kaffworld/transcript_2422726757.json','2025-04-04 11:35:30','2025-04-04 11:38:08','2025-04-04 11:38:08'),(1663,2195,'transcripts/sniper_biscuit/transcript_2422911540.json','2025-04-04 11:40:04','2025-04-04 11:49:09','2025-04-04 11:49:09'),(1664,2196,'transcripts/sniper_biscuit/transcript_2422851399.json','2025-04-04 11:49:09','2025-04-04 11:52:46','2025-04-04 11:52:46'),(1667,2197,'transcripts/miken/transcript_2422918668.json','2025-04-04 12:00:05','2025-04-04 12:13:52','2025-04-04 12:13:52'),(1668,979,'transcripts/agraelus/transcript_2409925082.json','2025-04-04 12:20:03','2025-04-04 12:51:58','2025-04-04 12:51:58'),(1669,1231,'transcripts/sodapoppin/transcript_2404695782.json','2025-04-04 12:20:03','2025-04-04 12:39:56','2025-04-04 12:39:56'),(1670,1283,'transcripts/wakewilder/transcript_2405079927.json','2025-04-04 12:40:04','2025-04-04 12:53:13','2025-04-04 12:53:13'),(1672,1521,'transcripts/agraelus/transcript_2411615896.json','2025-04-04 13:00:03','2025-04-04 13:06:43','2025-04-04 13:06:43'),(1673,1529,'transcripts/domovnikofc/transcript_2411476374.json','2025-04-04 13:06:44','2025-04-04 13:36:14','2025-04-04 13:36:14'),(1674,1586,'transcripts/esfandtv/transcript_2412510837.json','2025-04-04 13:30:04','2025-04-04 13:41:38','2025-04-04 13:41:38'),(1676,1573,'transcripts/heddi2k/transcript_2412546889.json','2025-04-04 13:40:03','2025-04-04 13:45:54','2025-04-04 13:45:54'),(1681,1587,'transcripts/esfandtv/transcript_2411870548.json','2025-04-04 14:10:03','2025-04-04 14:24:03','2025-04-04 14:24:03'),(1684,1588,'transcripts/yabbe/transcript_2412407417.json','2025-04-04 14:30:04','2025-04-04 14:39:59','2025-04-04 14:39:59'),(1688,1589,'transcripts/khalamity/transcript_2412046844.json','2025-04-04 15:00:04','2025-04-04 15:08:51','2025-04-04 15:08:51'),(1689,1670,'transcripts/heddi2k/transcript_2414232672.json','2025-04-04 15:10:03','2025-04-04 15:11:19','2025-04-04 15:11:19'),(1690,1599,'transcripts/aloonea/transcript_2412416909.json','2025-04-04 15:10:04','2025-04-04 15:23:09','2025-04-04 15:23:09'),(1692,1771,'transcripts/fluffcz/transcript_2415773530.json','2025-04-04 15:20:04','2025-04-04 15:41:10','2025-04-04 15:41:10'),(1694,2002,'transcripts/herdyn/transcript_2420416327.json','2025-04-04 15:50:03','2025-04-04 16:01:05','2025-04-04 16:01:05'),(1738,2199,'transcripts/astatoro/transcript_2423697360.json','2025-04-05 02:50:05','2025-04-05 03:07:00','2025-04-05 03:07:00'),(1741,2200,'transcripts/patrikturi/transcript_2423524894.json','2025-04-05 03:20:05','2025-04-05 04:06:06','2025-04-05 04:06:06'),(1743,2201,'transcripts/spajkk/transcript_2423727046.json','2025-04-05 04:10:05','2025-04-05 04:31:12','2025-04-05 04:31:12'),(1745,2202,'transcripts/bladeito/transcript_2423678083.json','2025-04-05 04:40:05','2025-04-05 05:01:13','2025-04-05 05:01:13'),(1746,2203,'transcripts/andrej_kalinin/transcript_2423973611.json','2025-04-05 05:01:13','2025-04-05 05:12:24','2025-04-05 05:12:24'),(1748,2204,'transcripts/domovnikofc/transcript_2423766135.json','2025-04-05 05:20:06','2025-04-05 05:32:48','2025-04-05 05:32:48'),(1749,2206,'transcripts/heddi2k/transcript_2423897744.json','2025-04-05 05:32:48','2025-04-05 05:45:11','2025-04-05 05:45:11'),(1751,2207,'transcripts/heddi2k/transcript_2423879714.json','2025-04-05 05:50:06','2025-04-05 05:50:57','2025-04-05 05:50:57'),(1752,2208,'transcripts/vvudy/transcript_2423629956.json','2025-04-05 05:50:57','2025-04-05 06:01:05','2025-04-05 06:01:05'),(1754,2209,'transcripts/fluffcz/transcript_2423845505.json','2025-04-05 06:10:05','2025-04-05 06:17:45','2025-04-05 06:17:45'),(1769,2212,'transcripts/paoloidolo/transcript_2423881193.json','2025-04-05 09:00:40','2025-04-05 09:01:37','2025-04-05 09:02:29'),(1772,2213,'transcripts/paoloidolo/transcript_2423619845.json','2025-04-05 09:20:03','2025-04-05 09:23:33','2025-04-05 09:23:33'),(1774,2214,'transcripts/39daph/transcript_2423960799.json','2025-04-05 09:30:04','2025-04-05 09:36:31','2025-04-05 09:36:31'),(1776,2215,'transcripts/39daph/transcript_2423526263.json','2025-04-05 09:40:04','2025-04-05 09:44:57','2025-04-05 09:44:57'),(1781,2216,'transcripts/sodapoppin/transcript_2423851129.json','2025-04-05 10:20:03','2025-04-05 10:29:16','2025-04-05 10:29:16'),(1783,2217,'transcripts/nymn/transcript_2423665975.json','2025-04-05 10:30:04','2025-04-05 10:40:32','2025-04-05 10:40:32'),(1797,2218,'transcripts/knut/transcript_2423931395.json','2025-04-05 12:50:04','2025-04-05 13:03:00','2025-04-05 13:03:00'),(1798,2219,'transcripts/knut/transcript_2423922979.json','2025-04-05 13:03:00','2025-04-05 13:03:08','2025-04-05 13:03:08'),(1799,2220,'transcripts/knut/transcript_2423675046.json','2025-04-05 13:20:04','2025-04-05 13:24:07','2025-04-05 13:24:07'),(1800,2211,'transcripts/forsen/transcript_2423744846.json','2025-04-05 13:50:05','2025-04-05 13:57:41','2025-04-05 13:57:41'),(1801,2222,'transcripts/pawkt/transcript_2423663367.json','2025-04-05 14:20:11','2025-04-05 14:29:10','2025-04-05 14:29:23'),(1802,2223,'transcripts/thehollowedknight/transcript_2423394372.json','2025-04-05 14:40:23','2025-04-05 14:49:00','2025-04-05 14:49:00'),(1803,2224,'transcripts/vadikus007/transcript_2423638388.json','2025-04-05 14:50:04','2025-04-05 14:55:48','2025-04-05 14:55:48'),(1804,2225,'transcripts/esfandtv/transcript_2423742057.json','2025-04-05 14:55:48','2025-04-05 14:58:50','2025-04-05 14:59:43'),(1805,2226,'transcripts/yabbe/transcript_2423742650.json','2025-04-05 15:20:04','2025-04-05 15:31:22','2025-04-05 15:31:22'),(1806,2227,'transcripts/cyr/transcript_2423298285.json','2025-04-05 15:50:03','2025-04-05 15:55:36','2025-04-05 15:55:36'),(1807,2228,'transcripts/papaplatte/transcript_2423782269.json','2025-04-05 16:00:04','2025-04-05 16:14:14','2025-04-05 16:14:14'),(1808,2229,'transcripts/mirza_jahic/transcript_2423963471.json','2025-04-05 16:20:04','2025-04-05 16:25:15','2025-04-05 16:25:15'),(1809,2230,'transcripts/maxim/transcript_2423519342.json','2025-04-05 16:40:04','2025-04-05 16:51:29','2025-04-05 16:51:29'),(1810,2231,'transcripts/tolkin/transcript_2423599841.json','2025-04-05 17:00:05','2025-04-05 17:20:49','2025-04-05 17:20:49'),(1811,2232,'transcripts/vlesk/transcript_2423827638.json','2025-04-05 17:30:04','2025-04-05 17:38:42','2025-04-05 17:39:09'),(1812,2233,'transcripts/ponce/transcript_2423742323.json','2025-04-05 17:39:09','2025-04-05 17:49:57','2025-04-05 17:49:57'),(1813,2237,'transcripts/dye_live/transcript_2423742069.json','2025-04-05 17:51:12','2025-04-05 17:57:59','2025-04-05 17:57:59'),(1814,2238,'transcripts/aloonea/transcript_2423835587.json','2025-04-05 17:57:59','2025-04-05 18:04:30','2025-04-05 18:04:30'),(1815,2240,'transcripts/loupiote3/transcript_2424072737.json','2025-04-05 18:04:30','2025-04-05 18:10:48','2025-04-05 18:10:48'),(1816,2241,'transcripts/loupiote3/transcript_2423665482.json','2025-04-05 18:20:04','2025-04-05 18:22:16','2025-04-05 18:22:16'),(1817,2242,'transcripts/kaffworld/transcript_2423628555.json','2025-04-05 18:22:16','2025-04-05 18:32:28','2025-04-05 18:32:28'),(1818,2245,'transcripts/miken/transcript_2423812579.json','2025-04-05 18:40:04','2025-04-05 18:53:55','2025-04-05 18:53:55'),(1819,2244,'transcripts/sniper_biscuit/transcript_2423740790.json','2025-04-05 18:40:04','2025-04-05 18:48:11','2025-04-05 18:48:11'),(1820,2221,'transcripts/rachtaz/transcript_2423771643.json','2025-04-05 18:50:03','2025-04-05 19:00:15','2025-04-05 19:00:15'),(1821,2246,'transcripts/agraelus/transcript_2424829238.json','2025-04-05 22:20:05','2025-04-05 22:34:31','2025-04-05 22:34:31'),(1822,2247,'transcripts/claina/transcript_2424594442.json','2025-04-05 22:40:03','2025-04-05 22:45:59','2025-04-05 22:46:00'),(1823,2248,'transcripts/herdyn/transcript_2424866416.json','2025-04-05 23:00:03','2025-04-05 23:06:49','2025-04-05 23:07:16'),(1824,2249,'transcripts/spajkk/transcript_2424623462.json','2025-04-05 23:30:03','2025-04-05 23:51:04','2025-04-05 23:51:04'),(1825,2250,'transcripts/spajkk/transcript_2424509253.json','2025-04-06 00:00:03','2025-04-06 00:11:14','2025-04-06 00:11:14'),(1826,2251,'transcripts/domovnikofc/transcript_2424797762.json','2025-04-06 00:20:04','2025-04-06 00:32:38','2025-04-06 00:32:38'),(1827,2252,'transcripts/heddi2k/transcript_2424823497.json','2025-04-06 00:32:38','2025-04-06 00:39:02','2025-04-06 00:39:02'),(1828,2253,'transcripts/tensterakdary/transcript_2424520279.json','2025-04-06 00:40:04','2025-04-06 00:58:38','2025-04-06 00:58:38'),(1829,2254,'transcripts/forsen/transcript_2424687369.json','2025-04-06 01:00:03','2025-04-06 01:10:45','2025-04-06 01:10:45'),(1830,2255,'transcripts/kuruhs/transcript_2424777184.json','2025-04-06 01:20:11','2025-04-06 01:30:04','2025-04-06 01:30:04'),(1831,2256,'transcripts/paoloidolo/transcript_2424543306.json','2025-04-06 01:40:04','2025-04-06 01:43:40','2025-04-06 01:43:40'),(1832,2257,'transcripts/39daph/transcript_2424415976.json','2025-04-06 02:20:04','2025-04-06 02:35:55','2025-04-06 02:35:55'),(1833,2258,'transcripts/sodapoppin/transcript_2424763349.json','2025-04-06 03:00:04','2025-04-06 03:14:18','2025-04-06 03:14:18'),(1834,2259,'transcripts/nymn/transcript_2424676093.json','2025-04-06 03:20:04','2025-04-06 03:33:45','2025-04-06 03:33:45'),(1835,2260,'transcripts/knut/transcript_2424831656.json','2025-04-06 03:50:04','2025-04-06 04:08:47','2025-04-06 04:08:47'),(1836,2261,'transcripts/rachtaz/transcript_2424726569.json','2025-04-06 04:10:04','2025-04-06 04:13:18','2025-04-06 04:13:18'),(1837,2262,'transcripts/pawkt/transcript_2424591409.json','2025-04-06 04:40:04','2025-04-06 04:56:11','2025-04-06 04:56:11'),(1838,2263,'transcripts/wakewilder/transcript_2424267026.json','2025-04-06 05:10:03','2025-04-06 05:18:30','2025-04-06 05:18:43'),(1839,2264,'transcripts/yabbe/transcript_2424576131.json','2025-04-06 05:30:04','2025-04-06 05:47:39','2025-04-06 05:47:39'),(1840,2265,'transcripts/khalamity/transcript_2424310486.json','2025-04-06 06:00:04','2025-04-06 06:11:31','2025-04-06 06:11:31'),(1841,2266,'transcripts/papaplatte/transcript_2424735807.json','2025-04-06 06:20:04','2025-04-06 06:35:12','2025-04-06 06:35:12'),(1842,2267,'transcripts/tolkin/transcript_2424546395.json','2025-04-06 06:40:04','2025-04-06 07:05:19','2025-04-06 07:05:19'),(1843,2268,'transcripts/nisqyy/transcript_2424509561.json','2025-04-06 07:10:05','2025-04-06 07:11:25','2025-04-06 07:11:25'),(1844,2269,'transcripts/dye_live/transcript_2424693556.json','2025-04-06 07:11:25','2025-04-06 07:19:33','2025-04-06 07:19:33'),(1845,2270,'transcripts/loupiote3/transcript_2424962109.json','2025-04-06 07:19:33','2025-04-06 07:26:41','2025-04-06 07:26:41'),(1846,2273,'transcripts/miken/transcript_2424566173.json','2025-04-06 07:30:03','2025-04-06 07:42:40','2025-04-06 07:42:40'),(1847,2271,'transcripts/helydia/transcript_2425025404.json','2025-04-06 07:30:04','2025-04-06 07:39:48','2025-04-06 07:39:48'),(1848,2272,'transcripts/kaffworld/transcript_2424560000.json','2025-04-06 07:39:48','2025-04-06 07:51:19','2025-04-06 07:51:19'); + +-- +-- Table structure for table `users` +-- + +DROP TABLE IF EXISTS `users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `users` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `email_verified_at` timestamp NULL DEFAULT NULL, + `password` varchar(255) NOT NULL, + `two_factor_secret` text DEFAULT NULL, + `two_factor_recovery_codes` text DEFAULT NULL, + `two_factor_confirmed_at` timestamp NULL DEFAULT NULL, + `remember_token` varchar(100) DEFAULT NULL, + `current_team_id` bigint(20) unsigned DEFAULT NULL, + `profile_photo_path` varchar(2048) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `users_email_unique` (`email`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `users` +-- + +INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `two_factor_secret`, `two_factor_recovery_codes`, `two_factor_confirmed_at`, `remember_token`, `current_team_id`, `profile_photo_path`, `created_at`, `updated_at`) VALUES (2,'Tom Eisner','tomaseisner69@gmail.com',NULL,'$2y$12$xVOWeRn9jOwpRZQ.Ymut/eyAbjiGcVo5R5CYPlbxaT/JdrFXFJDTS',NULL,NULL,NULL,'QBPiUjcTtcUJWY3a8uxwXbxbH0pt6cX1moHkDGZuKB2eIYuydj3yfpQWYSjI',1,NULL,'2025-03-25 14:22:59','2025-03-25 14:22:59'),(3,'madmonq','madmonq.gg@gmail.com',NULL,'$2y$12$DK/caq27K6Ly4KT3tn0Rme2bZXUEvd9tjuLL2wm4zKXtJHW9qwMHK',NULL,NULL,NULL,NULL,2,NULL,'2025-04-05 13:52:42','2025-04-05 13:52:42'); + +-- +-- Table structure for table `videos` +-- + +DROP TABLE IF EXISTS `videos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `videos` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `channel_id` int(11) NOT NULL, + `external_id` varchar(128) NOT NULL, + `external_date` datetime DEFAULT NULL, + `name` varchar(256) DEFAULT NULL, + `url` text DEFAULT NULL, + `length` varchar(64) DEFAULT NULL, + `data_downloading` tinyint(1) DEFAULT 0, + `data_downloaded` tinyint(1) DEFAULT 0, + `processed` tinyint(1) DEFAULT 0, + `download_start` datetime DEFAULT NULL, + `download_end` datetime DEFAULT NULL, + `created_at` datetime DEFAULT current_timestamp(), + `updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `channel_id` (`channel_id`), + CONSTRAINT `videos_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=2274 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `videos` +-- + +INSERT INTO `videos` (`id`, `channel_id`, `external_id`, `external_date`, `name`, `url`, `length`, `data_downloading`, `data_downloaded`, `processed`, `download_start`, `download_end`, `created_at`, `updated_at`) VALUES (978,1,'2410788006','2025-03-20 18:41:00','⛩️ ASSASSINS CREED: SHADOWS PC, DRUHÁ ČÁST ⛩️ ','https://www.twitch.tv/videos/2410788006','21364',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 15:39:48'),(979,1,'2409925082','2025-03-19 18:09:51','🗡️ ASSASSINS CREED: SHADOWS PC 🗡️ AI ČEŠTINA OD SQUIEE !cestina 🗡️ ','https://www.twitch.tv/videos/2409925082','29323',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-04-04 12:51:58'),(980,1,'2408264731','2025-03-17 18:12:49','🎥 DRIVING IS HARD MEDIASHARE 🎥 ','https://www.twitch.tv/videos/2408264731','20453',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 18:44:37'),(981,1,'2407467379','2025-03-16 18:31:59','🛼TAJNÝ GET TO WORK KONEC 🛼 DRIVING IS HARD 🛼','https://www.twitch.tv/videos/2407467379','19436',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 18:49:20'),(982,1,'2406687665','2025-03-15 21:12:25',' 💀💀 LATE NIGHT VISAGE A ORDER 13 💀💀 ','https://www.twitch.tv/videos/2406687665','16304',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 18:58:50'),(983,1,'2405662465','2025-03-14 19:25:31','💅 NOVÝ POOP KILLER A HOROR VISAGE PO 4 LETECH 💅 ','https://www.twitch.tv/videos/2405662465','22283',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 19:08:25'),(984,1,'2403968067','2025-03-12 18:57:16','😹 VYLEZL JSEM TO! GET TO WORK POKOŘENO 😹 ','https://www.twitch.tv/videos/2403968067','20508',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 19:17:40'),(985,1,'2403131018','2025-03-11 18:53:57','🔥POSLEDNÍ CO-OP HOROR R.E.P.O. feat. @astatoro @fattypillow @flyguncz @haiset @miken ','https://www.twitch.tv/videos/2403131018','16619',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 19:20:47'),(986,1,'2402488894','2025-03-10 22:49:17','🔥 DNES BUTCHERS CREEK, ORDER 13 A FLESH MADE FEAR 🔥 ZÍTRA POSLEDNÍ R.E.P.O. CO-OP STREAM 6 LIDÍ 🔥TOP DONO BERE BALÍK !box 🔥','https://www.twitch.tv/videos/2402488894','3801',0,1,1,NULL,NULL,'2025-03-21 13:05:55','2025-03-21 19:20:47'),(987,1,'2402343826','2025-03-10 19:42:58','🔥 DNES BUTCHERS CREEK, ORDER 13 A FLESH MADE FEAR 🔥 ZÍTRA POSLEDNÍ R.E.P.O. CO-OP STREAM 6 LIDÍ 🔥TOP DONO BERE BALÍK !box 🔥','https://www.twitch.tv/videos/2402343826','10964',0,1,1,NULL,NULL,'2025-03-21 13:05:56','2025-03-21 19:20:47'),(999,5,'2410595939','2025-03-20 13:41:45','😈ASTEROID NEZABUDNUTEĽNÝCH MOMENTOV 😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2410595939','27550',0,1,1,NULL,NULL,'2025-03-21 13:05:57','2025-03-21 19:20:50'),(1000,5,'2409754130','2025-03-19 13:42:22','😈SEIZMOLOGICKÉ OTRASY ZÁBAVNÉHO PRIEMYSLU😈AC PS5😈!WOT😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2409754130','28840',0,1,1,NULL,NULL,'2025-03-21 13:05:57','2025-03-21 19:20:50'),(1001,5,'2408916224','2025-03-18 13:31:43','😈MEGALODON HERNEJ DOMINANCIE NAŽIVO😈!WOT😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2408916224','30390',0,1,1,NULL,NULL,'2025-03-21 13:05:57','2025-03-21 19:21:01'),(1002,5,'2408094896','2025-03-17 13:41:15','😈VEĽKOTONÁŽNY NÁVRAT DŽUMADŽIHO ZÁBAVY😈!WOT😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2408094896','29340',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 19:21:14'),(1003,5,'2405440755','2025-03-14 14:09:05','😈PIATOČNY KONTENT GULAŠ TUUUUU😈!WOT😈NOVY PC DOMA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2405440755','24030',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 19:21:45'),(1004,5,'2403690361','2025-03-12 11:00:42','😈VEĽKOTONÁŽNY NÁKLAD KONZISTENTNEJ ZÁBAVY😈!WOT😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2403690361','27760',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 19:41:43'),(1005,5,'2402920869','2025-03-11 13:30:53','😈MASTERUS GIGANTUS VO SVETE HERNÉHO DOBRODURŽSTVA😈!WOT😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2402920869','29670',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 20:11:40'),(1006,5,'2402106602','2025-03-10 13:46:23','😈GIGANTICKÝ VÝSTUP NA MOUNT KONTENTUS😈!WOT😈S.FICTION PS5😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2402106602','30580',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 20:11:53'),(1007,7,'2410623973','2025-03-20 14:35:19','Ano, stále to nemám dohrané 🤣❤️','https://www.twitch.tv/videos/2410623973','14534',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 20:19:40'),(1008,7,'2409737143','2025-03-19 13:07:37','Warcraft charakter - detailky a piplačka ❤️😅','https://www.twitch.tv/videos/2409737143','10570',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 20:25:32'),(1009,7,'2408912503','2025-03-18 13:24:23','Designuju si merchík 🖤🫠 POE inspirované 🖼️','https://www.twitch.tv/videos/2408912503','11840',0,1,1,NULL,NULL,'2025-03-21 13:05:58','2025-03-21 20:33:46'),(1010,7,'2408085019','2025-03-17 13:20:23','Arty-farty 👋🏻❤️ Warcraft character render session 🖼️🖤 (prostě leštím detaily :d) 14:20','https://www.twitch.tv/videos/2408085019','9130',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 20:42:16'),(1011,7,'2404572189','2025-03-13 13:08:46','Herní stream 🎮💖 Zkusíme demo Titan Quest II? + POE talk? ~14','https://www.twitch.tv/videos/2404572189','13497',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 20:50:20'),(1012,7,'2403744006','2025-03-12 13:07:43','Concept art vlastního charakteru - Baron Palačinka','https://www.twitch.tv/videos/2403744006','13270',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 21:01:49'),(1013,7,'2402908265','2025-03-11 13:04:38','CAT ART - Příprava obrazu co půjde na plátno 🤍🖼️ !discord','https://www.twitch.tv/videos/2402908265','12610',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 21:08:39'),(1014,7,'2402089929','2025-03-10 13:10:37','Death Knight artík 🖤🖼️ Nový Art Quest běží --> !discord','https://www.twitch.tv/videos/2402089929','12890',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 21:18:25'),(1015,9,'2410439186','2025-03-20 06:07:25','!DROPS ✅ | #2 | ASSASSIN\'S CREED: SHADOWS | PC MAXIMÁLNÍ DETAILY | PRVNÍ PRŮCHOD S ČEŠTINOU OD @SQUIEE','https://www.twitch.tv/videos/2410439186','43778',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 22:05:18'),(1016,9,'2409604505','2025-03-19 06:19:20','!DROPS ✅ | #1 | ASSASSIN\'S CREED: SHADOWS 🥷🏻🇯🇵 | PC MAXIMÁLNÍ DETAILY | PRVNÍ PRŮCHOD S ČEŠTINOU OD @SQUIEE','https://www.twitch.tv/videos/2409604505','41383',0,1,1,NULL,NULL,'2025-03-21 13:05:59','2025-03-21 22:51:36'),(1017,9,'2408778092','2025-03-18 06:38:29','!DROPS ✅ | #1 | ASSASSIN\'S CREED: SHADOWS 🥷🏿🇯🇵 OD 18:00 | PS5 PRO | MEZITÍM FINÁLE BLACK FLAG!','https://www.twitch.tv/videos/2408778092','50946',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-21 23:40:27'),(1018,9,'2407947411','2025-03-17 06:11:41','#1 | ASSASSIN\'S CREED IV: BLACK FLAG 🏴‍☠️ | ČESKÉ TITULKY | ASSASSIN\'S CREED: SHADOWS HRAJEME ZÍTRA OD 18:00!','https://www.twitch.tv/videos/2407947411','39625',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 00:29:46'),(1019,9,'2407068009','2025-03-16 06:16:05','#2 | SUBNAUTICA: BEZ JEDINÉ SMRTI 💀👑 | HARDCORE MODE | PRVNÍ PRŮCHOD | !PROGRAM','https://www.twitch.tv/videos/2407068009','36576',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 01:04:51'),(1020,9,'2406151333','2025-03-15 06:12:42','#1 | SUBNAUTICA: BEZ JEDINÉ SMRTI 💀👑 | HARDCORE MODE | PRVNÍ PRŮCHOD | !PROGRAM','https://www.twitch.tv/videos/2406151333','38990',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 01:41:11'),(1021,9,'2405428473','2025-03-14 13:48:01','GRANDIÓZNÍ FINÁLE | GOTHIC II: CLASSIC | ČESKÉ TITULKY | PRVNÍ PRŮCHOD ZA PALADINA | !MODS','https://www.twitch.tv/videos/2405428473','1422',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 01:42:31'),(1022,9,'2405266393','2025-03-14 06:07:59','GRANDIÓZNÍ FINÁLE | GOTHIC II: BEZ JEDINÉ SMRTI 💀👑 | ČESKÉ TITULKY | PRVNÍ PRŮCHOD ZA PALADINA | !MODS','https://www.twitch.tv/videos/2405266393','27488',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 02:18:09'),(1023,9,'2403613132','2025-03-12 06:28:13','#4 | GOTHIC II: BEZ JEDINÉ SMRTI 💀👑 | ČESKÉ TITULKY | PRVNÍ PRŮCHOD ZA PALADINA | !MODS !PROGRAM','https://www.twitch.tv/videos/2403613132','44917',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 03:03:03'),(1024,9,'2402765784','2025-03-11 05:40:23','#2 | BEYOND: TWO SOULS | PC MAXIMÁLNÍ DETAILY | GOTHIC II: BEZ JEDINÉ SMRTI 💀👑 | !PROGRAM','https://www.twitch.tv/videos/2402765784','47398',0,1,1,NULL,NULL,'2025-03-21 13:06:00','2025-03-22 03:16:15'),(1025,9,'2401963518','2025-03-10 06:35:13','GRANDIÓZNÍ FINÁLE | DETROIT: BEZ JEDINÉ SMRTI 💀👑 | PC MAXIMÁLNÍ DETAILY | PRVNÍ PRŮCHOD | !PROGRAM','https://www.twitch.tv/videos/2401963518','38046',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 03:16:15'),(1026,11,'2410753007','2025-03-20 17:56:42','🎰 POKUS #3 DOHRÁT PAPERS PLEASE BEZ CHYBY 🎰 PAK MOŽNÁ GET TO WORK 🎰','https://www.twitch.tv/videos/2410753007','24026',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 03:35:12'),(1027,11,'2409924816','2025-03-19 18:09:29','🉐 AC: SHADOWS #2 🉐 MOŽNÁ LIARS BAR A DALŠÍ SRANDY S HONZOU 🉐DÍKY @UBISOFT 🉐','https://www.twitch.tv/videos/2409924816','26896',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 03:35:12'),(1028,11,'2409069940','2025-03-18 17:45:43','🏯 MIYAMOTO MUSASHI CZ TWITCHE HRAJE AC: SHADOWS (CZ AI TITULKY) !AI 🏯 DĚKUJI @UBISOFT #UBISOFTPARTNER 🏯','https://www.twitch.tv/videos/2409069940','24059',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 03:53:09'),(1029,11,'2408430271','2025-03-17 21:39:01','LATE NIGHT SECRET LONG DRIVE','https://www.twitch.tv/videos/2408430271','11757',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 04:04:43'),(1030,11,'2408261318','2025-03-17 18:08:21','🈵 REAKCE NA KLIPY 🈵 KRÁTKÝ GOLF S HONZOU 🈵 POKUS #3 DOHRÁT PAPERS PLEASE BEZ CHYBY 🈵 ZÍTRA AC: SHADOWS 🈵','https://www.twitch.tv/videos/2408261318','12487',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 04:16:57'),(1031,11,'2405601024','2025-03-14 18:10:27','🛂 POKUS #3 DOHRÁT PAPERS PLEASE BEZ CHYBY 🛂 DOHRAJEME ORDER 13 🛂 NOVÝ POOP KILLER 🛂','https://www.twitch.tv/videos/2405601024','23741',0,1,1,NULL,NULL,'2025-03-21 13:06:01','2025-03-22 04:31:59'),(1032,11,'2404762653','2025-03-13 18:20:49','🛂 POKUS #2 DOHRÁT PAPERS PLEASE BEZ CHYBY (NIKDO Z RODINY NESMÍ UMŘÍT) 🛂 ORDER 13 🛂','https://www.twitch.tv/videos/2404762653','28174',0,1,1,NULL,NULL,'2025-03-21 13:06:02','2025-03-22 04:43:36'),(1033,11,'2404251432','2025-03-13 00:55:23','🍸LH NOIRE - NOVÝ SKVĚLÝ MOD DO !MAFIA 🍸ORDER 13 🍸GOLF UŽ MĚ NEBAVÍ, NEBUDE 🍸','https://www.twitch.tv/videos/2404251432','5069',0,1,1,NULL,NULL,'2025-03-21 13:06:02','2025-03-22 04:46:18'),(1034,11,'2403930997','2025-03-12 18:08:23','🍸LH NOIRE - NOVÝ SKVĚLÝ MOD DO !MAFIA 🍸ORDER 13 🍸GOLF UŽ MĚ NEBAVÍ, NEBUDE 🍸','https://www.twitch.tv/videos/2403930997','24351',0,1,1,NULL,NULL,'2025-03-21 13:06:02','2025-03-22 05:03:35'),(1035,11,'2403079691','2025-03-11 17:46:36','😹 R.E.P.O #3 S FATTYPILLOWEM (AUTOR LIDOVÉ PÍSNĚ \"VÝPEČKY SE ZELÍM\") 😹 LH NOIRE - NOVÝ SKVĚLÝ MOD DO !MAFIA 😹','https://www.twitch.tv/videos/2403079691','25855',0,1,1,NULL,NULL,'2025-03-21 13:06:02','2025-03-22 05:20:25'),(1036,11,'2402259509','2025-03-10 17:58:11','🏌️‍♂️ REAKCE NA KLIPY 🏌️‍♂️ LH NOIRE - NOVÝ SKVĚLÝ MOD DO !MAFIA 🏌️‍♂️ GOLF S JANKEM 🏌️‍♂️','https://www.twitch.tv/videos/2402259509','23583',0,1,1,NULL,NULL,'2025-03-21 13:06:02','2025-03-22 05:20:34'),(1037,16,'2410765749','2025-03-20 18:11:10','⚔️ 21:00 Únos ⚔️ Nové Wole ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2410765749','18440',0,1,1,NULL,NULL,'2025-03-21 13:06:03','2025-03-22 05:32:53'),(1038,16,'2409896161','2025-03-19 17:33:50','⚔️ 21:00 DRILL FITNESS S PD ⚔️ !recap pro souhrn příběhu ⚔️ WoLe zítra ⚔️','https://www.twitch.tv/videos/2409896161','20830',0,1,1,NULL,NULL,'2025-03-21 13:06:03','2025-03-22 05:38:02'),(1039,16,'2407455249','2025-03-16 18:17:35','⚔️ Omša, zombíci, testifikace Radara? ⚔️ Nové Wole ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2407455249','16780',0,1,1,NULL,NULL,'2025-03-21 13:06:03','2025-03-22 05:47:49'),(1040,16,'2406577327','2025-03-15 19:07:42','⚔️ Návrat Bruce Bayna? ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2406577327','17820',0,1,1,NULL,NULL,'2025-03-21 13:06:03','2025-03-22 05:59:10'),(1041,16,'2404721934','2025-03-13 17:26:35','⚔️ Cesta DO NEVÍM KAM ⚔️ 20:30 GTA RP ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2404721934','19200',0,1,1,NULL,NULL,'2025-03-21 13:06:04','2025-03-22 06:08:22'),(1042,16,'2403940129','2025-03-12 18:20:34','⚔️ Zpověď a noví rekruté ⚔️ Nové Wole ⚔️ !recap pro shrnutí děje ⚔️','https://www.twitch.tv/videos/2403940129','18570',0,1,1,NULL,NULL,'2025-03-21 13:06:04','2025-03-22 06:20:48'),(1043,16,'2403078665','2025-03-11 17:45:08','⚔️ Povyšování a psycholog ⚔️ !recap pro shrnutí příběhu ⚔️','https://www.twitch.tv/videos/2403078665','18410',0,1,1,NULL,NULL,'2025-03-21 13:06:04','2025-03-22 06:37:58'),(1044,16,'2402243030','2025-03-10 17:34:28','⚔️ GTA RP - Vykradení sanitky ⚔️ Sleduj !zaznamy ⚔️','https://www.twitch.tv/videos/2402243030','21880',0,1,1,NULL,NULL,'2025-03-21 13:06:04','2025-03-22 06:37:58'),(1045,17,'2410584970','2025-03-20 13:18:59','PUBG🚨\"SPAJKK\" Creator code🚨!cs2big !cryptocom🚨SLEDUJ IG: @spajkk','https://www.twitch.tv/videos/2410584970','34320',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 06:57:12'),(1046,17,'2409863015','2025-03-19 16:49:40','GTA RP NA GENK⚠️BÁL SES, ŽE NEBUDE STREAM?⚠️ !cs2big !cryptocom ⚠️ @spajkk','https://www.twitch.tv/videos/2409863015','24610',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 07:21:02'),(1047,17,'2408935358','2025-03-18 14:08:56','INTRO🍀15:30 Valorant 🍀18:00 GTA RP🍀!cs2big !cryptocom 🍀 @spajkk','https://www.twitch.tv/videos/2408935358','34260',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 07:49:36'),(1048,17,'2408194034','2025-03-17 16:36:32','INTRO 🥹 on to fakt zapl 🥹 !cryptocom 🥹 @spajkk','https://www.twitch.tv/videos/2408194034','17130',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 08:06:17'),(1049,17,'2407161878','2025-03-16 10:46:49','INTRO🔥12 hodinový stream pro vás!🔥 !cryptocom 🔥PROGRAM NA IG @spajkk','https://www.twitch.tv/videos/2407161878','44210',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 08:34:23'),(1050,17,'2406326029','2025-03-15 13:32:32','INTRO❤️ Teslička umytá, je čas běhat po lese❤️ !cryptocom 📍SLEDUJ NA INSTAGRAMU @spajkk','https://www.twitch.tv/videos/2406326029','32100',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 09:03:29'),(1051,17,'2405343269','2025-03-14 10:30:40','IRL 🚀 Převzetí NOVÉ Tesly Model Y Juniper! 🚀 !cyptocom 🚀SLEDUJ NA INSTAGRAMU @spajkk','https://www.twitch.tv/videos/2405343269','39090',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 09:24:38'),(1052,17,'2404644422','2025-03-13 15:26:55','DAYZ DEN 7.🐒ZÍTRA IRL Z PŘEDÁNÍ TESLY Y JUNIPER🐒!cryptocom !cs2big🐒!frakce🐒 Program na IG: @spajkk','https://www.twitch.tv/videos/2404644422','30780',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 09:51:30'),(1053,17,'2403732468','2025-03-12 12:46:44','INTRO🐒investuj na !cryptocom🐒1500 subs=IRL z předání Tesly🐒!frakce🐒 Program na IG: @spajkk','https://www.twitch.tv/videos/2403732468','37360',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 10:22:58'),(1054,17,'2402881466','2025-03-11 12:05:07','DAYZ DEN 5.🫡večer GTA RP a CS FACEIT🫡investuj na !cryptocom🫡1500 subs=IRL z předání Tesly🫡','https://www.twitch.tv/videos/2402881466','37800',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 10:49:50'),(1055,17,'2402164323','2025-03-10 15:34:53','DAYZ s @paradizoo @goes 👻investuj na !cryptocom👻1500 subs=IRL z předání Tesly👻','https://www.twitch.tv/videos/2402164323','31880',0,1,1,NULL,NULL,'2025-03-21 13:06:05','2025-03-22 10:49:50'),(1056,18,'2408103233','2025-03-17 13:58:31','17.00 VELKÉ DERBY: SINNERS vs DYNAMO ECLOT - BO3- @playzonecz SPRING EVENT 🥳 DNES LAST 2 !KOLO PRO SUPPORTERY 🥳','https://www.twitch.tv/videos/2408103233','30210',0,1,1,NULL,NULL,'2025-03-21 13:06:06','2025-03-22 11:15:21'),(1057,18,'2407157866','2025-03-16 10:35:53','CS2 FACEIT BINGO O SLUCHÁTKA ZA 5500 KČ 🥳 17.00 VITALITY - MOUZ GRANDFINÁLE ESL PRO LEAGUE 🥳 DNES DAY 2 !KOLO PRO SUPPORTERY 🥳','https://www.twitch.tv/videos/2407157866','40950',0,1,1,NULL,NULL,'2025-03-21 13:06:06','2025-03-22 11:58:38'),(1058,18,'2406240959','2025-03-15 10:37:02','CS2 FACEIT BINGO O SLUCHÁTKA ZA 5500 KČ 🥳15.30 SPIRIT vs MOUZ - ESL PRO LEAGUE 21 WATCHPARTY 🥳 DNES STARTUJE !KOLO PRO SUPPORTERY 🥳','https://www.twitch.tv/videos/2406240959','45910',0,1,1,NULL,NULL,'2025-03-21 13:06:06','2025-03-22 12:46:47'),(1059,18,'2405408217','2025-03-14 13:07:45','RANKACY KOMUNITNÍ TURNAJ O SKINY! 15.00, 16.00 A 17.00 ZÁPASY! 🥳 18.30 ESL PRO LEAGUE 21: NAVI vs MONGOLZ WATCHPARTY 🥳 !RANKACY','https://www.twitch.tv/videos/2405408217','29180',0,1,1,NULL,NULL,'2025-03-21 13:06:06','2025-03-22 12:51:34'),(1060,18,'2402924375','2025-03-11 13:38:02','SINNERS vs NAVI JUNIOR -BO3- CCT SERIES 20: ZÁPAS O POSTUP DO PLAY OFF!!!! 🥳 DALŠÍ DEN HOKEJ !KOLO 🥳 !RANKACY','https://www.twitch.tv/videos/2402924375','31690',0,1,1,NULL,NULL,'2025-03-21 13:06:06','2025-03-22 13:13:40'),(1061,18,'2402037056','2025-03-10 11:01:03','SINNERS vs NAVI JUNIOR -BO3- PGL BUCHAREST 2025 CLOSED QUAL 🥳 DALŠÍ DEN HOKEJ !KOLO 🥳 !RANKACY','https://www.twitch.tv/videos/2402037056','27910',0,1,1,NULL,NULL,'2025-03-21 13:06:06','2025-03-22 13:13:40'),(1062,19,'2410708509','2025-03-20 16:55:58','Char murat - speciální mise pro CCčka','https://www.twitch.tv/videos/2410708509','12123',0,1,1,NULL,NULL,'2025-03-21 13:06:07','2025-03-22 13:25:24'),(1063,19,'2410487415','2025-03-20 08:51:54','Char murat marky + Prototipo','https://www.twitch.tv/videos/2410487415','11812',0,1,1,NULL,NULL,'2025-03-21 13:06:07','2025-03-22 13:34:55'),(1064,19,'2409915735','2025-03-19 17:59:42','DROPS | Prototipo 100 % grind','https://www.twitch.tv/videos/2409915735','9425',0,1,1,NULL,NULL,'2025-03-21 13:06:07','2025-03-22 13:40:30'),(1065,19,'2409633728','2025-03-19 08:02:48','Prototipo 100 % grind','https://www.twitch.tv/videos/2409633728','9660',0,1,1,NULL,NULL,'2025-03-21 13:06:07','2025-03-22 13:46:29'),(1066,19,'2409087881','2025-03-18 18:07:42','Char Murat gameplay','https://www.twitch.tv/videos/2409087881','9358',0,1,1,NULL,NULL,'2025-03-21 13:06:07','2025-03-22 13:52:28'),(1067,19,'2408817981','2025-03-18 09:04:16','Prototipo na 100 %, kdyžtak LTčka','https://www.twitch.tv/videos/2408817981','10449',0,1,1,NULL,NULL,'2025-03-21 13:06:07','2025-03-22 13:58:57'),(1068,19,'2408244354','2025-03-17 17:48:17','Prototipo marked za 99 her | Utrpení s LT pokračuje?','https://www.twitch.tv/videos/2408244354','10568',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:06:52'),(1069,19,'2407998555','2025-03-17 09:20:36','Prototipo marky a pak LT v kostce','https://www.twitch.tv/videos/2407998555','11406',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:17:16'),(1070,19,'2407365813','2025-03-16 16:30:32','Nedělní Prototipo randomy','https://www.twitch.tv/videos/2407365813','10137',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:23:53'),(1071,19,'2406475284','2025-03-15 17:08:41','CoD2 MČR - Čtvrtfinále vs team sfora','https://www.twitch.tv/videos/2406475284','5593',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:28:26'),(1072,19,'2406169159','2025-03-15 07:01:14','CoD2 MČR - Playzone Arena Praha','https://www.twitch.tv/videos/2406169159','13328',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:40:17'),(1073,19,'2405562834','2025-03-14 17:21:12','Prototipo gaming','https://www.twitch.tv/videos/2405562834','9520',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:47:58'),(1074,19,'2405297963','2025-03-14 07:52:03','Dopolední gaming s Prototipem','https://www.twitch.tv/videos/2405297963','10026',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 14:54:12'),(1075,19,'2404709558','2025-03-13 17:07:53','Večerní Prototipo + Latt gameplay','https://www.twitch.tv/videos/2404709558','12619',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 15:01:11'),(1076,19,'2404472980','2025-03-13 08:19:54','Prototipo gameplay','https://www.twitch.tv/videos/2404472980','8666',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 15:06:33'),(1077,19,'2403965024','2025-03-12 18:53:40','T-54 v roce 2025?!','https://www.twitch.tv/videos/2403965024','6843',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 15:10:39'),(1078,19,'2403919055','2025-03-12 17:55:22','T-54 v roce 2025?!','https://www.twitch.tv/videos/2403919055','3428',0,1,1,NULL,NULL,'2025-03-21 13:06:08','2025-03-22 15:12:38'),(1079,19,'2403668525','2025-03-12 09:49:11','T-44 marky do 50 her?','https://www.twitch.tv/videos/2403668525','9445',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 15:17:30'),(1080,19,'2402999648','2025-03-11 15:55:08','Prototipo 6 damage race o suby vs @iyouxin | záznam bude na yt','https://www.twitch.tv/videos/2402999648','12952',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 15:26:21'),(1081,19,'2402824504','2025-03-11 09:06:40','Markneme T-43 a pak T-44 gaming','https://www.twitch.tv/videos/2402824504','11343',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 15:34:00'),(1082,19,'2402174706','2025-03-10 15:53:55','Jsem zpět, dáme si grind T-43','https://www.twitch.tv/videos/2402174706','13777',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 15:34:00'),(1083,20,'2410851639','2025-03-20 19:57:57','Čas a prostor ve 2D - After: WarT?','https://www.twitch.tv/videos/2410851639','15620',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 15:44:05'),(1084,20,'2410013553','2025-03-19 19:59:41','Wartales.... potřebujeme výzbroj... a přestat umírat...','https://www.twitch.tv/videos/2410013553','14220',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 15:49:43'),(1085,20,'2409176394','2025-03-18 19:57:49','HITMAN event... The Drop! / #RTXOn #DLSS','https://www.twitch.tv/videos/2409176394','15641',0,1,1,NULL,NULL,'2025-03-21 13:06:09','2025-03-22 16:01:23'),(1086,20,'2408350794','2025-03-17 19:59:21','Válečná vřava na více frontách...','https://www.twitch.tv/videos/2408350794','17450',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:05:58'),(1087,20,'2407550082','2025-03-16 20:01:10','Co doom dal...','https://www.twitch.tv/videos/2407550082','19830',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:17:22'),(1088,20,'2406565089','2025-03-15 18:56:12','Dobrodruzi na cestách... #3 / #NoSpoils','https://www.twitch.tv/videos/2406565089','23920',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:21:59'),(1089,20,'2405692042','2025-03-14 20:00:32','Dobrodruzi na cestách... #2 / #NoSpoils','https://www.twitch.tv/videos/2405692042','18900',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:38:28'),(1090,20,'2404844311','2025-03-13 20:01:14','Dobrodruzi na cestách...','https://www.twitch.tv/videos/2404844311','18050',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:48:44'),(1091,20,'2403182252','2025-03-11 19:55:29','Polská farma s klukama.... potom Wartales #snad / #DareDrop','https://www.twitch.tv/videos/2403182252','18200',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:54:29'),(1092,20,'2402354842','2025-03-10 19:56:56','Kámen mudrců a Wartales?','https://www.twitch.tv/videos/2402354842','17710',0,1,1,NULL,NULL,'2025-03-21 13:06:10','2025-03-22 16:54:29'),(1093,21,'2410735905','2025-03-20 17:32:47','rp>bf | 19:30 testy k pd monkaS !backpack','https://www.twitch.tv/videos/2410735905','29190',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 17:24:04'),(1094,21,'2409899545','2025-03-19 17:38:35','rp>bf !backpack','https://www.twitch.tv/videos/2409899545','30580',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 17:48:00'),(1095,21,'2408270318','2025-03-17 18:20:23','Dukie Pookie !backpack','https://www.twitch.tv/videos/2408270318','18910',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 18:13:01'),(1096,21,'2407393950','2025-03-16 17:05:06','MŇAU MŇAU MŇAU MŇAUUUU !backpack','https://www.twitch.tv/videos/2407393950','16970',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 18:29:55'),(1097,21,'2406472951','2025-03-15 17:05:51','MŇAU MŇAU MŇAU MŇAUUUU !backpack','https://www.twitch.tv/videos/2406472951','35770',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 19:09:48'),(1098,21,'2405486044','2025-03-14 15:27:58','Dukie \"MaxVerstappen\" Brooks !backpack','https://www.twitch.tv/videos/2405486044','35670',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 19:46:42'),(1099,21,'2404801582','2025-03-13 19:09:13','Kratší stream, koblih únoscem?','https://www.twitch.tv/videos/2404801582','6210',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 19:54:17'),(1100,21,'2403850250','2025-03-12 16:17:33','Neumím kotrmelce','https://www.twitch.tv/videos/2403850250','23380',0,1,1,NULL,NULL,'2025-03-21 13:06:11','2025-03-22 20:10:01'),(1101,21,'2403078954','2025-03-11 17:45:31','nový heist krádeže sanitky, herdyn army v akci | !dc !ig !madmonq','https://www.twitch.tv/videos/2403078954','19750',0,1,1,NULL,NULL,'2025-03-21 13:06:12','2025-03-22 20:28:37'),(1102,21,'2402181623','2025-03-10 16:03:29','nový heist krádeže sanitky, herdyn army v akci | !dc !ig !madmonq','https://www.twitch.tv/videos/2402181623','26770',0,1,1,NULL,NULL,'2025-03-21 13:06:12','2025-03-22 20:28:37'),(1111,25,'2410503073','2025-03-20 09:45:44','VÍTEJTE V SOUTH PARKU 👊 ČARODĚJNÁ DÁVKA SPRÁVNÉHO HUMORU! 👊 SOUTHPARK: THE STICK OF TRUTH 👊 #1 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2410503073','32434',0,1,1,NULL,NULL,'2025-03-21 13:06:14','2025-03-22 20:59:16'),(1112,25,'2409686910','2025-03-19 11:07:45','LET\'S ROCK! 👊 DABINGOVÉ NOVINKY A POKRAČOVÁNÍ AKCE S DUŠANEM 👊 DUKEM NUKEM 3D 👊 #2 👊 !MMQ !KOFI !XZONE !KNIHA','https://www.twitch.tv/videos/2409686910','17691',0,1,1,NULL,NULL,'2025-03-21 13:06:14','2025-03-22 21:10:52'),(1113,25,'2407206175','2025-03-16 12:24:19','DAMN, I\'M LOOKIN\' GOOOOOD! 👊 STŘELBA, KREV, CECKY A TESTOSTERON 👊 DUKEM NUKEM 3D 👊 #1 👊 !MMQ !KOFI !XZONE !KNIHA','https://www.twitch.tv/videos/2407206175','17174',0,1,1,NULL,NULL,'2025-03-21 13:06:14','2025-03-22 21:19:31'),(1114,25,'2405317076','2025-03-14 09:00:46','MORDUJEME NÁCKY! 👊 STARÁ LÁSKA NEREZAVÍ 👊 NOVÉ ALERTY 👊 RETURN TO CASTLE WOLFENSTEIN 👊 #1 👊 REALRTCW MOD 👊 !MMQ !KOFI !XZONE !KNIHA','https://www.twitch.tv/videos/2405317076','18175',0,1,1,NULL,NULL,'2025-03-21 13:06:14','2025-03-22 21:31:03'),(1115,27,'2410523205','2025-03-20 10:52:41','Ostřílený znalec AC na scénu! 🦊 Den 1: Herního subathonu🔴 | Socials: @Mullersie','https://www.twitch.tv/videos/2410523205','94413',0,1,1,NULL,NULL,'2025-03-21 13:06:14','2025-03-22 22:13:53'),(1116,27,'2408990377','2025-03-18 15:49:59','Novinkový přehled, 2 horory a pokec o subathonu | Socials: @Mullersie','https://www.twitch.tv/videos/2408990377','11017',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-22 22:23:04'),(1117,27,'2407289196','2025-03-16 14:43:02','Bramborový Evil Within 2🥔👀 | Socials: @Mullersie','https://www.twitch.tv/videos/2407289196','14315',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-22 22:38:12'),(1118,27,'2406297945','2025-03-15 12:44:16','Sniper Elite 5, ale trošku jinak?! 💦 | Socials: @Mullersie','https://www.twitch.tv/videos/2406297945','16535',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-22 22:48:20'),(1119,27,'2405369095','2025-03-14 11:45:03','Astrometica a Genshin Spešl programos | Socials: @Mullersie','https://www.twitch.tv/videos/2405369095','26245',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-22 23:15:12'),(1120,27,'2404559075','2025-03-13 12:43:01','Pedál až na zem! 😈 Need for Speed: Unbound | Socials: @Mullersie','https://www.twitch.tv/videos/2404559075','17474',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-22 23:30:15'),(1121,27,'2403668784','2025-03-12 09:50:15','The Evil Within 2 👹Tepovka nesmí chybět!💣 Socials: @Mullersie','https://www.twitch.tv/videos/2403668784','33029',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-22 23:55:22'),(1122,27,'2402879492','2025-03-11 12:01:10','The Evil Within 2 👹Tepovka nesmí chybět!💣 Socials: @Mullersie','https://www.twitch.tv/videos/2402879492','16498',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-23 00:08:01'),(1123,27,'2402105816','2025-03-10 13:44:39','Tomb Raider IV 👀 Dneska to dohrajem, žejo?👀 Socials: @Mullersie','https://www.twitch.tv/videos/2402105816','17964',0,1,1,NULL,NULL,'2025-03-21 13:06:15','2025-03-23 00:08:01'),(1124,28,'2410614960','2025-03-20 14:18:10','⛩️ AC SHADOWS + DROPS + CZ OD @SQUIEE ⛩️ | POUZE PŘÍBĚH | Q&A | Λ vs. ✠','https://www.twitch.tv/videos/2410614960','27176',0,1,1,NULL,NULL,'2025-03-21 13:06:16','2025-03-23 00:24:51'),(1125,28,'2409022443','2025-03-18 16:39:27','⛩️ AC SHADOWS ⛩️ | POUZE PŘÍBĚH | Q&A | Λ vs. ✠ | 18:00 |','https://www.twitch.tv/videos/2409022443','27259',0,1,1,NULL,NULL,'2025-03-21 13:06:16','2025-03-23 00:43:44'),(1126,29,'2410778607','2025-03-20 18:28:38','ROY PAK BARBIE ASIK OK | zejtra job !dc !ig !mc','https://www.twitch.tv/videos/2410778607','15638',0,1,1,NULL,NULL,'2025-03-21 13:06:16','2025-03-23 01:01:47'),(1127,29,'2409928533','2025-03-19 18:14:21','DNESKA PATROLA ZA ROYE SNAD TEU HODINy UŽ| zejtra job !dc !ig !mc','https://www.twitch.tv/videos/2409928533','16459',0,1,1,NULL,NULL,'2025-03-21 13:06:16','2025-03-23 01:06:16'),(1128,29,'2409093882','2025-03-18 18:15:31','BARBIE STREAM | !dc !ig !mc','https://www.twitch.tv/videos/2409093882','32430',0,1,1,NULL,NULL,'2025-03-21 13:06:16','2025-03-23 01:33:06'),(1129,29,'2408247164','2025-03-17 17:52:11','TYEMSJSMEKLEPLIMI| !dc !ig !mc','https://www.twitch.tv/videos/2408247164','32552',0,1,1,NULL,NULL,'2025-03-21 13:06:16','2025-03-23 01:39:10'),(1130,29,'2407558423','2025-03-16 20:09:45','ZEJTRA VOLNO - NAVAS - AHOJ - ROY ASI SPÍŠ| !dc !ig !mc','https://www.twitch.tv/videos/2407558423','22893',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 01:55:09'),(1131,29,'2406533534','2025-03-15 18:19:22','DNESKA CHILL PATROLA - ROY - zejtra job| !dc !ig !mc','https://www.twitch.tv/videos/2406533534','11361',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 01:57:16'),(1132,29,'2405616291','2025-03-14 18:30:27','NAVAS - ROY - zejtra job| !dc !ig !mc','https://www.twitch.tv/videos/2405616291','9848',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 02:00:52'),(1133,29,'2404718979','2025-03-13 17:22:04','ZEJTRA JOB AWARE | !dc !ig !mc','https://www.twitch.tv/videos/2404718979','17400',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 02:04:04'),(1134,29,'2403922256','2025-03-12 17:59:03','NOVÝ ALERTY LETS GO, JEDEN SECRET | !dc !ig !mc','https://www.twitch.tv/videos/2403922256','26871',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 02:09:02'),(1135,29,'2403100952','2025-03-11 18:12:41','RP PAK BUDEME ĚLAT ALERTY, DNESKA JE TEN DEN ANO ANO | !dc !ig !mc','https://www.twitch.tv/videos/2403100952','25165',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 02:31:48'),(1136,29,'2402527179','2025-03-10 23:36:27','RP JUPÍ JOOOO VOLNO JUPÍÍ | !dc !ig !mc','https://www.twitch.tv/videos/2402527179','7468',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 02:36:34'),(1137,29,'2402254791','2025-03-10 17:52:06','RP JUPÍ JOOOO VOLNO JUPÍÍ | !dc !ig !mc','https://www.twitch.tv/videos/2402254791','20571',0,1,1,NULL,NULL,'2025-03-21 13:06:17','2025-03-23 02:36:34'),(1138,30,'2410487549','2025-03-20 08:52:19','TIEŇE! 🩸 Najhorší Assassin v hre btw.⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2410487549','13080',0,1,1,NULL,NULL,'2025-03-21 13:06:18','2025-03-23 02:40:11'),(1139,30,'2409670099','2025-03-19 10:14:43','#1 AVATAR! Po prvý krát hrám túto hru! To musí byť tak dobré ako filmy nie?⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2409670099','9276',0,1,1,NULL,NULL,'2025-03-21 13:06:18','2025-03-23 02:40:11'),(1140,30,'2404517143','2025-03-13 10:56:32','Krátky testovací STREAM s MARIO autíčkami, mam zapálené oko Sadge !sr zapnuté!⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2404517143','3034',0,1,1,NULL,NULL,'2025-03-21 13:06:18','2025-03-23 02:42:34'),(1141,30,'2402143929','2025-03-10 14:59:11','Finále SPLIT FICTION /w @evzeniss⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2402143929','12020',0,1,1,NULL,NULL,'2025-03-21 13:06:18','2025-03-23 02:54:43'),(1142,31,'2410564551','2025-03-20 12:37:36','💦 TOHLE NENÍ ŽÁDNÁ RANDÍRNA 💦 TADY SE KONSTRUKTIVNĚ KRITIZUJE | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2410564551','29803',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 03:20:53'),(1143,31,'2408191739','2025-03-17 16:32:56','MOČKA PONDĚLÍ VOL.3 !xzone !madmonq !vohoz','https://www.twitch.tv/videos/2408191739','12548',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 03:31:57'),(1144,31,'2407193818','2025-03-16 12:00:20','NEDĚLNÍ RETRO VOL. 97 - KLIDNEJ A ČISTEJ SMAH !xzone !madmonq !vohoz','https://www.twitch.tv/videos/2407193818','15453',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 03:42:58'),(1145,31,'2404577745','2025-03-13 13:20:04','ČTVRTEK, PAGAN NÁM UTEK CHICHICHI','https://www.twitch.tv/videos/2404577745','21059',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 03:47:51'),(1146,31,'2403715145','2025-03-12 12:06:27','STŘEDA = PAGANA NA KAPITALISTICKÁ PRASATA TŘEBA','https://www.twitch.tv/videos/2403715145','21095',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 04:04:20'),(1147,31,'2402200628','2025-03-10 16:33:41','MOČKA PONDĚLÍ VOL.2','https://www.twitch.tv/videos/2402200628','21003',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 04:04:20'),(1148,32,'2410588355','2025-03-20 13:26:08','Speciál: Středomořská kuchyně s taťkou @vedator_cz ... snad neshoříme... !auto','https://www.twitch.tv/videos/2410588355','26073',0,1,1,NULL,NULL,'2025-03-21 13:06:19','2025-03-23 04:22:11'),(1149,32,'2409907446','2025-03-19 17:49:35','Jednička! Forza Horizon 1 - Tam kde to všechno začalo... !kytara','https://www.twitch.tv/videos/2409907446','11682',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 04:30:13'),(1150,32,'2409048071','2025-03-18 17:14:06','Assassin s Creed SHADOWS - Twitch Drops ... !kytara','https://www.twitch.tv/videos/2409048071','17515',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 04:45:41'),(1151,32,'2408225391','2025-03-17 17:20:55','Refund serie: Divný hry ze slevy ... !kytara','https://www.twitch.tv/videos/2408225391','19133',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 04:59:11'),(1152,32,'2406330521','2025-03-15 13:40:26','Pohřeb velikána!','https://www.twitch.tv/videos/2406330521','29366',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:04:40'),(1153,32,'2404915890','2025-03-13 21:34:07','Praha - Olomouc','https://www.twitch.tv/videos/2404915890','2883',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:06:21'),(1154,32,'2404835771','2025-03-13 19:52:10','Praha - Olomouc','https://www.twitch.tv/videos/2404835771','5995',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:10:46'),(1155,32,'2404457035','2025-03-13 07:21:40','Olomouc - Praha','https://www.twitch.tv/videos/2404457035','11329',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:23:39'),(1156,32,'2403944321','2025-03-12 18:26:21','Mishstředa: Bitva v Mario Kart. #nenintendoevergreen #marioandfriends !kytara','https://www.twitch.tv/videos/2403944321','14595',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:31:08'),(1157,32,'2402981466','2025-03-11 15:23:36','Customizace Kremrole s Burym. !auto','https://www.twitch.tv/videos/2402981466','20789',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:45:32'),(1158,32,'2402220821','2025-03-10 17:02:31','Game Pass stream. Vyhraj kod na Gamepass. #xboxscsk #gamepass !listeksub','https://www.twitch.tv/videos/2402220821','16463',0,1,1,NULL,NULL,'2025-03-21 13:06:20','2025-03-23 05:45:53'),(1159,33,'2409826284','2025-03-19 15:53:06','Nová FANTASTICKÁ COOP hra pro 33 lidí najednou! Je to úplně boží!| !kniha !elite','https://www.twitch.tv/videos/2409826284','6135',0,1,1,NULL,NULL,'2025-03-21 13:06:21','2025-03-23 05:51:42'),(1160,33,'2408989713','2025-03-18 15:48:45','Nová COOP hra pro 33 lidí najednou! Wtf! :D | !kniha !elite','https://www.twitch.tv/videos/2408989713','8632',0,1,1,NULL,NULL,'2025-03-21 13:06:21','2025-03-23 05:57:32'),(1161,33,'2408211089','2025-03-17 17:01:06','Rýžujeme zlato. Je čas to pořádně zoptimalizovat | !kniha !elite','https://www.twitch.tv/videos/2408211089','5231',0,1,1,NULL,NULL,'2025-03-21 13:06:21','2025-03-23 06:00:46'),(1162,33,'2407335926','2025-03-16 15:51:11','Rýžujeme zlato. Hodně zlata. | !kniha !elite','https://www.twitch.tv/videos/2407335926','8365',0,1,1,NULL,NULL,'2025-03-21 13:06:21','2025-03-23 06:05:35'),(1163,33,'2405500871','2025-03-14 15:53:07','Tohle je taková sranda :D Dnes s @thestarda | !kniha !elite','https://www.twitch.tv/videos/2405500871','9042',0,1,1,NULL,NULL,'2025-03-21 13:06:21','2025-03-23 06:13:09'),(1164,33,'2404651580','2025-03-13 15:39:37','Jsem zpět po nemoci! Dnes hororovka o které jsi určitě ještě neslyšel :D | !kniha !elite','https://www.twitch.tv/videos/2404651580','8581',0,1,1,NULL,NULL,'2025-03-21 13:06:21','2025-03-23 06:24:35'),(1165,34,'2407091826','2025-03-16 07:21:23','🛑!SOUTĚŽ o 20k nebo PS5 PRO!!! VERDANSK za 18 dní!!🦈 Sraz už za ROHEM!! //🔥✌🏽🎥🦈🚘 ✌🏽// @madmonq','https://www.twitch.tv/videos/2407091826','21210',0,1,1,NULL,NULL,'2025-03-21 13:06:22','2025-03-23 06:39:52'),(1178,40,'2410639353','2025-03-20 15:03:04','Games and shit!','https://www.twitch.tv/videos/2410639353','23613',0,1,1,NULL,NULL,'2025-03-21 13:06:25','2025-03-21 20:41:40'),(1179,40,'2409795400','2025-03-19 15:00:06','Games and shit!','https://www.twitch.tv/videos/2409795400','21476',0,1,1,NULL,NULL,'2025-03-21 13:06:25','2025-03-21 21:03:16'),(1180,40,'2408964336','2025-03-18 15:04:01','Games and shit!','https://www.twitch.tv/videos/2408964336','21573',0,1,1,NULL,NULL,'2025-03-21 13:06:25','2025-03-21 21:27:59'),(1181,40,'2408137981','2025-03-17 15:03:19','Games and shit!','https://www.twitch.tv/videos/2408137981','21745',0,1,1,NULL,NULL,'2025-03-21 13:06:25','2025-03-21 21:49:59'),(1182,40,'2407354814','2025-03-16 16:15:13','100k pubg tourny streamsniper try outs!','https://www.twitch.tv/videos/2407354814','15995',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 22:03:56'),(1183,40,'2407307003','2025-03-16 15:08:36','Games and shit!','https://www.twitch.tv/videos/2407307003','3554',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 22:11:07'),(1184,40,'2406381418','2025-03-15 15:00:27','Games and shit!','https://www.twitch.tv/videos/2406381418','21411',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 22:18:57'),(1185,40,'2404625437','2025-03-13 14:54:08','Games and shit!','https://www.twitch.tv/videos/2404625437','21795',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 22:39:10'),(1186,40,'2403803534','2025-03-12 15:01:27','Games and shit!','https://www.twitch.tv/videos/2403803534','21666',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 22:44:23'),(1187,40,'2402968787','2025-03-11 15:01:50','Games and shit!','https://www.twitch.tv/videos/2402968787','21617',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 23:28:15'),(1188,40,'2402143711','2025-03-10 14:58:49','Games and shit!','https://www.twitch.tv/videos/2402143711','20774',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 23:34:07'),(1189,41,'2410701349','2025-03-20 16:45:22','Wreckfest 2 Early Access and TDU Season 3 | 8 YEARS ON TWITCH | !mm !ig !peak','https://www.twitch.tv/videos/2410701349','22052',0,1,1,NULL,NULL,'2025-03-21 13:06:26','2025-03-21 23:57:18'),(1190,41,'2410673099','2025-03-20 16:01:03','Wreckfest 2 Early Access and TDU Season 3 | 8 YEARS ON TWITCH | !mm !ig !peak','https://www.twitch.tv/videos/2410673099','2513',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 00:01:49'),(1191,41,'2409151341','2025-03-18 19:27:29','8 YEARS ON TWITCH Burnout Paradise 1.0 is very different Last DAY [PS3-Emulator] | !mm !ig','https://www.twitch.tv/videos/2409151341','9950',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 00:10:00'),(1192,41,'2408997099','2025-03-18 16:00:19','Burnout Paradise 1.0 is very different Last DAY [PS3-Emulator] | !mm !ig','https://www.twitch.tv/videos/2408997099','12340',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 00:20:19'),(1193,41,'2408177957','2025-03-17 16:11:00','Burnout Paradise 1.0 is very different [PS3-Emulator] | !mm !ig','https://www.twitch.tv/videos/2408177957','20141',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 00:48:08'),(1194,41,'2406442569','2025-03-15 16:26:21','Burnout Paradise 1.0 is very different [PS3-Emulator] | !mm !ig','https://www.twitch.tv/videos/2406442569','20816',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 01:05:58'),(1195,41,'2405508744','2025-03-14 16:03:36','See you on Saturday Hotshots | !mm !ig | Happy Friday','https://www.twitch.tv/videos/2405508744','22368',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 01:28:40'),(1196,41,'2404683443','2025-03-13 16:30:41','Midnight Club 3 !Randomizer Let\'s go | !mm !ig','https://www.twitch.tv/videos/2404683443','22379',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 01:48:54'),(1197,41,'2403836837','2025-03-12 15:58:58','Playing 8 Nintendo 64 Games at once on !Bizhawk !gameslist | !mm !ig','https://www.twitch.tv/videos/2403836837','19933',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 02:08:40'),(1198,41,'2403001833','2025-03-11 15:58:13','All Achievements on [PCSX2] NFS: Carbon Hardcore Final Day 7 | !ig !mm','https://www.twitch.tv/videos/2403001833','22266',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 02:26:50'),(1199,41,'2402197813','2025-03-10 16:29:30','Playing 8 N64 Racing games at once on !Bizhawk emulator | !gameslist | !mm !ig','https://www.twitch.tv/videos/2402197813','23650',0,1,1,NULL,NULL,'2025-03-21 13:06:27','2025-03-22 03:01:07'),(1200,43,'2410536323','2025-03-20 11:30:04','League of legends...dopo tanto tempo','https://www.twitch.tv/videos/2410536323','23210',0,1,1,NULL,NULL,'2025-03-21 13:06:28','2025-03-22 03:32:44'),(1201,43,'2409663786','2025-03-19 09:54:26','Prima live su twitch! Venite a vedere','https://www.twitch.tv/videos/2409663786','25581',0,1,1,NULL,NULL,'2025-03-21 13:06:28','2025-03-22 03:38:15'),(1202,43,'2408591453','2025-03-18 00:59:21','kaizocannon run fino alla lega con proplayers !Generation','https://www.twitch.tv/videos/2408591453','6030',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 03:43:51'),(1203,43,'2408472853','2025-03-17 22:34:21','Guess who\'s Back | kaizocannon ti sta aspettando !Generation','https://www.twitch.tv/videos/2408472853','930',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 03:44:30'),(1204,43,'2408168859','2025-03-17 15:58:00','Guess who\'s Back | kaizocannon ti sta aspettando !Generation','https://www.twitch.tv/videos/2408168859','23705',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:07:53'),(1205,43,'2408073220','2025-03-17 12:57:55','Guess who\'s Back !Generation','https://www.twitch.tv/videos/2408073220','10670',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:17:01'),(1206,43,'2408046967','2025-03-17 11:58:03','Guess who\'s Back !Generation','https://www.twitch.tv/videos/2408046967','3570',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:17:36'),(1207,43,'2406274665','2025-03-15 11:58:58','Yoooooooo','https://www.twitch.tv/videos/2406274665','20690',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:21:32'),(1208,43,'2404538267','2025-03-13 11:55:56','SISI SONO IO, PAULCANNON','https://www.twitch.tv/videos/2404538267','13871',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:32:43'),(1209,43,'2403773844','2025-03-12 14:06:06','CERCO IMPRENDITORE MULTIMILIONARIO CON LE CRYPTO CHE CI COMPRI UNO SLOT IN LEC','https://www.twitch.tv/videos/2403773844','70',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:32:48'),(1210,43,'2403698577','2025-03-12 11:24:27','Parliamo un po\' della finale di ieri e decidiamo cosa fare insieme a voi','https://www.twitch.tv/videos/2403698577','9542',0,1,1,NULL,NULL,'2025-03-21 13:06:29','2025-03-22 04:34:51'),(1211,43,'2403269082','2025-03-11 21:49:42','FINALE BTL, ANC LEGENDS VS GULLS GAME 2 - 1 BO5 3 min delay','https://www.twitch.tv/videos/2403269082','5750',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 04:41:00'),(1212,43,'2403064051','2025-03-11 17:24:31','FINALE BTL, ANC LEGENDS VS GULLS GAME 0 - 0','https://www.twitch.tv/videos/2403064051','15900',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 04:53:33'),(1213,43,'2402891657','2025-03-11 12:29:30','Oggi finale BTL, piccolo training in soloqueue','https://www.twitch.tv/videos/2402891657','11030',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 05:01:26'),(1214,43,'2402017638','2025-03-10 09:57:12','ULTIMO GIORNO DI TRAINING PRIMA DELLA FINALE','https://www.twitch.tv/videos/2402017638','11412',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 05:16:26'),(1215,44,'2410410535','2025-03-20 04:53:24','professional assassins creed reviewer (i played ac2 4 times)','https://www.twitch.tv/videos/2410410535','25210',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 16:40:58'),(1216,44,'2409583927','2025-03-19 05:19:27','trying to get level 30','https://www.twitch.tv/videos/2409583927','27233',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 06:46:24'),(1217,44,'2408741608','2025-03-18 04:52:55','39Museum !TPM ad','https://www.twitch.tv/videos/2408741608','24047',0,1,1,NULL,NULL,'2025-03-21 13:06:30','2025-03-22 07:16:18'),(1218,44,'2407937496','2025-03-17 05:41:22','repo later then masterbush','https://www.twitch.tv/videos/2407937496','24005',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 08:00:43'),(1219,44,'2407024613','2025-03-16 04:42:13','drop bear (australian)','https://www.twitch.tv/videos/2407024613','24828',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 08:53:20'),(1220,44,'2406064275','2025-03-15 03:29:50','where the frick i is','https://www.twitch.tv/videos/2406064275','18973',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 09:18:44'),(1221,44,'2404325923','2025-03-13 02:29:16','repo -> masterbush','https://www.twitch.tv/videos/2404325923','17724',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 09:44:05'),(1222,44,'2403581339','2025-03-12 04:58:22','repo with Big Al !youtube','https://www.twitch.tv/videos/2403581339','25868',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 10:21:41'),(1223,44,'2402723741','2025-03-11 04:02:43','repo in like 30 mins','https://www.twitch.tv/videos/2402723741','23550',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 11:02:04'),(1224,44,'2401867134','2025-03-10 02:51:13','Repo new !youtube video back to uploadinge','https://www.twitch.tv/videos/2401867134','31393',0,1,1,NULL,NULL,'2025-03-21 13:06:31','2025-03-22 11:35:33'),(1225,45,'2410694896','2025-03-20 16:35:10','BWL Draft today, WOW day. uture Games Show Spring Showcase later | !starforge !gamersupps','https://www.twitch.tv/videos/2410694896','24640',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 12:04:12'),(1226,45,'2409875692','2025-03-19 17:05:18','alexa play invisible by duran duran | !starforge !gamersupps','https://www.twitch.tv/videos/2409875692','23010',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 12:46:49'),(1227,45,'2409037964','2025-03-18 17:00:58','omega tuesday stream of hell you dont wanna miss this ong frfr | !starforge !gamersupps','https://www.twitch.tv/videos/2409037964','25820',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 13:32:09'),(1228,45,'2408209480','2025-03-17 16:59:36','playing the best variety games today (fortnite -> call of duty -> fifa) | !starforge !gamersupps','https://www.twitch.tv/videos/2408209480','29090',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 14:19:49'),(1229,45,'2407371379','2025-03-16 16:38:04','quick raid and then what | !starforge !gamersupps','https://www.twitch.tv/videos/2407371379','22890',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 14:44:45'),(1230,45,'2405473945','2025-03-14 15:07:20','Warcraft 3 Tourney ⚔️ Start?🤔 4 pm CET 🗿 !bracket | !starforge !gamersupps','https://www.twitch.tv/videos/2405473945','35730',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 15:57:01'),(1231,45,'2404695782','2025-03-13 16:50:21','alexa, play \'the final countdown\' on repeat for the next 7 hours | !starforge !gamersupps','https://www.twitch.tv/videos/2404695782','23630',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-04-04 12:39:56'),(1232,45,'2403845796','2025-03-12 16:10:39','Onlyfangs BWL meeting today. Final WC3 practice days. Variety begins soon | !starforge !gamersupps','https://www.twitch.tv/videos/2403845796','26020',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 17:19:33'),(1233,45,'2402233974','2025-03-10 17:21:11','possibly the best wc3 player in this house (maybe) | !starforge !gamersupps','https://www.twitch.tv/videos/2402233974','23560',0,1,1,NULL,NULL,'2025-03-21 13:06:32','2025-03-22 17:58:52'),(1234,46,'2410545230','2025-03-20 11:54:49','Thirst day 😩 💦 | FASHION !review tomorrow! 🧥👜🥾','https://www.twitch.tv/videos/2410545230','19580',0,1,1,NULL,NULL,'2025-03-21 13:06:33','2025-03-22 18:14:22'),(1235,46,'2409650748','2025-03-19 09:05:41','😱 WAKE UP WITH NYMN WTF 🤯😨 | !review up','https://www.twitch.tv/videos/2409650748','14860',0,1,1,NULL,NULL,'2025-03-21 13:06:33','2025-03-22 18:28:10'),(1236,46,'2408051500','2025-03-17 12:07:10','🍀🌈 TRICKLE IN, LEPRECHAUNS! 🎩💰 | 📢 NYMN\'S NEWS NETWORK, 6PM CET! 📰🚨','https://www.twitch.tv/videos/2408051500','24870',0,1,1,NULL,NULL,'2025-03-21 13:06:33','2025-03-22 18:45:51'),(1237,46,'2407193141','2025-03-16 11:59:25','🌞 Sun day 🌞TODAY: Nubby ➜ Gaggl \"movie\" night ➜ Footy watch party 🌞','https://www.twitch.tv/videos/2407193141','23660',0,1,1,NULL,NULL,'2025-03-21 13:06:33','2025-03-22 19:08:44'),(1238,46,'2406360698','2025-03-15 14:28:28','₍^. .^₎⟆ CATURDAY! 🐈 Time to get nymning','https://www.twitch.tv/videos/2406360698','20700',0,1,1,NULL,NULL,'2025-03-21 13:06:33','2025-03-22 19:24:18'),(1239,46,'2405367168','2025-03-14 11:40:04','😎 You did it! FRIDAY\'s HERE! 🍻 FRIDAY !REVIEW ⭐ TRIVIA TODAY 🎵 NEW FUSER SET! 🎶','https://www.twitch.tv/videos/2405367168','22590',0,1,1,NULL,NULL,'2025-03-21 13:06:33','2025-03-22 19:47:28'),(1240,46,'2404543578','2025-03-13 12:05:59','What were your recent wins? 👉 nymn.tv/review','https://www.twitch.tv/videos/2404543578','19940',0,1,1,NULL,NULL,'2025-03-21 13:06:34','2025-03-22 20:04:00'),(1241,46,'2403706005','2025-03-12 11:45:58','NYMNERS ANONYMOUS TRICKLE IN 👥 | New review up - wins 👉 nymn.tv/review','https://www.twitch.tv/videos/2403706005','21090',0,1,1,NULL,NULL,'2025-03-21 13:06:34','2025-03-22 20:27:43'),(1242,46,'2402076333','2025-03-10 12:42:46','✅ Let\'s awesome ✅ ⚠️ NEWS NETWORK 5PM CET TODAY!! ⚠️ | ⚔️💀 Guzu WoW Raid tonight!','https://www.twitch.tv/videos/2402076333','25180',0,1,1,NULL,NULL,'2025-03-21 13:06:34','2025-03-22 20:36:11'),(1243,47,'2410795791','2025-03-20 18:51:15','🟢Legday!🟢 !AC Assassin\'s Creed: Shadows tonight! #AD !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2410795791','31824',0,1,1,NULL,NULL,'2025-03-21 13:06:34','2025-03-22 21:07:37'),(1244,47,'2409865937','2025-03-19 16:53:53','Norwegian Seaman\'s Church Houston 🔴 !KNKG !freespirit !kost1','https://www.twitch.tv/videos/2409865937','34261',0,1,1,NULL,NULL,'2025-03-21 13:06:34','2025-03-22 21:55:57'),(1245,47,'2409028832','2025-03-18 16:49:23','🐂Houston Rodeo!🐂 🔴 !KNKG !freespirit !kost1','https://www.twitch.tv/videos/2409028832','35719',0,1,1,NULL,NULL,'2025-03-21 13:06:34','2025-03-22 22:42:54'),(1246,47,'2408177350','2025-03-17 16:10:01','🔴 Aligator hunting in Houston 🔴 !KNKG !freespirit !kost1','https://www.twitch.tv/videos/2408177350','43204',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-22 23:23:20'),(1247,47,'2407387577','2025-03-16 16:58:48','🔴 Houston family trip 🔴 !KNKG !freespirit !kost1','https://www.twitch.tv/videos/2407387577','34483',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-23 00:00:23'),(1248,47,'2406453658','2025-03-15 16:42:00','🔴33C/92F in Texas today! Enjoying freedom! 🔴TONIGHT: Friday party @mizkif 🔴 18 wheelspins saved 🔴 !KNKG','https://www.twitch.tv/videos/2406453658','34936',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-23 01:07:32'),(1249,47,'2405478235','2025-03-14 15:14:44','🔴Another sunny day outside 🔴Friday party @mizkif 🔴 18 wheelspins saved 🔴 !KNKG','https://www.twitch.tv/videos/2405478235','20588',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-23 01:24:24'),(1250,47,'2404647796','2025-03-13 15:32:39','Late evening chill 🔴 ExtraEmily wheelspin @ 5 subs! 🔴 16 wheelspins saved for Thursday🔴 !KNKG','https://www.twitch.tv/videos/2404647796','38557',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-23 02:22:14'),(1251,47,'2402937268','2025-03-11 14:02:59','Downtown Austin with @Jeanette 🔴 ExtraEmily wheelspin @ 5 subs! 🔴 10 wheels saved for today🔴 !KNKG','https://www.twitch.tv/videos/2402937268','36066',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-23 03:25:12'),(1252,47,'2402233475','2025-03-10 17:20:28','🔴 ExtraEmily wheelspin @ 5 subs! 🔴Geocashing + some errands🔴 !KNKG','https://www.twitch.tv/videos/2402233475','30608',0,1,1,NULL,NULL,'2025-03-21 13:06:35','2025-03-23 04:25:49'),(1253,48,'2403764290','2025-03-12 13:49:13','Pokemon WEDNESDAYS! Hunting 151 & Prismatic evolutions with @itskatchii','https://www.twitch.tv/videos/2403764290','14146',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 12:16:55'),(1254,48,'2402105145','2025-03-10 13:43:04','Training for next years Sidemen Charity match with @wakewilder @phinttv and @itskatchii','https://www.twitch.tv/videos/2402105145','15027',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 05:01:08'),(1255,49,'2410650028','2025-03-20 15:22:14','SOLO | New Players Welcome | !fractal !madmonq !giveaway | !PlayCB | #ad','https://www.twitch.tv/videos/2410650028','18096',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 05:01:08'),(1256,49,'2409843447','2025-03-19 16:18:18','SOLO | New Players Welcome - 12k hrs | !fractal !madmonq !GIVEAWAY','https://www.twitch.tv/videos/2409843447','18193',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 05:01:10'),(1257,49,'2408985175','2025-03-18 15:40:38','SOLO | New Players Welcome - 12k hrs | !fractal !madmonq !GIVEAWAY','https://www.twitch.tv/videos/2408985175','20864',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 05:01:15'),(1258,49,'2408161459','2025-03-17 15:45:13','RANDOMS | New Players Welcome - 12k hrs | !fractal !madmonq !GIVEAWAY','https://www.twitch.tv/videos/2408161459','20301',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 05:01:15'),(1259,49,'2407344344','2025-03-16 16:01:28','CLASH | New Players Welcome - 12k hrs | !fractal !madmonq !GIVEAWAY','https://www.twitch.tv/videos/2407344344','14930',0,1,1,NULL,NULL,'2025-03-21 13:06:36','2025-03-23 05:01:19'),(1260,49,'2406411770','2025-03-15 15:45:13','CLASH | New Players Welcome - 12k hrs | !fractal !madmonq !GIVEAWAY','https://www.twitch.tv/videos/2406411770','18086',0,1,1,NULL,NULL,'2025-03-21 13:06:37','2025-03-23 05:01:22'),(1261,49,'2405537672','2025-03-14 16:47:49','RANDOMS | New Players Welcome - 12k hrs | !fractal !madmonq !GIVEAWAY','https://www.twitch.tv/videos/2405537672','22776',0,1,1,NULL,NULL,'2025-03-21 13:06:37','2025-03-23 05:01:22'),(1262,49,'2404677219','2025-03-13 16:20:38','RANDOMS | New Players Welcome - 12k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2404677219','16638',0,1,1,NULL,NULL,'2025-03-21 13:06:37','2025-03-23 05:01:22'),(1263,49,'2403912270','2025-03-12 17:46:19','RANDOMS | New Players Welcome - 12k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2403912270','16327',0,1,1,NULL,NULL,'2025-03-21 13:06:37','2025-03-23 05:01:26'),(1264,49,'2402963124','2025-03-11 14:53:11','RANDOMS | New Players Welcome - 12k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2402963124','23074',0,1,1,NULL,NULL,'2025-03-21 13:06:37','2025-03-23 05:02:00'),(1265,49,'2402159761','2025-03-10 15:26:58','RANDOMS | New Players Welcome - 12k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2402159761','29595',0,1,1,NULL,NULL,'2025-03-21 13:06:37','2025-03-23 05:02:00'),(1266,54,'2410589875','2025-03-20 13:29:25','Do you want to build a snowman? | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2410589875','25026',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 05:24:16'),(1267,54,'2409922322','2025-03-19 18:06:17','Food | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2409922322','5432',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 05:24:16'),(1268,54,'2409879471','2025-03-19 17:10:18','Food | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2409879471','3332',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 05:32:07'),(1269,54,'2409730498','2025-03-19 12:56:30','Do the thing! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2409730498','15175',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 05:50:23'),(1270,54,'2408910049','2025-03-18 13:19:04','LURKIT is wild with their latest wave of issues | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2408910049','27110',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 06:27:49'),(1271,54,'2408126260','2025-03-17 14:42:32','*Clickbait Femboy Title* | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2408126260','21420',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 06:34:39'),(1272,54,'2407393368','2025-03-16 17:04:22','Collab\'s are impossible because people are smelly | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2407393368','26052',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 07:09:09'),(1273,54,'2406376129','2025-03-15 14:53:07','Aaa, FR, OG! You could just say \"Frog\" | !Portfolio | !Discord | !YT','https://www.twitch.tv/videos/2406376129','36274',0,1,1,NULL,NULL,'2025-03-21 13:06:39','2025-03-23 07:59:32'),(1274,54,'2405799190','2025-03-14 22:08:56','Buh! Video Games. | !Portfolio | !Discord | !YT','https://www.twitch.tv/videos/2405799190','26135',0,1,1,NULL,NULL,'2025-03-21 13:06:40','2025-03-23 08:11:28'),(1275,54,'2405263836','2025-03-14 06:00:54','Buh! Video Games. | !Portfolio | !Discord | !YT','https://www.twitch.tv/videos/2405263836','35215',0,1,1,NULL,NULL,'2025-03-21 13:06:40','2025-03-23 08:50:14'),(1276,54,'2404491070','2025-03-13 09:25:53','Hey, I think you\'re pretty cool! | !Portfolio | !Discord | !YT','https://www.twitch.tv/videos/2404491070','34513',0,1,1,NULL,NULL,'2025-03-21 13:06:40','2025-03-23 09:20:49'),(1277,54,'2403752678','2025-03-12 13:25:38','Why are so many games rated M more MEN!? | !Portfolio | !Discord | !YT','https://www.twitch.tv/videos/2403752678','22578',0,1,1,NULL,NULL,'2025-03-21 13:06:40','2025-03-23 09:45:11'),(1278,54,'2402854317','2025-03-11 10:52:51','Mature games are dumb games! | !Portfolio | !Discord | !YT','https://www.twitch.tv/videos/2402854317','32394',0,1,1,NULL,NULL,'2025-03-21 13:06:40','2025-03-23 10:26:18'),(1279,57,'2410811250','2025-03-20 19:07:17','🔴(a)WAKE@DAY🔴IT’S SO STUPID NICE OUT🔴WABI SABI WALKS🔴SNIPING EMI/EMILY/PHIN/CYR🔴SUNSET ON A CANOE🔴SLEEP DEPRIVED MUSINGS🔴!socials !manscaped','https://www.twitch.tv/videos/2410811250','35116',0,1,1,NULL,NULL,'2025-03-21 13:06:41','2025-03-23 11:07:35'),(1280,57,'2409372560','2025-03-19 00:01:54','🔴(a)WAKE@NITE🔴WAKE WILDER PREGNANT?🔴JAPLANNING, EXPOSING THE WOKE, CRYING ABOUT EX WIFE🔴YOUR LATE NIGHT DESTINATION🔴!socials !manscaped','https://www.twitch.tv/videos/2409372560','19290',0,1,1,NULL,NULL,'2025-03-21 13:06:41','2025-03-23 11:20:24'),(1281,57,'2408581160','2025-03-18 00:47:01','🔴(a)WAKE@NITE🔴LOVE LINE W/ @BERTACUSS🔴ANSWERING YOUR QUESTIONS AND DISCUSSING YOUR LOVE🔴YOUR LATE NIGHT DESTINATION🔴!socials !manscaped','https://www.twitch.tv/videos/2408581160','18900',0,1,1,NULL,NULL,'2025-03-21 13:06:42','2025-03-23 11:37:56'),(1282,57,'2406878644','2025-03-16 01:12:01','🔴(a)WAKE@NITE🔴JAPLANNING STREAM🔴BREAKING DOWN THE NEXT FEW MONTHS🔴COZY REACTS🔴YOUR LATE NIGHT DESTINATION🔴!socials !manscaped','https://www.twitch.tv/videos/2406878644','14970',0,1,1,NULL,NULL,'2025-03-21 13:06:42','2025-03-23 11:58:17'),(1283,57,'2405079927','2025-03-14 00:59:42','🔴(a)WAKE@NITE🔴DRAMA, INTRIGUE, MADNESS🔴COZY REACT NIGHT --> REDDIT DISSECTION🔴ROLLER COASTER TYCOON:INFINITE PROFIT🔴!socials !manscaped','https://www.twitch.tv/videos/2405079927','18110',0,1,1,NULL,NULL,'2025-03-21 13:06:42','2025-04-04 12:53:13'),(1284,57,'2401810413','2025-03-10 01:25:57','🔴(a)WAKE@NITE🔴NEW SET-UP, NEW ROOM, SAME NON-CONTENT🔴COZY REACTS🔴TRYING NEW SET UP🔴!socials !manscaped','https://www.twitch.tv/videos/2401810413','15790',0,1,1,NULL,NULL,'2025-03-21 13:06:42','2025-03-23 12:39:30'),(1285,58,'2410514976','2025-03-20 10:25:34','⭐ INVITE ME TO YOUR PUBG RIVALS TEAM PLS⭐ THLOPPA THURSDAY⭐EARLY BIRD CATCHES THE WIN⭐Almost a month smoke free ⭐','https://www.twitch.tv/videos/2410514976','16640',0,1,1,NULL,NULL,'2025-03-21 13:06:42','2025-03-23 12:58:32'),(1286,58,'2408860882','2025-03-18 11:26:03','⭐ INVITE ME TO YOUR PUBG RIVALS TEAM ( IM GOOD AND NOT PRO )⭐ UNWASHING MYSELF⭐Almost a month smoke free ⭐ GAME IS ACTUALLY EASY? ⭐','https://www.twitch.tv/videos/2408860882','13420',0,1,1,NULL,NULL,'2025-03-21 13:06:42','2025-03-23 13:05:04'),(1287,58,'2408040449','2025-03-17 11:39:48','DRAMA? ⭐Almost a month smoke free ⭐ LEGIT OR NOT? ⭐UGANDAN CIVIL VVAR⭐ GAME IS ACTUALLY EASY? ⭐','https://www.twitch.tv/videos/2408040449','12470',0,1,1,NULL,NULL,'2025-03-21 13:06:43','2025-03-23 13:15:47'),(1288,58,'2407175487','2025-03-16 11:19:10','PUBG tournament? ⭐Almost a month smoke free ⭐ Practice? ⭐ Snipas tech support?⭐ Affiliate giveaways? ⭐','https://www.twitch.tv/videos/2407175487','14620',0,1,1,NULL,NULL,'2025-03-21 13:06:43','2025-03-23 13:23:32'),(1289,61,'2410229547','2025-03-20 00:29:07','Korean Cooking Stream w/ @jinnytty !! - @esfandtv all socials','https://www.twitch.tv/videos/2410229547','20330',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 13:51:45'),(1290,61,'2409000099','2025-03-18 16:04:03','Reorganizing my whole house with ShaiOrganized on Instagram!','https://www.twitch.tv/videos/2409000099','43340',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 15:13:22'),(1291,61,'2408431269','2025-03-17 21:40:25','Finishing Hitman Blood Money today and then getting ready for Stream Room Revamp tomorrow','https://www.twitch.tv/videos/2408431269','49160',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 16:05:55'),(1292,61,'2407450224','2025-03-16 18:11:41','!boomermonth game #5 - Hit Man Bloodmoney First Ti me Playthrough - !extension !schedule !boomermonth','https://www.twitch.tv/videos/2407450224','48990',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 17:23:32'),(1293,61,'2406980584','2025-03-16 03:29:48','Boomer Month Game 5! Hitman Blood Money - !extension !schedule !boomermonth','https://www.twitch.tv/videos/2406980584','14270',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 17:37:01'),(1294,61,'2403049375','2025-03-11 17:04:07','TURNAROUND TUESDAY w/ ShaiOrganized! Halo 3 Legenedary w/ @Lacari after !extension !schedule @esfandtv all socials','https://www.twitch.tv/videos/2403049375','54243',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 19:06:51'),(1295,61,'2402467623','2025-03-10 22:20:05','IRL NOW -> TURNAROUND TUEADAY TOMORROW -> HALO 3 Finish tomorrow !extension !schedule @esfandtv all socials','https://www.twitch.tv/videos/2402467623','11105',0,1,1,NULL,NULL,'2025-03-21 13:06:44','2025-03-23 19:15:11'),(1296,62,'2410525175','2025-03-20 10:58:32','FUNCLE TIME 🇰🇷 Lamb Skewer Pub Crawl | !bc | $2 tts/tangia @cooksux @may5w | Seoul, South Korea','https://www.twitch.tv/videos/2410525175','14945',0,1,1,NULL,NULL,'2025-03-21 13:06:45','2025-03-23 19:49:28'),(1297,62,'2408622436','2025-03-18 01:36:11','FUNcLE TIME 🇰🇷 This Is The End | !bc | $2 tts/tangia @cooksux @may5w | Seoul, South Korea','https://www.twitch.tv/videos/2408622436','22371',0,1,1,NULL,NULL,'2025-03-21 13:06:45','2025-03-23 20:02:44'),(1298,62,'2403577506','2025-03-12 04:49:16','FUNCLE TIME 🇹🇭 Break Is Over | !bc | $2 tts/tangia @cooksux | Koh Chang, Thailand','https://www.twitch.tv/videos/2403577506','21957',0,1,1,NULL,NULL,'2025-03-21 13:06:45','2025-03-23 20:44:09'),(1299,62,'2402700750','2025-03-11 03:21:43','FUNCLE TIME 🇹🇭 Summer Starts Now? | !bc | $2 tts/tangia @cooksux | Koh Chang, Thailand','https://www.twitch.tv/videos/2402700750','46971',0,1,1,NULL,NULL,'2025-03-21 13:06:45','2025-03-23 22:04:24'),(1300,62,'2401981361','2025-03-10 07:41:26','FUNCLE TIME 🇹🇭 Summer Starts Now? | !bc | $2 tts/tangia @cooksux | Koh Chang, Thailand','https://www.twitch.tv/videos/2401981361','33229',0,1,1,NULL,NULL,'2025-03-21 13:06:45','2025-03-23 22:51:21'),(1301,62,'2401970311','2025-03-10 06:59:57','FUNCLE TIME 🇹🇭 Summer Starts Now? | !bc | $2 tts/tangia @cooksux | Koh Chang, Thailand','https://www.twitch.tv/videos/2401970311','1483',0,1,1,NULL,NULL,'2025-03-21 13:06:45','2025-03-23 22:52:33'),(1302,63,'2408950772','2025-03-18 14:39:42','Kingdom Come: Deliverance 2 [Part 5]','https://www.twitch.tv/videos/2408950772','15850',0,1,1,NULL,NULL,'2025-03-21 13:06:46','2025-03-23 23:07:52'),(1303,63,'2407291829','2025-03-16 14:47:23','Kingdom Come: Deliverance 2 [Part 4]','https://www.twitch.tv/videos/2407291829','20770',0,1,1,NULL,NULL,'2025-03-21 13:06:46','2025-03-23 23:22:04'),(1304,66,'2410657888','2025-03-20 15:36:00','🌸Yabbe Show🌸','https://www.twitch.tv/videos/2410657888','21140',0,1,1,NULL,NULL,'2025-03-21 13:06:47','2025-03-23 23:39:25'),(1305,66,'2408134738','2025-03-17 14:58:43','🌸Yabbe Show🌸','https://www.twitch.tv/videos/2408134738','22581',0,1,1,NULL,NULL,'2025-03-21 13:06:47','2025-03-23 23:48:53'),(1306,66,'2407318214','2025-03-16 15:25:30','🌸Yabbe Show🌸','https://www.twitch.tv/videos/2407318214','610',0,1,1,NULL,NULL,'2025-03-21 13:06:47','2025-03-23 23:49:03'),(1307,66,'2406430606','2025-03-15 16:09:37','🌸Yabbe Show🌸','https://www.twitch.tv/videos/2406430606','17409',0,1,1,NULL,NULL,'2025-03-21 13:06:47','2025-03-24 00:08:29'),(1308,66,'2405573525','2025-03-14 17:36:20','🌸Yabbe Show🌸RADIO YABBE AND LEAGUE??????','https://www.twitch.tv/videos/2405573525','12985',0,1,1,NULL,NULL,'2025-03-21 13:06:47','2025-03-24 00:16:56'),(1309,66,'2405475524','2025-03-14 15:10:04','🌸Yabbe Show🌸Throwback stream?','https://www.twitch.tv/videos/2405475524','8699',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:20:02'),(1310,66,'2404604614','2025-03-13 14:13:09','🌸YABBE SHOW🌸First stream back since the flu yippieeee','https://www.twitch.tv/videos/2404604614','20701',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:39:29'),(1311,66,'2402206705','2025-03-10 16:43:26','🌸YABBE SHOW🌸I\'m sick be nice to me please','https://www.twitch.tv/videos/2402206705','990',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:40:26'),(1312,67,'2410097602','2025-03-19 21:47:07','❗URGENT ❗LEFT HANDED, ADOPTED AND PREGNANT NON-LATINA WUBBY ❗ MY CHAT IS OLD ❗ NEW W33DSHOP GAME ❗ FINDING STUPID GAMES TO PLAY ❗ !MADMONQ','https://www.twitch.tv/videos/2410097602','28233',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:40:33'),(1313,67,'2409324358','2025-03-18 23:02:58','LETTING AI ROAST MY VIEWER\'S SETUPS AND MAKE ASSUMPTIONS 🤖 MANY WILL CRY 🤖 MANY WILL UNSUBSCRIBE 🤖 I WILL LAUGH 🤖 NEW W33D GAME AFTER','https://www.twitch.tv/videos/2409324358','17220',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:40:41'),(1314,67,'2408427987','2025-03-17 21:35:50','HOW I GOT PREGNANT OVER THE WEEKEND - MASSIVE PLANS THIS WEEK - AI RATING PEOPLE\'S SETUPS - PLAYING BOP IT BETTER THAN SQUEEX !MADMONQ','https://www.twitch.tv/videos/2408427987','33330',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:40:41'),(1315,67,'2407481263','2025-03-16 18:48:05','RENN FAIR STREAM. RP’ING WITH NPCS AND PROBABLY EMBARASSING MYSELF WHILE @PEACHJARS WATCHES','https://www.twitch.tv/videos/2407481263','17580',0,1,1,NULL,NULL,'2025-03-21 13:06:48','2025-03-24 00:40:41'),(1316,67,'2405040947','2025-03-14 00:12:11','PHIN IS COMING OVER - HIGHLANDER NIGHT?! - WE MAY GET INTO TROUBLE - STOP SAYING THAT I LOOK LIKE (ENTER CELEBRITY) !MADMONQ','https://www.twitch.tv/videos/2405040947','24120',0,1,1,NULL,NULL,'2025-03-21 13:06:49','2025-03-24 00:40:43'),(1317,67,'2403909295','2025-03-12 17:42:05','⭕️ BUILDING A TABLE FROM SCRATCH USING ONLY AI ⭕️ WHAT COULD GO WRONG ⭕️ FIRST TIME ⭕️ I WILL JUMP ON THIS TABLE AFTER ⭕️!MADMONQ','https://www.twitch.tv/videos/2403909295','23340',0,1,1,NULL,NULL,'2025-03-21 13:06:49','2025-03-24 00:40:46'),(1318,67,'2403048869','2025-03-11 17:03:29','USING AI TO FIGURE OUT WHAT EXACTLY LONG JOHN SILVERS IS, WHY IT\'S STILL OPEN, AND THEN TRYING IT FOR MYSELF FOR THE FIRST TIME !madmonq','https://www.twitch.tv/videos/2403048869','20600',0,1,1,NULL,NULL,'2025-03-21 13:06:49','2025-03-24 00:41:16'),(1319,67,'2402431404','2025-03-10 21:32:58','STAINING AND SANDING THE PARAGON WITH AI, AND THEN SPENDING SOME REAL GOOD TIME WITH CHAT. WAKE IS COMING','https://www.twitch.tv/videos/2402431404','30370',0,1,1,NULL,NULL,'2025-03-21 13:06:49','2025-03-24 00:41:32'),(1320,69,'2410312873','2025-03-20 02:10:46','HR RANKING 🔴 On that demon time 🔴 !madmonq giveaway that ends in 6 days! 🔴 !GIVEAWAY','https://www.twitch.tv/videos/2410312873','17596',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-24 00:41:37'),(1321,69,'2408665245','2025-03-18 02:33:57','SOLO 🔴 On that demon time 🔴 !madmonq giveaway that ends in 6 days! 🔴 !GIVEAWAY','https://www.twitch.tv/videos/2408665245','21769',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-24 00:41:39'),(1322,69,'2407832637','2025-03-17 02:11:09','SOLO 🔴 On that demon time 🔴 !madmonq giveaway that ends in 6 days! 🔴 !GIVEAWAY','https://www.twitch.tv/videos/2407832637','21367',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-21 15:24:04'),(1323,69,'2406870894','2025-03-16 01:03:47','SOLO 🔴 On that demon time 🔴 !madmonq giveaway over the next 8 days!','https://www.twitch.tv/videos/2406870894','30450',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-24 00:42:00'),(1324,69,'2406053991','2025-03-15 03:15:06','🌊 SOLO VS TRIOS 🌊 FUN FUN FUN 🌊 !madmonq giveaway over the next 10 days','https://www.twitch.tv/videos/2406053991','23426',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-24 00:42:09'),(1325,69,'2404341971','2025-03-13 02:52:31','🌊 SOLO 🌊 FUN FUN FUN','https://www.twitch.tv/videos/2404341971','17628',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-24 00:42:13'),(1326,69,'2402685286','2025-03-11 02:58:21','clash / i have problems','https://www.twitch.tv/videos/2402685286','24656',0,1,1,NULL,NULL,'2025-03-21 13:06:50','2025-03-24 00:42:13'),(1327,69,'2401846598','2025-03-10 02:18:07','SOLO / i have problems','https://www.twitch.tv/videos/2401846598','20752',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-24 00:42:13'),(1328,70,'2409019691','2025-03-18 16:35:05','💣 NINJA WARRIOR TRAINING MIT REWI (FÜR RED BULL JUMP\'N‘RUN) + DANACH PC STREAM <3 💣','https://www.twitch.tv/videos/2409019691','21035',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-25 09:53:33'),(1329,70,'2407351892','2025-03-16 16:11:05','💣 GEILER MANN MACHT GEILE SACHEN 💣','https://www.twitch.tv/videos/2407351892','22950',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-25 10:08:48'),(1330,70,'2406442133','2025-03-15 16:25:47','🌍 10000€ GHG GEOGUESSR TURNIER MIT OHNEPIXEL 🌍','https://www.twitch.tv/videos/2406442133','24550',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-25 10:22:25'),(1331,70,'2406353473','2025-03-15 14:16:39','🌍 15000€ GHG GEOGUESSR TURNIER MIT OHNEPIXEL 🌍','https://www.twitch.tv/videos/2406353473','7700',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-25 10:28:35'),(1332,70,'2405519379','2025-03-14 16:19:51','💣 DAS BESTE DUO DEUTSCHLANDS NIMMT AM PIETSMIET EVENT TEIL (ACHIEVEMENT HUNT) 💣','https://www.twitch.tv/videos/2405519379','28730',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-25 10:52:23'),(1333,70,'2404665937','2025-03-13 16:02:35','💣 DAS BESTE DUO DEUTSCHLANDS NIMMT AM PIETSMIET EVENT TEIL (ACHIEVEMENT HUNT) 💣','https://www.twitch.tv/videos/2404665937','21980',0,1,1,NULL,NULL,'2025-03-21 13:06:51','2025-03-25 11:10:49'),(1334,70,'2403851729','2025-03-12 16:19:53','💣 DAS BESTE DUO DEUTSCHLANDS NIMMT AM PIETSMIET EVENT TEIL (ARCHIEVEMENT HUNT) 💣','https://www.twitch.tv/videos/2403851729','20870',0,1,1,NULL,NULL,'2025-03-21 13:06:52','2025-03-25 11:26:22'),(1335,70,'2403024178','2025-03-11 16:29:27','💣 GEILER MANN MACHT GEILE SACHEN 💣','https://www.twitch.tv/videos/2403024178','20520',0,1,1,NULL,NULL,'2025-03-21 13:06:52','2025-03-25 11:41:28'),(1336,72,'2410854226','2025-03-20 20:00:25','Ich erschaffe ein Evo MONSTER | !prime !youtube','https://www.twitch.tv/videos/2410854226','22060',0,1,1,NULL,NULL,'2025-03-21 13:06:52','2025-03-25 11:55:22'),(1337,72,'2410015398','2025-03-19 20:01:06','15-0 Taktik, 82+ Packs craften, Cup Grind, Rivals uvm.! | !prime !youtube','https://www.twitch.tv/videos/2410015398','21340',0,1,1,NULL,NULL,'2025-03-21 13:06:52','2025-03-25 12:09:18'),(1338,72,'2407549286','2025-03-16 20:00:33','Überleben die Nerven? Weekend League Bruch mit Main Squad! | !prime !youtube','https://www.twitch.tv/videos/2407549286','21400',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 12:22:17'),(1339,72,'2405547047','2025-03-14 17:00:26','12 STUNDEN Eskalation mit Monster Pack Opening zu Birthday Team 2! | !goal !prime !content','https://www.twitch.tv/videos/2405547047','43250',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 12:50:32'),(1340,72,'2404844241','2025-03-13 20:01:10','4 Mio. Gewinn mit CR7!! 82er SBC\'s, Icon Picks, Realtalks uvm. | !prime !youtube','https://www.twitch.tv/videos/2404844241','20210',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 12:59:30'),(1341,72,'2402359228','2025-03-10 20:01:02','SON 93 gezogen! Wir öffnen weiter! | !prime !youtube','https://www.twitch.tv/videos/2402359228','17640',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 13:10:43'),(1342,73,'2409022662','2025-03-18 16:39:45','Nina Warrior JUMP & RUN Trainig mit PapaP & Red Bull','https://www.twitch.tv/videos/2409022662','10349',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 13:22:31'),(1343,73,'2404716320','2025-03-13 17:17:50','WOW WOW WOW Yippi Yo Yippi Yay | Unfassbares STREAM ERLEBNIS | Sowas habt ihr noch NIE gesehen','https://www.twitch.tv/videos/2404716320','10760',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 13:33:52'),(1344,73,'2404675893','2025-03-13 16:18:19','WOW WOW WOW Yippi Yo Yippi Yay | Unfassbares STREAM ERLEBNIS | Sowas habt ihr noch NIE gesehen','https://www.twitch.tv/videos/2404675893','3520',0,1,1,NULL,NULL,'2025-03-21 13:06:53','2025-03-25 13:36:49'),(1345,74,'2410440918','2025-03-20 06:12:34','Ab 10:00 Horror Donnerstag! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2410440918','19114',0,1,1,NULL,NULL,'2025-03-21 13:06:54','2025-03-25 13:47:23'),(1346,74,'2409638409','2025-03-19 08:20:35','Ich war beim Training!!!! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2409638409','16618',0,1,1,NULL,NULL,'2025-03-21 13:06:54','2025-03-25 14:07:04'),(1347,74,'2408764749','2025-03-18 05:54:54','Ab ins Lategame! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2408764749','22644',0,1,1,NULL,NULL,'2025-03-21 13:06:54','2025-03-25 14:24:43'),(1348,74,'2407944591','2025-03-17 06:02:40','Es ist Montag und ads mag keiner!| !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2407944591','17775',0,1,1,NULL,NULL,'2025-03-21 13:06:54','2025-03-25 14:36:03'),(1349,74,'2407075455','2025-03-16 06:35:36','Wir chillen am Sonntag so hart es nur geht! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2407075455','17330',0,1,1,NULL,NULL,'2025-03-21 13:06:54','2025-03-25 14:45:54'),(1350,74,'2405275759','2025-03-14 06:37:34','Guten Morgen, es ist Freitag !| !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2405275759','18159',0,1,1,NULL,NULL,'2025-03-21 13:06:54','2025-03-25 14:58:30'),(1351,74,'2404437275','2025-03-13 06:14:03','Minecraft hat mega Spaß gemacht! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2404437275','21139',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 15:13:04'),(1352,74,'2403646321','2025-03-12 08:28:08','MaximGHG den gesamten Tag - 15 Uhr DLDS | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2403646321','37980',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 15:33:12'),(1353,74,'2402769745','2025-03-11 05:52:17','Guten Morgen, es ist Dienstag! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2402769745','21950',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 15:46:18'),(1354,74,'2401948613','2025-03-10 05:46:07','Erst No Death Elden Ring, dann etwas Neues | !Holzkern | Werbung','https://www.twitch.tv/videos/2401948613','18874',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 15:59:39'),(1355,75,'2410573933','2025-03-20 12:58:19','🟢Ich spiele Akali und Yasuo🟢!steelseries','https://www.twitch.tv/videos/2410573933','25050',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 16:16:19'),(1356,75,'2409681333','2025-03-19 10:52:56','🟢SOLOQ --> ASSASSINS CREED SHADOWS ZOCKEN -->18 UHR NNO🟢','https://www.twitch.tv/videos/2409681333','31270',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 16:37:09'),(1357,75,'2407090572','2025-03-16 07:17:31','🟢FIRST STAND FINALE KC vs HLE🟢bo5 !fearless #FST2025','https://www.twitch.tv/videos/2407090572','29880',0,1,1,NULL,NULL,'2025-03-21 13:06:55','2025-03-25 17:01:36'),(1358,75,'2406075075','2025-03-15 03:46:07','🟢HALBFINALE KC vs CFO🟢bo5 !fearless #FST2025','https://www.twitch.tv/videos/2406075075','55350',0,1,1,NULL,NULL,'2025-03-21 13:06:56','2025-03-25 17:51:06'),(1359,75,'2405294571','2025-03-14 07:39:36','🟢WENN CFO GEWINNT IST KC WEITER | CFO vs TES 🟢bo3 fearless #FST2025','https://www.twitch.tv/videos/2405294571','40180',0,1,1,NULL,NULL,'2025-03-21 13:06:56','2025-03-25 18:24:15'),(1360,75,'2404465166','2025-03-13 07:52:27','🟢FIRST STAND TAG 4 | CFO vs TL | KC vs HLE🟢bo3 fearless #FST2025','https://www.twitch.tv/videos/2404465166','40010',0,1,1,NULL,NULL,'2025-03-21 13:06:56','2025-03-25 18:55:35'),(1361,75,'2403631701','2025-03-12 07:34:37','🟢FIRST STAND TAG 3 | CFO vs HLE | KC vs TES🟢bo3 fearless','https://www.twitch.tv/videos/2403631701','30580',0,1,1,NULL,NULL,'2025-03-21 13:06:56','2025-03-25 19:16:27'),(1362,75,'2402799091','2025-03-11 07:32:26','🟢FIRST STAND TAG 2 | KC vs CFO | TL vs TES🟢bo3 fearless','https://www.twitch.tv/videos/2402799091','36410',0,1,1,NULL,NULL,'2025-03-21 13:06:56','2025-03-25 19:39:11'),(1363,75,'2401977174','2025-03-10 07:25:19','🟢EU VS NA | KR VS CN FIRST STAAAAAAAAAAAAAAAND🟢bo3 fearless','https://www.twitch.tv/videos/2401977174','45760',0,1,1,NULL,NULL,'2025-03-21 13:06:56','2025-03-25 20:07:43'),(1375,78,'2410507534','2025-03-20 10:00:44','HARD TRAINING !ZLAN avec Wingo le sang - !zlan !patreon !boutique','https://www.twitch.tv/videos/2410507534','31304',0,1,1,NULL,NULL,'2025-03-21 13:06:58','2025-03-25 20:24:34'),(1376,78,'2409670567','2025-03-19 10:16:11','Je profite de ce délicieux GOTY - !patreon !boutique','https://www.twitch.tv/videos/2409670567','27354',0,1,1,NULL,NULL,'2025-03-21 13:06:58','2025-03-25 20:41:38'),(1377,78,'2408834428','2025-03-18 10:03:04','ANNONCE !ZLAN OMG HYPE - !patreon !boutique','https://www.twitch.tv/videos/2408834428','30840',0,1,1,NULL,NULL,'2025-03-21 13:06:58','2025-03-25 21:11:49'),(1378,78,'2408017598','2025-03-17 10:29:21','Discutons !ZLAN avant le Maitre des Fleurs - !patreon !boutique','https://www.twitch.tv/videos/2408017598','23175',0,1,1,NULL,NULL,'2025-03-21 13:06:59','2025-03-25 21:27:50'),(1379,78,'2407205649','2025-03-16 12:23:17','HARDCORE LVL 60 (bientôt le raid omg) !ZLAN - !patreon !boutique','https://www.twitch.tv/videos/2407205649','13935',0,1,1,NULL,NULL,'2025-03-21 13:06:59','2025-03-25 21:36:41'),(1380,78,'2402838642','2025-03-11 09:59:47','LYCANS à 15 !mods // 15h WoW Hardcore LVL 60 - !patreon !boutique','https://www.twitch.tv/videos/2402838642','39877',0,1,1,NULL,NULL,'2025-03-21 13:06:59','2025-03-25 21:57:18'),(1381,78,'2402024835','2025-03-10 10:21:38','LE LUNDI C\'EST CULTURE HEIN !mdf // DERNIER JOUR !hoodiegold','https://www.twitch.tv/videos/2402024835','22908',0,1,1,NULL,NULL,'2025-03-21 13:06:59','2025-03-25 22:16:17'),(1412,83,'2410490703','2025-03-20 09:02:12','SHAUNZ 🤍💛 10H - 14H TFT SET 14 PBE || 14H - 17H CHAINED TOGETHER AVEC DFG, MISTERMV et JULGANE','https://www.twitch.tv/videos/2410490703','26980',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 22:43:38'),(1413,83,'2409645459','2025-03-19 08:47:30','SHAUNZ 🤍💛 oui les rumeurs sont vraies je serai bien le champion du monde du set 14 owoHacker','https://www.twitch.tv/videos/2409645459','10530',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 22:49:12'),(1414,83,'2409075717','2025-03-18 17:53:51','SHAUNZ 🤍💛 CARRÉ ESPORT #4 avec TPK, Paul Arrivé et une interview exclusive de Zerator !traderepublic','https://www.twitch.tv/videos/2409075717','7371',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 22:56:06'),(1415,83,'2408808748','2025-03-18 08:30:45','SHAUNZ 🤍💛 CASH INVESTIGATION | ALCOOL: LES STRATÉGIES HORRIBLES DES MARQUES POUR NOUS FAIRE BOIRE (ne buvez pas)','https://www.twitch.tv/videos/2408808748','10700',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 23:05:16'),(1416,83,'2407986881','2025-03-17 08:37:38','SHAUNZ 🤍💛 ON REGARDE/ON PARLE ANNONCES ZLAN + OMG GAMEPLAY SET 14 TFT','https://www.twitch.tv/videos/2407986881','12430',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 23:15:23'),(1417,83,'2407188798','2025-03-16 11:50:38','SHAUNZ 🤍💛 FINALE DES WORLDS ! ALLEZ JEDUSOR !classement','https://www.twitch.tv/videos/2407188798','15640',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 23:28:52'),(1418,83,'2406269100','2025-03-15 11:47:05','SHAUNZ 🤍💛 3 JOURS DE WORLDS DE TFT WORLDS DE TFT WORLDS DE TFT WORLDS DE TFT !classement','https://www.twitch.tv/videos/2406269100','23350',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 23:46:49'),(1419,83,'2405370539','2025-03-14 11:48:42','SHAUNZ 🤍💛 WORLDS DE TFT WORLDS DE TFT WORLDS DE TFT WORLDS DE TFT !classement','https://www.twitch.tv/videos/2405370539','19660',0,1,1,NULL,NULL,'2025-03-21 13:07:04','2025-03-25 23:56:01'),(1420,85,'2408917800','2025-03-18 13:34:53','SOLOQ DAY !video !vitality !annonce','https://www.twitch.tv/videos/2408917800','10280',0,1,1,NULL,NULL,'2025-03-21 13:07:05','2025-03-25 23:59:17'),(1421,85,'2406638156','2025-03-15 20:14:44','nomiccam !video !vitality !annonce','https://www.twitch.tv/videos/2406638156','4260',0,1,1,NULL,NULL,'2025-03-21 13:07:05','2025-03-26 00:00:00'),(1422,85,'2405764364','2025-03-14 21:26:18','nomiccam !video !vitality !annonce','https://www.twitch.tv/videos/2405764364','4610',0,1,1,NULL,NULL,'2025-03-21 13:07:05','2025-03-26 00:00:55'),(1423,85,'2405677916','2025-03-14 19:44:24','nomiccam !video !vitality !annonce','https://www.twitch.tv/videos/2405677916','5950',0,1,1,NULL,NULL,'2025-03-21 13:07:06','2025-03-26 00:02:25'),(1424,85,'2404876240','2025-03-13 20:40:54','nomiccam !video !vitality !annonce','https://www.twitch.tv/videos/2404876240','5680',0,1,1,NULL,NULL,'2025-03-21 13:07:06','2025-03-26 00:03:31'),(1425,85,'2404010998','2025-03-12 19:49:10','SOLOQ DAY !video !vitality !annonce','https://www.twitch.tv/videos/2404010998','9150',0,1,1,NULL,NULL,'2025-03-21 13:07:06','2025-03-26 00:05:41'),(1426,85,'2402883459','2025-03-11 12:09:40','SOLOQ DAY !video !vitality !annonce','https://www.twitch.tv/videos/2402883459','18530',0,1,1,NULL,NULL,'2025-03-21 13:07:06','2025-03-26 00:15:39'),(1427,85,'2402390969','2025-03-10 20:39:52','soloq nomicnocam !video !vitality !annonce','https://www.twitch.tv/videos/2402390969','10300',0,1,1,NULL,NULL,'2025-03-21 13:07:06','2025-03-26 00:18:43'),(1428,86,'2407269051','2025-03-16 14:10:57','1 ARENA puis🔴CAST KC vs HLE FINALE FIRST STAND🔴SPOIL=BAN (j\'ai rien vu)🔴MATCH DE FOLIE🔴BANGER🔴!holy = -5€ !displate = -33%','https://www.twitch.tv/videos/2407269051','32358',0,1,1,NULL,NULL,'2025-03-21 13:07:06','2025-03-26 00:42:33'),(1429,86,'2404593766','2025-03-13 13:54:04','1 ARENA PUIS🔴CAST KC vs HLE & KC vs TES🔴BANGER🔴GROSSE ANNONCE 17H30🔴!holy = Reduc 5€ / 10% 🔴 !displate','https://www.twitch.tv/videos/2404593766','22890',0,1,1,NULL,NULL,'2025-03-21 13:07:07','2025-03-26 00:57:05'),(1430,86,'2402929350','2025-03-11 13:48:34','🔴CAST KC vs CFO, NO SPOIL, dites rien sur le match si vous avez vu svp🔴!holy = Reduc 5€ / 10%','https://www.twitch.tv/videos/2402929350','10973',0,1,1,NULL,NULL,'2025-03-21 13:07:07','2025-03-26 01:03:34'),(1431,86,'2402089837','2025-03-10 13:10:24','🔴CAST KC vs TL NO SPOIL ou BAN, j\'ai rien vu, nbr game etc🔴HLE vs TES🔴Banger EU vs NA🔴KOR vs CHINE First Stand🔴!holy = Reduc 5€','https://www.twitch.tv/videos/2402089837','17694',0,1,1,NULL,NULL,'2025-03-21 13:07:07','2025-03-26 01:14:54'),(1432,88,'2410637421','2025-03-20 15:00:24','@Dye_live GM / 게임플레이 공격성 / NOUVEAU PATCH QUOI DE NEUF ? ZLAN ? (!patreon)','https://www.twitch.tv/videos/2410637421','14249',0,1,1,NULL,NULL,'2025-03-21 13:07:07','2025-03-26 01:22:20'),(1433,88,'2409790196','2025-03-19 14:50:53','@Dye_live GM / 게임플레이 공격성 / DE RETOUR COMME EN 46 (!patreon)','https://www.twitch.tv/videos/2409790196','15432',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 01:31:18'),(1434,88,'2408137377','2025-03-17 15:02:21','@Dye_live GM / 게임플레이 공격성 / QUI PEUT STOPPER CET AURELION SOL SUPPORT ? (!patreon)','https://www.twitch.tv/videos/2408137377','15025',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 01:37:26'),(1435,88,'2407295528','2025-03-16 14:53:11','@Dye_live GM / 게임플레이 공격성 / ET VOILA LE SMURF EN MASTER AVEC AURELION SOL SUPPORT, TU VAS FAIRE QUOI ? (!patreon)','https://www.twitch.tv/videos/2407295528','16431',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 01:46:55'),(1436,88,'2406389587','2025-03-15 15:11:37','@Dye_live GM / 게임플레이 공격성 / AURELION SOL SUPPORT, LE MONDE BOUGE (!patreon)','https://www.twitch.tv/videos/2406389587','15870',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 01:55:31'),(1437,88,'2405462919','2025-03-14 14:50:17','@Dye_live GM / 게임플레이 공격성 / SESSION TF SUPPORT , SI TU CRITIQUES T\'ES BAN (!patreon)','https://www.twitch.tv/videos/2405462919','15553',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 02:04:24'),(1438,88,'2402971285','2025-03-11 15:05:41','@Dye_live GM / 게임플레이 공격성 / TU TE SENS CHAUD ? OK ENVOIE TON PSEUDO VICTIME (!patreon)','https://www.twitch.tv/videos/2402971285','14821',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 02:13:10'),(1439,88,'2402155634','2025-03-10 15:19:17','@Dye_live GM / 게임플레이 공격성 / IL REVIENT.. BIENTÔT.. (!patreon)','https://www.twitch.tv/videos/2402155634','13371',0,1,1,NULL,NULL,'2025-03-21 13:07:08','2025-03-26 02:22:08'),(1440,90,'2410694077','2025-03-20 16:33:53','HEYYYYYYYYYYYYYYYYYYYYYYYYYY 🌸','https://www.twitch.tv/videos/2410694077','18040',0,1,1,NULL,NULL,'2025-03-21 13:07:09','2025-03-26 02:33:19'),(1441,90,'2409829627','2025-03-19 15:58:16','✨ coucouuuu cava ou quoi ? !holy','https://www.twitch.tv/videos/2409829627','18050',0,1,1,NULL,NULL,'2025-03-21 13:07:09','2025-03-26 03:04:43'),(1442,90,'2408983688','2025-03-18 15:37:56','🌸 COUCOU VOUS ALLEZ BIEN ? 🌸','https://www.twitch.tv/videos/2408983688','18540',0,1,1,NULL,NULL,'2025-03-21 13:07:09','2025-03-26 08:23:59'),(1443,90,'2408423248','2025-03-17 21:29:37','🌸 COUCOU ON DISCUTE !','https://www.twitch.tv/videos/2408423248','6100',0,1,1,NULL,NULL,'2025-03-21 13:07:09','2025-03-26 08:27:15'),(1444,90,'2408158326','2025-03-17 15:39:29','🌸COUCOU 🌸 on se prépare puis soloq sur LOL','https://www.twitch.tv/videos/2408158326','12860',0,1,1,NULL,NULL,'2025-03-21 13:07:09','2025-03-26 08:34:04'),(1445,90,'2407340388','2025-03-16 15:57:08','🌸SALUT LES AMIS 🌸 t ou ? tfq ? viens ?','https://www.twitch.tv/videos/2407340388','18380',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 08:45:00'),(1446,90,'2406567792','2025-03-15 18:58:56','🌸 COUCOU 🌸 aux portes du diamant !!! !holy','https://www.twitch.tv/videos/2406567792','8180',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 08:48:27'),(1447,90,'2406407950','2025-03-15 15:39:22','ccc tout le monde comment ca va ?','https://www.twitch.tv/videos/2406407950','11741',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 08:54:14'),(1448,90,'2405755032','2025-03-14 21:14:10','🔴AUCUNS RALENTISSEMENTS !!!! 🔴','https://www.twitch.tv/videos/2405755032','9230',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 08:59:51'),(1449,90,'2405477535','2025-03-14 15:13:28','COUCOU MES VIESSS MES STARSS !holy','https://www.twitch.tv/videos/2405477535','12640',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 09:06:57'),(1450,90,'2404637671','2025-03-13 15:14:27','CC LES AMIS !holy','https://www.twitch.tv/videos/2404637671','21269',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 09:16:35'),(1451,90,'2403921032','2025-03-12 17:57:39','cc la team !holy','https://www.twitch.tv/videos/2403921032','8730',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 09:20:27'),(1452,90,'2403027440','2025-03-11 16:33:59','coucou comment ça va ???? !holy','https://www.twitch.tv/videos/2403027440','23881',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 09:30:34'),(1453,90,'2402202597','2025-03-10 16:36:52','hello les amis !! salut les alooneos ? !holy','https://www.twitch.tv/videos/2402202597','14512',0,1,1,NULL,NULL,'2025-03-21 13:07:10','2025-03-26 09:42:15'),(1462,93,'2410798321','2025-03-20 18:54:20','les deux nazes perdent encore 120 RR aujourd\'hui ^^','https://www.twitch.tv/videos/2410798321','16588',0,1,1,NULL,NULL,'2025-03-21 13:07:12','2025-03-26 09:56:56'),(1463,93,'2410066838','2025-03-19 21:05:02','A MINUIT JE ME TRANSFORME EN LOUP GAROU ET JE GRAILLE RENAUD SI IL BOTTOM','https://www.twitch.tv/videos/2410066838','13958',0,1,1,NULL,NULL,'2025-03-21 13:07:12','2025-03-26 10:01:40'),(1464,93,'2409198817','2025-03-18 20:23:02','cosy stream du soir en duo avec @wipr (tsais la meuf qui ment)','https://www.twitch.tv/videos/2409198817','14088',0,1,1,NULL,NULL,'2025-03-21 13:07:12','2025-03-26 10:11:39'),(1465,93,'2408383072','2025-03-17 20:37:21','LES CHAUVE SOURIS DE LA RANKED DE SORTIE @wipr','https://www.twitch.tv/videos/2408383072','15143',0,1,1,NULL,NULL,'2025-03-21 13:07:12','2025-03-26 10:21:57'),(1466,93,'2407176590','2025-03-16 11:22:00','DIMANCHE BAGARRE @wipr !intel','https://www.twitch.tv/videos/2407176590','13067',0,1,1,NULL,NULL,'2025-03-21 13:07:12','2025-03-26 10:24:08'),(1467,94,'2403197746','2025-03-11 20:12:32','STORYLIFE L\'HOMME LE PLUS RP DE FRANCE','https://www.twitch.tv/videos/2403197746','28391',0,1,1,NULL,NULL,'2025-03-21 13:07:13','2025-03-26 10:37:47'),(1468,94,'2403095055','2025-03-11 18:04:59','L\'HOMME LE PLUS RP DE FRANCE !grand','https://www.twitch.tv/videos/2403095055','7254',0,1,1,NULL,NULL,'2025-03-21 13:07:13','2025-03-26 10:42:16'),(1469,94,'2402638240','2025-03-11 01:52:54','CS2 AVEC L\'EQUIPE DES SAUVAGES !','https://www.twitch.tv/videos/2402638240','19108',0,1,1,NULL,NULL,'2025-03-21 13:07:13','2025-03-26 11:02:45'),(1470,94,'2401721412','2025-03-09 23:28:48','CS2 AVEC L\'EQUIPE DES SAUVAGES !','https://www.twitch.tv/videos/2401721412','19825',0,1,1,NULL,NULL,'2025-03-21 13:07:13','2025-03-26 11:15:32'),(1477,97,'2410829793','2025-03-20 19:30:32','PROJECT : CYBERDASH l Swiss round l JOUR 1','https://www.twitch.tv/videos/2410829793','9980',0,1,1,NULL,NULL,'2025-03-21 13:07:15','2025-03-26 11:24:38'),(1478,97,'2409831581','2025-03-19 16:00:34','BO5 - KC VS GX - Game Changers EMEA 2025 Stage 1 - Grand Final','https://www.twitch.tv/videos/2409831581','20255',0,1,1,NULL,NULL,'2025-03-21 13:07:15','2025-03-26 11:41:18'),(1479,97,'2409250860','2025-03-18 21:29:46','GRIND PITIE L\'IMMO !redbull','https://www.twitch.tv/videos/2409250860','14520',0,1,1,NULL,NULL,'2025-03-21 13:07:15','2025-03-26 11:50:23'),(1480,97,'2408170982','2025-03-17 16:00:37','MATCH DAY | KARMINE CORP GC [0] vs [0] G2 | VCT GC EMEA','https://www.twitch.tv/videos/2408170982','16710',0,1,1,NULL,NULL,'2025-03-21 13:07:15','2025-03-26 12:00:45'),(1481,97,'2407347740','2025-03-16 16:05:40','MATCH DAY | KARMINE CORP GC [0] vs [0] SK NEBULA | VCT GC EMEA Semifinals - Upper Bracket | #KCWIN ✨','https://www.twitch.tv/videos/2407347740','6787',0,1,1,NULL,NULL,'2025-03-21 13:07:15','2025-03-26 12:04:04'),(1482,97,'2406754643','2025-03-15 22:36:59','ON CONTINUE LE GRIND AHHHHHH','https://www.twitch.tv/videos/2406754643','10230',0,1,1,NULL,NULL,'2025-03-21 13:07:15','2025-03-26 12:10:51'),(1483,97,'2404794087','2025-03-13 19:00:59','On test la bêta de R6X avec @gotaga, @kamet0, @mickalow, @valkja, @enemyn1 - Publicité','https://www.twitch.tv/videos/2404794087','18320',0,1,1,NULL,NULL,'2025-03-21 13:07:16','2025-03-26 12:22:07'),(1484,97,'2403913361','2025-03-12 17:47:53','GOOOOO GRIND LA TEAM JE SUIS TROP A MON PRIME SIUUUU','https://www.twitch.tv/videos/2403913361','15140',0,1,1,NULL,NULL,'2025-03-21 13:07:16','2025-03-26 12:32:21'),(1485,97,'2403280477','2025-03-11 22:03:52','JE SUIS A MON PRIME !redbull !cyberdash','https://www.twitch.tv/videos/2403280477','14650',0,1,1,NULL,NULL,'2025-03-21 13:07:16','2025-03-26 12:47:01'),(1486,97,'2402338978','2025-03-10 19:36:46','GO IMMO GO IMMO GO IMMO GO IMMO GO IMMO GO IMMO !redbull !cyberdash','https://www.twitch.tv/videos/2402338978','16750',0,1,1,NULL,NULL,'2025-03-21 13:07:16','2025-03-26 12:59:23'),(1487,98,'2410522977','2025-03-20 10:51:55','🔴 VALORANT VA ME PUNIR APRES LE WINNER Q DE HIER...','https://www.twitch.tv/videos/2410522977','14397',0,1,1,NULL,NULL,'2025-03-21 13:07:16','2025-03-26 13:15:13'),(1488,98,'2409683893','2025-03-19 11:00:17','🔴 J\'AIME PAS LES FER, BRONZE, SILVER, GOLD.','https://www.twitch.tv/videos/2409683893','13261',0,1,1,NULL,NULL,'2025-03-21 13:07:17','2025-03-26 13:21:39'),(1489,98,'2406239418','2025-03-15 10:32:40','🔴 BIENTOT NIVEAU 2000 SUR VALORANT 🤡','https://www.twitch.tv/videos/2406239418','12699',0,1,1,NULL,NULL,'2025-03-21 13:07:17','2025-03-26 15:59:39'),(1490,98,'2404515429','2025-03-13 10:51:07','🔴 VALORANT UN JEUDI PIRE DECISION','https://www.twitch.tv/videos/2404515429','8182',0,1,1,NULL,NULL,'2025-03-21 13:07:17','2025-03-26 16:04:16'),(1491,98,'2403689186','2025-03-12 10:57:59','🔴 JE SUIS ENFIN IMMORTAL MAIS PENDANT COMBIEN DE TEMPS ? :)','https://www.twitch.tv/videos/2403689186','13141',0,1,1,NULL,NULL,'2025-03-21 13:07:17','2025-03-26 18:50:43'),(1492,98,'2402854515','2025-03-11 10:53:30','🔴 IMPOSSIBLE DE MONTER IMMORTAL','https://www.twitch.tv/videos/2402854515','13677',0,1,1,NULL,NULL,'2025-03-21 13:07:17','2025-03-26 23:37:15'),(1503,100,'2410892150','2025-03-20 20:48:35','ON RUSH LE TOP 1! !youtube','https://www.twitch.tv/videos/2410892150','10138',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-26 23:39:21'),(1504,100,'2410738852','2025-03-20 17:36:56','STREAM NO DUELIST ATROCE, ON RUSH LE TOP 1! !youtube','https://www.twitch.tv/videos/2410738852','4752',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-26 23:44:30'),(1505,100,'2408983594','2025-03-18 15:37:47','ENFIN RADIANT! RUSH TOP 1 ! !youtube','https://www.twitch.tv/videos/2408983594','27440',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 00:14:54'),(1506,100,'2408347653','2025-03-17 19:55:54','ENFIN RADIANT! RUSH TOP 1 ! !youtube','https://www.twitch.tv/videos/2408347653','17735',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 00:32:39'),(1507,100,'2408162126','2025-03-17 15:46:23','ENFIN RADIANT! RUSH TOP 1 ! !youtube','https://www.twitch.tv/videos/2408162126','9748',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 00:42:12'),(1508,100,'2407568761','2025-03-16 20:21:44','ENFIN RADIANT! RUSH TOP 1 ! !youtube','https://www.twitch.tv/videos/2407568761','17461',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 01:01:48'),(1509,100,'2407410776','2025-03-16 17:26:03','ENFIN RADIANT! RUSH TOP 1 ! !youtube','https://www.twitch.tv/videos/2407410776','5148',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 01:07:47'),(1510,100,'2406665892','2025-03-15 20:47:37','AUJOURD\'HUI ON FAIT CHAUFFER !! RADIANT CE SOIR !! !youtube','https://www.twitch.tv/videos/2406665892','21085',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 01:26:11'),(1511,100,'2406421705','2025-03-15 15:59:11','AUJOURD\'HUI ON FAIT CHAUFFER !! RADIANT CE SOIR !! !youtube','https://www.twitch.tv/videos/2406421705','11621',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 01:35:23'),(1512,100,'2405804465','2025-03-14 22:15:31','AUJOURD\'HUI ON FAIT CHAUFFER !! RADIANT CE SOIR !! !youtube','https://www.twitch.tv/videos/2405804465','9701',0,1,1,NULL,NULL,'2025-03-21 13:07:19','2025-03-27 01:46:32'),(1513,100,'2405506821','2025-03-14 16:01:09','DUOQ AVEC ZARROX LE TROLLEUR FOU !!!! !youtube','https://www.twitch.tv/videos/2405506821','12664',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 02:01:04'),(1514,100,'2404668599','2025-03-13 16:06:25','🚨RANKED IMMO 3 DuoQ AVEC CARTEMA ! ROAD TO RADIANT!🚨','https://www.twitch.tv/videos/2404668599','34732',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 02:38:06'),(1515,100,'2404007587','2025-03-12 19:44:43','🚨LE GRAND GOAT COACH UNE FAN @Broocoline🚨 !youtube','https://www.twitch.tv/videos/2404007587','10737',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 02:49:21'),(1516,100,'2403773951','2025-03-12 14:06:18','🚨ON REMONTE RADIANT FULL TRYHARD EN RANKED🚨 !youtube','https://www.twitch.tv/videos/2403773951','9314',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 03:00:15'),(1517,100,'2403337957','2025-03-11 23:17:02','🚨ON REMONTE RADIANT FULL TRYHARD EN RANKED🚨 !youtube','https://www.twitch.tv/videos/2403337957','2009',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 03:02:53'),(1518,100,'2403215760','2025-03-11 20:36:19','🚨ON REMONTE RADIANT FULL TRYHARD EN RANKED🚨 !youtube','https://www.twitch.tv/videos/2403215760','9532',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 03:12:50'),(1519,100,'2403008044','2025-03-11 16:05:46','DOUBLE FACE BISCUIT EN RANKED // JE MONTE RADIANT !!!!','https://www.twitch.tv/videos/2403008044','9411',0,1,1,NULL,NULL,'2025-03-21 13:07:20','2025-03-27 03:14:46'),(1520,100,'2402341919','2025-03-10 19:40:32','DOUBLE FACE BISCUIT EN RANKED // JE MONTE RADIANT !!!!','https://www.twitch.tv/videos/2402341919','14779',0,1,1,NULL,NULL,'2025-03-21 13:07:21','2025-03-27 03:30:30'),(1521,1,'2411615896','2025-03-21 18:19:33','🛁 DRIVING IS HARD, PERSONAL BEST 🛁 ZÍTRA NATÁČENÍ V 9:00 RÁNO AWARE 🛁 TOP DONO BERE BALÍČEK !box 🛁 DONA ZA 19KČ 🛁 TAJNÁ TOČKA 🛁','https://www.twitch.tv/videos/2411615896','16829',0,1,1,NULL,NULL,'2025-03-21 23:00:02','2025-04-04 13:06:43'),(1522,7,'2411415258','2025-03-21 13:06:07','TRADIČNÍ ART - MALBA NA PLÁTNO ❤️🐈‍⬛ Akryl, 30x24cm','https://www.twitch.tv/videos/2411415258','9391',0,1,1,NULL,NULL,'2025-03-21 23:00:03','2025-03-25 10:08:16'),(1523,9,'2411281027','2025-03-21 06:30:38','!DROPS ✅ | #3 | ASSASSIN\'S CREED: SHADOWS | PC MAXIMÁLNÍ DETAILY | PRVNÍ PRŮCHOD S ČEŠTINOU OD @SQUIEE','https://www.twitch.tv/videos/2411281027','42125',0,1,1,NULL,NULL,'2025-03-21 23:00:03','2025-03-25 11:16:33'),(1524,16,'2411569959','2025-03-21 17:20:24','⚔️ 19:00 R.E.P.O. s LoLkaři a Domsonem ⚔️ GTA RP? ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2411569959','18840',0,1,1,NULL,NULL,'2025-03-21 23:00:04','2025-03-25 11:41:56'),(1525,17,'2411616872','2025-03-21 18:20:48','NEOZNÁMENÝ DRUNK STREAM S RP HRÁČI🍹PANÁK VODKY = 500KČ🍹!cs2big !cryptocom🍹SLEDUJ IG: @spajkk','https://www.twitch.tv/videos/2411616872','16757',0,1,1,NULL,NULL,'2025-03-21 23:00:05','2025-03-25 12:07:17'),(1526,18,'2411427704','2025-03-21 13:30:49','16.00: SINNERS WATCHPARTY PGL ASTANA OPEN QUAL 🥳 TOP DONATOR DNES BERE SKIN!!! 🥳 !SHOP !STORE','https://www.twitch.tv/videos/2411427704','29690',0,1,1,NULL,NULL,'2025-03-21 23:00:05','2025-03-25 12:34:58'),(1527,19,'2411681319','2025-03-21 19:38:11','Večerní session','https://www.twitch.tv/videos/2411681319','9833',0,1,1,NULL,NULL,'2025-03-21 23:00:05','2025-03-25 12:44:00'),(1528,20,'2411702156','2025-03-21 20:01:53','Tři magoři s hůlkama... feat @Berghy__ a @Majoji333','https://www.twitch.tv/videos/2411702156','10692',0,1,1,NULL,NULL,'2025-03-21 23:00:05','2025-03-25 13:06:49'),(1529,21,'2411476374','2025-03-21 14:59:49','Videoherní mistr | vyhlášení testů k pd někdy večer !ggdrop !backpack','https://www.twitch.tv/videos/2411476374','28817',0,1,1,NULL,NULL,'2025-03-21 23:00:06','2025-04-04 13:36:14'),(1530,25,'2411343663','2025-03-21 10:05:04','SOUTH PARK DRAČÁK POKRAČUJE! 👊 DNESKA TO MOŽNÁ DOHRAJEME 👊 SOUTHPARK: THE STICK OF TRUTH 👊 #2 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2411343663','25959',0,1,1,NULL,NULL,'2025-03-21 23:00:07','2025-03-25 13:37:19'),(1531,30,'2411360393','2025-03-21 10:58:27','TIEŇE! 🩸 Najhorší Assassin v hre btw.⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2411360393','8986',0,1,1,NULL,NULL,'2025-03-21 23:00:08','2025-03-25 13:51:06'),(1532,32,'2411611971','2025-03-21 18:14:17','Half Life 2 RTX ... na rtx5090 !kytara','https://www.twitch.tv/videos/2411611971','12429',0,1,1,NULL,NULL,'2025-03-21 23:00:08','2025-03-25 14:10:06'),(1533,33,'2411507618','2025-03-21 15:51:42','Vintage Story je zpět v Sezóně 2! Pracujeme na oceli, sázíme kytky! | !kniha !elite','https://www.twitch.tv/videos/2411507618','7126',0,1,1,NULL,NULL,'2025-03-21 23:00:08','2025-03-25 14:18:22'),(1534,41,'2411521360','2025-03-21 16:10:57','Burnout Paradise Big Surf island + NFS Unbound | 8 YEARS ON TWITCH | !mm !ig !peak','https://www.twitch.tv/videos/2411521360','22891',0,1,1,NULL,NULL,'2025-03-21 23:00:10','2025-03-25 14:12:16'),(1535,41,'2411517752','2025-03-21 16:05:27','Burnout Paradise Big Surf island + NFS Unbound | 8 YEARS ON TWITCH | !mm !ig !peak','https://www.twitch.tv/videos/2411517752','217',0,1,1,NULL,NULL,'2025-03-21 23:00:10','2025-03-25 14:12:42'),(1536,43,'2411376526','2025-03-21 11:42:30','Cambio ruolo per la squadra...? Paulcannon adc','https://www.twitch.tv/videos/2411376526','22560',0,1,1,NULL,NULL,'2025-03-21 23:00:10','2025-03-25 14:31:12'),(1537,44,'2411239640','2025-03-21 04:41:45','Tree Pooooosyclat Ting','https://www.twitch.tv/videos/2411239640','26784',0,1,1,NULL,NULL,'2025-03-21 23:00:10','2025-03-25 15:11:43'),(1538,45,'2411556418','2025-03-21 17:02:03','BWL on Saturday wowie | !starforge !gamersupps','https://www.twitch.tv/videos/2411556418','21487',0,1,1,NULL,NULL,'2025-03-21 23:00:11','2025-03-25 15:59:08'),(1539,46,'2411413117','2025-03-21 13:02:27','🎉FRIDAYS WITH NYMN!🥳 TRIVIA🎊🎁 FASHION !review today! 🧥👜🥾','https://www.twitch.tv/videos/2411413117','22020',0,1,1,NULL,NULL,'2025-03-21 23:00:11','2025-03-25 16:08:48'),(1540,47,'2411495916','2025-03-21 15:31:37','🔴Work at Iron Forge Gym 🔴 !KNKG !freespirit !kost1 🇺🇸 #AD','https://www.twitch.tv/videos/2411495916','26914',0,1,1,NULL,NULL,'2025-03-21 23:00:11','2025-03-25 16:47:58'),(1541,54,'2411790132','2025-03-21 21:49:34','No I\'m not playing League of Legends! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2411790132','4238',0,1,1,NULL,NULL,'2025-03-21 23:00:12','2025-03-25 16:52:22'),(1542,54,'2411432323','2025-03-21 13:39:52','Drop the Terminus Weapon Already! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2411432323','21731',0,1,1,NULL,NULL,'2025-03-21 23:00:12','2025-03-25 17:24:14'),(1543,54,'2411381098','2025-03-21 11:54:37','Drop the Terminus Weapon Already! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2411381098','6139',0,1,1,NULL,NULL,'2025-03-21 23:00:12','2025-03-25 17:32:15'),(1544,58,'2411546301','2025-03-21 16:49:28','⭐ INVITE ME TO YOUR PUBG RIVALS TEAM PLS ⭐ UNIQUE CUSTOMS ON SUNDAY?⭐RARE STREAM⭐FORSEN DID WHAT? ⭐','https://www.twitch.tv/videos/2411546301','12710',0,1,1,NULL,NULL,'2025-03-21 23:00:13','2025-03-25 17:48:37'),(1545,61,'2411263912','2025-03-21 05:39:30','The Light Calls My name... Level 58 Paladin...','https://www.twitch.tv/videos/2411263912','18710',0,1,1,NULL,NULL,'2025-03-21 23:00:14','2025-03-25 18:23:33'),(1546,66,'2411532104','2025-03-21 16:27:48','🌸Friday with Yape🌸','https://www.twitch.tv/videos/2411532104','23547',0,1,1,NULL,NULL,'2025-03-21 23:00:15','2025-03-25 19:00:13'),(1547,74,'2411273716','2025-03-21 06:07:40','Wo ist das Internet?! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2411273716','21650',0,1,1,NULL,NULL,'2025-03-21 23:00:17','2025-03-27 03:45:46'),(1550,83,'2411323587','2025-03-21 08:59:07','SHAUNZ 🤍💛 oui je stream, ce sera moins long qu\'hier je vous PREVIENS','https://www.twitch.tv/videos/2411323587','8240',0,1,1,NULL,NULL,'2025-03-21 23:00:19','2025-03-27 03:51:51'),(1551,85,'2411747905','2025-03-21 20:57:05','SOLOQ DAY !video !vitality !annonce','https://www.twitch.tv/videos/2411747905','3250',0,1,1,NULL,NULL,'2025-03-21 23:00:19','2025-03-27 03:52:52'),(1552,86,'2411494243','2025-03-21 15:29:00','🔴Je Cast le Pire FER4 DU JEU🔴LIVE COACHING CHOWH1 1ere Fois sur LoL🔴!holy = -5€ !displate = -33%','https://www.twitch.tv/videos/2411494243','18160',0,1,1,NULL,NULL,'2025-03-21 23:00:19','2025-03-27 04:09:38'),(1553,88,'2411475451','2025-03-21 14:58:27','@Dye_live GM / 게임플레이 공격성 / DEBUNK DES OVNIS QUE JAI VU HIER SOIR (!patreon)','https://www.twitch.tv/videos/2411475451','15182',0,1,1,NULL,NULL,'2025-03-21 23:00:20','2025-03-27 04:22:05'),(1556,97,'2411708971','2025-03-21 20:08:59','🏆 PROJECT : CYBERDASH 🏆 | Swiss Round | JOUR 2 ✨ !cyberdash !redbull','https://www.twitch.tv/videos/2411708971','10283',0,1,1,NULL,NULL,'2025-03-21 23:00:22','2025-03-27 04:34:34'),(1557,98,'2411358204','2025-03-21 10:52:04','🔴 BIENTOT RADIANT MAIS AUSSI BIENTOT LA LOOSER Q :)','https://www.twitch.tv/videos/2411358204','15847',0,1,1,NULL,NULL,'2025-03-21 23:00:22','2025-03-27 04:52:22'),(1559,100,'2411782028','2025-03-21 21:38:53','ON RUSH LE TOP 1! !youtube','https://www.twitch.tv/videos/2411782028','1912',0,1,1,NULL,NULL,'2025-03-21 23:00:22','2025-03-27 04:54:36'),(1560,100,'2411568679','2025-03-21 17:18:37','ON RUSH LE TOP 1! !youtube','https://www.twitch.tv/videos/2411568679','5286',0,1,1,NULL,NULL,'2025-03-21 23:00:22','2025-03-27 04:55:44'),(1561,31,'2411354535','2025-03-21 10:40:28','💦 TOHLE NENÍ ŽÁDNÁ RANDÍRNA 💦 NEJLEPŠÍ ASSASSIN OD UNITY | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2411354535','48231',0,1,1,NULL,NULL,'2025-03-22 03:00:08','2025-03-25 21:24:26'),(1562,72,'2411554686','2025-03-21 17:00:26','12 STUNDEN Eskalation - Monster Pack Opening zum neuen Event! | !goal !content !prime','https://www.twitch.tv/videos/2411554686','43790',0,1,1,NULL,NULL,'2025-03-22 07:00:18','2025-03-27 05:20:22'),(1563,9,'2412159600','2025-03-22 06:12:31','!DROPS ✅ | #4 | ASSASSIN\'S CREED: SHADOWS | PC MAXIMÁLNÍ DETAILY | PRVNÍ PRŮCHOD S ČEŠTINOU OD @SQUIEE','https://www.twitch.tv/videos/2412159600','51965',0,1,1,NULL,NULL,'2025-03-22 23:00:03','2025-03-25 22:45:38'),(1564,17,'2412391768','2025-03-22 14:58:27','INTRO🌸18:00 GTA RP GENK DNESKI CK?🌸!cs2big !cryptocom🌸 PROGRAM NA IG: @spajkk','https://www.twitch.tv/videos/2412391768','25300',0,1,1,NULL,NULL,'2025-03-22 23:00:05','2025-03-25 23:10:17'),(1565,18,'2412276430','2025-03-22 11:40:15','CS2 FACEIT !BINGO O DRAHÉ SLUCHÁTKA ZA 5500 KČ - GAME DAY 5 🥳 TOP DONATOR DNES BERE OPĚT SKIN!!! 🥳 !SHOP !STORE','https://www.twitch.tv/videos/2412276430','27330',0,1,1,NULL,NULL,'2025-03-22 23:00:05','2025-03-25 23:36:45'),(1566,19,'2412220026','2025-03-22 09:10:06','Šup do vod víkendového randomu!','https://www.twitch.tv/videos/2412220026','11005',0,1,1,NULL,NULL,'2025-03-22 23:00:05','2025-03-25 23:47:15'),(1567,20,'2412634643','2025-03-22 19:58:05','RikLanding v praxi... / #FactorioJinak','https://www.twitch.tv/videos/2412634643','10920',0,1,1,NULL,NULL,'2025-03-22 23:00:05','2025-03-25 23:53:51'),(1568,21,'2412482207','2025-03-22 17:00:51','Závěrečné zkoušky PCD s kulíškem ciprem !ggdrop !backpack','https://www.twitch.tv/videos/2412482207','21554',0,1,1,NULL,NULL,'2025-03-22 23:00:05','2025-03-26 00:32:23'),(1570,27,'2412545896','2025-03-22 18:17:38','Pokračujeme v Shadows 🔴 Den 3: Herního subathonu🔴 | Socials: @Mullersie','https://www.twitch.tv/videos/2412545896','16949',0,1,1,NULL,NULL,'2025-03-22 23:00:07','2025-03-26 23:22:16'),(1571,27,'2412255936','2025-03-22 10:52:02','Dobré ráno 🌞 🔴 Den 3: Herního subathonu🔴 | Socials: @Mullersie','https://www.twitch.tv/videos/2412255936','26611',0,1,1,NULL,NULL,'2025-03-22 23:00:07','2025-03-26 23:49:09'),(1572,28,'2412400169','2025-03-22 15:09:03','⛩️FINÁLE AC SHADOWS + DROPS + CZ OD @SQUIEE ⛩️ | POUZE PŘÍBĚH | Q&A | Λ vs. ✠','https://www.twitch.tv/videos/2412400169','21789',0,1,1,NULL,NULL,'2025-03-22 23:00:07','2025-03-27 00:05:44'),(1573,29,'2412546889','2025-03-22 18:18:49','SRANDS | zejtra free !dc !ig !mc','https://www.twitch.tv/videos/2412546889','16878',0,1,1,NULL,NULL,'2025-03-22 23:00:07','2025-04-04 13:45:54'),(1574,31,'2412309150','2025-03-22 12:43:50','💦 PRO MĚ LEPŠÍ NEŽ KCD2 💦 A CO JAKO? | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2412309150','30156',0,1,1,NULL,NULL,'2025-03-22 23:00:08','2025-03-27 00:42:47'),(1575,32,'2412601490','2025-03-22 19:20:26','Cesta na jih moravy za vůní mandlí - Hustopeče. !auto','https://www.twitch.tv/videos/2412601490','1890',0,1,1,NULL,NULL,'2025-03-22 23:00:08','2025-03-27 00:44:46'),(1576,32,'2412288021','2025-03-22 12:02:50','Cesta na jih moravy za vůní mandlí - Hustopeče. !auto','https://www.twitch.tv/videos/2412288021','26097',0,1,1,NULL,NULL,'2025-03-22 23:00:08','2025-03-27 01:10:37'),(1577,33,'2412434840','2025-03-22 15:59:18','Vintage Story je zpět v Sezóně 2! MÁME OCEL BRATŘI A SESTRY | !kniha !elite','https://www.twitch.tv/videos/2412434840','6452',0,1,1,NULL,NULL,'2025-03-22 23:00:08','2025-03-27 01:17:08'),(1578,40,'2412391980','2025-03-22 14:58:46','Games and shit!','https://www.twitch.tv/videos/2412391980','21529',0,1,1,NULL,NULL,'2025-03-22 23:00:09','2025-03-26 09:43:26'),(1579,43,'2412270406','2025-03-22 11:26:14','Cambio ruolo per la squadra...? Paulcannon adc','https://www.twitch.tv/videos/2412270406','13863',0,1,1,NULL,NULL,'2025-03-22 23:00:10','2025-03-26 09:57:33'),(1580,44,'2412164086','2025-03-22 06:24:32','sniffing part 2','https://www.twitch.tv/videos/2412164086','31523',0,1,1,NULL,NULL,'2025-03-22 23:00:10','2025-03-26 11:03:39'),(1581,45,'2412425380','2025-03-22 15:46:31','Onlyfangs 1st BWL, were probably doomed | !starforge !gamersupps','https://www.twitch.tv/videos/2412425380','20120',0,1,1,NULL,NULL,'2025-03-22 23:00:11','2025-03-26 11:23:14'),(1582,46,'2412370809','2025-03-22 14:25:35','A great day for 💀 DEATH ☠️','https://www.twitch.tv/videos/2412370809','25150',0,1,1,NULL,NULL,'2025-03-22 23:00:11','2025-03-26 11:39:03'),(1583,47,'2412475581','2025-03-22 16:53:39','🔴 Exploring Texas with @jeanette 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2412475581','21992',0,1,1,NULL,NULL,'2025-03-22 23:00:11','2025-03-26 12:56:44'),(1584,49,'2412366253','2025-03-22 14:18:10','SOLO | Next Event 26th March | !fractal !madmonq !giveaway !PlayCB | #ad','https://www.twitch.tv/videos/2412366253','23099',0,1,1,NULL,NULL,'2025-03-22 23:00:12','2025-03-26 13:04:53'),(1585,58,'2412269086','2025-03-22 11:23:01','⭐6 PUBG OPEN CUSTOM GAMES MORNING⭐ EVERYONE WELCOME⭐RARE STREAM⭐FLOPPA FRIDAY ⭐','https://www.twitch.tv/videos/2412269086','13540',0,1,1,NULL,NULL,'2025-03-22 23:00:14','2025-03-26 13:14:29'),(1586,61,'2412510837','2025-03-22 17:37:09','Recap and Reacts -> Games: WoW SoD? GTA 3? Renn Faire Tomorrow?','https://www.twitch.tv/videos/2412510837','19385',0,1,1,NULL,NULL,'2025-03-22 23:00:14','2025-04-04 13:41:38'),(1587,61,'2411870548','2025-03-21 23:26:15','Home Depot IRL then Prepping for Rockband Game Night w/ OTK and friends!','https://www.twitch.tv/videos/2411870548','23150',0,1,1,NULL,NULL,'2025-03-22 23:00:14','2025-04-04 14:24:03'),(1588,66,'2412407417','2025-03-22 15:19:53','🌸Yabbe Show🌸','https://www.twitch.tv/videos/2412407417','21417',0,1,1,NULL,NULL,'2025-03-22 23:00:15','2025-04-04 14:40:00'),(1589,69,'2412046844','2025-03-22 02:54:39','DUO VS. TRIOS 🔴 On that demon time 🔴 !madmonq giveaway that ends in 3 days! 🔴 !GIVEAWAY','https://www.twitch.tv/videos/2412046844','19972',0,1,1,NULL,NULL,'2025-03-22 23:00:16','2025-04-04 15:08:51'),(1590,70,'2412440734','2025-03-22 16:05:53','👻 GEILER MANN MACHT GEILE SACHEN 👻','https://www.twitch.tv/videos/2412440734','24863',0,1,1,NULL,NULL,'2025-03-22 23:00:16','2025-03-27 05:41:47'),(1591,75,'2412342670','2025-03-22 13:41:15','🟢ZWEITER MONITOR GANG GANG🟢!steelseries','https://www.twitch.tv/videos/2412342670','20330',0,1,1,NULL,NULL,'2025-03-22 23:00:17','2025-03-27 06:04:41'),(1595,83,'2412307509','2025-03-22 12:40:44','LE RUGBYPLEX : LE MULTIPLEX RUGBY DES SUPPORTERS','https://www.twitch.tv/videos/2412307509','7713',0,1,1,NULL,NULL,'2025-03-22 23:00:19','2025-03-27 06:13:27'),(1596,85,'2412523297','2025-03-22 17:53:24','on parle !video !vitality !annonce','https://www.twitch.tv/videos/2412523297','1180',0,1,1,NULL,NULL,'2025-03-22 23:00:20','2025-03-27 06:14:32'),(1597,86,'2412210158','2025-03-22 08:41:43','🔴NASUS 5v5/ARENA🔴puis 11H CHOWH1 en First Time sur LoL avec des Menu KFC à win!!🔴','https://www.twitch.tv/videos/2412210158','24738',0,1,1,NULL,NULL,'2025-03-22 23:00:20','2025-03-27 06:40:02'),(1598,88,'2412387170','2025-03-22 14:51:39','@Dye_live GM / 게임플레이 공격성 / Ce milieu est plein de surprises dites moi (!patreon)','https://www.twitch.tv/videos/2412387170','16394',0,1,1,NULL,NULL,'2025-03-22 23:00:21','2025-03-27 07:01:23'),(1599,90,'2412416909','2025-03-22 15:33:44','COUCOU ! On discutee chilll 🌸','https://www.twitch.tv/videos/2412416909','25920',0,1,1,NULL,NULL,'2025-03-22 23:00:21','2025-04-04 15:23:09'),(1601,97,'2412526631','2025-03-22 17:57:18','🏆 PROJECT : CYBERDASH 🏆 | Winner & Loser Brackets | JOUR 3 ✨ !cyberdash !redbull','https://www.twitch.tv/videos/2412526631','1090',0,1,1,NULL,NULL,'2025-03-22 23:00:22','2025-03-27 07:10:54'),(1602,97,'2412326697','2025-03-22 13:13:19','🏆 PROJECT : CYBERDASH 🏆 | Winner & Loser Brackets | JOUR 3 ✨ !cyberdash !redbull','https://www.twitch.tv/videos/2412326697','16911',0,1,1,NULL,NULL,'2025-03-22 23:00:22','2025-03-27 07:20:07'),(1604,100,'2412688000','2025-03-22 20:58:40','ON RUSH TOP 1 puis premier a 21h!! !coaching !youtube','https://www.twitch.tv/videos/2412688000','7303',0,1,1,NULL,NULL,'2025-03-22 23:00:23','2025-03-27 07:36:00'),(1605,100,'2412548367','2025-03-22 18:20:39','ON RUSH LE TOP 1! !youtube','https://www.twitch.tv/videos/2412548367','9411',0,1,1,NULL,NULL,'2025-03-22 23:00:23','2025-03-27 07:42:44'),(1606,100,'2412389443','2025-03-22 14:55:12','ON RUSH LE TOP 1! !youtube','https://www.twitch.tv/videos/2412389443','12173',0,1,1,NULL,NULL,'2025-03-22 23:00:23','2025-03-27 07:52:36'),(1608,102,'6aRKVheZ6Yk','2025-03-20 12:49:10','https://www.youtube.com/watch?v=6aRKVheZ6Yk','https://www.youtube.com/watch?v=6aRKVheZ6Yk',NULL,0,1,1,NULL,NULL,'2025-03-23 11:55:49','2025-03-23 12:39:04'),(1609,102,'ovPOUrJiCcY','2025-03-20 12:49:10','https://www.youtube.com/watch?v=ovPOUrJiCcY','https://www.youtube.com/watch?v=ovPOUrJiCcY',NULL,0,1,1,NULL,NULL,'2025-03-23 11:55:49','2025-03-23 12:53:04'),(1618,5,'2413276679','2025-03-23 13:57:01','😈DNES SA TU BUDE ZABAVAŤ A VIDEOHERNE ČAROVAŤ😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2413276679','28300',0,1,1,NULL,NULL,'2025-03-23 23:00:03','2025-03-27 01:52:40'),(1619,9,'2413114664','2025-03-23 07:52:28','LEVEL 1 WARLOCK 🔥🧛🏻‍♂️ | #1 | WOW CLASSIC HARDCORE | SMRT = SMAZÁNÍ POSTAVY | OFICIÁLNÍ HC !SERVER','https://www.twitch.tv/videos/2413114664','39150',0,1,1,NULL,NULL,'2025-03-23 23:00:04','2025-03-27 02:33:34'),(1620,16,'2413478943','2025-03-23 18:20:48','⚔️ Chystání demošky ⚔️ Nové Wole ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2413478943','16757',0,1,1,NULL,NULL,'2025-03-23 23:00:05','2025-03-27 02:56:39'),(1621,17,'2413236634','2025-03-23 12:52:26','INTRO💀GENK ban na 3 dny💀cs2big !cryptocom🫏 SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2413236634','35890',0,1,1,NULL,NULL,'2025-03-23 23:00:05','2025-03-27 03:33:28'),(1622,18,'2413156013','2025-03-23 09:52:38','BIG OPENING NHL HOKEJ BOXŮ S PODPISAMA + DRESAMA 🥳 14:00 CS2 FACEIT ELO CHALLENGE 🥳 17:00 SINNERS ASTANA KVALIFIKACE WATCHPARTY 🥳','https://www.twitch.tv/videos/2413156013','45750',0,1,1,NULL,NULL,'2025-03-23 23:00:05','2025-03-27 04:18:31'),(1623,19,'2413374914','2025-03-23 16:16:33','Objekt 140 v roce 2025','https://www.twitch.tv/videos/2413374914','13985',0,1,1,NULL,NULL,'2025-03-23 23:00:06','2025-03-27 04:35:35'),(1624,21,'2413416265','2025-03-23 17:08:31','18:20 COMANDERKA SI VOLÁ DUKIEHO DO KANCLU !ggdrop !backpack','https://www.twitch.tv/videos/2413416265','21095',0,1,1,NULL,NULL,'2025-03-23 23:00:06','2025-03-27 04:54:33'),(1625,25,'2413226815','2025-03-23 12:33:57','JORAN SUPERHRDINOU! 👊 ZACHRAŇUJU TEPLÉ PRDELE A BOJUJI PROTI ZLU... 👊 SOUTHPARK: THE FRACTURED BUT WHOLE 👊 #1 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2413226815','19268',0,1,1,NULL,NULL,'2025-03-23 23:00:08','2025-03-27 05:11:48'),(1626,29,'2413412903','2025-03-23 17:04:23','18:15 TEU TESTY | zejtra free !dc !ig !mc','https://www.twitch.tv/videos/2413412903','21345',0,1,1,NULL,NULL,'2025-03-23 23:00:08','2025-03-27 06:10:56'),(1627,29,'2413404339','2025-03-23 16:55:39','18:15 TEU TESTY | zejtra free !dc !ig !mc','https://www.twitch.tv/videos/2413404339','510',0,1,1,NULL,NULL,'2025-03-23 23:00:08','2025-03-27 06:11:06'),(1628,30,'2413155731','2025-03-23 09:51:46','NAJ UBI HRA! Dnes to hrám posledný krát! Som viac ako 16 hodín v hre! 🩸 Najhorší Assassin v hre btw.⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2413155731','13446',0,1,1,NULL,NULL,'2025-03-23 23:00:08','2025-03-27 06:33:07'),(1629,31,'2413190694','2025-03-23 11:19:53','NEDĚLNÍ RETRO VOL.98 - DNEŠNÍ POČASÍ MLUVÍ JASNĚ | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2413190694','26891',0,1,1,NULL,NULL,'2025-03-23 23:00:09','2025-03-27 07:05:16'),(1630,40,'2413320133','2025-03-23 15:01:48','Games and shit!','https://www.twitch.tv/videos/2413320133','23233',0,1,1,NULL,NULL,'2025-03-23 23:00:11','2025-03-27 06:01:51'),(1631,41,'2413410017','2025-03-23 17:01:21','Motorstorm: Apocalypse + Assassin\'s Creed Shadows | 8 YEARS ON TWITCH !mm !ig !peak','https://www.twitch.tv/videos/2413410017','18124',0,1,1,NULL,NULL,'2025-03-23 23:00:11','2025-03-27 06:28:38'),(1632,43,'2413240933','2025-03-23 12:59:29','Mi hanno invitato ad un torneo di Marvel Rivals ma non so se accettare..','https://www.twitch.tv/videos/2413240933','36042',0,1,1,NULL,NULL,'2025-03-23 23:00:11','2025-03-27 07:09:38'),(1633,43,'2413223868','2025-03-23 12:28:19','Mi hanno invitato ad un torneo di Marvel Rivals ma non so se accettare..','https://www.twitch.tv/videos/2413223868','1714',0,1,1,NULL,NULL,'2025-03-23 23:00:11','2025-03-27 07:10:33'),(1634,44,'2413064632','2025-03-23 05:39:01','i wanna see where the story goes','https://www.twitch.tv/videos/2413064632','19281',0,1,1,NULL,NULL,'2025-03-23 23:00:11','2025-03-27 07:35:01'),(1635,45,'2413389706','2025-03-23 16:36:40','I can\'t believe graycen would ddos his own raid | !starforge !gamersupps','https://www.twitch.tv/videos/2413389706','8350',0,1,1,NULL,NULL,'2025-03-23 23:00:12','2025-03-27 07:44:43'),(1636,46,'2413240908','2025-03-23 12:59:28','。゚☁︎⋆🌞𓂃 SUN DAY 🌻 | GORDON TODAY, 💀BWL Later ☠️','https://www.twitch.tv/videos/2413240908','22760',0,1,1,NULL,NULL,'2025-03-23 23:00:12','2025-03-27 08:00:07'),(1637,47,'2413477283','2025-03-23 18:18:47','Last day of spring brake! Knut going wild 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2413477283','16885',0,1,1,NULL,NULL,'2025-03-23 23:00:12','2025-03-27 08:47:30'),(1638,54,'2413267097','2025-03-23 13:41:38','Femboy Femboy Kisser | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2413267097','24175',0,1,1,NULL,NULL,'2025-03-23 23:00:13','2025-03-27 09:04:18'),(1639,58,'2413186851','2025-03-23 11:10:42','⭐WE MIGHT BE IN⭐HAVE TO TRYHARD NOW ⭐FINISHING CUSTOMS TODAY? ⭐EVERYONE WELCOME⭐RARE STREAM⭐MONDAY TOMORROW⭐','https://www.twitch.tv/videos/2413186851','13850',0,1,1,NULL,NULL,'2025-03-23 23:00:14','2025-03-27 09:16:18'),(1640,61,'2413474103','2025-03-23 18:15:08','Taking Jinny to the Renaissance Faire w/ Cyr Peach and Phin? - @esfandtv all socials','https://www.twitch.tv/videos/2413474103','17107',0,1,1,NULL,NULL,'2025-03-23 23:00:15','2025-03-27 09:52:29'),(1642,66,'2413440741','2025-03-23 17:38:39','🌸Sunday gaming 🌸 Checking out AC: Shadows! ~ !AC #ad','https://www.twitch.tv/videos/2413440741','14934',0,1,1,NULL,NULL,'2025-03-23 23:00:16','2025-03-27 10:02:38'),(1643,67,'2413534368','2025-03-23 19:20:27','BLACKSMITHING AT THE MEDIEVAL FAIR WITH @PEACHJARS & @PHINTTV','https://www.twitch.tv/videos/2413534368','13189',0,1,1,NULL,NULL,'2025-03-23 23:00:16','2025-03-27 10:28:12'),(1644,69,'2412961070','2025-03-23 02:44:12','SOLO 🔴 On that demon time 🔴 !madmonq giveaway that ends in tomorrow 🔴 !GIVEAWAY','https://www.twitch.tv/videos/2412961070','24225',0,1,1,NULL,NULL,'2025-03-23 23:00:17','2025-03-27 11:13:39'),(1645,70,'2413188412','2025-03-23 11:14:30','👷‍♂️ GEILER MANN MACHT GEILE SACHEN 👷‍♂️','https://www.twitch.tv/videos/2413188412','40940',0,1,1,NULL,NULL,'2025-03-23 23:00:17','2025-03-27 11:51:23'),(1646,74,'2413086506','2025-03-23 06:31:27','Sonntags-Chillung | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2413086506','17109',0,1,1,NULL,NULL,'2025-03-23 23:00:18','2025-03-27 12:07:58'),(1647,75,'2413177960','2025-03-23 10:50:41','🟢THE RETURN OF GIRLYFLEX🟢!steelseries','https://www.twitch.tv/videos/2413177960','21290',0,1,1,NULL,NULL,'2025-03-23 23:00:18','2025-03-27 12:21:51'),(1649,86,'2413249476','2025-03-23 13:12:13','🔴RANKED 5v5, en mode Stratégie et Kiff & LNG vs JDG puis Info !TradeRepublic🔴 !holy = -5€/10% !displate','https://www.twitch.tv/videos/2413249476','20102',0,1,1,NULL,NULL,'2025-03-23 23:00:21','2025-03-27 12:42:59'),(1650,88,'2413316682','2025-03-23 14:57:52','@Dye_live GM / 게임플레이 공격성 / Ce milieu est plein de surprises dites moi (!patreon)','https://www.twitch.tv/videos/2413316682','13752',0,1,1,NULL,NULL,'2025-03-23 23:00:21','2025-03-27 12:50:38'),(1651,90,'2413388760','2025-03-23 16:35:27','ON DISCUTE CHILL 🌸','https://www.twitch.tv/videos/2413388760','18790',0,1,1,NULL,NULL,'2025-03-23 23:00:21','2025-03-27 13:09:25'),(1653,93,'2413663094','2025-03-23 21:53:35','LES TERREURS DU SOIR SONT DE RETOUR @wipr','https://www.twitch.tv/videos/2413663094','4007',0,1,1,NULL,NULL,'2025-03-23 23:00:22','2025-03-27 13:12:58'),(1654,97,'2413248130','2025-03-23 13:09:59','🏆 PROJECT : CYBERDASH 🏆 | FINAL BRACKET | JOUR 4 ✨ !cyberdash !redbull','https://www.twitch.tv/videos/2413248130','24110',0,1,1,NULL,NULL,'2025-03-23 23:00:23','2025-03-27 13:53:59'),(1656,100,'2413388993','2025-03-23 16:35:44','ON RUSH TOP 1 puis premier a 21h!! !coaching !youtube','https://www.twitch.tv/videos/2413388993','18955',0,1,1,NULL,NULL,'2025-03-23 23:00:23','2025-03-27 14:18:26'),(1657,1,'2414256091','2025-03-24 17:31:31','💀 DNES YASUKE SIMULATOR A NOVÉ HORORY 💀 TOP DONO BERE BALÍK !box 💀 ZÍTRA REPO 💀 DONO = 2x KINGDOM COME 2 💀','https://www.twitch.tv/videos/2414256091','19711',0,1,1,NULL,NULL,'2025-03-24 23:00:02','2025-03-27 14:43:05'),(1658,5,'2414112181','2025-03-24 13:30:32','😈VESMIRNE KONŠTALOVANIE HERNÝCH MOMENTOV😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2414112181','29200',0,1,1,NULL,NULL,'2025-03-24 23:00:02','2025-03-27 15:20:35'),(1659,7,'2414106935','2025-03-24 13:19:22','KCD CHILL 🫠 zcela jistě to již dohraju (opravdu, 100%) 🎮🖤','https://www.twitch.tv/videos/2414106935','13471',0,1,1,NULL,NULL,'2025-03-24 23:00:03','2025-03-27 15:38:09'),(1660,9,'2413967766','2025-03-24 06:08:58','LEVEL 12 WARLOCK 🔥🧛🏻‍♂️ | #2 | WOW CLASSIC HARDCORE | SMRT = SMAZÁNÍ POSTAVY | OFICIÁLNÍ HC !SERVER','https://www.twitch.tv/videos/2413967766','13677',0,1,1,NULL,NULL,'2025-03-24 23:00:03','2025-03-27 15:48:13'),(1661,11,'2414266089','2025-03-24 17:45:43','🤢 REAKCE NA KLIPY 🤢 GOLF A IN SINK S JANKEM 🤢 PO 22:00 MOŽNÁ SCHEDULE I (PLNÁ HRA 🤢','https://www.twitch.tv/videos/2414266089','18860',0,1,1,NULL,NULL,'2025-03-24 23:00:03','2025-03-27 16:04:39'),(1662,16,'2414250742','2025-03-24 17:24:03','⚔️ 19:00 SVOBODŮ!! DEMYSY! ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2414250742','20161',0,1,1,NULL,NULL,'2025-03-24 23:00:04','2025-03-27 16:33:48'),(1663,18,'2414198053','2025-03-24 16:06:44','NHL 6v6 GOLMAN MODE + GOLF S KAULYM, NEČIM ATD 🥳 VEČER PUBG A HUNTĚNÍ BOTŮ 🥳 !shop','https://www.twitch.tv/videos/2414198053','23730',0,1,1,NULL,NULL,'2025-03-24 23:00:04','2025-03-27 16:55:29'),(1664,19,'2414245217','2025-03-24 17:16:18','Objekt 140 gameplay','https://www.twitch.tv/videos/2414245217','9674',0,1,1,NULL,NULL,'2025-03-24 23:00:05','2025-03-27 17:01:55'),(1665,19,'2414021669','2025-03-24 09:26:16','Char Murat','https://www.twitch.tv/videos/2414021669','11729',0,1,1,NULL,NULL,'2025-03-24 23:00:05','2025-03-27 17:17:20'),(1666,20,'2414369864','2025-03-24 19:54:02','Future Games Show s Rikem a pak uvidíme...','https://www.twitch.tv/videos/2414369864','11163',0,1,1,NULL,NULL,'2025-03-24 23:00:05','2025-03-27 17:28:43'),(1669,27,'2414288288','2025-03-24 18:12:57','🌞 Krásné Shadows počasí🔴 Den 5: Herního subathonu🔴 | Socials: @Mullersie','https://www.twitch.tv/videos/2414288288','17229',0,1,1,NULL,NULL,'2025-03-24 23:00:07','2025-03-28 10:02:07'),(1670,29,'2414232672','2025-03-24 17:00:03','OPRAVNÉ TEST TEU | zejtra free !dc !ig !mc','https://www.twitch.tv/videos/2414232672','21604',0,1,1,NULL,NULL,'2025-03-24 23:00:07','2025-04-04 15:11:19'),(1671,30,'2414078732','2025-03-24 12:18:18','Nenavidim svoj zivot preto hram VIVAT SLOVAKIA ⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2414078732','4745',0,1,1,NULL,NULL,'2025-03-24 23:00:07','2025-03-28 10:13:56'),(1672,31,'2414214365','2025-03-24 16:32:46','MOČKA PONDĚLÍ VOL.3 | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2414214365','21736',0,1,1,NULL,NULL,'2025-03-24 23:00:08','2025-03-28 10:55:45'),(1673,32,'2414302612','2025-03-24 18:32:10','Mishpondělí !kytara !smarty','https://www.twitch.tv/videos/2414302612','13522',0,1,1,NULL,NULL,'2025-03-24 23:00:08','2025-03-28 11:08:31'),(1674,32,'2414285056','2025-03-24 18:08:40','Mishpondělí !kytara !smarty','https://www.twitch.tv/videos/2414285056','1316',0,1,1,NULL,NULL,'2025-03-24 23:00:08','2025-03-28 11:08:58'),(1675,33,'2414231601','2025-03-24 16:58:49','Dnes první ocelové bary! Nemůžu tomu uvěřit :D | !kniha !elite','https://www.twitch.tv/videos/2414231601','4174',0,1,1,NULL,NULL,'2025-03-24 23:00:08','2025-03-28 11:12:07'),(1676,40,'2414150784','2025-03-24 14:46:56','Games and shit!','https://www.twitch.tv/videos/2414150784','22745',0,1,1,NULL,NULL,'2025-03-24 23:00:09','2025-03-28 11:21:33'),(1677,41,'2414205611','2025-03-24 16:18:52','!Randomizer for Forza Motorsport 2 - First Playthrough | !mm !ig !peak','https://www.twitch.tv/videos/2414205611','19201',0,1,1,NULL,NULL,'2025-03-24 23:00:09','2025-03-28 11:40:43'),(1678,44,'2413918528','2025-03-24 04:02:26','giga lv 30+ lobby','https://www.twitch.tv/videos/2413918528','27248',0,1,1,NULL,NULL,'2025-03-24 23:00:10','2025-03-29 20:19:24'),(1679,46,'2414070712','2025-03-24 12:00:22','⚠️ Last desktop stream ⚠️ before I leave to go !ski | 📢 NymN\'s News Network, 6PM CET!','https://www.twitch.tv/videos/2414070712','21050',0,1,1,NULL,NULL,'2025-03-24 23:00:11','2025-03-28 12:39:08'),(1680,47,'2414202927','2025-03-24 16:14:26','🔴Another nice day to be outside 🔴Lifting with @jeanette🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2414202927','24345',0,1,1,NULL,NULL,'2025-03-24 23:00:11','2025-03-28 13:30:03'),(1681,49,'2414260273','2025-03-24 17:37:23','AMA ABOUT UPDATE 2.3 | Coming March 26th | !fractal !madmonq','https://www.twitch.tv/videos/2414260273','10841',0,1,1,NULL,NULL,'2025-03-24 23:00:11','2025-03-28 13:45:08'),(1682,54,'2414060374','2025-03-24 11:32:45','One of the best JRPGs | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2414060374','30374',0,1,1,NULL,NULL,'2025-03-24 23:00:12','2025-03-28 13:55:11'),(1683,57,'2413822328','2025-03-24 01:24:32','🔴(a)WAKE@DAY🔴I\'M LETTING IT ALL OUT BABY🔴WABI SABI TALKS🔴STARTING CULT🔴ACTUAL GAMING🔴SLEEP DEPRIVED MUSINGS🔴!socials !manscaped','https://www.twitch.tv/videos/2413822328','20560',0,1,1,NULL,NULL,'2025-03-24 23:00:13','2025-03-28 14:20:05'),(1684,67,'2414455198','2025-03-24 21:39:40','😛 SO @emiru IS COMING OVER TODAY TO TEACH ME LEAGUE OF LEGENDS 😛 I HAVE NEVER PLAYED 😛 I HAVE 0 EXPERIENCE 😛 I DONT WANT TO DO THIS','https://www.twitch.tv/videos/2414455198','4835',0,1,1,NULL,NULL,'2025-03-24 23:00:15','2025-03-28 15:07:38'),(1685,67,'2413841006','2025-03-24 01:51:27','A BIG STORM IS HAPPENING RIGHT NOW, AND I\'M HERE TO ANTAGONIZE YOU.','https://www.twitch.tv/videos/2413841006','6400',0,1,1,NULL,NULL,'2025-03-24 23:00:15','2025-03-28 15:12:56'),(1686,69,'2413848928','2025-03-24 02:02:36','TRIOS 🔴 On that demon time 🔴 !madmonq giveaway that ends tonight 🔴 !GIVEAWAY','https://www.twitch.tv/videos/2413848928','21740',0,1,1,NULL,NULL,'2025-03-24 23:00:15','2025-03-28 15:51:34'),(1687,70,'2414195930','2025-03-24 16:03:32','👷‍♂️ GEILER MANN MACHT GEILE SACHEN 👷‍♂️','https://www.twitch.tv/videos/2414195930','25004',0,1,1,NULL,NULL,'2025-03-24 23:00:16','2025-03-28 16:14:57'),(1688,73,'2414205798','2025-03-24 16:19:12','TWITCH DUO des JAHRES (allein mit den Stimmen)','https://www.twitch.tv/videos/2414205798','17130',0,1,1,NULL,NULL,'2025-03-24 23:00:16','2025-03-28 16:29:59'),(1689,74,'2413971987','2025-03-24 06:23:21','Es ist Montag und wir entspannen uns! | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2413971987','14544',0,1,1,NULL,NULL,'2025-03-24 23:00:17','2025-03-28 16:36:49'),(1690,75,'2414086632','2025-03-24 12:37:09','🟢ES IST DAS JAHR DER RATTE xdd🟢!steelseries','https://www.twitch.tv/videos/2414086632','26000',0,1,1,NULL,NULL,'2025-03-24 23:00:17','2025-03-28 16:54:27'),(1691,76,'2414275830','2025-03-24 17:58:33','hey hey hey','https://www.twitch.tv/videos/2414275830','5670',0,1,1,NULL,NULL,'2025-03-24 23:00:17','2025-03-28 17:03:02'),(1696,78,'2414047293','2025-03-24 10:55:34','Reeee tout le monde, vive la culture !mdf | !zlan !patreon !boutique','https://www.twitch.tv/videos/2414047293','23255',0,1,1,NULL,NULL,'2025-03-24 23:00:18','2025-03-28 17:13:04'),(1697,83,'2414007108','2025-03-24 08:33:01','LE RUGBYPLEX : LE MULTIPLEX RUGBY DES SUPPORTERS @top14 @totalenergies collaboration commerciale','https://www.twitch.tv/videos/2414007108','11120',0,1,1,NULL,NULL,'2025-03-24 23:00:19','2025-03-28 17:26:05'),(1698,88,'2414160456','2025-03-24 15:03:20','@Dye_live GM / 게임플레이 공격성 / Les critiqueurs je vous veux pas sur ce stream TF AURELION SUPP (!patreon)','https://www.twitch.tv/videos/2414160456','14601',0,1,1,NULL,NULL,'2025-03-24 23:00:20','2025-03-28 17:33:54'),(1699,90,'2414505906','2025-03-24 22:44:44','NUELSA 🌚 - bonne soirée la team ?','https://www.twitch.tv/videos/2414505906','936',0,1,1,NULL,NULL,'2025-03-24 23:00:20','2025-03-28 17:48:48'),(1700,90,'2414192909','2025-03-24 16:00:03','SALUTT TTLM !!! comment vous allez ?','https://www.twitch.tv/videos/2414192909','14810',0,1,1,NULL,NULL,'2025-03-24 23:00:20','2025-03-28 17:56:36'),(1702,93,'2414453266','2025-03-24 21:36:54','LE PIRE DUO DE FRANCE VIENT TOUS LES CHOQUER @wipr','https://www.twitch.tv/videos/2414453266','5007',0,1,1,NULL,NULL,'2025-03-24 23:00:21','2025-03-28 18:08:25'),(1703,97,'2414324730','2025-03-24 18:59:58','MATCH DAY | KARMINE CORP [0] vs [0] VALIANT | VCL France 2025 Split 2 - Group Stage | #KCWIN','https://www.twitch.tv/videos/2414324730','14424',0,1,1,NULL,NULL,'2025-03-24 23:00:22','2025-03-28 18:52:37'),(1704,98,'2414051194','2025-03-24 11:05:33','🔴 VALORANT VALORANT VALORANT VALORANT VALORANT VALORANT VALORANT VALORANT','https://www.twitch.tv/videos/2414051194','13612',0,1,1,NULL,NULL,'2025-03-24 23:00:22','2025-03-28 19:09:51'),(1706,100,'2414218586','2025-03-24 16:39:22','Venez voir votre streamer préféré smurf le Radiant !! 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2414218586','22861',0,1,1,NULL,NULL,'2025-03-24 23:00:23','2025-03-28 19:17:32'),(1707,72,'2414376080','2025-03-24 20:00:24','Wie gut ist Gullit? Sein Debut in FUT Champs für\'s Main Team! | !prime !taktik','https://www.twitch.tv/videos/2414376080','24020',0,1,1,NULL,NULL,'2025-03-25 03:00:17','2025-03-28 19:40:34'),(1708,103,'2410663214','2025-03-20 15:45:33','16:00 MINIGOLF ⛳️POTE JA STRIHAM BARBERA A BARBER STRIHA ME✂️!ig !madmonq','https://www.twitch.tv/videos/2410663214','4843',0,1,1,NULL,NULL,'2025-03-25 11:43:39','2025-03-28 19:34:16'),(1709,104,'2413416958','2025-03-23 17:09:20','EVERHOOD 2 NEJLEPŠÍ INDIE HRA NA SVĚTĚ FAKT - IG/X: @Miken_TV','https://www.twitch.tv/videos/2413416958','21486',0,1,1,NULL,NULL,'2025-03-25 11:43:40','2025-03-28 20:09:30'),(1710,104,'2411496129','2025-03-21 15:31:59','PRÁCE POTOM STARCRAFT - IG/X: @Miken_TV','https://www.twitch.tv/videos/2411496129','23213',0,1,1,NULL,NULL,'2025-03-25 11:43:40','2025-03-28 20:24:57'),(1711,104,'2410636553','2025-03-20 14:59:18','ŽÁDNÝ NERVY - FULL FOCUS - PERFECT LOCK IN - ONLY W\'S - IG/X: @Miken_TV','https://www.twitch.tv/videos/2410636553','19047',0,1,1,NULL,NULL,'2025-03-25 11:43:40','2025-03-28 20:40:20'),(1712,104,'2409791776','2025-03-19 14:54:00','ŽÁDNÝ NERVY - FULL FOCUS - PERFECT LOCK IN - ONLY W\'S - IG/X: @Miken_TV','https://www.twitch.tv/videos/2409791776','24649',0,1,1,NULL,NULL,'2025-03-25 11:43:40','2025-03-28 21:10:57'),(1713,104,'2409080612','2025-03-18 17:59:48','ŽÁDNÝ NERVY - FULL FOCUS - PERFECT LOCK IN - ONLY W\'S - IG/X: @Miken_TV','https://www.twitch.tv/videos/2409080612','19852',0,1,1,NULL,NULL,'2025-03-25 11:43:40','2025-03-28 21:28:16'),(1714,1,'2415048664','2025-03-25 16:25:57','🤡 NOVÁ SOULS HRA BERSERKER 🤡 DNES 19:00 R.E.P.O. S @FlygunCZ @HaiseT @Miken @Astatoro @FattyPillow 🤡 TOP DONO BERE BALÍK !box 🤡','https://www.twitch.tv/videos/2415048664','23645',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 21:41:07'),(1715,5,'2414954878','2025-03-25 13:44:21','😈NASKOČ NA CENTRIFUGU MASTODONTIZMU😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2414954878','27190',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 22:04:23'),(1716,7,'2414944522','2025-03-25 13:23:23','Tužka, papír a káva ☕ absolutní chill day 🫠❤️','https://www.twitch.tv/videos/2414944522','10350',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 22:15:49'),(1717,9,'2414878198','2025-03-25 10:46:05','#1 | THE FIRST BERSERKER: KHAZAN 💀👑 | PC MAXIMÁLNÍ DETAILY | PRVNÍ DOJMY Z NOVÉ SOULSLIKE HRY!','https://www.twitch.tv/videos/2414878198','22807',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 22:29:33'),(1718,9,'2414854280','2025-03-25 09:27:53','#1 | THE FIRST BERSERKER: KHAZAN 💀👑 | PC MAXIMÁLNÍ DETAILY | PRVNÍ DOJMY Z NOVÉ SOULSLIKE HRY!','https://www.twitch.tv/videos/2414854280','2066',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 22:31:01'),(1719,9,'2414799461','2025-03-25 06:13:54','#1 | THE FIRST BERSERKER: KHAZAN 💀👑 | PC MAXIMÁLNÍ DETAILY | PRVNÍ DOJMY Z NOVÉ SOULSLIKE HRY!','https://www.twitch.tv/videos/2414799461','9153',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 22:37:12'),(1720,11,'2415106646','2025-03-25 17:46:23','👽 POSLEDNÍ R.E.P.O S KARLEM UZENÁČEM 👽 SCHEDULE I (PLNÁ VERZE) #1 👽','https://www.twitch.tv/videos/2415106646','18820',0,1,1,NULL,NULL,'2025-03-25 23:00:03','2025-03-28 22:56:58'),(1721,16,'2415099783','2025-03-25 17:36:27','⚔️ Návrat seržanta a výcvik Molly⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2415099783','19417',0,1,1,NULL,NULL,'2025-03-25 23:00:04','2025-03-28 23:10:49'),(1722,17,'2415000332','2025-03-25 15:06:44','INTRO🪂17:00 R.E.P.O !sestava🪂využij 50$ na !cryptocom🪂SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2415000332','28400',0,1,1,NULL,NULL,'2025-03-25 23:00:05','2025-03-28 23:37:45'),(1723,19,'2415080096','2025-03-25 17:09:40','DROPS | DBV / 140 gaming','https://www.twitch.tv/videos/2415080096','11667',0,1,1,NULL,NULL,'2025-03-25 23:00:05','2025-03-28 23:47:08'),(1724,20,'2415213806','2025-03-25 19:58:22','Kartičkové království...','https://www.twitch.tv/videos/2415213806','10903',0,1,1,NULL,NULL,'2025-03-25 23:00:05','2025-03-29 00:08:25'),(1726,28,'2415002497','2025-03-25 15:10:32','❗ NOVÉ SOULS LIKE ❗⚔️ KHAZAN: THE FIRST BERSERKER ⚔️','https://www.twitch.tv/videos/2415002497','11792',0,1,1,NULL,NULL,'2025-03-25 23:00:07','2025-03-29 00:16:51'),(1727,29,'2415112667','2025-03-25 17:54:46','TEU OFFICER MYERS | zejtra free !dc !ig !mc','https://www.twitch.tv/videos/2415112667','13977',0,1,1,NULL,NULL,'2025-03-25 23:00:07','2025-03-29 00:35:48'),(1728,32,'2415116494','2025-03-25 17:59:22','Novej parťák: MS Surface PRO 11 Elite X z pohledu kreslíře !kytara !smarty','https://www.twitch.tv/videos/2415116494','17594',0,1,1,NULL,NULL,'2025-03-25 23:00:08','2025-03-29 00:59:04'),(1729,40,'2415119524','2025-03-25 18:02:05','100k Twitch Rivals today! Beating the sweats?','https://www.twitch.tv/videos/2415119524','17884',0,1,1,NULL,NULL,'2025-03-25 23:00:09','2025-03-29 01:17:28'),(1730,41,'2415055872','2025-03-25 16:37:03','!Randomizer for Forza Motorsport 2 - First Playthrough | !mm !ig !peak','https://www.twitch.tv/videos/2415055872','20148',0,1,1,NULL,NULL,'2025-03-25 23:00:10','2025-03-29 01:36:43'),(1731,43,'2415162692','2025-03-25 18:58:20','Paolocannone vincitore della lega pokemon?','https://www.twitch.tv/videos/2415162692','14510',0,1,1,NULL,NULL,'2025-03-25 23:00:10','2025-03-29 01:42:28'),(1732,43,'2414897496','2025-03-25 11:40:28','Paolocanone streamer anche di league of legends','https://www.twitch.tv/videos/2414897496','15177',0,1,1,NULL,NULL,'2025-03-25 23:00:10','2025-03-29 01:52:28'),(1733,44,'2415112219','2025-03-25 17:54:14','#PlayLynked #DreamhavenPartner !Lynked','https://www.twitch.tv/videos/2415112219','7671',0,1,1,NULL,NULL,'2025-03-25 23:00:10','2025-03-29 02:14:11'),(1734,44,'2414747599','2025-03-25 04:04:13','short sniff','https://www.twitch.tv/videos/2414747599','30410',0,1,1,NULL,NULL,'2025-03-25 23:00:10','2025-03-29 03:15:55'),(1735,47,'2415039337','2025-03-25 16:10:48','🔴🔴🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2415039337','24563',0,1,1,NULL,NULL,'2025-03-25 23:00:11','2025-03-29 03:47:24'),(1736,54,'2414925567','2025-03-25 12:45:32','Gremia ain\'t stealing ANYTHING anymore! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2414925567','36880',0,1,1,NULL,NULL,'2025-03-25 23:00:12','2025-03-29 04:27:56'),(1737,58,'2414972028','2025-03-25 14:15:59','GETTING ONE WIN BEFORE ⭐PUBG TWITCH RIVALS TODAY⭐TITLE SCAMMER?⭐EVERYONE WELCOME⭐RARE STREAM⭐MONDAY TOMORROW⭐','https://www.twitch.tv/videos/2414972028','31454',0,1,1,NULL,NULL,'2025-03-25 23:00:13','2025-03-29 04:55:48'),(1738,61,'2415054420','2025-03-25 16:34:43','TURNAROUND TOOOOOOSDAY! Also, I had a call with Mike Morhaime about the Dreamhaven Showcase today I\'m so cool look at- @esfandtv all socials','https://www.twitch.tv/videos/2415054420','23131',0,1,1,NULL,NULL,'2025-03-25 23:00:14','2025-03-29 06:11:56'),(1739,61,'2414625334','2025-03-25 01:05:41','YO! New Game Today! I did Hot Ones Challenge so I might be under duress','https://www.twitch.tv/videos/2414625334','21000',0,1,1,NULL,NULL,'2025-03-25 23:00:14','2025-03-29 06:30:08'),(1740,67,'2415177873','2025-03-25 19:14:26','❗SHOULD I FEEL GUILTY ABOUT WHAT HAPPENED LAST NIGHT? ❗ I HAVE BECOME TRULY LOST ❗ TODAY WE PLAY GAMES AND I FIGHT WITH CHAT MORE ❗ !MADMONQ','https://www.twitch.tv/videos/2415177873','13549',0,1,1,NULL,NULL,'2025-03-25 23:00:15','2025-03-29 07:01:17'),(1741,69,'2414705194','2025-03-25 02:52:05','SOLO 🗡 On that demon time 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2414705194','22680',0,1,1,NULL,NULL,'2025-03-25 23:00:16','2025-03-29 07:32:06'),(1742,70,'2415041533','2025-03-25 16:14:13','👷‍♂️ GEILER MANN MACHT GEILE SACHEN 👷‍♂️','https://www.twitch.tv/videos/2415041533','22088',0,1,1,NULL,NULL,'2025-03-25 23:00:16','2025-03-29 07:43:06'),(1743,74,'2414789767','2025-03-25 05:44:36','!Spenden für den guten Zwecks - The First Berserker: Khazan Tag 1 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2414789767','29519',0,1,1,NULL,NULL,'2025-03-25 23:00:17','2025-03-29 08:14:16'),(1744,75,'2414879527','2025-03-25 10:50:24','🟢LEC wieder ab Samstag 14 Uhr🟢!steelseries','https://www.twitch.tv/videos/2414879527','17242',0,1,1,NULL,NULL,'2025-03-25 23:00:17','2025-03-29 08:29:56'),(1746,78,'2414970599','2025-03-25 14:13:02','ZLAN A FOND avec @wingo | !zlan !patreon !boutique','https://www.twitch.tv/videos/2414970599','23468',0,1,1,NULL,NULL,'2025-03-25 23:00:18','2025-03-29 08:53:22'),(1749,83,'2414841394','2025-03-25 08:42:33','SHAUNZ 🤍💛 TFT ALL MORNINGGGGGGGGG','https://www.twitch.tv/videos/2414841394','8470',0,1,1,NULL,NULL,'2025-03-25 23:00:19','2025-03-29 08:57:12'),(1750,85,'2414977564','2025-03-25 14:26:51','soloQ nomicnocam','https://www.twitch.tv/videos/2414977564','14200',0,1,1,NULL,NULL,'2025-03-25 23:00:19','2025-03-29 09:03:43'),(1751,90,'2415039138','2025-03-25 16:10:28','✨salut ttlm ça va ??','https://www.twitch.tv/videos/2415039138','17850',0,1,1,NULL,NULL,'2025-03-25 23:00:21','2025-03-29 09:20:19'),(1753,93,'2415316067','2025-03-25 22:05:42','duoQ ALL NIGHT @wipr','https://www.twitch.tv/videos/2415316067','3279',0,1,1,NULL,NULL,'2025-03-25 23:00:21','2025-03-29 09:38:25'),(1756,100,'2415115702','2025-03-25 17:58:26','Venez voir votre streamer préféré smurf le Radiant !! 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2415115702','2566',0,1,1,NULL,NULL,'2025-03-25 23:00:23','2025-03-29 09:40:23'),(1757,104,'2414993728','2025-03-25 14:56:48','PUBG POTOM SC2 V 19:00 REPO- IG/X: @Miken_TV','https://www.twitch.tv/videos/2414993728','22340',0,1,1,NULL,NULL,'2025-03-25 23:00:23','2025-03-29 09:53:39'),(1758,1,'2415954296','2025-03-26 17:29:57','🌿DROGOVÝ SIMULÁTOR SCHEDULE I 🌿 TOP DONO BERE BALÍK !box 🌿 MOŽNÝ VEČERNÍ BERSERKER 🌿 DONO = 2x BERSERKER: KHAZAN A 1x TOP D BOX','https://www.twitch.tv/videos/2415954296','19805',0,1,1,NULL,NULL,'2025-03-26 23:00:02','2025-03-29 10:26:07'),(1759,5,'2415819411','2025-03-26 13:57:35','😈LOKOMOTÍVA EPICKÝCH MOMENTOV V POHYBE😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2415819411','27946',0,1,1,NULL,NULL,'2025-03-26 23:00:02','2025-03-29 10:59:30'),(1760,7,'2415794917','2025-03-26 13:09:53','Tužka, papír a káva podruhé ☕ potřebuju odpočinek, dnešek byl zatím velmi hektický 🫠❤️','https://www.twitch.tv/videos/2415794917','9000',0,1,1,NULL,NULL,'2025-03-26 23:00:03','2025-03-29 11:04:27'),(1761,9,'2415634246','2025-03-26 05:34:44','JEDNORUKÝ SOULS VETERÁN VS THE FIRST BERSERKER: KHAZAN | PRVNÍ PRŮCHOD NA PC S MAXIMÁLNÍMI DETAILY!','https://www.twitch.tv/videos/2415634246','43522',0,1,1,NULL,NULL,'2025-03-26 23:00:03','2025-03-29 11:39:50'),(1762,11,'2415921087','2025-03-26 16:44:52','🍃 🍀 KAŽDÝ SUB DOSTANE VZOREK ZDARMA 🍃 🍀 SCHEDULE I #2 🍃 🍀 VIKTOR DUFKA PARADISE 🍃 🍀','https://www.twitch.tv/videos/2415921087','22511',0,1,1,NULL,NULL,'2025-03-26 23:00:03','2025-03-29 11:48:50'),(1763,16,'2416003167','2025-03-26 18:31:59','⚔️ CK Radara 2 ⚔️ Nové Wole ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2416003167','16085',0,1,1,NULL,NULL,'2025-03-26 23:00:04','2025-03-29 12:02:55'),(1764,17,'2415820480','2025-03-26 13:59:26','INTRO🏜️využij 50$ na !cryptocom🏜️Program na IG: @spajkk','https://www.twitch.tv/videos/2415820480','32438',0,1,1,NULL,NULL,'2025-03-26 23:00:05','2025-03-29 12:41:06'),(1765,19,'2415966802','2025-03-26 17:47:30','Večerní srandičky','https://www.twitch.tv/videos/2415966802','10914',0,1,1,NULL,NULL,'2025-03-26 23:00:05','2025-03-29 12:56:20'),(1766,19,'2415680065','2025-03-26 07:59:40','DROPS | Dneska dva marky na DBV?','https://www.twitch.tv/videos/2415680065','16859',0,1,1,NULL,NULL,'2025-03-26 23:00:05','2025-03-29 13:09:05'),(1767,21,'2415950860','2025-03-26 17:25:09','unbanovníkOFC | banka pešo !ggdrop !backpack','https://www.twitch.tv/videos/2415950860','18430',0,1,1,NULL,NULL,'2025-03-26 23:00:06','2025-03-29 13:32:21'),(1769,25,'2415769205','2025-03-26 12:19:50','BOJ SE ZLEM POKRAČUJE! 👊 ZASÍRAČ JDE VYSÍRAT... 👊 SOUTHPARK: THE FRACTURED BUT WHOLE 👊 #2 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2415769205','19378',0,1,1,NULL,NULL,'2025-03-26 23:00:06','2025-03-29 13:53:08'),(1770,27,'2415948990','2025-03-26 17:22:23','AC Shadows, večer KinitoPET 🔴 Den 7: Herního subathonu🔴 | Socials: @Mullersie','https://www.twitch.tv/videos/2415948990','20264',0,1,1,NULL,NULL,'2025-03-26 23:00:07','2025-03-29 19:57:23'),(1771,32,'2415773530','2025-03-26 12:29:14','Road to mandloně vol 2 !auto !koncert','https://www.twitch.tv/videos/2415773530','30163',0,1,1,NULL,NULL,'2025-03-26 23:00:08','2025-04-04 15:41:10'),(1772,33,'2415887208','2025-03-26 15:54:15','Mám šílenou IdleHru náladu a tak si zahrajeme tuhle pecku, kterou jsem vám ještě neukázal | !kniha !elite','https://www.twitch.tv/videos/2415887208','7060',0,1,1,NULL,NULL,'2025-03-26 23:00:08','2025-03-29 20:17:09'),(1773,41,'2415901315','2025-03-26 16:13:56','Hunting all Achievements in NFS Underground [PS2] | !mm !ig !peak','https://www.twitch.tv/videos/2415901315','21854',0,1,1,NULL,NULL,'2025-03-26 23:00:10','2025-03-29 20:39:07'),(1774,43,'2415727683','2025-03-26 10:34:50','Paolocannone ora è adc, ma prima di tutto è una persona vorrebbe parlare con te cosi dai del più e del meno?? OOO MI STAI LEGGENDO???','https://www.twitch.tv/videos/2415727683','44720',0,1,1,NULL,NULL,'2025-03-26 23:00:10','2025-03-29 21:07:22'),(1775,44,'2415655702','2025-03-26 06:38:15','close enough welcome back sekiro (spear/parry/posture build)','https://www.twitch.tv/videos/2415655702','27989',0,1,1,NULL,NULL,'2025-03-26 23:00:10','2025-03-29 22:06:03'),(1776,45,'2415897565','2025-03-26 16:08:07','what is even going on | !onlyfangs','https://www.twitch.tv/videos/2415897565','24723',0,1,1,NULL,NULL,'2025-03-26 23:00:11','2025-03-29 22:42:08'),(1777,48,'2415809378','2025-03-26 13:37:58','OTK MINI SCHOOL - WHO IS THE SMARTEST? @extraemily @emiru @esfandtv @nmplol w/ teacher @itskatchii','https://www.twitch.tv/videos/2415809378','13811',0,1,1,NULL,NULL,'2025-03-26 23:00:11','2025-03-29 22:57:53'),(1778,49,'2415812832','2025-03-26 13:45:05','UPDATE 2.3 LIVE | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2415812832','15723',0,1,1,NULL,NULL,'2025-03-26 23:00:11','2025-03-29 23:06:25'),(1779,54,'2415761908','2025-03-26 12:03:50','That\'s Wild! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2415761908','22815',0,1,1,NULL,NULL,'2025-03-26 23:00:12','2025-03-29 23:39:04'),(1780,57,'2416087620','2025-03-26 20:10:56','🔴(a)WAKE@DAY🔴DOWNTOWN IRL WALKS🔴WABI SABI WALKS🔴TALKING TO STRANGERS (BAD)🔴BRAWLING?🔴SLEEP DEPRIVED MUSINGS🔴!socials !manscaped','https://www.twitch.tv/videos/2416087620','10157',0,1,1,NULL,NULL,'2025-03-26 23:00:13','2025-03-30 00:07:38'),(1781,62,'2415706579','2025-03-26 09:28:00','FUNCLE TIME 🇨🇳 $5/Sub Face Reveal | !bc | $2 tts/tangia @cooksux | Shenzhen, China','https://www.twitch.tv/videos/2415706579','25909',0,1,1,NULL,NULL,'2025-03-26 23:00:14','2025-03-30 00:35:06'),(1782,70,'2415877101','2025-03-26 15:36:43','👷‍♂️ GEILER MANN MACHT GEILE SACHEN 👷‍♂️','https://www.twitch.tv/videos/2415877101','12750',0,1,1,NULL,NULL,'2025-03-26 23:00:16','2025-03-30 00:35:44'),(1783,74,'2415683096','2025-03-26 08:09:02','!Spenden für den guten Zwecks - The First Berserker: Khazan Tag 2 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2415683096','21542',0,1,1,NULL,NULL,'2025-03-26 23:00:17','2025-03-30 01:01:25'),(1784,75,'2415718307','2025-03-26 10:05:37','🟢GIRLYFLEX MIT NEUER TRUPPE🟢!steelseries','https://www.twitch.tv/videos/2415718307','31700',0,1,1,NULL,NULL,'2025-03-26 23:00:17','2025-03-30 01:30:23'),(1785,78,'2416025119','2025-03-26 18:59:31','Maitre des Fleurs avec @Anaee !mdf | !zlan !patreon !boutique','https://www.twitch.tv/videos/2416025119','13891',0,1,1,NULL,NULL,'2025-03-26 23:00:18','2025-03-30 01:48:16'),(1788,83,'2415701417','2025-03-26 09:10:12','SHAUNZ 🤍💛 entraînement 100% FLEXIBLE 100% PLASTIQUE 100% POTENTIEL MAX','https://www.twitch.tv/videos/2415701417','7650',0,1,1,NULL,NULL,'2025-03-26 23:00:19','2025-03-30 01:50:13'),(1789,86,'2415861353','2025-03-26 15:10:12','🔴ARENA FULL PLAISIR = LE MEILLEUR MODE🔴','https://www.twitch.tv/videos/2415861353','13108',0,1,1,NULL,NULL,'2025-03-26 23:00:19','2025-03-30 01:57:54'),(1790,88,'2415854851','2025-03-26 15:00:20','@Dye_live GM / ENCORE DU FUN APRES 15 ANS DE JEU , COMMENT FAIT IL ? (!patreon)','https://www.twitch.tv/videos/2415854851','16149',0,1,1,NULL,NULL,'2025-03-26 23:00:20','2025-03-30 02:08:37'),(1791,90,'2415965589','2025-03-26 17:45:47','COUCOU MES BESTIESSSSSSSSSS ! 😊','https://www.twitch.tv/videos/2415965589','18873',0,1,1,NULL,NULL,'2025-03-26 23:00:20','2025-03-30 03:11:57'),(1794,104,'2415925194','2025-03-26 16:51:12','STARCRAFT TERRAN BRUTAL PUMPA - IG/X: @Miken_TV','https://www.twitch.tv/videos/2415925194','18244',0,1,1,NULL,NULL,'2025-03-26 23:00:23','2025-03-30 03:03:40'),(1795,18,'2415856151','2025-03-26 15:01:53','CS2 HOKEJOVÝ FACEIT VEČER + OPENING CASES BATTLE S NEČIM + KAULYM 🥳 STARTUJE AKCE !AWP 🥳 !shop','https://www.twitch.tv/videos/2415856151','29300',0,1,1,NULL,NULL,'2025-03-26 23:23:01','2025-03-30 03:38:51'),(1796,67,'2416091764','2025-03-26 20:16:00','❗THINGS ARE ABOUT TO CHANGE HERE ❗ W33D ALL DAY, CAUSE THAT\'S WHAT I N33D ALL DAY ❗CYRFM RADIO IF YOU WANT !media❗ !DISCORD !MADMONQ','https://www.twitch.tv/videos/2416091764','24256',0,1,1,NULL,NULL,'2025-03-27 03:00:16','2025-03-30 04:18:32'),(1797,72,'2416168846','2025-03-26 21:53:35','Flanken Meta zurück? Wir üben beim Rivals Grind! | !prime !taktik','https://www.twitch.tv/videos/2416168846','13420',0,1,1,NULL,NULL,'2025-03-27 03:00:17','2025-03-30 04:17:11'),(1798,72,'2416077489','2025-03-26 20:00:38','Flanken Meta zurück? Wir üben beim Rivals Grind! | !prime !taktik','https://www.twitch.tv/videos/2416077489','6720',0,1,1,NULL,NULL,'2025-03-27 03:00:17','2025-03-30 04:23:09'),(1799,1,'2416870756','2025-03-27 18:33:55','🧪 OPĚT DEALUJI DOBRŮTKY VE SCHEDULE I 🧪 ','https://www.twitch.tv/videos/2416870756','25856',0,1,1,NULL,NULL,'2025-03-28 10:01:26','2025-03-30 05:01:18'),(1800,5,'2416684937','2025-03-27 13:54:50','😈BEZPROSTREDNÉ KONŠTALOVANÁ ZÁBAVA NA MIERU😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2416684937','28638',0,1,1,NULL,NULL,'2025-03-28 10:01:27','2025-03-30 05:32:30'),(1801,7,'2416869701','2025-03-27 18:32:33','19:30 JSEM ZDE, POE 2 livestream je v 8! ⭐','https://www.twitch.tv/videos/2416869701','8387',0,1,1,NULL,NULL,'2025-03-28 10:01:27','2025-03-30 05:45:54'),(1802,7,'2416688834','2025-03-27 14:00:08','Ahoooj ❤️ zkusíme to asijský Sims (inZoi) demo creatoru, a ve 20:00 POE 2 livestream! ⭐','https://www.twitch.tv/videos/2416688834','11266',0,1,1,NULL,NULL,'2025-03-28 10:01:27','2025-03-30 05:56:09'),(1803,7,'2416657192','2025-03-27 13:04:32','Ahoooj ❤️ zkusíme to asijský Sims (inZoi) demo creatoru, a ve 20:00 POE 2 livestream! ⭐','https://www.twitch.tv/videos/2416657192','3261',0,1,1,NULL,NULL,'2025-03-28 10:01:27','2025-03-30 05:57:48'),(1804,9,'2416508735','2025-03-27 05:57:06','#3 | THE FIRST BERSERKER: KHAZAN 💀👑 | PC MAXIMÁLNÍ DETAILY | PRVNÍ PRŮCHOD | @PATRIKTURIOFFICIAL','https://www.twitch.tv/videos/2416508735','53073',0,1,1,NULL,NULL,'2025-03-28 10:01:27','2025-03-30 06:50:43'),(1805,11,'2416856803','2025-03-27 18:15:49','🤱🏼SPY PARTY W/ HAISET 🤱🏼SCHEDULE I #2 S MEDIASHAREM 🤱🏼','https://www.twitch.tv/videos/2416856803','25432',0,1,1,NULL,NULL,'2025-03-28 10:01:28','2025-03-30 07:14:14'),(1806,16,'2416825330','2025-03-27 17:36:26','⚔️ 20:00 R.E.P.O. /w @Domsoncz @Freezecz a spol. ⚔️ GTA RP? ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2416825330','19720',0,1,1,NULL,NULL,'2025-03-28 10:01:29','2025-03-30 07:27:01'),(1807,17,'2416963212','2025-03-27 20:23:25','RUST FRESH WIPE s Goesss🏔️využij 50$ na !cryptocom🏔️Program na IG: @spajkk','https://www.twitch.tv/videos/2416963212','11270',0,1,1,NULL,NULL,'2025-03-28 10:01:29','2025-03-30 07:38:18'),(1808,17,'2416703019','2025-03-27 14:26:08','RUST FRESH WIPE /w goes🏔️využij 50$ na !cryptocom🏔️Program na IG: @spajkk','https://www.twitch.tv/videos/2416703019','17850',0,1,1,NULL,NULL,'2025-03-28 10:01:29','2025-03-30 07:49:12'),(1809,19,'2416865496','2025-03-27 18:27:23','Sleva na gifty? PauseChamp tak markneme 140? PauseChamp','https://www.twitch.tv/videos/2416865496','13428',0,1,1,NULL,NULL,'2025-03-28 10:01:29','2025-03-30 07:58:25'),(1810,19,'2416569241','2025-03-27 09:13:50','LT content','https://www.twitch.tv/videos/2416569241','11009',0,1,1,NULL,NULL,'2025-03-28 10:01:29','2025-03-30 08:04:19'),(1811,20,'2416942711','2025-03-27 19:59:54','Lov příšer v japonském stylu...','https://www.twitch.tv/videos/2416942711','14220',0,1,1,NULL,NULL,'2025-03-28 10:01:30','2025-03-30 08:15:41'),(1812,21,'2416858198','2025-03-27 18:17:38','19:00 ústí simulátor !ggdrop !backpack','https://www.twitch.tv/videos/2416858198','29540',0,1,1,NULL,NULL,'2025-03-28 10:01:30','2025-03-30 08:52:41'),(1813,28,'2416767415','2025-03-27 16:13:58','TRHÁNÍ PRDℇLÍ RP™ | KHAZAN: THE FIRST BERSERKER','https://www.twitch.tv/videos/2416767415','13116',0,1,1,NULL,NULL,'2025-03-28 10:01:32','2025-03-30 09:07:24'),(1814,30,'2416605497','2025-03-27 11:06:46','Milujem ZIVOT, cize nebudem hrat VIVAT SLOVAKIA ⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2416605497','10690',0,1,1,NULL,NULL,'2025-03-28 10:01:32','2025-03-30 09:14:47'),(1815,31,'2416912804','2025-03-27 19:23:53','TAK JAK TO TEDA JE? GHOST, NEBO SHADOWS? | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2416912804','11465',0,1,1,NULL,NULL,'2025-03-28 10:01:32','2025-03-30 09:21:56'),(1816,31,'2416611490','2025-03-27 11:23:22','TAK JAK TO TEDA JE? GHOST, NEBO SHADOWS? | !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2416611490','28786',0,1,1,NULL,NULL,'2025-03-28 10:01:32','2025-03-30 09:51:05'),(1817,32,'2416852065','2025-03-27 18:09:31','Strašidelná Pacifická jízda ... česky. !kytara','https://www.twitch.tv/videos/2416852065','20066',0,1,1,NULL,NULL,'2025-03-28 10:01:33','2025-03-30 10:13:59'),(1818,40,'2416724282','2025-03-27 15:03:48','Games and shit!','https://www.twitch.tv/videos/2416724282','20952',0,1,1,NULL,NULL,'2025-03-28 10:01:34','2025-03-30 10:04:30'),(1819,43,'2416750501','2025-03-27 15:49:19','Ok...va bene siamo in LIT...ok tryharderò...ok farà un po\' impressione vedere il mio autismo...va bene cosi','https://www.twitch.tv/videos/2416750501','9300',0,1,1,NULL,NULL,'2025-03-28 10:01:35','2025-03-30 10:15:16'),(1820,43,'2416749755','2025-03-27 15:48:04','Ok...va bene siamo in LIT...ok tryharderò...ok farà un po\' impressione vedere il mio autismo...va bene cosi','https://www.twitch.tv/videos/2416749755','40',0,1,1,NULL,NULL,'2025-03-28 10:01:35','2025-03-30 10:15:19'),(1821,43,'2416623160','2025-03-27 11:54:30','Ok...va bene siamo in LIT...ok tryharderò...ok farà un po\' impressione vedere il mio autismo...va bene cosi','https://www.twitch.tv/videos/2416623160','13889',0,1,1,NULL,NULL,'2025-03-28 10:01:35','2025-03-30 10:22:21'),(1822,44,'2416488557','2025-03-27 05:04:47','the game is good (spear posture build)','https://www.twitch.tv/videos/2416488557','18434',0,1,1,NULL,NULL,'2025-03-28 10:01:35','2025-03-30 11:00:02'),(1823,45,'2416758223','2025-03-27 16:00:33','Darkst dungeon ALL DAY. | !onlyfangs','https://www.twitch.tv/videos/2416758223','31130',0,1,1,NULL,NULL,'2025-03-28 10:01:35','2025-03-30 11:53:15'),(1824,46,'2416616287','2025-03-27 11:36:19','SKI STREAM ⛷️ Ft. @Yabbe @Velcuz','https://www.twitch.tv/videos/2416616287','14776',0,1,1,NULL,NULL,'2025-03-28 10:01:36','2025-03-30 12:05:48'),(1825,46,'2416547334','2025-03-27 08:00:48','WE HAVE ARRIVED IN ÅRE! WILL TRY MY FIRST SLOPE STREAM TOMORROW; MIGHT BE ON VELCUZ CHANNEL TODAY ⛷️','https://www.twitch.tv/videos/2416547334','17',0,1,1,NULL,NULL,'2025-03-28 10:01:36','2025-03-30 12:05:51'),(1826,47,'2416712792','2025-03-27 14:44:54','🔴@wakewilder testing Norwegian products🔴Prepping for Ren Fair 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2416712792','32395',0,1,1,NULL,NULL,'2025-03-28 10:01:36','2025-03-30 12:36:46'),(1827,49,'2416764771','2025-03-27 16:09:48','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2416764771','14241',0,1,1,NULL,NULL,'2025-03-28 10:01:37','2025-03-30 12:46:17'),(1828,54,'2416654172','2025-03-27 13:00:05','The Video Games :0 | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2416654172','21647',0,1,1,NULL,NULL,'2025-03-28 10:01:37','2025-03-30 13:07:57'),(1829,58,'2416608612','2025-03-27 11:15:17','SURVIVING THURSDAY⭐TITLE = SCANNED⭐EVERYONE WELCOME⭐ OVER A MONTH SMOKE FREE ⭐ NEW AI VOICE','https://www.twitch.tv/videos/2416608612','11840',0,1,1,NULL,NULL,'2025-03-28 10:01:38','2025-03-30 13:09:56'),(1830,62,'2416505404','2025-03-27 05:47:56','FUNCLE TIME 🇨🇳 Let’s Explore | !bc | $2 tts/tangia @cooksux | Shenzhen, China','https://www.twitch.tv/videos/2416505404','25909',0,1,1,NULL,NULL,'2025-03-28 10:01:39','2025-03-30 14:04:32'),(1831,67,'2416878908','2025-03-27 18:44:58','❗PLEASE STOP CALLIN ME THAT GUY FROM THE BIG LEBOWSKI❗ 5 GIFTED SUBS IS OMEGA CHEAP RIGHT NOW ❗ MADMONQ ❗TOONTOWN LATER 1ST TIME ❗ DISCORD','https://www.twitch.tv/videos/2416878908','17060',0,1,1,NULL,NULL,'2025-03-28 10:01:41','2025-03-30 14:29:35'),(1832,69,'2416528527','2025-03-27 06:58:01','CLASH IS BACK 🗡 UPDATE IS HERE 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2416528527','1932',0,1,1,NULL,NULL,'2025-03-28 10:01:41','2025-03-30 14:30:38'),(1833,69,'2416332354','2025-03-27 01:06:54','SOLO 🗡 UPDATE IS HERE 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2416332354','20440',0,1,1,NULL,NULL,'2025-03-28 10:01:41','2025-03-30 14:50:42'),(1834,70,'2416762311','2025-03-27 16:05:53','👷‍♂️ GEILER MANN MACHT GEILE SACHEN 👷‍♂️','https://www.twitch.tv/videos/2416762311','18580',0,1,1,NULL,NULL,'2025-03-28 10:01:41','2025-03-30 15:10:48'),(1835,72,'2416943383','2025-03-27 20:00:23','Crosses are back! SBC\'s, Evo - Trading Talk, WL Quali uvm. | !prime !taktik','https://www.twitch.tv/videos/2416943383','21300',0,1,1,NULL,NULL,'2025-03-28 10:01:42','2025-03-30 15:31:28'),(1836,73,'2416696182','2025-03-27 14:12:35','REACT, TALK & dann VR - Gaming ist ein Teil von mir, ich bin GAMER','https://www.twitch.tv/videos/2416696182','8190',0,1,1,NULL,NULL,'2025-03-28 10:01:42','2025-03-30 15:45:03'),(1837,74,'2416501479','2025-03-27 05:37:11','!Spenden für den guten Zwecks - The First Berserker: Khazan Tag 3 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2416501479','28024',0,1,1,NULL,NULL,'2025-03-28 10:01:43','2025-03-30 16:03:53'),(1838,75,'2416581613','2025-03-27 09:56:27','🟢FLEXQ & 15 UHR NOXUS QUIZ VON @TWOSTONELOL🟢!holzkern','https://www.twitch.tv/videos/2416581613','32720',0,1,1,NULL,NULL,'2025-03-28 10:01:43','2025-03-30 16:32:18'),(1840,78,'2416662574','2025-03-27 13:15:03','NINTENDO DIRECT HYPE | !zlan !patreon !boutique','https://www.twitch.tv/videos/2416662574','33334',0,1,1,NULL,NULL,'2025-03-28 10:01:43','2025-03-30 16:58:51'),(1846,83,'2416561693','2025-03-27 08:49:48','SHAUNZ 🤍💛 jeudi TFT sur le PBE = j\'aime bien','https://www.twitch.tv/videos/2416561693','9330',0,1,1,NULL,NULL,'2025-03-28 10:01:45','2025-03-30 17:01:12'),(1847,86,'2416772723','2025-03-27 16:22:19','🔴NASUS JUNGLE 5v5 RANK🔴19H DECOUVERTE DE WARZONE AVEC CHOWH1🔴!holy = -5€/-10% !displate = Reduc','https://www.twitch.tv/videos/2416772723','14555',0,1,1,NULL,NULL,'2025-03-28 10:01:45','2025-03-30 17:18:35'),(1848,88,'2416715515','2025-03-27 14:50:05','@Dye_live GM / REPRISE DE NINI LA GOAT (!patreon)','https://www.twitch.tv/videos/2416715515','16308',0,1,1,NULL,NULL,'2025-03-28 10:01:46','2025-03-30 17:27:42'),(1849,90,'2416798281','2025-03-27 17:00:24','salut ttlm cc hola ciao','https://www.twitch.tv/videos/2416798281','23830',0,1,1,NULL,NULL,'2025-03-28 10:01:47','2025-03-30 17:42:54'),(1852,97,'2416755240','2025-03-27 15:56:46','WATCHPARTY - TH vs. APK - VCT EMEA 2025 Stage 1','https://www.twitch.tv/videos/2416755240','18752',0,1,1,NULL,NULL,'2025-03-28 10:01:48','2025-03-30 18:00:20'),(1853,98,'2416601415','2025-03-27 10:56:53','🔴 IMAGINE TU RAGES SUR VALORANT PEGI 3','https://www.twitch.tv/videos/2416601415','17965',0,1,1,NULL,NULL,'2025-03-28 10:01:48','2025-03-30 18:11:56'),(1855,100,'2416957456','2025-03-27 20:16:03','Venez voir votre streamer préféré smurf le Radiant !! 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2416957456','14733',0,1,1,NULL,NULL,'2025-03-28 10:01:49','2025-03-30 18:30:56'),(1856,100,'2416777840','2025-03-27 16:30:29','Venez voir votre streamer préféré smurf le Radiant !! 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2416777840','9193',0,1,1,NULL,NULL,'2025-03-28 10:01:49','2025-03-30 18:37:37'),(1857,104,'2416741631','2025-03-27 15:33:42','HRAJEME GTA 6 - IG/X: @Miken_TV','https://www.twitch.tv/videos/2416741631','21259',0,1,1,NULL,NULL,'2025-03-28 10:01:50','2025-03-30 18:56:10'),(1858,1,'2417747866','2025-03-28 18:50:56','🦽 RIP MOJE ZÁDA 🦽 SCHEDULE I 🦽 TOP DONO BERE BALÍK !box (POSLEDNÍCH 5) 🦽 35% SLEVA NA GIFT SUBY 🦽 DONO = 2x BERSERKER KHAZAN 🦽','https://www.twitch.tv/videos/2417747866','14946',0,1,1,NULL,NULL,'2025-03-28 23:00:02','2025-03-30 19:33:09'),(1859,7,'2417542176','2025-03-28 13:48:45','Zakázkyy! ❤️ + 35% sleva na suby ⭐ OH BOY 🫠 start cca 14:40','https://www.twitch.tv/videos/2417542176','15570',0,1,1,NULL,NULL,'2025-03-28 23:00:03','2025-03-30 19:48:12'),(1860,9,'2417387849','2025-03-28 06:56:22','LEVEL 14 WARLOCK 🔥😈 | #3 | WOW CLASSIC HARDCORE | SMRT = SMAZÁNÍ POSTAVY | OFICIÁLNÍ HC !SERVER','https://www.twitch.tv/videos/2417387849','42843',0,1,1,NULL,NULL,'2025-03-28 23:00:03','2025-03-30 20:33:55'),(1861,11,'2417680384','2025-03-28 17:23:53','🍄 !SHAKES LEGENDÁRNÍ PODZEMÍ #AD 🍄 POŘÁDNÁ DÁVKA SCHEDULE I 🌲 💊 DNES WAREHOUSE? 🌲 💊 GOLF NEBUDE 🌲 💊 MEDIASHARE ZAPNUT 🌲 💊','https://www.twitch.tv/videos/2417680384','20170',0,1,1,NULL,NULL,'2025-03-28 23:00:03','2025-03-30 20:49:00'),(1862,17,'2417591310','2025-03-28 15:12:49','INTRO💡využij 50$ na !cryptocom💡víkend kvalifikace na LAN !valorant💡','https://www.twitch.tv/videos/2417591310','28035',0,1,1,NULL,NULL,'2025-03-28 23:00:05','2025-03-30 21:02:09'),(1863,18,'2417699029','2025-03-28 17:49:59','PUBG HARD NIGHT, ZA KAŽDEJ NEPOSTUP DO TOP20 - 5 SUBS DO CHATU 🥳 SLEVA NA SUBS 35% + STARTUJE AKCE !AWP 🥳 !shop !soutez !casehug','https://www.twitch.tv/videos/2417699029','17160',0,1,1,NULL,NULL,'2025-03-28 23:00:05','2025-03-30 21:21:10'),(1864,19,'2417686840','2025-03-28 17:32:49','DBV marky - začátek 89,95 % | do konce víkendu sleva na 5+ giftů','https://www.twitch.tv/videos/2417686840','9379',0,1,1,NULL,NULL,'2025-03-28 23:00:05','2025-03-30 21:26:16'),(1865,19,'2417432174','2025-03-28 09:21:38','Sleva na gifty a nejhorší LT gameplay na Twitchi, to dává smysl.','https://www.twitch.tv/videos/2417432174','10501',0,1,1,NULL,NULL,'2025-03-28 23:00:05','2025-03-30 21:36:27'),(1866,20,'2417807025','2025-03-28 19:58:32','Bazén a žádné schody, co mi to jen připomíná... / #RTXOn #DLSS','https://www.twitch.tv/videos/2417807025','10893',0,1,1,NULL,NULL,'2025-03-28 23:00:05','2025-03-30 22:03:20'),(1867,21,'2417688777','2025-03-28 17:35:32','Banka pěšo? SLEVA NA GIFLE SUBY WOWWWW !ggdrop !backpack','https://www.twitch.tv/videos/2417688777','19473',0,1,1,NULL,NULL,'2025-03-28 23:00:06','2025-03-30 22:33:50'),(1868,25,'2417501738','2025-03-28 12:30:25','MÁTE KOČKU NA STROMĚ? 👊 ROZBITÁ PRDELNÍ DÍRA ZACHRAŇUJE MĚSTO 👊 SOUTHPARK: THE FRACTURED BUT WHOLE 👊 #3 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2417501738','24866',0,1,1,NULL,NULL,'2025-03-28 23:00:06','2025-03-30 22:57:55'),(1869,27,'2417679604','2025-03-28 17:22:42','💀 Horrorovka na oběd? Proč ne 🔴 Den 9: Herního subathonu🔴 | Socials: @Mullersie','https://www.twitch.tv/videos/2417679604','20245',0,1,1,NULL,NULL,'2025-03-28 23:00:07','2025-03-31 00:57:20'),(1870,28,'2417638771','2025-03-28 16:27:04','NEMÁM KALHOTY™ / RYCHLEJ STREAM','https://www.twitch.tv/videos/2417638771','7475',0,1,1,NULL,NULL,'2025-03-28 23:00:07','2025-03-31 01:14:08'),(1871,29,'2417694785','2025-03-28 17:44:02','CAU | zejtra VOLNO !dc !ig !mc','https://www.twitch.tv/videos/2417694785','18965',0,1,1,NULL,NULL,'2025-03-28 23:00:07','2025-03-31 01:46:36'),(1872,30,'2417476049','2025-03-28 11:31:40','Ideme spraviť trofej na SPLIT FICTION s @evzeniss 😡 ELDI MA HACKOL AKO EVZENA GG⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2417476049','4763',0,1,1,NULL,NULL,'2025-03-28 23:00:07','2025-03-31 01:50:31'),(1873,30,'2417439983','2025-03-28 09:48:01','Ideme spraviť trofej na SPLIT FICTION s @evzeniss 😡 URCITE NEBUDEME PO SEBE KRICAT⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2417439983','4621',0,1,1,NULL,NULL,'2025-03-28 23:00:07','2025-03-31 02:05:02'),(1874,32,'2417586157','2025-03-28 15:04:22','Aka no Beru - chan !kytara','https://www.twitch.tv/videos/2417586157','13254',0,1,1,NULL,NULL,'2025-03-28 23:00:08','2025-03-31 02:12:55'),(1875,33,'2417612257','2025-03-28 15:48:06','Suby ve slevě! A můj matroš taky. Dáš si? | !kniha !elite','https://www.twitch.tv/videos/2417612257','8139',0,1,1,NULL,NULL,'2025-03-28 23:00:08','2025-03-31 02:18:06'),(1876,40,'2417584029','2025-03-28 15:01:24','Games and shit!','https://www.twitch.tv/videos/2417584029','21944',0,1,1,NULL,NULL,'2025-03-28 23:00:09','2025-03-31 02:29:07'),(1877,43,'2417478306','2025-03-28 11:37:37','PROPLAYER PAOLOCANNONE','https://www.twitch.tv/videos/2417478306','23836',0,1,1,NULL,NULL,'2025-03-28 23:00:10','2025-03-31 02:52:07'),(1878,43,'2417476299','2025-03-28 11:32:25','PROPLAYER PAOLOCANNONE','https://www.twitch.tv/videos/2417476299','245',0,1,1,NULL,NULL,'2025-03-28 23:00:10','2025-03-31 02:52:16'),(1879,43,'2417469757','2025-03-28 11:15:06','PROPLAYER PAOLOCANNONE','https://www.twitch.tv/videos/2417469757','1010',0,1,1,NULL,NULL,'2025-03-28 23:00:10','2025-03-31 02:52:28'),(1880,44,'2417354709','2025-03-28 05:22:07','YIPPEEEEEEEEE (spear posture build)','https://www.twitch.tv/videos/2417354709','28672',0,1,1,NULL,NULL,'2025-03-28 23:00:10','2025-03-31 03:46:10'),(1881,45,'2417644556','2025-03-28 16:35:30','Gamer does some gaming things in games | !onlyfangs','https://www.twitch.tv/videos/2417644556','23080',0,1,1,NULL,NULL,'2025-03-28 23:00:10','2025-03-31 04:22:02'),(1882,46,'2417765850','2025-03-28 19:09:43','TACO & BOOZE FRIDAY 🌮 FT. @YABBE @VELCUZ @DIVVITY','https://www.twitch.tv/videos/2417765850','13828',0,1,1,NULL,NULL,'2025-03-28 23:00:11','2025-03-31 04:44:58'),(1883,47,'2417634389','2025-03-28 16:20:16','🔴TODAY: @wakewilder testing Norwegian products after lifting 🔴 Prepping for Ren Fair this weekend 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2417634389','23995',0,1,1,NULL,NULL,'2025-03-28 23:00:11','2025-03-31 05:41:06'),(1884,49,'2417591351','2025-03-28 15:12:52','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2417591351','17475',0,1,1,NULL,NULL,'2025-03-28 23:00:12','2025-03-31 05:55:31'),(1885,54,'2417475346','2025-03-28 11:29:58','What the HELL is an ENA!? | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2417475346','30806',0,1,1,NULL,NULL,'2025-03-28 23:00:12','2025-03-31 06:26:30'),(1886,62,'2417580308','2025-03-28 14:56:21','FUNCLE IRL 🇭🇰 Hotel Build AMA | !bc | $2 tts/tangia @cooksux | Hong Kong','https://www.twitch.tv/videos/2417580308','10636',0,1,1,NULL,NULL,'2025-03-28 23:00:15','2025-03-31 06:44:03'),(1887,62,'2417331568','2025-03-28 04:30:12','FUNCLE IRL 🇨🇳 Shenzhen Toy Treasure Tour | !bc | $2 tts/tangia @cooksux | Shenzhen, China','https://www.twitch.tv/videos/2417331568','25767',0,1,1,NULL,NULL,'2025-03-28 23:00:15','2025-03-31 07:33:53'),(1888,67,'2417749273','2025-03-28 18:52:43','BREAKING❗LETTING MY CHAT MAKE FUN OF ME ❗ 3K SUBS AND FEELING CONFIDENT ❗ PLAYING SOME ATOMFALL!','https://www.twitch.tv/videos/2417749273','13080',0,1,1,NULL,NULL,'2025-03-28 23:00:16','2025-03-31 07:57:25'),(1889,74,'2417377668','2025-03-28 06:24:22','Die Sucht hat kein Ende! - The First Berserker: Khazan Tag 4 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2417377668','25876',0,1,1,NULL,NULL,'2025-03-28 23:00:17','2025-03-31 08:12:46'),(1890,76,'2417713454','2025-03-28 18:05:46','Wie gehts hier weiter?','https://www.twitch.tv/videos/2417713454','5970',0,1,1,NULL,NULL,'2025-03-28 23:00:18','2025-03-31 09:53:37'),(1896,83,'2417422956','2025-03-28 08:53:04','SHAUNZ 🤍💛 le set 14 est banger bravo à tous on a rien pu faire','https://www.twitch.tv/videos/2417422956','8720',0,1,1,NULL,NULL,'2025-03-28 23:00:19','2025-03-31 08:23:48'),(1897,88,'2417571261','2025-03-28 14:40:19','@Dye_live GM / PICK SURPRISE #GARDEAVOUS (!patreon)','https://www.twitch.tv/videos/2417571261','16691',0,1,1,NULL,NULL,'2025-03-28 23:00:20','2025-03-31 08:33:48'),(1898,90,'2417650105','2025-03-28 16:43:51','🌸 HEY COMMENT TU VAS ???? (lec demain 13H)','https://www.twitch.tv/videos/2417650105','21040',0,1,1,NULL,NULL,'2025-03-28 23:00:21','2025-03-31 08:45:18'),(1900,98,'2417460880','2025-03-28 10:52:51','🔴 VALORANT LE MEILLEUR JEU DU MONDE PAS VRAI ? :)','https://www.twitch.tv/videos/2417460880','13421',0,1,1,NULL,NULL,'2025-03-28 23:00:23','2025-03-31 08:59:08'),(1902,100,'2417675315','2025-03-28 17:16:39','Venez voir votre streamer préféré smurf le Radiant !! 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2417675315','20624',0,1,1,NULL,NULL,'2025-03-28 23:00:23','2025-03-31 09:28:28'),(1903,104,'2417589734','2025-03-28 15:10:13','GTA 6 POKRAČOVÁNÍ POTOM SC2 PUMPA - IG/X: @Miken_TV','https://www.twitch.tv/videos/2417589734','16762',0,1,1,NULL,NULL,'2025-03-28 23:00:24','2025-03-31 09:40:30'),(1904,72,'2417809308','2025-03-28 20:00:29','Dreamchasers Team 2 - SBC\'s, Evo & Invest Talk, Cup uvm. | !prime !taktik','https://www.twitch.tv/videos/2417809308','19260',0,1,1,NULL,NULL,'2025-03-29 03:00:16','2025-03-31 09:49:20'),(1907,1,'2418750049','2025-03-29 19:49:00','😡 BERSERKER: KHAZAN (EXTRÉM BOSSOVÉ) 😡 DONA 25KČ 😡 TOP DONO BERE BALÍK !box (POSLEDNÍ 4) 😡 35% SLEVA NA SUBY 😡 DONO = 2x BERSERKER PC','https://www.twitch.tv/videos/2418750049','11463',0,1,1,NULL,NULL,'2025-03-29 23:00:03','2025-03-31 10:23:50'),(1908,9,'2418278909','2025-03-29 06:14:52','LEVEL 12 HUNTER 🦉🏹 | #3 | WOW CLASSIC HARDCORE | !SMRT = SMAZÁNÍ POSTAVY | OFICIÁLNÍ HC !SERVER','https://www.twitch.tv/videos/2418278909','42363',0,1,1,NULL,NULL,'2025-03-29 23:00:04','2025-03-31 11:12:25'),(1909,17,'2418787786','2025-03-29 20:29:39','GENK RP Eduardo Soto☠️RAID DÍLNY, ÚNOS, KROPKY☠️využij 50$ na !cryptocom☠️víkend kvalifikace na LAN !valorant☠️','https://www.twitch.tv/videos/2418787786','9026',0,1,1,NULL,NULL,'2025-03-29 23:00:05','2025-03-31 11:34:36'),(1910,17,'2418556069','2025-03-29 15:56:20','👑 Road to Comic-Con Prague 2025 | TOP 4 týmy | !turnaj !finale !samsung !smarty','https://www.twitch.tv/videos/2418556069','16210',0,1,1,NULL,NULL,'2025-03-29 23:00:05','2025-03-31 11:44:05'),(1911,19,'2418540209','2025-03-29 15:33:40','Víkendík je tu','https://www.twitch.tv/videos/2418540209','15886',0,1,1,NULL,NULL,'2025-03-29 23:00:06','2025-03-31 11:53:52'),(1912,20,'2418761325','2025-03-29 20:00:35','Chill, válka a špatné rozhodnutí...','https://www.twitch.tv/videos/2418761325','10771',0,1,1,NULL,NULL,'2025-03-29 23:00:06','2025-03-31 12:11:14'),(1913,21,'2418610664','2025-03-29 17:06:21','Dukie Pookie !ggdrop !backpack','https://www.twitch.tv/videos/2418610664','21226',0,1,1,NULL,NULL,'2025-03-29 23:00:07','2025-03-31 12:31:53'),(1914,29,'2418677747','2025-03-29 18:28:14','VČEREJŠÍ SRANDY SE NA MĚ PODEPSALY | zejtra VOLNO !dc !ig !mc','https://www.twitch.tv/videos/2418677747','16314',0,1,1,NULL,NULL,'2025-03-29 23:00:08','2025-03-31 12:52:36'),(1915,32,'2418665034','2025-03-29 18:12:25','Lego formule!!! a Brushpen Busking. Je 35% sleva na 5+ gifted subs !BB !kytara','https://www.twitch.tv/videos/2418665034','17264',0,1,1,NULL,NULL,'2025-03-29 23:00:09','2025-03-31 13:09:59'),(1916,33,'2418532217','2025-03-29 15:21:46','Suby ve slevě! Dnes kupujeme novou budovu a děláme nový matroš!| !kniha !elite','https://www.twitch.tv/videos/2418532217','9573',0,1,1,NULL,NULL,'2025-03-29 23:00:09','2025-03-31 13:20:25'),(1917,40,'2418518719','2025-03-29 15:02:30','Games and shit!','https://www.twitch.tv/videos/2418518719','21556',0,1,1,NULL,NULL,'2025-03-29 23:00:11','2025-03-31 13:19:43'),(1918,41,'2418583291','2025-03-29 16:31:51','Tokyo Xtreme Racer has a !Hardmode now! - !Subathon Day 2 | -35% on Giftsubs | !peak !mm !ig','https://www.twitch.tv/videos/2418583291','22505',0,1,1,NULL,NULL,'2025-03-29 23:00:11','2025-03-31 13:42:22'),(1919,43,'2418714665','2025-03-29 19:09:06','E ma si cucina su questa live...si vince, ci si diverte, una bella presa a bene eh','https://www.twitch.tv/videos/2418714665','13866',0,1,1,NULL,NULL,'2025-03-29 23:00:12','2025-03-31 14:03:31'),(1920,43,'2418346793','2025-03-29 09:27:36','PROPLAYER PAOLOCANNONE','https://www.twitch.tv/videos/2418346793','25100',0,1,1,NULL,NULL,'2025-03-29 23:00:12','2025-03-31 14:24:06'),(1921,44,'2418238673','2025-03-29 04:50:58','gonna refund it after i sniff','https://www.twitch.tv/videos/2418238673','29629',0,1,1,NULL,NULL,'2025-03-29 23:00:12','2025-03-31 15:24:32'),(1922,45,'2418598946','2025-03-29 16:53:28','Sh*t Show Saturday maybe, 1st one in like a year | !onlyfangs','https://www.twitch.tv/videos/2418598946','22004',0,1,1,NULL,NULL,'2025-03-29 23:00:12','2025-03-31 16:04:50'),(1923,47,'2418555019','2025-03-29 15:54:58','EPIC Renfaire Today w/ @Jeanette @cyr @peachjars 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2418555019','25514',0,1,1,NULL,NULL,'2025-03-29 23:00:13','2025-03-31 16:51:34'),(1924,49,'2418531142','2025-03-29 15:20:05','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2418531142','18953',0,1,1,NULL,NULL,'2025-03-29 23:00:13','2025-03-31 17:09:55'),(1925,54,'2418445961','2025-03-29 13:06:58','Cute Boys *Nod Nod* | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2418445961','35596',0,1,1,NULL,NULL,'2025-03-29 23:00:14','2025-03-31 17:48:40'),(1926,56,'2418856229','2025-03-29 21:53:18','Rogue Heroes with the boi @AFGEmayoslayoVT New Redeems!!!','https://www.twitch.tv/videos/2418856229','4016',0,1,1,NULL,NULL,'2025-03-29 23:00:14','2025-03-31 18:04:24'),(1927,57,'2418792456','2025-03-29 20:35:03','🔴(a)WAKE@DAY🔴RENAISSANCE FAIRE IRL W/ @KNUT @CYR @PEACHJARS @MORGPIE @GOD 🔴!socials !manscaped','https://www.twitch.tv/videos/2418792456','8711',0,1,1,NULL,NULL,'2025-03-29 23:00:14','2025-03-31 18:22:31'),(1928,57,'2418167829','2025-03-29 03:03:11','🔴(a)WAKE@NITE🔴I AM BECOME BANTER🔴BALATRO, WEED GAME🔴REACTS, CHATS, INTIMACY, BRAWLING?🔴SLEEP DEPRIVED MUSINGS🔴!socials !manscaped','https://www.twitch.tv/videos/2418167829','15460',0,1,1,NULL,NULL,'2025-03-29 23:00:14','2025-03-31 18:33:13'),(1930,69,'2418129676','2025-03-29 02:14:47','CLASH IS BACK 🗡 UPDATE IS HERE 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2418129676','26021',0,1,1,NULL,NULL,'2025-03-29 23:00:17','2025-03-31 19:03:36'),(1931,70,'2418496886','2025-03-29 14:29:58','🧗🏼‍♂️ XXL RED BULL JUMP & RUN EVENT 🧗🏼‍♂️','https://www.twitch.tv/videos/2418496886','19346',0,1,1,NULL,NULL,'2025-03-29 23:00:17','2025-03-31 19:11:31'),(1932,73,'2418601158','2025-03-29 16:56:13','Red Bull Jump & Run | Team Julia, Trymacs & Tomatolix!','https://www.twitch.tv/videos/2418601158','10640',0,1,1,NULL,NULL,'2025-03-29 23:00:18','2025-03-31 19:26:18'),(1933,73,'2418498364','2025-03-29 14:32:08','Red Bull Jump & Run | Team Julia, Trymacs & Tomatolix!','https://www.twitch.tv/videos/2418498364','8361',0,1,1,NULL,NULL,'2025-03-29 23:00:18','2025-03-31 19:31:34'),(1934,75,'2418430029','2025-03-29 12:40:47','🟢FNC vs. GX | 2025 LEC Spring Week 1 Day 1🟢 #WatchLEC','https://www.twitch.tv/videos/2418430029','26737',0,1,1,NULL,NULL,'2025-03-29 23:00:18','2025-03-31 19:57:55'),(1935,76,'2418526020','2025-03-29 15:12:41','hey hey hey // Arena Turnier von @autophil ab 17 Uhr','https://www.twitch.tv/videos/2418526020','24140',0,1,1,NULL,NULL,'2025-03-29 23:00:19','2025-03-31 20:13:12'),(1938,81,'2418601926','2025-03-29 16:57:05','Split Fiction avec Michou #1 (je ne regarde quasi pas le tchat, désolé) et subbez-vous chez Mich pas ici, j\'ai pas mis d\'alerte 😂','https://www.twitch.tv/videos/2418601926','21795',0,1,1,NULL,NULL,'2025-03-29 23:00:20','2025-03-31 20:35:28'),(1941,86,'2418342663','2025-03-29 09:15:27','🔴LE DRAMA T1 & NASUS JUNGLE🔴11H DECOUVERTE DE WARZONE AVEC CHOWH1 + MENU KFC à WIN🔴','https://www.twitch.tv/videos/2418342663','20692',0,1,1,NULL,NULL,'2025-03-29 23:00:21','2025-03-31 20:51:49'),(1942,88,'2418515968','2025-03-29 14:59:24','@Dye_live GM / 1V9 EST LA MISSION (!patreon)','https://www.twitch.tv/videos/2418515968','14666',0,1,1,NULL,NULL,'2025-03-29 23:00:21','2025-03-31 20:57:18'),(1943,90,'2418438505','2025-03-29 12:56:22','🌸CO STREAM LEC 🌸 first bo : fnc vs gx | spring split | #watchlec','https://www.twitch.tv/videos/2418438505','26040',0,1,1,NULL,NULL,'2025-03-29 23:00:22','2025-03-31 21:16:32'),(1944,97,'2418435097','2025-03-29 12:50:28','🏆 FINALE CYBERDASH 🏆| BULDUM MANIA [0] vs [0] ANTIC ESC | GRANDE FINALE Project: CyberDash !cyberdash !redbull','https://www.twitch.tv/videos/2418435097','17772',0,1,1,NULL,NULL,'2025-03-29 23:00:23','2025-03-31 21:29:44'),(1946,104,'2418574802','2025-03-29 16:20:34','GTA 6 POKRAČOVÁNÍ POTOM SC2 PUMPA - IG/X: @Miken_TV','https://www.twitch.tv/videos/2418574802','21909',0,1,1,NULL,NULL,'2025-03-29 23:00:25','2025-03-31 22:05:35'),(1947,18,'2418407252','2025-03-29 11:58:44','CS2 FACEIT BINGO O SLUCHÁTKA ZA 5500 KČ - LAST DAY 🥳 18.00 MEGA VELKÝ NHL PACK OPENING 🥳 SLEVA NA GIFTED SUBS 35%: AKCE !AWP 🥳 !casehug','https://www.twitch.tv/videos/2418407252','32770',0,1,1,NULL,NULL,'2025-03-30 02:00:06','2025-03-31 22:31:39'),(1950,1,'2419603195','2025-03-30 18:05:06','🪦 JEN MAIN BOSSOVÉ 🪦 DONA 19KČ 🪦 TOP DONO BERE BALÍK !box (POSLEDNÍ 3) 🪦 35% SLEVA NA SUBY DNES NAPOSLED 🪦 DONO = 2x BERSERKER PC','https://www.twitch.tv/videos/2419603195','14096',0,1,1,NULL,NULL,'2025-03-30 22:00:02','2025-03-31 22:44:35'),(1951,5,'2419371559','2025-03-30 12:53:03','😈NÁSTUP GALAKTICKEJ MULTIGENERAČNEJ ZÁBAVY😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2419371559','30367',0,1,1,NULL,NULL,'2025-03-30 22:00:02','2025-03-31 23:13:52'),(1952,7,'2419280888','2025-03-30 09:34:51','🖤🐈‍⬛ VAMPY GOTH KOSTÝM 🖤 +cooking stream a clown show 🧛‍♀️🍰 12hodinovka za 1000 subs! SLEVA 35% (na 5+ gifted) STÁLE BĚŽÍ','https://www.twitch.tv/videos/2419280888','35594',0,1,1,NULL,NULL,'2025-03-30 22:00:03','2025-03-31 23:50:46'),(1953,7,'2419222405','2025-03-30 06:53:54','🖤🐈‍⬛ VAMPY GOTH KOSTÝM 🖤 +cooking stream a clown show 🧛‍♀️🍰 12hodinovka za 1000 subs! SLEVA 35% (na 5+ gifted) STÁLE BĚŽÍ','https://www.twitch.tv/videos/2419222405','9640',0,1,1,NULL,NULL,'2025-03-30 22:00:03','2025-03-31 23:55:49'),(1954,9,'2419187495','2025-03-30 05:31:48','LEVEL 17 HUNTER 🦉🏹 | #4 | WOW CLASSIC HARDCORE | !SMRT = SMAZÁNÍ POSTAVY | OFICIÁLNÍ HC !SERVER','https://www.twitch.tv/videos/2419187495','40268',0,1,1,NULL,NULL,'2025-03-30 22:00:03','2025-04-01 00:31:09'),(1955,16,'2419576271','2025-03-30 17:36:05','⚔️ GTA RP ⚔️ InZoi? ⚔️ WoLe zítra ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2419576271','15839',0,1,1,NULL,NULL,'2025-03-30 22:00:04','2025-04-01 00:47:45'),(1956,17,'2419753419','2025-03-30 20:59:33','GENK RP Eduardo Soto☠️ITALKA SE VYVRAŽDILA?☠️využij 50$ na !cryptocom☠️','https://www.twitch.tv/videos/2419753419','3631',0,1,1,NULL,NULL,'2025-03-30 22:00:04','2025-04-01 00:55:58'),(1957,17,'2419448425','2025-03-30 14:54:03','👑 Road to Comic-Con Prague 2025 | TOP 4 týmy - DAY 2 | !turnaj !finale !samsung !smarty','https://www.twitch.tv/videos/2419448425','21850',0,1,1,NULL,NULL,'2025-03-30 22:00:04','2025-04-01 01:14:40'),(1958,19,'2419407025','2025-03-30 13:50:29','🔴 DROPS 🔴 Nedělní randomy s DBV','https://www.twitch.tv/videos/2419407025','19088',0,1,1,NULL,NULL,'2025-03-30 22:00:05','2025-04-01 01:31:40'),(1959,21,'2419624191','2025-03-30 18:28:22','sry že pozdě stream, vstával jsem ve 4 odpoledne !ggdrop !backpack','https://www.twitch.tv/videos/2419624191','12090',0,1,1,NULL,NULL,'2025-03-30 22:00:05','2025-04-01 01:40:06'),(1961,25,'2419349484','2025-03-30 12:11:56','DNES TO MUSÍM DOHRÁT! 👊 NENÍ CESTY ZPĚT... 👊 SOUTHPARK: THE FRACTURED BUT WHOLE 👊 ZÍTRA JAPONSKÝ ASASSIN 👊 #4 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2419349484','28545',0,1,1,NULL,NULL,'2025-03-30 22:00:06','2025-04-01 02:14:19'),(1962,29,'2419660699','2025-03-30 19:07:04','TEU VÝCVIK | zejtra VOLNO !dc !ig !mc','https://www.twitch.tv/videos/2419660699','10383',0,1,1,NULL,NULL,'2025-03-30 22:00:07','2025-04-01 02:30:29'),(1963,32,'2419545430','2025-03-30 17:00:27','ŠNek, Formule a !BB !kytara','https://www.twitch.tv/videos/2419545430','17981',0,1,1,NULL,NULL,'2025-03-30 22:00:08','2025-04-01 02:40:44'),(1964,33,'2419401945','2025-03-30 13:41:50','Suby ve slevě! Čas na zaměstnance a nové zboží! Trávě odzvonilo! | !kniha !elite','https://www.twitch.tv/videos/2419401945','8432',0,1,1,NULL,NULL,'2025-03-30 22:00:08','2025-04-01 02:55:40'),(1965,40,'2419415255','2025-03-30 14:02:12','Games and shit!','https://www.twitch.tv/videos/2419415255','21540',0,1,1,NULL,NULL,'2025-03-30 22:00:09','2025-04-01 02:47:24'),(1966,41,'2419480909','2025-03-30 15:38:38','NFS Carbon !REDUX 2.1.0 | !Subathon Day 3 | -35% on Giftsubs','https://www.twitch.tv/videos/2419480909','22030',0,1,1,NULL,NULL,'2025-03-30 22:00:10','2025-04-01 03:22:41'),(1967,43,'2419724393','2025-03-30 20:21:31','KAIZO RUN NOTTURNA...SONO MATTO','https://www.twitch.tv/videos/2419724393','5919',0,1,1,NULL,NULL,'2025-03-30 22:00:10','2025-04-01 03:25:46'),(1968,43,'2419303709','2025-03-30 10:35:10','E ma si cucina su questa live...si vince, ci si diverte, una bella presa a bene eh','https://www.twitch.tv/videos/2419303709','23370',0,1,1,NULL,NULL,'2025-03-30 22:00:10','2025-04-01 03:34:18'),(1969,44,'2419182464','2025-03-30 05:21:23','the sim 2 part 2','https://www.twitch.tv/videos/2419182464','32404',0,1,1,NULL,NULL,'2025-03-30 22:00:10','2025-04-01 04:45:16'),(1970,45,'2419513524','2025-03-30 16:20:14','Im contuning this darkest dungeon thing | !onlyfangs','https://www.twitch.tv/videos/2419513524','20397',0,1,1,NULL,NULL,'2025-03-30 22:00:11','2025-04-01 05:10:23'),(1971,46,'2419416595','2025-03-30 14:04:05','Small slope stream! ⛷️ Going to the top! 🗻💀 Unc is cooked','https://www.twitch.tv/videos/2419416595','2378',0,1,1,NULL,NULL,'2025-03-30 22:00:11','2025-04-01 05:10:55'),(1972,46,'2419398580','2025-03-30 13:36:02','Small slope stream! ⛷️ Going to the top! 🗻💀 Unc is cooked','https://www.twitch.tv/videos/2419398580','1293',0,1,1,NULL,NULL,'2025-03-30 22:00:11','2025-04-01 05:11:32'),(1973,46,'2419382690','2025-03-30 13:09:38','Small slope stream! ⛷️ Going to the top! 🗻💀 Unc is cooked','https://www.twitch.tv/videos/2419382690','1575',0,1,1,NULL,NULL,'2025-03-30 22:00:11','2025-04-01 05:12:04'),(1974,46,'2419332727','2025-03-30 11:41:17','Small slope stream! ⛷️ Going to the top! 🗻💀 Unc is cooked','https://www.twitch.tv/videos/2419332727','4920',0,1,1,NULL,NULL,'2025-03-30 22:00:11','2025-04-01 05:23:09'),(1975,47,'2419792581','2025-03-30 21:52:47','Slow day with gym and a little recap! 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2419792581','444',0,1,1,NULL,NULL,'2025-03-30 22:00:11','2025-04-01 05:29:02'),(1976,49,'2419418220','2025-03-30 14:06:30','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2419418220','19826',0,1,1,NULL,NULL,'2025-03-30 22:00:12','2025-04-01 05:56:04'),(1977,54,'2419330514','2025-03-30 11:36:31','Insect Glaive User | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2419330514','37422',0,1,1,NULL,NULL,'2025-03-30 22:00:13','2025-04-01 06:44:07'),(1978,69,'2419033397','2025-03-30 01:37:02','SOLO CLASH 🗡 UPDATE IS HERE 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2419033397','25595',0,1,1,NULL,NULL,'2025-03-30 22:00:17','2025-04-01 07:02:43'),(1979,74,'2419191872','2025-03-30 05:41:13','Die Sucht hat kein Ende! - The First Berserker: Khazan Tag 5 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2419191872','18843',0,1,1,NULL,NULL,'2025-03-30 22:00:18','2025-04-01 07:19:02'),(1980,75,'2419355288','2025-03-30 12:23:17','🟢LEC ab 17 UHR🟢!steelseries','https://www.twitch.tv/videos/2419355288','34102',0,1,1,NULL,NULL,'2025-03-30 22:00:18','2025-04-01 07:50:40'),(1981,76,'2419329520','2025-03-30 11:34:21','hey hey hey // (15 Uhr) VIERTELFINALE im @autophil Arena Turnier','https://www.twitch.tv/videos/2419329520','15110',0,1,1,NULL,NULL,'2025-03-30 22:00:19','2025-04-01 08:08:33'),(1984,78,'2419534641','2025-03-30 16:48:08','BIG !RAID HARDCORE Onyxia + Molten Core | !zlan !patreon !boutique','https://www.twitch.tv/videos/2419534641','18731',0,1,1,NULL,NULL,'2025-03-30 22:00:19','2025-04-01 08:23:42'),(1986,81,'2419491276','2025-03-30 15:52:56','Split Fiction avec Michou #2 (je ne regarde quasi pas le tchat, désolé) et subbez-vous chez Mich pas ici, j\'ai pas mis d\'alerte 😂','https://www.twitch.tv/videos/2419491276','22044',0,1,1,NULL,NULL,'2025-03-30 22:00:20','2025-04-01 08:53:38'),(1988,85,'2419277857','2025-03-30 09:26:22','soloQ nomicnocam !lec','https://www.twitch.tv/videos/2419277857','6830',0,1,1,NULL,NULL,'2025-03-30 22:00:21','2025-04-01 08:54:52'),(1989,88,'2419421257','2025-03-30 14:11:22','@Dye_live GM / MAINS SUR LA TETE C\'EST UN BRAQUAGE (!patreon)','https://www.twitch.tv/videos/2419421257','13132',0,1,1,NULL,NULL,'2025-03-30 22:00:22','2025-04-01 09:07:25'),(1990,90,'2419449787','2025-03-30 14:56:01','🌸CO STREAM🌸J2 LEC | spring split | #watchlec','https://www.twitch.tv/videos/2419449787','25461',0,1,1,NULL,NULL,'2025-03-30 22:00:22','2025-04-01 09:39:59'),(1991,98,'2419298202','2025-03-30 10:20:49','🔴 VALORANT UN DIMANCHE !','https://www.twitch.tv/videos/2419298202','20657',0,1,1,NULL,NULL,'2025-03-30 22:00:24','2025-04-01 09:53:14'),(1993,104,'2419479279','2025-03-30 15:36:15','GTA 6 POKRAČOVÁNÍ POTOM SC2 PUMPA - IG/X: @Miken_TV','https://www.twitch.tv/videos/2419479279','21981',0,1,1,NULL,NULL,'2025-03-30 22:00:25','2025-04-01 10:03:39'),(1994,18,'2419312510','2025-03-30 10:57:13','🔴CS2 MEGA NAŠLAPANÝ TURNAJ O 1 MILION EURO 🥳 SLEVA NA GIFTED SUBS 35% 🥳 DNES LAST DAY AKCE !AWP🥳 !casehug','https://www.twitch.tv/videos/2419312510','35280',0,1,1,NULL,NULL,'2025-03-31 02:00:05','2025-04-01 10:42:18'),(1996,34,'2419523712','2025-03-30 16:33:38','🦈CUSTOMKY o 2000kč a 6x @MADMONQ 🔥DĚKUJI ZA PECKOVEJ SRÁZEK/OSLAVU JSTE NEJLEPŠÍ✌🏽🦈 ✌🏽','https://www.twitch.tv/videos/2419523712','17750',0,1,1,NULL,NULL,'2025-03-31 10:00:09','2025-04-01 11:01:47'),(1997,1,'2420440174','2025-03-31 18:12:47','📺 NOVÁ HOROR PSYCHO HRA KARMA: DARK WORLD 📺 TOP DONO NEBERE NIC, DOŠLY 📺 DOOM: DARK AGES DOJMY 📺 V PÁTEK LOLKONCERT.CZ 📺','https://www.twitch.tv/videos/2420440174','13635',0,1,1,NULL,NULL,'2025-03-31 22:00:02','2025-04-01 11:23:19'),(1998,5,'2420227336','2025-03-31 12:37:42','😈METROPOLA ZÁŽITKOVÝCH DESTINÁCIÍ V PLNOM PRÚDE😈ZĽAVA NA SUBS 35%😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2420227336','28613',0,1,1,NULL,NULL,'2025-03-31 22:00:02','2025-04-01 11:46:09'),(1999,7,'2420239349','2025-03-31 13:02:00','Ahoooooj, dnes arty farty 🫠❤️','https://www.twitch.tv/videos/2420239349','9290',0,1,1,NULL,NULL,'2025-03-31 22:00:03','2025-04-01 11:51:17'),(2000,9,'2420078773','2025-03-31 05:17:03','LEVEL 22 HUNTER 🦉🏹 | #6 | WOW CLASSIC HARDCORE | !SMRT = SMAZÁNÍ POSTAVY | OFICIÁLNÍ HC !SERVER','https://www.twitch.tv/videos/2420078773','38861',0,1,1,NULL,NULL,'2025-03-31 22:00:03','2025-04-01 12:25:46'),(2001,11,'2420392759','2025-03-31 17:13:02','⚠️ LEGENDÁRNÍ PODZEMÍ V !SHAKES #AD ⚠️ SCHEDULE I - FINÁLE? ⚠️ DNES JE MEZINÁRODNÍ DEN ZTRACENÝCH GOLFOVÝCH MÍČKŮ ⚠️','https://www.twitch.tv/videos/2420392759','17221',0,1,1,NULL,NULL,'2025-03-31 22:00:03','2025-04-01 12:39:01'),(2002,16,'2420416327','2025-03-31 17:45:14','⚔️ Rozlučka se svobodou 2 ⚔️ Nové Wole ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2420416327','15290',0,1,1,NULL,NULL,'2025-03-31 22:00:04','2025-04-04 16:01:05'),(2003,17,'2420219641','2025-03-31 12:20:53','IRL💪GYM Karlovy Vary💪nový partner !cryptocom🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2420219641','30240',0,1,1,NULL,NULL,'2025-03-31 22:00:04','2025-04-01 12:54:05'),(2004,19,'2420327579','2025-03-31 15:40:50','DROPS | Maus / užijeme si ještě Ho-Ri, než ho nerfnou','https://www.twitch.tv/videos/2420327579','11732',0,1,1,NULL,NULL,'2025-03-31 22:00:05','2025-04-01 13:07:48'),(2005,19,'2420142674','2025-03-31 08:38:26','Grind na Mause & chill','https://www.twitch.tv/videos/2420142674','10618',0,1,1,NULL,NULL,'2025-03-31 22:00:05','2025-04-01 13:14:51'),(2006,20,'2420475910','2025-03-31 18:57:20','Tažení pokračuje... po půlnoci autíčko...','https://www.twitch.tv/videos/2420475910','10965',0,1,1,NULL,NULL,'2025-03-31 22:00:05','2025-04-01 13:34:16'),(2007,25,'2420140864','2025-03-31 08:32:10','KLENOT NEBO KENTUS? 👊 Veterán jde hodnotit nový titul... 👊 ASSASSIN\'S CREED SHADOWS 👊 #1 👊 Čeština od @squiee 👊 !MMQ !KOFI','https://www.twitch.tv/videos/2420140864','23948',0,1,1,NULL,NULL,'2025-03-31 22:00:06','2025-04-01 13:53:37'),(2008,27,'2420193284','2025-03-31 11:18:28','AC: Shadows 🐾Cesta Naoe🐾 Zakládám klub nemocných hráčů | Socials: @Mullersie','https://www.twitch.tv/videos/2420193284','13636',0,1,1,NULL,NULL,'2025-03-31 22:00:07','2025-04-01 14:02:10'),(2009,28,'2420356976','2025-03-31 16:24:17','ZAKOUSNU WAIFU, PAK POKRAČUJU KE GOTHY MOMMY','https://www.twitch.tv/videos/2420356976','18526',0,1,1,NULL,NULL,'2025-03-31 22:00:07','2025-04-01 14:20:40'),(2010,29,'2420375697','2025-03-31 16:52:12','MOLLYINA RZLUČKA + KRAKENŮV ŠLEH NFO | zejtra JOB !dc !ig !mc','https://www.twitch.tv/videos/2420375697','17690',0,1,1,NULL,NULL,'2025-03-31 22:00:07','2025-04-01 14:43:23'),(2011,30,'2420191144','2025-03-31 11:12:25','Ideme spraviť trofej na SPLIT FICTION s @evzeniss 😡 ELDI MA HACKOL AKO EVZENA GG⚠️ Kedy stream? Info na !dc 🔥!mmq🔥','https://www.twitch.tv/videos/2420191144','7208',0,1,1,NULL,NULL,'2025-03-31 22:00:07','2025-04-01 14:44:44'),(2012,32,'2420353000','2025-03-31 16:18:22','Mishpondělí ... ohne Fluff... !kytara','https://www.twitch.tv/videos/2420353000','20506',0,1,1,NULL,NULL,'2025-03-31 22:00:08','2025-04-01 15:01:54'),(2013,33,'2420287863','2025-03-31 14:33:20','Kupujeme stodolu, kde postavíme sto dolů... Na krystal, chápeš | !kniha !elite','https://www.twitch.tv/videos/2420287863','13481',0,1,1,NULL,NULL,'2025-03-31 22:00:08','2025-04-01 15:19:28'),(2014,40,'2420270077','2025-03-31 14:01:02','Games and shit!','https://www.twitch.tv/videos/2420270077','21663',0,1,1,NULL,NULL,'2025-03-31 22:00:10','2025-04-01 15:30:15'),(2015,41,'2420312204','2025-03-31 15:15:14','TXR !Hardmod and Modpack | !Subathon Day 4 | Last day! for -35% on Giftsubs | !peak !mm !ig','https://www.twitch.tv/videos/2420312204','23138',0,1,1,NULL,NULL,'2025-03-31 22:00:10','2025-04-01 16:03:09'),(2016,43,'2420538633','2025-03-31 20:14:39','Just chatting e poi Repo con Enk, billybella e Deidara','https://www.twitch.tv/videos/2420538633','6331',0,1,1,NULL,NULL,'2025-03-31 22:00:10','2025-04-01 16:11:53'),(2017,43,'2420178665','2025-03-31 10:36:57','SOLOQUEUE...E POI KAIZO...?? INIZIAMO CON JUST CHATTING','https://www.twitch.tv/videos/2420178665','19070',0,1,1,NULL,NULL,'2025-03-31 22:00:10','2025-04-01 16:14:52'),(2018,44,'2420020239','2025-03-31 03:13:32','drug empire with the sinister four','https://www.twitch.tv/videos/2420020239','41269',0,1,1,NULL,NULL,'2025-03-31 22:00:11','2025-04-01 17:39:59'),(2019,47,'2420329978','2025-03-31 15:44:56','Post Renn Fair - Slow day with gym and a little recap! 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2420329978','22515',0,1,1,NULL,NULL,'2025-03-31 22:00:11','2025-04-01 18:50:40'),(2020,49,'2420295973','2025-03-31 14:48:30','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2420295973','18943',0,1,1,NULL,NULL,'2025-03-31 22:00:12','2025-04-01 19:03:16'),(2021,57,'2419964605','2025-03-31 01:46:39','🔴(a)WAKE@NITE🔴I AM BECOME BANTER🔴BALATRO, WEED GAME🔴REACTS, CHATS, INTIMACY, BRAWLING?🔴SLEEP DEPRIVED JAPLANNING?🔴!socials !manscaped','https://www.twitch.tv/videos/2419964605','16770',0,1,1,NULL,NULL,'2025-03-31 22:00:13','2025-04-01 19:16:18'),(2022,58,'2420176438','2025-03-31 10:30:12','EMOTELESS⭐MOANDAY ⭐TITLE = SCANNED⭐EVERYONE WELCOME⭐ NO SMOKING ZONE⭐','https://www.twitch.tv/videos/2420176438','12940',0,1,1,NULL,NULL,'2025-03-31 22:00:14','2025-04-01 19:26:44'),(2023,61,'2420429242','2025-03-31 18:00:39','The Grand Crusader Returns - @esfandtv all socials','https://www.twitch.tv/videos/2420429242','14375',0,1,1,NULL,NULL,'2025-03-31 22:00:14','2025-04-01 19:47:44'),(2024,62,'2420107204','2025-03-31 06:40:38','FUNCLE IRL 🇭🇰 Share Your Noods | !bc | $2 tts/tangia @cooksux @bawnsai | Hong Kong','https://www.twitch.tv/videos/2420107204','31603',0,1,1,NULL,NULL,'2025-03-31 22:00:15','2025-04-01 20:36:39'),(2025,67,'2420466483','2025-03-31 18:45:55','CYR TYPE DAY❗SUCH A CONTENT WEEK ❗ LAST WEEK BEFORE JAPAN ❗PLAYING inZIO LATER , HOW HOW CAN I MAKE MYSELF?','https://www.twitch.tv/videos/2420466483','11661',0,1,1,NULL,NULL,'2025-03-31 22:00:16','2025-04-01 21:15:02'),(2026,69,'2419991380','2025-03-31 02:26:07','SOLO 🗡 UPDATE IS HERE 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2419991380','25365',0,1,1,NULL,NULL,'2025-03-31 22:00:16','2025-04-01 21:43:31'),(2027,70,'2420313245','2025-03-31 15:17:01','🤪 GEILER MANN MACHT GEILE SACHEN 🤪','https://www.twitch.tv/videos/2420313245','24080',0,1,1,NULL,NULL,'2025-03-31 22:00:16','2025-04-01 22:02:30'),(2028,73,'2420301624','2025-03-31 14:58:35','GEILER TAG für nen GEILEN STREAM | Reacts, Realtalk & später Dr0gen Simulator','https://www.twitch.tv/videos/2420301624','14591',0,1,1,NULL,NULL,'2025-03-31 22:00:17','2025-04-01 22:18:06'),(2029,74,'2420069923','2025-03-31 04:55:18','FINALE! - The First Berserker: Khazan Tag 6 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2420069923','18326',0,1,1,NULL,NULL,'2025-03-31 22:00:17','2025-04-01 22:27:36'),(2030,75,'2420215173','2025-03-31 12:10:26','🟢LEC ab 17 UHR FNC vs SK & BDS vs RGE🟢!steelseries','https://www.twitch.tv/videos/2420215173','27380',0,1,1,NULL,NULL,'2025-03-31 22:00:17','2025-04-01 22:48:20'),(2031,76,'2420362133','2025-03-31 16:31:48','~19:00 Soulkeepers Training heute (Run am Mittwoch)','https://www.twitch.tv/videos/2420362133','15050',0,1,1,NULL,NULL,'2025-03-31 22:00:18','2025-04-01 22:57:00'),(2033,78,'2420162258','2025-03-31 09:45:50','Le lundi c\'est CULTURE !mdf | !zlan !patreon !boutique','https://www.twitch.tv/videos/2420162258','22107',0,1,1,NULL,NULL,'2025-03-31 22:00:18','2025-04-01 23:21:59'),(2036,83,'2420133085','2025-03-31 08:04:51','SHAUNZ 🤍💛 wink wink ;)','https://www.twitch.tv/videos/2420133085','8050',0,1,1,NULL,NULL,'2025-03-31 22:00:20','2025-04-01 23:34:15'),(2037,85,'2420176621','2025-03-31 10:30:39','DEBRIEF VITA + LEC INTO SOLOQ !lec','https://www.twitch.tv/videos/2420176621','14200',0,1,1,NULL,NULL,'2025-03-31 22:00:20','2025-04-01 23:37:31'),(2038,88,'2420265767','2025-03-31 13:54:22','@Dye_live GM / OH PUT1 C\'EST DIMANCHE.. (!patreon)','https://www.twitch.tv/videos/2420265767','13570',0,1,1,NULL,NULL,'2025-03-31 22:00:21','2025-04-01 23:45:41'),(2039,90,'2420304917','2025-03-31 15:02:51','LEC STARTING ! 🌸 CO STREAM 🌸SPRING SPLIT | week 1 day 2 | #watchlec','https://www.twitch.tv/videos/2420304917','23490',0,1,1,NULL,NULL,'2025-03-31 22:00:21','2025-04-02 00:05:09'),(2041,97,'2420579247','2025-03-31 21:11:57','OMG OMG IMMO 3 ??','https://www.twitch.tv/videos/2420579247','2906',0,1,1,NULL,NULL,'2025-03-31 22:00:23','2025-04-02 00:18:19'),(2042,100,'2420551313','2025-03-31 20:32:46','LE MEILLEUR STREAM DE VOTRE VIE // 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2420551313','5258',0,1,1,NULL,NULL,'2025-03-31 22:00:24','2025-04-02 00:24:22'),(2043,100,'2420355700','2025-03-31 16:22:22','LE MEILLEUR STREAM DE VOTRE VIE // 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2420355700','9476',0,1,1,NULL,NULL,'2025-03-31 22:00:24','2025-04-02 00:36:41'),(2044,103,'2419376266','2025-03-30 13:00:17','⚔️ Elden ring MARATHON ⚔️ Death counter:0 ⚔️New alerts ⚔️ Spaní na streamu ⚔️ budící alerty ⚔️ New alerty ⚔️','https://www.twitch.tv/videos/2419376266','68317',0,1,1,NULL,NULL,'2025-03-31 22:00:24','2025-04-02 02:05:28'),(2045,103,'2416834761','2025-03-27 17:49:48','Poslední irl před ELDEN RING dneska Lezení + barber Zítra stodolní ⚔️ ELDEN RING MARATHON ⚔️ Tato SOBOTA ⚔️ START ⚔️ info na ig:kapesnik69','https://www.twitch.tv/videos/2416834761','9393',0,1,1,NULL,NULL,'2025-03-31 22:00:24','2025-04-02 02:11:50'),(2046,45,'2420378744','2025-03-31 16:56:18','Im contuning this darkest dungeon thing (reset the run btw) | !onlyfangs','https://www.twitch.tv/videos/2420378744','25500',0,1,1,NULL,NULL,'2025-04-01 02:00:11','2025-04-02 02:41:07'),(2047,72,'2420481850','2025-03-31 19:02:40','WL Geschwitze ohne Auszucker! | !prime !taktik','https://www.twitch.tv/videos/2420481850','19010',0,1,1,NULL,NULL,'2025-04-01 02:00:17','2025-04-02 02:58:32'),(2049,5,'2421075921','2025-04-01 12:46:03','😈DISTRIBUCIA UMENIA VO FORME GALAKTICKEJ ZÁBAVY😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2421075921','28193',0,1,1,NULL,NULL,'2025-04-01 22:00:03','2025-04-02 03:44:28'),(2050,9,'2420935225','2025-04-01 06:03:45','#1 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2420935225','39706',0,1,1,NULL,NULL,'2025-04-01 22:00:03','2025-04-02 04:15:24'),(2051,11,'2421222823','2025-04-01 16:50:15','⚠️SCHEDULE I - VÝROBA KOKEŠE ⚠️SPYPARTY S BUŘTÍNIM MALÝMTOPDONOZÍNIM ⚠️','https://www.twitch.tv/videos/2421222823','18588',0,1,1,NULL,NULL,'2025-04-01 22:00:04','2025-04-02 04:31:38'),(2052,17,'2421111734','2025-04-01 13:53:41','INTRO🪦RIP Corto !CK🪦investuj na !cryptocom🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2421111734','29184',0,1,1,NULL,NULL,'2025-04-01 22:00:05','2025-04-02 05:08:54'),(2053,19,'2420963154','2025-04-01 07:29:41','Přecházím na eng pubg streamy','https://www.twitch.tv/videos/2420963154','14347',0,1,1,NULL,NULL,'2025-04-01 22:00:05','2025-04-02 05:17:27'),(2054,19,'2420961641','2025-04-01 07:24:16','Přecházím na eng pubg streamy','https://www.twitch.tv/videos/2420961641','292',0,1,1,NULL,NULL,'2025-04-01 22:00:05','2025-04-02 05:17:40'),(2055,20,'2421327077','2025-04-01 18:59:41','Táhneme na sever... nebo někam dál...','https://www.twitch.tv/videos/2421327077','10824',0,1,1,NULL,NULL,'2025-04-01 22:00:05','2025-04-02 05:28:06'),(2056,21,'2421124606','2025-04-01 14:15:08','2 hry do lvl 7 faceit jupijej !ggdrop !backpack','https://www.twitch.tv/videos/2421124606','27898',0,1,1,NULL,NULL,'2025-04-01 22:00:06','2025-04-02 06:02:24'),(2057,28,'2421203620','2025-04-01 16:21:50','PANÍ S DEŠTNÍČKEM MI SEDLA NA OBLIČEJ™ | The First Berserker: Khazan','https://www.twitch.tv/videos/2421203620','15955',0,1,1,NULL,NULL,'2025-04-01 22:00:07','2025-04-02 06:19:10'),(2058,32,'2421222343','2025-04-01 16:49:35','Dnes druhojakostní streamer (alerty zpět a štěstíčko za 150,- is on fire) !kytara','https://www.twitch.tv/videos/2421222343','18633',0,1,1,NULL,NULL,'2025-04-01 22:00:08','2025-04-02 06:43:37'),(2059,33,'2421144139','2025-04-01 14:51:15','Poslední matroš, největší budova a automatizace! Testujeme multistream! | !kniha !elite','https://www.twitch.tv/videos/2421144139','11681',0,1,1,NULL,NULL,'2025-04-01 22:00:09','2025-04-02 06:58:41'),(2060,40,'2421118323','2025-04-01 14:03:51','Games and shit!','https://www.twitch.tv/videos/2421118323','28524',0,1,1,NULL,NULL,'2025-04-01 22:00:10','2025-04-02 07:23:38'),(2061,41,'2421186554','2025-04-01 15:58:35','Stock Car Challenge !Pepega Most Wanted | !Subathon Day 5 | !peak !mm !ig','https://www.twitch.tv/videos/2421186554','21695',0,1,1,NULL,NULL,'2025-04-01 22:00:10','2025-04-02 07:43:22'),(2062,43,'2421098301','2025-04-01 13:27:59','PICCOLA DISCUSIONE LIVE CON EOLO INTO UN GAME AL GM - FULL TRYHARD MODE','https://www.twitch.tv/videos/2421098301','6992',0,1,1,NULL,NULL,'2025-04-01 22:00:10','2025-04-02 07:45:52'),(2063,43,'2421096618','2025-04-01 13:24:52','PICCOLA DISCUSIONE LIVE CON EOLO INTO UN GAME AL GM - FULL TRYHARD MODE','https://www.twitch.tv/videos/2421096618','170',0,1,1,NULL,NULL,'2025-04-01 22:00:10','2025-04-02 07:45:58'),(2064,43,'2421086908','2025-04-01 13:05:53','UN GAME AL GM - FULL TRYHARD MODE','https://www.twitch.tv/videos/2421086908','450',0,1,1,NULL,NULL,'2025-04-01 22:00:10','2025-04-02 07:46:18'),(2065,43,'2421034678','2025-04-01 11:12:59','CHI SI E\' PERMESSO DI DARE FUOCO ALLA MIA MACCHINA? (SONO STATO IO PER I SOLDI DELL\'ASSICURAZIONE)','https://www.twitch.tv/videos/2421034678','6635',0,1,1,NULL,NULL,'2025-04-01 22:00:10','2025-04-02 07:47:25'),(2066,44,'2420927227','2025-04-01 05:41:41','Dr Strain, Pack Panther, Smoki, Iron Xan','https://www.twitch.tv/videos/2420927227','24046',0,1,1,NULL,NULL,'2025-04-01 22:00:11','2025-04-02 08:14:18'),(2067,47,'2421216456','2025-04-01 16:40:43','🔴Open swimming pool day 1 🔴Last week before moving back to Norway🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2421216456','19168',0,1,1,NULL,NULL,'2025-04-01 22:00:11','2025-04-02 09:08:30'),(2069,49,'2421090216','2025-04-01 13:12:07','NEW !TRAIT SHOWCASE | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2421090216','24576',0,1,1,NULL,NULL,'2025-04-01 22:00:12','2025-04-02 09:29:55'),(2070,54,'2421052107','2025-04-01 11:56:52','No pranks, here | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2421052107','32334',0,1,1,NULL,NULL,'2025-04-01 22:00:13','2025-04-02 09:57:06'),(2071,57,'2421415211','2025-04-01 20:55:21','🔴(a)WAKE@DAY🔴I AM BECOME GOAT🔴MARVEL RIVALS w/ @cyr @peachjars @RLRunescapeGF 🔴BALATRO, WEED GAME🔴SLEEP DEPRIVED🔴!socials !manscaped','https://www.twitch.tv/videos/2421415211','3892',0,1,1,NULL,NULL,'2025-04-01 22:00:13','2025-04-02 10:05:23'),(2072,57,'2420759887','2025-04-01 01:04:31','🔴(a)WAKE@NITE🔴I AM BECOME BANTER🔴DRUSKI DATING SHOW CONTINUES🔴BALATRO, WEED GAME🔴SLEEP DEPRIVED JAPLANNING?🔴!socials !manscaped','https://www.twitch.tv/videos/2420759887','15630',0,1,1,NULL,NULL,'2025-04-01 22:00:13','2025-04-02 10:37:03'),(2073,61,'2421248573','2025-04-01 17:21:38','Iss is here! Bonnie is back! Reorganizing my life with Shai Organized! - @esfandtv all socials','https://www.twitch.tv/videos/2421248573','16716',0,1,1,NULL,NULL,'2025-04-01 22:00:14','2025-04-02 12:02:54'),(2074,67,'2421411122','2025-04-01 20:49:25','❗TRYING TO WIN $20K❗GOAT SIMULATOR TIME !madmonq','https://www.twitch.tv/videos/2421411122','4251',0,1,1,NULL,NULL,'2025-04-01 22:00:16','2025-04-02 12:28:21'),(2075,69,'2420850595','2025-04-01 03:05:48','SOLO 🗡 UPDATE IS HERE 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2420850595','20975',0,1,1,NULL,NULL,'2025-04-01 22:00:16','2025-04-02 12:50:38'),(2076,70,'2421160532','2025-04-01 15:16:53','🤪 GEILER MANN MACHT GEILE SACHEN 🤪','https://www.twitch.tv/videos/2421160532','20170',0,1,1,NULL,NULL,'2025-04-01 22:00:17','2025-04-02 13:01:04'),(2077,74,'2420909044','2025-04-01 04:56:01','Soulkeeper Training | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2420909044','22745',0,1,1,NULL,NULL,'2025-04-01 22:00:17','2025-04-02 13:22:12'),(2078,78,'2420989758','2025-04-01 08:58:34','LYCANS avec !mods // 15h Training ZLAN (Party Animals ??) | !zlan !patreon !boutique','https://www.twitch.tv/videos/2420989758','29252',0,1,1,NULL,NULL,'2025-04-01 22:00:19','2025-04-02 13:48:23'),(2081,83,'2420972717','2025-04-01 08:00:33','SHAUNZ 🤍💛 demain c\'est le la sortie du set 14 sur le live (+ je fais BOAT jeudi!!!)','https://www.twitch.tv/videos/2420972717','9630',0,1,1,NULL,NULL,'2025-04-01 22:00:20','2025-04-02 13:52:43'),(2082,90,'2421131558','2025-04-01 14:28:19','HELLO 🌸 comment vous allez ? ☀️ !holy','https://www.twitch.tv/videos/2421131558','19820',0,1,1,NULL,NULL,'2025-04-01 22:00:22','2025-04-02 14:02:39'),(2084,93,'2421367882','2025-04-01 19:49:45','1er avril l\'heure de dégoûter @samsokunn et @wipr du jeu ^^','https://www.twitch.tv/videos/2421367882','7837',0,1,1,NULL,NULL,'2025-04-01 22:00:22','2025-04-02 14:20:38'),(2085,93,'2421070949','2025-04-01 12:35:27','capitaine crochet emmène @wipr en balade','https://www.twitch.tv/videos/2421070949','16721',0,1,1,NULL,NULL,'2025-04-01 22:00:22','2025-04-02 14:41:27'),(2087,100,'2421411814','2025-04-01 20:50:27','LE MEILLEUR STREAM DE VOTRE VIE // 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2421411814','4197',0,1,1,NULL,NULL,'2025-04-01 22:00:24','2025-04-02 14:56:17'),(2088,100,'2421197299','2025-04-01 16:12:19','LE MEILLEUR STREAM DE VOTRE VIE // 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2421197299','7458',0,1,1,NULL,NULL,'2025-04-01 22:00:24','2025-04-02 14:59:35'),(2089,104,'2421137869','2025-04-01 14:39:40','Forgotten Universe#AD potom APEX/Everhood - IG/X: @Miken_TV','https://www.twitch.tv/videos/2421137869','19164',0,1,1,NULL,NULL,'2025-04-01 22:00:25','2025-04-02 15:11:02'),(2090,72,'2421328615','2025-04-01 19:00:51','WL Finale grinden im Zen Modus, wie immer! | !prime !taktik','https://www.twitch.tv/videos/2421328615','14730',0,1,1,NULL,NULL,'2025-04-02 02:00:17','2025-04-02 15:35:36'),(2091,94,'2421326204','2025-04-01 18:58:47','counter schlag avec des russes bourrés (j\'ai mis un micro du aldi)','https://www.twitch.tv/videos/2421326204','13457',0,1,1,NULL,NULL,'2025-04-02 02:00:22','2025-04-02 15:58:07'),(2093,1,'2422123950','2025-04-02 17:31:09','⚰️ DNES 19:00 HOROR STREAM (UNKNOWN TAPES, MONSTER) ⚰️ TOP DONO BERE ÚPLNĚ PRVNÍ TOP DONO BOX 2025 S KUDLOU OD ANV !box DO CHATU ⚰️','https://www.twitch.tv/videos/2422123950','16133',0,1,1,NULL,NULL,'2025-04-02 22:00:02','2025-04-02 22:49:30'),(2094,5,'2421932925','2025-04-02 12:40:29','😈NAJDOSTUPNEJŠI PROSTRIEDOK PRE NEKONTROLOVANÉ POBAVENIE😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2421932925','29320',0,1,1,NULL,NULL,'2025-04-02 22:00:02','2025-04-02 23:30:16'),(2095,9,'2421955695','2025-04-02 13:13:10','#2 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2421955695','12506',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-02 23:47:45'),(2096,9,'2421925426','2025-04-02 12:28:18','JE STŘEDA, PC MĚ DO ZADKU JEBÁÁ!','https://www.twitch.tv/videos/2421925426','403',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-02 23:47:54'),(2097,9,'2421916285','2025-04-02 12:09:58','#2 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2421916285','548',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-02 23:48:15'),(2098,9,'2421903941','2025-04-02 11:46:40','#2 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2421903941','958',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-02 23:48:44'),(2099,9,'2421893577','2025-04-02 11:21:04','#2 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2421893577','1261',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-02 23:49:30'),(2100,9,'2421867770','2025-04-02 10:08:12','#2 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2421867770','4254',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-02 23:52:28'),(2101,9,'2421768187','2025-04-02 05:04:39','#2 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2421768187','18077',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-03 00:04:11'),(2102,11,'2422111254','2025-04-02 17:14:33','⚠️JEDINÝ CZ STREAMER POUŽÍVAJÍC STYL TYGRA ⚠️REAKCE NA KLIPY ⚠️SCHEDULE I ⚠️ROCK OF AGES 2 S HONZOU ⚠️MEZINÁRODNÍ DEN JOELA Z TLOU ⚠️','https://www.twitch.tv/videos/2422111254','17130',0,1,1,NULL,NULL,'2025-04-02 22:00:03','2025-04-03 00:26:12'),(2103,16,'2422115334','2025-04-02 17:19:55','⚔️ Svatba Molly a Radar ⚔️ !recap pro souhrn příběhu ⚔️ WoLe zítra ⚔️','https://www.twitch.tv/videos/2422115334','16809',0,1,1,NULL,NULL,'2025-04-02 22:00:04','2025-04-03 00:29:12'),(2104,17,'2422055860','2025-04-02 16:02:40','INTRO🎉33LET? JEBE?🎉investuj na !cryptocom🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2422055860','21444',0,1,1,NULL,NULL,'2025-04-02 22:00:04','2025-04-03 01:13:14'),(2105,19,'2422088903','2025-04-02 16:48:49','Gigachad Maus gameplay (dneska marky?)','https://www.twitch.tv/videos/2422088903','11863',0,1,1,NULL,NULL,'2025-04-02 22:00:05','2025-04-03 01:27:45'),(2106,19,'2421830785','2025-04-02 08:06:57','Maus gameplay','https://www.twitch.tv/videos/2421830785','12443',0,1,1,NULL,NULL,'2025-04-02 22:00:05','2025-04-03 01:36:06'),(2107,21,'2421981158','2025-04-02 14:02:08','Schedule s @goes !ggdrop !backpack','https://www.twitch.tv/videos/2421981158','28677',0,1,1,NULL,NULL,'2025-04-02 22:00:05','2025-04-03 02:23:56'),(2113,27,'2421931288','2025-04-02 12:37:55','🐊Croc:LotG Remaster 🐲 Dneska pořádné retro | Socials: @Mullersie','https://www.twitch.tv/videos/2421931288','22414',0,1,1,NULL,NULL,'2025-04-02 22:00:06','2025-04-03 02:44:23'),(2114,29,'2422124039','2025-04-02 17:31:15','SVATBA DVOU BLUDŮ | zejtra JOB !dc !ig !mc','https://www.twitch.tv/videos/2422124039','11444',0,1,1,NULL,NULL,'2025-04-02 22:00:07','2025-04-03 02:50:04'),(2115,31,'2420265139','2025-03-31 13:53:10','JDU DĚLAT BRIKULOSE VEN | HIMATHON VOL. 3 - DEN 4. !himathon | !soutěž !xzone !madmonq !vohoz !donate','https://www.twitch.tv/videos/2420265139','76676',0,1,1,NULL,NULL,'2025-04-02 22:00:07','2025-04-05 12:45:36'),(2116,32,'2422101074','2025-04-02 17:02:18','Nintendo stream!!! KOuknem na představení noveho Switche a pak dáme Mário Kart! #nintendoevergreens #Marioandfriends !kytara','https://www.twitch.tv/videos/2422101074','16860',0,1,1,NULL,NULL,'2025-04-02 22:00:07','2025-04-03 05:12:11'),(2117,33,'2422004840','2025-04-02 14:43:48','Největší komunitní turnaj v BackPack Battles! Pojď mě porazit! :D Testujeme multistream!| !kniha !elite','https://www.twitch.tv/videos/2422004840','13085',0,1,1,NULL,NULL,'2025-04-02 22:00:08','2025-04-03 05:25:53'),(2118,41,'2422014328','2025-04-02 14:59:31','Stock Car Challenge !Pepega Most Wanted and Trackmania | !Subathon Day 6 | !peak !mm !ig','https://www.twitch.tv/videos/2422014328','24775',0,1,1,NULL,NULL,'2025-04-02 22:00:09','2025-04-03 05:23:18'),(2119,43,'2422081341','2025-04-02 16:38:06','CHALLANGER INCOMING - GM 746 LP FULL TRYHARD','https://www.twitch.tv/videos/2422081341','19313',0,1,1,NULL,NULL,'2025-04-02 22:00:10','2025-04-03 05:33:15'),(2120,43,'2422022037','2025-04-02 15:10:29','CHALLANGER INCOMING - GM 746 LP FULL TRYHARD','https://www.twitch.tv/videos/2422022037','2340',0,1,1,NULL,NULL,'2025-04-02 22:00:10','2025-04-03 05:34:22'),(2121,43,'2421887048','2025-04-02 11:03:50','CHALLANGER INCOMING - GM 746 LP FULL TRYHARD','https://www.twitch.tv/videos/2421887048','14731',0,1,1,NULL,NULL,'2025-04-02 22:00:10','2025-04-03 05:47:29'),(2122,44,'2421605572','2025-04-02 01:00:01','I love my coworkers','https://www.twitch.tv/videos/2421605572','28464',0,1,1,NULL,NULL,'2025-04-02 22:00:10','2025-04-03 06:33:08'),(2123,45,'2422086016','2025-04-02 16:44:45','Nintendo direct and darkest dungeon? wednesday | !onlyfangs','https://www.twitch.tv/videos/2422086016','18925',0,1,1,NULL,NULL,'2025-04-02 22:00:10','2025-04-03 07:10:48'),(2124,47,'2422153913','2025-04-02 18:07:11','🔴Kalahari Water Park with @extraemily and @djclancy 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2422153913','13979',0,1,1,NULL,NULL,'2025-04-02 22:00:10','2025-04-03 08:05:56'),(2125,49,'2422031752','2025-04-02 15:26:33','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq','https://www.twitch.tv/videos/2422031752','15980',0,1,1,NULL,NULL,'2025-04-02 22:00:11','2025-04-03 08:18:45'),(2126,54,'2421896653','2025-04-02 11:29:02','Let\'s be lonely together! | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2421896653','27368',0,1,1,NULL,NULL,'2025-04-02 22:00:12','2025-04-03 08:43:27'),(2128,57,'2421633290','2025-04-02 01:31:14','🔴(a)WAKE@NITE🔴FAMILY FRIENDLY DOPE DEALING🔴SLEEP DEPRIVED🔴!socials !manscaped','https://www.twitch.tv/videos/2421633290','16760',0,1,1,NULL,NULL,'2025-04-02 22:00:12','2025-04-03 08:58:05'),(2129,58,'2421887961','2025-04-02 11:06:12','ANOTHER WIN TODAY?⭐NEW MONITOR⭐WEIRD DAY ⭐TITLE = SCANNED⭐EVERYONE WELCOME⭐ NO SMOKING ZONE⭐','https://www.twitch.tv/videos/2421887961','10700',0,1,1,NULL,NULL,'2025-04-02 22:00:13','2025-04-03 09:05:02'),(2130,61,'2422110542','2025-04-02 17:13:32','Looking at Nintendo Direct Switch 2 stuff then Gaming- @esfandtv all socials','https://www.twitch.tv/videos/2422110542','17201',0,1,1,NULL,NULL,'2025-04-02 22:00:13','2025-04-03 10:31:52'),(2131,62,'2421765809','2025-04-02 04:59:36','FUNCLE IRL 🇭🇰 Gundam, Gamba, Girls | !bc | $2 tts/tangia @cooksux | Hong Kong','https://www.twitch.tv/videos/2421765809','43567',0,1,1,NULL,NULL,'2025-04-02 22:00:14','2025-04-03 11:42:07'),(2132,67,'2422199034','2025-04-02 19:02:02','❗BREAKING❗SPENDING TIME WITH CHAT ❗BIG LEBOWSKI BOWLING TOMORROW WITH PENTA & WAKE ❗JAPAN THIS WEEKEND !MADMONQ','https://www.twitch.tv/videos/2422199034','10693',0,1,1,NULL,NULL,'2025-04-02 22:00:15','2025-04-03 12:58:01'),(2133,74,'2421766754','2025-04-02 05:01:30','!Soulkeeper Run um 10 Uhr | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2421766754','21630',0,1,1,NULL,NULL,'2025-04-02 22:00:16','2025-04-03 13:04:11'),(2134,75,'2421823796','2025-04-02 07:44:44','🟢LCK IST ZURÜCK! HLE vs GENG | DRX vs DNF🟢#LCKWatchparty','https://www.twitch.tv/videos/2421823796','35200',0,1,1,NULL,NULL,'2025-04-02 22:00:17','2025-04-03 13:42:06'),(2135,76,'2422021139','2025-04-02 15:09:01','DER SOULKEEPERS RUN','https://www.twitch.tv/videos/2422021139','19520',0,1,1,NULL,NULL,'2025-04-02 22:00:17','2025-04-03 13:59:25'),(2138,78,'2421895801','2025-04-02 11:26:49','HYPE 15h NINTENDO DIRECT SWITCH 2 | !zlan !patreon !boutique','https://www.twitch.tv/videos/2421895801','13511',0,1,1,NULL,NULL,'2025-04-02 22:00:17','2025-04-03 14:05:27'),(2140,83,'2421822966','2025-04-02 07:41:52','SHAUNZ 🤍💛 live set 14 les loulous ;)','https://www.twitch.tv/videos/2421822966','8760',0,1,1,NULL,NULL,'2025-04-02 22:00:18','2025-04-03 14:14:24'),(2141,88,'2421963805','2025-04-02 13:29:22','@Dye_live GM / DITES PRESENT QUAND VOUS ARRIVEZ QUE JE FASSE L\'APPEL (!patreon)','https://www.twitch.tv/videos/2421963805','14127',0,1,1,NULL,NULL,'2025-04-02 22:00:20','2025-04-03 14:21:31'),(2142,90,'2422025623','2025-04-02 15:16:13','🌸 COUCOU TTLM ? ça va bien rentré ? 🌸 !holy','https://www.twitch.tv/videos/2422025623','17900',0,1,1,NULL,NULL,'2025-04-02 22:00:20','2025-04-03 14:38:36'),(2144,93,'2422286842','2025-04-02 21:00:21','sombre five stack avec les diaboliques @wipr @samsokunn','https://www.twitch.tv/videos/2422286842','3599',0,1,1,NULL,NULL,'2025-04-02 22:00:20','2025-04-03 14:40:11'),(2145,93,'2421898858','2025-04-02 11:34:22','je tilt l\'intiltable @wipr avec ma botte de guerre','https://www.twitch.tv/videos/2421898858','10915',0,1,1,NULL,NULL,'2025-04-02 22:00:20','2025-04-03 14:58:35'),(2146,97,'2422278043','2025-04-02 20:47:52','OUEE LA TARDIVE AUJOURD HUI','https://www.twitch.tv/videos/2422278043','4349',0,1,1,NULL,NULL,'2025-04-02 22:00:21','2025-04-03 15:01:28'),(2148,100,'2422120550','2025-04-02 17:26:51','LE MEILLEUR STREAM DE VOTRE VIE // 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2422120550','5872',0,1,1,NULL,NULL,'2025-04-02 22:00:22','2025-04-03 15:05:27'),(2149,104,'2422044799','2025-04-02 15:48:25','DARK SOULS 2 SCHOLAR OF THE FIRST SIN IG/X: @Miken_TV','https://www.twitch.tv/videos/2422044799','19508',0,1,1,NULL,NULL,'2025-04-02 22:00:23','2025-04-03 15:24:48'),(2150,72,'2422197204','2025-04-02 19:00:29','Rivals Grind, SBC\'s, Evos & Invests uvm. | !prime !taktik','https://www.twitch.tv/videos/2422197204','16140',0,1,1,NULL,NULL,'2025-04-03 02:00:16','2025-04-03 15:45:16'),(2151,1,'2422970345','2025-04-03 17:05:42','💳 18:30 SIMULÁTOR WOLT KURÝRA, HORORY A BERSERKER 💳 TOP DONO BERE 2024 BALÍK 💳 DONO = 1x NOVÝ 2025 TOP D !box 💳 !karta #ad','https://www.twitch.tv/videos/2422970345','17661',0,1,1,NULL,NULL,'2025-04-03 22:00:03','2025-04-03 22:49:22'),(2152,5,'2422795746','2025-04-03 12:47:22','😈TENTO KANAL JE HĽADANÝ PRE NADMERNÝ HUMOR A MULTIMOMENTY😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2422795746','29302',0,1,1,NULL,NULL,'2025-04-03 22:00:03','2025-04-03 23:20:55'),(2153,7,'2422791744','2025-04-03 12:38:36','já už chci klid 🥹❤️ pokec o tom co se vše dělo poslední dny 🫢','https://www.twitch.tv/videos/2422791744','11110',0,1,1,NULL,NULL,'2025-04-03 22:00:03','2025-04-03 23:26:48'),(2154,9,'2422640499','2025-04-03 05:29:52','#3 | KINGDOM COME: BEZ JEDINÉ SMRTI 💀👑 | PRVNÍ 100% !HARDCORE PRŮCHOD | NEJTĚŽŠÍ CHALLENGE NA CZ/SK SCÉNĚ!','https://www.twitch.tv/videos/2422640499','44676',0,1,1,NULL,NULL,'2025-04-03 22:00:04','2025-04-03 23:59:13'),(2155,11,'2422970445','2025-04-03 17:05:47','🤸‍♀️ WRECKFEST 🤸‍♀️ POSLEDNÍ SCHEDULE I 🤸‍♀️ MOŽNÁ PAPERS PLEASE NVM 🤸‍♀️ FALL GUYS RANKEDY 🤸‍♀️','https://www.twitch.tv/videos/2422970445','17657',0,1,1,NULL,NULL,'2025-04-03 22:00:04','2025-04-04 00:16:20'),(2156,16,'2422990587','2025-04-03 17:30:36','⚔️ Únos guvernéra? ⚔️ !recap pro souhrn příběhu ⚔️ Nové Wole ⚔️','https://www.twitch.tv/videos/2422990587','16169',0,1,1,NULL,NULL,'2025-04-03 22:00:05','2025-04-04 00:29:57'),(2157,17,'2422809802','2025-04-03 13:12:39','INTRO🌴20:00 RUST🌴🪙investuj na !cryptocom🪙🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2422809802','30870',0,1,1,NULL,NULL,'2025-04-03 22:00:05','2025-04-04 00:48:19'),(2158,19,'2422909666','2025-04-03 15:58:01','Myškovaná - 100 % do 100 her? | další stream až v neděli','https://www.twitch.tv/videos/2422909666','9520',0,1,1,NULL,NULL,'2025-04-03 22:00:06','2025-04-04 00:56:14'),(2159,21,'2423002434','2025-04-03 17:45:46','🍩🍩🍩🍩🍩🍩🍩🍩🍩🍩🍩🍩🍩🍩 !backpack','https://www.twitch.tv/videos/2423002434','14140',0,1,1,NULL,NULL,'2025-04-03 22:00:06','2025-04-04 01:10:26'),(2160,27,'2422755580','2025-04-03 11:19:23','Dohrávám AC:Shadows + stopování zbylých cílů😈| Socials: @Mullersie','https://www.twitch.tv/videos/2422755580','20349',0,1,1,NULL,NULL,'2025-04-03 22:00:08','2025-04-04 01:33:12'),(2161,28,'2422929674','2025-04-03 16:16:46','JIŽANSKÁ ALENKA, CO SNĚDLA FIMFÁRUM | SOUTH OF MIDNIGHT | za klíč díky @onyxxcz <3','https://www.twitch.tv/videos/2422929674','10169',0,1,1,NULL,NULL,'2025-04-03 22:00:08','2025-04-04 01:40:12'),(2162,29,'2422972684','2025-04-03 17:08:20','DNESKA UNOS JEDNOHO STAROUŠE - PAK SCHEDULE S BLUDAMA @p4pa @swenkekw a @smaart99 | zejtra VOLNO🗣🗣🗣🗣 !dc !ig !mc','https://www.twitch.tv/videos/2422972684','17508',0,1,1,NULL,NULL,'2025-04-03 22:00:08','2025-04-04 02:07:03'),(2163,29,'2422968377','2025-04-03 17:03:30','DNESKA UNOS JEDNOHO STAROUŠE - PAK SCHEDULE S BLUDAMA @p4pa @swenkekw a @smaart99 | zejtra VOLNO🗣🗣🗣🗣 !dc !ig !mc','https://www.twitch.tv/videos/2422968377','280',0,1,1,NULL,NULL,'2025-04-03 22:00:08','2025-04-04 02:07:09'),(2164,32,'2422963900','2025-04-03 16:59:41','Pokrelíme Xbox a vy ho můžete vyhrát spolu s Logitechem a nejen to - ještě dnes hrajem o Gamepassy !logitech !kytara #logmine #gamepass','https://www.twitch.tv/videos/2422963900','14578',0,1,1,NULL,NULL,'2025-04-03 22:00:09','2025-04-04 02:18:23'),(2165,33,'2422863905','2025-04-03 14:51:40','Dneska vyrábíme velký Káčko! Testujeme multistream! | !kniha !elite','https://www.twitch.tv/videos/2422863905','9067',0,1,1,NULL,NULL,'2025-04-03 22:00:09','2025-04-04 02:26:42'),(2166,40,'2422837627','2025-04-03 14:03:50','Games and shit!','https://www.twitch.tv/videos/2422837627','20895',0,1,1,NULL,NULL,'2025-04-03 22:00:10','2025-04-04 02:52:25'),(2167,41,'2422931418','2025-04-03 16:18:53','1h left NFS Most Wanted Demo PC + PS2 and Juiced 2 | !Subathon !Subgoals Day 7 | !peak !mm !ig','https://www.twitch.tv/videos/2422931418','20477',0,1,1,NULL,NULL,'2025-04-03 22:00:10','2025-04-04 03:21:51'),(2168,43,'2422896228','2025-04-03 15:42:05','LIT ANC LEGENDS VS EKO','https://www.twitch.tv/videos/2422896228','5140',0,1,1,NULL,NULL,'2025-04-03 22:00:11','2025-04-04 03:22:50'),(2169,43,'2422884686','2025-04-03 15:24:07','LIT ANC LEGENDS VS EKO','https://www.twitch.tv/videos/2422884686','700',0,1,1,NULL,NULL,'2025-04-03 22:00:11','2025-04-04 03:23:03'),(2170,44,'2422698399','2025-04-03 08:23:04','(solo) canadian fent maybe one masterbush later','https://www.twitch.tv/videos/2422698399','20525',0,1,1,NULL,NULL,'2025-04-03 22:00:11','2025-04-04 03:50:06'),(2171,45,'2422969011','2025-04-03 17:04:12','Beating this game. | !onlyfangs','https://www.twitch.tv/videos/2422969011','17759',0,1,1,NULL,NULL,'2025-04-03 22:00:11','2025-04-04 04:43:27'),(2172,46,'2422745204','2025-04-03 10:52:53','🌞 Back nymning my shi- | 🍫 !review <- SNACK BOX REVIEW UP 😋🍪','https://www.twitch.tv/videos/2422745204','21090',0,1,1,NULL,NULL,'2025-04-03 22:00:12','2025-04-04 05:00:01'),(2173,47,'2423050662','2025-04-03 18:39:28','🔴K-News is back🔴Back day!🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2423050662','12044',0,1,1,NULL,NULL,'2025-04-03 22:00:12','2025-04-04 05:45:26'),(2174,47,'2422930764','2025-04-03 16:18:06','🔴K-News is back🔴Back day!🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2422930764','8435',0,1,1,NULL,NULL,'2025-04-03 22:00:12','2025-04-04 05:54:59'),(2175,49,'2422809398','2025-04-03 13:11:52','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq !desalle','https://www.twitch.tv/videos/2422809398','24993',0,1,1,NULL,NULL,'2025-04-03 22:00:12','2025-04-04 06:23:04'),(2176,54,'2422764914','2025-04-03 11:43:25','Join my OnlyPaws | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2422764914','26226',0,1,1,NULL,NULL,'2025-04-03 22:00:13','2025-04-04 06:41:47'),(2177,56,'2422473092','2025-04-03 01:00:57','Day 2 M5S! SAM Pov with the static','https://www.twitch.tv/videos/2422473092','14770',0,1,1,NULL,NULL,'2025-04-03 22:00:14','2025-04-04 07:21:25'),(2178,57,'2422517477','2025-04-03 01:55:58','🔴(a)WAKE@NITE🔴I AM BECOME BANTER🔴CHATTING/DRUSKI SHOW🔴SHEDULE 1 SLANGING LATER🔴JAPAN PLAN🔴!socials !manscaped','https://www.twitch.tv/videos/2422517477','27201',0,1,1,NULL,NULL,'2025-04-03 22:00:14','2025-04-04 07:53:54'),(2179,62,'2422665045','2025-04-03 06:38:10','FUNCLE IRL 🇭🇰 Build Day | !bc | $2 tts/tangia @cooksux @irissiri129 | Hong Kong','https://www.twitch.tv/videos/2422665045','25300',0,1,1,NULL,NULL,'2025-04-03 22:00:15','2025-04-04 08:24:26'),(2180,66,'2422874267','2025-04-03 15:06:56','🧁YABBE SHOW🧁 Omg she\'s back I can\'t believe it','https://www.twitch.tv/videos/2422874267','17807',0,1,1,NULL,NULL,'2025-04-03 22:00:16','2025-04-04 08:38:51'),(2181,69,'2422566486','2025-04-03 03:04:05','SOLO 🗡 days without UI incidents: 1 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2422566486','20591',0,1,1,NULL,NULL,'2025-04-03 22:00:17','2025-04-04 09:10:35'),(2182,70,'2422872573','2025-04-03 15:04:19','🤪 GEILER MANN MACHT GEILE SACHEN 🤪','https://www.twitch.tv/videos/2422872573','23850',0,1,1,NULL,NULL,'2025-04-03 22:00:17','2025-04-04 09:32:42'),(2183,74,'2422621965','2025-04-03 04:45:51','!Soulkeeper !Run Tag 2 um 10 Uhr | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2422621965','22527',0,1,1,NULL,NULL,'2025-04-03 22:00:18','2025-04-04 09:51:56'),(2184,75,'2422689467','2025-04-03 07:55:30','🟢LCK IST ZURÜCK BROOOOO vs NS🟢#LCKWatchparty !steelseries','https://www.twitch.tv/videos/2422689467','43840',0,1,1,NULL,NULL,'2025-04-03 22:00:18','2025-04-04 10:38:08'),(2185,76,'2422913616','2025-04-03 16:00:50','DER SOULKEEPERS RUN','https://www.twitch.tv/videos/2422913616','5240',0,1,1,NULL,NULL,'2025-04-03 22:00:18','2025-04-04 10:42:19'),(2188,88,'2422833612','2025-04-03 13:58:18','@Dye_live GM / LEVEZ LA MAIN POUR VOIR QUI EST LA -> 400 LP SOON AURELION SOL SUPPORT (!patreon)','https://www.twitch.tv/videos/2422833612','13910',0,1,1,NULL,NULL,'2025-04-03 22:00:20','2025-04-04 10:49:22'),(2189,90,'2422856837','2025-04-03 14:38:48','🌊 printemps = été en vrai 🌊 !holy','https://www.twitch.tv/videos/2422856837','21530',0,1,1,NULL,NULL,'2025-04-03 22:00:21','2025-04-04 11:01:22'),(2191,93,'2423170256','2025-04-03 21:06:55','20 HEURES DE RANKED EN 3 JOURS @samsokunn @wipr MWAHAHAHAHA','https://www.twitch.tv/videos/2423170256','3206',0,1,1,NULL,NULL,'2025-04-03 22:00:21','2025-04-04 11:14:42'),(2192,93,'2422790977','2025-04-03 12:36:50','DUOQ AVEC LE WIPSTICLEBS @wipr','https://www.twitch.tv/videos/2422790977','9091',0,1,1,NULL,NULL,'2025-04-03 22:00:21','2025-04-04 11:20:42'),(2193,97,'2423018807','2025-04-03 18:02:56','WATCHPARTY - TH vs GX l VCT EMEA 2025 STAGE 1','https://www.twitch.tv/videos/2423018807','14246',0,1,1,NULL,NULL,'2025-04-03 22:00:22','2025-04-04 11:35:30'),(2194,98,'2422726757','2025-04-03 09:56:44','🔴 J\'ADORE LES SILVERS ET LES GOLDS','https://www.twitch.tv/videos/2422726757','14560',0,1,1,NULL,NULL,'2025-04-03 22:00:22','2025-04-04 11:38:08'),(2195,100,'2422911540','2025-04-03 15:59:36','🚨RADIANT Ranked FR🚨// 70/30 ou que les petits ?? !coaching','https://www.twitch.tv/videos/2422911540','10549',0,1,1,NULL,NULL,'2025-04-03 22:00:23','2025-04-04 11:49:09'),(2196,100,'2422851399','2025-04-03 14:29:05','LE MEILLEUR STREAM DE VOTRE VIE // 70/30 Ou que les petits !coaching !youtube','https://www.twitch.tv/videos/2422851399','5343',0,1,1,NULL,NULL,'2025-04-03 22:00:23','2025-04-04 11:52:46'),(2197,104,'2422918668','2025-04-03 16:04:55','DARK SOULS 2 ve 20:00 WRECKFEST IG/X: @Miken_TV','https://www.twitch.tv/videos/2422918668','21328',0,1,1,NULL,NULL,'2025-04-03 22:00:24','2025-04-04 12:13:52'),(2198,103,'2421821988','2025-04-02 07:38:31','⚔️ ELDEN RING MARATHON DEN 1 ☠️ Death counter: 150😎Každých 100kč=1 sekunda pustím controller👻SCARY ALERTY V NOCI 🟥SPECIALNÍ ALERTY 🟥','https://www.twitch.tv/videos/2421821988','172795',0,1,1,NULL,NULL,'2025-04-04 09:10:04','2025-04-05 02:07:05'),(2199,5,'2423697360','2025-04-04 12:45:13','😈PIATKOVÉ ZNÁSOBENIE TURBULENČNYCH MOMENTOV😈KONTENTLANDIA😈TORPEDOBOREC HUMORU😈HERNÝ MEGAZORD😈!madmonq','https://www.twitch.tv/videos/2423697360','22551',0,1,1,NULL,NULL,'2025-04-05 02:07:23','2025-04-05 03:07:00'),(2200,9,'2423524894','2025-04-04 05:01:56','#1 | THE LAST OF US PART II: REMASTERED | PC MAXIMÁLNÍ DETAILY | DOHRAJU CELOU HRU NA JEDEN ZÁTAH?!','https://www.twitch.tv/videos/2423524894','53160',0,1,1,NULL,NULL,'2025-04-05 02:07:24','2025-04-05 04:06:06'),(2201,17,'2423727046','2025-04-04 13:38:06','DAYZ FRESH WIPE s Paradizo a Goes🌲🪙investuj na !cryptocom🪙🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2423727046','33440',0,1,1,NULL,NULL,'2025-04-05 02:07:25','2025-04-05 04:31:12'),(2202,18,'2423678083','2025-04-04 12:05:51','17.00 SINNERS vs 1DAYHEROES -BO3- PLAYZONE SPRING O VRS BODY!!! 🥳 !casehug !shop','https://www.twitch.tv/videos/2423678083','31550',0,1,1,NULL,NULL,'2025-04-05 02:07:25','2025-04-05 05:01:13'),(2203,20,'2423973611','2025-04-04 19:09:36','SC s klukama... pak se uvidí... / #RTXOn #DLSS','https://www.twitch.tv/videos/2423973611','17270',0,1,1,NULL,NULL,'2025-04-05 02:07:26','2025-04-05 05:12:24'),(2204,21,'2423766135','2025-04-04 14:45:44','cs, gamba a pak Dukie Pookie !backpack','https://www.twitch.tv/videos/2423766135','21320',0,1,1,NULL,NULL,'2025-04-05 02:07:26','2025-04-05 05:32:48'),(2206,29,'2423897744','2025-04-04 17:47:33','JDE SE NA TO | zejtra VOLNO🗣🗣🗣🗣 !dc !ig !mc','https://www.twitch.tv/videos/2423897744','17827',0,1,1,NULL,NULL,'2025-04-05 02:07:27','2025-04-05 05:45:11'),(2207,29,'2423879714','2025-04-04 17:24:07','JDE SE NA TO | zejtra VOLNO🗣🗣🗣🗣 !dc !ig !mc','https://www.twitch.tv/videos/2423879714','1390',0,1,1,NULL,NULL,'2025-04-05 02:07:27','2025-04-05 05:50:57'),(2208,30,'2423629956','2025-04-04 10:03:12','South of Midnight #1 😵‍💫 Kedy bude ďalší stream? Daj !dc do chatu','https://www.twitch.tv/videos/2423629956','10661',0,1,1,NULL,NULL,'2025-04-05 02:07:28','2025-04-05 06:01:05'),(2209,32,'2423845505','2025-04-04 16:42:16','Na měsíc a (možná) zpátky pod vedením @glubothemad !kytara','https://www.twitch.tv/videos/2423845505','23015',0,1,1,NULL,NULL,'2025-04-05 02:07:28','2025-04-05 06:17:45'),(2210,34,'2422890850','2025-04-03 15:33:40','🛑ODPALUJEM SUBATHON a VERDANSK s @vrkoslav 🛑!SOUTĚŽ o 20 000kč🛑 VERDANSK🛑','https://www.twitch.tv/videos/2422890850','108940',0,1,1,NULL,NULL,'2025-04-05 02:07:29','2025-04-05 08:37:26'),(2211,40,'2423744846','2025-04-04 14:08:05','Games and shit!','https://www.twitch.tv/videos/2423744846','21665',0,1,1,'2025-04-05 13:30:06','2025-04-05 13:40:28','2025-04-05 02:07:29','2025-04-05 13:57:41'),(2212,43,'2423881193','2025-04-04 17:25:59','LIT SECONDA DI CAMPIONATO - ANC LEGENDS VS AXL','https://www.twitch.tv/videos/2423881193','5560',0,1,1,NULL,NULL,'2025-04-05 02:07:30','2025-04-05 09:02:29'),(2213,43,'2423619845','2025-04-04 09:31:50','Yoooo Strongest player Italy Playing','https://www.twitch.tv/videos/2423619845','21730',0,1,1,NULL,NULL,'2025-04-05 02:07:30','2025-04-05 09:23:33'),(2214,44,'2423960799','2025-04-04 18:58:34','chaos witch !poe2 #ad','https://www.twitch.tv/videos/2423960799','11210',0,1,1,NULL,NULL,'2025-04-05 02:07:30','2025-04-05 09:36:31'),(2215,44,'2423526263','2025-04-04 05:04:41','the sinister four','https://www.twitch.tv/videos/2423526263','8978',0,1,1,NULL,NULL,'2025-04-05 02:07:30','2025-04-05 09:44:57'),(2216,45,'2423851129','2025-04-04 16:50:11','It\'s Friday, Friday Gotta get down on Friday Everybody\'s lookin\' forward to the weekend, weekend | !onlyfangs !gamersupps','https://www.twitch.tv/videos/2423851129','21790',0,1,1,NULL,NULL,'2025-04-05 02:07:31','2025-04-05 10:29:16'),(2217,46,'2423665975','2025-04-04 11:41:00','🎉🥳FRIDAYS WITH NYMN! Community games and stuff!! HAPPY WEEKEND 🎊🎁','https://www.twitch.tv/videos/2423665975','20480',0,1,1,NULL,NULL,'2025-04-05 02:07:31','2025-04-05 10:40:32'),(2218,47,'2423931395','2025-04-04 18:25:24','🔴 EPIC ROAD TRIP 4 PANATTA MACHINES 4 IRON FORGE GYM - Playing !poe2 when home 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2423931395','27727',0,1,1,NULL,NULL,'2025-04-05 02:07:31','2025-04-05 13:03:00'),(2219,47,'2423922979','2025-04-04 18:15:09','🔴 EPIC ROAD TRIP 4 PANATTA MACHINES 4 IRON FORGE GYM - Playing !poe2 when home 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2423922979','100',0,1,1,NULL,NULL,'2025-04-05 02:07:31','2025-04-05 13:03:08'),(2220,47,'2423675046','2025-04-04 12:00:46','🔴NEW PANATTA MACHINES FOR IRON FORGE GYM🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2423675046','22059',0,1,1,NULL,NULL,'2025-04-05 02:07:31','2025-04-05 13:24:07'),(2221,49,'2423771643','2025-04-04 14:55:14','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq !desalle','https://www.twitch.tv/videos/2423771643','22706',0,1,1,'2025-04-05 18:40:03','2025-04-05 18:48:49','2025-04-05 02:07:32','2025-04-05 19:00:15'),(2222,54,'2423663367','2025-04-04 11:34:18','I like recommending games | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2423663367','30081',0,1,1,'2025-04-05 13:40:28','2025-04-05 14:13:23','2025-04-05 02:07:33','2025-04-05 14:29:23'),(2223,56,'2423394372','2025-04-04 01:40:52','Hopeful M5S clear','https://www.twitch.tv/videos/2423394372','12090',0,1,1,'2025-04-05 14:13:23','2025-04-05 14:32:29','2025-04-05 02:07:33','2025-04-05 14:49:00'),(2224,58,'2423638388','2025-04-04 10:29:18','THE NETHER⭐NEW MONITOR⭐FLOPPA FRIDAY⭐TITLE = SCANNED⭐EVERYONE WELCOME⭐ NO SMOKING ZONE⭐','https://www.twitch.tv/videos/2423638388','12260',0,1,1,'2025-04-05 14:32:29','2025-04-05 14:40:56','2025-04-05 02:07:33','2025-04-05 14:55:48'),(2225,61,'2423742057','2025-04-04 14:03:32','IRL @ SMU D1 College Football Spring Practice! Coach Esfand Returns Soon! - @esfandtv all socials','https://www.twitch.tv/videos/2423742057','4835',0,1,1,'2025-04-05 14:40:56','2025-04-05 14:48:10','2025-04-05 02:07:34','2025-04-05 14:59:43'),(2226,66,'2423742650','2025-04-04 14:04:32','🤩Friday with Yape🤩 Junimo Cart Challenge 🌞🚵','https://www.twitch.tv/videos/2423742650','23520',0,1,1,'2025-04-05 14:48:10','2025-04-05 15:13:09','2025-04-05 02:07:35','2025-04-05 15:31:22'),(2227,67,'2423298285','2025-04-03 23:52:58','LAST STREAM UNTIL JAPAN 🎳 BIG LEBOWSKI THEMED BOWLING STREAM with @penta & @wakewilder 🎳 YOU\'RE OVER THE LINE!!!!!🎳 !YOUTUBE','https://www.twitch.tv/videos/2423298285','15920',0,1,1,'2025-04-05 15:13:09','2025-04-05 15:40:11','2025-04-05 02:07:35','2025-04-05 15:55:36'),(2228,70,'2423782269','2025-04-04 15:09:56','🤪 GEILER MANN MACHT GEILE SACHEN 🤪','https://www.twitch.tv/videos/2423782269','25556',0,1,1,'2025-04-05 15:40:11','2025-04-05 15:57:10','2025-04-05 02:07:36','2025-04-05 16:14:14'),(2229,72,'2423963471','2025-04-04 19:00:39','R9 again? MONSTER Immortals Pack Opening! | !prime !taktik','https://www.twitch.tv/videos/2423963471','11460',0,1,1,'2025-04-05 15:57:10','2025-04-05 16:15:25','2025-04-05 02:07:36','2025-04-05 16:25:15'),(2230,74,'2423519342','2025-04-04 04:50:34','10:00 !Soulkeepers !Run Tag 3 | !youtube !Holzkern | Werbung','https://www.twitch.tv/videos/2423519342','22249',0,1,1,'2025-04-05 16:15:25','2025-04-05 16:31:47','2025-04-05 02:07:37','2025-04-05 16:51:29'),(2231,75,'2423599841','2025-04-04 08:28:49','🟢HLE vs KT & T1 vs DRX ANWESENHEITSPFLICHT🟢#LCKWatchparty !steelseries','https://www.twitch.tv/videos/2423599841','33990',0,1,1,'2025-04-05 16:31:47','2025-04-05 16:56:29','2025-04-05 02:07:37','2025-04-05 17:20:49'),(2232,76,'2423827638','2025-04-04 16:16:54','DS1 NO DEATH RUN (aus Trotz) -> Elden Ring DLC','https://www.twitch.tv/videos/2423827638','18660',0,1,1,'2025-04-05 16:56:29','2025-04-05 17:10:12','2025-04-05 02:07:37','2025-04-05 17:39:09'),(2233,78,'2423742323','2025-04-04 14:03:58','Training !ZLAN avec @wingo | !zlan !patreon !boutique','https://www.twitch.tv/videos/2423742323','18155',0,1,1,'2025-04-05 17:10:12','2025-04-05 17:22:11','2025-04-05 02:07:38','2025-04-05 17:49:57'),(2237,88,'2423742069','2025-04-04 14:03:33','@Dye_live GM / LEVEZ LA MAIN POUR VOIR QUI EST LA -> 400 LP SOON AURELION SOL SUPPORT (!patreon)','https://www.twitch.tv/videos/2423742069','13326',0,1,1,'2025-04-05 17:22:11','2025-04-05 17:31:38','2025-04-05 02:07:40','2025-04-05 17:57:59'),(2238,90,'2423835587','2025-04-04 16:28:32','🌊Nouvelle coupe trop heureuse ! !holy','https://www.twitch.tv/videos/2423835587','11910',0,1,1,'2025-04-05 17:31:38','2025-04-05 17:39:47','2025-04-05 02:07:40','2025-04-05 18:04:30'),(2240,93,'2424072737','2025-04-04 21:09:20','cadavérique 5stack de la noche @wipr @akit_a @samsokunn','https://www.twitch.tv/videos/2424072737','10819',0,1,1,'2025-04-05 17:39:47','2025-04-05 17:47:39','2025-04-05 02:07:41','2025-04-05 18:10:48'),(2241,93,'2423665482','2025-04-04 11:39:50','duoQ de casters feat @wipr','https://www.twitch.tv/videos/2423665482','12357',0,1,1,'2025-04-05 17:47:39','2025-04-05 17:57:00','2025-04-05 02:07:41','2025-04-05 18:22:16'),(2242,98,'2423628555','2025-04-04 09:59:48','🔴 J\'AI MIS 2000€ SUR VALORANT ☠️☠️☠️','https://www.twitch.tv/videos/2423628555','16994',0,1,1,'2025-04-05 17:57:00','2025-04-05 18:09:22','2025-04-05 02:07:42','2025-04-05 18:32:28'),(2244,100,'2423740790','2025-04-04 14:01:40','🚨RADIANT Ranked FR🚨// 70/30 ou que les petits ?? !coaching','https://www.twitch.tv/videos/2423740790','13612',0,1,1,'2025-04-05 18:09:22','2025-04-05 18:24:10','2025-04-05 02:07:42','2025-04-05 18:48:11'),(2245,104,'2423812579','2025-04-04 15:57:28','AAAHHHHHHHHHHHH IG/X: @Miken_TV','https://www.twitch.tv/videos/2423812579','11268',0,1,1,'2025-04-05 18:24:10','2025-04-05 18:36:25','2025-04-05 02:07:43','2025-04-05 18:53:55'),(2246,1,'2424829238','2025-04-05 17:15:50','⛳ GOLF S TÁTOU, LAST OF US PART II ⛳ TOP DONO BERE POSLEDNÍ 2024 BOX ⛳ DONO = 1x 2025 BOX S KUDLOU A 2x LAST OF US PART II PC ⛳ !karta #ad','https://www.twitch.tv/videos/2424829238','17053',0,1,1,'2025-04-05 22:10:02','2025-04-05 22:17:38','2025-04-05 22:00:03','2025-04-05 22:34:31'),(2247,7,'2424594442','2025-04-05 11:20:57','[DROPS] Huge update - teprve začínám! 🗡️🐈 Huntress 🐈🗡️ !drops','https://www.twitch.tv/videos/2424594442','17520',0,1,1,'2025-04-05 22:17:38','2025-04-05 22:30:14','2025-04-05 22:00:04','2025-04-05 22:46:00'),(2248,16,'2424866416','2025-04-05 18:00:05','⚔️ 21:00 Trojúhelník Fred Radar Molly FINÁLE ⚔️ !recap pro souhrn příběhu ⚔️','https://www.twitch.tv/videos/2424866416','13480',0,1,1,'2025-04-05 22:30:14','2025-04-05 22:50:05','2025-04-05 22:00:05','2025-04-05 23:07:16'),(2249,17,'2424623462','2025-04-05 12:17:21','IRL PRAGUE CARD SHOW by !kartickarna🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2424623462','33870',0,1,1,'2025-04-05 22:50:05','2025-04-05 23:25:18','2025-04-05 22:00:05','2025-04-05 23:51:04'),(2250,17,'2424509253','2025-04-05 07:40:05','IRL PRAGUE CARD SHOW by !kartickarna🎉neděle speciální narozeninový stream🎉SLEDUJ MĚ NA IG: @spajkk','https://www.twitch.tv/videos/2424509253','16010',0,1,1,'2025-04-05 23:25:18','2025-04-05 23:36:07','2025-04-05 22:00:05','2025-04-06 00:11:14'),(2251,21,'2424797762','2025-04-05 16:39:05','🍩🍩🍩🍩🍩🍩🍩🍩🍩🍩 !backpack','https://www.twitch.tv/videos/2424797762','16230',0,1,1,'2025-04-05 23:36:07','2025-04-06 00:00:34','2025-04-05 22:00:06','2025-04-06 00:32:38'),(2252,29,'2424823497','2025-04-05 17:08:51','----------------- | zejtra VOLNO🗣🗣🗣🗣 !dc !ig !mc','https://www.twitch.tv/videos/2424823497','17477',0,1,1,'2025-04-06 00:00:34','2025-04-06 00:17:41','2025-04-05 22:00:08','2025-04-06 00:39:02'),(2253,33,'2424520279','2025-04-05 08:08:38','[DROPS] Nová Path of Exile 2 liga! Máš otázky? Ptej se! | !kniha !elite','https://www.twitch.tv/videos/2424520279','24991',0,1,1,'2025-04-06 00:17:41','2025-04-06 00:35:52','2025-04-05 22:00:09','2025-04-06 00:58:38'),(2254,40,'2424687369','2025-04-05 14:02:56','Games and shit!','https://www.twitch.tv/videos/2424687369','21312',0,1,1,'2025-04-06 00:35:52','2025-04-06 00:59:22','2025-04-05 22:00:10','2025-04-06 01:10:45'),(2255,41,'2424777184','2025-04-05 16:11:39','Juiced 2 - back from a 5h Bike Ride !Peak !mm !ig','https://www.twitch.tv/videos/2424777184','18022',0,1,1,'2025-04-06 00:59:22','2025-04-06 01:12:25','2025-04-05 22:00:10','2025-04-06 01:30:04'),(2256,43,'2424543306','2025-04-05 09:11:50','YOOOOOOOOO BUONGIORNO BOOOYZ','https://www.twitch.tv/videos/2424543306','21953',0,1,1,'2025-04-06 01:12:25','2025-04-06 01:27:54','2025-04-05 22:00:11','2025-04-06 01:43:40'),(2257,44,'2424415976','2025-04-05 04:19:23','stinky','https://www.twitch.tv/videos/2424415976','32213',0,1,1,'2025-04-06 01:27:54','2025-04-06 02:18:43','2025-04-05 22:00:11','2025-04-06 02:35:55'),(2258,45,'2424763349','2025-04-05 15:55:12','I\'ve got one last raid in me | !onlyfangs !gamersupps','https://www.twitch.tv/videos/2424763349','21899',0,1,1,'2025-04-06 02:18:43','2025-04-06 02:56:06','2025-04-05 22:00:12','2025-04-06 03:14:18'),(2259,46,'2424676093','2025-04-05 13:46:24','💀 LAST WOW STREAM ⚔️ [FOR REAL THIS TIME] (final final(this time I really mean it)) 🧙‍♂️','https://www.twitch.tv/videos/2424676093','24190',0,1,1,'2025-04-06 02:56:06','2025-04-06 03:12:45','2025-04-05 22:00:12','2025-04-06 03:33:45'),(2260,47,'2424831656','2025-04-05 17:18:48','Building a better gym 🔴 Playing !PoE2 TODAY 100% 🔴 !KNKG !freespirit !kost1 🇺🇸','https://www.twitch.tv/videos/2424831656','16884',0,1,1,'2025-04-06 03:12:45','2025-04-06 03:47:28','2025-04-05 22:00:12','2025-04-06 04:08:47'),(2261,49,'2424726569','2025-04-05 15:02:29','SOLO | New Players Welcome - 13k hrs | !fractal !madmonq !desalle','https://www.twitch.tv/videos/2424726569','19549',0,1,1,'2025-04-06 03:47:28','2025-04-06 04:00:41','2025-04-05 22:00:12','2025-04-06 04:13:18'),(2262,54,'2424591409','2025-04-05 11:13:40','It\'s the weekend | !Portfolio | !Discord | !YT | !SAC','https://www.twitch.tv/videos/2424591409','32074',0,1,1,'2025-04-06 04:00:41','2025-04-06 04:37:05','2025-04-05 22:00:14','2025-04-06 04:56:11'),(2263,57,'2424267026','2025-04-05 01:06:44','🔴(a)WAKE@NITE🔴WE BANTER🔴PATH OF EXILE 2 HARDCORE (1ST TIME EVER)🔴CHATTING/DRUSKI SHOW🔴SHEDULE 1 LATER🔴JAPAN PLAN🔴!socials #ad !poe','https://www.twitch.tv/videos/2424267026','20770',0,1,1,'2025-04-06 04:37:05','2025-04-06 05:01:05','2025-04-05 22:00:14','2025-04-06 05:18:43'),(2264,66,'2424576131','2025-04-05 10:39:01','🌱Stardew Saturday🌱 🌞JUNIMO KART CHALLENGE🚵','https://www.twitch.tv/videos/2424576131','37388',0,1,1,'2025-04-06 05:01:05','2025-04-06 05:26:55','2025-04-05 22:00:16','2025-04-06 05:47:39'),(2265,69,'2424310486','2025-04-05 01:58:31','SOLO 🗡 days without UI incidents: 2 🗡 NEW !youtube video!','https://www.twitch.tv/videos/2424310486','23205',0,1,1,'2025-04-06 05:26:55','2025-04-06 05:53:14','2025-04-05 22:00:17','2025-04-06 06:11:31'),(2266,70,'2424735807','2025-04-05 15:15:37','🤪 BASTI & KEVIN SPIELEN SPLITFICTION POGGERS 🤪','https://www.twitch.tv/videos/2424735807','24280',0,1,1,'2025-04-06 05:53:14','2025-04-06 06:12:06','2025-04-05 22:00:17','2025-04-06 06:35:12'),(2267,75,'2424546395','2025-04-05 09:20:25','🟢DETROIT MIT CONNOR, HANK UND EUCH | LEC MORGEN 14 UHR🟢steelseries','https://www.twitch.tv/videos/2424546395','35610',0,1,1,'2025-04-06 06:12:06','2025-04-06 06:37:38','2025-04-05 22:00:18','2025-04-06 07:05:19'),(2268,85,'2424509561','2025-04-05 07:40:59','1-0 WEEK SOLOQ','https://www.twitch.tv/videos/2424509561','4840',0,1,1,'2025-04-06 06:37:38','2025-04-06 06:41:01','2025-04-05 22:00:20','2025-04-06 07:11:25'),(2269,88,'2424693556','2025-04-05 14:12:17','@Dye_live GM / 1 MIN DE RETARD = 1 POMPE -> 400 LP SOON AURELION SOL SUPPORT (!patreon)','https://www.twitch.tv/videos/2424693556','14772',0,1,1,'2025-04-06 06:41:01','2025-04-06 06:50:50','2025-04-05 22:00:21','2025-04-06 07:19:33'),(2270,93,'2424962109','2025-04-05 19:43:22','les opprimés se rebellent ce soir ... @wipr @akit_a @samsokunn','https://www.twitch.tv/videos/2424962109','8219',0,1,1,'2025-04-06 06:50:50','2025-04-06 07:03:17','2025-04-05 22:00:21','2025-04-06 07:26:41'),(2271,97,'2425025404','2025-04-05 20:59:01','OUE OUE OUE GUEZZ MY RANK APRES','https://www.twitch.tv/videos/2425025404','3681',0,1,1,'2025-04-06 07:03:17','2025-04-06 07:11:26','2025-04-05 22:00:22','2025-04-06 07:39:48'),(2272,98,'2424560000','2025-04-05 09:57:52','🔴 INSTALOCK JETT FULL FUN','https://www.twitch.tv/videos/2424560000','15483',0,1,1,'2025-04-06 07:11:26','2025-04-06 07:22:03','2025-04-05 22:00:23','2025-04-06 07:51:19'),(2273,104,'2424566173','2025-04-05 10:12:31','BOMBOCLAT 3 HODINY SPÁNKU IG/X: @Miken_TV','https://www.twitch.tv/videos/2424566173','10486',0,1,1,'2025-04-06 07:22:03','2025-04-06 07:29:18','2025-04-05 22:00:24','2025-04-06 07:42:40'); +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2025-04-06 15:52:46 diff --git a/tsconfig.json b/src/tsconfig.json similarity index 100% rename from tsconfig.json rename to src/tsconfig.json diff --git a/vite.config.ts b/src/vite.config.ts similarity index 100% rename from vite.config.ts rename to src/vite.config.ts