new workflow

This commit is contained in:
5rahim
2023-12-21 19:50:10 -05:00
parent 6af768bae4
commit 2c0aabd4e9
97 changed files with 107 additions and 557 deletions

View File

@@ -11,8 +11,35 @@ permissions:
jobs:
build-webapp:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
# Web
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies and build Next.js app
run: |
cd seanime-web/
npm install
npm run build
- name: Archive web folder
uses: actions/upload-artifact@v2
with:
name: web
path: seanime-web/web
create-release-draft:
runs-on: ubuntu-latest
needs: build-webapp
steps:
- name: Checkout code
@@ -23,20 +50,14 @@ jobs:
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v2
# Download the web/ folder artifact
- name: Download web folder artifact
uses: actions/download-artifact@v2
with:
go-version: 1.21
# - name: Login to Docker Hub
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKER_HUB_USERNAME }}
# password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
#
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v1
name: web
path: web
# Python
- name: Set up Python
uses: actions/setup-python@v4
with:
@@ -44,6 +65,11 @@ jobs:
- name: Generate Release Notes
run: python ./.github/scripts/generate-release-notes.py
# Go
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5

2
.gitignore vendored
View File

@@ -4,6 +4,7 @@ logs/
.env
logs
web/
test/sample
test/jwt.json
@@ -23,6 +24,7 @@ seanime-parser/.git
##
seanime-web/node_modules
seanime-web/out
seanime-web/web
seanime-web/.next
seanime-web/.idea
seanime-web/.env

View File

@@ -44,7 +44,7 @@ archives:
files:
- web/*
- README.md
- LICENSE.md
- LICENSE
nfpms:
- file_name_template: '{{- .ProjectName }}-

View File

@@ -2,6 +2,15 @@
All notable changes to this project will be documented in this file.
## 0.1.3
- ✨ Added scanner logs
- ⚡️ Improved standard scanning mode accuracy
- 🦺 Fixed unmatched file manager
- 🏗️ Refactored code and tests
- ⬆️ Updated dependencies
- 🔨 Updated release workflow
## 0.1.2
- 🚑️ Fixed incorrect redirection to non-existent page

View File

View File

@@ -1,6 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
distDir: 'web',
cleanDistDir: true,
images: {
unoptimized: true,
},

View File

@@ -1,16 +1,17 @@
import { MediaEntryEpisode } from "@/lib/server/types"
import { memo, startTransition, useEffect, useMemo } from "react"
import { useSetAtom } from "jotai/react"
import { __libraryHeaderImageAtom } from "@/app/(main)/(library)/_containers/library-header"
import { LargeEpisodeListItem } from "@/components/shared/large-episode-list-item"
import { useRouter } from "next/navigation"
import { Slider } from "@/components/shared/slider"
import { formatDistanceToNow, isBefore, subYears } from "date-fns"
import {MediaEntryEpisode} from "@/lib/server/types"
import {memo, startTransition, useEffect, useMemo} from "react"
import {useSetAtom} from "jotai/react"
import {__libraryHeaderImageAtom} from "@/app/(main)/(library)/_containers/library-header"
import {LargeEpisodeListItem} from "@/components/shared/large-episode-list-item"
import {useRouter} from "next/navigation"
import {Slider} from "@/components/shared/slider"
import {formatDistanceToNow, isBefore, subYears} from "date-fns"
export function ContinueWatching({ list, isLoading }: {
export function ContinueWatching({list, isLoading}: {
list: MediaEntryEpisode[],
isLoading: boolean
}) {
})
{
if (list.length > 0) return (
<div className="space-y-8 p-4">
@@ -35,6 +36,10 @@ const EpisodeItem = memo((props: MediaEntryEpisode) => {
const mediaIsOlder = useMemo(() => date ? isBefore(date, subYears(new Date(), 2)) : undefined, [])
useEffect(() => {
console.log(props.basicMedia)
}, []);
useEffect(() => {
setHeaderImage(prev => {
if (prev === null) {
@@ -51,11 +56,12 @@ const EpisodeItem = memo((props: MediaEntryEpisode) => {
<span className={"opacity-40"}>/{` `}{props.basicMedia.episodes}</span>}</span>}
topTitle={props.basicMedia?.title?.userPreferred}
actionIcon={undefined}
meta={(date) ? (!mediaIsOlder ? `${formatDistanceToNow(date, { addSuffix: true })}` : new Intl.DateTimeFormat("en-US", {
day: "2-digit",
month: "2-digit",
year: "2-digit",
}).format(date)) : undefined}
meta={(date) ? (!mediaIsOlder ? `${formatDistanceToNow(date, {addSuffix: true})}` : new Intl.DateTimeFormat(
"en-US", {
day: "2-digit",
month: "2-digit",
year: "2-digit",
}).format(date)) : undefined}
onClick={() => {
router.push(`/entry?id=${props.basicMedia?.id}&playNext=true`)
}}

View File

@@ -1,13 +1,14 @@
import { atom } from "jotai"
import { LibraryCollection } from "@/lib/server/types"
import { atomWithStorage } from "jotai/utils"
import { useSetAtom } from "jotai/react"
import { useEffect } from "react"
import { useSeaQuery } from "@/lib/server/queries/utils"
import { SeaEndpoints } from "@/lib/server/endpoints"
import {atom} from "jotai"
import {LibraryCollection} from "@/lib/server/types"
import {atomWithStorage} from "jotai/utils"
import {useSetAtom} from "jotai/react"
import {useEffect} from "react"
import {useSeaQuery} from "@/lib/server/queries/utils"
import {SeaEndpoints} from "@/lib/server/endpoints"
export const libraryCollectionAtom = atomWithStorage<LibraryCollection | undefined>("sea-library-collection", undefined, undefined, { unstable_getOnInit: true })
export const libraryCollectionAtom = atomWithStorage<LibraryCollection | undefined>("sea-library-collection", undefined,
undefined, {getOnInit: true})
export const getAtomicLibraryEntryAtom = atom(get => get(libraryCollectionAtom),
(get, set, payload: number) => {

View File

@@ -1,8 +1,9 @@
import { atomWithStorage } from "jotai/utils"
import { Settings } from "@/lib/server/types"
import { useAtom } from "jotai/react"
import {atomWithStorage} from "jotai/utils"
import {Settings} from "@/lib/server/types"
import {useAtom} from "jotai/react"
export const settingsAtom = atomWithStorage<Settings | undefined>("sea-settings", undefined, undefined, { unstable_getOnInit: true })
export const settingsAtom = atomWithStorage<Settings | undefined>("sea-settings", undefined, undefined,
{getOnInit: true})
export function useStoredSettings() {

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -20,9 +24,20 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"../web/types/**/*.ts",
"web/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
self.__BUILD_MANIFEST={__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},"/_error":["static/chunks/pages/_error-d6885ef27f2c5e3d.js"],sortedPages:["/_app","/_error"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();

View File

@@ -1 +0,0 @@
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[726],{97726:function(e,t,n){n.d(t,{O4:function(){return atomWithStorage}});var r=n(77665);let o=Symbol(),isPromiseLike=e=>"function"==typeof(null==e?void 0:e.then);function createJSONStorage(e){let t,n;let r={getItem:(r,o)=>{var i,a;let parse=e=>{if(t!==(e=e||"")){try{n=JSON.parse(e)}catch{return o}t=e}return n},u=null!=(a=null==(i=e())?void 0:i.getItem(r))?a:null;return isPromiseLike(u)?u.then(parse):parse(u)},setItem:(t,n)=>{var r;return null==(r=e())?void 0:r.setItem(t,JSON.stringify(n))},removeItem:t=>{var n;return null==(n=e())?void 0:n.removeItem(t)}};return"undefined"!=typeof window&&"function"==typeof window.addEventListener&&window.Storage&&(r.subscribe=(t,n,r)=>{if(!(e() instanceof window.Storage))return()=>{};let storageEventCallback=o=>{if(o.storageArea===e()&&o.key===t){let e;try{e=JSON.parse(o.newValue||"")}catch{e=r}n(e)}};return window.addEventListener("storage",storageEventCallback),()=>{window.removeEventListener("storage",storageEventCallback)}}),r}let i=createJSONStorage(()=>"undefined"!=typeof window?window.localStorage:void 0);function atomWithStorage(e,t,n=i,a){let u=null==a?void 0:a.unstable_getOnInit,l=(0,r.cn)(u?n.getItem(e,t):t);l.debugPrivate=!0,l.onMount=r=>{let o;return u||r(n.getItem(e,t)),n.subscribe&&(o=n.subscribe(e,r,t)),o};let s=(0,r.cn)(e=>e(l),(r,i,a)=>{let u="function"==typeof a?a(r(l)):a;return u===o?(i(l,t),n.removeItem(e)):u instanceof Promise?u.then(t=>(i(l,t),n.setItem(e,t))):(i(l,u),n.setItem(e,u))});return s}}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,9 +0,0 @@
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[77],{32329:function(r,e,t){Promise.resolve().then(t.bind(t,66282))},66282:function(r,e,t){"use strict";t.r(e),t.d(e,{default:function(){return Page}});var n=t(57437),o=t(23890),i=t(751);function Page(){var r,e;let t=(0,o.Dv)(i.X),u=null==t?void 0:t.settings;return u?(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("div",{className:"w-[80%] h-[calc(100vh-15rem)] rounded-xl border border-[--border] overflow-hidden mx-auto mt-10 ring-1 ring-[--border] ring-offset-2",children:(0,n.jsx)("iframe",{src:"http://".concat(null===(r=u.torrent)||void 0===r?void 0:r.qbittorrentHost,":").concat(String(null===(e=u.torrent)||void 0===e?void 0:e.qbittorrentPort)),className:"w-full h-full"})})}):null}},751:function(r,e,t){"use strict";t.d(e,{X:function(){return o}});var n=t(57685);let o=(0,n.sn)(void 0)},30622:function(r,e,t){"use strict";/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/var n=t(2265),o=Symbol.for("react.element"),i=Symbol.for("react.fragment"),u=Object.prototype.hasOwnProperty,s=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l={key:!0,ref:!0,__self:!0,__source:!0};function q(r,e,t){var n,i={},c=null,f=null;for(n in void 0!==t&&(c=""+t),void 0!==e.key&&(c=""+e.key),void 0!==e.ref&&(f=e.ref),e)u.call(e,n)&&!l.hasOwnProperty(n)&&(i[n]=e[n]);if(r&&r.defaultProps)for(n in e=r.defaultProps)void 0===i[n]&&(i[n]=e[n]);return{$$typeof:o,type:r,key:c,ref:f,props:i,_owner:s.current}}e.Fragment=i,e.jsx=q,e.jsxs=q},57437:function(r,e,t){"use strict";r.exports=t(30622)}},function(r){r.O(0,[890,685,971,472,744],function(){return r(r.s=32329)}),_N_E=r.O()}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[165],{83155:function(e,t,n){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_not-found",function(){return n(31038)}])},31038:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"default",{enumerable:!0,get:function(){return NotFound}});let l=n(21024),o=l._(n(2265)),r={error:{fontFamily:'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',height:"100vh",textAlign:"center",display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center"},desc:{display:"inline-block"},h1:{display:"inline-block",margin:"0 20px 0 0",padding:"0 23px 0 0",fontSize:24,fontWeight:500,verticalAlign:"top",lineHeight:"49px"},h2:{fontSize:14,fontWeight:400,lineHeight:"49px",margin:0}};function NotFound(){return o.default.createElement(o.default.Fragment,null,o.default.createElement("title",null,"404: This page could not be found."),o.default.createElement("div",{style:r.error},o.default.createElement("div",null,o.default.createElement("style",{dangerouslySetInnerHTML:{__html:"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}),o.default.createElement("h1",{className:"next-error-h1",style:r.h1},"404"),o.default.createElement("div",{style:r.desc},o.default.createElement("h2",{style:r.h2},"This page could not be found.")))))}("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)}},function(e){e.O(0,[971,472,744],function(){return e(e.s=83155)}),_N_E=e.O()}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[744],{60039:function(e,n,_){Promise.resolve().then(_.t.bind(_,33728,23)),Promise.resolve().then(_.t.bind(_,29928,23)),Promise.resolve().then(_.t.bind(_,56954,23)),Promise.resolve().then(_.t.bind(_,3170,23)),Promise.resolve().then(_.t.bind(_,7264,23)),Promise.resolve().then(_.t.bind(_,48297,23))}},function(e){var __webpack_exec__=function(n){return e(e.s=n)};e.O(0,[971,472],function(){return __webpack_exec__(62019),__webpack_exec__(60039)}),_N_E=e.O()}]);

View File

@@ -1 +0,0 @@
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[888],{41597:function(_,n,e){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_app",function(){return e(28955)}])}},function(_){var __webpack_exec__=function(n){return _(_.s=n)};_.O(0,[774,179],function(){return __webpack_exec__(41597),__webpack_exec__(24751)}),_N_E=_.O()}]);

View File

@@ -1 +0,0 @@
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[820],{81981:function(n,_,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_error",function(){return u(34570)}])}},function(n){n.O(0,[888,774,179],function(){return n(n.s=81981)}),_N_E=n.O()}]);

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
!function(){"use strict";var e,r,_,t,n,u,i,c,o,a={},p={};function __webpack_require__(e){var r=p[e];if(void 0!==r)return r.exports;var _=p[e]={id:e,loaded:!1,exports:{}},t=!0;try{a[e](_,_.exports,__webpack_require__),t=!1}finally{t&&delete p[e]}return _.loaded=!0,_.exports}__webpack_require__.m=a,e=[],__webpack_require__.O=function(r,_,t,n){if(_){n=n||0;for(var u=e.length;u>0&&e[u-1][2]>n;u--)e[u]=e[u-1];e[u]=[_,t,n];return}for(var i=1/0,u=0;u<e.length;u++){for(var _=e[u][0],t=e[u][1],n=e[u][2],c=!0,o=0;o<_.length;o++)i>=n&&Object.keys(__webpack_require__.O).every(function(e){return __webpack_require__.O[e](_[o])})?_.splice(o--,1):(c=!1,n<i&&(i=n));if(c){e.splice(u--,1);var a=t()}}return a},__webpack_require__.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(r,{a:r}),r},_=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},__webpack_require__.t=function(e,t){if(1&t&&(e=this(e)),8&t||"object"==typeof e&&e&&(4&t&&e.__esModule||16&t&&"function"==typeof e.then))return e;var n=Object.create(null);__webpack_require__.r(n);var u={};r=r||[null,_({}),_([]),_(_)];for(var i=2&t&&e;"object"==typeof i&&!~r.indexOf(i);i=_(i))Object.getOwnPropertyNames(i).forEach(function(r){u[r]=function(){return e[r]}});return u.default=function(){return e},__webpack_require__.d(n,u),n},__webpack_require__.d=function(e,r){for(var _ in r)__webpack_require__.o(r,_)&&!__webpack_require__.o(e,_)&&Object.defineProperty(e,_,{enumerable:!0,get:r[_]})},__webpack_require__.f={},__webpack_require__.e=function(e){return Promise.all(Object.keys(__webpack_require__.f).reduce(function(r,_){return __webpack_require__.f[_](e,r),r},[]))},__webpack_require__.u=function(e){},__webpack_require__.miniCssF=function(e){return"static/css/1d100f42f4ac0647.css"},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t={},n="_N_E:",__webpack_require__.l=function(e,r,_,u){if(t[e]){t[e].push(r);return}if(void 0!==_)for(var i,c,o=document.getElementsByTagName("script"),a=0;a<o.length;a++){var p=o[a];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")==n+_){i=p;break}}i||(c=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,__webpack_require__.nc&&i.setAttribute("nonce",__webpack_require__.nc),i.setAttribute("data-webpack",n+_),i.src=__webpack_require__.tu(e)),t[e]=[r];var onScriptComplete=function(r,_){i.onerror=i.onload=null,clearTimeout(f);var n=t[e];if(delete t[e],i.parentNode&&i.parentNode.removeChild(i),n&&n.forEach(function(e){return e(_)}),r)return r(_)},f=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=onScriptComplete.bind(null,i.onerror),i.onload=onScriptComplete.bind(null,i.onload),c&&document.head.appendChild(i)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e},__webpack_require__.tt=function(){return void 0===u&&(u={createScriptURL:function(e){return e}},"undefined"!=typeof trustedTypes&&trustedTypes.createPolicy&&(u=trustedTypes.createPolicy("nextjs#bundler",u))),u},__webpack_require__.tu=function(e){return __webpack_require__.tt().createScriptURL(e)},__webpack_require__.p="/_next/",i={272:0},__webpack_require__.f.j=function(e,r){var _=__webpack_require__.o(i,e)?i[e]:void 0;if(0!==_){if(_)r.push(_[2]);else if(272!=e){var t=new Promise(function(r,t){_=i[e]=[r,t]});r.push(_[2]=t);var n=__webpack_require__.p+__webpack_require__.u(e),u=Error();__webpack_require__.l(n,function(r){if(__webpack_require__.o(i,e)&&(0!==(_=i[e])&&(i[e]=void 0),_)){var t=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;u.message="Loading chunk "+e+" failed.\n("+t+": "+n+")",u.name="ChunkLoadError",u.type=t,u.request=n,_[1](u)}},"chunk-"+e,e)}else i[e]=0}},__webpack_require__.O.j=function(e){return 0===i[e]},c=function(e,r){var _,t,n=r[0],u=r[1],c=r[2],o=0;if(n.some(function(e){return 0!==i[e]})){for(_ in u)__webpack_require__.o(u,_)&&(__webpack_require__.m[_]=u[_]);if(c)var a=c(__webpack_require__)}for(e&&e(r);o<n.length;o++)t=n[o],__webpack_require__.o(i,t)&&i[t]&&i[t][0](),i[t]=0;return __webpack_require__.O(a)},(o=self.webpackChunk_N_E=self.webpackChunk_N_E||[]).forEach(c.bind(null,0)),o.push=c.bind(null,o.push.bind(o)),__webpack_require__.nc=void 0}();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["anilist",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[48289,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","669","static/chunks/669-8b57afc188d304dc.js","697","static/chunks/697-5201969c631263d5.js","235","static/chunks/235-952226bbbfeb6e72.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","832","static/chunks/832-6080f7c29a7a0d2c.js","214","static/chunks/214-90a997fb4783982d.js","424","static/chunks/app/(main)/anilist/page-728be06c5500b3d9.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","anilist","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"anilist"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["auth",{"children":["callback",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
8:I[48297,[],""]
9:I[52411,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","685","static/chunks/685-8631e79fc20fe503.js","453","static/chunks/app/auth/callback/page-635c8a21188270e6.js"],""]
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","auth","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","auth","children","callback","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$L7",["$","$L8",null,{"propsForComponent":{"params":{}},"Component":"$9","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"callback"},"styles":null}],"segment":"auth"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
7:null

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["discover",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[14067,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","669","static/chunks/669-8b57afc188d304dc.js","697","static/chunks/697-5201969c631263d5.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","832","static/chunks/832-6080f7c29a7a0d2c.js","214","static/chunks/214-90a997fb4783982d.js","304","static/chunks/app/(main)/discover/page-48662275260624ad.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","discover","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"discover"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["entry",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[21626,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","669","static/chunks/669-8b57afc188d304dc.js","310","static/chunks/310-7fd40363424decf0.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","832","static/chunks/832-6080f7c29a7a0d2c.js","700","static/chunks/700-4c0fff6a5cea1bf4.js","811","static/chunks/app/(main)/entry/page-3e83c54eaf4afb8e.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","entry","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"entry"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 736 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["(library)",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[55990,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","669","static/chunks/669-8b57afc188d304dc.js","697","static/chunks/697-5201969c631263d5.js","244","static/chunks/244-e2910c8160e82d69.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","832","static/chunks/832-6080f7c29a7a0d2c.js","214","static/chunks/214-90a997fb4783982d.js","700","static/chunks/700-4c0fff6a5cea1bf4.js","758","static/chunks/app/(main)/(library)/page-7f60504fbe6b3e11.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","(library)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"(library)"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["qbittorrent",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[66282,["890","static/chunks/890-a0affa6da0f35a45.js","685","static/chunks/685-8631e79fc20fe503.js","77","static/chunks/app/(main)/qbittorrent/page-177f7611544cac13.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","qbittorrent","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"qbittorrent"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["schedule",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[48558,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","17","static/chunks/17-1306f5028c21107b.js","726","static/chunks/726-55a870ab74256460.js","669","static/chunks/669-8b57afc188d304dc.js","912","static/chunks/912-90f07824ac578d0d.js","700","static/chunks/700-4c0fff6a5cea1bf4.js","931","static/chunks/app/(main)/schedule/page-4d018812986fa728.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","schedule","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"schedule"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["search",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[62134,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","669","static/chunks/669-8b57afc188d304dc.js","697","static/chunks/697-5201969c631263d5.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","832","static/chunks/832-6080f7c29a7a0d2c.js","214","static/chunks/214-90a997fb4783982d.js","580","static/chunks/app/(main)/search/page-38764ad0387b4b35.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","search","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"search"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["settings",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[50942,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","898","static/chunks/898-867d5c5a74dd998a.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","978","static/chunks/app/(main)/settings/page-b11244f9b58d257c.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","settings","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"settings"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null

File diff suppressed because one or more lines are too long

View File

@@ -1,16 +0,0 @@
1:HL["/_next/static/css/1d100f42f4ac0647.css","style",{"crossOrigin":""}]
0:["MnH4-PAltnrLq-kKAF2jc",[[["",{"children":["(main)",{"children":["torrent-list",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L2",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/1d100f42f4ac0647.css","precedence":"next","crossOrigin":""}]],"$L3"]]]]
4:I[50261,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","898","static/chunks/898-867d5c5a74dd998a.js","322","static/chunks/322-ae1b582ee7e6158b.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","345","static/chunks/345-bb10f8cbbe48b17d.js","185","static/chunks/app/layout-a5476a3b8b6cff6e.js"],"ClientProviders"]
5:I[56954,[],""]
6:I[7264,[],""]
7:I[33729,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","890","static/chunks/890-a0affa6da0f35a45.js","999","static/chunks/999-20d7a2d26818c1ce.js","685","static/chunks/685-8631e79fc20fe503.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","726","static/chunks/726-55a870ab74256460.js","766","static/chunks/766-37d354716b7b2abd.js","912","static/chunks/912-90f07824ac578d0d.js","430","static/chunks/430-e8d734703782ef64.js","95","static/chunks/app/(main)/layout-0355c4142dfd2591.js"],""]
d:I[48297,[],""]
e:I[66688,["492","static/chunks/492-8cf0f4c3a55dfe5f.js","999","static/chunks/999-20d7a2d26818c1ce.js","702","static/chunks/702-4328c5586a2351b1.js","17","static/chunks/17-1306f5028c21107b.js","265","static/chunks/265-28c06c1a98f170af.js","912","static/chunks/912-90f07824ac578d0d.js","666","static/chunks/app/(main)/torrent-list/page-646d974158ea05fd.js"],""]
8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
a:{"display":"inline-block"}
b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
f:{}
2:[null,["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__className_e66fe9","suppressHydrationWarning":true,"children":[["$","script",null,{"src":"http://127.0.0.1:8097"}],["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":[null,["$","$L7",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"childProp":{"current":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children","(main)","children","torrent-list","children"],"loading":"$undefined","loadingStyles":"$undefined","loadingScripts":"$undefined","hasLoading":false,"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","childProp":{"current":["$Lc",["$","$Ld",null,{"propsForComponent":{"params":{}},"Component":"$e","isStaticGeneration":true}],null],"segment":"__PAGE__"},"styles":null}],"segment":"torrent-list"},"styles":null}],"params":"$f"}],null],"segment":"(main)"},"styles":null}]}]]}]}],null]
3:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Seanime"}],["$","meta","3",{"name":"description","content":"Manage your anime library."}],["$","link","4",{"rel":"icon","href":"/icons/favicon.ico"}]]
c:null