diff --git a/src/api/api.js b/src/api/api.js index 0690831..ad7e2ac 100644 --- a/src/api/api.js +++ b/src/api/api.js @@ -1,4 +1,5 @@ const rss = require('rss-to-json'); +const fuzzball = require('fuzzball'); const { homgot @@ -27,7 +28,6 @@ const { } = require('./urls'); const schedule = async (day) =>{ - const data = await homgot(`${BASE_JIKAN}schedule/${day.current}`, { parse: true }); return data[day.current].map(doc =>({ @@ -35,12 +35,10 @@ const schedule = async (day) =>{ malid: doc.mal_id, image: doc.image_url })); - }; const top = async (top) =>{ - - let data + let data; if (top.subtype !== undefined) { data = await homgot(`${BASE_JIKAN}top/${top.type}/${top.page}/${top.subtype}`, { parse: true }); @@ -58,11 +56,9 @@ const top = async (top) =>{ page: top.page, score: doc.score })); - }; const getAllAnimes = async () =>{ - let data = await homgot(`${BASE_ANIMEFLV}api/animes/list`, { parse: true }) return data.map(item => ({ @@ -72,11 +68,9 @@ const getAllAnimes = async () =>{ id: item[2], type: item[4] })); - }; const getAllDirectory = async (genres) => { - let data; if (genres === 'sfw') { @@ -87,7 +81,6 @@ const getAllDirectory = async (genres) => { data = JSON.parse(JSON.stringify(require('../assets/directory.json'))); } - return data.map(doc => ({ id: doc.id, title: doc.title, @@ -100,12 +93,11 @@ const getAllDirectory = async (genres) => { jkanime: false, description: doc.description })); - }; const getAnitakume = async () => { - const promises = [] + const promises = []; await rss.load(BASE_IVOOX).then(rss => { @@ -141,8 +133,7 @@ const getAnitakume = async () => { }; const getNews = async (pageRss) =>{ - - let promises = [] + let promises = []; for(let i = 0; i <= pageRss.length -1; i++) { @@ -166,11 +157,9 @@ const getNews = async (pageRss) =>{ } return promises; - }; const season = async (season) =>{ - const data = await homgot(`${BASE_JIKAN}season/${season.year}/${season.type}`, { parse: true }); return data.anime.map(doc =>({ @@ -178,22 +167,18 @@ const season = async (season) =>{ image: doc.image_url, genres: doc.genres.map(x => x.name) })); - }; const allSeasons = async () =>{ - const data = await homgot(`${BASE_JIKAN}season/archive`, { parse: true }); return data.archive.map(doc =>({ year: doc.year, seasons: doc.seasons, })); - }; const laterSeasons = async () =>{ - const data = await homgot(`${BASE_JIKAN}season/later`, { parse: true }); return data.anime.map(doc =>({ @@ -201,12 +186,11 @@ const laterSeasons = async () =>{ image: doc.image_url, malink: doc.url })); - }; const getLastEpisodes = async () =>{ - const data = await homgot(`${BASE_ANIMEFLV_JELU}LatestEpisodesAdded`, { parse: true }); + return await Promise.all(data.episodes.map(async (item) => ({ id: item.id, title: item.title, @@ -214,11 +198,9 @@ const getLastEpisodes = async () =>{ episode: item.episode, servers: await transformUrlServer(JSON.parse(JSON.stringify(item.servers))) }))); - }; const getSpecials = async (data) =>{ - const res = await homgot(`${BASE_ANIMEFLV_JELU}${data.url}/${data.type}/${data.page}`, { parse: true }); return res[data.prop].map(doc =>({ @@ -238,11 +220,9 @@ const getSpecials = async (data) =>{ }; const getMoreInfo = async (title) =>{ - try { - let data = JSON.parse(JSON.stringify(require('../assets/directory.json'))); - let result = data.filter(anime => anime.title === title || anime.mal_title === title)[0]; + let result = data.filter(anime => fuzzball.ratio(anime.title, title) > 90)[0]; return { title: result.title || null, @@ -252,16 +232,14 @@ const getMoreInfo = async (title) =>{ type: result.type || null, rating: result.score || null, genres: result.genres || null, - moreInfo: await animeExtraInfo(result.mal_title).then(info => info || null), - promo: await getAnimeVideoPromo(result.mal_title).then(promo => promo || null), - characters: await getAnimeCharacters(result.mal_title).then(characters => characters || null), + moreInfo: await animeExtraInfo(result.mal_id).then(info => info || null), + promo: await getAnimeVideoPromo(result.mal_id).then(promo => promo || null), + characters: await getAnimeCharacters(result.mal_id).then(characters => characters || null), related: await getRelatedAnimes(result.id) } - } catch (e) { console.log(e); } - }; const getEpisodes = async (title) =>{ @@ -282,25 +260,18 @@ const getEpisodes = async (title) =>{ }; const getAnimeServers = async (id) => { - if (isNaN(id.split('/')[0])) { - return await videoServersJK(id); - } else { - const data = await homgot(`${BASE_ANIMEFLV_JELU}GetAnimeServers/${id}`, { parse: true }); return await transformUrlServer(data.servers); - } - }; const search = async (title) =>{ return await searchAnime(title); }; const getImages = async (query) => { - try { const data = await homgot(`${BASE_QWANT}count=${query.count}&q=${query.title}&t=${query.type}&safesearch=${query.safesearch}&locale=${query.country}&uiv=4`, { parse: true }); return data.data.result.items.map(doc =>({ @@ -311,11 +282,9 @@ const getImages = async (query) => { } catch (e) { console.log(e) } - }; const getYoutubeVideos = async (channelId) => { - const data = await homgot(`${BASE_YOUTUBE}${channelId.id}&part=${channelId.part}&order=${channelId.order}&maxResults=${channelId.maxResults}`, { parse: true }); return data[channelId.prop].map(doc =>({ @@ -325,7 +294,6 @@ const getYoutubeVideos = async (channelId) => { thumbMedium: doc.snippet.thumbnails.medium.url, thumbHigh: doc.snippet.thumbnails.high.url })); - }; const getSectionYoutubeVideos = async (type) => { @@ -377,11 +345,9 @@ const getThemesYear = async (year) => { data = await parserThemes.year(year); return await structureThemes(data, false); } - }; const getRandomTheme = async () => { - let data = await homgot(`${BASE_THEMEMOE}roulette`, { parse: true }); let themes = await getThemes(data.themes) @@ -390,23 +356,19 @@ const getRandomTheme = async () => { title: doc.name, link: doc.video })); - }; const getArtist = async (id) => { - if (id === undefined) { return await parserThemes.artists(); } else { return await structureThemes(await parserThemes.artist(id), false) } - }; const getAnimeGenres = async(genres) => { - - let res - let promises = [] + let res; + let promises = []; if (genres.genre === undefined && genres.page === undefined && genres.order === undefined) { return require('../assets/genres.json'); @@ -436,15 +398,12 @@ const getAnimeGenres = async(genres) => { } return promises; - } - }; const getAllThemes = async () => require('../assets/themes.json'); const getDestAnimePlatforms = async () => { - let data = await homgot(`${BASE_ARUPPI}res/documents/animelegal/top.json`, { parse: true }); return data.map(doc =>({ @@ -452,12 +411,10 @@ const getDestAnimePlatforms = async () => { name: doc.name, logo: doc.logo })); - }; const getPlatforms = async (id) => { - - let data + let data; if (id === undefined) { @@ -503,11 +460,9 @@ const getPlatforms = async (id) => { })); } - }; const getProfilePlatform = async (id) => { - let data = await homgot(`${BASE_ARUPPI}res/documents/animelegal/platforms/${id}.json`, { parse: true }); let channelId = { id: data[0].youtubeId, part: 'snippet,id', order: 'date', maxResults: '50', prop: 'items' }; let videos = await getYoutubeVideos(channelId) @@ -529,7 +484,6 @@ const getProfilePlatform = async (id) => { faq: doc.faq, videos: videos })); - }; async function getRandomAnime() { diff --git a/src/api/routes/index.js b/src/api/routes/index.js index 980072f..d661930 100644 --- a/src/api/routes/index.js +++ b/src/api/routes/index.js @@ -499,7 +499,6 @@ router.get('/artists/:id?', (req, res) =>{ }); router.get('/getByGenres/:genre?/:order?/:page?' , (req , res) =>{ - let genres = { genre: req.params.genre, order: req.params.order, page: req.params.page }; api.getAnimeGenres(genres) diff --git a/src/assets/directory.json b/src/assets/directory.json index 4dbe6b0..4d4bdf7 100644 --- a/src/assets/directory.json +++ b/src/assets/directory.json @@ -2,7 +2,7 @@ { "id": "bleach-tv", "title": "Bleach", - "mal_title": "Bleach", + "mal_id": 269, "poster": "https://aruppi.jeluchu.xyz/res/directory/0.jpg", "type": "Anime", "genres": [ @@ -20,7 +20,7 @@ { "id": "naruto", "title": "Naruto", - "mal_title": "Naruto", + "mal_id": 20, "poster": "https://aruppi.jeluchu.xyz/res/directory/1.jpg", "type": "Anime", "genres": [ @@ -38,7 +38,7 @@ { "id": "naruto-shippuden-hd", "title": "Naruto Shippuden", - "mal_title": "Naruto: Shippuuden", + "mal_id": 1735, "poster": "https://aruppi.jeluchu.xyz/res/directory/2.jpg", "type": "Anime", "genres": [ @@ -56,7 +56,7 @@ { "id": "highschool-of-the-dead", "title": "Highschool of the Dead", - "mal_title": "Highschool of the Dead", + "mal_id": 8074, "poster": "https://aruppi.jeluchu.xyz/res/directory/3.jpg", "type": "Anime", "genres": [ @@ -73,7 +73,7 @@ { "id": "fairy-tail", "title": "Fairy Tail", - "mal_title": "Fairy Tail", + "mal_id": 6702, "poster": "https://aruppi.jeluchu.xyz/res/directory/4.jpg", "type": "Anime", "genres": [ @@ -92,7 +92,7 @@ { "id": "to-love-ru", "title": "To Love Ru", - "mal_title": "To Love Ru", + "mal_id": 5667, "poster": "https://aruppi.jeluchu.xyz/res/directory/5.jpg", "type": "Anime", "genres": [ @@ -111,7 +111,7 @@ { "id": "one-piece-tv", "title": "One Piece", - "mal_title": "One Piece", + "mal_id": 21, "poster": "https://aruppi.jeluchu.xyz/res/directory/6.jpg", "type": "Anime", "genres": [ @@ -131,7 +131,7 @@ { "id": "kaichou-wa-maid-sama", "title": "Kaichou wa maid sama!", - "mal_title": "Kaichou wa maid sama!", + "mal_id": 7054, "poster": "https://aruppi.jeluchu.xyz/res/directory/7.jpg", "type": "Anime", "genres": [ @@ -148,7 +148,7 @@ { "id": "elfen-lied", "title": "Elfen Lied", - "mal_title": "Elfen Lied", + "mal_id": 226, "poster": "https://aruppi.jeluchu.xyz/res/directory/8.jpg", "type": "Anime", "genres": [ @@ -168,7 +168,7 @@ { "id": "death-note", "title": "Death Note", - "mal_title": "Death Note", + "mal_id": 1535, "poster": "https://aruppi.jeluchu.xyz/res/directory/9.jpg", "type": "Anime", "genres": [ @@ -186,7 +186,7 @@ { "id": "ichiban-ushiro-no-daimaou", "title": "Ichiban Ushiro no Daimaou", - "mal_title": "Ichiban Ushiro no Daimaou", + "mal_id": 7088, "poster": "https://aruppi.jeluchu.xyz/res/directory/10.jpg", "type": "Anime", "genres": [ @@ -207,7 +207,7 @@ { "id": "07-ghost", "title": "07 Ghost", - "mal_title": "07 Ghost", + "mal_id": 5525, "poster": "https://aruppi.jeluchu.xyz/res/directory/11.jpg", "type": "Anime", "genres": [ @@ -226,7 +226,7 @@ { "id": "toradora", "title": "ToraDora!", - "mal_title": "ToraDora!", + "mal_id": 4224, "poster": "https://aruppi.jeluchu.xyz/res/directory/12.jpg", "type": "Anime", "genres": [ @@ -243,7 +243,7 @@ { "id": "abenobashi-maho-shotengai", "title": "Abenobashi Maho Shotengai", - "mal_title": "Abenobashi Maho Shotengai", + "mal_id": 306, "poster": "https://aruppi.jeluchu.xyz/res/directory/13.jpg", "type": "Anime", "genres": [ @@ -260,7 +260,7 @@ { "id": "air-gear", "title": "Air Gear", - "mal_title": "Air Gear", + "mal_id": 857, "poster": "https://aruppi.jeluchu.xyz/res/directory/14.jpg", "type": "Anime", "genres": [ @@ -278,7 +278,7 @@ { "id": "air-tv", "title": "Air TV", - "mal_title": "Air TV", + "mal_id": 101, "poster": "https://aruppi.jeluchu.xyz/res/directory/15.jpg", "type": "Anime", "genres": [ @@ -295,7 +295,7 @@ { "id": "azumanga-daiou", "title": "Azumanga Daiou", - "mal_title": "Azumanga Daiou", + "mal_id": 66, "poster": "https://aruppi.jeluchu.xyz/res/directory/16.jpg", "type": "Anime", "genres": [ @@ -311,7 +311,7 @@ { "id": "basilisk", "title": "Basilisk", - "mal_title": "Basilisk", + "mal_id": 85319, "poster": "https://aruppi.jeluchu.xyz/res/directory/17.jpg", "type": "Anime", "genres": [ @@ -331,7 +331,7 @@ { "id": "beck", "title": "Beck", - "mal_title": "Beck", + "mal_id": 57, "poster": "https://aruppi.jeluchu.xyz/res/directory/18.jpg", "type": "Anime", "genres": [ @@ -349,7 +349,7 @@ { "id": "black-cat", "title": "Black Cat", - "mal_title": "Black Cat", + "mal_id": 68, "poster": "https://aruppi.jeluchu.xyz/res/directory/19.jpg", "type": "Anime", "genres": [ @@ -367,7 +367,7 @@ { "id": "blue-dragon", "title": "Blue Dragon", - "mal_title": "Blue Dragon", + "mal_id": 2142, "poster": "https://aruppi.jeluchu.xyz/res/directory/20.jpg", "type": "Anime", "genres": [ @@ -384,7 +384,7 @@ { "id": "casshern-sins", "title": "Casshern Sins", - "mal_title": "Casshern Sins", + "mal_id": 4981, "poster": "https://aruppi.jeluchu.xyz/res/directory/21.jpg", "type": "Anime", "genres": [ @@ -402,7 +402,7 @@ { "id": "candy-boy", "title": "Candy Boy", - "mal_title": "Candy Boy", + "mal_id": 4535, "poster": "https://aruppi.jeluchu.xyz/res/directory/22.jpg", "type": "Anime", "genres": [ @@ -418,7 +418,7 @@ { "id": "chrono-crusade", "title": "Chrono Crusade", - "mal_title": "Chrono Crusade", + "mal_id": 60, "poster": "https://aruppi.jeluchu.xyz/res/directory/23.jpg", "type": "Anime", "genres": [ @@ -436,7 +436,7 @@ { "id": "cinderella-boy", "title": "Cinderella Boy", - "mal_title": "Cinderella Boy", + "mal_id": 301, "poster": "https://aruppi.jeluchu.xyz/res/directory/24.jpg", "type": "Anime", "genres": [ @@ -454,7 +454,7 @@ { "id": "clannad", "title": "Clannad", - "mal_title": "Clannad", + "mal_id": 2167, "poster": "https://aruppi.jeluchu.xyz/res/directory/25.jpg", "type": "Anime", "genres": [ @@ -473,7 +473,7 @@ { "id": "clannad-after-story", "title": "Clannad After Story", - "mal_title": "Clannad After Story", + "mal_id": 4181, "poster": "https://aruppi.jeluchu.xyz/res/directory/26.jpg", "type": "Anime", "genres": [ @@ -491,7 +491,7 @@ { "id": "claymore", "title": "Claymore", - "mal_title": "Claymore", + "mal_id": 1818, "poster": "https://aruppi.jeluchu.xyz/res/directory/27.jpg", "type": "Anime", "genres": [ @@ -511,7 +511,7 @@ { "id": "code-geass", "title": "Code Geass", - "mal_title": "Code Geass", + "mal_id": 1575, "poster": "https://aruppi.jeluchu.xyz/res/directory/28.jpg", "type": "Anime", "genres": [ @@ -530,7 +530,7 @@ { "id": "code-geass-r2", "title": "Code Geass: R2", - "mal_title": "Code Geass: R2", + "mal_id": 2904, "poster": "https://aruppi.jeluchu.xyz/res/directory/29.jpg", "type": "Anime", "genres": [ @@ -549,7 +549,7 @@ { "id": "darker-than-black", "title": "Darker Than Black", - "mal_title": "Darker Than Black", + "mal_id": 2025, "poster": "https://aruppi.jeluchu.xyz/res/directory/30.jpg", "type": "Anime", "genres": [ @@ -566,7 +566,7 @@ { "id": "devil-may-cry", "title": "Devil May Cry", - "mal_title": "Devil May Cry", + "mal_id": 1726, "poster": "https://aruppi.jeluchu.xyz/res/directory/31.jpg", "type": "Anime", "genres": [ @@ -582,7 +582,7 @@ { "id": "digimon-adventure", "title": "Digimon Adventure", - "mal_title": "Digimon Adventure", + "mal_id": 552, "poster": "https://aruppi.jeluchu.xyz/res/directory/32.jpg", "type": "Anime", "genres": [ @@ -600,7 +600,7 @@ { "id": "d-gray-man", "title": "D.Gray-Man", - "mal_title": "D.Gray-Man", + "mal_id": 1482, "poster": "https://aruppi.jeluchu.xyz/res/directory/33.jpg", "type": "Anime", "genres": [ @@ -617,7 +617,7 @@ { "id": "dna2", "title": "DNA2", - "mal_title": "DNA2", + "mal_id": 563, "poster": "https://aruppi.jeluchu.xyz/res/directory/34.jpg", "type": "Anime", "genres": [ @@ -633,7 +633,7 @@ { "id": "dn-angel", "title": "D.N. Angel", - "mal_title": "D.N. Angel", + "mal_id": 61, "poster": "https://aruppi.jeluchu.xyz/res/directory/35.jpg", "type": "Anime", "genres": [ @@ -653,7 +653,7 @@ { "id": "dragon-ball-z", "title": "Dragon Ball Z", - "mal_title": "Dragon Ball Z", + "mal_id": 813, "poster": "https://aruppi.jeluchu.xyz/res/directory/36.jpg", "type": "Anime", "genres": [ @@ -673,7 +673,7 @@ { "id": "dragonaut", "title": "Dragonaut - The Resonance", - "mal_title": "Dragonaut - The Resonance", + "mal_id": 2795, "poster": "https://aruppi.jeluchu.xyz/res/directory/37.jpg", "type": "Anime", "genres": [ @@ -692,7 +692,7 @@ { "id": "fullmetal-alchemist-brotherhood", "title": "Fullmetal Alchemist: Brotherhood", - "mal_title": "Fullmetal Alchemist: Brotherhood", + "mal_id": 5114, "poster": "https://aruppi.jeluchu.xyz/res/directory/38.jpg", "type": "Anime", "genres": [ @@ -712,7 +712,7 @@ { "id": "fullmetal-alchemist", "title": "Fullmetal Alchemist", - "mal_title": "Fullmetal Alchemist", + "mal_id": 121, "poster": "https://aruppi.jeluchu.xyz/res/directory/39.jpg", "type": "Anime", "genres": [ @@ -733,7 +733,7 @@ { "id": "gilgamesh", "title": "Gilgamesh", - "mal_title": "Gilgamesh", + "mal_id": 385, "poster": "https://aruppi.jeluchu.xyz/res/directory/40.jpg", "type": "Anime", "genres": [ @@ -750,7 +750,7 @@ { "id": "gintama", "title": "Gintama", - "mal_title": "Gintama", + "mal_id": 918, "poster": "https://aruppi.jeluchu.xyz/res/directory/41.jpg", "type": "Anime", "genres": [ @@ -770,7 +770,7 @@ { "id": "girls-bravo", "title": "Girls Bravo", - "mal_title": "Girls Bravo", + "mal_id": 241, "poster": "https://aruppi.jeluchu.xyz/res/directory/42.jpg", "type": "Anime", "genres": [ @@ -789,7 +789,7 @@ { "id": "great-teacher-onizuka", "title": "Great Teacher Onizuka", - "mal_title": "Great Teacher Onizuka", + "mal_id": 245, "poster": "https://aruppi.jeluchu.xyz/res/directory/43.jpg", "type": "Anime", "genres": [ @@ -807,7 +807,7 @@ { "id": "h2o-footprints-in-the-sand", "title": "H2O Footprints in the Sand", - "mal_title": "H2O Footprints in the Sand", + "mal_id": 3299, "poster": "https://aruppi.jeluchu.xyz/res/directory/44.jpg", "type": "Anime", "genres": [ @@ -823,7 +823,7 @@ { "id": "hajime-no-ippo", "title": "Hajime no Ippo", - "mal_title": "Hajime no Ippo", + "mal_id": 263, "poster": "https://aruppi.jeluchu.xyz/res/directory/45.jpg", "type": "Anime", "genres": [ @@ -840,7 +840,7 @@ { "id": "hayate-no-gotoku", "title": "Hayate no Gotoku!", - "mal_title": "Hayate no Gotoku!", + "mal_id": 2026, "poster": "https://aruppi.jeluchu.xyz/res/directory/46.jpg", "type": "Anime", "genres": [ @@ -858,7 +858,7 @@ { "id": "girls-high", "title": "Joshi Kousei: Girl's High", - "mal_title": "Joshi Kousei: Girl's High", + "mal_id": 6657, "poster": "https://aruppi.jeluchu.xyz/res/directory/47.jpg", "type": "Anime", "genres": [ @@ -876,7 +876,7 @@ { "id": "higurashi-no-naku-koro-ni", "title": "Higurashi no Naku Koro Ni", - "mal_title": "Higurashi no Naku Koro Ni", + "mal_id": 934, "poster": "https://aruppi.jeluchu.xyz/res/directory/48.jpg", "type": "Anime", "genres": [ @@ -894,7 +894,7 @@ { "id": "ikkitousen", "title": "Ikkitousen", - "mal_title": "Ikkitousen", + "mal_id": 257, "poster": "https://aruppi.jeluchu.xyz/res/directory/49.jpg", "type": "Anime", "genres": [ @@ -911,7 +911,7 @@ { "id": "ikkitousen-dragon-destiny", "title": "Ikkitousen: Dragon Destiny", - "mal_title": "Ikkitousen: Dragon Destiny", + "mal_id": 1956, "poster": "https://aruppi.jeluchu.xyz/res/directory/50.jpg", "type": "Anime", "genres": [ @@ -929,7 +929,7 @@ { "id": "Ikkitousen-great-guardians", "title": "Ikkitousen: Great Guardians", - "mal_title": "Ikkitousen: Great Guardians", + "mal_id": 4196, "poster": "https://aruppi.jeluchu.xyz/res/directory/51.jpg", "type": "Anime", "genres": [ @@ -947,7 +947,7 @@ { "id": "inuyasha", "title": "Inuyasha", - "mal_title": "Inuyasha", + "mal_id": 249, "poster": "https://aruppi.jeluchu.xyz/res/directory/52.jpg", "type": "Anime", "genres": [ @@ -969,7 +969,7 @@ { "id": "itazura-na-kiss", "title": "Itazura na Kiss", - "mal_title": "Itazura na Kiss", + "mal_id": 3731, "poster": "https://aruppi.jeluchu.xyz/res/directory/53.jpg", "type": "Anime", "genres": [ @@ -985,7 +985,7 @@ { "id": "jyu-oh-sei", "title": "Jyu oh Sei", - "mal_title": "Jyu oh Sei", + "mal_id": 953, "poster": "https://aruppi.jeluchu.xyz/res/directory/54.jpg", "type": "Anime", "genres": [ @@ -1004,7 +1004,7 @@ { "id": "kannagi", "title": "Kannagi", - "mal_title": "Kannagi", + "mal_id": 3958, "poster": "https://aruppi.jeluchu.xyz/res/directory/55.jpg", "type": "Anime", "genres": [ @@ -1021,7 +1021,7 @@ { "id": "kanon-2006", "title": "Kanon 2006", - "mal_title": "Kanon 2006", + "mal_id": 1530, "poster": "https://aruppi.jeluchu.xyz/res/directory/56.jpg", "type": "Anime", "genres": [ @@ -1038,7 +1038,7 @@ { "id": "kemonozume", "title": "Kemonozume", - "mal_title": "Kemonozume", + "mal_id": 1454, "poster": "https://aruppi.jeluchu.xyz/res/directory/57.jpg", "type": "Anime", "genres": [ @@ -1056,7 +1056,7 @@ { "id": "kiddy-girl-and", "title": "Kiddy GiRL-AND", - "mal_title": "Kiddy GiRL-AND", + "mal_id": 3349, "poster": "https://aruppi.jeluchu.xyz/res/directory/58.jpg", "type": "Anime", "genres": [ @@ -1073,7 +1073,7 @@ { "id": "kodomo-no-jikan", "title": "Kodomo no Jikan", - "mal_title": "Kodomo no Jikan", + "mal_id": 2403, "poster": "https://aruppi.jeluchu.xyz/res/directory/59.jpg", "type": "Anime", "genres": [ @@ -1089,7 +1089,7 @@ { "id": "koihime-musou", "title": "Koihime Musou", - "mal_title": "Koihime Musou", + "mal_id": 4262, "poster": "https://aruppi.jeluchu.xyz/res/directory/60.jpg", "type": "Anime", "genres": [ @@ -1107,7 +1107,7 @@ { "id": "koi-koi-7", "title": "Koi Koi 7", - "mal_title": "Koi Koi 7", + "mal_id": 668, "poster": "https://aruppi.jeluchu.xyz/res/directory/61.jpg", "type": "Anime", "genres": [ @@ -1123,7 +1123,7 @@ { "id": "sora-no-otoshimono", "title": "Sora no Otoshimono", - "mal_title": "Sora no Otoshimono", + "mal_id": 5958, "poster": "https://aruppi.jeluchu.xyz/res/directory/62.jpg", "type": "Anime", "genres": [ @@ -1143,7 +1143,7 @@ { "id": "sora-no-otoshimono-forte", "title": "Sora no Otoshimono: Forte", - "mal_title": "Sora no Otoshimono: Forte", + "mal_id": 8407, "poster": "https://aruppi.jeluchu.xyz/res/directory/63.jpg", "type": "Anime", "genres": [ @@ -1163,7 +1163,7 @@ { "id": "iron-man", "title": "Iron Man", - "mal_title": "Iron Man", + "mal_id": 6875, "poster": "https://aruppi.jeluchu.xyz/res/directory/64.jpg", "type": "Anime", "genres": [ @@ -1179,7 +1179,7 @@ { "id": "kono-minikuku-mo-utsukushii-sekai", "title": "Kono Minikuku Mo Utsukushii Sekai", - "mal_title": "Kono Minikuku Mo Utsukushii Sekai", + "mal_id": 146, "poster": "https://aruppi.jeluchu.xyz/res/directory/65.jpg", "type": "Anime", "genres": [ @@ -1197,7 +1197,7 @@ { "id": "shigofumi", "title": "Shigofumi", - "mal_title": "Shigofumi", + "mal_id": 3420, "poster": "https://aruppi.jeluchu.xyz/res/directory/66.jpg", "type": "Anime", "genres": [ @@ -1215,7 +1215,7 @@ { "id": "michiko-to-hatchin", "title": "Michiko To Hatchin", - "mal_title": "Michiko To Hatchin", + "mal_id": 4087, "poster": "https://aruppi.jeluchu.xyz/res/directory/67.jpg", "type": "Anime", "genres": [ @@ -1230,7 +1230,7 @@ { "id": "minami-ke-okawari", "title": "Minami ke-Okawari", - "mal_title": "Minami ke-Okawari", + "mal_id": 3225, "poster": "https://aruppi.jeluchu.xyz/res/directory/68.jpg", "type": "Anime", "genres": [ @@ -1246,7 +1246,7 @@ { "id": "moetan", "title": "Moetan", - "mal_title": "Moetan", + "mal_id": 2367, "poster": "https://aruppi.jeluchu.xyz/res/directory/69.jpg", "type": "Anime", "genres": [ @@ -1263,7 +1263,7 @@ { "id": "night-wizard", "title": "Night Wizard", - "mal_title": "Night Wizard", + "mal_id": 2970, "poster": "https://aruppi.jeluchu.xyz/res/directory/70.jpg", "type": "Anime", "genres": [ @@ -1280,7 +1280,7 @@ { "id": "nodame-cantabile", "title": "Nodame Cantabile", - "mal_title": "Nodame Cantabile", + "mal_id": 1698, "poster": "https://aruppi.jeluchu.xyz/res/directory/71.jpg", "type": "Anime", "genres": [ @@ -1299,7 +1299,7 @@ { "id": "nodame-cantabile-paris", "title": "Nodame Cantabile Paris", - "mal_title": "Nodame Cantabile Paris", + "mal_id": 4477, "poster": "https://aruppi.jeluchu.xyz/res/directory/72.jpg", "type": "Anime", "genres": [ @@ -1317,7 +1317,7 @@ { "id": "nogizaka-haruka-no-himitsu", "title": "Nogizaka haruka no himitsu", - "mal_title": "Nogizaka haruka no himitsu", + "mal_id": 3467, "poster": "https://aruppi.jeluchu.xyz/res/directory/73.jpg", "type": "Anime", "genres": [ @@ -1332,7 +1332,7 @@ { "id": "ouran-host-club", "title": "Ouran Host Club", - "mal_title": "Ouran Host Club", + "mal_id": 853, "poster": "https://aruppi.jeluchu.xyz/res/directory/74.jpg", "type": "Anime", "genres": [ @@ -1350,7 +1350,7 @@ { "id": "prism-ark", "title": "Prism Ark", - "mal_title": "Prism Ark", + "mal_id": 1807, "poster": "https://aruppi.jeluchu.xyz/res/directory/75.jpg", "type": "Anime", "genres": [ @@ -1368,7 +1368,7 @@ { "id": "queens-blade", "title": "Queen's Blade", - "mal_title": "Queen's Blade", + "mal_id": 10924, "poster": "https://aruppi.jeluchu.xyz/res/directory/76.jpg", "type": "Anime", "genres": [ @@ -1385,7 +1385,7 @@ { "id": "romeo-x-juliet", "title": "Romeo x Juliet", - "mal_title": "Romeo x Juliet", + "mal_id": 1699, "poster": "https://aruppi.jeluchu.xyz/res/directory/77.jpg", "type": "Anime", "genres": [ @@ -1402,7 +1402,7 @@ { "id": "samurai-champloo", "title": "Samurai Champloo", - "mal_title": "Samurai Champloo", + "mal_id": 205, "poster": "https://aruppi.jeluchu.xyz/res/directory/78.jpg", "type": "Anime", "genres": [ @@ -1421,7 +1421,7 @@ { "id": "saki", "title": "Saki!", - "mal_title": "Saki!", + "mal_id": 5671, "poster": "https://aruppi.jeluchu.xyz/res/directory/79.jpg", "type": "Anime", "genres": [ @@ -1437,7 +1437,7 @@ { "id": "sekirei", "title": "Sekirei", - "mal_title": "Sekirei", + "mal_id": 4063, "poster": "https://aruppi.jeluchu.xyz/res/directory/80.jpg", "type": "Anime", "genres": [ @@ -1455,7 +1455,7 @@ { "id": "serial-experiments-lain", "title": "Serial Experiments Lain", - "mal_title": "Serial Experiments Lain", + "mal_id": 339, "poster": "https://aruppi.jeluchu.xyz/res/directory/81.jpg", "type": "Anime", "genres": [ @@ -1474,7 +1474,7 @@ { "id": "shaman-king", "title": "Shaman King", - "mal_title": "Shaman King", + "mal_id": 42205, "poster": "https://aruppi.jeluchu.xyz/res/directory/82.jpg", "type": "Anime", "genres": [ @@ -1493,7 +1493,7 @@ { "id": "slayers", "title": "Slayers", - "mal_title": "Slayers", + "mal_id": 534, "poster": "https://aruppi.jeluchu.xyz/res/directory/83.jpg", "type": "Anime", "genres": [ @@ -1511,7 +1511,7 @@ { "id": "sora-no-manimani", "title": "Sora no Manimani", - "mal_title": "Sora no Manimani", + "mal_id": 6098, "poster": "https://aruppi.jeluchu.xyz/res/directory/84.jpg", "type": "Anime", "genres": [ @@ -1528,7 +1528,7 @@ { "id": "spice-and-wolf", "title": "Spice and Wolf", - "mal_title": "Spice and Wolf", + "mal_id": 2966, "poster": "https://aruppi.jeluchu.xyz/res/directory/85.jpg", "type": "Anime", "genres": [ @@ -1545,7 +1545,7 @@ { "id": "steel-angel-kurumi", "title": "Steel Angel Kurumi", - "mal_title": "Steel Angel Kurumi", + "mal_id": 554, "poster": "https://aruppi.jeluchu.xyz/res/directory/86.jpg", "type": "Anime", "genres": [ @@ -1566,7 +1566,7 @@ { "id": "2x2-shinobuden", "title": "2x2 = shinobuden", - "mal_title": "2x2 = shinobuden", + "mal_id": 229, "poster": "https://aruppi.jeluchu.xyz/res/directory/87.jpg", "type": "Anime", "genres": [ @@ -1582,7 +1582,7 @@ { "id": "aa-megami-sama-tv", "title": "Aa! Megami-sama! (TV)", - "mal_title": "Aa! Megami-sama! (TV)", + "mal_id": 50, "poster": "https://aruppi.jeluchu.xyz/res/directory/88.jpg", "type": "Anime", "genres": [ @@ -1600,7 +1600,7 @@ { "id": "motto-to-love-ru", "title": "Motto To Love Ru ~trouble~", - "mal_title": "Motto To Love Ru ~trouble~", + "mal_id": 9181, "poster": "https://aruppi.jeluchu.xyz/res/directory/89.jpg", "type": "Anime", "genres": [ @@ -1619,7 +1619,7 @@ { "id": "tengen-toppa", "title": "Tengen Toppa Gurren Lagann", - "mal_title": "Tengen Toppa Gurren Lagann", + "mal_id": 2001, "poster": "https://aruppi.jeluchu.xyz/res/directory/90.jpg", "type": "Anime", "genres": [ @@ -1637,7 +1637,7 @@ { "id": "angel-beats", "title": "Angel Beats", - "mal_title": "Angel Beats", + "mal_id": 6547, "poster": "https://aruppi.jeluchu.xyz/res/directory/91.jpg", "type": "Anime", "genres": [ @@ -1655,7 +1655,7 @@ { "id": "mayoi-neko-overrun", "title": "Mayoi Neko Overrun!", - "mal_title": "Mayoi Neko Overrun!", + "mal_id": 7590, "poster": "https://aruppi.jeluchu.xyz/res/directory/92.jpg", "type": "Anime", "genres": [ @@ -1671,7 +1671,7 @@ { "id": "chu-bra", "title": "Chu-Bra!!", - "mal_title": "Chu-Bra!!", + "mal_id": 6645, "poster": "https://aruppi.jeluchu.xyz/res/directory/93.jpg", "type": "Anime", "genres": [ @@ -1687,7 +1687,7 @@ { "id": "arakawa-under-bridge", "title": "Arakawa Under the Bridge", - "mal_title": "Arakawa Under the Bridge", + "mal_id": 7647, "poster": "https://aruppi.jeluchu.xyz/res/directory/94.jpg", "type": "Anime", "genres": [ @@ -1703,7 +1703,7 @@ { "id": "fortune-arterial", "title": "Fortune Arterial: Akai Yakusoku", - "mal_title": "Fortune Arterial: Akai Yakusoku", + "mal_id": 8536, "poster": "https://aruppi.jeluchu.xyz/res/directory/95.jpg", "type": "Anime", "genres": [ @@ -1721,7 +1721,7 @@ { "id": "togainu-no-chi", "title": "Togainu no Chi", - "mal_title": "Togainu no Chi", + "mal_id": 8449, "poster": "https://aruppi.jeluchu.xyz/res/directory/96.jpg", "type": "Anime", "genres": [ @@ -1737,7 +1737,7 @@ { "id": "toaru-majutsu-ii", "title": "Toaru Majutsu no Index II", - "mal_title": "Toaru Majutsu no Index II", + "mal_id": 8937, "poster": "https://aruppi.jeluchu.xyz/res/directory/97.jpg", "type": "Anime", "genres": [ @@ -1754,7 +1754,7 @@ { "id": "amagami-ss", "title": "Amagami SS", - "mal_title": "Amagami SS", + "mal_id": 8676, "poster": "https://aruppi.jeluchu.xyz/res/directory/98.jpg", "type": "Anime", "genres": [ @@ -1771,7 +1771,7 @@ { "id": "shinryaku-ika-musume", "title": "Shinryaku! Ika Musume", - "mal_title": "Shinryaku! Ika Musume", + "mal_id": 10378, "poster": "https://aruppi.jeluchu.xyz/res/directory/99.jpg", "type": "Anime", "genres": [ @@ -1787,7 +1787,7 @@ { "id": "pokemon-best-wishes", "title": "Pokemon: Best Wishes!", - "mal_title": "Pokemon: Best Wishes!", + "mal_id": 9107, "poster": "https://aruppi.jeluchu.xyz/res/directory/100.jpg", "type": "Anime", "genres": [ @@ -1805,7 +1805,7 @@ { "id": "dragon-ball-kai", "title": "Dragon Ball Kai", - "mal_title": "Dragon Ball Kai", + "mal_id": 6033, "poster": "https://aruppi.jeluchu.xyz/res/directory/101.jpg", "type": "Anime", "genres": [ @@ -1825,7 +1825,7 @@ { "id": "bakuman", "title": "Bakuman", - "mal_title": "Bakuman", + "mal_id": 7674, "poster": "https://aruppi.jeluchu.xyz/res/directory/102.jpg", "type": "Anime", "genres": [ @@ -1841,7 +1841,7 @@ { "id": "mm", "title": "MM!", - "mal_title": "MM!", + "mal_id": 8424, "poster": "https://aruppi.jeluchu.xyz/res/directory/103.jpg", "type": "Anime", "genres": [ @@ -1858,7 +1858,7 @@ { "id": "arakawa-under-the-bridge-x-bridge", "title": "Arakawa Under The Bridge X Bridge", - "mal_title": "Arakawa Under The Bridge X Bridge", + "mal_id": 9074, "poster": "https://aruppi.jeluchu.xyz/res/directory/104.jpg", "type": "Anime", "genres": [ @@ -1874,7 +1874,7 @@ { "id": "tantei-opera", "title": "Tantei Opera Milky Holmes", - "mal_title": "Tantei Opera Milky Holmes", + "mal_id": 7768, "poster": "https://aruppi.jeluchu.xyz/res/directory/105.jpg", "type": "Anime", "genres": [ @@ -1890,7 +1890,7 @@ { "id": "yosuga-no-sora", "title": "Yosuga no Sora", - "mal_title": "Yosuga no Sora", + "mal_id": 8161, "poster": "https://aruppi.jeluchu.xyz/res/directory/106.jpg", "type": "Anime", "genres": [ @@ -1907,7 +1907,7 @@ { "id": "otome-youkai-zakuro", "title": "Otome Youkai Zakuro", - "mal_title": "Otome Youkai Zakuro", + "mal_id": 8476, "poster": "https://aruppi.jeluchu.xyz/res/directory/107.jpg", "type": "Anime", "genres": [ @@ -1926,7 +1926,7 @@ { "id": "shinrei-tantei-yakumo", "title": "Shinrei Tantei Yakumo", - "mal_title": "Shinrei Tantei Yakumo", + "mal_id": 7662, "poster": "https://aruppi.jeluchu.xyz/res/directory/108.jpg", "type": "Anime", "genres": [ @@ -1943,7 +1943,7 @@ { "id": "kami-nomi-zo-shiru-sekai", "title": "Kami Nomi zo Shiru Sekai", - "mal_title": "Kami Nomi zo Shiru Sekai", + "mal_id": 9675, "poster": "https://aruppi.jeluchu.xyz/res/directory/109.jpg", "type": "Anime", "genres": [ @@ -1961,7 +1961,7 @@ { "id": "star-driver-kagayaki-no-takuto", "title": "Star Driver Kagayaki no Takuto", - "mal_title": "Star Driver Kagayaki no Takuto", + "mal_id": 8934, "poster": "https://aruppi.jeluchu.xyz/res/directory/110.jpg", "type": "Anime", "genres": [ @@ -1978,7 +1978,7 @@ { "id": "panty-and-stocking", "title": "Panty & Stocking with Garterbelt", - "mal_title": "Panty & Stocking with Garterbelt", + "mal_id": 8795, "poster": "https://aruppi.jeluchu.xyz/res/directory/111.jpg", "type": "Anime", "genres": [ @@ -1996,7 +1996,7 @@ { "id": "super-robot-taisen", "title": "Super Robot Taisen OG: The Inspector", - "mal_title": "Super Robot Taisen OG: The Inspector", + "mal_id": 9241, "poster": "https://aruppi.jeluchu.xyz/res/directory/112.jpg", "type": "Anime", "genres": [ @@ -2013,7 +2013,7 @@ { "id": "tegami-bachi-reverse", "title": "Tegami Bachi Reverse", - "mal_title": "Tegami Bachi Reverse", + "mal_id": 8311, "poster": "https://aruppi.jeluchu.xyz/res/directory/113.jpg", "type": "Anime", "genres": [ @@ -2030,7 +2030,7 @@ { "id": "yumeiro-patissiere-sp-professional", "title": "Yumeiro Patissiere SP Professional", - "mal_title": "Yumeiro Patissiere SP Professional", + "mal_id": 9441, "poster": "https://aruppi.jeluchu.xyz/res/directory/114.jpg", "type": "Anime", "genres": [ @@ -2045,7 +2045,7 @@ { "id": "ore-no-imouto", "title": "Ore No Imouto Ga Konnani Kawaii Wake Ga Nai", - "mal_title": "Ore No Imouto Ga Konnani Kawaii Wake Ga Nai", + "mal_id": 18857, "poster": "https://aruppi.jeluchu.xyz/res/directory/115.jpg", "type": "Anime", "genres": [ @@ -2061,7 +2061,7 @@ { "id": "vampire-rosario", "title": "Rosario + Vampire", - "mal_title": "Rosario + Vampire", + "mal_id": 2993, "poster": "https://aruppi.jeluchu.xyz/res/directory/116.jpg", "type": "Anime", "genres": [ @@ -2082,7 +2082,7 @@ { "id": "vampire-rosario-2", "title": "Rosario + Vampire Capu2", - "mal_title": "Rosario + Vampire Capu2", + "mal_id": 4214, "poster": "https://aruppi.jeluchu.xyz/res/directory/117.jpg", "type": "Anime", "genres": [ @@ -2102,7 +2102,7 @@ { "id": "nogizaka-haruka-2", "title": "Nogizaka Haruka no Himitsu: Purezza", - "mal_title": "Nogizaka Haruka no Himitsu: Purezza", + "mal_id": 6023, "poster": "https://aruppi.jeluchu.xyz/res/directory/118.jpg", "type": "Anime", "genres": [ @@ -2118,7 +2118,7 @@ { "id": "futari-ecchi", "title": "Futari Ecchi", - "mal_title": "Futari Ecchi", + "mal_id": 382, "poster": "https://aruppi.jeluchu.xyz/res/directory/119.jpg", "type": "Anime", "genres": [ @@ -2136,7 +2136,7 @@ { "id": "tegami-bachi", "title": "Tegami Bachi", - "mal_title": "Tegami Bachi", + "mal_id": 6444, "poster": "https://aruppi.jeluchu.xyz/res/directory/120.jpg", "type": "Anime", "genres": [ @@ -2153,7 +2153,7 @@ { "id": "soul-eater", "title": "Soul Eater", - "mal_title": "Soul Eater", + "mal_id": 3588, "poster": "https://aruppi.jeluchu.xyz/res/directory/121.jpg", "type": "Anime", "genres": [ @@ -2172,7 +2172,7 @@ { "id": "aoi-hana", "title": "Aoi Hana", - "mal_title": "Aoi Hana", + "mal_id": 6164, "poster": "https://aruppi.jeluchu.xyz/res/directory/122.jpg", "type": "Anime", "genres": [ @@ -2188,7 +2188,7 @@ { "id": "bakemonogatari", "title": "Bakemonogatari", - "mal_title": "Bakemonogatari", + "mal_id": 5081, "poster": "https://aruppi.jeluchu.xyz/res/directory/123.jpg", "type": "Anime", "genres": [ @@ -2205,7 +2205,7 @@ { "id": "black-lagoon", "title": "Black Lagoon", - "mal_title": "Black Lagoon", + "mal_id": 889, "poster": "https://aruppi.jeluchu.xyz/res/directory/124.jpg", "type": "Anime", "genres": [ @@ -2220,7 +2220,7 @@ { "id": "black-lagoon-2", "title": "Black Lagoon: The Second Barrage", - "mal_title": "Black Lagoon: The Second Barrage", + "mal_id": 1519, "poster": "https://aruppi.jeluchu.xyz/res/directory/125.jpg", "type": "Anime", "genres": [ @@ -2235,7 +2235,7 @@ { "id": "cannan", "title": "Cannan", - "mal_title": "Cannan", + "mal_id": 5356, "poster": "https://aruppi.jeluchu.xyz/res/directory/126.jpg", "type": "Anime", "genres": [ @@ -2250,7 +2250,7 @@ { "id": "darker-than-black-2", "title": "Darker than Black: Ryuusei no Gemini", - "mal_title": "Darker than Black: Ryuusei no Gemini", + "mal_id": 6573, "poster": "https://aruppi.jeluchu.xyz/res/directory/127.jpg", "type": "Anime", "genres": [ @@ -2267,7 +2267,7 @@ { "id": "digimon-2", "title": "Digimon Adventure 02", - "mal_title": "Digimon Adventure 02", + "mal_id": 1313, "poster": "https://aruppi.jeluchu.xyz/res/directory/128.jpg", "type": "Anime", "genres": [ @@ -2286,7 +2286,7 @@ { "id": "eureka-seven", "title": "Eureka Seven", - "mal_title": "Eureka Seven", + "mal_id": 12471, "poster": "https://aruppi.jeluchu.xyz/res/directory/129.jpg", "type": "Anime", "genres": [ @@ -2304,7 +2304,7 @@ { "id": "fight-ippatsu", "title": "Fight Ippatsu! Juden-chan!!", - "mal_title": "Fight Ippatsu! Juden-chan!!", + "mal_id": 5973, "poster": "https://aruppi.jeluchu.xyz/res/directory/130.jpg", "type": "Anime", "genres": [ @@ -2321,7 +2321,7 @@ { "id": "full-metal-panic", "title": "Full Metal Panic!", - "mal_title": "Full Metal Panic!", + "mal_id": 71, "poster": "https://aruppi.jeluchu.xyz/res/directory/131.jpg", "type": "Anime", "genres": [ @@ -2339,7 +2339,7 @@ { "id": "full-metal-panic-2", "title": "Full Metal Panic! The Second Raid", - "mal_title": "Full Metal Panic! The Second Raid", + "mal_id": 73, "poster": "https://aruppi.jeluchu.xyz/res/directory/132.jpg", "type": "Anime", "genres": [ @@ -2355,7 +2355,7 @@ { "id": "junjou-romantica", "title": "Junjou Romantica", - "mal_title": "Junjou Romantica", + "mal_id": 3092, "poster": "https://aruppi.jeluchu.xyz/res/directory/133.jpg", "type": "Anime", "genres": [ @@ -2372,7 +2372,7 @@ { "id": "junjou-romantica-2", "title": "Junjou Romantica 2", - "mal_title": "Junjou Romantica 2", + "mal_id": 4814, "poster": "https://aruppi.jeluchu.xyz/res/directory/134.jpg", "type": "Anime", "genres": [ @@ -2389,7 +2389,7 @@ { "id": "kampfer", "title": "Kampfer", - "mal_title": "Kampfer", + "mal_id": 6205, "poster": "https://aruppi.jeluchu.xyz/res/directory/135.jpg", "type": "Anime", "genres": [ @@ -2409,7 +2409,7 @@ { "id": "kanamemo", "title": "Kanamemo", - "mal_title": "Kanamemo", + "mal_id": 5914, "poster": "https://aruppi.jeluchu.xyz/res/directory/136.jpg", "type": "Anime", "genres": [ @@ -2426,7 +2426,7 @@ { "id": "kimikiss-pure-rouge", "title": "Kimikiss Pure Rouge", - "mal_title": "Kimikiss Pure Rouge", + "mal_id": 2927, "poster": "https://aruppi.jeluchu.xyz/res/directory/137.jpg", "type": "Anime", "genres": [ @@ -2442,7 +2442,7 @@ { "id": "kimi-ni-todoke", "title": "Kimi ni Todoke", - "mal_title": "Kimi ni Todoke", + "mal_id": 6045, "poster": "https://aruppi.jeluchu.xyz/res/directory/138.jpg", "type": "Anime", "genres": [ @@ -2459,7 +2459,7 @@ { "id": "gash-bell", "title": "Konjiki no Gash Bell!!", - "mal_title": "Konjiki no Gash Bell!!", + "mal_id": 250, "poster": "https://aruppi.jeluchu.xyz/res/directory/139.jpg", "type": "Anime", "genres": [ @@ -2477,7 +2477,7 @@ { "id": "nabari-no-ou", "title": "Nabari no Ou", - "mal_title": "Nabari no Ou", + "mal_id": 3655, "poster": "https://aruppi.jeluchu.xyz/res/directory/140.jpg", "type": "Anime", "genres": [ @@ -2496,7 +2496,7 @@ { "id": "needless", "title": "Needless", - "mal_title": "Needless", + "mal_id": 6030, "poster": "https://aruppi.jeluchu.xyz/res/directory/141.jpg", "type": "Anime", "genres": [ @@ -2514,7 +2514,7 @@ { "id": "nyan-koi", "title": "Nyan Koi!", - "mal_title": "Nyan Koi!", + "mal_id": 6512, "poster": "https://aruppi.jeluchu.xyz/res/directory/142.jpg", "type": "Anime", "genres": [ @@ -2530,7 +2530,7 @@ { "id": "pandora-hearts", "title": "Pandora Hearts", - "mal_title": "Pandora Hearts", + "mal_id": 5530, "poster": "https://aruppi.jeluchu.xyz/res/directory/143.jpg", "type": "Anime", "genres": [ @@ -2548,7 +2548,7 @@ { "id": "11-eyes", "title": "11 Eyes", - "mal_title": "11 Eyes", + "mal_id": 6682, "poster": "https://aruppi.jeluchu.xyz/res/directory/144.jpg", "type": "Anime", "genres": [ @@ -2565,7 +2565,7 @@ { "id": "blood-plus", "title": "Blood+", - "mal_title": "Blood+", + "mal_id": 150, "poster": "https://aruppi.jeluchu.xyz/res/directory/145.jpg", "type": "Anime", "genres": [ @@ -2585,7 +2585,7 @@ { "id": "chobits", "title": "Chobits", - "mal_title": "Chobits", + "mal_id": 59, "poster": "https://aruppi.jeluchu.xyz/res/directory/146.jpg", "type": "Anime", "genres": [ @@ -2604,7 +2604,7 @@ { "id": "coolxsweet", "title": "Tsuyokiss - Cool×Sweet", - "mal_title": "Tsuyokiss - Cool×Sweet", + "mal_id": 1198, "poster": "https://aruppi.jeluchu.xyz/res/directory/147.jpg", "type": "Anime", "genres": [ @@ -2621,7 +2621,7 @@ { "id": "fate-stay-night", "title": "Fate Stay Night", - "mal_title": "Fate Stay Night", + "mal_id": 356, "poster": "https://aruppi.jeluchu.xyz/res/directory/148.jpg", "type": "Anime", "genres": [ @@ -2639,7 +2639,7 @@ { "id": "gantz", "title": "Gantz", - "mal_title": "Gantz", + "mal_id": 384, "poster": "https://aruppi.jeluchu.xyz/res/directory/149.jpg", "type": "Anime", "genres": [ @@ -2658,7 +2658,7 @@ { "id": "get-backers", "title": "Get Backers", - "mal_title": "Get Backers", + "mal_id": 132, "poster": "https://aruppi.jeluchu.xyz/res/directory/150.jpg", "type": "Anime", "genres": [ @@ -2678,7 +2678,7 @@ { "id": "initial-d", "title": "Initial D", - "mal_title": "Initial D", + "mal_id": 185, "poster": "https://aruppi.jeluchu.xyz/res/directory/151.jpg", "type": "Anime", "genres": [ @@ -2696,7 +2696,7 @@ { "id": "initial-d-2", "title": "Initial D: Second Stage", - "mal_title": "Initial D: Second Stage", + "mal_id": 186, "poster": "https://aruppi.jeluchu.xyz/res/directory/152.jpg", "type": "Anime", "genres": [ @@ -2714,7 +2714,7 @@ { "id": "initial-d-fourth-stage", "title": "Initial D: Fourth Stage", - "mal_title": "Initial D: Fourth Stage", + "mal_id": 18, "poster": "https://aruppi.jeluchu.xyz/res/directory/153.jpg", "type": "Anime", "genres": [ @@ -2732,7 +2732,7 @@ { "id": "kamen-no-maid-guy", "title": "Kamen no Maid Guy", - "mal_title": "Kamen no Maid Guy", + "mal_id": 3616, "poster": "https://aruppi.jeluchu.xyz/res/directory/154.jpg", "type": "Anime", "genres": [ @@ -2749,7 +2749,7 @@ { "id": "kemeko", "title": "Kemeko Deluxe!", - "mal_title": "Kemeko Deluxe!", + "mal_id": 3464, "poster": "https://aruppi.jeluchu.xyz/res/directory/155.jpg", "type": "Anime", "genres": [ @@ -2769,7 +2769,7 @@ { "id": "kure-nai", "title": "Kure-nai", - "mal_title": "Kure-nai", + "mal_id": 3358, "poster": "https://aruppi.jeluchu.xyz/res/directory/156.jpg", "type": "Anime", "genres": [ @@ -2785,7 +2785,7 @@ { "id": "hanbun-tsuki", "title": "Hanbun no Tsuki ga Noboru Sora", - "mal_title": "Hanbun no Tsuki ga Noboru Sora", + "mal_id": 587, "poster": "https://aruppi.jeluchu.xyz/res/directory/157.jpg", "type": "OVA", "genres": [ @@ -2801,7 +2801,7 @@ { "id": "mai-hime", "title": "Mai-HiME", - "mal_title": "Mai-HiME", + "mal_id": 98, "poster": "https://aruppi.jeluchu.xyz/res/directory/158.jpg", "type": "Anime", "genres": [ @@ -2823,7 +2823,7 @@ { "id": "welcome-to-the-nhk", "title": "Welcome to the NHK", - "mal_title": "Welcome to the NHK", + "mal_id": 1210, "poster": "https://aruppi.jeluchu.xyz/res/directory/159.jpg", "type": "Anime", "genres": [ @@ -2840,7 +2840,7 @@ { "id": "popotan", "title": "Popotan", - "mal_title": "Popotan", + "mal_id": 610, "poster": "https://aruppi.jeluchu.xyz/res/directory/160.jpg", "type": "Anime", "genres": [ @@ -2857,7 +2857,7 @@ { "id": "penguin-musume-heart", "title": "Penguin Musume Heart", - "mal_title": "Penguin Musume Heart", + "mal_id": 5056, "poster": "https://aruppi.jeluchu.xyz/res/directory/161.jpg", "type": "Anime", "genres": [ @@ -2874,7 +2874,7 @@ { "id": "rec", "title": "REC", - "mal_title": "REC", + "mal_id": 710, "poster": "https://aruppi.jeluchu.xyz/res/directory/162.jpg", "type": "Anime", "genres": [ @@ -2890,7 +2890,7 @@ { "id": "ride-back", "title": "Ride Back", - "mal_title": "Ride Back", + "mal_id": 4618, "poster": "https://aruppi.jeluchu.xyz/res/directory/163.jpg", "type": "Anime", "genres": [ @@ -2908,7 +2908,7 @@ { "id": "seto-no-hanayome", "title": "Seto no Hanayome", - "mal_title": "Seto no Hanayome", + "mal_id": 4163, "poster": "https://aruppi.jeluchu.xyz/res/directory/164.jpg", "type": "Anime", "genres": [ @@ -2925,7 +2925,7 @@ { "id": "shuffle", "title": "Shuffle!", - "mal_title": "Shuffle!", + "mal_id": 79, "poster": "https://aruppi.jeluchu.xyz/res/directory/165.jpg", "type": "Anime", "genres": [ @@ -2947,7 +2947,7 @@ { "id": "shugo-chara", "title": "Shugo Chara!", - "mal_title": "Shugo Chara!", + "mal_id": 5262, "poster": "https://aruppi.jeluchu.xyz/res/directory/166.jpg", "type": "Anime", "genres": [ @@ -2964,7 +2964,7 @@ { "id": "sora-kake-girl", "title": "Sora wo Kakeru Shoujo", - "mal_title": "Sora wo Kakeru Shoujo", + "mal_id": 5307, "poster": "https://aruppi.jeluchu.xyz/res/directory/167.jpg", "type": "Anime", "genres": [ @@ -2981,7 +2981,7 @@ { "id": "sola", "title": "Sola", - "mal_title": "Sola", + "mal_id": 1965, "poster": "https://aruppi.jeluchu.xyz/res/directory/168.jpg", "type": "Anime", "genres": [ @@ -2998,7 +2998,7 @@ { "id": "strike-witches", "title": "Strike Witches", - "mal_title": "Strike Witches", + "mal_id": 6381, "poster": "https://aruppi.jeluchu.xyz/res/directory/169.jpg", "type": "Anime", "genres": [ @@ -3016,7 +3016,7 @@ { "id": "suzuka", "title": "Suzuka", - "mal_title": "Suzuka", + "mal_id": 390, "poster": "https://aruppi.jeluchu.xyz/res/directory/170.jpg", "type": "Anime", "genres": [ @@ -3032,7 +3032,7 @@ { "id": "tales-of-the-abyss", "title": "Tales of the Abyss", - "mal_title": "Tales of the Abyss", + "mal_id": 4884, "poster": "https://aruppi.jeluchu.xyz/res/directory/171.jpg", "type": "Anime", "genres": [ @@ -3048,7 +3048,7 @@ { "id": "toaru-majutsu-no-index", "title": "Toaru Majutsu no Index", - "mal_title": "Toaru Majutsu no Index", + "mal_id": 4654, "poster": "https://aruppi.jeluchu.xyz/res/directory/172.jpg", "type": "Anime", "genres": [ @@ -3065,7 +3065,7 @@ { "id": "tona-gura", "title": "Tona-Gura!", - "mal_title": "Tona-Gura!", + "mal_id": 1218, "poster": "https://aruppi.jeluchu.xyz/res/directory/173.jpg", "type": "Anime", "genres": [ @@ -3083,7 +3083,7 @@ { "id": "trigun", "title": "Trigun", - "mal_title": "Trigun", + "mal_id": 6, "poster": "https://aruppi.jeluchu.xyz/res/directory/174.jpg", "type": "Anime", "genres": [ @@ -3099,7 +3099,7 @@ { "id": "yami-to-boushi", "title": "Yami to Boushi to Hon no Tabibito", - "mal_title": "Yami to Boushi to Hon no Tabibito", + "mal_id": 497, "poster": "https://aruppi.jeluchu.xyz/res/directory/175.jpg", "type": "Anime", "genres": [ @@ -3118,7 +3118,7 @@ { "id": "yozakura-quartet", "title": "Yozakura Quartet", - "mal_title": "Yozakura Quartet", + "mal_id": 4548, "poster": "https://aruppi.jeluchu.xyz/res/directory/176.jpg", "type": "Anime", "genres": [ @@ -3137,7 +3137,7 @@ { "id": "sailor-moon", "title": "Sailor Moon", - "mal_title": "Sailor Moon", + "mal_id": 510, "poster": "https://aruppi.jeluchu.xyz/res/directory/177.jpg", "type": "Anime", "genres": [ @@ -3154,7 +3154,7 @@ { "id": "school-days", "title": "School Days", - "mal_title": "School Days", + "mal_id": 2476, "poster": "https://aruppi.jeluchu.xyz/res/directory/178.jpg", "type": "Anime", "genres": [ @@ -3171,7 +3171,7 @@ { "id": "sasameki-koto", "title": "Sasameki Koto", - "mal_title": "Sasameki Koto", + "mal_id": 6203, "poster": "https://aruppi.jeluchu.xyz/res/directory/179.jpg", "type": "Anime", "genres": [ @@ -3188,7 +3188,7 @@ { "id": "zero-no-tsukaima", "title": "Zero no Tsukaima", - "mal_title": "Zero no Tsukaima", + "mal_id": 1195, "poster": "https://aruppi.jeluchu.xyz/res/directory/180.jpg", "type": "Anime", "genres": [ @@ -3210,7 +3210,7 @@ { "id": "zero-no-tsukaima-2", "title": "Zero no Tsukaima: Futatsuki no Kishi", - "mal_title": "Zero no Tsukaima: Futatsuki no Kishi", + "mal_id": 1840, "poster": "https://aruppi.jeluchu.xyz/res/directory/181.jpg", "type": "Anime", "genres": [ @@ -3232,7 +3232,7 @@ { "id": "hellsing", "title": "Hellsing", - "mal_title": "Hellsing", + "mal_id": 270, "poster": "https://aruppi.jeluchu.xyz/res/directory/182.jpg", "type": "Anime", "genres": [ @@ -3250,7 +3250,7 @@ { "id": "nurarihyon-no-mago", "title": "Nurarihyon no Mago", - "mal_title": "Nurarihyon no Mago", + "mal_id": 7592, "poster": "https://aruppi.jeluchu.xyz/res/directory/183.jpg", "type": "Anime", "genres": [ @@ -3267,7 +3267,7 @@ { "id": "densetsu", "title": "Densetsu no Yusha no Densetsu", - "mal_title": "Densetsu no Yusha no Densetsu", + "mal_id": 8086, "poster": "https://aruppi.jeluchu.xyz/res/directory/184.jpg", "type": "Anime", "genres": [ @@ -3285,7 +3285,7 @@ { "id": "hyakka-ryoran", "title": "Hyakka Ryouran: Samurai Girls", - "mal_title": "Hyakka Ryouran: Samurai Girls", + "mal_id": 8277, "poster": "https://aruppi.jeluchu.xyz/res/directory/185.jpg", "type": "Anime", "genres": [ @@ -3304,7 +3304,7 @@ { "id": "shiki", "title": "Shiki", - "mal_title": "Shiki", + "mal_id": 7724, "poster": "https://aruppi.jeluchu.xyz/res/directory/186.jpg", "type": "Anime", "genres": [ @@ -3321,7 +3321,7 @@ { "id": "agent-aika", "title": "Agent Aika", - "mal_title": "Agent Aika", + "mal_id": 366, "poster": "https://aruppi.jeluchu.xyz/res/directory/187.jpg", "type": "Anime", "genres": [ @@ -3339,7 +3339,7 @@ { "id": "soredemo-mach-wa-mawatteiru", "title": "Soredemo Machi wa Mawatteiru", - "mal_title": "Soredemo Machi wa Mawatteiru", + "mal_id": 8726, "poster": "https://aruppi.jeluchu.xyz/res/directory/188.jpg", "type": "Anime", "genres": [ @@ -3354,7 +3354,7 @@ { "id": "air-master", "title": "Air Master", - "mal_title": "Air Master", + "mal_id": 230, "poster": "https://aruppi.jeluchu.xyz/res/directory/189.jpg", "type": "Anime", "genres": [ @@ -3371,7 +3371,7 @@ { "id": "lucky-star", "title": "Lucky Star", - "mal_title": "Lucky Star", + "mal_id": 1887, "poster": "https://aruppi.jeluchu.xyz/res/directory/190.jpg", "type": "Anime", "genres": [ @@ -3388,7 +3388,7 @@ { "id": "ladies-vs-butlers", "title": "Ladies vs Butlers!", - "mal_title": "Ladies vs Butlers!", + "mal_id": 7148, "poster": "https://aruppi.jeluchu.xyz/res/directory/191.jpg", "type": "Anime", "genres": [ @@ -3407,7 +3407,7 @@ { "id": "kurage-hime", "title": "Kurage Hime", - "mal_title": "Kurage Hime", + "mal_id": 8129, "poster": "https://aruppi.jeluchu.xyz/res/directory/192.jpg", "type": "Anime", "genres": [ @@ -3423,7 +3423,7 @@ { "id": "amaenaideyo", "title": "Amaenaideyo!!", - "mal_title": "Amaenaideyo!!", + "mal_id": 591, "poster": "https://aruppi.jeluchu.xyz/res/directory/193.jpg", "type": "Anime", "genres": [ @@ -3441,7 +3441,7 @@ { "id": "amaenaideyo-katsu", "title": "Amaenaideyo!! Katsu!!", - "mal_title": "Amaenaideyo!! Katsu!!", + "mal_id": 886, "poster": "https://aruppi.jeluchu.xyz/res/directory/194.jpg", "type": "Anime", "genres": [ @@ -3459,7 +3459,7 @@ { "id": "amatsuki", "title": "Amatsuki", - "mal_title": "Amatsuki", + "mal_id": 3359, "poster": "https://aruppi.jeluchu.xyz/res/directory/195.jpg", "type": "Anime", "genres": [ @@ -3477,7 +3477,7 @@ { "id": "angelic-layer", "title": "Angelic Layer", - "mal_title": "Angelic Layer", + "mal_id": 52, "poster": "https://aruppi.jeluchu.xyz/res/directory/196.jpg", "type": "Anime", "genres": [ @@ -3495,7 +3495,7 @@ { "id": "asobi-ni-iku-yo", "title": "Asobi ni Iku yo!", - "mal_title": "Asobi ni Iku yo!", + "mal_id": 6166, "poster": "https://aruppi.jeluchu.xyz/res/directory/197.jpg", "type": "Anime", "genres": [ @@ -3513,7 +3513,7 @@ { "id": "asu-no-yoishi", "title": "Asu no Yoichi!", - "mal_title": "Asu no Yoichi!", + "mal_id": 4999, "poster": "https://aruppi.jeluchu.xyz/res/directory/198.jpg", "type": "Anime", "genres": [ @@ -3532,7 +3532,7 @@ { "id": "asura-cryin", "title": "Asura Cryin", - "mal_title": "Asura Cryin", + "mal_id": 5342, "poster": "https://aruppi.jeluchu.xyz/res/directory/199.jpg", "type": "Anime", "genres": [ @@ -3548,7 +3548,7 @@ { "id": "asura-cryin-2", "title": "Asura Cryin 2", - "mal_title": "Asura Cryin 2", + "mal_id": 6676, "poster": "https://aruppi.jeluchu.xyz/res/directory/200.jpg", "type": "Anime", "genres": [ @@ -3564,7 +3564,7 @@ { "id": "baccano", "title": "Baccano!", - "mal_title": "Baccano!", + "mal_id": 2251, "poster": "https://aruppi.jeluchu.xyz/res/directory/201.jpg", "type": "Anime", "genres": [ @@ -3583,7 +3583,7 @@ { "id": "baka-to-test-to-shokanju", "title": "Baka to Test to Shoukanjuu", - "mal_title": "Baka to Test to Shoukanjuu", + "mal_id": 6347, "poster": "https://aruppi.jeluchu.xyz/res/directory/202.jpg", "type": "Anime", "genres": [ @@ -3600,7 +3600,7 @@ { "id": "dokuro-chan", "title": "Bokusatsu Tenshi Dokuro-chan", - "mal_title": "Bokusatsu Tenshi Dokuro-chan", + "mal_id": 357, "poster": "https://aruppi.jeluchu.xyz/res/directory/203.jpg", "type": "Anime", "genres": [ @@ -3616,7 +3616,7 @@ { "id": "dokuro-chan-2", "title": "Bokusatsu Tenshi Dokuro-chan 2", - "mal_title": "Bokusatsu Tenshi Dokuro-chan 2", + "mal_id": 2131, "poster": "https://aruppi.jeluchu.xyz/res/directory/204.jpg", "type": "OVA", "genres": [ @@ -3632,7 +3632,7 @@ { "id": "blassreiter", "title": "Blassreiter", - "mal_title": "Blassreiter", + "mal_id": 3407, "poster": "https://aruppi.jeluchu.xyz/res/directory/205.jpg", "type": "Anime", "genres": [ @@ -3647,7 +3647,7 @@ { "id": "boogiepop-phantom", "title": "Boogiepop Phantom", - "mal_title": "Boogiepop Phantom", + "mal_id": 369, "poster": "https://aruppi.jeluchu.xyz/res/directory/206.jpg", "type": "Anime", "genres": [ @@ -3666,7 +3666,7 @@ { "id": "koukaku-no-regios", "title": "Koukaku no Regios", - "mal_title": "Koukaku no Regios", + "mal_id": 4196, "poster": "https://aruppi.jeluchu.xyz/res/directory/207.jpg", "type": "Anime", "genres": [ @@ -3684,7 +3684,7 @@ { "id": "afro-samurai", "title": "Afro Samurai", - "mal_title": "Afro Samurai", + "mal_id": 1292, "poster": "https://aruppi.jeluchu.xyz/res/directory/208.jpg", "type": "Anime", "genres": [ @@ -3700,7 +3700,7 @@ { "id": "aa-megami-sama-sorezore-no-tsubasa", "title": "Aa! Megami-sama!: Sorezore no Tsubasa", - "mal_title": "Aa! Megami-sama!: Sorezore no Tsubasa", + "mal_id": 880, "poster": "https://aruppi.jeluchu.xyz/res/directory/209.jpg", "type": "Anime", "genres": [ @@ -3718,7 +3718,7 @@ { "id": "burst-angel", "title": "Burst Angel", - "mal_title": "Burst Angel", + "mal_id": 109, "poster": "https://aruppi.jeluchu.xyz/res/directory/210.jpg", "type": "Anime", "genres": [ @@ -3735,7 +3735,7 @@ { "id": "black-rock-shooter", "title": "Black Rock Shooter", - "mal_title": "Black Rock Shooter", + "mal_id": 11285, "poster": "https://aruppi.jeluchu.xyz/res/directory/211.jpg", "type": "Anime", "genres": [ @@ -3752,7 +3752,7 @@ { "id": "hakuouki-ii", "title": "Hakuouki: Hekketsu-roku", - "mal_title": "Hakuouki: Hekketsu-roku", + "mal_id": 9065, "poster": "https://aruppi.jeluchu.xyz/res/directory/212.jpg", "type": "Anime", "genres": [ @@ -3771,7 +3771,7 @@ { "id": "akane-iro", "title": "Akane Iro ni Somaru Saka", - "mal_title": "Akane Iro ni Somaru Saka", + "mal_id": 5772, "poster": "https://aruppi.jeluchu.xyz/res/directory/213.jpg", "type": "Anime", "genres": [ @@ -3788,7 +3788,7 @@ { "id": "haiyoru-nyaruani", "title": "Haiyoru! Nyaruani: Remember My Love", - "mal_title": "Haiyoru! Nyaruani: Remember My Love", + "mal_id": 9598, "poster": "https://aruppi.jeluchu.xyz/res/directory/214.jpg", "type": "Anime", "genres": [ @@ -3803,7 +3803,7 @@ { "id": "starry-sky", "title": "Starry Sky", - "mal_title": "Starry Sky", + "mal_id": 7705, "poster": "https://aruppi.jeluchu.xyz/res/directory/215.jpg", "type": "Anime", "genres": [ @@ -3819,7 +3819,7 @@ { "id": "digimon-xros-wars", "title": "Digimon Xros Wars", - "mal_title": "Digimon Xros Wars", + "mal_id": 8624, "poster": "https://aruppi.jeluchu.xyz/res/directory/216.jpg", "type": "Anime", "genres": [ @@ -3837,7 +3837,7 @@ { "id": "kimi-ni-todoke-2", "title": "Kimi ni Todoke 2nd Season", - "mal_title": "Kimi ni Todoke 2nd Season", + "mal_id": 9656, "poster": "https://aruppi.jeluchu.xyz/res/directory/217.jpg", "type": "Anime", "genres": [ @@ -3854,7 +3854,7 @@ { "id": "kuroshitsuji-2", "title": "Kuroshitsuji II", - "mal_title": "Kuroshitsuji II", + "mal_id": 6707, "poster": "https://aruppi.jeluchu.xyz/res/directory/218.jpg", "type": "Anime", "genres": [ @@ -3873,7 +3873,7 @@ { "id": "okami-san", "title": "Okami-san to Shichinin no Nakama-tachi", - "mal_title": "Okami-san to Shichinin no Nakama-tachi", + "mal_id": 7769, "poster": "https://aruppi.jeluchu.xyz/res/directory/219.jpg", "type": "Anime", "genres": [ @@ -3889,7 +3889,7 @@ { "id": "shukufu", "title": "Shukufuku no Campanella", - "mal_title": "Shukufuku no Campanella", + "mal_id": 6979, "poster": "https://aruppi.jeluchu.xyz/res/directory/220.jpg", "type": "Anime", "genres": [ @@ -3906,7 +3906,7 @@ { "id": "mitsudomoe", "title": "Mitsudomoe", - "mal_title": "Mitsudomoe", + "mal_id": 7627, "poster": "https://aruppi.jeluchu.xyz/res/directory/221.jpg", "type": "Anime", "genres": [ @@ -3922,7 +3922,7 @@ { "id": "seitokai-yakuindomo", "title": "Seitokai Yakuindomo", - "mal_title": "Seitokai Yakuindomo", + "mal_id": 8675, "poster": "https://aruppi.jeluchu.xyz/res/directory/222.jpg", "type": "Anime", "genres": [ @@ -3939,7 +3939,7 @@ { "id": "sekirei-2", "title": "Sekirei ~Pure Engagement~", - "mal_title": "Sekirei ~Pure Engagement~", + "mal_id": 5277, "poster": "https://aruppi.jeluchu.xyz/res/directory/223.jpg", "type": "Anime", "genres": [ @@ -3957,7 +3957,7 @@ { "id": "sengoku-basara-ii", "title": "Sengoku Basara II", - "mal_title": "Sengoku Basara II", + "mal_id": 5355, "poster": "https://aruppi.jeluchu.xyz/res/directory/224.jpg", "type": "Anime", "genres": [ @@ -3975,7 +3975,7 @@ { "id": "seikimatsu-occult-academy", "title": "Seikimatsu Occult Academy", - "mal_title": "Seikimatsu Occult Academy", + "mal_id": 6974, "poster": "https://aruppi.jeluchu.xyz/res/directory/225.jpg", "type": "Anime", "genres": [ @@ -3993,7 +3993,7 @@ { "id": "strike-witches-2", "title": "Strike Witches 2", - "mal_title": "Strike Witches 2", + "mal_id": 6381, "poster": "https://aruppi.jeluchu.xyz/res/directory/226.jpg", "type": "Anime", "genres": [ @@ -4011,7 +4011,7 @@ { "id": "infinite-stratos", "title": "Infinite Stratos", - "mal_title": "Infinite Stratos", + "mal_id": 9041, "poster": "https://aruppi.jeluchu.xyz/res/directory/227.jpg", "type": "Anime", "genres": [ @@ -4029,7 +4029,7 @@ { "id": "yumekui-merry", "title": "Yumekui Merry", - "mal_title": "Yumekui Merry", + "mal_id": 9331, "poster": "https://aruppi.jeluchu.xyz/res/directory/228.jpg", "type": "Anime", "genres": [ @@ -4045,7 +4045,7 @@ { "id": "maho-shojo", "title": "Maho Shojo Madoka Magica", - "mal_title": "Maho Shojo Madoka Magica", + "mal_id": 9756, "poster": "https://aruppi.jeluchu.xyz/res/directory/229.jpg", "type": "Anime", "genres": [ @@ -4062,7 +4062,7 @@ { "id": "gosick", "title": "Gosick", - "mal_title": "Gosick", + "mal_id": 8425, "poster": "https://aruppi.jeluchu.xyz/res/directory/230.jpg", "type": "Anime", "genres": [ @@ -4079,7 +4079,7 @@ { "id": "freezing", "title": "Freezing", - "mal_title": "Freezing", + "mal_id": 9367, "poster": "https://aruppi.jeluchu.xyz/res/directory/231.jpg", "type": "Anime", "genres": [ @@ -4100,7 +4100,7 @@ { "id": "kiss-x-sis", "title": "KissxSis", - "mal_title": "KissxSis", + "mal_id": 5042, "poster": "https://aruppi.jeluchu.xyz/res/directory/232.jpg", "type": "Anime", "genres": [ @@ -4119,7 +4119,7 @@ { "id": "oniichan-no-koto", "title": "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", - "mal_title": "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "mal_id": 9587, "poster": "https://aruppi.jeluchu.xyz/res/directory/233.jpg", "type": "Anime", "genres": [ @@ -4136,7 +4136,7 @@ { "id": "beelzebub", "title": "Beelzebub", - "mal_title": "Beelzebub", + "mal_id": 9513, "poster": "https://aruppi.jeluchu.xyz/res/directory/234.jpg", "type": "Anime", "genres": [ @@ -4155,7 +4155,7 @@ { "id": "mitsudomoe-zoryochu", "title": "Mitsudomoe Zoryochu!", - "mal_title": "Mitsudomoe Zoryochu!", + "mal_id": 9510, "poster": "https://aruppi.jeluchu.xyz/res/directory/235.jpg", "type": "Anime", "genres": [ @@ -4171,7 +4171,7 @@ { "id": "cardfight-vanguard", "title": "Cardfight!! Vanguard", - "mal_title": "Cardfight!! Vanguard", + "mal_id": 9539, "poster": "https://aruppi.jeluchu.xyz/res/directory/236.jpg", "type": "Anime", "genres": [ @@ -4189,7 +4189,7 @@ { "id": "wolverine", "title": "Wolverine", - "mal_title": "Wolverine", + "mal_id": 6918, "poster": "https://aruppi.jeluchu.xyz/res/directory/237.jpg", "type": "Anime", "genres": [ @@ -4205,7 +4205,7 @@ { "id": "kore-wa-zombie-desu-ka", "title": "Kore wa Zombie Desu ka?", - "mal_title": "Kore wa Zombie Desu ka?", + "mal_id": 8841, "poster": "https://aruppi.jeluchu.xyz/res/directory/238.jpg", "type": "Anime", "genres": [ @@ -4224,7 +4224,7 @@ { "id": "dragon-crisis", "title": "Dragon Crisis!", - "mal_title": "Dragon Crisis!", + "mal_id": 9330, "poster": "https://aruppi.jeluchu.xyz/res/directory/239.jpg", "type": "Anime", "genres": [ @@ -4243,7 +4243,7 @@ { "id": "k-on-2", "title": "K-ON!! 2", - "mal_title": "K-ON!! 2", + "mal_id": 7791, "poster": "https://aruppi.jeluchu.xyz/res/directory/240.jpg", "type": "Anime", "genres": [ @@ -4260,7 +4260,7 @@ { "id": "b-gata-h-kei", "title": "B Gata H Kei", - "mal_title": "B Gata H Kei", + "mal_id": 7817, "poster": "https://aruppi.jeluchu.xyz/res/directory/241.jpg", "type": "Anime", "genres": [ @@ -4278,7 +4278,7 @@ { "id": "working", "title": "Working!!", - "mal_title": "Working!!", + "mal_id": 6956, "poster": "https://aruppi.jeluchu.xyz/res/directory/242.jpg", "type": "Anime", "genres": [ @@ -4293,7 +4293,7 @@ { "id": "heroman", "title": "Heroman", - "mal_title": "Heroman", + "mal_id": 4334, "poster": "https://aruppi.jeluchu.xyz/res/directory/243.jpg", "type": "Anime", "genres": [ @@ -4309,7 +4309,7 @@ { "id": "hakuouki", "title": "Hakuouki: Shinsengumi Kitan", - "mal_title": "Hakuouki: Shinsengumi Kitan", + "mal_id": 6895, "poster": "https://aruppi.jeluchu.xyz/res/directory/244.jpg", "type": "Anime", "genres": [ @@ -4328,7 +4328,7 @@ { "id": "ikkitousen-xtreme-xecutor", "title": "Ikkitousen: Xtreme Xecutor", - "mal_title": "Ikkitousen: Xtreme Xecutor", + "mal_id": 7580, "poster": "https://aruppi.jeluchu.xyz/res/directory/245.jpg", "type": "Anime", "genres": [ @@ -4346,7 +4346,7 @@ { "id": "aika-r-16", "title": "Aika R-16", - "mal_title": "Aika R-16", + "mal_id": 2163, "poster": "https://aruppi.jeluchu.xyz/res/directory/246.jpg", "type": "Anime", "genres": [ @@ -4362,7 +4362,7 @@ { "id": "aika-zero", "title": "AIKa ZERO", - "mal_title": "AIKa ZERO", + "mal_id": 6443, "poster": "https://aruppi.jeluchu.xyz/res/directory/247.jpg", "type": "Anime", "genres": [ @@ -4379,7 +4379,7 @@ { "id": "akikan", "title": "Akikan!", - "mal_title": "Akikan!", + "mal_id": 5112, "poster": "https://aruppi.jeluchu.xyz/res/directory/248.jpg", "type": "Anime", "genres": [ @@ -4396,7 +4396,7 @@ { "id": "level-e", "title": "Level E", - "mal_title": "Level E", + "mal_id": 9834, "poster": "https://aruppi.jeluchu.xyz/res/directory/249.jpg", "type": "Anime", "genres": [ @@ -4412,7 +4412,7 @@ { "id": "fractale", "title": "Fractale", - "mal_title": "Fractale", + "mal_id": 9314, "poster": "https://aruppi.jeluchu.xyz/res/directory/250.jpg", "type": "Anime", "genres": [ @@ -4428,7 +4428,7 @@ { "id": "hourou-musuko", "title": "Hourou Musuko", - "mal_title": "Hourou Musuko", + "mal_id": 8426, "poster": "https://aruppi.jeluchu.xyz/res/directory/251.jpg", "type": "Anime", "genres": [ @@ -4444,7 +4444,7 @@ { "id": "seikon-no-qwaser", "title": "Seikon no Qwaser", - "mal_title": "Seikon no Qwaser", + "mal_id": 6500, "poster": "https://aruppi.jeluchu.xyz/res/directory/252.jpg", "type": "Anime", "genres": [ @@ -4462,7 +4462,7 @@ { "id": "inazuma-eleven", "title": "Inazuma Eleven", - "mal_title": "Inazuma Eleven", + "mal_id": 5231, "poster": "https://aruppi.jeluchu.xyz/res/directory/253.jpg", "type": "Anime", "genres": [ @@ -4478,7 +4478,7 @@ { "id": "yu-gi-oh", "title": "Yu-Gi-Oh! Duel Monsters", - "mal_title": "Yu-Gi-Oh! Duel Monsters", + "mal_id": 481, "poster": "https://aruppi.jeluchu.xyz/res/directory/254.jpg", "type": "Anime", "genres": [ @@ -4494,7 +4494,7 @@ { "id": "bubblegum-crisis-tokyo-2040", "title": "Bubblegum Crisis Tokyo 2040", - "mal_title": "Bubblegum Crisis Tokyo 2040", + "mal_id": 568, "poster": "https://aruppi.jeluchu.xyz/res/directory/255.jpg", "type": "Anime", "genres": [ @@ -4511,7 +4511,7 @@ { "id": "zombie-loan", "title": "Zombie Loan", - "mal_title": "Zombie Loan", + "mal_id": 2404, "poster": "https://aruppi.jeluchu.xyz/res/directory/256.jpg", "type": "Anime", "genres": [ @@ -4528,7 +4528,7 @@ { "id": "k-on", "title": "K-ON!", - "mal_title": "K-ON!", + "mal_id": 5680, "poster": "https://aruppi.jeluchu.xyz/res/directory/257.jpg", "type": "Anime", "genres": [ @@ -4545,7 +4545,7 @@ { "id": "basquash", "title": "Basquash!", - "mal_title": "Basquash!", + "mal_id": 5675, "poster": "https://aruppi.jeluchu.xyz/res/directory/258.jpg", "type": "Anime", "genres": [ @@ -4562,7 +4562,7 @@ { "id": "fate-stay-night-unilimted", "title": "Fate/stay night Unlimited Blade Works", - "mal_title": "Fate/stay night Unlimited Blade Works", + "mal_id": 22297, "poster": "https://aruppi.jeluchu.xyz/res/directory/259.jpg", "type": "Película", "genres": [ @@ -4580,7 +4580,7 @@ { "id": "break-blade", "title": "Break Blade", - "mal_title": "Break Blade", + "mal_id": 22433, "poster": "https://aruppi.jeluchu.xyz/res/directory/260.jpg", "type": "OVA", "genres": [ @@ -4598,7 +4598,7 @@ { "id": "zero-no-tsukaima-princess-no-rondo", "title": "Zero no Tsukaima: Princess no Rondo", - "mal_title": "Zero no Tsukaima: Princess no Rondo", + "mal_id": 3712, "poster": "https://aruppi.jeluchu.xyz/res/directory/261.jpg", "type": "Anime", "genres": [ @@ -4620,7 +4620,7 @@ { "id": "xxxholic-rou", "title": "xxxHOLiC·Rou", - "mal_title": "xxxHOLiC·Rou", + "mal_id": 6864, "poster": "https://aruppi.jeluchu.xyz/res/directory/262.jpg", "type": "OVA", "genres": [ @@ -4635,7 +4635,7 @@ { "id": "ai-yori-aoshi", "title": "Ai Yori Aoshi", - "mal_title": "Ai Yori Aoshi", + "mal_id": 53, "poster": "https://aruppi.jeluchu.xyz/res/directory/263.jpg", "type": "Anime", "genres": [ @@ -4653,7 +4653,7 @@ { "id": "ai-yori-aoshi-enishi", "title": "Ai Yori Aoshi ~Enishi~", - "mal_title": "Ai Yori Aoshi ~Enishi~", + "mal_id": 394, "poster": "https://aruppi.jeluchu.xyz/res/directory/264.jpg", "type": "Anime", "genres": [ @@ -4671,7 +4671,7 @@ { "id": "allison-to-lillia", "title": "Allison & Lillia", - "mal_title": "Allison & Lillia", + "mal_id": 3549, "poster": "https://aruppi.jeluchu.xyz/res/directory/265.jpg", "type": "Anime", "genres": [ @@ -4687,7 +4687,7 @@ { "id": "aria-the-animation", "title": "Aria the Animation", - "mal_title": "Aria the Animation", + "mal_id": 477, "poster": "https://aruppi.jeluchu.xyz/res/directory/266.jpg", "type": "Anime", "genres": [ @@ -4704,7 +4704,7 @@ { "id": "aria-the-natural", "title": "Aria the Natural", - "mal_title": "Aria the Natural", + "mal_id": 962, "poster": "https://aruppi.jeluchu.xyz/res/directory/267.jpg", "type": "Anime", "genres": [ @@ -4721,7 +4721,7 @@ { "id": "aria-the-origination", "title": "Aria the Origination", - "mal_title": "Aria the Origination", + "mal_id": 3297, "poster": "https://aruppi.jeluchu.xyz/res/directory/268.jpg", "type": "Anime", "genres": [ @@ -4738,7 +4738,7 @@ { "id": "asatte-no-houkou", "title": "Asatte no Houkou", - "mal_title": "Asatte no Houkou", + "mal_id": 1554, "poster": "https://aruppi.jeluchu.xyz/res/directory/269.jpg", "type": "Anime", "genres": [ @@ -4753,7 +4753,7 @@ { "id": "ashita-no-nadja", "title": "Ashita no Nadja", - "mal_title": "Ashita no Nadja", + "mal_id": 1946, "poster": "https://aruppi.jeluchu.xyz/res/directory/270.jpg", "type": "Anime", "genres": [ @@ -4771,7 +4771,7 @@ { "id": "blue-drop-tenshi-tachi-no-gikyoku", "title": "Blue Drop: Tenshi-tachi no Gikyoku", - "mal_title": "Blue Drop: Tenshi-tachi no Gikyoku", + "mal_id": 2964, "poster": "https://aruppi.jeluchu.xyz/res/directory/271.jpg", "type": "Anime", "genres": [ @@ -4787,7 +4787,7 @@ { "id": "bokura-ga-ita", "title": "Bokura ga Ita", - "mal_title": "Bokura ga Ita", + "mal_id": 1222, "poster": "https://aruppi.jeluchu.xyz/res/directory/272.jpg", "type": "Anime", "genres": [ @@ -4804,7 +4804,7 @@ { "id": "bokurano", "title": "Bokurano", - "mal_title": "Bokurano", + "mal_id": 1690, "poster": "https://aruppi.jeluchu.xyz/res/directory/273.jpg", "type": "Anime", "genres": [ @@ -4821,7 +4821,7 @@ { "id": "burn-up-excess", "title": "Burn Up Excess", - "mal_title": "Burn Up Excess", + "mal_id": 370, "poster": "https://aruppi.jeluchu.xyz/res/directory/274.jpg", "type": "Anime", "genres": [ @@ -4841,7 +4841,7 @@ { "id": "burn-up-w", "title": "Burn Up W", - "mal_title": "Burn Up W", + "mal_id": 769, "poster": "https://aruppi.jeluchu.xyz/res/directory/275.jpg", "type": "OVA", "genres": [ @@ -4859,7 +4859,7 @@ { "id": "burn-up-scramble", "title": "Burn-Up Scramble", - "mal_title": "Burn-Up Scramble", + "mal_id": 693, "poster": "https://aruppi.jeluchu.xyz/res/directory/276.jpg", "type": "Anime", "genres": [ @@ -4879,7 +4879,7 @@ { "id": "captain-tsubasa", "title": "Captain Tsubasa (Super Campeones)", - "mal_title": "Captain Tsubasa (Super Campeones)", + "mal_id" : 2116, "poster": "https://aruppi.jeluchu.xyz/res/directory/277.jpg", "type": "Anime", "genres": [ @@ -4895,7 +4895,7 @@ { "id": "chis-sweet-home", "title": "Chi's Sweet Home", - "mal_title": "Chi's Sweet Home", + "mal_id": 3841, "poster": "https://aruppi.jeluchu.xyz/res/directory/278.jpg", "type": "Anime", "genres": [ @@ -4910,7 +4910,7 @@ { "id": "chocotto-sister", "title": "Chocotto Sister", - "mal_title": "Chocotto Sister", + "mal_id": 1219, "poster": "https://aruppi.jeluchu.xyz/res/directory/279.jpg", "type": "Anime", "genres": [ @@ -4926,7 +4926,7 @@ { "id": "cowboy-bebop", "title": "Cowboy Bebop", - "mal_title": "Cowboy Bebop", + "mal_id": 1, "poster": "https://aruppi.jeluchu.xyz/res/directory/280.jpg", "type": "Anime", "genres": [ @@ -4945,7 +4945,7 @@ { "id": "cross-game", "title": "Cross Game", - "mal_title": "Cross Game", + "mal_id": 5941, "poster": "https://aruppi.jeluchu.xyz/res/directory/281.jpg", "type": "Anime", "genres": [ @@ -4963,7 +4963,7 @@ { "id": "dance-in-the-vampire-bund", "title": "Dance in the Vampire Bund", - "mal_title": "Dance in the Vampire Bund", + "mal_id": 6747, "poster": "https://aruppi.jeluchu.xyz/res/directory/282.jpg", "type": "Anime", "genres": [ @@ -4979,7 +4979,7 @@ { "id": "dears", "title": "DearS", - "mal_title": "DearS", + "mal_id": 63, "poster": "https://aruppi.jeluchu.xyz/res/directory/283.jpg", "type": "Anime", "genres": [ @@ -4997,7 +4997,7 @@ { "id": "escaflowne", "title": "Escaflowne", - "mal_title": "Escaflowne", + "mal_id": 393, "poster": "https://aruppi.jeluchu.xyz/res/directory/284.jpg", "type": "Anime", "genres": [ @@ -5015,7 +5015,7 @@ { "id": "eyeshield-21", "title": "Eyeshield 21", - "mal_title": "Eyeshield 21", + "mal_id": 15, "poster": "https://aruppi.jeluchu.xyz/res/directory/285.jpg", "type": "Anime", "genres": [ @@ -5032,7 +5032,7 @@ { "id": "geneshaft", "title": "Geneshaft", - "mal_title": "Geneshaft", + "mal_id": 909, "poster": "https://aruppi.jeluchu.xyz/res/directory/286.jpg", "type": "Anime", "genres": [ @@ -5049,7 +5049,7 @@ { "id": "ghost-in-the-shell-stand-alone-complex", "title": "Ghost in the Shell: Stand Alone Complex", - "mal_title": "Ghost in the Shell: Stand Alone Complex", + "mal_id": 467, "poster": "https://aruppi.jeluchu.xyz/res/directory/287.jpg", "type": "Anime", "genres": [ @@ -5068,7 +5068,7 @@ { "id": "golden-boy", "title": "Golden Boy", - "mal_title": "Golden Boy", + "mal_id": 268, "poster": "https://aruppi.jeluchu.xyz/res/directory/288.jpg", "type": "Anime", "genres": [ @@ -5084,7 +5084,7 @@ { "id": "hatsukoi-limited", "title": "Hatsukoi Limited", - "mal_title": "Hatsukoi Limited", + "mal_id": 5150, "poster": "https://aruppi.jeluchu.xyz/res/directory/289.jpg", "type": "Anime", "genres": [ @@ -5101,7 +5101,7 @@ { "id": "heroic-age", "title": "Heroic Age", - "mal_title": "Heroic Age", + "mal_id": 2002, "poster": "https://aruppi.jeluchu.xyz/res/directory/290.jpg", "type": "Anime", "genres": [ @@ -5119,7 +5119,7 @@ { "id": "hitohira", "title": "Hitohira", - "mal_title": "Hitohira", + "mal_id": 1721, "poster": "https://aruppi.jeluchu.xyz/res/directory/291.jpg", "type": "Anime", "genres": [ @@ -5136,7 +5136,7 @@ { "id": "hyakko", "title": "Hyakko", - "mal_title": "Hyakko", + "mal_id": 4550, "poster": "https://aruppi.jeluchu.xyz/res/directory/292.jpg", "type": "Anime", "genres": [ @@ -5152,7 +5152,7 @@ { "id": "jigoku-sensei-nube", "title": "Jigoku Sensei Nube", - "mal_title": "Jigoku Sensei Nube", + "mal_id": 2012, "poster": "https://aruppi.jeluchu.xyz/res/directory/293.jpg", "type": "Anime", "genres": [ @@ -5172,7 +5172,7 @@ { "id": "kaleido-star", "title": "Kaleido Star", - "mal_title": "Kaleido Star", + "mal_id": 427, "poster": "https://aruppi.jeluchu.xyz/res/directory/294.jpg", "type": "Anime", "genres": [ @@ -5189,7 +5189,7 @@ { "id": "karas", "title": "Karas", - "mal_title": "Karas", + "mal_id": 389, "poster": "https://aruppi.jeluchu.xyz/res/directory/295.jpg", "type": "Anime", "genres": [ @@ -5205,7 +5205,7 @@ { "id": "katekyo-hitman-reborn", "title": "Katekyo Hitman Reborn!", - "mal_title": "Katekyo Hitman Reborn!", + "mal_id": 1604, "poster": "https://aruppi.jeluchu.xyz/res/directory/296.jpg", "type": "Anime", "genres": [ @@ -5222,7 +5222,7 @@ { "id": "kaze-no-stigma", "title": "Kaze no Stigma", - "mal_title": "Kaze no Stigma", + "mal_id": 1691, "poster": "https://aruppi.jeluchu.xyz/res/directory/297.jpg", "type": "Anime", "genres": [ @@ -5240,7 +5240,7 @@ { "id": "kyo-kara-maoh", "title": "Kyo kara Maoh!", - "mal_title": "Kyo kara Maoh!", + "mal_id": 251, "poster": "https://aruppi.jeluchu.xyz/res/directory/298.jpg", "type": "Anime", "genres": [ @@ -5258,7 +5258,7 @@ { "id": "last-exile", "title": "Last Exile", - "mal_title": "Last Exile", + "mal_id": 97, "poster": "https://aruppi.jeluchu.xyz/res/directory/299.jpg", "type": "Anime", "genres": [ @@ -5274,7 +5274,7 @@ { "id": "lovely-complex", "title": "Lovely Complex", - "mal_title": "Lovely Complex", + "mal_id": 2034, "poster": "https://aruppi.jeluchu.xyz/res/directory/300.jpg", "type": "Anime", "genres": [ @@ -5290,7 +5290,7 @@ { "id": "maburaho", "title": "Maburaho", - "mal_title": "Maburaho", + "mal_id": 193, "poster": "https://aruppi.jeluchu.xyz/res/directory/301.jpg", "type": "Anime", "genres": [ @@ -5310,7 +5310,7 @@ { "id": "macross-frontier", "title": "Macross Frontier", - "mal_title": "Macross Frontier", + "mal_id": 3572, "poster": "https://aruppi.jeluchu.xyz/res/directory/302.jpg", "type": "Anime", "genres": [ @@ -5330,7 +5330,7 @@ { "id": "makai-senki-disgaea", "title": "Makai Senki Disgaea", - "mal_title": "Makai Senki Disgaea", + "mal_id": 860, "poster": "https://aruppi.jeluchu.xyz/res/directory/303.jpg", "type": "Anime", "genres": [ @@ -5348,7 +5348,7 @@ { "id": "mobile-suit-gundam-wing", "title": "Mobile Suit Gundam Wing", - "mal_title": "Mobile Suit Gundam Wing", + "mal_id": 90, "poster": "https://aruppi.jeluchu.xyz/res/directory/304.jpg", "type": "Anime", "genres": [ @@ -5367,7 +5367,7 @@ { "id": "monster", "title": "Monster", - "mal_title": "Monster", + "mal_id": 19, "poster": "https://aruppi.jeluchu.xyz/res/directory/305.jpg", "type": "Anime", "genres": [ @@ -5387,7 +5387,7 @@ { "id": "mujin-wakusei-survive", "title": "Mujin Wakusei Survive", - "mal_title": "Mujin Wakusei Survive", + "mal_id": 709, "poster": "https://aruppi.jeluchu.xyz/res/directory/306.jpg", "type": "Anime", "genres": [ @@ -5405,7 +5405,7 @@ { "id": "mushi-shi", "title": "Mushi-Shi", - "mal_title": "Mushi-Shi", + "mal_id": 457, "poster": "https://aruppi.jeluchu.xyz/res/directory/307.jpg", "type": "Anime", "genres": [ @@ -5425,7 +5425,7 @@ { "id": "nagasarete-airantou", "title": "Nagasarete Airantou", - "mal_title": "Nagasarete Airantou", + "mal_id": 1722, "poster": "https://aruppi.jeluchu.xyz/res/directory/308.jpg", "type": "Anime", "genres": [ @@ -5443,7 +5443,7 @@ { "id": "nana", "title": "NANA", - "mal_title": "NANA", + "mal_id": 877, "poster": "https://aruppi.jeluchu.xyz/res/directory/309.jpg", "type": "Anime", "genres": [ @@ -5462,7 +5462,7 @@ { "id": "natsume-yuujin-chou", "title": "Natsume Yuujin-Chou", - "mal_title": "Natsume Yuujin-Chou", + "mal_id": 34591, "poster": "https://aruppi.jeluchu.xyz/res/directory/310.jpg", "type": "Anime", "genres": [ @@ -5480,7 +5480,7 @@ { "id": "nodame-cantabile-finale", "title": "Nodame Cantabile: Finale", - "mal_title": "Nodame Cantabile: Finale", + "mal_id": 8190, "poster": "https://aruppi.jeluchu.xyz/res/directory/311.jpg", "type": "Anime", "genres": [ @@ -5497,7 +5497,7 @@ { "id": "omamori-himari", "title": "Omamori Himari", - "mal_title": "Omamori Himari", + "mal_id": 6324, "poster": "https://aruppi.jeluchu.xyz/res/directory/312.jpg", "type": "Anime", "genres": [ @@ -5517,7 +5517,7 @@ { "id": "onegai-teacher", "title": "Onegai Teacher!", - "mal_title": "Onegai Teacher!", + "mal_id": 195, "poster": "https://aruppi.jeluchu.xyz/res/directory/313.jpg", "type": "Anime", "genres": [ @@ -5535,7 +5535,7 @@ { "id": "onegai-twins", "title": "Onegai Twins!", - "mal_title": "Onegai Twins!", + "mal_id": 196, "poster": "https://aruppi.jeluchu.xyz/res/directory/314.jpg", "type": "Anime", "genres": [ @@ -5553,7 +5553,7 @@ { "id": "ookami-kakushi", "title": "Ookami Kakushi", - "mal_title": "Ookami Kakushi", + "mal_id": 7079, "poster": "https://aruppi.jeluchu.xyz/res/directory/315.jpg", "type": "Anime", "genres": [ @@ -5570,7 +5570,7 @@ { "id": "pita-ten", "title": "Pita Ten", - "mal_title": "Pita Ten", + "mal_id": 162, "poster": "https://aruppi.jeluchu.xyz/res/directory/316.jpg", "type": "Anime", "genres": [ @@ -5589,7 +5589,7 @@ { "id": "queens-blade-gyokuza-o-tsugu-mono", "title": "Queen's Blade: Gyokuza o Tsugu Mono", - "mal_title": "Queen's Blade: Gyokuza o Tsugu Mono", + "mal_id": 6633, "poster": "https://aruppi.jeluchu.xyz/res/directory/317.jpg", "type": "Anime", "genres": [ @@ -5606,7 +5606,7 @@ { "id": "ranma", "title": "Ranma ½", - "mal_title": "Ranma ½", + "mal_id": 210, "poster": "https://aruppi.jeluchu.xyz/res/directory/318.jpg", "type": "Anime", "genres": [ @@ -5623,7 +5623,7 @@ { "id": "rave-master", "title": "Rave Master", - "mal_title": "Rave Master", + "mal_id": 246, "poster": "https://aruppi.jeluchu.xyz/res/directory/319.jpg", "type": "Anime", "genres": [ @@ -5641,7 +5641,7 @@ { "id": "rental-magica", "title": "Rental Magica", - "mal_title": "Rental Magica", + "mal_id": 2369, "poster": "https://aruppi.jeluchu.xyz/res/directory/320.jpg", "type": "Anime", "genres": [ @@ -5657,7 +5657,7 @@ { "id": "saint-seya", "title": "Saint Seiya", - "mal_title": "Saint Seiya", + "mal_id": 1254, "poster": "https://aruppi.jeluchu.xyz/res/directory/321.jpg", "type": "Anime", "genres": [ @@ -5674,7 +5674,7 @@ { "id": "saint-seiya-the-hades-chapter-elysion", "title": "Saint Seiya: The Hades Chapter - Elysion", - "mal_title": "Saint Seiya: The Hades Chapter - Elysion", + "mal_id": 3515, "poster": "https://aruppi.jeluchu.xyz/res/directory/322.jpg", "type": "OVA", "genres": [ @@ -5691,7 +5691,7 @@ { "id": "saint-seiya-the-hades-chapter-inferno", "title": "Saint Seiya: The Hades Chapter - Inferno", - "mal_title": "Saint Seiya: The Hades Chapter - Inferno", + "mal_id": 1253, "poster": "https://aruppi.jeluchu.xyz/res/directory/323.jpg", "type": "OVA", "genres": [ @@ -5711,7 +5711,7 @@ { "id": "saint-seiya-the-hades-chapter-sanctuary", "title": "Saint Seiya: The Hades Chapter - Sanctuary", - "mal_title": "Saint Seiya: The Hades Chapter - Sanctuary", + "mal_id": 1257, "poster": "https://aruppi.jeluchu.xyz/res/directory/324.jpg", "type": "OVA", "genres": [ @@ -5727,7 +5727,7 @@ { "id": "saint-seiya-the-lost-canvas", "title": "Saint Seiya: The Lost Canvas", - "mal_title": "Saint Seiya: The Lost Canvas", + "mal_id": 6171, "poster": "https://aruppi.jeluchu.xyz/res/directory/325.jpg", "type": "Anime", "genres": [ @@ -5746,7 +5746,7 @@ { "id": "sengoku-basara", "title": "Sengoku Basara", - "mal_title": "Sengoku Basara", + "mal_id": 5355, "poster": "https://aruppi.jeluchu.xyz/res/directory/326.jpg", "type": "Anime", "genres": [ @@ -5764,7 +5764,7 @@ { "id": "shakugan-no-shana", "title": "Shakugan no Shana", - "mal_title": "Shakugan no Shana", + "mal_id": 355, "poster": "https://aruppi.jeluchu.xyz/res/directory/327.jpg", "type": "Anime", "genres": [ @@ -5783,7 +5783,7 @@ { "id": "shangri-la", "title": "Shangri-La", - "mal_title": "Shangri-La", + "mal_id": 5220, "poster": "https://aruppi.jeluchu.xyz/res/directory/328.jpg", "type": "Anime", "genres": [ @@ -5799,7 +5799,7 @@ { "id": "shijou-saikyou-no-deshi-kenichi", "title": "Shijou Saikyou no Deshi Kenichi", - "mal_title": "Shijou Saikyou no Deshi Kenichi", + "mal_id": 11813, "poster": "https://aruppi.jeluchu.xyz/res/directory/329.jpg", "type": "Anime", "genres": [ @@ -5817,7 +5817,7 @@ { "id": "slam-dunk", "title": "Slam Dunk", - "mal_title": "Slam Dunk", + "mal_id": 170, "poster": "https://aruppi.jeluchu.xyz/res/directory/330.jpg", "type": "Anime", "genres": [ @@ -5835,7 +5835,7 @@ { "id": "smash-hits", "title": "Smash Hits", - "mal_title": "Smash Hits", + "mal_id": 964, "poster": "https://aruppi.jeluchu.xyz/res/directory/331.jpg", "type": "Anime", "genres": [ @@ -5850,7 +5850,7 @@ { "id": "strawberry-panic", "title": "Strawberry Panic!", - "mal_title": "Strawberry Panic!", + "mal_id": 855, "poster": "https://aruppi.jeluchu.xyz/res/directory/332.jpg", "type": "Anime", "genres": [ @@ -5867,7 +5867,7 @@ { "id": "tears-to-tiara", "title": "Tears to Tiara", - "mal_title": "Tears to Tiara", + "mal_id": 3594, "poster": "https://aruppi.jeluchu.xyz/res/directory/333.jpg", "type": "Anime", "genres": [ @@ -5884,7 +5884,7 @@ { "id": "to-aru-kagaku-no-railgun", "title": "Toaru Kagaku no Railgun", - "mal_title": "Toaru Kagaku no Railgun", + "mal_id": 6213, "poster": "https://aruppi.jeluchu.xyz/res/directory/334.jpg", "type": "Anime", "genres": [ @@ -5900,7 +5900,7 @@ { "id": "tokyo-daigaku-monogatari", "title": "Tokyo Daigaku Monogatari", - "mal_title": "Tokyo Daigaku Monogatari", + "mal_id": 1053, "poster": "https://aruppi.jeluchu.xyz/res/directory/335.jpg", "type": "Anime", "genres": [ @@ -5918,7 +5918,7 @@ { "id": "tokyo-magnitude-80", "title": "Tokyo Magnitude 8.0", - "mal_title": "Tokyo Magnitude 8.0", + "mal_id": 7654, "poster": "https://aruppi.jeluchu.xyz/res/directory/336.jpg", "type": "Anime", "genres": [ @@ -5932,7 +5932,7 @@ { "id": "tokyo-mew-mew", "title": "Tokyo Mew Mew", - "mal_title": "Tokyo Mew Mew", + "mal_id": 687, "poster": "https://aruppi.jeluchu.xyz/res/directory/337.jpg", "type": "Anime", "genres": [ @@ -5953,7 +5953,7 @@ { "id": "tsukihime", "title": "Tsukihime, Lunar Legend", - "mal_title": "Tsukihime, Lunar Legend", + "mal_id": 169, "poster": "https://aruppi.jeluchu.xyz/res/directory/338.jpg", "type": "Anime", "genres": [ @@ -5973,7 +5973,7 @@ { "id": "umi-monogatari", "title": "Umi Monogatari ~Anata ga Ite Kureta Koto~", - "mal_title": "Umi Monogatari ~Anata ga Ite Kureta Koto~", + "mal_id": 6129, "poster": "https://aruppi.jeluchu.xyz/res/directory/339.jpg", "type": "Anime", "genres": [ @@ -5991,7 +5991,7 @@ { "id": "umineko-no-naku-koro-ni", "title": "Umineko no Naku Koro ni", - "mal_title": "Umineko no Naku Koro ni", + "mal_id": 4896, "poster": "https://aruppi.jeluchu.xyz/res/directory/340.jpg", "type": "Anime", "genres": [ @@ -6008,7 +6008,7 @@ { "id": "uta-kata", "title": "Uta-Kata", - "mal_title": "Uta-Kata", + "mal_id": 688, "poster": "https://aruppi.jeluchu.xyz/res/directory/341.jpg", "type": "Anime", "genres": [ @@ -6023,7 +6023,7 @@ { "id": "white-album", "title": "White Album", - "mal_title": "White Album", + "mal_id": 4720, "poster": "https://aruppi.jeluchu.xyz/res/directory/342.jpg", "type": "Anime", "genres": [ @@ -6040,7 +6040,7 @@ { "id": "white-album-2", "title": "White Album 2", - "mal_title": "White Album 2", + "mal_id": 18245, "poster": "https://aruppi.jeluchu.xyz/res/directory/343.jpg", "type": "Anime", "genres": [ @@ -6057,7 +6057,7 @@ { "id": "wolfs-rain", "title": "Wolf's Rain", - "mal_title": "Wolf's Rain", + "mal_id": 202, "poster": "https://aruppi.jeluchu.xyz/res/directory/344.jpg", "type": "Anime", "genres": [ @@ -6076,7 +6076,7 @@ { "id": "yoake-mae-yori-ruri-iro-na-crescent-love", "title": "Yoake Mae Yori Ruri Iro Na -Crescent Love-", - "mal_title": "Yoake Mae Yori Ruri Iro Na -Crescent Love-", + "mal_id": 1543, "poster": "https://aruppi.jeluchu.xyz/res/directory/345.jpg", "type": "Anime", "genres": [ @@ -6093,7 +6093,7 @@ { "id": "yu-yu-hakusho", "title": "Yu Yu Hakusho: Ghost Files", - "mal_title": "Yu Yu Hakusho: Ghost Files", + "mal_id": 392, "poster": "https://aruppi.jeluchu.xyz/res/directory/346.jpg", "type": "Anime", "genres": [ @@ -6113,7 +6113,7 @@ { "id": "yume-tsukai", "title": "Yume Tsukai", - "mal_title": "Yume Tsukai", + "mal_id": 943, "poster": "https://aruppi.jeluchu.xyz/res/directory/347.jpg", "type": "Anime", "genres": [ @@ -6130,7 +6130,7 @@ { "id": "zoids", "title": "Zoids", - "mal_title": "Zoids", + "mal_id": 763, "poster": "https://aruppi.jeluchu.xyz/res/directory/348.jpg", "type": "Anime", "genres": [ @@ -6148,7 +6148,7 @@ { "id": "zoku-natsume-yuujinchou", "title": "Zoku Natsume Yuujinchou", - "mal_title": "Zoku Natsume Yuujinchou", + "mal_id": 5300, "poster": "https://aruppi.jeluchu.xyz/res/directory/349.jpg", "type": "Anime", "genres": [ @@ -6166,7 +6166,7 @@ { "id": "supernatural-the-animation", "title": "Supernatural the Animation", - "mal_title": "Supernatural the Animation", + "mal_id": 8986, "poster": "https://aruppi.jeluchu.xyz/res/directory/350.jpg", "type": "OVA", "genres": [ @@ -6183,7 +6183,7 @@ { "id": "x-men", "title": "X-Men", - "mal_title": "X-Men", + "mal_id": 6919, "poster": "https://aruppi.jeluchu.xyz/res/directory/351.jpg", "type": "Anime", "genres": [ @@ -6199,7 +6199,7 @@ { "id": "dog-days", "title": "Dog Days", - "mal_title": "Dog Days", + "mal_id": 10155, "poster": "https://aruppi.jeluchu.xyz/res/directory/352.jpg", "type": "Anime", "genres": [ @@ -6216,7 +6216,7 @@ { "id": "hanasaku-iroha", "title": "Hanasaku Iroha", - "mal_title": "Hanasaku Iroha", + "mal_id": 9289, "poster": "https://aruppi.jeluchu.xyz/res/directory/353.jpg", "type": "Anime", "genres": [ @@ -6233,7 +6233,7 @@ { "id": "toriko", "title": "Toriko", - "mal_title": "Toriko", + "mal_id": 10033, "poster": "https://aruppi.jeluchu.xyz/res/directory/354.jpg", "type": "Anime", "genres": [ @@ -6251,7 +6251,7 @@ { "id": "cencoroll", "title": "Cencoroll", - "mal_title": "Cencoroll", + "mal_id": 3087, "poster": "https://aruppi.jeluchu.xyz/res/directory/355.jpg", "type": "Película", "genres": [ @@ -6266,7 +6266,7 @@ { "id": "the-humanoid", "title": "The Humanoid", - "mal_title": "The Humanoid", + "mal_id": 2974, "poster": "https://aruppi.jeluchu.xyz/res/directory/356.jpg", "type": "OVA", "genres": [ @@ -6283,7 +6283,7 @@ { "id": "steinsgate", "title": "Steins;Gate", - "mal_title": "Steins;Gate", + "mal_id": 9253, "poster": "https://aruppi.jeluchu.xyz/res/directory/357.jpg", "type": "Anime", "genres": [ @@ -6298,7 +6298,7 @@ { "id": "nichijou", "title": "Nichijou", - "mal_title": "Nichijou", + "mal_id": 10165, "poster": "https://aruppi.jeluchu.xyz/res/directory/358.jpg", "type": "Anime", "genres": [ @@ -6314,7 +6314,7 @@ { "id": "ore-tachi-ni-tsubasa-wa-nai", "title": "Ore-tachi ni Tsubasa wa Nai", - "mal_title": "Ore-tachi ni Tsubasa wa Nai", + "mal_id":9922, "poster": "https://aruppi.jeluchu.xyz/res/directory/359.jpg", "type": "Anime", "genres": [ @@ -6332,7 +6332,7 @@ { "id": "gintama-2011", "title": "Gintama'", - "mal_title": "Gintama'", + "mal_id": 918, "poster": "https://aruppi.jeluchu.xyz/res/directory/360.jpg", "type": "Anime", "genres": [ @@ -6352,7 +6352,7 @@ { "id": "guyver-out-of-control", "title": "Guyver: Out of Control", - "mal_title": "Guyver: Out of Control", + "mal_id": 2293, "poster": "https://aruppi.jeluchu.xyz/res/directory/361.jpg", "type": "Película", "genres": [ @@ -6369,7 +6369,7 @@ { "id": "sengoku-otome-momoiro-paradox", "title": "Sengoku Otome - Momoiro Paradox", - "mal_title": "Sengoku Otome - Momoiro Paradox", + "mal_id": 10308, "poster": "https://aruppi.jeluchu.xyz/res/directory/362.jpg", "type": "Anime", "genres": [ @@ -6388,7 +6388,7 @@ { "id": "king-of-thorn", "title": "King of Thorn", - "mal_title": "King of Thorn", + "mal_id": 6610, "poster": "https://aruppi.jeluchu.xyz/res/directory/363.jpg", "type": "Película", "genres": [ @@ -6405,7 +6405,7 @@ { "id": "baka-to-test-to-shokanju-matsuri", "title": "Baka to Test to Shokanju: Matsuri", - "mal_title": "Baka to Test to Shokanju: Matsuri", + "mal_id": 9471, "poster": "https://aruppi.jeluchu.xyz/res/directory/364.jpg", "type": "OVA", "genres": [ @@ -6421,7 +6421,7 @@ { "id": "tiger-bunny", "title": "Tiger & Bunny", - "mal_title": "Tiger & Bunny", + "mal_id": 9941, "poster": "https://aruppi.jeluchu.xyz/res/directory/365.jpg", "type": "Anime", "genres": [ @@ -6438,7 +6438,7 @@ { "id": "sket-dance", "title": "Sket Dance", - "mal_title": "Sket Dance", + "mal_id": 9863, "poster": "https://aruppi.jeluchu.xyz/res/directory/366.jpg", "type": "Anime", "genres": [ @@ -6454,7 +6454,7 @@ { "id": "a-channel", "title": "A Channel", - "mal_title": "A Channel", + "mal_id": 9776, "poster": "https://aruppi.jeluchu.xyz/res/directory/367.jpg", "type": "Anime", "genres": [ @@ -6471,7 +6471,7 @@ { "id": "30-sai-no-hoken-taiiku", "title": "30-sai no Hoken Taiiku ", - "mal_title": "30-sai no Hoken Taiiku ", + "mal_id": 9624, "poster": "https://aruppi.jeluchu.xyz/res/directory/368.jpg", "type": "Anime", "genres": [ @@ -6488,7 +6488,7 @@ { "id": "kampfer-fur-die-liebe", "title": "Kampfer fur die liebe", - "mal_title": "Kampfer fur die liebe", + "mal_id": 10076, "poster": "https://aruppi.jeluchu.xyz/res/directory/369.jpg", "type": "OVA", "genres": [ @@ -6506,7 +6506,7 @@ { "id": "maria-holic-alive", "title": "Maria Holic Alive", - "mal_title": "Maria Holic Alive", + "mal_id": 9712, "poster": "https://aruppi.jeluchu.xyz/res/directory/370.jpg", "type": "Anime", "genres": [ @@ -6523,7 +6523,7 @@ { "id": "dororon-enma-kun-meeramera", "title": "Dororon Enma-kun Meeramera", - "mal_title": "Dororon Enma-kun Meeramera", + "mal_id": 9493, "poster": "https://aruppi.jeluchu.xyz/res/directory/371.jpg", "type": "Anime", "genres": [ @@ -6543,7 +6543,7 @@ { "id": "summer-wars", "title": "Summer Wars", - "mal_title": "Summer Wars", + "mal_id": 5681, "poster": "https://aruppi.jeluchu.xyz/res/directory/372.jpg", "type": "Película", "genres": [ @@ -6558,7 +6558,7 @@ { "id": "yondemasuyo-azazel-san", "title": "Yondemasuyo Azazel-san", - "mal_title": "Yondemasuyo Azazel-san", + "mal_id": 16241, "poster": "https://aruppi.jeluchu.xyz/res/directory/373.jpg", "type": "Anime", "genres": [ @@ -6574,7 +6574,7 @@ { "id": "astarotte-no-omocha", "title": "Astarotte no Omocha!", - "mal_title": "Astarotte no Omocha!", + "mal_id": 9736, "poster": "https://aruppi.jeluchu.xyz/res/directory/374.jpg", "type": "Anime", "genres": [ @@ -6593,7 +6593,7 @@ { "id": "morita-san-wa-mukuchi", "title": "Morita-san wa Mukuchi", - "mal_title": "Morita-san wa Mukuchi", + "mal_id": 9774, "poster": "https://aruppi.jeluchu.xyz/res/directory/375.jpg", "type": "OVA", "genres": [ @@ -6609,7 +6609,7 @@ { "id": "hen-zemi", "title": "Hen Zemi", - "mal_title": "Hen Zemi", + "mal_id": 10187, "poster": "https://aruppi.jeluchu.xyz/res/directory/376.jpg", "type": "Anime", "genres": [ @@ -6625,7 +6625,7 @@ { "id": "brave-story", "title": "Brave Story", - "mal_title": "Brave Story", + "mal_id": 1681, "poster": "https://aruppi.jeluchu.xyz/res/directory/377.jpg", "type": "Película", "genres": [ @@ -6644,7 +6644,7 @@ { "id": "kami-nomi-zo-shiru-sekai-2", "title": "Kami Nomi zo Shiru Sekai 2", - "mal_title": "Kami Nomi zo Shiru Sekai 2", + "mal_id": 10080, "poster": "https://aruppi.jeluchu.xyz/res/directory/378.jpg", "type": "Anime", "genres": [ @@ -6662,7 +6662,7 @@ { "id": "sofuteni", "title": "Sofuteni", - "mal_title": "Sofuteni", + "mal_id": 10109, "poster": "https://aruppi.jeluchu.xyz/res/directory/379.jpg", "type": "Anime", "genres": [ @@ -6679,7 +6679,7 @@ { "id": "gyakkyo-burai-kaiji-hakairoku-hen", "title": "Gyakkyo Burai Kaiji: Hakairoku-hen", - "mal_title": "Gyakkyo Burai Kaiji: Hakairoku-hen", + "mal_id": 10271, "poster": "https://aruppi.jeluchu.xyz/res/directory/380.jpg", "type": "Anime", "genres": [ @@ -6696,7 +6696,7 @@ { "id": "one-piece-strong-world", "title": "One Piece Strong World", - "mal_title": "One Piece Strong World", + "mal_id": 4155, "poster": "https://aruppi.jeluchu.xyz/res/directory/381.jpg", "type": "Película", "genres": [ @@ -6715,7 +6715,7 @@ { "id": "hoshizora-e-kakaru-hoshi", "title": "Hoshizora e Kakaru Hashi ", - "mal_title": "Hoshizora e Kakaru Hashi ", + "mal_id": 10079, "poster": "https://aruppi.jeluchu.xyz/res/directory/382.jpg", "type": "Anime", "genres": [ @@ -6733,7 +6733,7 @@ { "id": "seikon-no-qwaser-ii", "title": "Seikon no Qwaser II", - "mal_title": "Seikon no Qwaser II", + "mal_id": 10073, "poster": "https://aruppi.jeluchu.xyz/res/directory/383.jpg", "type": "Anime", "genres": [ @@ -6751,7 +6751,7 @@ { "id": "c-the-money-of-soul", "title": "C: The Money of Soul and Possibility Control", - "mal_title": "C: The Money of Soul and Possibility Control", + "mal_id": 10163, "poster": "https://aruppi.jeluchu.xyz/res/directory/384.jpg", "type": "Anime", "genres": [ @@ -6768,7 +6768,7 @@ { "id": "denpa-onna-to-seishun-otoko", "title": "Denpa Onna to Seishun Otoko", - "mal_title": "Denpa Onna to Seishun Otoko", + "mal_id": 9379, "poster": "https://aruppi.jeluchu.xyz/res/directory/385.jpg", "type": "Anime", "genres": [ @@ -6785,7 +6785,7 @@ { "id": "hidan-no-aria", "title": "Hidan no Aria", - "mal_title": "Hidan no Aria", + "mal_id": 8630, "poster": "https://aruppi.jeluchu.xyz/res/directory/386.jpg", "type": "Anime", "genres": [ @@ -6802,7 +6802,7 @@ { "id": "ano-hana", "title": "Ano Hi Mita Hana no Namae o Boku-tachi wa Mada Shiranai", - "mal_title": "Ano Hi Mita Hana no Namae o Boku-tachi wa Mada Shiranai", + "mal_id": 9989, "poster": "https://aruppi.jeluchu.xyz/res/directory/387.jpg", "type": "Anime", "genres": [ @@ -6818,7 +6818,7 @@ { "id": "deadman-wonderland", "title": "Deadman Wonderland", - "mal_title": "Deadman Wonderland", + "mal_id": 6880, "poster": "https://aruppi.jeluchu.xyz/res/directory/388.jpg", "type": "Anime", "genres": [ @@ -6834,7 +6834,7 @@ { "id": "yu-gi-oh-zexal", "title": "Yu-Gi-Oh! Zexal", - "mal_title": "Yu-Gi-Oh! Zexal", + "mal_id": 10015, "poster": "https://aruppi.jeluchu.xyz/res/directory/389.jpg", "type": "Anime", "genres": [ @@ -6851,7 +6851,7 @@ { "id": "ao-no-exorcist", "title": "Ao no Exorcist", - "mal_title": "Ao no Exorcist", + "mal_id": 9919, "poster": "https://aruppi.jeluchu.xyz/res/directory/390.jpg", "type": "Anime", "genres": [ @@ -6869,7 +6869,7 @@ { "id": "mazinkaiser-skl", "title": "Mazinkaiser SKL", - "mal_title": "Mazinkaiser SKL", + "mal_id": 8666, "poster": "https://aruppi.jeluchu.xyz/res/directory/391.jpg", "type": "OVA", "genres": [ @@ -6887,7 +6887,7 @@ { "id": "tales-of-phantasia", "title": "Tales of Phantasia", - "mal_title": "Tales of Phantasia", + "mal_id": 391, "poster": "https://aruppi.jeluchu.xyz/res/directory/392.jpg", "type": "OVA", "genres": [ @@ -6903,7 +6903,7 @@ { "id": "ga-rei-zero", "title": "Ga Rei Zero", - "mal_title": "Ga Rei Zero", + "mal_id": 4725, "poster": "https://aruppi.jeluchu.xyz/res/directory/393.jpg", "type": "Anime", "genres": [ @@ -6920,7 +6920,7 @@ { "id": "moshidora", "title": "Moshidora", - "mal_title": "Moshidora", + "mal_id": 9693, "poster": "https://aruppi.jeluchu.xyz/res/directory/394.jpg", "type": "Anime", "genres": [ @@ -6935,7 +6935,7 @@ { "id": "shinigami-no-ballad", "title": "Shinigami No Ballad", - "mal_title": "Shinigami No Ballad", + "mal_id": 789, "poster": "https://aruppi.jeluchu.xyz/res/directory/395.jpg", "type": "Anime", "genres": [ @@ -6952,7 +6952,7 @@ { "id": "highschool-of-the-dead-ovas", "title": "Highschool of the Dead Ova", - "mal_title": "Highschool of the Dead Ova", + "mal_id": 8074, "poster": "https://aruppi.jeluchu.xyz/res/directory/396.jpg", "type": "OVA", "genres": [ @@ -6968,7 +6968,7 @@ { "id": "naruto-shippuden-peliculas", "title": "Naruto Shippuden Pelicula", - "mal_title": "Naruto Shippuden Pelicula", + "mal_id": 2472, "poster": "https://aruppi.jeluchu.xyz/res/directory/397.jpg", "type": "Película", "genres": [ @@ -6986,7 +6986,7 @@ { "id": "futakoi", "title": "Futakoi", - "mal_title": "Futakoi", + "mal_id": 125, "poster": "https://aruppi.jeluchu.xyz/res/directory/398.jpg", "type": "Anime", "genres": [ @@ -7002,7 +7002,7 @@ { "id": "hitsuji-no-uta", "title": "Hitsuji no uta", - "mal_title": "Hitsuji no uta", + "mal_id": 258, "poster": "https://aruppi.jeluchu.xyz/res/directory/399.jpg", "type": "OVA", "genres": [ @@ -7018,7 +7018,7 @@ { "id": "mermaid-forest", "title": "Mermaid Forest", - "mal_title": "Mermaid Forest", + "mal_id": 2016, "poster": "https://aruppi.jeluchu.xyz/res/directory/400.jpg", "type": "Anime", "genres": [ @@ -7035,7 +7035,7 @@ { "id": "fairy-tail-ovas", "title": "Fairy Tail Ova", - "mal_title": "Fairy Tail Ova", + "mal_id": 32930, "poster": "https://aruppi.jeluchu.xyz/res/directory/401.jpg", "type": "OVA", "genres": [ @@ -7053,7 +7053,7 @@ { "id": "showa-monogatari", "title": "Showa Monogatari", - "mal_title": "Showa Monogatari", + "mal_id": 10014, "poster": "https://aruppi.jeluchu.xyz/res/directory/402.jpg", "type": "Anime", "genres": [ @@ -7068,7 +7068,7 @@ { "id": "queen-emeraldas", "title": "Queen Emeraldas", - "mal_title": "Queen Emeraldas", + "mal_id": 1553, "poster": "https://aruppi.jeluchu.xyz/res/directory/403.jpg", "type": "OVA", "genres": [ @@ -7084,7 +7084,7 @@ { "id": "gunslinger-girl", "title": "Gunslinger Girl", - "mal_title": "Gunslinger Girl", + "mal_id": 134, "poster": "https://aruppi.jeluchu.xyz/res/directory/404.jpg", "type": "Anime", "genres": [ @@ -7102,7 +7102,7 @@ { "id": "gunslinger-girl-il-teatrino", "title": "Gunslinger Girl Il Teatrino", - "mal_title": "Gunslinger Girl Il Teatrino", + "mal_id": 3231, "poster": "https://aruppi.jeluchu.xyz/res/directory/405.jpg", "type": "Anime", "genres": [ @@ -7119,7 +7119,7 @@ { "id": "ragnarok-the-animation", "title": "Ragnarok The Animation", - "mal_title": "Ragnarok The Animation", + "mal_id": 417, "poster": "https://aruppi.jeluchu.xyz/res/directory/406.jpg", "type": "Anime", "genres": [ @@ -7135,7 +7135,7 @@ { "id": "space-adventure-cobra-the-movie", "title": "Space Adventure Cobra The Movie", - "mal_title": "Space Adventure Cobra The Movie", + "mal_id": 2452, "poster": "https://aruppi.jeluchu.xyz/res/directory/407.jpg", "type": "Película", "genres": [ @@ -7152,7 +7152,7 @@ { "id": "slayers-great-movie", "title": "Slayers Great Movie", - "mal_title": "Slayers Great Movie", + "mal_id": 868, "poster": "https://aruppi.jeluchu.xyz/res/directory/408.jpg", "type": "Película", "genres": [ @@ -7170,7 +7170,7 @@ { "id": "futakoi-alternative", "title": "Futakoi Alternative", - "mal_title": "Futakoi Alternative", + "mal_id": 126, "poster": "https://aruppi.jeluchu.xyz/res/directory/409.jpg", "type": "Anime", "genres": [ @@ -7186,7 +7186,7 @@ { "id": "full-moon-wo-sagashite", "title": "Full Moon Wo Sagashite", - "mal_title": "Full Moon Wo Sagashite", + "mal_id": 122, "poster": "https://aruppi.jeluchu.xyz/res/directory/410.jpg", "type": "Anime", "genres": [ @@ -7205,7 +7205,7 @@ { "id": "full-metal-panic-fumoffu", "title": "Full Metal Panic! Fumoffu", - "mal_title": "Full Metal Panic! Fumoffu", + "mal_id": 72, "poster": "https://aruppi.jeluchu.xyz/res/directory/411.jpg", "type": "Anime", "genres": [ @@ -7221,7 +7221,7 @@ { "id": "eve-no-jikan", "title": "Eve no Jikan", - "mal_title": "Eve no Jikan", + "mal_id": 3167, "poster": "https://aruppi.jeluchu.xyz/res/directory/412.jpg", "type": "Anime", "genres": [ @@ -7236,7 +7236,7 @@ { "id": "ergo-proxy", "title": "Ergo Proxy", - "mal_title": "Ergo Proxy", + "mal_id": 790, "poster": "https://aruppi.jeluchu.xyz/res/directory/413.jpg", "type": "Anime", "genres": [ @@ -7252,7 +7252,7 @@ { "id": "shugo-chara-doki", "title": "Shugo Chara Doki", - "mal_title": "Shugo Chara Doki", + "mal_id": 5262, "poster": "https://aruppi.jeluchu.xyz/res/directory/414.jpg", "type": "Anime", "genres": [ @@ -7269,7 +7269,7 @@ { "id": "shugo-chara-party", "title": "Shugo Chara Party", - "mal_title": "Shugo Chara Party", + "mal_id": 7082, "poster": "https://aruppi.jeluchu.xyz/res/directory/415.jpg", "type": "Anime", "genres": [ @@ -7286,7 +7286,7 @@ { "id": "so-ra-no-wo-to", "title": "Sora no Woto", - "mal_title": "Sora no Woto", + "mal_id": 6802, "poster": "https://aruppi.jeluchu.xyz/res/directory/416.jpg", "type": "Anime", "genres": [ @@ -7303,7 +7303,7 @@ { "id": "genshiken", "title": "Genshiken", - "mal_title": "Genshiken", + "mal_id": 240, "poster": "https://aruppi.jeluchu.xyz/res/directory/417.jpg", "type": "Anime", "genres": [ @@ -7319,7 +7319,7 @@ { "id": "beyblade", "title": "Beyblade", - "mal_title": "Beyblade", + "mal_id": 288, "poster": "https://aruppi.jeluchu.xyz/res/directory/418.jpg", "type": "Anime", "genres": [ @@ -7338,7 +7338,7 @@ { "id": "ninja-ryukenden", "title": "Ninja Ryukenden", - "mal_title": "Ninja Ryukenden", + "mal_id": 619, "poster": "https://aruppi.jeluchu.xyz/res/directory/419.jpg", "type": "OVA", "genres": [ @@ -7358,7 +7358,7 @@ { "id": "kurokami", "title": "Kurokami", - "mal_title": "Kurokami", + "mal_id": 5079, "poster": "https://aruppi.jeluchu.xyz/res/directory/420.jpg", "type": "Anime", "genres": [ @@ -7374,7 +7374,7 @@ { "id": "area-88", "title": "Area 88", - "mal_title": "Area 88", + "mal_id": 1488, "poster": "https://aruppi.jeluchu.xyz/res/directory/421.jpg", "type": "Anime", "genres": [ @@ -7392,7 +7392,7 @@ { "id": "medabots", "title": "Medabots", - "mal_title": "Medabots", + "mal_id": 1138, "poster": "https://aruppi.jeluchu.xyz/res/directory/422.jpg", "type": "Anime", "genres": [ @@ -7409,7 +7409,7 @@ { "id": "legend-of-duo", "title": "Legend of Duo", - "mal_title": "Legend of Duo", + "mal_id": 600, "poster": "https://aruppi.jeluchu.xyz/res/directory/423.jpg", "type": "Anime", "genres": [ @@ -7426,7 +7426,7 @@ { "id": "fire-emblem", "title": "Fire Emblem", - "mal_title": "Fire Emblem", + "mal_id": 2782, "poster": "https://aruppi.jeluchu.xyz/res/directory/424.jpg", "type": "OVA", "genres": [ @@ -7444,7 +7444,7 @@ { "id": "the-skull-man", "title": "The Skull Man", - "mal_title": "The Skull Man", + "mal_id": 2161, "poster": "https://aruppi.jeluchu.xyz/res/directory/425.jpg", "type": "Anime", "genres": [ @@ -7460,7 +7460,7 @@ { "id": "bastard", "title": "Bastard", - "mal_title": "Bastard", + "mal_id": 404, "poster": "https://aruppi.jeluchu.xyz/res/directory/426.jpg", "type": "OVA", "genres": [ @@ -7479,7 +7479,7 @@ { "id": "detroit-metal-city", "title": "Detroit Metal City", - "mal_title": "Detroit Metal City", + "mal_id": 3702, "poster": "https://aruppi.jeluchu.xyz/res/directory/427.jpg", "type": "Anime", "genres": [ @@ -7494,7 +7494,7 @@ { "id": "vipers-creed", "title": "Viper's Creed", - "mal_title": "Viper's Creed", + "mal_id": 5505, "poster": "https://aruppi.jeluchu.xyz/res/directory/428.jpg", "type": "Anime", "genres": [ @@ -7510,7 +7510,7 @@ { "id": "seitokai-no-ichizon", "title": "Seitokai no Ichizon", - "mal_title": "Seitokai no Ichizon", + "mal_id": 5909, "poster": "https://aruppi.jeluchu.xyz/res/directory/429.jpg", "type": "Anime", "genres": [ @@ -7527,7 +7527,7 @@ { "id": "innocent-venus", "title": "Innocent Venus", - "mal_title": "Innocent Venus", + "mal_id": 1230, "poster": "https://aruppi.jeluchu.xyz/res/directory/430.jpg", "type": "Anime", "genres": [ @@ -7545,7 +7545,7 @@ { "id": "kage-kara-mamoru", "title": "Kage kara Mamoru", - "mal_title": "Kage kara Mamoru", + "mal_id": 590, "poster": "https://aruppi.jeluchu.xyz/res/directory/431.jpg", "type": "Anime", "genres": [ @@ -7561,7 +7561,7 @@ { "id": "love-love", "title": "Love Love", - "mal_title": "Love Love", + "mal_id": 275, "poster": "https://aruppi.jeluchu.xyz/res/directory/432.jpg", "type": "Anime", "genres": [ @@ -7578,7 +7578,7 @@ { "id": "kurogane-no-linebarrels", "title": "Kurogane no Linebarrels", - "mal_title": "Kurogane no Linebarrels", + "mal_id": 3653, "poster": "https://aruppi.jeluchu.xyz/res/directory/433.jpg", "type": "Anime", "genres": [ @@ -7594,7 +7594,7 @@ { "id": "hellsing-ultimate", "title": "Hellsing Ultimate", - "mal_title": "Hellsing Ultimate", + "mal_id": 777, "poster": "https://aruppi.jeluchu.xyz/res/directory/434.jpg", "type": "OVA", "genres": [ @@ -7613,7 +7613,7 @@ { "id": "samurai-spirits-2-asura-zanmaden", "title": "Samurai Spirits 2 Asura Zanmaden", - "mal_title": "Samurai Spirits 2 Asura Zanmaden", + "mal_id": 839, "poster": "https://aruppi.jeluchu.xyz/res/directory/435.jpg", "type": "OVA", "genres": [ @@ -7631,7 +7631,7 @@ { "id": "xxxholic-sueo-de-una-noche-de-verano", "title": "xxxHOLiC: Sueño De Una Noche De Verano", - "mal_title": "xxxHOLiC: Sueño De Una Noche De Verano", + "mal_id":793, "poster": "https://aruppi.jeluchu.xyz/res/directory/436.jpg", "type": "Película", "genres": [ @@ -7649,7 +7649,7 @@ { "id": "clannad-the-motion-picture", "title": "Clannad The Motion Picture", - "mal_title": "Clannad The Motion Picture", + "mal_id": 536, "poster": "https://aruppi.jeluchu.xyz/res/directory/437.jpg", "type": "Película", "genres": [ @@ -7666,7 +7666,7 @@ { "id": "blood-the-last-vampire", "title": "Blood The Last Vampire", - "mal_title": "Blood The Last Vampire", + "mal_id": 405, "poster": "https://aruppi.jeluchu.xyz/res/directory/438.jpg", "type": "Película", "genres": [ @@ -7682,7 +7682,7 @@ { "id": "inazuma-eleven-go", "title": "Inazuma Eleven GO", - "mal_title": "Inazuma Eleven GO", + "mal_id": 10507, "poster": "https://aruppi.jeluchu.xyz/res/directory/439.jpg", "type": "Anime", "genres": [ @@ -7698,7 +7698,7 @@ { "id": "sakura-card-captor", "title": "Sakura Card Captor", - "mal_title": "Sakura Card Captor", + "mal_id": 232, "poster": "https://aruppi.jeluchu.xyz/res/directory/440.jpg", "type": "Anime", "genres": [ @@ -7719,7 +7719,7 @@ { "id": "hayate-no-gotoku-2", "title": "Hayate no Gotoku!! 2nd", - "mal_title": "Hayate no Gotoku!! 2nd", + "mal_id": 2026, "poster": "https://aruppi.jeluchu.xyz/res/directory/441.jpg", "type": "Anime", "genres": [ @@ -7737,7 +7737,7 @@ { "id": "seiken-no-blacksmith", "title": "Seiken no Blacksmith", - "mal_title": "Seiken no Blacksmith", + "mal_id": 5940, "poster": "https://aruppi.jeluchu.xyz/res/directory/442.jpg", "type": "Anime", "genres": [ @@ -7753,7 +7753,7 @@ { "id": "true-tears", "title": "True Tears", - "mal_title": "True Tears", + "mal_id": 2129, "poster": "https://aruppi.jeluchu.xyz/res/directory/443.jpg", "type": "Anime", "genres": [ @@ -7769,7 +7769,7 @@ { "id": "dragon-ball-gt", "title": "Dragon Ball GT", - "mal_title": "Dragon Ball GT", + "mal_id": 225, "poster": "https://aruppi.jeluchu.xyz/res/directory/444.jpg", "type": "Anime", "genres": [ @@ -7790,7 +7790,7 @@ { "id": "night-head-genesis", "title": "Night Head Genesis", - "mal_title": "Night Head Genesis", + "mal_id": 1243, "poster": "https://aruppi.jeluchu.xyz/res/directory/445.jpg", "type": "Anime", "genres": [ @@ -7808,7 +7808,7 @@ { "id": "witchblade", "title": "WitchBlade", - "mal_title": "WitchBlade", + "mal_id": 935, "poster": "https://aruppi.jeluchu.xyz/res/directory/446.jpg", "type": "Anime", "genres": [ @@ -7824,7 +7824,7 @@ { "id": "those-who-hunt-elves", "title": "Those Who Hunt Elves", - "mal_title": "Those Who Hunt Elves", + "mal_id": 1045, "poster": "https://aruppi.jeluchu.xyz/res/directory/447.jpg", "type": "Anime", "genres": [ @@ -7843,7 +7843,7 @@ { "id": "those-who-hunt-elves-ii", "title": "Those who Hunt Elves II", - "mal_title": "Those who Hunt Elves II", + "mal_id": 1046, "poster": "https://aruppi.jeluchu.xyz/res/directory/448.jpg", "type": "Anime", "genres": [ @@ -7859,7 +7859,7 @@ { "id": "avatar-libro-uno", "title": "Avatar: La leyenda de Aang - Libro Agua", - "mal_title": "Avatar: La leyenda de Aang - Libro Agua", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/449.jpg", "type": "Anime", "genres": [ @@ -7873,7 +7873,7 @@ { "id": "avatar-libro-dos", "title": "Avatar: La leyenda de Aang - Libro Tierra", - "mal_title": "Avatar: La leyenda de Aang - Libro Tierra", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/450.jpg", "type": "Anime", "genres": [ @@ -7887,7 +7887,7 @@ { "id": "avatar-libro-tres", "title": "Avatar: La leyenda de Aang - Libro Fuego", - "mal_title": "Avatar: La leyenda de Aang - Libro Fuego", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/451.jpg", "type": "Anime", "genres": [ @@ -7901,7 +7901,7 @@ { "id": "saikano", "title": "Saikano", - "mal_title": "Saikano", + "mal_id": 529, "poster": "https://aruppi.jeluchu.xyz/res/directory/452.jpg", "type": "Anime", "genres": [ @@ -7918,7 +7918,7 @@ { "id": "neon-genesis-evangelion", "title": "Neon Genesis Evangelion", - "mal_title": "Neon Genesis Evangelion", + "mal_id": 30, "poster": "https://aruppi.jeluchu.xyz/res/directory/453.jpg", "type": "Anime", "genres": [ @@ -7937,7 +7937,7 @@ { "id": "kuroshitsuji", "title": "Kuroshitsuji", - "mal_title": "Kuroshitsuji", + "mal_id": 4898, "poster": "https://aruppi.jeluchu.xyz/res/directory/454.jpg", "type": "Anime", "genres": [ @@ -7957,7 +7957,7 @@ { "id": "code-e", "title": "Code-E", - "mal_title": "Code-E", + "mal_id": 2564, "poster": "https://aruppi.jeluchu.xyz/res/directory/455.jpg", "type": "Anime", "genres": [ @@ -7975,7 +7975,7 @@ { "id": "school-rumble", "title": "School Rumble", - "mal_title": "School Rumble", + "mal_id": 24, "poster": "https://aruppi.jeluchu.xyz/res/directory/456.jpg", "type": "Anime", "genres": [ @@ -7992,7 +7992,7 @@ { "id": "school-rumble-2", "title": "School Rumble Nigakki", - "mal_title": "School Rumble Nigakki", + "mal_id": 846, "poster": "https://aruppi.jeluchu.xyz/res/directory/457.jpg", "type": "Anime", "genres": [ @@ -8009,7 +8009,7 @@ { "id": "hunter-x-hunter", "title": "Hunter x Hunter", - "mal_title": "Hunter x Hunter", + "mal_id": 11061, "poster": "https://aruppi.jeluchu.xyz/res/directory/458.jpg", "type": "Anime", "genres": [ @@ -8026,7 +8026,7 @@ { "id": "ring-ni-kakero", "title": "Ring ni Kakero", - "mal_title": "Ring ni Kakero", + "mal_id": 23, "poster": "https://aruppi.jeluchu.xyz/res/directory/459.jpg", "type": "Anime", "genres": [ @@ -8042,7 +8042,7 @@ { "id": "ring-ni-kakero-1-nichibei-kessen-hen", "title": "Ring ni Kakero 1 Nichibei Kessen Hen", - "mal_title": "Ring ni Kakero 1 Nichibei Kessen Hen", + "mal_id": 1771, "poster": "https://aruppi.jeluchu.xyz/res/directory/460.jpg", "type": "Anime", "genres": [ @@ -8058,7 +8058,7 @@ { "id": "tayutama-kiss-on-my-deity", "title": "Tayutama Kiss on my Deity", - "mal_title": "Tayutama Kiss on my Deity", + "mal_id": 5734, "poster": "https://aruppi.jeluchu.xyz/res/directory/461.jpg", "type": "Anime", "genres": [ @@ -8074,7 +8074,7 @@ { "id": "gokusen", "title": "Gokusen", - "mal_title": "Gokusen", + "mal_id": 242, "poster": "https://aruppi.jeluchu.xyz/res/directory/462.jpg", "type": "Anime", "genres": [ @@ -8092,7 +8092,7 @@ { "id": "miami-guns", "title": "Miami Guns", - "mal_title": "Miami Guns", + "mal_id": 783, "poster": "https://aruppi.jeluchu.xyz/res/directory/463.jpg", "type": "Anime", "genres": [ @@ -8109,7 +8109,7 @@ { "id": "g-on-riders", "title": "G-On Riders", - "mal_title": "G-On Riders", + "mal_id": 1623, "poster": "https://aruppi.jeluchu.xyz/res/directory/464.jpg", "type": "Anime", "genres": [ @@ -8126,7 +8126,7 @@ { "id": "kyoshiro-to-towa-no-sora", "title": "Kyoshiro To Towa No Sora ", - "mal_title": "Kyoshiro To Towa No Sora ", + "mal_id": 1810, "poster": "https://aruppi.jeluchu.xyz/res/directory/465.jpg", "type": "Anime", "genres": [ @@ -8143,7 +8143,7 @@ { "id": "final-approach", "title": "Final Approach", - "mal_title": "Final Approach", + "mal_id": 119, "poster": "https://aruppi.jeluchu.xyz/res/directory/466.jpg", "type": "Anime", "genres": [ @@ -8160,7 +8160,7 @@ { "id": "world-destruction", "title": "World Destruction", - "mal_title": "World Destruction", + "mal_id": 4415, "poster": "https://aruppi.jeluchu.xyz/res/directory/467.jpg", "type": "Anime", "genres": [ @@ -8175,7 +8175,7 @@ { "id": "venus-vs-virus", "title": "Venus vs Virus", - "mal_title": "Venus vs Virus", + "mal_id": 1607, "poster": "https://aruppi.jeluchu.xyz/res/directory/468.jpg", "type": "Anime", "genres": [ @@ -8191,7 +8191,7 @@ { "id": "vampire-knight", "title": "Vampire Knight", - "mal_title": "Vampire Knight", + "mal_id": 3457, "poster": "https://aruppi.jeluchu.xyz/res/directory/469.jpg", "type": "Anime", "genres": [ @@ -8210,7 +8210,7 @@ { "id": "vampire-knight-guilty", "title": "Vampire Knight Guilty", - "mal_title": "Vampire Knight Guilty", + "mal_id": 4752, "poster": "https://aruppi.jeluchu.xyz/res/directory/470.jpg", "type": "Anime", "genres": [ @@ -8229,7 +8229,7 @@ { "id": "gakkou-no-kaidan", "title": "Gakkou no Kaidan", - "mal_title": "Gakkou no Kaidan", + "mal_id": 22055, "poster": "https://aruppi.jeluchu.xyz/res/directory/471.jpg", "type": "Anime", "genres": [ @@ -8245,7 +8245,7 @@ { "id": "teizokurei-daydream", "title": "Teizokurei Daydream", - "mal_title": "Teizokurei Daydream", + "mal_id": 1500, "poster": "https://aruppi.jeluchu.xyz/res/directory/472.jpg", "type": "OVA", "genres": [ @@ -8263,7 +8263,7 @@ { "id": "eiken", "title": "Eiken", - "mal_title": "Eiken", + "mal_id": 788, "poster": "https://aruppi.jeluchu.xyz/res/directory/473.jpg", "type": "OVA", "genres": [ @@ -8280,7 +8280,7 @@ { "id": "genshiken-2", "title": "Genshiken 2", - "mal_title": "Genshiken 2", + "mal_id": 2508, "poster": "https://aruppi.jeluchu.xyz/res/directory/474.jpg", "type": "Anime", "genres": [ @@ -8296,7 +8296,7 @@ { "id": "black-blood-brothers", "title": "Black Blood Brothers", - "mal_title": "Black Blood Brothers", + "mal_id": 1498, "poster": "https://aruppi.jeluchu.xyz/res/directory/475.jpg", "type": "Anime", "genres": [ @@ -8315,7 +8315,7 @@ { "id": "gitf-eternal-rainbow", "title": "Gift Eternal Rainbow", - "mal_title": "Gift Eternal Rainbow", + "mal_id": 1581, "poster": "https://aruppi.jeluchu.xyz/res/directory/476.jpg", "type": "Anime", "genres": [ @@ -8334,7 +8334,7 @@ { "id": "vandread", "title": "Vandread", - "mal_title": "Vandread", + "mal_id": 180, "poster": "https://aruppi.jeluchu.xyz/res/directory/477.jpg", "type": "Anime", "genres": [ @@ -8353,7 +8353,7 @@ { "id": "vandread-the-second-stage", "title": "Vandread The Second Stage", - "mal_title": "Vandread The Second Stage", + "mal_id": 181, "poster": "https://aruppi.jeluchu.xyz/res/directory/478.jpg", "type": "Anime", "genres": [ @@ -8372,7 +8372,7 @@ { "id": "kobato", "title": "Kobato", - "mal_title": "Kobato", + "mal_id": 5678, "poster": "https://aruppi.jeluchu.xyz/res/directory/479.jpg", "type": "Anime", "genres": [ @@ -8388,7 +8388,7 @@ { "id": "higashi-no-eden", "title": "Higashi no Eden", - "mal_title": "Higashi no Eden", + "mal_id": 5630, "poster": "https://aruppi.jeluchu.xyz/res/directory/480.jpg", "type": "Anime", "genres": [ @@ -8408,7 +8408,7 @@ { "id": "mushi-uta", "title": "Mushi-Uta", - "mal_title": "Mushi-Uta", + "mal_id": 2603, "poster": "https://aruppi.jeluchu.xyz/res/directory/481.jpg", "type": "Anime", "genres": [ @@ -8424,7 +8424,7 @@ { "id": "kikoushi-enma", "title": "Kikoushi Enma", - "mal_title": "Kikoushi Enma", + "mal_id": 1556, "poster": "https://aruppi.jeluchu.xyz/res/directory/482.jpg", "type": "OVA", "genres": [ @@ -8444,7 +8444,7 @@ { "id": "katanagatari", "title": "Katanagatari", - "mal_title": "Katanagatari", + "mal_id": 6594, "poster": "https://aruppi.jeluchu.xyz/res/directory/483.jpg", "type": "Anime", "genres": [ @@ -8462,7 +8462,7 @@ { "id": "love-hina", "title": "Love Hina", - "mal_title": "Love Hina", + "mal_id": 189, "poster": "https://aruppi.jeluchu.xyz/res/directory/484.jpg", "type": "Anime", "genres": [ @@ -8481,7 +8481,7 @@ { "id": "birdy-decode", "title": "Tetsuwan Birdy Decode", - "mal_title": "Tetsuwan Birdy Decode", + "mal_id": 3974, "poster": "https://aruppi.jeluchu.xyz/res/directory/485.jpg", "type": "Anime", "genres": [ @@ -8497,7 +8497,7 @@ { "id": "birdy-decode-ii", "title": "Tetsuwan Birdy Decode:02", - "mal_title": "Tetsuwan Birdy Decode:02", + "mal_id": 5074, "poster": "https://aruppi.jeluchu.xyz/res/directory/486.jpg", "type": "Anime", "genres": [ @@ -8513,7 +8513,7 @@ { "id": "green-green", "title": "Green Green", - "mal_title": "Green Green", + "mal_id": 881, "poster": "https://aruppi.jeluchu.xyz/res/directory/487.jpg", "type": "Anime", "genres": [ @@ -8531,7 +8531,7 @@ { "id": "haibane-renmei", "title": "Haibane Renmei", - "mal_title": "Haibane Renmei", + "mal_id": 387, "poster": "https://aruppi.jeluchu.xyz/res/directory/488.jpg", "type": "Anime", "genres": [ @@ -8549,7 +8549,7 @@ { "id": "hanamaru-youchien", "title": "Hanamaru Youchien", - "mal_title": "Hanamaru Youchien", + "mal_id": 6574, "poster": "https://aruppi.jeluchu.xyz/res/directory/489.jpg", "type": "Anime", "genres": [ @@ -8565,7 +8565,7 @@ { "id": "happiness", "title": "Happiness!", - "mal_title": "Happiness!", + "mal_id": 1570, "poster": "https://aruppi.jeluchu.xyz/res/directory/490.jpg", "type": "Anime", "genres": [ @@ -8583,7 +8583,7 @@ { "id": "xenosaga-the-animation", "title": "Xenosaga The Animation", - "mal_title": "Xenosaga The Animation", + "mal_id": 184, "poster": "https://aruppi.jeluchu.xyz/res/directory/491.jpg", "type": "Anime", "genres": [ @@ -8601,7 +8601,7 @@ { "id": "hime-sama-goyoujin", "title": "Hime sama Goyoujin", - "mal_title": "Hime sama Goyoujin", + "mal_id": 1884, "poster": "https://aruppi.jeluchu.xyz/res/directory/492.jpg", "type": "Anime", "genres": [ @@ -8615,7 +8615,7 @@ { "id": "speed-grapher", "title": "Speed Grapher", - "mal_title": "Speed Grapher", + "mal_id": 198, "poster": "https://aruppi.jeluchu.xyz/res/directory/493.jpg", "type": "Anime", "genres": [ @@ -8631,7 +8631,7 @@ { "id": "hell-girl", "title": "Jigoku Shoujo", - "mal_title": "Jigoku Shoujo", + "mal_id": 228, "poster": "https://aruppi.jeluchu.xyz/res/directory/494.jpg", "type": "Anime", "genres": [ @@ -8648,7 +8648,7 @@ { "id": "mouryou-no-hako", "title": "Mouryou No Hako", - "mal_title": "Mouryou No Hako", + "mal_id": 4879, "poster": "https://aruppi.jeluchu.xyz/res/directory/495.jpg", "type": "Anime", "genres": [ @@ -8665,7 +8665,7 @@ { "id": "spice-and-wolf-2", "title": "Spice and Wolf 2", - "mal_title": "Spice and Wolf 2", + "mal_id": 5341, "poster": "https://aruppi.jeluchu.xyz/res/directory/496.jpg", "type": "Anime", "genres": [ @@ -8682,7 +8682,7 @@ { "id": "kiba", "title": "Kiba", - "mal_title": "Kiba", + "mal_id": 845, "poster": "https://aruppi.jeluchu.xyz/res/directory/497.jpg", "type": "Anime", "genres": [ @@ -8698,7 +8698,7 @@ { "id": "bio-hunter", "title": "Bio Hunter", - "mal_title": "Bio Hunter", + "mal_id": 1269, "poster": "https://aruppi.jeluchu.xyz/res/directory/498.jpg", "type": "OVA", "genres": [ @@ -8714,7 +8714,7 @@ { "id": "outlanders", "title": "Outlanders ", - "mal_title": "Outlanders ", + "mal_id": 1940, "poster": "https://aruppi.jeluchu.xyz/res/directory/499.jpg", "type": "OVA", "genres": [ @@ -8732,7 +8732,7 @@ { "id": "ginban-kaleidoscope", "title": "Ginban Kaleidoscope", - "mal_title": "Ginban Kaleidoscope", + "mal_id": 476, "poster": "https://aruppi.jeluchu.xyz/res/directory/500.jpg", "type": "Anime", "genres": [ @@ -8748,7 +8748,7 @@ { "id": "dragon-ball", "title": "Dragon Ball", - "mal_title": "Dragon Ball", + "mal_id": 223, "poster": "https://aruppi.jeluchu.xyz/res/directory/501.jpg", "type": "Anime", "genres": [ @@ -8767,7 +8767,7 @@ { "id": "mahou-sensei-negima", "title": "Mahou Sensei Negima!", - "mal_title": "Mahou Sensei Negima!", + "mal_id": 157, "poster": "https://aruppi.jeluchu.xyz/res/directory/502.jpg", "type": "Anime", "genres": [ @@ -8790,7 +8790,7 @@ { "id": "gundam-00", "title": "Mobile Suit Gundam 00", - "mal_title": "Mobile Suit Gundam 00", + "mal_id": 2581, "poster": "https://aruppi.jeluchu.xyz/res/directory/503.jpg", "type": "Anime", "genres": [ @@ -8809,7 +8809,7 @@ { "id": "gundam-00-2nd-season", "title": "Mobile Suit Gundam 00 2nd Season", - "mal_title": "Mobile Suit Gundam 00 2nd Season", + "mal_id": 3927, "poster": "https://aruppi.jeluchu.xyz/res/directory/504.jpg", "type": "Anime", "genres": [ @@ -8828,7 +8828,7 @@ { "id": "gundam-00-movie", "title": "Mobile Suit Gundam 00 The Movie: A wakening of the Trailblaz", - "mal_title": "Mobile Suit Gundam 00 The Movie: A wakening of the Trailblaz", + "mal_id": 6288, "poster": "https://aruppi.jeluchu.xyz/res/directory/505.jpg", "type": "Película", "genres": [ @@ -8845,7 +8845,7 @@ { "id": "skip-beat", "title": "Skip Beat", - "mal_title": "Skip Beat", + "mal_id": 4722, "poster": "https://aruppi.jeluchu.xyz/res/directory/506.jpg", "type": "Anime", "genres": [ @@ -8862,7 +8862,7 @@ { "id": "suzumiya-haruhi", "title": "The Melancholy of Haruhi Suzumiya", - "mal_title": "The Melancholy of Haruhi Suzumiya", + "mal_id": 849, "poster": "https://aruppi.jeluchu.xyz/res/directory/507.jpg", "type": "Anime", "genres": [ @@ -8881,7 +8881,7 @@ { "id": "suzumiya-haruhi-s2", "title": "The Melancholy of Haruhi Suzumiya (2009)", - "mal_title": "The Melancholy of Haruhi Suzumiya (2009)", + "mal_id": 4382, "poster": "https://aruppi.jeluchu.xyz/res/directory/508.jpg", "type": "Anime", "genres": [ @@ -8901,7 +8901,7 @@ { "id": "nanatsuiro-drops", "title": "Nanatsuiro Drops", - "mal_title": "Nanatsuiro Drops", + "mal_id": 1688, "poster": "https://aruppi.jeluchu.xyz/res/directory/509.jpg", "type": "Anime", "genres": [ @@ -8917,7 +8917,7 @@ { "id": "aoi-bungaku-series", "title": "Aoi Bungaku Series", - "mal_title": "Aoi Bungaku Series", + "mal_id": 7193, "poster": "https://aruppi.jeluchu.xyz/res/directory/510.jpg", "type": "Anime", "genres": [ @@ -8935,7 +8935,7 @@ { "id": "avenger", "title": "Avenger", - "mal_title": "Avenger", + "mal_id": 56, "poster": "https://aruppi.jeluchu.xyz/res/directory/511.jpg", "type": "Anime", "genres": [ @@ -8952,7 +8952,7 @@ { "id": "okusama-wa-joshikousei", "title": "Okusama wa Joshikousei", - "mal_title": "Okusama wa Joshikousei", + "mal_id": 470, "poster": "https://aruppi.jeluchu.xyz/res/directory/512.jpg", "type": "Anime", "genres": [ @@ -8969,7 +8969,7 @@ { "id": "witch-hunter-robin", "title": "Witch Hunter Robin", - "mal_title": "Witch Hunter Robin", + "mal_id": 7, "poster": "https://aruppi.jeluchu.xyz/res/directory/513.jpg", "type": "Anime", "genres": [ @@ -8988,7 +8988,7 @@ { "id": "aishiteruze-baby", "title": "Aishiteruze Baby", - "mal_title": "Aishiteruze Baby", + "mal_id": 102, "poster": "https://aruppi.jeluchu.xyz/res/directory/514.jpg", "type": "Anime", "genres": [ @@ -9005,7 +9005,7 @@ { "id": "mnemosyne", "title": "Mnemosyne", - "mal_title": "Mnemosyne", + "mal_id": 3342, "poster": "https://aruppi.jeluchu.xyz/res/directory/515.jpg", "type": "OVA", "genres": [ @@ -9023,7 +9023,7 @@ { "id": "kannazuki-no-miko", "title": "Kannazuki no Miko", - "mal_title": "Kannazuki no Miko", + "mal_id": 143, "poster": "https://aruppi.jeluchu.xyz/res/directory/516.jpg", "type": "Anime", "genres": [ @@ -9043,7 +9043,7 @@ { "id": "s-cry-ed", "title": "s.CRY.ed", - "mal_title": "s.CRY.ed", + "mal_id": 168, "poster": "https://aruppi.jeluchu.xyz/res/directory/517.jpg", "type": "Anime", "genres": [ @@ -9061,7 +9061,7 @@ { "id": "myself-yourself", "title": "Myself; Yourself", - "mal_title": "Myself; Yourself", + "mal_id": 2926, "poster": "https://aruppi.jeluchu.xyz/res/directory/518.jpg", "type": "Anime", "genres": [ @@ -9077,7 +9077,7 @@ { "id": "pani-poni-dash", "title": "Pani Poni Dash!", - "mal_title": "Pani Poni Dash!", + "mal_id": 490, "poster": "https://aruppi.jeluchu.xyz/res/directory/519.jpg", "type": "Anime", "genres": [ @@ -9093,7 +9093,7 @@ { "id": "tenshi-no-shippo", "title": "Tenshi no shippo", - "mal_title": "Tenshi no shippo", + "mal_id": 684, "poster": "https://aruppi.jeluchu.xyz/res/directory/520.jpg", "type": "Anime", "genres": [ @@ -9109,7 +9109,7 @@ { "id": "guin-saga", "title": "Guin Saga", - "mal_title": "Guin Saga", + "mal_id": 5041, "poster": "https://aruppi.jeluchu.xyz/res/directory/521.jpg", "type": "Anime", "genres": [ @@ -9124,7 +9124,7 @@ { "id": "hanaukyo-maid-tai", "title": "Hanaukyo Maid Tai", - "mal_title": "Hanaukyo Maid Tai", + "mal_id": 403, "poster": "https://aruppi.jeluchu.xyz/res/directory/522.jpg", "type": "Anime", "genres": [ @@ -9141,7 +9141,7 @@ { "id": "hanaukyo-maid-team-la-verite", "title": "Hanaukyo Maid Team La Verite", - "mal_title": "Hanaukyo Maid Team La Verite", + "mal_id": 649, "poster": "https://aruppi.jeluchu.xyz/res/directory/523.jpg", "type": "Anime", "genres": [ @@ -9158,7 +9158,7 @@ { "id": "himawari", "title": "Himawari!", - "mal_title": "Himawari!", + "mal_id": 910, "poster": "https://aruppi.jeluchu.xyz/res/directory/524.jpg", "type": "Anime", "genres": [ @@ -9174,7 +9174,7 @@ { "id": "himawari2", "title": "Himawari!! (Temporada 2)", - "mal_title": "Himawari!! (Temporada 2)", + "mal_id": 1988, "poster": "https://aruppi.jeluchu.xyz/res/directory/525.jpg", "type": "Anime", "genres": [ @@ -9189,7 +9189,7 @@ { "id": "kamisama-kazoku", "title": "Kamisama Kazoku", - "mal_title": "Kamisama Kazoku", + "mal_id": 990, "poster": "https://aruppi.jeluchu.xyz/res/directory/526.jpg", "type": "Anime", "genres": [ @@ -9206,7 +9206,7 @@ { "id": "kotetsushin-jeeg", "title": "Kotetsushin Jeeg", - "mal_title": "Kotetsushin Jeeg", + "mal_id": 2157, "poster": "https://aruppi.jeluchu.xyz/res/directory/527.jpg", "type": "Anime", "genres": [ @@ -9221,7 +9221,7 @@ { "id": "doujin-work", "title": "Doujin Work", - "mal_title": "Doujin Work", + "mal_id": 2166, "poster": "https://aruppi.jeluchu.xyz/res/directory/528.jpg", "type": "Anime", "genres": [ @@ -9236,7 +9236,7 @@ { "id": "goshuushou-sama-ni-nomiya-kun", "title": "Goshuushou Sama ni Nomiya Kun", - "mal_title": "Goshuushou Sama ni Nomiya Kun", + "mal_id": 2494, "poster": "https://aruppi.jeluchu.xyz/res/directory/529.jpg", "type": "Anime", "genres": [ @@ -9253,7 +9253,7 @@ { "id": "ray-the-animation", "title": "Ray The Animation", - "mal_title": "Ray The Animation", + "mal_id": 919, "poster": "https://aruppi.jeluchu.xyz/res/directory/530.jpg", "type": "Anime", "genres": [ @@ -9269,7 +9269,7 @@ { "id": "lamune", "title": "Lamune", - "mal_title": "Lamune", + "mal_id": 670, "poster": "https://aruppi.jeluchu.xyz/res/directory/531.jpg", "type": "Anime", "genres": [ @@ -9285,7 +9285,7 @@ { "id": "xxxholic", "title": "xxxHOLiC", - "mal_title": "xxxHOLiC", + "mal_id": 861, "poster": "https://aruppi.jeluchu.xyz/res/directory/532.jpg", "type": "Anime", "genres": [ @@ -9303,7 +9303,7 @@ { "id": "xxxholic-kei", "title": "xxxHOLiC: Kei", - "mal_title": "xxxHOLiC: Kei", + "mal_id": 3091, "poster": "https://aruppi.jeluchu.xyz/res/directory/533.jpg", "type": "Anime", "genres": [ @@ -9321,7 +9321,7 @@ { "id": "maria-holic", "title": "Maria Holic", - "mal_title": "Maria Holic", + "mal_id": 5030, "poster": "https://aruppi.jeluchu.xyz/res/directory/534.jpg", "type": "Anime", "genres": [ @@ -9338,7 +9338,7 @@ { "id": "hajime-no-ippo-nc", "title": "Hajime no Ippo: New Challenger", - "mal_title": "Hajime no Ippo: New Challenger", + "mal_id": 5258, "poster": "https://aruppi.jeluchu.xyz/res/directory/535.jpg", "type": "Anime", "genres": [ @@ -9355,7 +9355,7 @@ { "id": "bamboo-blade", "title": "Bamboo Blade", - "mal_title": "Bamboo Blade", + "mal_id": 2986, "poster": "https://aruppi.jeluchu.xyz/res/directory/536.jpg", "type": "Anime", "genres": [ @@ -9372,7 +9372,7 @@ { "id": "ghost-hound", "title": "Ghost Hound", - "mal_title": "Shinreigari", + "mal_id": 1571, "poster": "https://aruppi.jeluchu.xyz/res/directory/537.jpg", "type": "Anime", "genres": [ @@ -9389,7 +9389,7 @@ { "id": "chikku-neesan", "title": "Chikku Neesan", - "mal_title": "Chikku Neesan", + "mal_id": 10711, "poster": "https://aruppi.jeluchu.xyz/res/directory/538.jpg", "type": "Anime", "genres": [ @@ -9404,7 +9404,7 @@ { "id": "air-gear-break-on-the-sky", "title": "Air Gear: Kuro no Hane to Nemuri no Mori -Break on the Sky-", - "mal_title": "Air Gear: Kuro no Hane to Nemuri no Mori -Break on the Sky-", + "mal_id": 9201, "poster": "https://aruppi.jeluchu.xyz/res/directory/539.jpg", "type": "Anime", "genres": [ @@ -9422,7 +9422,7 @@ { "id": "ef-a-tale-of-memories", "title": "EF - A Tale of Memories", - "mal_title": "EF - A Tale of Memories", + "mal_id": 2924, "poster": "https://aruppi.jeluchu.xyz/res/directory/540.jpg", "type": "Anime", "genres": [ @@ -9438,7 +9438,7 @@ { "id": "ef-a-tale-of-melodies", "title": "EF - A Tale of Melodies", - "mal_title": "EF - A Tale of Melodies", + "mal_id": 4789, "poster": "https://aruppi.jeluchu.xyz/res/directory/541.jpg", "type": "Anime", "genres": [ @@ -9455,7 +9455,7 @@ { "id": "hell-girl-2", "title": "Jigoku Shoujo Futakomori", - "mal_title": "Jigoku Shoujo Futakomori", + "mal_id": 1594, "poster": "https://aruppi.jeluchu.xyz/res/directory/542.jpg", "type": "Anime", "genres": [ @@ -9472,7 +9472,7 @@ { "id": "night-warriors-darkstalkers-revenge", "title": "Night Warriors Darkstalkers Revenge", - "mal_title": "Night Warriors Darkstalkers Revenge", + "mal_id": 1952, "poster": "https://aruppi.jeluchu.xyz/res/directory/543.jpg", "type": "OVA", "genres": [ @@ -9490,7 +9490,7 @@ { "id": "hell-girl-3", "title": "Jigoku Shoujo Mitsuganae", - "mal_title": "Jigoku Shoujo Mitsuganae", + "mal_id": 3713, "poster": "https://aruppi.jeluchu.xyz/res/directory/544.jpg", "type": "Anime", "genres": [ @@ -9506,7 +9506,7 @@ { "id": "midori-no-hibi", "title": "Midori no Hibi", - "mal_title": "Midori no Hibi", + "mal_id": 330, "poster": "https://aruppi.jeluchu.xyz/res/directory/545.jpg", "type": "Anime", "genres": [ @@ -9524,7 +9524,7 @@ { "id": "negima", "title": "Negima!?", - "mal_title": "Negima!?", + "mal_id": 1546, "poster": "https://aruppi.jeluchu.xyz/res/directory/546.jpg", "type": "Anime", "genres": [ @@ -9546,7 +9546,7 @@ { "id": "noir", "title": "Noir", - "mal_title": "Noir", + "mal_id": 272, "poster": "https://aruppi.jeluchu.xyz/res/directory/547.jpg", "type": "Anime", "genres": [ @@ -9562,7 +9562,7 @@ { "id": "rozen-maiden", "title": "Rozen Maiden", - "mal_title": "Rozen Maiden", + "mal_id": 64, "poster": "https://aruppi.jeluchu.xyz/res/directory/548.jpg", "type": "Anime", "genres": [ @@ -9580,7 +9580,7 @@ { "id": "rozen-maiden-2", "title": "Rozen Maiden: Träumend", - "mal_title": "Rozen Maiden: Träumend", + "mal_id": 65, "poster": "https://aruppi.jeluchu.xyz/res/directory/549.jpg", "type": "Anime", "genres": [ @@ -9598,7 +9598,7 @@ { "id": "yu-gi-oh-3d-bonds-beyond-time", "title": "Yu-Gi-Oh! 3D Bonds Beyond Time", - "mal_title": "Yu-Gi-Oh! 3D Bonds Beyond Time", + "mal_id": 6951, "poster": "https://aruppi.jeluchu.xyz/res/directory/550.jpg", "type": "Película", "genres": [ @@ -9614,7 +9614,7 @@ { "id": "bus-gamer", "title": "Bus Gamer", - "mal_title": "Bus Gamer", + "mal_id": 3389, "poster": "https://aruppi.jeluchu.xyz/res/directory/551.jpg", "type": "OVA", "genres": [ @@ -9628,7 +9628,7 @@ { "id": "ninja-scroll", "title": "Ninja Scroll", - "mal_title": "Ninja Scroll", + "mal_id": 618, "poster": "https://aruppi.jeluchu.xyz/res/directory/552.jpg", "type": "Anime", "genres": [ @@ -9648,7 +9648,7 @@ { "id": "mouse", "title": "Mouse", - "mal_title": "Mouse", + "mal_id": 624, "poster": "https://aruppi.jeluchu.xyz/res/directory/553.jpg", "type": "Anime", "genres": [ @@ -9666,7 +9666,7 @@ { "id": "el-teatro-de-rumiko", "title": "El Teatro De Rumiko", - "mal_title": "El Teatro De Rumiko", + "mal_id": 620, "poster": "https://aruppi.jeluchu.xyz/res/directory/554.jpg", "type": "Anime", "genres": [ @@ -9685,7 +9685,7 @@ { "id": "ristorante-paradiso", "title": "Ristorante Paradiso", - "mal_title": "Ristorante Paradiso", + "mal_id": 5984, "poster": "https://aruppi.jeluchu.xyz/res/directory/555.jpg", "type": "Anime", "genres": [ @@ -9702,7 +9702,7 @@ { "id": "neo-angelique-abyss", "title": "Neo Angelique Abyss", - "mal_title": "Neo Angelique Abyss", + "mal_id": 3615, "poster": "https://aruppi.jeluchu.xyz/res/directory/556.jpg", "type": "Anime", "genres": [ @@ -9720,7 +9720,7 @@ { "id": "neo-angelique-abyss-second-age", "title": "Neo Angelique Abyss Second Age", - "mal_title": "Neo Angelique Abyss Second Age", + "mal_id": 4662, "poster": "https://aruppi.jeluchu.xyz/res/directory/557.jpg", "type": "Anime", "genres": [ @@ -9737,7 +9737,7 @@ { "id": "labyrinth-of-flames", "title": "Labyrinth of Flames", - "mal_title": "Labyrinth of Flames", + "mal_id": 581, "poster": "https://aruppi.jeluchu.xyz/res/directory/558.jpg", "type": "OVA", "genres": [ @@ -9754,7 +9754,7 @@ { "id": "muder-princess", "title": "Murder Princess", - "mal_title": "Murder Princess", + "mal_id": 1696, "poster": "https://aruppi.jeluchu.xyz/res/directory/559.jpg", "type": "OVA", "genres": [ @@ -9770,7 +9770,7 @@ { "id": "iriya-no-sora-ufo-no-natsu", "title": "Iriya no Sora, UFO no Natsu", - "mal_title": "Iriya no Sora, UFO no Natsu", + "mal_id": 358, "poster": "https://aruppi.jeluchu.xyz/res/directory/560.jpg", "type": "OVA", "genres": [ @@ -9786,7 +9786,7 @@ { "id": "blood-c", "title": "Blood-C", - "mal_title": "Blood-C", + "mal_id": 10490, "poster": "https://aruppi.jeluchu.xyz/res/directory/561.jpg", "type": "Anime", "genres": [ @@ -9804,7 +9804,7 @@ { "id": "hack-sign", "title": ".hack//SIGN", - "mal_title": ".hack//SIGN", + "mal_id": 48, "poster": "https://aruppi.jeluchu.xyz/res/directory/562.jpg", "type": "Anime", "genres": [ @@ -9823,7 +9823,7 @@ { "id": "hack-roots", "title": ".hack//Roots", - "mal_title": ".hack//Roots", + "mal_id": 873, "poster": "https://aruppi.jeluchu.xyz/res/directory/563.jpg", "type": "Anime", "genres": [ @@ -9841,7 +9841,7 @@ { "id": "hack-dusk", "title": ".hack//DUSK", - "mal_title": ".hack//DUSK", + "mal_id": 298, "poster": "https://aruppi.jeluchu.xyz/res/directory/564.jpg", "type": "Anime", "genres": [ @@ -9860,7 +9860,7 @@ { "id": "beyblade-v-force", "title": "Beyblade V-Force", - "mal_title": "Beyblade V-Force", + "mal_id": 1669, "poster": "https://aruppi.jeluchu.xyz/res/directory/565.jpg", "type": "Anime", "genres": [ @@ -9879,7 +9879,7 @@ { "id": "ro-kyu-bu", "title": "Ro-Kyu-Bu!", - "mal_title": "Ro-Kyu-Bu!", + "mal_id": 10572, "poster": "https://aruppi.jeluchu.xyz/res/directory/566.jpg", "type": "Anime", "genres": [ @@ -9896,7 +9896,7 @@ { "id": "gravion", "title": "Gravion", - "mal_title": "Gravion", + "mal_id": 833, "poster": "https://aruppi.jeluchu.xyz/res/directory/567.jpg", "type": "Anime", "genres": [ @@ -9914,7 +9914,7 @@ { "id": "gravion-zwei", "title": "Gravion Zwei", - "mal_title": "Gravion Zwei", + "mal_id": 1149, "poster": "https://aruppi.jeluchu.xyz/res/directory/568.jpg", "type": "Anime", "genres": [ @@ -9932,7 +9932,7 @@ { "id": "kamisama-no-memo-chou", "title": "Kamisama no Memo chou", - "mal_title": "Kamisama no Memo chou", + "mal_id": 10568, "poster": "https://aruppi.jeluchu.xyz/res/directory/569.jpg", "type": "Anime", "genres": [ @@ -9946,7 +9946,7 @@ { "id": "sacred-seven", "title": "Sacred Seven", - "mal_title": "Sacred Seven", + "mal_id": 10156, "poster": "https://aruppi.jeluchu.xyz/res/directory/570.jpg", "type": "Anime", "genres": [ @@ -9963,7 +9963,7 @@ { "id": "blade", "title": "Blade", - "mal_title": "Blade", + "mal_id": 6920, "poster": "https://aruppi.jeluchu.xyz/res/directory/571.jpg", "type": "Anime", "genres": [ @@ -9980,7 +9980,7 @@ { "id": "nurarihyon-no-mago-sennen-makyo", "title": "Nurarihyon no Mago: Sennen Makyo", - "mal_title": "Nurarihyon no Mago: Sennen Makyo", + "mal_id": 10049, "poster": "https://aruppi.jeluchu.xyz/res/directory/572.jpg", "type": "Anime", "genres": [ @@ -9997,7 +9997,7 @@ { "id": "ikoku-meiro-no-croisee", "title": "Ikoku Meiro no Croisee", - "mal_title": "Ikoku Meiro no Croisee", + "mal_id": 9938, "poster": "https://aruppi.jeluchu.xyz/res/directory/573.jpg", "type": "Anime", "genres": [ @@ -10013,7 +10013,7 @@ { "id": "uta-no-prince-sama-maji-love-1000", "title": "Uta no Prince sama: Maji Love 1000%", - "mal_title": "Uta no Prince sama: Maji Love 1000%", + "mal_id": 10321, "poster": "https://aruppi.jeluchu.xyz/res/directory/574.jpg", "type": "Anime", "genres": [ @@ -10032,7 +10032,7 @@ { "id": "ichigo-100", "title": "Ichigo 100%", - "mal_title": "Ichigo 100%", + "mal_id": 248, "poster": "https://aruppi.jeluchu.xyz/res/directory/575.jpg", "type": "Anime", "genres": [ @@ -10050,7 +10050,7 @@ { "id": "kof-another-day", "title": "The King of Fighters: Another Day", - "mal_title": "The King of Fighters: Another Day", + "mal_id": 825, "poster": "https://aruppi.jeluchu.xyz/res/directory/576.jpg", "type": "OVA", "genres": [ @@ -10066,7 +10066,7 @@ { "id": "kamisama-dolls", "title": "Kamisama Dolls", - "mal_title": "Kamisama Dolls", + "mal_id": 10372, "poster": "https://aruppi.jeluchu.xyz/res/directory/577.jpg", "type": "Anime", "genres": [ @@ -10082,7 +10082,7 @@ { "id": "martian-successor-nadesico", "title": "Martian Successor Nadesico", - "mal_title": "Martian Successor Nadesico", + "mal_id": 218, "poster": "https://aruppi.jeluchu.xyz/res/directory/578.jpg", "type": "Anime", "genres": [ @@ -10104,7 +10104,7 @@ { "id": "yuruyuri", "title": "Yuruyuri", - "mal_title": "Yuruyuri", + "mal_id": 10495, "poster": "https://aruppi.jeluchu.xyz/res/directory/579.jpg", "type": "Anime", "genres": [ @@ -10121,7 +10121,7 @@ { "id": "gintama-shinyaku-benizakura-hen", "title": "Gintama Shinyaku Benizakura Hen", - "mal_title": "Gintama Shinyaku Benizakura Hen", + "mal_id": 9735, "poster": "https://aruppi.jeluchu.xyz/res/directory/580.jpg", "type": "Película", "genres": [ @@ -10141,7 +10141,7 @@ { "id": "natsume-yujin-cho-san", "title": "Natsume Yujin-Cho San", - "mal_title": "Natsume Yujin-Cho San", + "mal_id": 4081, "poster": "https://aruppi.jeluchu.xyz/res/directory/581.jpg", "type": "Anime", "genres": [ @@ -10159,7 +10159,7 @@ { "id": "nyanpire-the-animation", "title": "Nyanpire The Animation", - "mal_title": "Nyanpire The Animation", + "mal_id": 10197, "poster": "https://aruppi.jeluchu.xyz/res/directory/582.jpg", "type": "Anime", "genres": [ @@ -10174,7 +10174,7 @@ { "id": "kaitou-tenshi-twin-angel", "title": "Kaitou Tenshi Twin Angel: Kyun Kyun Tokimeki Paradise!!", - "mal_title": "Kaitou Tenshi Twin Angel: Kyun Kyun Tokimeki Paradise!!", + "mal_id": 10217, "poster": "https://aruppi.jeluchu.xyz/res/directory/583.jpg", "type": "Anime", "genres": [ @@ -10188,7 +10188,7 @@ { "id": "usagi-drop", "title": "Usagi Drop", - "mal_title": "Usagi Drop", + "mal_id": 10162, "poster": "https://aruppi.jeluchu.xyz/res/directory/584.jpg", "type": "Anime", "genres": [ @@ -10203,7 +10203,7 @@ { "id": "number-6", "title": "No. 6", - "mal_title": "No. 6", + "mal_id": 10161, "poster": "https://aruppi.jeluchu.xyz/res/directory/585.jpg", "type": "Anime", "genres": [ @@ -10218,7 +10218,7 @@ { "id": "mayo-chiki", "title": "Mayo Chiki!", - "mal_title": "Mayo Chiki!", + "mal_id": 10110, "poster": "https://aruppi.jeluchu.xyz/res/directory/586.jpg", "type": "Anime", "genres": [ @@ -10236,7 +10236,7 @@ { "id": "the-idolmster", "title": "The idolm@ster", - "mal_title": "The idolm@ster", + "mal_id": 10278, "poster": "https://aruppi.jeluchu.xyz/res/directory/587.jpg", "type": "Anime", "genres": [ @@ -10252,7 +10252,7 @@ { "id": "mawaru-penguindrum", "title": "Mawaru Penguindrum", - "mal_title": "Mawaru Penguindrum", + "mal_id": 10721, "poster": "https://aruppi.jeluchu.xyz/res/directory/588.jpg", "type": "Anime", "genres": [ @@ -10269,7 +10269,7 @@ { "id": "baka-to-test-to-shokanju-ii", "title": "Baka to Test to Shokanju II", - "mal_title": "Baka to Test to Shokanju II", + "mal_id": 8516, "poster": "https://aruppi.jeluchu.xyz/res/directory/589.jpg", "type": "Anime", "genres": [ @@ -10286,7 +10286,7 @@ { "id": "itsuka-tenma-no-kuro-usagi", "title": "Itsuka Tenma no Kuro-Usagi", - "mal_title": "Itsuka Tenma no Kuro-Usagi", + "mal_id": 9750, "poster": "https://aruppi.jeluchu.xyz/res/directory/590.jpg", "type": "Anime", "genres": [ @@ -10305,7 +10305,7 @@ { "id": "r15", "title": "R-15", - "mal_title": "R-15", + "mal_id": 10611, "poster": "https://aruppi.jeluchu.xyz/res/directory/591.jpg", "type": "Anime", "genres": [ @@ -10323,7 +10323,7 @@ { "id": "sister-princess", "title": "Sister Princess", - "mal_title": "Sister Princess", + "mal_id": 836, "poster": "https://aruppi.jeluchu.xyz/res/directory/592.jpg", "type": "Anime", "genres": [ @@ -10341,7 +10341,7 @@ { "id": "manyu-hiken-cho", "title": "Manyu Hiken-cho", - "mal_title": "Manyu Hiken-cho", + "mal_id": 10465, "poster": "https://aruppi.jeluchu.xyz/res/directory/593.jpg", "type": "Anime", "genres": [ @@ -10359,7 +10359,7 @@ { "id": "nekogami-yaoyorozu", "title": "Nekogami Yaoyorozu", - "mal_title": "Nekogami Yaoyorozu", + "mal_id": 9934, "poster": "https://aruppi.jeluchu.xyz/res/directory/594.jpg", "type": "Anime", "genres": [ @@ -10376,7 +10376,7 @@ { "id": "double-j", "title": "Double J", - "mal_title": "Double J", + "mal_id": 10838, "poster": "https://aruppi.jeluchu.xyz/res/directory/595.jpg", "type": "Anime", "genres": [ @@ -10392,7 +10392,7 @@ { "id": "dantalian-no-shoka", "title": "Dantalian no Shoka", - "mal_title": "Dantalian no Shoka", + "mal_id": 8915, "poster": "https://aruppi.jeluchu.xyz/res/directory/596.jpg", "type": "Anime", "genres": [ @@ -10409,7 +10409,7 @@ { "id": "detective-conan", "title": "Detective Conan", - "mal_title": "Detective Conan", + "mal_id": 235, "poster": "https://aruppi.jeluchu.xyz/res/directory/597.jpg", "type": "Anime", "genres": [ @@ -10427,7 +10427,7 @@ { "id": "pretear", "title": "Pretear", - "mal_title": "Pretear", + "mal_id": 100, "poster": "https://aruppi.jeluchu.xyz/res/directory/598.jpg", "type": "Anime", "genres": [ @@ -10447,7 +10447,7 @@ { "id": "appleseed-xiii", "title": "Appleseed XIII", - "mal_title": "Appleseed XIII", + "mal_id": 9737, "poster": "https://aruppi.jeluchu.xyz/res/directory/599.jpg", "type": "Anime", "genres": [ @@ -10465,7 +10465,7 @@ { "id": "black-lagoon-robertas-blood-trail", "title": "Black Lagoon: Roberta's Blood Trail", - "mal_title": "Black Lagoon: Roberta's Blood Trail", + "mal_id": 4901, "poster": "https://aruppi.jeluchu.xyz/res/directory/600.jpg", "type": "OVA", "genres": [ @@ -10480,7 +10480,7 @@ { "id": "higurashi-no-naku-koro-ni-kira", "title": "Higurashi no Naku Koro Ni Kira", - "mal_title": "Higurashi no Naku Koro Ni Kira", + "mal_id": 10491, "poster": "https://aruppi.jeluchu.xyz/res/directory/601.jpg", "type": "OVA", "genres": [ @@ -10495,7 +10495,7 @@ { "id": "vampire-hunter-d-bloodlust", "title": "Vampire Hunter D Bloodlust", - "mal_title": "Vampire Hunter D Bloodlust", + "mal_id": 543, "poster": "https://aruppi.jeluchu.xyz/res/directory/602.jpg", "type": "Película", "genres": [ @@ -10515,7 +10515,7 @@ { "id": "samurai-x-the-motion-picture", "title": "Samurai X The Motion Picture", - "mal_title": "Samurai X The Motion Picture", + "mal_id": 536, "poster": "https://aruppi.jeluchu.xyz/res/directory/603.jpg", "type": "Película", "genres": [ @@ -10532,7 +10532,7 @@ { "id": "full-metal-alchemist-conqueror-of-shamballa", "title": "Fullmetal Alchemist Conqueror of Shamballa", - "mal_title": "Fullmetal Alchemist Conqueror of Shamballa", + "mal_id": 430, "poster": "https://aruppi.jeluchu.xyz/res/directory/604.jpg", "type": "Película", "genres": [ @@ -10551,7 +10551,7 @@ { "id": "escaflowne-the-movie", "title": "Escaflowne The Movie", - "mal_title": "Escaflowne The Movie", + "mal_id": 393, "poster": "https://aruppi.jeluchu.xyz/res/directory/605.jpg", "type": "Película", "genres": [ @@ -10571,7 +10571,7 @@ { "id": "dragon-ball-gt-100-anos-despues", "title": "Dragon Ball GT 100 Años Después", - "mal_title": "Dragon Ball GT 100 Años Después", + "mal_id": 987, "poster": "https://aruppi.jeluchu.xyz/res/directory/606.jpg", "type": "Película", "genres": [ @@ -10591,7 +10591,7 @@ { "id": "x-1999", "title": "X 1999", - "mal_title": "X 1999", + "mal_id": 155, "poster": "https://aruppi.jeluchu.xyz/res/directory/607.jpg", "type": "Película", "genres": [ @@ -10611,7 +10611,7 @@ { "id": "baby-princess-3d-paradise-love", "title": "Baby Princess 3d Paradise Love", - "mal_title": "Baby Princess 3d Paradise Love", + "mal_id": 10196, "poster": "https://aruppi.jeluchu.xyz/res/directory/608.jpg", "type": "OVA", "genres": [ @@ -10627,7 +10627,7 @@ { "id": "hack-gutrilogy", "title": ".hack//G.U.Trilogy", - "mal_title": ".hack//G.U.Trilogy", + "mal_id": 3269, "poster": "https://aruppi.jeluchu.xyz/res/directory/609.jpg", "type": "Película", "genres": [ @@ -10644,7 +10644,7 @@ { "id": "freedom", "title": "Freedom", - "mal_title": "Freedom", + "mal_id": 1747, "poster": "https://aruppi.jeluchu.xyz/res/directory/610.jpg", "type": "OVA", "genres": [ @@ -10660,7 +10660,7 @@ { "id": "rainbow-nisha-rokubou-no-shichinin", "title": "Rainbow Nisha Rokubou no Shichinin ", - "mal_title": "Rainbow Nisha Rokubou no Shichinin ", + "mal_id": 6114, "poster": "https://aruppi.jeluchu.xyz/res/directory/611.jpg", "type": "Anime", "genres": [ @@ -10677,7 +10677,7 @@ { "id": "yu-yu-hakusho-meikai-shito-hen-hono-no-kizuna", "title": "Yu Yu Hakusho Meikai Shito Hen Hono No Kizuna", - "mal_title": "Yu Yu Hakusho Meikai Shito Hen Hono No Kizuna", + "mal_id": 883, "poster": "https://aruppi.jeluchu.xyz/res/directory/612.jpg", "type": "Película", "genres": [ @@ -10692,7 +10692,7 @@ { "id": "copihan", "title": "Copihan", - "mal_title": "Copihan", + "mal_id": 10801, "poster": "https://aruppi.jeluchu.xyz/res/directory/613.jpg", "type": "Anime", "genres": [ @@ -10708,7 +10708,7 @@ { "id": "inazuma-eleven-saikyo-gundan-ogre-shurai", "title": "Inazuma Eleven Saikyo Gundan Ogre Shurai ", - "mal_title": "Inazuma Eleven Saikyo Gundan Ogre Shurai ", + "mal_id": 9032, "poster": "https://aruppi.jeluchu.xyz/res/directory/614.jpg", "type": "Película", "genres": [ @@ -10724,7 +10724,7 @@ { "id": "detatoko-princess", "title": "Detatoko Princess", - "mal_title": "Detatoko Princess", + "mal_id": 2693, "poster": "https://aruppi.jeluchu.xyz/res/directory/615.jpg", "type": "OVA", "genres": [ @@ -10739,7 +10739,7 @@ { "id": "tenjou-tenge", "title": "Tenjou Tenge", - "mal_title": "Tenjou Tenge", + "mal_id": 174, "poster": "https://aruppi.jeluchu.xyz/res/directory/616.jpg", "type": "Anime", "genres": [ @@ -10759,7 +10759,7 @@ { "id": "carnival-phantasm", "title": "Carnival Phantasm", - "mal_title": "Carnival Phantasm", + "mal_id": 10012, "poster": "https://aruppi.jeluchu.xyz/res/directory/617.jpg", "type": "OVA", "genres": [ @@ -10775,7 +10775,7 @@ { "id": "bleach-memories-of-nobody", "title": "Bleach: Memories of Nobody", - "mal_title": "Bleach: Memories of Nobody", + "mal_id": 1686, "poster": "https://aruppi.jeluchu.xyz/res/directory/618.jpg", "type": "Película", "genres": [ @@ -10791,7 +10791,7 @@ { "id": "redline", "title": "Redline", - "mal_title": "Redline", + "mal_id": 6675, "poster": "https://aruppi.jeluchu.xyz/res/directory/619.jpg", "type": "Película", "genres": [ @@ -10808,7 +10808,7 @@ { "id": "working-2", "title": "Working'!!", - "mal_title": "Working'!!", + "mal_id": 6956, "poster": "https://aruppi.jeluchu.xyz/res/directory/620.jpg", "type": "Anime", "genres": [ @@ -10823,7 +10823,7 @@ { "id": "astarotte-no-omocha-ex", "title": "Astarotte no Omocha! EX", - "mal_title": "Astarotte no Omocha! EX", + "mal_id": 10582, "poster": "https://aruppi.jeluchu.xyz/res/directory/621.jpg", "type": "OVA", "genres": [ @@ -10842,7 +10842,7 @@ { "id": "towa-no-quon", "title": "Towa no Quon", - "mal_title": "Towa no Quon", + "mal_id": 10294, "poster": "https://aruppi.jeluchu.xyz/res/directory/622.jpg", "type": "Película", "genres": [ @@ -10858,7 +10858,7 @@ { "id": "kami-nomi-yonnin-to-idol", "title": "Kami Nomi zo Shiru Sekai: Yonnin to Idol", - "mal_title": "Kami Nomi zo Shiru Sekai: Yonnin to Idol", + "mal_id": 10805, "poster": "https://aruppi.jeluchu.xyz/res/directory/623.jpg", "type": "OVA", "genres": [ @@ -10875,7 +10875,7 @@ { "id": "boku-wa-tomodachi", "title": "Boku wa Tomodachi ga Sukunai", - "mal_title": "Boku wa Tomodachi ga Sukunai", + "mal_id": 10719, "poster": "https://aruppi.jeluchu.xyz/res/directory/624.jpg", "type": "Anime", "genres": [ @@ -10895,7 +10895,7 @@ { "id": "thundercats-2011", "title": "Thundercats (2011)", - "mal_title": "Thundercats (2011)", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/625.jpg", "type": "Anime", "genres": [ @@ -10909,7 +10909,7 @@ { "id": "shinryaku-ika-musume-ii", "title": "Shinryaku!? Ika Musume", - "mal_title": "Shinryaku!? Ika Musume", + "mal_id": 10378, "poster": "https://aruppi.jeluchu.xyz/res/directory/626.jpg", "type": "Anime", "genres": [ @@ -10925,7 +10925,7 @@ { "id": "aa-megami-sama-2011", "title": "Aa! Megami-sama! (2011)", - "mal_title": "Aa! Megami-sama! (2011)", + "mal_id": 9611, "poster": "https://aruppi.jeluchu.xyz/res/directory/627.jpg", "type": "OVA", "genres": [ @@ -10943,7 +10943,7 @@ { "id": "fate-zero", "title": "Fate/Zero", - "mal_title": "Fate/Zero", + "mal_id": 10087, "poster": "https://aruppi.jeluchu.xyz/res/directory/628.jpg", "type": "Anime", "genres": [ @@ -10959,7 +10959,7 @@ { "id": "bakuman-2", "title": "Bakuman II", - "mal_title": "Bakuman II", + "mal_id": 7674, "poster": "https://aruppi.jeluchu.xyz/res/directory/629.jpg", "type": "Anime", "genres": [ @@ -10976,7 +10976,7 @@ { "id": "hunter-x-hunter-2011", "title": "Hunter x Hunter (2011)", - "mal_title": "Hunter x Hunter (2011)", + "mal_id": 11061, "poster": "https://aruppi.jeluchu.xyz/res/directory/630.jpg", "type": "Anime", "genres": [ @@ -10993,7 +10993,7 @@ { "id": "c3", "title": "C3", - "mal_title": "C3", + "mal_id": 10578, "poster": "https://aruppi.jeluchu.xyz/res/directory/631.jpg", "type": "Anime", "genres": [ @@ -11011,7 +11011,7 @@ { "id": "maji-de-watashi-ni-koi-shinasai", "title": "Maji de Watashi ni Koi Shinasai!!", - "mal_title": "Maji de Watashi ni Koi Shinasai!!", + "mal_id": 10213, "poster": "https://aruppi.jeluchu.xyz/res/directory/632.jpg", "type": "Anime", "genres": [ @@ -11031,7 +11031,7 @@ { "id": "phi-brain-kami-no-puzzle", "title": "Phi Brain: Kami no Puzzle", - "mal_title": "Phi Brain: Kami no Puzzle", + "mal_id": 9981, "poster": "https://aruppi.jeluchu.xyz/res/directory/633.jpg", "type": "Anime", "genres": [ @@ -11048,7 +11048,7 @@ { "id": "kimi-to-boku", "title": "Kimi to Boku.", - "mal_title": "Kimi to Boku.", + "mal_id": 10460, "poster": "https://aruppi.jeluchu.xyz/res/directory/634.jpg", "type": "Anime", "genres": [ @@ -11067,7 +11067,7 @@ { "id": "tamayura-hitotose", "title": "Tamayura Hitotose", - "mal_title": "Tamayura Hitotose", + "mal_id": 10232, "poster": "https://aruppi.jeluchu.xyz/res/directory/635.jpg", "type": "Anime", "genres": [ @@ -11083,7 +11083,7 @@ { "id": "kyoukai-senjou-no-horizon", "title": "Kyoukai Senjou no Horizon", - "mal_title": "Kyoukai Senjou no Horizon", + "mal_id": 10456, "poster": "https://aruppi.jeluchu.xyz/res/directory/636.jpg", "type": "Anime", "genres": [ @@ -11098,7 +11098,7 @@ { "id": "morita-san-wa-mukuchi-2", "title": "Morita san wa Mukuchi 2", - "mal_title": "Morita san wa Mukuchi 2", + "mal_id": 11615, "poster": "https://aruppi.jeluchu.xyz/res/directory/637.jpg", "type": "Anime", "genres": [ @@ -11114,7 +11114,7 @@ { "id": "chihayafuru", "title": "Chihayafuru", - "mal_title": "Chihayafuru", + "mal_id": 10800, "poster": "https://aruppi.jeluchu.xyz/res/directory/638.jpg", "type": "Anime", "genres": [ @@ -11132,7 +11132,7 @@ { "id": "maken-ki", "title": "Maken-Ki!", - "mal_title": "Maken-Ki!", + "mal_id": 9936, "poster": "https://aruppi.jeluchu.xyz/res/directory/639.jpg", "type": "Anime", "genres": [ @@ -11151,7 +11151,7 @@ { "id": "mashiro-iro-symphony", "title": "Mashiro-iro Symphony: The Color of Lovers", - "mal_title": "Mashiro-iro Symphony: The Color of Lovers", + "mal_id": 10397, "poster": "https://aruppi.jeluchu.xyz/res/directory/640.jpg", "type": "Anime", "genres": [ @@ -11168,7 +11168,7 @@ { "id": "persona-4", "title": "Persona 4 The Animation", - "mal_title": "Persona 4 The Animation", + "mal_id": 10588, "poster": "https://aruppi.jeluchu.xyz/res/directory/641.jpg", "type": "Anime", "genres": [ @@ -11187,7 +11187,7 @@ { "id": "katteni-kaizo", "title": "Katteni Kaizo", - "mal_title": "Katteni Kaizo", + "mal_id": 10191, "poster": "https://aruppi.jeluchu.xyz/res/directory/642.jpg", "type": "OVA", "genres": [ @@ -11205,7 +11205,7 @@ { "id": "shakugan-no-shana-iii", "title": "Shakugan no Shana III (Final)", - "mal_title": "Shakugan no Shana III (Final)", + "mal_id": 6773, "poster": "https://aruppi.jeluchu.xyz/res/directory/643.jpg", "type": "Anime", "genres": [ @@ -11223,7 +11223,7 @@ { "id": "sekaiichi-hatsukoi-2", "title": "Sekaiichi Hatsukoi 2", - "mal_title": "Sekaiichi Hatsukoi 2", + "mal_id": 11123, "poster": "https://aruppi.jeluchu.xyz/res/directory/644.jpg", "type": "Anime", "genres": [ @@ -11240,7 +11240,7 @@ { "id": "ben-to", "title": "Ben-To", - "mal_title": "Ben-To", + "mal_id": 10396, "poster": "https://aruppi.jeluchu.xyz/res/directory/645.jpg", "type": "Anime", "genres": [ @@ -11256,7 +11256,7 @@ { "id": "mobile-suit-gundam-age", "title": "Mobile Suit Gundam AGE", - "mal_title": "Mobile Suit Gundam AGE", + "mal_id": 10808, "poster": "https://aruppi.jeluchu.xyz/res/directory/646.jpg", "type": "Anime", "genres": [ @@ -11273,7 +11273,7 @@ { "id": "mirai-nikki-2011", "title": "Mirai Nikki", - "mal_title": "Mirai Nikki", + "mal_id": 10620, "poster": "https://aruppi.jeluchu.xyz/res/directory/647.jpg", "type": "Anime", "genres": [ @@ -11292,7 +11292,7 @@ { "id": "digimon-xros-wars-toki-o-kakeru-shounen-hunter-tachi", "title": "Digimon Xros Wars: Toki o Kakeru Shounen Hunter-tachi", - "mal_title": "Digimon Xros Wars: Toki o Kakeru Shounen Hunter-tachi", + "mal_id": 11385, "poster": "https://aruppi.jeluchu.xyz/res/directory/648.jpg", "type": "Anime", "genres": [ @@ -11310,7 +11310,7 @@ { "id": "toriko-3d-gourmet-adventure", "title": "Toriko 3D Gourmet Adventure", - "mal_title": "Toriko 3D Gourmet Adventure", + "mal_id": 10074, "poster": "https://aruppi.jeluchu.xyz/res/directory/649.jpg", "type": "Película", "genres": [ @@ -11327,7 +11327,7 @@ { "id": "un-go", "title": "Un-Go", - "mal_title": "Un-Go", + "mal_id": 10798, "poster": "https://aruppi.jeluchu.xyz/res/directory/650.jpg", "type": "Anime", "genres": [ @@ -11342,7 +11342,7 @@ { "id": "guilty-crown", "title": "Guilty Crown", - "mal_title": "Guilty Crown", + "mal_id": 10793, "poster": "https://aruppi.jeluchu.xyz/res/directory/651.jpg", "type": "Anime", "genres": [ @@ -11359,7 +11359,7 @@ { "id": "cross-fight-b-daman", "title": "Cross Fight B-Daman", - "mal_title": "Cross Fight B-Daman", + "mal_id": 11177, "poster": "https://aruppi.jeluchu.xyz/res/directory/652.jpg", "type": "Anime", "genres": [ @@ -11373,7 +11373,7 @@ { "id": "chibi-devi", "title": "Chibi Devi!", - "mal_title": "Chibi Devi!", + "mal_id": 11457, "poster": "https://aruppi.jeluchu.xyz/res/directory/653.jpg", "type": "Anime", "genres": [ @@ -11389,7 +11389,7 @@ { "id": "last-exile-ginyoku-no-fam", "title": "Last Exile: Ginyoku no Fam", - "mal_title": "Last Exile: Ginyoku no Fam", + "mal_id": 10336, "poster": "https://aruppi.jeluchu.xyz/res/directory/654.jpg", "type": "Anime", "genres": [ @@ -11405,7 +11405,7 @@ { "id": "demon-lord-dante", "title": "Demon Lord Dante", - "mal_title": "Demon Lord Dante", + "mal_id": 1628, "poster": "https://aruppi.jeluchu.xyz/res/directory/655.jpg", "type": "Anime", "genres": [ @@ -11423,7 +11423,7 @@ { "id": "izumo-takeki-tsurugi-no-senki", "title": "Izumo Takeki Tsurugi no Senki", - "mal_title": "Izumo Takeki Tsurugi no Senki", + "mal_id": 2523, "poster": "https://aruppi.jeluchu.xyz/res/directory/656.jpg", "type": "Anime", "genres": [ @@ -11442,7 +11442,7 @@ { "id": "hiyokoi", "title": "Hiyokoi", - "mal_title": "Hiyokoi", + "mal_id": 8768, "poster": "https://aruppi.jeluchu.xyz/res/directory/657.jpg", "type": "OVA", "genres": [ @@ -11458,7 +11458,7 @@ { "id": "megami-kouhosei", "title": "Megami Kouhosei", - "mal_title": "Megami Kouhosei", + "mal_id": 888, "poster": "https://aruppi.jeluchu.xyz/res/directory/658.jpg", "type": "Anime", "genres": [ @@ -11476,7 +11476,7 @@ { "id": "one-piece-3d", "title": "One Piece 3D: Mugiwara Chase", - "mal_title": "One Piece 3D: Mugiwara Chase", + "mal_id": 9999, "poster": "https://aruppi.jeluchu.xyz/res/directory/659.jpg", "type": "Película", "genres": [ @@ -11494,7 +11494,7 @@ { "id": "shakugan-no-shana-second", "title": "Shakugan no Shana Second", - "mal_title": "Shakugan no Shana Second", + "mal_id": 2787, "poster": "https://aruppi.jeluchu.xyz/res/directory/660.jpg", "type": "Anime", "genres": [ @@ -11513,7 +11513,7 @@ { "id": "ao-no-exorcist-kuro-no-iede", "title": "Ao no Exorcist: Kuro no Iede", - "mal_title": "Ao no Exorcist: Kuro no Iede", + "mal_id": 11266, "poster": "https://aruppi.jeluchu.xyz/res/directory/661.jpg", "type": "OVA", "genres": [ @@ -11531,7 +11531,7 @@ { "id": "tales-of-vesperia", "title": "Tales of Vesperia The First Strike", - "mal_title": "Tales of Vesperia The First Strike", + "mal_id": 6046, "poster": "https://aruppi.jeluchu.xyz/res/directory/662.jpg", "type": "Película", "genres": [ @@ -11549,7 +11549,7 @@ { "id": "mahou-shoujo-lyrical-nanoha-the-movie", "title": "Mahou Shoujo Lyrical Nanoha the Movie 1st", - "mal_title": "Mahou Shoujo Lyrical Nanoha the Movie 1st", + "mal_id": 4985, "poster": "https://aruppi.jeluchu.xyz/res/directory/663.jpg", "type": "Película", "genres": [ @@ -11567,7 +11567,7 @@ { "id": "la-leyenda-del-dragon-milenario", "title": "La Leyenda del Dragón Milenario", - "mal_title": "La Leyenda del Dragón Milenario", + "mal_id": 8487, "poster": "https://aruppi.jeluchu.xyz/res/directory/664.jpg", "type": "Película", "genres": [ @@ -11583,7 +11583,7 @@ { "id": "blue-gender-the-warrior", "title": "Blue Gender The Warrior", - "mal_title": "Blue Gender The Warrior", + "mal_id": 1380, "poster": "https://aruppi.jeluchu.xyz/res/directory/665.jpg", "type": "Película", "genres": [ @@ -11604,7 +11604,7 @@ { "id": "megaman-upon-a-star", "title": "Megaman Upon a Star", - "mal_title": "Megaman Upon a Star", + "mal_id":1854, "poster": "https://aruppi.jeluchu.xyz/res/directory/666.jpg", "type": "OVA", "genres": [ @@ -11620,7 +11620,7 @@ { "id": "megaman-maverick-hunter-x-the-day-of-sigma", "title": "MegaMan Maverick Hunter X The Day of Sigma", - "mal_title": "MegaMan Maverick Hunter X The Day of Sigma", + "mal_id": 2808, "poster": "https://aruppi.jeluchu.xyz/res/directory/667.jpg", "type": "OVA", "genres": [ @@ -11637,7 +11637,7 @@ { "id": "queens-blade-ova-2011", "title": "Queen’s Blade OVA 2011", - "mal_title": "Queen’s Blade OVA 2011", + "mal_id": 10924, "poster": "https://aruppi.jeluchu.xyz/res/directory/668.jpg", "type": "OVA", "genres": [ @@ -11654,7 +11654,7 @@ { "id": "hakaba-kitarou", "title": "Hakaba Kitarō", - "mal_title": "Hakaba Kitarō", + "mal_id": 3710, "poster": "https://aruppi.jeluchu.xyz/res/directory/669.jpg", "type": "Anime", "genres": [ @@ -11669,7 +11669,7 @@ { "id": "angel-densetsu", "title": "Angel Densetsu", - "mal_title": "Angel Densetsu", + "mal_id": 5251, "poster": "https://aruppi.jeluchu.xyz/res/directory/670.jpg", "type": "OVA", "genres": [ @@ -11685,7 +11685,7 @@ { "id": "magic-kaito", "title": "Magic Kaito: Kid the Phantom Thief", - "mal_title": "Magic Kaito: Kid the Phantom Thief", + "mal_id": 8310, "poster": "https://aruppi.jeluchu.xyz/res/directory/671.jpg", "type": "Anime", "genres": [ @@ -11702,7 +11702,7 @@ { "id": "jungle-de-ikou", "title": "Jungle de Ikou!", - "mal_title": "Jungle de Ikou!", + "mal_id": 2524, "poster": "https://aruppi.jeluchu.xyz/res/directory/672.jpg", "type": "OVA", "genres": [ @@ -11720,7 +11720,7 @@ { "id": "tekken-blood-vengeance", "title": "Tekken: Blood Vengeance", - "mal_title": "Tekken: Blood Vengeance", + "mal_id": 10702, "poster": "https://aruppi.jeluchu.xyz/res/directory/673.jpg", "type": "Película", "genres": [ @@ -11738,7 +11738,7 @@ { "id": "hoshi-o-ou-kodomo", "title": "Hoshi o Ou Kodomo", - "mal_title": "Hoshi o Ou Kodomo", + "mal_id": 9760, "poster": "https://aruppi.jeluchu.xyz/res/directory/674.jpg", "type": "Película", "genres": [ @@ -11754,7 +11754,7 @@ { "id": "infinite-stratos-encore-koi-ni-kogareru-rokujuso", "title": "Infinite Stratos Encore: Koi ni Kogareru Rokujuso", - "mal_title": "Infinite Stratos Encore: Koi ni Kogareru Rokujuso", + "mal_id": 10794, "poster": "https://aruppi.jeluchu.xyz/res/directory/675.jpg", "type": "OVA", "genres": [ @@ -11772,7 +11772,7 @@ { "id": "seitokai-yakuindomo-ovas", "title": "Seitokai Yakuindomo OVA", - "mal_title": "Seitokai Yakuindomo OVA", + "mal_id": 10119, "poster": "https://aruppi.jeluchu.xyz/res/directory/676.jpg", "type": "OVA", "genres": [ @@ -11789,7 +11789,7 @@ { "id": "battle-arena-toshiden", "title": "Battle arena Toshiden", - "mal_title": "Battle arena Toshiden", + "mal_id": 2462, "poster": "https://aruppi.jeluchu.xyz/res/directory/677.jpg", "type": "OVA", "genres": [ @@ -11804,7 +11804,7 @@ { "id": "majin-tantei-nogami-neuro", "title": "Majin Tantei Nōgami Neuro", - "mal_title": "Majin Tantei Nōgami Neuro", + "mal_id": 2985, "poster": "https://aruppi.jeluchu.xyz/res/directory/678.jpg", "type": "Anime", "genres": [ @@ -11822,7 +11822,7 @@ { "id": "los-viajes-de-kino", "title": "Kino no Tabi", - "mal_title": "Kino no Tabi", + "mal_id": 486, "poster": "https://aruppi.jeluchu.xyz/res/directory/679.jpg", "type": "Anime", "genres": [ @@ -11838,7 +11838,7 @@ { "id": "armitage-iii-poly-matrix", "title": "Armitage III Poly Matrix", - "mal_title": "Armitage III Poly Matrix", + "mal_id": 493, "poster": "https://aruppi.jeluchu.xyz/res/directory/680.jpg", "type": "Película", "genres": [ @@ -11858,7 +11858,7 @@ { "id": "slayers-return", "title": "Slayers Return", - "mal_title": "Slayers Return", + "mal_id": 869, "poster": "https://aruppi.jeluchu.xyz/res/directory/681.jpg", "type": "Película", "genres": [ @@ -11876,7 +11876,7 @@ { "id": "kyousogiga", "title": "Kyousogiga", - "mal_title": "Kyousogiga", + "mal_id": 10893, "poster": "https://aruppi.jeluchu.xyz/res/directory/682.jpg", "type": "OVA", "genres": [ @@ -11892,7 +11892,7 @@ { "id": "high-score", "title": "High Score", - "mal_title": "High Score", + "mal_id": 10958, "poster": "https://aruppi.jeluchu.xyz/res/directory/683.jpg", "type": "Anime", "genres": [ @@ -11907,7 +11907,7 @@ { "id": "kaze-no-tani-no-naushika", "title": "Kaze no Tani no Naushika", - "mal_title": "Kaze no Tani no Naushika", + "mal_id": 572, "poster": "https://aruppi.jeluchu.xyz/res/directory/684.jpg", "type": "Película", "genres": [ @@ -11922,7 +11922,7 @@ { "id": "higurashi-no-naku-koroni-rei", "title": "Higurashi no Naku Koroni Rei", - "mal_title": "Higurashi no Naku Koroni Rei", + "mal_id": 934, "poster": "https://aruppi.jeluchu.xyz/res/directory/685.jpg", "type": "OVA", "genres": [ @@ -11940,7 +11940,7 @@ { "id": "hayate-no-gotoku-heaven-is-a-place-on-earth", "title": "Hayate No Gotoku! Heaven Is A Place On Earth", - "mal_title": "Hayate No Gotoku! Heaven Is A Place On Earth", + "mal_id": 9958, "poster": "https://aruppi.jeluchu.xyz/res/directory/686.jpg", "type": "Película", "genres": [ @@ -11956,7 +11956,7 @@ { "id": "dragon-ball-episode-of-bardock", "title": "Dragon Ball: Episode of Bardock", - "mal_title": "Dragon Ball: Episode of Bardock", + "mal_id": 12231, "poster": "https://aruppi.jeluchu.xyz/res/directory/687.jpg", "type": "OVA", "genres": [ @@ -11977,7 +11977,7 @@ { "id": "toradora-bentou-no-gokui", "title": "Toradora!: Bentou no Gokui", - "mal_title": "Toradora!: Bentou no Gokui", + "mal_id": 11553, "poster": "https://aruppi.jeluchu.xyz/res/directory/688.jpg", "type": "OVA", "genres": [ @@ -11994,7 +11994,7 @@ { "id": "eiyuu-densetsu-sora-no-kiseki-the-animation", "title": "Eiyuu Densetsu: Sora no Kiseki The Animation", - "mal_title": "Eiyuu Densetsu: Sora no Kiseki The Animation", + "mal_id": 10260, "poster": "https://aruppi.jeluchu.xyz/res/directory/689.jpg", "type": "OVA", "genres": [ @@ -12010,7 +12010,7 @@ { "id": "kara-no-kyoukai", "title": "Kara no Kyoukai - the Garden of sinners", - "mal_title": "Kara no Kyoukai - the Garden of sinners", + "mal_id": 14807, "poster": "https://aruppi.jeluchu.xyz/res/directory/690.jpg", "type": "Anime", "genres": [ @@ -12027,7 +12027,7 @@ { "id": "kanokon", "title": "Kanokon", - "mal_title": "Kanokon", + "mal_id": 3503, "poster": "https://aruppi.jeluchu.xyz/res/directory/691.jpg", "type": "Anime", "genres": [ @@ -12048,7 +12048,7 @@ { "id": "chaos-head", "title": "Chaos; Head", - "mal_title": "Chaos; Head", + "mal_id": 4975, "poster": "https://aruppi.jeluchu.xyz/res/directory/692.jpg", "type": "Anime", "genres": [ @@ -12066,7 +12066,7 @@ { "id": "special-a", "title": "Special A", - "mal_title": "Special A", + "mal_id": 3470, "poster": "https://aruppi.jeluchu.xyz/res/directory/693.jpg", "type": "Anime", "genres": [ @@ -12083,7 +12083,7 @@ { "id": "kyou-no-go-no-ni", "title": "Kyou no Go no Ni", - "mal_title": "Kyou no Go no Ni", + "mal_id": 837, "poster": "https://aruppi.jeluchu.xyz/res/directory/694.jpg", "type": "OVA", "genres": [ @@ -12100,7 +12100,7 @@ { "id": "rinne-no-lagrange", "title": "Rinne no Lagrange", - "mal_title": "Rinne no Lagrange", + "mal_id": 11227, "poster": "https://aruppi.jeluchu.xyz/res/directory/695.jpg", "type": "Anime", "genres": [ @@ -12117,7 +12117,7 @@ { "id": "hoshizora-e-kakaru-hashi-ova", "title": "Hoshizora e Kakaru Hashi OVA", - "mal_title": "Hoshizora e Kakaru Hashi OVA", + "mal_id": 10079, "poster": "https://aruppi.jeluchu.xyz/res/directory/696.jpg", "type": "OVA", "genres": [ @@ -12134,7 +12134,7 @@ { "id": "fate-prototype", "title": "Fate Prototype", - "mal_title": "Fate Prototype", + "mal_id": 12565, "poster": "https://aruppi.jeluchu.xyz/res/directory/697.jpg", "type": "OVA", "genres": [ @@ -12153,7 +12153,7 @@ { "id": "natsume-yuujin-chou-shi", "title": "Natsume Yuujin-Chou Shi", - "mal_title": "Natsume Yuujin-Chou Shi", + "mal_id": 4081, "poster": "https://aruppi.jeluchu.xyz/res/directory/698.jpg", "type": "Anime", "genres": [ @@ -12171,7 +12171,7 @@ { "id": "new-prince-of-tennis", "title": "New Prince of Tennis", - "mal_title": "New Prince of Tennis", + "mal_id": 11371, "poster": "https://aruppi.jeluchu.xyz/res/directory/699.jpg", "type": "Anime", "genres": [ @@ -12188,7 +12188,7 @@ { "id": "recorder-to-randoseru", "title": "Recorder to Randoseru Do", - "mal_title": "Recorder to Randoseru Do", + "mal_id": 11491, "poster": "https://aruppi.jeluchu.xyz/res/directory/700.jpg", "type": "Anime", "genres": [ @@ -12205,7 +12205,7 @@ { "id": "kill-me-baby", "title": "Kill Me Baby", - "mal_title": "Kill Me Baby", + "mal_id": 11079, "poster": "https://aruppi.jeluchu.xyz/res/directory/701.jpg", "type": "Anime", "genres": [ @@ -12221,7 +12221,7 @@ { "id": "sengoku-basara-the-last-party", "title": "Sengoku Basara The Last Party", - "mal_title": "Sengoku Basara The Last Party", + "mal_id": 9745, "poster": "https://aruppi.jeluchu.xyz/res/directory/702.jpg", "type": "Película", "genres": [ @@ -12239,7 +12239,7 @@ { "id": "amagami-ss-plus", "title": "Amagami SS Plus", - "mal_title": "Amagami SS Plus", + "mal_id": 11235, "poster": "https://aruppi.jeluchu.xyz/res/directory/703.jpg", "type": "Anime", "genres": [ @@ -12256,7 +12256,7 @@ { "id": "senhime-zesshou-symphogear", "title": "Senhime Zesshou Symphogear", - "mal_title": "Senhime Zesshou Symphogear", + "mal_id": 11751, "poster": "https://aruppi.jeluchu.xyz/res/directory/704.jpg", "type": "Anime", "genres": [ @@ -12272,7 +12272,7 @@ { "id": "high-school-dxd", "title": "High School DxD", - "mal_title": "High School DxD", + "mal_id": 11617, "poster": "https://aruppi.jeluchu.xyz/res/directory/705.jpg", "type": "Anime", "genres": [ @@ -12291,7 +12291,7 @@ { "id": "area-no-kishi", "title": "Area no Kishi", - "mal_title": "Area no Kishi", + "mal_id": 11697, "poster": "https://aruppi.jeluchu.xyz/res/directory/706.jpg", "type": "Anime", "genres": [ @@ -12308,7 +12308,7 @@ { "id": "nisemonogatari", "title": "Nisemonogatari", - "mal_title": "Nisemonogatari", + "mal_id": 11597, "poster": "https://aruppi.jeluchu.xyz/res/directory/707.jpg", "type": "Anime", "genres": [ @@ -12324,7 +12324,7 @@ { "id": "poyopoyo-kansatsu-nikki", "title": "Poyopoyo Kansatsu Nikki", - "mal_title": "Poyopoyo Kansatsu Nikki", + "mal_id": 12021, "poster": "https://aruppi.jeluchu.xyz/res/directory/708.jpg", "type": "Anime", "genres": [ @@ -12340,7 +12340,7 @@ { "id": "tantei-opera-milky-holmes-ii", "title": "Tantei Opera Milky Holmes Dai-Ni-Maku", - "mal_title": "Tantei Opera Milky Holmes Dai-Ni-Maku", + "mal_id": 7768, "poster": "https://aruppi.jeluchu.xyz/res/directory/709.jpg", "type": "Anime", "genres": [ @@ -12356,7 +12356,7 @@ { "id": "zero-no-tsukaima-f", "title": "Zero no Tsukaima: Final", - "mal_title": "Zero no Tsukaima: Final", + "mal_id": 11319, "poster": "https://aruppi.jeluchu.xyz/res/directory/710.jpg", "type": "Anime", "genres": [ @@ -12374,7 +12374,7 @@ { "id": "moretsu-uchuu-kaizoku", "title": "Moretsu Uchuu Kaizoku", - "mal_title": "Moretsu Uchuu Kaizoku", + "mal_id": 8917, "poster": "https://aruppi.jeluchu.xyz/res/directory/711.jpg", "type": "Anime", "genres": [ @@ -12389,7 +12389,7 @@ { "id": "brave-10", "title": "Brave 10", - "mal_title": "Brave 10", + "mal_id": 11241, "poster": "https://aruppi.jeluchu.xyz/res/directory/712.jpg", "type": "Anime", "genres": [ @@ -12408,7 +12408,7 @@ { "id": "another", "title": "Another", - "mal_title": "Another", + "mal_id": 11111, "poster": "https://aruppi.jeluchu.xyz/res/directory/713.jpg", "type": "Anime", "genres": [ @@ -12426,7 +12426,7 @@ { "id": "ano-natsu-de-matteru", "title": "Ano Natsu de Matteru", - "mal_title": "Ano Natsu de Matteru", + "mal_id": 11433, "poster": "https://aruppi.jeluchu.xyz/res/directory/714.jpg", "type": "Anime", "genres": [ @@ -12444,7 +12444,7 @@ { "id": "r15-ova", "title": "R-15 OVA", - "mal_title": "R-15 OVA", + "mal_id": 10933, "poster": "https://aruppi.jeluchu.xyz/res/directory/715.jpg", "type": "OVA", "genres": [ @@ -12463,7 +12463,7 @@ { "id": "papa-no-iu-koto-wo-kikinasai", "title": "Papa no Iu Koto wo Kikinasai!", - "mal_title": "Papa no Iu Koto wo Kikinasai!", + "mal_id": 11179, "poster": "https://aruppi.jeluchu.xyz/res/directory/716.jpg", "type": "Anime", "genres": [ @@ -12479,7 +12479,7 @@ { "id": "danshi-koukousei-no-nichijou", "title": "Danshi Koukousei no Nichijou", - "mal_title": "Danshi Koukousei no Nichijou", + "mal_id": 12893, "poster": "https://aruppi.jeluchu.xyz/res/directory/717.jpg", "type": "Anime", "genres": [ @@ -12496,7 +12496,7 @@ { "id": "aquarion-evol", "title": "Aquarion Evol", - "mal_title": "Aquarion Evol", + "mal_id": 10447, "poster": "https://aruppi.jeluchu.xyz/res/directory/718.jpg", "type": "Anime", "genres": [ @@ -12516,7 +12516,7 @@ { "id": "inu-x-boku-ss", "title": "Inu x Boku SS", - "mal_title": "Inu x Boku SS", + "mal_id": 11013, "poster": "https://aruppi.jeluchu.xyz/res/directory/719.jpg", "type": "Anime", "genres": [ @@ -12533,7 +12533,7 @@ { "id": "tibet-inu-monogatari", "title": "El perro tibetano", - "mal_title": "El perro tibetano", + "mal_id": 10629, "poster": "https://aruppi.jeluchu.xyz/res/directory/720.jpg", "type": "Película", "genres": [ @@ -12547,7 +12547,7 @@ { "id": "thermae-romae", "title": "Thermae Romae", - "mal_title": "Thermae Romae", + "mal_id": 12321, "poster": "https://aruppi.jeluchu.xyz/res/directory/721.jpg", "type": "Anime", "genres": [ @@ -12563,7 +12563,7 @@ { "id": "gokujou", "title": "Gokujou", - "mal_title": "Gokujou", + "mal_id": 11761, "poster": "https://aruppi.jeluchu.xyz/res/directory/722.jpg", "type": "Anime", "genres": [ @@ -12581,7 +12581,7 @@ { "id": "black-rock-shooter-tv", "title": "Black Rock Shooter (TV)", - "mal_title": "Black Rock Shooter (TV)", + "mal_id": 11285, "poster": "https://aruppi.jeluchu.xyz/res/directory/723.jpg", "type": "Anime", "genres": [ @@ -12598,7 +12598,7 @@ { "id": "fullmetal-alchemist-milos-no-sei-naru-hoshi", "title": "Fullmetal Alchemist: Milos No Sei-Naru Hoshi", - "mal_title": "Fullmetal Alchemist: Milos No Sei-Naru Hoshi", + "mal_id": 9135, "poster": "https://aruppi.jeluchu.xyz/res/directory/724.jpg", "type": "Película", "genres": [ @@ -12619,7 +12619,7 @@ { "id": "gyo", "title": "Gyo", - "mal_title": "Gyo", + "mal_id": 10417, "poster": "https://aruppi.jeluchu.xyz/res/directory/725.jpg", "type": "OVA", "genres": [ @@ -12633,7 +12633,7 @@ { "id": "gekijouban-sora-no-otoshimono-tokei-jikake-no-an", "title": "Sora no Otoshimono: Tokei Jikake no Angeloid", - "mal_title": "Sora no Otoshimono: Tokei Jikake no Angeloid", + "mal_id": 9790, "poster": "https://aruppi.jeluchu.xyz/res/directory/726.jpg", "type": "Película", "genres": [ @@ -12654,7 +12654,7 @@ { "id": "makenki", "title": "Maken-ki!", - "mal_title": "Maken-ki!", + "mal_id": 9936, "poster": "https://aruppi.jeluchu.xyz/res/directory/727.jpg", "type": "OVA", "genres": [ @@ -12673,7 +12673,7 @@ { "id": "to-heart-2-dungeon-travelers", "title": "To Heart 2: Dungeon Travelers", - "mal_title": "To Heart 2: Dungeon Travelers", + "mal_id": 11773, "poster": "https://aruppi.jeluchu.xyz/res/directory/728.jpg", "type": "OVA", "genres": [ @@ -12692,7 +12692,7 @@ { "id": "hotarubi-no-mori-e", "title": "Hotarubi no Mori e", - "mal_title": "Hotarubi no Mori e", + "mal_id": 10408, "poster": "https://aruppi.jeluchu.xyz/res/directory/729.jpg", "type": "Película", "genres": [ @@ -12709,7 +12709,7 @@ { "id": "hiiro-no-kakera", "title": "Hiiro no Kakera", - "mal_title": "Hiiro no Kakera", + "mal_id": 12461, "poster": "https://aruppi.jeluchu.xyz/res/directory/730.jpg", "type": "Anime", "genres": [ @@ -12726,7 +12726,7 @@ { "id": "maho-sensei-negima-final", "title": "Mahou Sensei Negima! Anime Final", - "mal_title": "Mahou Sensei Negima! Anime Final", + "mal_id": 7135, "poster": "https://aruppi.jeluchu.xyz/res/directory/731.jpg", "type": "Película", "genres": [ @@ -12742,7 +12742,7 @@ { "id": "ikkitousen-shugaku-toshi-keppu-roku", "title": "Ikkitousen: Shugaku Toshi Keppu-roku", - "mal_title": "Ikkitousen: Shugaku Toshi Keppu-roku", + "mal_id": 11255, "poster": "https://aruppi.jeluchu.xyz/res/directory/732.jpg", "type": "OVA", "genres": [ @@ -12760,7 +12760,7 @@ { "id": "ozuma", "title": "Ozuma", - "mal_title": "Ozuma", + "mal_id": 12677, "poster": "https://aruppi.jeluchu.xyz/res/directory/733.jpg", "type": "Anime", "genres": [ @@ -12775,7 +12775,7 @@ { "id": "kimi-no-iru-machi-tasogare-kousaten", "title": "Kimi no Iru Machi: Tasogare Kousaten", - "mal_title": "Kimi no Iru Machi: Tasogare Kousaten", + "mal_id": 11313, "poster": "https://aruppi.jeluchu.xyz/res/directory/734.jpg", "type": "OVA", "genres": [ @@ -12792,7 +12792,7 @@ { "id": "shijou-saikyou-no-deshi-kenichi-ovas", "title": "Shijou Saikyou no Deshi Kenichi OVA", - "mal_title": "Shijou Saikyou no Deshi Kenichi OVA", + "mal_id": 11813, "poster": "https://aruppi.jeluchu.xyz/res/directory/735.jpg", "type": "OVA", "genres": [ @@ -12810,7 +12810,7 @@ { "id": "saint-seiya-omega", "title": "Saint Seiya Omega", - "mal_title": "Saint Seiya Omega", + "mal_id": 12929, "poster": "https://aruppi.jeluchu.xyz/res/directory/736.jpg", "type": "Anime", "genres": [ @@ -12827,7 +12827,7 @@ { "id": "uchuu-kyoudai", "title": "Uchuu Kyoudai", - "mal_title": "Uchuu Kyoudai", + "mal_id": 12431, "poster": "https://aruppi.jeluchu.xyz/res/directory/737.jpg", "type": "Anime", "genres": [ @@ -12845,7 +12845,7 @@ { "id": "natsuiro-kiseki", "title": "Natsuiro Kiseki", - "mal_title": "Natsuiro Kiseki", + "mal_id": 12119, "poster": "https://aruppi.jeluchu.xyz/res/directory/738.jpg", "type": "Anime", "genres": [ @@ -12861,7 +12861,7 @@ { "id": "kimi-to-boku-ii", "title": "Kimi to Boku. 2", - "mal_title": "Kimi to Boku. 2", + "mal_id": 11739, "poster": "https://aruppi.jeluchu.xyz/res/directory/739.jpg", "type": "Anime", "genres": [ @@ -12880,7 +12880,7 @@ { "id": "rurouni-kenshin-shin-kyoto-hen", "title": "Rurouni Kenshin: Shin Kyoto Hen", - "mal_title": "Rurouni Kenshin: Shin Kyoto Hen", + "mal_id": 11441, "poster": "https://aruppi.jeluchu.xyz/res/directory/740.jpg", "type": "OVA", "genres": [ @@ -12898,7 +12898,7 @@ { "id": "zetman", "title": "Zetman", - "mal_title": "Zetman", + "mal_id": 11837, "poster": "https://aruppi.jeluchu.xyz/res/directory/741.jpg", "type": "Anime", "genres": [ @@ -12918,7 +12918,7 @@ { "id": "rock-lee-no-seishun", "title": "Rock Lee no Seishun Full-Power Ninden", - "mal_title": "Naruto SD: Rock Lee no Seishun Full-Power Ninden", + "mal_id": 12979, "poster": "https://aruppi.jeluchu.xyz/res/directory/742.jpg", "type": "Anime", "genres": [ @@ -12934,7 +12934,7 @@ { "id": "accel-world", "title": "Accel World", - "mal_title": "Accel World", + "mal_id": 11759, "poster": "https://aruppi.jeluchu.xyz/res/directory/743.jpg", "type": "Anime", "genres": [ @@ -12952,7 +12952,7 @@ { "id": "recorder-to-randoseru-re", "title": "Recorder to Randoseru Re♪", - "mal_title": "Recorder to Randoseru Re♪", + "mal_id": 13377, "poster": "https://aruppi.jeluchu.xyz/res/directory/744.jpg", "type": "Anime", "genres": [ @@ -12969,7 +12969,7 @@ { "id": "shiba-inuko-san", "title": "Shiba Inuko-san", - "mal_title": "Shiba Inuko-san", + "mal_id": 13141, "poster": "https://aruppi.jeluchu.xyz/res/directory/745.jpg", "type": "Anime", "genres": [ @@ -12983,7 +12983,7 @@ { "id": "furusato-saisei", "title": "Furusato Saisei: Nihon no Mukashi Banashi", - "mal_title": "Furusato Saisei: Nihon no Mukashi Banashi", + "mal_id": 13163, "poster": "https://aruppi.jeluchu.xyz/res/directory/746.jpg", "type": "Anime", "genres": [ @@ -12999,7 +12999,7 @@ { "id": "kuro-majo-san-ga-tooru", "title": "Kuro Majo-san ga Tooru!!", - "mal_title": "Kuro Majo-san ga Tooru!!", + "mal_id": 13159, "poster": "https://aruppi.jeluchu.xyz/res/directory/747.jpg", "type": "Anime", "genres": [ @@ -13016,7 +13016,7 @@ { "id": "kore-wa-zombie-desu-ka-of-the-dead", "title": "Kore wa Zombie Desu ka? of the Dead", - "mal_title": "Kore wa Zombie Desu ka? of the Dead", + "mal_id": 10790, "poster": "https://aruppi.jeluchu.xyz/res/directory/748.jpg", "type": "Anime", "genres": [ @@ -13035,7 +13035,7 @@ { "id": "medaka-box", "title": "Medaka Box", - "mal_title": "Medaka Box", + "mal_id": 11761, "poster": "https://aruppi.jeluchu.xyz/res/directory/749.jpg", "type": "Anime", "genres": [ @@ -13055,7 +13055,7 @@ { "id": "gakkatsu", "title": "Gakkatsu!", - "mal_title": "Gakkatsu!", + "mal_id": 13139, "poster": "https://aruppi.jeluchu.xyz/res/directory/750.jpg", "type": "Anime", "genres": [ @@ -13070,7 +13070,7 @@ { "id": "sengoku-collection", "title": "Sengoku Collection", - "mal_title": "Sengoku Collection", + "mal_id": 12611, "poster": "https://aruppi.jeluchu.xyz/res/directory/751.jpg", "type": "Anime", "genres": [ @@ -13086,7 +13086,7 @@ { "id": "arashi-no-yoru-ni-himitsu-no-tomodachi", "title": "Arashi No Yoru Ni: Himitsu No Tomodachi", - "mal_title": "Arashi No Yoru Ni: Himitsu No Tomodachi", + "mal_id": 13029, "poster": "https://aruppi.jeluchu.xyz/res/directory/752.jpg", "type": "Anime", "genres": [ @@ -13101,7 +13101,7 @@ { "id": "sankarea", "title": "Sankarea", - "mal_title": "Sankarea", + "mal_id": 11499, "poster": "https://aruppi.jeluchu.xyz/res/directory/753.jpg", "type": "Anime", "genres": [ @@ -13120,7 +13120,7 @@ { "id": "shirokuma-cafe", "title": "Shirokuma Cafe", - "mal_title": "Shirokuma Cafe", + "mal_id": 12815, "poster": "https://aruppi.jeluchu.xyz/res/directory/754.jpg", "type": "Anime", "genres": [ @@ -13136,7 +13136,7 @@ { "id": "acchi-kocchi", "title": "Acchi Kocchi", - "mal_title": "Acchi Kocchi", + "mal_id": 12291, "poster": "https://aruppi.jeluchu.xyz/res/directory/755.jpg", "type": "Anime", "genres": [ @@ -13154,7 +13154,7 @@ { "id": "yurumate3dei", "title": "Yurumate3Dei", - "mal_title": "Yurumate3Dei", + "mal_id": 12123, "poster": "https://aruppi.jeluchu.xyz/res/directory/756.jpg", "type": "Anime", "genres": [ @@ -13170,7 +13170,7 @@ { "id": "fate-zero-ii", "title": "Fate/Zero 2", - "mal_title": "Fate/Zero 2", + "mal_id": 10087, "poster": "https://aruppi.jeluchu.xyz/res/directory/757.jpg", "type": "Anime", "genres": [ @@ -13187,7 +13187,7 @@ { "id": "upotte", "title": "Upotte!!", - "mal_title": "Upotte!!", + "mal_id": 12317, "poster": "https://aruppi.jeluchu.xyz/res/directory/758.jpg", "type": "Anime", "genres": [ @@ -13204,7 +13204,7 @@ { "id": "lupin-iii", "title": "Lupin the Third: Mine Fujiko to Iu Onna", - "mal_title": "Lupin the Third: Mine Fujiko to Iu Onna", + "mal_id": 13203, "poster": "https://aruppi.jeluchu.xyz/res/directory/759.jpg", "type": "Anime", "genres": [ @@ -13223,7 +13223,7 @@ { "id": "a-channel-smile", "title": "A Channel Smile", - "mal_title": "A Channel Smile", + "mal_id": 11339, "poster": "https://aruppi.jeluchu.xyz/res/directory/760.jpg", "type": "OVA", "genres": [ @@ -13240,7 +13240,7 @@ { "id": "kuroko-no-basuke", "title": "Kuroko no Basuke", - "mal_title": "Kuroko no Basuke", + "mal_id": 11771, "poster": "https://aruppi.jeluchu.xyz/res/directory/761.jpg", "type": "Anime", "genres": [ @@ -13257,7 +13257,7 @@ { "id": "nazo-no-kanojo-x", "title": "Nazo no Kanojo X", - "mal_title": "Nazo no Kanojo X", + "mal_id": 12467, "poster": "https://aruppi.jeluchu.xyz/res/directory/762.jpg", "type": "Anime", "genres": [ @@ -13274,7 +13274,7 @@ { "id": "tasogare-otome-x-amnesia", "title": "Tasogare Otome x Amnesia", - "mal_title": "Tasogare Otome x Amnesia", + "mal_id": 12445, "poster": "https://aruppi.jeluchu.xyz/res/directory/763.jpg", "type": "Anime", "genres": [ @@ -13293,7 +13293,7 @@ { "id": "saki-achiga-hen-episode-of-side-a", "title": "Saki Achiga-hen episode of side-A", - "mal_title": "Saki Achiga-hen episode of side-A", + "mal_id": 10884, "poster": "https://aruppi.jeluchu.xyz/res/directory/764.jpg", "type": "Anime", "genres": [ @@ -13309,7 +13309,7 @@ { "id": "queens-blade-rebellion", "title": "Queen's Blade: Rebellion", - "mal_title": "Queen's Blade: Rebellion", + "mal_id": 11859, "poster": "https://aruppi.jeluchu.xyz/res/directory/765.jpg", "type": "Anime", "genres": [ @@ -13326,7 +13326,7 @@ { "id": "haiyoru-nyaruko-san", "title": "Haiyoru! Nyaruko-san", - "mal_title": "Haiyoru! Nyaruko-san", + "mal_id": 11785, "poster": "https://aruppi.jeluchu.xyz/res/directory/766.jpg", "type": "Anime", "genres": [ @@ -13342,7 +13342,7 @@ { "id": "phi-brain-kami-no-puzzle-ii", "title": "Phi Brain: Kami no Puzzle II", - "mal_title": "Phi Brain: Kami no Puzzle II", + "mal_id": 9981, "poster": "https://aruppi.jeluchu.xyz/res/directory/767.jpg", "type": "Anime", "genres": [ @@ -13359,7 +13359,7 @@ { "id": "ginga-e-kickoff", "title": "Ginga e Kickoff!!", - "mal_title": "Ginga e Kickoff!!", + "mal_id": 12875, "poster": "https://aruppi.jeluchu.xyz/res/directory/768.jpg", "type": "Anime", "genres": [ @@ -13374,7 +13374,7 @@ { "id": "jormungand", "title": "Jormungand", - "mal_title": "Jormungand", + "mal_id": 12413, "poster": "https://aruppi.jeluchu.xyz/res/directory/769.jpg", "type": "Anime", "genres": [ @@ -13390,7 +13390,7 @@ { "id": "sakamichi-no-apollon", "title": "Sakamichi no Apollon", - "mal_title": "Sakamichi no Apollon", + "mal_id": 12531, "poster": "https://aruppi.jeluchu.xyz/res/directory/770.jpg", "type": "Anime", "genres": [ @@ -13408,7 +13408,7 @@ { "id": "tsuritama", "title": "Tsuritama", - "mal_title": "Tsuritama", + "mal_id": 12883, "poster": "https://aruppi.jeluchu.xyz/res/directory/771.jpg", "type": "Anime", "genres": [ @@ -13425,7 +13425,7 @@ { "id": "eureka-seven-astral-ocean", "title": "Eureka Seven Astral Ocean", - "mal_title": "Eureka Seven Astral Ocean", + "mal_id": 12471, "poster": "https://aruppi.jeluchu.xyz/res/directory/772.jpg", "type": "Anime", "genres": [ @@ -13443,7 +13443,7 @@ { "id": "shining-hearts", "title": "Shining Hearts: Shiawase no Pan", - "mal_title": "Shining Hearts: Shiawase no Pan", + "mal_id": 12367, "poster": "https://aruppi.jeluchu.xyz/res/directory/773.jpg", "type": "Anime", "genres": [ @@ -13458,7 +13458,7 @@ { "id": "sekiei-ayakashi-mangatan", "title": "Sekiei Ayakashi Mangatan", - "mal_title": "Sekiei Ayakashi Mangatan", + "mal_id": 12907, "poster": "https://aruppi.jeluchu.xyz/res/directory/774.jpg", "type": "Anime", "genres": [ @@ -13474,7 +13474,7 @@ { "id": "inazuma-eleven-go-chrono-stone", "title": "Inazuma Eleven Go Chrono Stone", - "mal_title": "Inazuma Eleven Go Chrono Stone", + "mal_id": 13261, "poster": "https://aruppi.jeluchu.xyz/res/directory/775.jpg", "type": "Anime", "genres": [ @@ -13490,7 +13490,7 @@ { "id": "hyouka", "title": "Hyouka", - "mal_title": "Hyouka", + "mal_id": 12189, "poster": "https://aruppi.jeluchu.xyz/res/directory/776.jpg", "type": "Anime", "genres": [ @@ -13506,7 +13506,7 @@ { "id": "naruto-shippuden-blood-prison", "title": "Naruto Shippuden: Blood Prison", - "mal_title": "Naruto Shippuden: Blood Prison", + "mal_id": 10589, "poster": "https://aruppi.jeluchu.xyz/res/directory/777.jpg", "type": "Película", "genres": [ @@ -13525,7 +13525,7 @@ { "id": "akb0048", "title": "AKB0048", - "mal_title": "AKB0048", + "mal_id": 12149, "poster": "https://aruppi.jeluchu.xyz/res/directory/778.jpg", "type": "Anime", "genres": [ @@ -13540,7 +13540,7 @@ { "id": "honoo-no-chuunin-shiken-naruto-vs-konohamaru", "title": "Honoo no Chuunin Shiken Naruto vs Konohamaru", - "mal_title": "Honoo no Chuunin Shiken Naruto vs Konohamaru", + "mal_id": 10686, "poster": "https://aruppi.jeluchu.xyz/res/directory/779.jpg", "type": "OVA", "genres": [ @@ -13558,7 +13558,7 @@ { "id": "holy-knight", "title": "Holy Knight", - "mal_title": "Holy Knight", + "mal_id": 11005, "poster": "https://aruppi.jeluchu.xyz/res/directory/780.jpg", "type": "OVA", "genres": [ @@ -13577,7 +13577,7 @@ { "id": "avatar-la-leyenda-de-korra", "title": "Avatar: La leyenda de Korra", - "mal_title": "Avatar: La leyenda de Korra", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/781.jpg", "type": "Anime", "genres": [ @@ -13591,7 +13591,7 @@ { "id": "kuttsukiboshi", "title": "Kuttsukiboshi", - "mal_title": "Kuttsukiboshi", + "mal_id": 9014, "poster": "https://aruppi.jeluchu.xyz/res/directory/782.jpg", "type": "OVA", "genres": [ @@ -13608,7 +13608,7 @@ { "id": "berserk-ougon-jidaihen-i-haou-no-tamago", "title": "Berserk Ougon Jidaihen I: Haou no Tamago", - "mal_title": "Berserk Ougon Jidaihen I: Haou no Tamago", + "mal_id": 10218, "poster": "https://aruppi.jeluchu.xyz/res/directory/783.jpg", "type": "Película", "genres": [ @@ -13628,7 +13628,7 @@ { "id": "amagami-ss-plus-especial", "title": "Amagami SS Plus Especial", - "mal_title": "Amagami SS Plus Especial", + "mal_id": 12669, "poster": "https://aruppi.jeluchu.xyz/res/directory/784.jpg", "type": "OVA", "genres": [ @@ -13642,7 +13642,7 @@ { "id": "kingdom", "title": "Kingdom", - "mal_title": "Kingdom", + "mal_id": 12031, "poster": "https://aruppi.jeluchu.xyz/res/directory/785.jpg", "type": "Anime", "genres": [ @@ -13659,7 +13659,7 @@ { "id": "senjo-no-valkyria-3", "title": "Senjo no Valkyria 3 - Dare ga Tame no Juyu", - "mal_title": "Senjo no Valkyria 3 - Dare ga Tame no Juyu", + "mal_id": 9793, "poster": "https://aruppi.jeluchu.xyz/res/directory/786.jpg", "type": "OVA", "genres": [ @@ -13675,7 +13675,7 @@ { "id": "kokoro-connect", "title": "Kokoro Connect", - "mal_title": "Kokoro Connect", + "mal_id": 11887, "poster": "https://aruppi.jeluchu.xyz/res/directory/787.jpg", "type": "Anime", "genres": [ @@ -13694,7 +13694,7 @@ { "id": "ai-mai-moe-can-change", "title": "Ai Mai! Moe Can Change!", - "mal_title": "Ai Mai! Moe Can Change!", + "mal_id": 12501, "poster": "https://aruppi.jeluchu.xyz/res/directory/788.jpg", "type": "OVA", "genres": [ @@ -13709,7 +13709,7 @@ { "id": "pokemon-best-wishes-ii", "title": "Pokemon: Best Wishes! 2", - "mal_title": "Pokemon: Best Wishes! 2", + "mal_id": 9107, "poster": "https://aruppi.jeluchu.xyz/res/directory/789.jpg", "type": "Anime", "genres": [ @@ -13727,7 +13727,7 @@ { "id": "mahou-tsukai-nara-miso-wo-kue", "title": "Mahou Tsukai Nara Miso wo Kue", - "mal_title": "Mahou Tsukai Nara Miso wo Kue", + "mal_id": 14479, "poster": "https://aruppi.jeluchu.xyz/res/directory/790.jpg", "type": "OVA", "genres": [ @@ -13743,7 +13743,7 @@ { "id": "asa-made-jugyou-chu", "title": "Asa Made Jugyou Chu!", - "mal_title": "Asa Made Jugyou Chu!", + "mal_id": 12581, "poster": "https://aruppi.jeluchu.xyz/res/directory/791.jpg", "type": "OVA", "genres": [ @@ -13760,7 +13760,7 @@ { "id": "campione", "title": "Campione!", - "mal_title": "Campione!", + "mal_id": 12293, "poster": "https://aruppi.jeluchu.xyz/res/directory/792.jpg", "type": "Anime", "genres": [ @@ -13779,7 +13779,7 @@ { "id": "chitose-get-you", "title": "Chitose Get You!!", - "mal_title": "Chitose Get You!!", + "mal_id": 14277, "poster": "https://aruppi.jeluchu.xyz/res/directory/793.jpg", "type": "Anime", "genres": [ @@ -13797,7 +13797,7 @@ { "id": "la-storia-della-arcana-famiglia", "title": "La Storia Della Arcana Famiglia", - "mal_title": "La Storia Della Arcana Famiglia", + "mal_id": 12967, "poster": "https://aruppi.jeluchu.xyz/res/directory/794.jpg", "type": "Anime", "genres": [ @@ -13814,7 +13814,7 @@ { "id": "hagure-yuusha-no-estetica", "title": "Hagure Yuusha no Estetica", - "mal_title": "Hagure Yuusha no Estetica", + "mal_id": 13161, "poster": "https://aruppi.jeluchu.xyz/res/directory/795.jpg", "type": "Anime", "genres": [ @@ -13831,7 +13831,7 @@ { "id": "muv-luv-alternative-total-eclipse", "title": "Muv-Luv Alternative: Total Eclipse", - "mal_title": "Muv-Luv Alternative: Total Eclipse", + "mal_id": 11021, "poster": "https://aruppi.jeluchu.xyz/res/directory/796.jpg", "type": "Anime", "genres": [ @@ -13848,7 +13848,7 @@ { "id": "tari-tari", "title": "Tari Tari", - "mal_title": "Tari Tari", + "mal_id": 13333, "poster": "https://aruppi.jeluchu.xyz/res/directory/797.jpg", "type": "Anime", "genres": [ @@ -13864,7 +13864,7 @@ { "id": "yuruyuri-ii", "title": "YuruYuri 2", - "mal_title": "YuruYuri 2", + "mal_id": 10495, "poster": "https://aruppi.jeluchu.xyz/res/directory/798.jpg", "type": "Anime", "genres": [ @@ -13881,7 +13881,7 @@ { "id": "jinrui-wa-suitai-shimashita", "title": "Jinrui wa Suitai Shimashita", - "mal_title": "Jinrui wa Suitai Shimashita", + "mal_id": 10357, "poster": "https://aruppi.jeluchu.xyz/res/directory/799.jpg", "type": "Anime", "genres": [ @@ -13897,7 +13897,7 @@ { "id": "rain-town", "title": "Rain Town", - "mal_title": "Rain Town", + "mal_id": 10448, "poster": "https://aruppi.jeluchu.xyz/res/directory/800.jpg", "type": "OVA", "genres": [ @@ -13911,7 +13911,7 @@ { "id": "binbougami-ga", "title": "Binbougami ga!", - "mal_title": "Binbougami ga!", + "mal_id": 13535, "poster": "https://aruppi.jeluchu.xyz/res/directory/801.jpg", "type": "Anime", "genres": [ @@ -13928,7 +13928,7 @@ { "id": "natsuyuki-rendezvous", "title": "Natsuyuki Rendezvous", - "mal_title": "Natsuyuki Rendezvous", + "mal_id": 13585, "poster": "https://aruppi.jeluchu.xyz/res/directory/802.jpg", "type": "Anime", "genres": [ @@ -13945,7 +13945,7 @@ { "id": "utakoi", "title": "Chouyaku Hyakuninisshu: Uta Koi", - "mal_title": "Chouyaku Hyakuninisshu: Uta Koi", + "mal_id": 13349, "poster": "https://aruppi.jeluchu.xyz/res/directory/803.jpg", "type": "Anime", "genres": [ @@ -13961,7 +13961,7 @@ { "id": "koi-to-senkyo-to-chocolate", "title": "Koi to Senkyo to Chocolate", - "mal_title": "Koi to Senkyo to Chocolate", + "mal_id": 12175, "poster": "https://aruppi.jeluchu.xyz/res/directory/804.jpg", "type": "Anime", "genres": [ @@ -13977,7 +13977,7 @@ { "id": "dakara-boku-wa-h-ga-dekinai", "title": "Dakara Boku wa, H ga Dekinai", - "mal_title": "Dakara Boku wa, H ga Dekinai", + "mal_id": 12549, "poster": "https://aruppi.jeluchu.xyz/res/directory/805.jpg", "type": "Anime", "genres": [ @@ -13994,7 +13994,7 @@ { "id": "kono-naka-ni-hitori-imouto-ga-iru", "title": "Kono Naka ni Hitori, Imouto ga Iru!", - "mal_title": "Kono Naka ni Hitori, Imouto ga Iru!", + "mal_id": 13367, "poster": "https://aruppi.jeluchu.xyz/res/directory/806.jpg", "type": "Anime", "genres": [ @@ -14014,7 +14014,7 @@ { "id": "sword-art-online", "title": "Sword Art Online", - "mal_title": "Sword Art Online", + "mal_id": 21881, "poster": "https://aruppi.jeluchu.xyz/res/directory/807.jpg", "type": "Anime", "genres": [ @@ -14032,7 +14032,7 @@ { "id": "dog-days-2", "title": "Dog Days'", - "mal_title": "Dog Days'", + "mal_id": 10155, "poster": "https://aruppi.jeluchu.xyz/res/directory/808.jpg", "type": "Anime", "genres": [ @@ -14049,7 +14049,7 @@ { "id": "oda-nobuna-no-yabou", "title": "Oda Nobuna no Yabou", - "mal_title": "Oda Nobuna no Yabou", + "mal_id": 11933, "poster": "https://aruppi.jeluchu.xyz/res/directory/809.jpg", "type": "Anime", "genres": [ @@ -14065,7 +14065,7 @@ { "id": "kyoukai-senjou-no-horizon-ii", "title": "Kyoukai Senjou no Horizon Segunda Temporada", - "mal_title": "Kyoukai Senjou no Horizon Segunda Temporada", + "mal_id": 12487, "poster": "https://aruppi.jeluchu.xyz/res/directory/810.jpg", "type": "Anime", "genres": [ @@ -14081,7 +14081,7 @@ { "id": "rinne-no-lagrange-ii", "title": "Rinne no Lagrange Segunda Temporada", - "mal_title": "Rinne no Lagrange Segunda Temporada", + "mal_id": 12281, "poster": "https://aruppi.jeluchu.xyz/res/directory/811.jpg", "type": "Anime", "genres": [ @@ -14098,7 +14098,7 @@ { "id": "nagareboshi-lens", "title": "Nagareboshi Lens", - "mal_title": "Nagareboshi Lens", + "mal_id": 13833, "poster": "https://aruppi.jeluchu.xyz/res/directory/812.jpg", "type": "OVA", "genres": [ @@ -14113,7 +14113,7 @@ { "id": "moyashimon-returns", "title": "Moyashimon Returns", - "mal_title": "Moyashimon Returns", + "mal_id": 13409, "poster": "https://aruppi.jeluchu.xyz/res/directory/813.jpg", "type": "Anime", "genres": [ @@ -14129,7 +14129,7 @@ { "id": "joshiraku", "title": "Joshiraku", - "mal_title": "Joshiraku", + "mal_id": 12679, "poster": "https://aruppi.jeluchu.xyz/res/directory/814.jpg", "type": "Anime", "genres": [ @@ -14144,7 +14144,7 @@ { "id": "hakuouki-reimeiroku", "title": "Hakuouki: Reimeiroku", - "mal_title": "Hakuouki: Reimeiroku", + "mal_id": 13115, "poster": "https://aruppi.jeluchu.xyz/res/directory/815.jpg", "type": "Anime", "genres": [ @@ -14163,7 +14163,7 @@ { "id": "marimo-no-hana", "title": "Marimo no Hana", - "mal_title": "Marimo no Hana", + "mal_id": 13835, "poster": "https://aruppi.jeluchu.xyz/res/directory/816.jpg", "type": "OVA", "genres": [ @@ -14178,7 +14178,7 @@ { "id": "gekijo-ban-heart-no-kuni-no-alice", "title": "Gekijo-ban Heart no Kuni no Alice - Wonderful Wonder World", - "mal_title": "Gekijo-ban Heart no Kuni no Alice - Wonderful Wonder World", + "mal_id": 4713, "poster": "https://aruppi.jeluchu.xyz/res/directory/817.jpg", "type": "Película", "genres": [ @@ -14195,7 +14195,7 @@ { "id": "ebiten", "title": "Ebiten: Kouritsu Ebisugawa Koukou Tenmonbu", - "mal_title": "Ebiten: Kouritsu Ebisugawa Koukou Tenmonbu", + "mal_id": 14073, "poster": "https://aruppi.jeluchu.xyz/res/directory/818.jpg", "type": "Anime", "genres": [ @@ -14213,7 +14213,7 @@ { "id": "k-on-pelicula", "title": "K-ON!!", - "mal_title": "K-ON!!", + "mal_id": 5680, "poster": "https://aruppi.jeluchu.xyz/res/directory/819.jpg", "type": "Película", "genres": [ @@ -14229,7 +14229,7 @@ { "id": "computer-kakumei", "title": "Computer Kakumei: Saikyou x Saisoku no Zunou Tanjou", - "mal_title": "Computer Kakumei: Saikyou x Saisoku no Zunou Tanjou", + "mal_id": 14317, "poster": "https://aruppi.jeluchu.xyz/res/directory/820.jpg", "type": "OVA", "genres": [ @@ -14243,7 +14243,7 @@ { "id": "guilty-crown-lost-christmas", "title": "Guilty Crown: Lost Christmas", - "mal_title": "Guilty Crown: Lost Christmas", + "mal_id": 13411, "poster": "https://aruppi.jeluchu.xyz/res/directory/821.jpg", "type": "OVA", "genres": [ @@ -14260,7 +14260,7 @@ { "id": "code-geass-nunnally-in-wonderland", "title": "Code Geass: Nunnally in Wonderland", - "mal_title": "Code Geass: Nunnally in Wonderland", + "mal_id": 12685, "poster": "https://aruppi.jeluchu.xyz/res/directory/822.jpg", "type": "OVA", "genres": [ @@ -14276,7 +14276,7 @@ { "id": "mardock-scramble-the-first-compression", "title": "Mardock Scramble: The First Compression", - "mal_title": "Mardock Scramble: The First Compression", + "mal_id": 8100, "poster": "https://aruppi.jeluchu.xyz/res/directory/823.jpg", "type": "Película", "genres": [ @@ -14292,7 +14292,7 @@ { "id": "mardock-scramble-the-second-combustion", "title": "Mardock Scramble: The Second Combustion", - "mal_title": "Mardock Scramble: The Second Combustion", + "mal_id": 10624, "poster": "https://aruppi.jeluchu.xyz/res/directory/824.jpg", "type": "Película", "genres": [ @@ -14308,7 +14308,7 @@ { "id": "macross-frontier-itsuwari-no-utahime", "title": "Macross Frontier: Itsuwari no Utahime", - "mal_title": "Macross Frontier: Itsuwari no Utahime", + "mal_id": 5310, "poster": "https://aruppi.jeluchu.xyz/res/directory/825.jpg", "type": "Película", "genres": [ @@ -14328,7 +14328,7 @@ { "id": "macross-frontier-sayonara-no-tsubasa", "title": "Macross Frontier: Sayonara no Tsubasa", - "mal_title": "Macross Frontier: Sayonara no Tsubasa", + "mal_id": 7222, "poster": "https://aruppi.jeluchu.xyz/res/directory/826.jpg", "type": "Película", "genres": [ @@ -14348,7 +14348,7 @@ { "id": "kyou-no-asuka-show", "title": "Kyou no Asuka Show", - "mal_title": "Kyou no Asuka Show", + "mal_id": 15005, "poster": "https://aruppi.jeluchu.xyz/res/directory/827.jpg", "type": "Anime", "genres": [ @@ -14364,7 +14364,7 @@ { "id": "one-off", "title": "One Off", - "mal_title": "One Off", + "mal_id": 13283, "poster": "https://aruppi.jeluchu.xyz/res/directory/828.jpg", "type": "OVA", "genres": [ @@ -14378,7 +14378,7 @@ { "id": "corpse-party-missing-footage", "title": "Corpse Party: Missing Footage", - "mal_title": "Corpse Party: Missing Footage", + "mal_id": 13807, "poster": "https://aruppi.jeluchu.xyz/res/directory/829.jpg", "type": "OVA", "genres": [ @@ -14393,7 +14393,7 @@ { "id": "to-love-ru-darkness-ova", "title": "To LOVE-Ru Darkness OVA", - "mal_title": "To LOVE-Ru Darkness OVA", + "mal_id": 13851, "poster": "https://aruppi.jeluchu.xyz/res/directory/830.jpg", "type": "OVA", "genres": [ @@ -14413,7 +14413,7 @@ { "id": "nogizaka-haruka-no-himitsu-finale", "title": "Nogizaka Haruka no Himitsu: Finale♪", - "mal_title": "Nogizaka Haruka no Himitsu: Finale♪", + "mal_id": 10928, "poster": "https://aruppi.jeluchu.xyz/res/directory/831.jpg", "type": "OVA", "genres": [ @@ -14428,7 +14428,7 @@ { "id": "one-piece-nami-kokaishi", "title": "One Piece: Episodio de Nami: Kōkaishi no Namida to Naka", - "mal_title": "One Piece: Episodio de Nami: Kōkaishi no Namida to Naka", + "mal_id": 15323, "poster": "https://aruppi.jeluchu.xyz/res/directory/832.jpg", "type": "OVA", "genres": [ @@ -14448,7 +14448,7 @@ { "id": "resident-evil-infierno", "title": "Resident Evil: Damnation", - "mal_title": "Resident Evil: Damnation", + "mal_id": 9544, "poster": "https://aruppi.jeluchu.xyz/res/directory/833.jpg", "type": "Película", "genres": [ @@ -14464,7 +14464,7 @@ { "id": "shinsekai-yori", "title": "Shinsekai yori", - "mal_title": "Shinsekai yori", + "mal_id": 13125, "poster": "https://aruppi.jeluchu.xyz/res/directory/834.jpg", "type": "Anime", "genres": [ @@ -14482,7 +14482,7 @@ { "id": "code-geass-gaiden-bokoku-no-akito", "title": "Code Geass Gaiden: Bokoku no Akito", - "mal_title": "Code Geass Gaiden: Bokoku no Akito", + "mal_id": 8888, "poster": "https://aruppi.jeluchu.xyz/res/directory/835.jpg", "type": "OVA", "genres": [ @@ -14499,7 +14499,7 @@ { "id": "hiiro-no-kakera-ii", "title": "Hiiro no Kakera Segunda Temporada", - "mal_title": "Hiiro no Kakera Segunda Temporada", + "mal_id": 14645, "poster": "https://aruppi.jeluchu.xyz/res/directory/836.jpg", "type": "Anime", "genres": [ @@ -14516,7 +14516,7 @@ { "id": "prince-of-tennis-eikokushiki-teikyuujou-kessen", "title": "Prince of Tennis - Eikokushiki Teikyuujou Kessen!", - "mal_title": "Prince of Tennis - Eikokushiki Teikyuujou Kessen!", + "mal_id": 10731, "poster": "https://aruppi.jeluchu.xyz/res/directory/837.jpg", "type": "Película", "genres": [ @@ -14534,7 +14534,7 @@ { "id": "tonari-no-kaibutsu-kun", "title": "Tonari no Kaibutsu-kun", - "mal_title": "Tonari no Kaibutsu-kun", + "mal_id": 14227, "poster": "https://aruppi.jeluchu.xyz/res/directory/838.jpg", "type": "Anime", "genres": [ @@ -14552,7 +14552,7 @@ { "id": "kamisama-hajimemashita", "title": "Kamisama Hajimemashita", - "mal_title": "Kamisama Hajimemashita", + "mal_id": 25681, "poster": "https://aruppi.jeluchu.xyz/res/directory/839.jpg", "type": "Anime", "genres": [ @@ -14571,7 +14571,7 @@ { "id": "hayate-no-gotoku-cant-take-my-eyes-off-you", "title": "Hayate no Gotoku: Can't Take My Eyes Off You", - "mal_title": "Hayate no Gotoku: Can't Take My Eyes Off You", + "mal_id": 14653, "poster": "https://aruppi.jeluchu.xyz/res/directory/840.jpg", "type": "Anime", "genres": [ @@ -14588,7 +14588,7 @@ { "id": "chuunibyou-demo-koi-ga-shitai", "title": "Chuunibyou demo Koi ga Shitai!", - "mal_title": "Chuunibyou demo Koi ga Shitai!", + "mal_id": 14741, "poster": "https://aruppi.jeluchu.xyz/res/directory/841.jpg", "type": "Anime", "genres": [ @@ -14606,7 +14606,7 @@ { "id": "wooser-no-sono-higurashi", "title": "Wooser no Sono Higurashi", - "mal_title": "Wooser no Sono Higurashi", + "mal_id": 15313, "poster": "https://aruppi.jeluchu.xyz/res/directory/842.jpg", "type": "Anime", "genres": [ @@ -14622,7 +14622,7 @@ { "id": "gintama-2012", "title": "Gintama': Enchousen", - "mal_title": "Gintama': Enchousen", + "mal_id": 15417, "poster": "https://aruppi.jeluchu.xyz/res/directory/843.jpg", "type": "Anime", "genres": [ @@ -14642,7 +14642,7 @@ { "id": "zetsuen-no-tempest", "title": "Zetsuen no Tempest", - "mal_title": "Zetsuen no Tempest", + "mal_id": 14075, "poster": "https://aruppi.jeluchu.xyz/res/directory/844.jpg", "type": "Anime", "genres": [ @@ -14662,7 +14662,7 @@ { "id": "k-project", "title": "K Project", - "mal_title": "K Project", + "mal_id": 14467, "poster": "https://aruppi.jeluchu.xyz/res/directory/845.jpg", "type": "Anime", "genres": [ @@ -14678,7 +14678,7 @@ { "id": "btooom", "title": "Btooom!", - "mal_title": "Btooom!", + "mal_id": 14345, "poster": "https://aruppi.jeluchu.xyz/res/directory/846.jpg", "type": "Anime", "genres": [ @@ -14695,7 +14695,7 @@ { "id": "to-love-ru-darkness", "title": "To LOVE-Ru Darkness", - "mal_title": "To LOVE-Ru Darkness", + "mal_id": 13663, "poster": "https://aruppi.jeluchu.xyz/res/directory/847.jpg", "type": "Anime", "genres": [ @@ -14715,7 +14715,7 @@ { "id": "busou-shinki", "title": "Busou Shinki", - "mal_title": "Busou Shinki", + "mal_id": 14237, "poster": "https://aruppi.jeluchu.xyz/res/directory/848.jpg", "type": "Anime", "genres": [ @@ -14731,7 +14731,7 @@ { "id": "hidamari-sketch-x-honeycomb", "title": "Hidamari Sketch x Honeycomb", - "mal_title": "Hidamari Sketch x Honeycomb", + "mal_id": 11239, "poster": "https://aruppi.jeluchu.xyz/res/directory/849.jpg", "type": "Anime", "genres": [ @@ -14747,7 +14747,7 @@ { "id": "jojos-bizarre-adventure-the-animation", "title": "JoJo's Bizarre Adventure The Animation", - "mal_title": "JoJo's Bizarre Adventure The Animation", + "mal_id": 14719, "poster": "https://aruppi.jeluchu.xyz/res/directory/850.jpg", "type": "Anime", "genres": [ @@ -14765,7 +14765,7 @@ { "id": "onii-chan-dakedo", "title": "Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne", - "mal_title": "Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne", + "mal_id": 14199, "poster": "https://aruppi.jeluchu.xyz/res/directory/851.jpg", "type": "Anime", "genres": [ @@ -14783,7 +14783,7 @@ { "id": "little-busters", "title": "Little Busters!", - "mal_title": "Little Busters!", + "mal_id": 13655, "poster": "https://aruppi.jeluchu.xyz/res/directory/852.jpg", "type": "Anime", "genres": [ @@ -14801,7 +14801,7 @@ { "id": "bakuman-iii", "title": "Bakuman III", - "mal_title": "Bakuman III", + "mal_id": 12365, "poster": "https://aruppi.jeluchu.xyz/res/directory/853.jpg", "type": "Anime", "genres": [ @@ -14818,7 +14818,7 @@ { "id": "code-breaker", "title": "Code:Breaker", - "mal_title": "Code:Breaker", + "mal_id": 11703, "poster": "https://aruppi.jeluchu.xyz/res/directory/854.jpg", "type": "Anime", "genres": [ @@ -14837,7 +14837,7 @@ { "id": "sukitte-iinayo", "title": "Sukitte Iinayo", - "mal_title": "Sukitte Iinayo", + "mal_id": 14289, "poster": "https://aruppi.jeluchu.xyz/res/directory/855.jpg", "type": "Anime", "genres": [ @@ -14853,7 +14853,7 @@ { "id": "ixion-saga-dt", "title": "Ixion Saga DT", - "mal_title": "Ixion Saga DT", + "mal_id": 14765, "poster": "https://aruppi.jeluchu.xyz/res/directory/856.jpg", "type": "Anime", "genres": [ @@ -14869,7 +14869,7 @@ { "id": "magi", "title": "Magi: The Labyrinth of Magic", - "mal_title": "Magi: The Labyrinth of Magic", + "mal_id": 14513, "poster": "https://aruppi.jeluchu.xyz/res/directory/857.jpg", "type": "Anime", "genres": [ @@ -14887,7 +14887,7 @@ { "id": "teekyuu", "title": "Teekyuu", - "mal_title": "Teekyuu", + "mal_id": 15125, "poster": "https://aruppi.jeluchu.xyz/res/directory/858.jpg", "type": "Anime", "genres": [ @@ -14904,7 +14904,7 @@ { "id": "sakurasou-no-pet-na-kanojo", "title": "Sakurasou no Pet na Kanojo", - "mal_title": "Sakurasou no Pet na Kanojo", + "mal_id": 13759, "poster": "https://aruppi.jeluchu.xyz/res/directory/859.jpg", "type": "Anime", "genres": [ @@ -14922,7 +14922,7 @@ { "id": "girls-und-panzer", "title": "Girls und Panzer", - "mal_title": "Girls und Panzer", + "mal_id": 14131, "poster": "https://aruppi.jeluchu.xyz/res/directory/860.jpg", "type": "Anime", "genres": [ @@ -14937,7 +14937,7 @@ { "id": "jormungand-perfect-order", "title": "Jormungand: Perfect Order", - "mal_title": "Jormungand: Perfect Order", + "mal_id": 13331, "poster": "https://aruppi.jeluchu.xyz/res/directory/861.jpg", "type": "Anime", "genres": [ @@ -14953,7 +14953,7 @@ { "id": "robotics-notes", "title": "Robotics Notes", - "mal_title": "Robotics Notes", + "mal_id": 13599, "poster": "https://aruppi.jeluchu.xyz/res/directory/862.jpg", "type": "Anime", "genres": [ @@ -14970,7 +14970,7 @@ { "id": "psycho-pass", "title": "Psycho-Pass", - "mal_title": "Psycho-Pass", + "mal_id": 39491, "poster": "https://aruppi.jeluchu.xyz/res/directory/863.jpg", "type": "Anime", "genres": [ @@ -14987,7 +14987,7 @@ { "id": "medaka-box-abnormal", "title": "Medaka Box Abnormal", - "mal_title": "Medaka Box Abnormal", + "mal_id": 14527, "poster": "https://aruppi.jeluchu.xyz/res/directory/864.jpg", "type": "Anime", "genres": [ @@ -15007,7 +15007,7 @@ { "id": "aikatsu", "title": "Aikatsu!", - "mal_title": "Aikatsu!", + "mal_id": 15061, "poster": "https://aruppi.jeluchu.xyz/res/directory/865.jpg", "type": "Anime", "genres": [ @@ -15024,7 +15024,7 @@ { "id": "eureka-seven-ao-jungfrau-no-hanabanatachi", "title": "Eureka Seven AO: Jungfrau no Hanabanatachi", - "mal_title": "Eureka Seven AO: Jungfrau no Hanabanatachi", + "mal_id": 14875, "poster": "https://aruppi.jeluchu.xyz/res/directory/866.jpg", "type": "OVA", "genres": [ @@ -15042,7 +15042,7 @@ { "id": "yu-gi-oh-zexal-ii", "title": "Yu-Gi-Oh! Zexal II", - "mal_title": "Yu-Gi-Oh! Zexal II", + "mal_id": 10015, "poster": "https://aruppi.jeluchu.xyz/res/directory/867.jpg", "type": "Anime", "genres": [ @@ -15059,7 +15059,7 @@ { "id": "aoi-sekai-no-chuushin-de", "title": "Aoi Sekai no Chuushin de", - "mal_title": "Aoi Sekai no Chuushin de", + "mal_id": 15133, "poster": "https://aruppi.jeluchu.xyz/res/directory/868.jpg", "type": "Anime", "genres": [ @@ -15078,7 +15078,7 @@ { "id": "seitokai-no-ichizon-lv-ii", "title": "Seitokai no Ichizon Lv. 2", - "mal_title": "Seitokai no Ichizon Lv. 2", + "mal_id": 10464, "poster": "https://aruppi.jeluchu.xyz/res/directory/869.jpg", "type": "Anime", "genres": [ @@ -15095,7 +15095,7 @@ { "id": "minami-ke-omatase", "title": "Minami-ke Omatase", - "mal_title": "Minami-ke Omatase", + "mal_id": 14575, "poster": "https://aruppi.jeluchu.xyz/res/directory/870.jpg", "type": "OVA", "genres": [ @@ -15110,7 +15110,7 @@ { "id": "initial-d-fifth-stage", "title": "Initial D: Fifth Stage", - "mal_title": "Initial D: Fifth Stage", + "mal_id": 15059, "poster": "https://aruppi.jeluchu.xyz/res/directory/871.jpg", "type": "Anime", "genres": [ @@ -15128,7 +15128,7 @@ { "id": "arata-naru-sekai-mirai-hen", "title": "Arata naru Sekai: Mirai hen", - "mal_title": "Arata naru Sekai: Mirai hen", + "mal_id": 14373, "poster": "https://aruppi.jeluchu.xyz/res/directory/872.jpg", "type": "OVA", "genres": [ @@ -15142,7 +15142,7 @@ { "id": "chousoku-henkei-gyrozetter", "title": "Chousoku Henkei Gyrozetter", - "mal_title": "Chousoku Henkei Gyrozetter", + "mal_id": 14989, "poster": "https://aruppi.jeluchu.xyz/res/directory/873.jpg", "type": "Anime", "genres": [ @@ -15159,7 +15159,7 @@ { "id": "momo-e-no-tegami", "title": "Momo e no Tegami", - "mal_title": "Momo e no Tegami", + "mal_id": 10389, "poster": "https://aruppi.jeluchu.xyz/res/directory/874.jpg", "type": "Película", "genres": [ @@ -15174,7 +15174,7 @@ { "id": "accel-world-specials", "title": "Accel World Specials", - "mal_title": "Accel World Specials", + "mal_id": 13859, "poster": "https://aruppi.jeluchu.xyz/res/directory/875.jpg", "type": "OVA", "genres": [ @@ -15189,7 +15189,7 @@ { "id": "sword-art-offline", "title": "Sword Art Offline", - "mal_title": "Sword Art Offline", + "mal_id": 11757, "poster": "https://aruppi.jeluchu.xyz/res/directory/876.jpg", "type": "Anime", "genres": [ @@ -15203,7 +15203,7 @@ { "id": "chuunibyou-demo-koi-ga-shitai-depth-of-field", "title": "Chuunibyou demo Koi ga Shitai!: Depth of Field - Ai to Nikus", - "mal_title": "Chuunibyou demo Koi ga Shitai!: Depth of Field - Ai to Nikus", + "mal_id": 15879, "poster": "https://aruppi.jeluchu.xyz/res/directory/877.jpg", "type": "OVA", "genres": [ @@ -15218,7 +15218,7 @@ { "id": "boku-no-imouto-wa-osaka-okan", "title": "Boku no Imouto wa Osaka okan", - "mal_title": "Boku no Imouto wa Osaka okan", + "mal_id": 16405, "poster": "https://aruppi.jeluchu.xyz/res/directory/878.jpg", "type": "Anime", "genres": [ @@ -15232,7 +15232,7 @@ { "id": "junjou-romantica-ova", "title": "Junjou Romantica OVA", - "mal_title": "Junjou Romantica OVA", + "mal_id": 13767, "poster": "https://aruppi.jeluchu.xyz/res/directory/879.jpg", "type": "OVA", "genres": [ @@ -15249,7 +15249,7 @@ { "id": "inferno-cop", "title": "Inferno Cop", - "mal_title": "Inferno Cop", + "mal_id": 16774, "poster": "https://aruppi.jeluchu.xyz/res/directory/880.jpg", "type": "Anime", "genres": [ @@ -15264,7 +15264,7 @@ { "id": "berserk-ougon-jidaihen-ii-doldrey-kouryaku", "title": "Berserk Ougon Jidaihen II: Doldrey Kouryaku", - "mal_title": "Berserk Ougon Jidaihen II: Doldrey Kouryaku", + "mal_id": 12113, "poster": "https://aruppi.jeluchu.xyz/res/directory/881.jpg", "type": "Anime", "genres": [ @@ -15286,7 +15286,7 @@ { "id": "puchimas-petit-idolmster", "title": "Puchimas!: Petit iDOLM@STER", - "mal_title": "Puchimas!: Petit iDOLM@STER", + "mal_id": 15649, "poster": "https://aruppi.jeluchu.xyz/res/directory/882.jpg", "type": "Anime", "genres": [ @@ -15301,7 +15301,7 @@ { "id": "kokoro-connect-michi-random", "title": "Kokoro Connect: Michi Random", - "mal_title": "Kokoro Connect: Michi Random", + "mal_id": 16001, "poster": "https://aruppi.jeluchu.xyz/res/directory/883.jpg", "type": "Anime", "genres": [ @@ -15320,7 +15320,7 @@ { "id": "nekomonogatari-kuro", "title": "Nekomonogatari (Kuro)", - "mal_title": "Nekomonogatari (Kuro)", + "mal_id": 15689, "poster": "https://aruppi.jeluchu.xyz/res/directory/884.jpg", "type": "Anime", "genres": [ @@ -15336,7 +15336,7 @@ { "id": "da-capo-iii", "title": "Da Capo III", - "mal_title": "Da Capo III", + "mal_id": 14827, "poster": "https://aruppi.jeluchu.xyz/res/directory/885.jpg", "type": "Anime", "genres": [ @@ -15353,7 +15353,7 @@ { "id": "yama-no-susume", "title": "Yama no Susume", - "mal_title": "Yama no Susume", + "mal_id": 14355, "poster": "https://aruppi.jeluchu.xyz/res/directory/886.jpg", "type": "Anime", "genres": [ @@ -15369,7 +15369,7 @@ { "id": "mangirl", "title": "Mangirl!", - "mal_title": "Mangirl!", + "mal_id": 14045, "poster": "https://aruppi.jeluchu.xyz/res/directory/887.jpg", "type": "Anime", "genres": [ @@ -15384,7 +15384,7 @@ { "id": "ai-mai-mi", "title": "Ai Mai Mi", - "mal_title": "Ai Mai Mi", + "mal_id": 16169, "poster": "https://aruppi.jeluchu.xyz/res/directory/888.jpg", "type": "Anime", "genres": [ @@ -15399,7 +15399,7 @@ { "id": "maoyu-mao-yuusha", "title": "Maoyu Mao Yuusha", - "mal_title": "Maoyu Mao Yuusha", + "mal_id": 14833, "poster": "https://aruppi.jeluchu.xyz/res/directory/889.jpg", "type": "Anime", "genres": [ @@ -15417,7 +15417,7 @@ { "id": "ore-no-kanojo-to-osananajimi-ga-shuraba-sugiru", "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", - "mal_title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "mal_id": 14749, "poster": "https://aruppi.jeluchu.xyz/res/directory/890.jpg", "type": "Anime", "genres": [ @@ -15434,7 +15434,7 @@ { "id": "cuticle-detective-inaba", "title": "Cuticle Detective Inaba", - "mal_title": "Cuticle Detective Inaba", + "mal_id": 15109, "poster": "https://aruppi.jeluchu.xyz/res/directory/891.jpg", "type": "Anime", "genres": [ @@ -15452,7 +15452,7 @@ { "id": "ishida-to-asakura", "title": "Ishida to Asakura", - "mal_title": "Ishida to Asakura", + "mal_id": 16317, "poster": "https://aruppi.jeluchu.xyz/res/directory/892.jpg", "type": "Anime", "genres": [ @@ -15468,7 +15468,7 @@ { "id": "akb0048-next-stage", "title": "AKB0048 Next stage", - "mal_title": "AKB0048 Next stage", + "mal_id": 14941, "poster": "https://aruppi.jeluchu.xyz/res/directory/893.jpg", "type": "Anime", "genres": [ @@ -15483,7 +15483,7 @@ { "id": "minami-ke-tadaima", "title": "Minami-ke Tadaima", - "mal_title": "Minami-ke Tadaima", + "mal_id": 14511, "poster": "https://aruppi.jeluchu.xyz/res/directory/894.jpg", "type": "Anime", "genres": [ @@ -15499,7 +15499,7 @@ { "id": "courtesy-of-zettai-karen-children-c-the-unlimited", "title": "Courtesy of Zettai Karen Children – The Unlimited – Kyosuk", - "mal_title": "Courtesy of Zettai Karen Children – The Unlimited – Kyosuk", + "mal_id": 16005, "poster": "https://aruppi.jeluchu.xyz/res/directory/895.jpg", "type": "Anime", "genres": [ @@ -15514,7 +15514,7 @@ { "id": "bakumatsu-gijinden-roman", "title": "Bakumatsu Gijinden Roman", - "mal_title": "Bakumatsu Gijinden Roman", + "mal_id": 16211, "poster": "https://aruppi.jeluchu.xyz/res/directory/896.jpg", "type": "Anime", "genres": [ @@ -15529,7 +15529,7 @@ { "id": "senran-kagura", "title": "Senran Kagura", - "mal_title": "Senran Kagura", + "mal_id": 15119, "poster": "https://aruppi.jeluchu.xyz/res/directory/897.jpg", "type": "Anime", "genres": [ @@ -15546,7 +15546,7 @@ { "id": "love-live", "title": "Love Live!", - "mal_title": "Love Live!", + "mal_id": 275, "poster": "https://aruppi.jeluchu.xyz/res/directory/898.jpg", "type": "Anime", "genres": [ @@ -15562,7 +15562,7 @@ { "id": "hakkenden-touhou-hakken-ibun", "title": "Hakkenden: touhou hakken ibun", - "mal_title": "Hakkenden: touhou hakken ibun", + "mal_id": 18055, "poster": "https://aruppi.jeluchu.xyz/res/directory/899.jpg", "type": "Anime", "genres": [ @@ -15579,7 +15579,7 @@ { "id": "senyu", "title": "Senyu", - "mal_title": "Senyu", + "mal_id": 15751, "poster": "https://aruppi.jeluchu.xyz/res/directory/900.jpg", "type": "Anime", "genres": [ @@ -15597,7 +15597,7 @@ { "id": "amnesia", "title": "Amnesia", - "mal_title": "Amnesia", + "mal_id": 15085, "poster": "https://aruppi.jeluchu.xyz/res/directory/901.jpg", "type": "Anime", "genres": [ @@ -15614,7 +15614,7 @@ { "id": "tamako-market", "title": "Tamako Market", - "mal_title": "Tamako Market", + "mal_id": 16417, "poster": "https://aruppi.jeluchu.xyz/res/directory/902.jpg", "type": "Anime", "genres": [ @@ -15629,7 +15629,7 @@ { "id": "gj-bu", "title": "GJ-bu", - "mal_title": "GJ-bu", + "mal_id": 14811, "poster": "https://aruppi.jeluchu.xyz/res/directory/903.jpg", "type": "Anime", "genres": [ @@ -15645,7 +15645,7 @@ { "id": "kotoura-san", "title": "Kotoura-san", - "mal_title": "Kotoura-san", + "mal_id": 15379, "poster": "https://aruppi.jeluchu.xyz/res/directory/904.jpg", "type": "Anime", "genres": [ @@ -15662,7 +15662,7 @@ { "id": "boku-wa-tomodachi-ga-sukunai-next", "title": "Boku wa Tomodachi ga Sukunai NEXT", - "mal_title": "Boku wa Tomodachi ga Sukunai NEXT", + "mal_id": 14967, "poster": "https://aruppi.jeluchu.xyz/res/directory/905.jpg", "type": "Anime", "genres": [ @@ -15681,7 +15681,7 @@ { "id": "sasami-sanganbaranai", "title": "Sasami-san@Ganbaranai", - "mal_title": "Sasami-san@Ganbaranai", + "mal_id": 14515, "poster": "https://aruppi.jeluchu.xyz/res/directory/906.jpg", "type": "Anime", "genres": [ @@ -15697,7 +15697,7 @@ { "id": "vividred-operation", "title": "Vividred Operation", - "mal_title": "Vividred Operation", + "mal_id": 14283, "poster": "https://aruppi.jeluchu.xyz/res/directory/907.jpg", "type": "Anime", "genres": [ @@ -15713,7 +15713,7 @@ { "id": "mondaiji-tachi-ga-isekai-kara-kuru-sou-desu-yo", "title": "Mondaiji-tachi ga Isekai kara Kuru Sou Desu yo?", - "mal_title": "Mondaiji-tachi ga Isekai kara Kuru Sou Desu yo?", + "mal_id": 15315, "poster": "https://aruppi.jeluchu.xyz/res/directory/908.jpg", "type": "Anime", "genres": [ @@ -15729,7 +15729,7 @@ { "id": "chihayafuru-second-season", "title": "Chihayafuru Second Season", - "mal_title": "Chihayafuru Second Season", + "mal_id": 28891, "poster": "https://aruppi.jeluchu.xyz/res/directory/909.jpg", "type": "Anime", "genres": [ @@ -15747,7 +15747,7 @@ { "id": "one-piece-episode-of-luffy-hand-island-no-bouk", "title": "One Piece: Episode of Luffy - Hand Island no Bouken", - "mal_title": "One Piece: Episode of Luffy - Hand Island no Bouken", + "mal_id": 16239, "poster": "https://aruppi.jeluchu.xyz/res/directory/910.jpg", "type": "Anime", "genres": [ @@ -15766,7 +15766,7 @@ { "id": "hagure-yuusha-no-estetica-hajirai-ippai", "title": "Hagure Yuusha no Estetica: Hajirai Ippai", - "mal_title": "Hagure Yuusha no Estetica: Hajirai Ippai", + "mal_id": 15729, "poster": "https://aruppi.jeluchu.xyz/res/directory/911.jpg", "type": "OVA", "genres": [ @@ -15781,7 +15781,7 @@ { "id": "kuroko-no-basket-ng-shu", "title": "Kuroko no basket NG-Shu", - "mal_title": "Kuroko no basket NG-Shu", + "mal_id": 15487, "poster": "https://aruppi.jeluchu.xyz/res/directory/912.jpg", "type": "Anime", "genres": [ @@ -15798,7 +15798,7 @@ { "id": "pokemon-best-wishes-kyurem-vs-seikenshi", "title": "Pokemon Best Wishes!: Kyurem vs. Seikenshi", - "mal_title": "Pokemon Best Wishes!: Kyurem vs. Seikenshi", + "mal_id": 12671, "poster": "https://aruppi.jeluchu.xyz/res/directory/913.jpg", "type": "Anime", "genres": [ @@ -15817,7 +15817,7 @@ { "id": "chokkyuu-hyoudai-robot-anime-straight-title", "title": "Chokkyuu Hyoudai Robot Anime: Straight Title", - "mal_title": "Chokkyuu Hyoudai Robot Anime: Straight Title", + "mal_id": 17127, "poster": "https://aruppi.jeluchu.xyz/res/directory/914.jpg", "type": "Anime", "genres": [ @@ -15832,7 +15832,7 @@ { "id": "hetalia-the-beautiful-world", "title": "Hetalia: The Beautiful World", - "mal_title": "Hetalia: The Beautiful World", + "mal_id": 15195, "poster": "https://aruppi.jeluchu.xyz/res/directory/915.jpg", "type": "Anime", "genres": [ @@ -15848,7 +15848,7 @@ { "id": "kissxsis-ova", "title": "Kissxsis OVA", - "mal_title": "Kissxsis OVA", + "mal_id": 5042, "poster": "https://aruppi.jeluchu.xyz/res/directory/916.jpg", "type": "OVA", "genres": [ @@ -15867,7 +15867,7 @@ { "id": "fairy-tail-houou-no-miko", "title": "Fairy Tail: Houou no Miko", - "mal_title": "Fairy Tail: Houou no Miko", + "mal_id": 12049, "poster": "https://aruppi.jeluchu.xyz/res/directory/917.jpg", "type": "Anime", "genres": [ @@ -15886,7 +15886,7 @@ { "id": "code-breaker-ova", "title": "Code:Breaker OVA", - "mal_title": "Code:Breaker OVA", + "mal_id": 15633, "poster": "https://aruppi.jeluchu.xyz/res/directory/918.jpg", "type": "OVA", "genres": [ @@ -15906,7 +15906,7 @@ { "id": "blood-c-the-last-dark", "title": "Blood-C: The Last Dark", - "mal_title": "Blood-C: The Last Dark", + "mal_id": 10681, "poster": "https://aruppi.jeluchu.xyz/res/directory/919.jpg", "type": "Película", "genres": [ @@ -15923,7 +15923,7 @@ { "id": "kagaku-na-yatsura", "title": "Kagaku na Yatsura", - "mal_title": "Kagaku na Yatsura", + "mal_id": 15391, "poster": "https://aruppi.jeluchu.xyz/res/directory/920.jpg", "type": "Anime", "genres": [ @@ -15942,7 +15942,7 @@ { "id": "nozoki-ana", "title": "Nozoki Ana", - "mal_title": "Nozoki Ana", + "mal_id": 17157, "poster": "https://aruppi.jeluchu.xyz/res/directory/921.jpg", "type": "OVA", "genres": [ @@ -15958,7 +15958,7 @@ { "id": "inuyasha-kanketsu-hen", "title": "Inuyasha Kanketsu-hen", - "mal_title": "Inuyasha Kanketsu-hen", + "mal_id": 6811, "poster": "https://aruppi.jeluchu.xyz/res/directory/922.jpg", "type": "Anime", "genres": [ @@ -15980,7 +15980,7 @@ { "id": "durarara", "title": "Durarara!!", - "mal_title": "Durarara!!", + "mal_id": 6746, "poster": "https://aruppi.jeluchu.xyz/res/directory/923.jpg", "type": "Anime", "genres": [ @@ -15996,7 +15996,7 @@ { "id": "pokemon", "title": "Pokemon", - "mal_title": "Pokemon", + "mal_id": 527, "poster": "https://aruppi.jeluchu.xyz/res/directory/924.jpg", "type": "Anime", "genres": [ @@ -16014,7 +16014,7 @@ { "id": "pokemon-advanced", "title": "Pokemon Advanced", - "mal_title": "Pokemon Advanced", + "mal_id": 1564, "poster": "https://aruppi.jeluchu.xyz/res/directory/925.jpg", "type": "Anime", "genres": [ @@ -16032,7 +16032,7 @@ { "id": "arve-rezzle-kikaijikake-no-yoseitachi", "title": "Arve Rezzle: Kikaijikake no Yoseitachi", - "mal_title": "Arve Rezzle: Kikaijikake no Yoseitachi", + "mal_id": 13863, "poster": "https://aruppi.jeluchu.xyz/res/directory/926.jpg", "type": "Anime", "genres": [ @@ -16050,7 +16050,7 @@ { "id": "digimon-tamers", "title": "Digimon Tamers", - "mal_title": "Digimon Tamers", + "mal_id": 874, "poster": "https://aruppi.jeluchu.xyz/res/directory/927.jpg", "type": "Anime", "genres": [ @@ -16068,7 +16068,7 @@ { "id": "digimon-frontier", "title": "Digimon Frontier", - "mal_title": "Digimon Frontier", + "mal_id": 1132, "poster": "https://aruppi.jeluchu.xyz/res/directory/928.jpg", "type": "Anime", "genres": [ @@ -16087,7 +16087,7 @@ { "id": "saint-onii-san", "title": "Saint Oniisan", - "mal_title": "Saint Oniisan", + "mal_id": 15775, "poster": "https://aruppi.jeluchu.xyz/res/directory/929.jpg", "type": "OVA", "genres": [ @@ -16103,7 +16103,7 @@ { "id": "rdg-red-data-girl", "title": "RDG Red Data Girl", - "mal_title": "RDG Red Data Girl", + "mal_id": 14921, "poster": "https://aruppi.jeluchu.xyz/res/directory/930.jpg", "type": "Anime", "genres": [ @@ -16118,7 +16118,7 @@ { "id": "zoids-zero", "title": "Zoids/ZERO", - "mal_title": "Zoids/ZERO", + "mal_id": 764, "poster": "https://aruppi.jeluchu.xyz/res/directory/931.jpg", "type": "Anime", "genres": [ @@ -16137,7 +16137,7 @@ { "id": "zoids-fuzors", "title": "Zoids: Fuzors", - "mal_title": "Zoids: Fuzors", + "mal_id": 1746, "poster": "https://aruppi.jeluchu.xyz/res/directory/932.jpg", "type": "Anime", "genres": [ @@ -16154,7 +16154,7 @@ { "id": "zoids-genesis", "title": "Zoids Genesis", - "mal_title": "Zoids Genesis", + "mal_id": 712, "poster": "https://aruppi.jeluchu.xyz/res/directory/933.jpg", "type": "Anime", "genres": [ @@ -16172,7 +16172,7 @@ { "id": "candy-candy", "title": "Candy Candy", - "mal_title": "Candy Candy", + "mal_id": 2800, "poster": "https://aruppi.jeluchu.xyz/res/directory/934.jpg", "type": "Anime", "genres": [ @@ -16188,7 +16188,7 @@ { "id": "robotech", "title": "Robotech", - "mal_title": "Robotech", + "mal_id": 46851, "poster": "https://aruppi.jeluchu.xyz/res/directory/935.jpg", "type": "Anime", "genres": [ @@ -16208,7 +16208,7 @@ { "id": "speed-racer", "title": "Speed Racer (Meteoro)", - "mal_title": "Speed Racer (Meteoro)", + "mal_id": 1445, "poster": "https://aruppi.jeluchu.xyz/res/directory/936.jpg", "type": "Anime", "genres": [ @@ -16225,7 +16225,7 @@ { "id": "cyclops-shoujo-saipu", "title": "Cyclops Shoujo Saipu", - "mal_title": "Cyclops Shoujo Saipu", + "mal_id": 17397, "poster": "https://aruppi.jeluchu.xyz/res/directory/937.jpg", "type": "Anime", "genres": [ @@ -16242,7 +16242,7 @@ { "id": "higurashi-no-naku-koroni-ni-kai", "title": "Higurashi no Naku Koroni Ni Kai", - "mal_title": "Higurashi no Naku Koroni Ni Kai", + "mal_id": 1889, "poster": "https://aruppi.jeluchu.xyz/res/directory/938.jpg", "type": "Anime", "genres": [ @@ -16259,7 +16259,7 @@ { "id": "mobile-suit-gundam-seed", "title": "Mobile Suit Gundam SEED", - "mal_title": "Mobile Suit Gundam SEED", + "mal_id": 93, "poster": "https://aruppi.jeluchu.xyz/res/directory/939.jpg", "type": "Anime", "genres": [ @@ -16279,7 +16279,7 @@ { "id": "mobile-suit-gundam-seed-destiny", "title": "Mobile Suit Gundam SEED Destiny", - "mal_title": "Mobile Suit Gundam SEED Destiny", + "mal_id": 94, "poster": "https://aruppi.jeluchu.xyz/res/directory/940.jpg", "type": "Anime", "genres": [ @@ -16299,7 +16299,7 @@ { "id": "medabots-damashii", "title": "Medabots Damashii", - "mal_title": "Medabots Damashii", + "mal_id": 4052, "poster": "https://aruppi.jeluchu.xyz/res/directory/941.jpg", "type": "Anime", "genres": [ @@ -16315,7 +16315,7 @@ { "id": "rurouni-kenshin", "title": "Rurouni Kenshin", - "mal_title": "Rurouni Kenshin", + "mal_id": 10334, "poster": "https://aruppi.jeluchu.xyz/res/directory/942.jpg", "type": "Anime", "genres": [ @@ -16334,7 +16334,7 @@ { "id": "carnival-phantasm-hibichika", "title": "Carnival Phantasm: HibiChika", - "mal_title": "Carnival Phantasm: HibiChika", + "mal_id": 15927, "poster": "https://aruppi.jeluchu.xyz/res/directory/943.jpg", "type": "Anime", "genres": [ @@ -16349,7 +16349,7 @@ { "id": "otona-joshi-no-anime-time-2", "title": "Otona Joshi no Anime Time 2", - "mal_title": "Otona Joshi no Anime Time 2", + "mal_id": 10178, "poster": "https://aruppi.jeluchu.xyz/res/directory/944.jpg", "type": "Anime", "genres": [ @@ -16365,7 +16365,7 @@ { "id": "hunter-x-hunter-ryodan", "title": "Hunter x Hunter OVA", - "mal_title": "Hunter x Hunter OVA", + "mal_id": 11061, "poster": "https://aruppi.jeluchu.xyz/res/directory/945.jpg", "type": "OVA", "genres": [ @@ -16382,7 +16382,7 @@ { "id": "hunter-x-hunter-greed-island", "title": "Hunter x Hunter: Greed Island", - "mal_title": "Hunter x Hunter: Greed Island", + "mal_id": 138, "poster": "https://aruppi.jeluchu.xyz/res/directory/946.jpg", "type": "OVA", "genres": [ @@ -16399,7 +16399,7 @@ { "id": "hunter-x-hunter-greed-island-final", "title": "Hunter x Hunter: Greed Island Final", - "mal_title": "Hunter x Hunter: Greed Island Final", + "mal_id": 139, "poster": "https://aruppi.jeluchu.xyz/res/directory/947.jpg", "type": "OVA", "genres": [ @@ -16416,7 +16416,7 @@ { "id": "yu-gi-oh-gx", "title": "Yu-Gi-Oh! GX", - "mal_title": "Yu-Gi-Oh! GX", + "mal_id": 550, "poster": "https://aruppi.jeluchu.xyz/res/directory/948.jpg", "type": "Anime", "genres": [ @@ -16434,7 +16434,7 @@ { "id": "yu-gi-oh-5ds", "title": "Yu-Gi-Oh! 5D's", - "mal_title": "Yu-Gi-Oh! 5D's", + "mal_id": 3972, "poster": "https://aruppi.jeluchu.xyz/res/directory/949.jpg", "type": "Anime", "genres": [ @@ -16450,7 +16450,7 @@ { "id": "mahou-shoujo-lyrical-nanoha-the-movie-2nd", "title": "Mahou Shoujo Lyrical Nanoha the Movie 2nd", - "mal_title": "Mahou Shoujo Lyrical Nanoha the Movie 2nd", + "mal_id": 10153, "poster": "https://aruppi.jeluchu.xyz/res/directory/950.jpg", "type": "Película", "genres": [ @@ -16468,7 +16468,7 @@ { "id": "zettai-karen-children", "title": "Zettai Karen Children", - "mal_title": "Zettai Karen Children", + "mal_id": 4038, "poster": "https://aruppi.jeluchu.xyz/res/directory/951.jpg", "type": "Anime", "genres": [ @@ -16485,7 +16485,7 @@ { "id": "oniai-specials", "title": "Onii-chan dakedo Ai Sae Areba Kankeinai yo ne! Specials", - "mal_title": "Onii-chan dakedo Ai Sae Areba Kankeinai yo ne! Specials", + "mal_id": 15881, "poster": "https://aruppi.jeluchu.xyz/res/directory/952.jpg", "type": "OVA", "genres": [ @@ -16500,7 +16500,7 @@ { "id": "magical-girl-lyrical-nanoha", "title": "Magical Girl Lyrical Nanoha", - "mal_title": "Magical Girl Lyrical Nanoha", + "mal_id": 76, "poster": "https://aruppi.jeluchu.xyz/res/directory/953.jpg", "type": "Anime", "genres": [ @@ -16518,7 +16518,7 @@ { "id": "magical-girl-lyrical-nanoha-as", "title": "Magical Girl Lyrical Nanoha A's", - "mal_title": "Magical Girl Lyrical Nanoha A's", + "mal_id": 77, "poster": "https://aruppi.jeluchu.xyz/res/directory/954.jpg", "type": "Anime", "genres": [ @@ -16536,7 +16536,7 @@ { "id": "magical-girl-lyrical-nanoha-strikers", "title": "Magical Girl Lyrical Nanoha StrikerS", - "mal_title": "Magical Girl Lyrical Nanoha StrikerS", + "mal_id": 1915, "poster": "https://aruppi.jeluchu.xyz/res/directory/955.jpg", "type": "Anime", "genres": [ @@ -16554,7 +16554,7 @@ { "id": "asura", "title": "Asura", - "mal_title": "Asura", + "mal_id": 8475, "poster": "https://aruppi.jeluchu.xyz/res/directory/956.jpg", "type": "Película", "genres": [ @@ -16569,7 +16569,7 @@ { "id": "date-a-live", "title": "Date A Live", - "mal_title": "Date A Live", + "mal_id": 15583, "poster": "https://aruppi.jeluchu.xyz/res/directory/957.jpg", "type": "Anime", "genres": [ @@ -16588,7 +16588,7 @@ { "id": "little-witch-academia", "title": "Little Witch Academia", - "mal_title": "Little Witch Academia", + "mal_id": 33489, "poster": "https://aruppi.jeluchu.xyz/res/directory/958.jpg", "type": "OVA", "genres": [ @@ -16606,7 +16606,7 @@ { "id": "initial-d-3", "title": "Initial D: Third Stage", - "mal_title": "Initial D: Third Stage", + "mal_id": 187, "poster": "https://aruppi.jeluchu.xyz/res/directory/959.jpg", "type": "Anime", "genres": [ @@ -16624,7 +16624,7 @@ { "id": "queens-blade-utsukushiki-toushi-tachi", "title": "Queen's Blade: Utsukushiki Toushi-tachi", - "mal_title": "Queen's Blade: Utsukushiki Toushi-tachi", + "mal_id": 8456, "poster": "https://aruppi.jeluchu.xyz/res/directory/960.jpg", "type": "OVA", "genres": [ @@ -16641,7 +16641,7 @@ { "id": "uta-no-prince-sama-maji-love-2000", "title": "Uta no Prince-sama: Maji Love 2000%", - "mal_title": "Uta no Prince-sama: Maji Love 2000%", + "mal_id": 12711, "poster": "https://aruppi.jeluchu.xyz/res/directory/961.jpg", "type": "Anime", "genres": [ @@ -16660,7 +16660,7 @@ { "id": "dansai-bunri-no-crime-edge", "title": "Dansai Bunri no Crime Edge", - "mal_title": "Dansai Bunri no Crime Edge", + "mal_id": 16355, "poster": "https://aruppi.jeluchu.xyz/res/directory/962.jpg", "type": "Anime", "genres": [ @@ -16677,7 +16677,7 @@ { "id": "karneval-tv", "title": "Karneval (TV)", - "mal_title": "Karneval (TV)", + "mal_id": 16035, "poster": "https://aruppi.jeluchu.xyz/res/directory/963.jpg", "type": "Anime", "genres": [ @@ -16695,7 +16695,7 @@ { "id": "naruto-shippuden-road-to-ninja", "title": "Naruto Shippuden: Road to Ninja", - "mal_title": "Naruto Shippuden: Road to Ninja", + "mal_id": 13667, "poster": "https://aruppi.jeluchu.xyz/res/directory/964.jpg", "type": "Película", "genres": [ @@ -16713,7 +16713,7 @@ { "id": "ginga-kikoutai-majestic-prince", "title": "Ginga Kikoutai Majestic Prince", - "mal_title": "Ginga Kikoutai Majestic Prince", + "mal_id": 15863, "poster": "https://aruppi.jeluchu.xyz/res/directory/965.jpg", "type": "Anime", "genres": [ @@ -16732,7 +16732,7 @@ { "id": "hataraku-maou-sama", "title": "Hataraku Maou-sama!", - "mal_title": "Hataraku Maou-sama!", + "mal_id": 15809, "poster": "https://aruppi.jeluchu.xyz/res/directory/966.jpg", "type": "Anime", "genres": [ @@ -16750,7 +16750,7 @@ { "id": "photo-kano", "title": "Photo Kano", - "mal_title": "Photo Kano", + "mal_id": 16397, "poster": "https://aruppi.jeluchu.xyz/res/directory/967.jpg", "type": "Anime", "genres": [ @@ -16766,7 +16766,7 @@ { "id": "devil-survivor-2-the-animation", "title": "Devil Survivor 2 The Animation", - "mal_title": "Devil Survivor 2 The Animation", + "mal_id": 16512, "poster": "https://aruppi.jeluchu.xyz/res/directory/968.jpg", "type": "Anime", "genres": [ @@ -16782,7 +16782,7 @@ { "id": "yahari-ore-no-seishun-love-come-wa-machigatteiru", "title": "Yahari Ore no Seishun Love Come wa Machigatteiru", - "mal_title": "Yahari Ore no Seishun Love Come wa Machigatteiru", + "mal_id": 14813, "poster": "https://aruppi.jeluchu.xyz/res/directory/969.jpg", "type": "Anime", "genres": [ @@ -16799,7 +16799,7 @@ { "id": "death-billiards", "title": "Death Billiards", - "mal_title": "Death Billiards", + "mal_id": 14353, "poster": "https://aruppi.jeluchu.xyz/res/directory/970.jpg", "type": "OVA", "genres": [ @@ -16817,7 +16817,7 @@ { "id": "vassalord", "title": "Vassalord", - "mal_title": "Vassalord", + "mal_id": 15933, "poster": "https://aruppi.jeluchu.xyz/res/directory/971.jpg", "type": "OVA", "genres": [ @@ -16837,7 +16837,7 @@ { "id": "aku-no-hana", "title": "Aku no Hana", - "mal_title": "Aku no Hana", + "mal_id": 16201, "poster": "https://aruppi.jeluchu.xyz/res/directory/972.jpg", "type": "Anime", "genres": [ @@ -16854,7 +16854,7 @@ { "id": "hyakka-ryouran-samurai-bride", "title": "Hyakka Ryouran: Samurai Bride", - "mal_title": "Hyakka Ryouran: Samurai Bride", + "mal_id": 15377, "poster": "https://aruppi.jeluchu.xyz/res/directory/973.jpg", "type": "Anime", "genres": [ @@ -16873,7 +16873,7 @@ { "id": "girls-und-panzer-especials", "title": "Girls Und Panzer Especiales", - "mal_title": "Girls Und Panzer Especiales", + "mal_id": 15811, "poster": "https://aruppi.jeluchu.xyz/res/directory/974.jpg", "type": "OVA", "genres": [ @@ -16888,7 +16888,7 @@ { "id": "zettai-boei-leviathan", "title": "Zettai Boei Leviathan", - "mal_title": "Zettai Boei Leviathan", + "mal_id": 17681, "poster": "https://aruppi.jeluchu.xyz/res/directory/975.jpg", "type": "Anime", "genres": [ @@ -16904,7 +16904,7 @@ { "id": "ore-no-imouto-ga-konnani-kawaii-wake-ga-nai-2", "title": "Ore No Imouto Ga Konnani Kawaii Wake Ga Nai 2", - "mal_title": "Ore No Imouto Ga Konnani Kawaii Wake Ga Nai 2", + "mal_id": 8769, "poster": "https://aruppi.jeluchu.xyz/res/directory/976.jpg", "type": "Anime", "genres": [ @@ -16921,7 +16921,7 @@ { "id": "namiuchigiwa-no-muromi-san", "title": "Namiuchigiwa no Muromi-san", - "mal_title": "Namiuchigiwa no Muromi-san", + "mal_id": 16910, "poster": "https://aruppi.jeluchu.xyz/res/directory/977.jpg", "type": "Anime", "genres": [ @@ -16937,7 +16937,7 @@ { "id": "danball-senki-wars", "title": "Danball Senki Wars", - "mal_title": "Danball Senki Wars", + "mal_id": 17917, "poster": "https://aruppi.jeluchu.xyz/res/directory/978.jpg", "type": "Anime", "genres": [ @@ -16953,7 +16953,7 @@ { "id": "shingeki-no-kyojin", "title": "Shingeki no Kyojin", - "mal_title": "Shingeki no Kyojin", + "mal_id": 16498, "poster": "https://aruppi.jeluchu.xyz/res/directory/979.jpg", "type": "Anime", "genres": [ @@ -16971,7 +16971,7 @@ { "id": "yondemasu-yo-azazel-san-2", "title": "Yondemasu yo, Azazel-san 2", - "mal_title": "Yondemasu yo, Azazel-san 2", + "mal_id": 10216, "poster": "https://aruppi.jeluchu.xyz/res/directory/980.jpg", "type": "Anime", "genres": [ @@ -16987,7 +16987,7 @@ { "id": "suisei-no-gargantia", "title": "Suisei no Gargantia", - "mal_title": "Suisei no Gargantia", + "mal_id": 16524, "poster": "https://aruppi.jeluchu.xyz/res/directory/981.jpg", "type": "Anime", "genres": [ @@ -17004,7 +17004,7 @@ { "id": "haiyore-nyaruko-san-w", "title": "Haiyore! Nyaruko-san W", - "mal_title": "Haiyore! Nyaruko-san W", + "mal_id": 15699, "poster": "https://aruppi.jeluchu.xyz/res/directory/982.jpg", "type": "Anime", "genres": [ @@ -17020,7 +17020,7 @@ { "id": "hakuouki-sekkaroku", "title": "Hakuouki: Sekkaroku", - "mal_title": "Hakuouki: Sekkaroku", + "mal_id": 10350, "poster": "https://aruppi.jeluchu.xyz/res/directory/983.jpg", "type": "OVA", "genres": [ @@ -17039,7 +17039,7 @@ { "id": "mushibugyo", "title": "Mushibugyo", - "mal_title": "Mushibugyo", + "mal_id": 17505, "poster": "https://aruppi.jeluchu.xyz/res/directory/984.jpg", "type": "Anime", "genres": [ @@ -17059,7 +17059,7 @@ { "id": "hayate-no-gotoku-cuties", "title": "Hayate no Gotoku! Cuties", - "mal_title": "Hayate no Gotoku! Cuties", + "mal_id": 16982, "poster": "https://aruppi.jeluchu.xyz/res/directory/985.jpg", "type": "Anime", "genres": [ @@ -17077,7 +17077,7 @@ { "id": "arata-kangatari", "title": "Arata Kangatari", - "mal_title": "Arata Kangatari", + "mal_id": 16518, "poster": "https://aruppi.jeluchu.xyz/res/directory/986.jpg", "type": "Anime", "genres": [ @@ -17093,7 +17093,7 @@ { "id": "jojos-bizarre-adventure", "title": "JoJo's Bizarre Adventure", - "mal_title": "JoJo's Bizarre Adventure", + "mal_id": 665, "poster": "https://aruppi.jeluchu.xyz/res/directory/987.jpg", "type": "OVA", "genres": [ @@ -17113,7 +17113,7 @@ { "id": "sparrows-hotel", "title": "Sparrow's Hotel", - "mal_title": "Sparrow's Hotel", + "mal_id": 17849, "poster": "https://aruppi.jeluchu.xyz/res/directory/988.jpg", "type": "Anime", "genres": [ @@ -17127,7 +17127,7 @@ { "id": "toriko-x-one-piece-x-dragon-ball-z-crossover", "title": "Toriko x One Piece x Dragon Ball Z Crossover", - "mal_title": "Toriko x One Piece x Dragon Ball Z Crossover", + "mal_id": 10033, "poster": "https://aruppi.jeluchu.xyz/res/directory/989.jpg", "type": "Anime", "genres": [ @@ -17141,7 +17141,7 @@ { "id": "aiura", "title": "Aiura", - "mal_title": "Aiura", + "mal_id": 17082, "poster": "https://aruppi.jeluchu.xyz/res/directory/990.jpg", "type": "Anime", "genres": [ @@ -17158,7 +17158,7 @@ { "id": "yuyushiki", "title": "Yuyushiki", - "mal_title": "Yuyushiki", + "mal_id": 15911, "poster": "https://aruppi.jeluchu.xyz/res/directory/991.jpg", "type": "Anime", "genres": [ @@ -17175,7 +17175,7 @@ { "id": "valvrave-the-liberator", "title": "Valvrave the Liberator", - "mal_title": "Valvrave the Liberator", + "mal_id": 16668, "poster": "https://aruppi.jeluchu.xyz/res/directory/992.jpg", "type": "Anime", "genres": [ @@ -17191,7 +17191,7 @@ { "id": "toaru-kagaku-no-railgun-s", "title": "Toaru Kagaku no Railgun S", - "mal_title": "Toaru Kagaku no Railgun S", + "mal_id": 16049, "poster": "https://aruppi.jeluchu.xyz/res/directory/993.jpg", "type": "Anime", "genres": [ @@ -17207,7 +17207,7 @@ { "id": "hentai-ouji-to-warawanai-neko", "title": "Hentai Ouji to Warawanai Neko", - "mal_title": "Hentai Ouji to Warawanai Neko", + "mal_id": 15225, "poster": "https://aruppi.jeluchu.xyz/res/directory/994.jpg", "type": "Anime", "genres": [ @@ -17226,7 +17226,7 @@ { "id": "one-piece-film-z", "title": "One Piece Film Z", - "mal_title": "One Piece Film Z", + "mal_id": 12859, "poster": "https://aruppi.jeluchu.xyz/res/directory/995.jpg", "type": "Película", "genres": [ @@ -17245,7 +17245,7 @@ { "id": "toshokan-sensou-kakumei-no-tsubasa", "title": "Toshokan Sensou: Kakumei no Tsubasa", - "mal_title": "Toshokan Sensou: Kakumei no Tsubasa", + "mal_id": 11001, "poster": "https://aruppi.jeluchu.xyz/res/directory/996.jpg", "type": "Película", "genres": [ @@ -17262,7 +17262,7 @@ { "id": "sket-dance-ova", "title": "SKET Dance OVA", - "mal_title": "SKET Dance OVA", + "mal_id": 9863, "poster": "https://aruppi.jeluchu.xyz/res/directory/997.jpg", "type": "OVA", "genres": [ @@ -17278,7 +17278,7 @@ { "id": "evangelion-30-you-can-not-redo", "title": "Evangelion: 3.0 You Can (Not) Redo", - "mal_title": "Evangelion: 3.0 You Can (Not) Redo", + "mal_id": 3785, "poster": "https://aruppi.jeluchu.xyz/res/directory/998.jpg", "type": "Película", "genres": [ @@ -17294,7 +17294,7 @@ { "id": "iron-man-rise-of-technovore", "title": "Iron Man: Rise of Technovore", - "mal_title": "Iron Man: Rise of Technovore", + "mal_id": 15847, "poster": "https://aruppi.jeluchu.xyz/res/directory/999.jpg", "type": "OVA", "genres": [ @@ -17309,7 +17309,7 @@ { "id": "miyakawa-ke-no-kuufuku", "title": "Miyakawa-ke no Kuufuku", - "mal_title": "Miyakawa-ke no Kuufuku", + "mal_id": 17637, "poster": "https://aruppi.jeluchu.xyz/res/directory/1000.jpg", "type": "OVA", "genres": [ @@ -17323,7 +17323,7 @@ { "id": "busou-shinki-moon-angel", "title": "Busou Shinki Moon Angel", - "mal_title": "Busou Shinki Moon Angel", + "mal_id": 11103, "poster": "https://aruppi.jeluchu.xyz/res/directory/1001.jpg", "type": "OVA", "genres": [ @@ -17338,7 +17338,7 @@ { "id": "inazuma-eleven-go-galaxy", "title": "Inazuma Eleven Go: Galaxy", - "mal_title": "Inazuma Eleven Go: Galaxy", + "mal_id": 18097, "poster": "https://aruppi.jeluchu.xyz/res/directory/1002.jpg", "type": "Anime", "genres": [ @@ -17354,7 +17354,7 @@ { "id": "haiyore-nyaruko-san-yasashii-teki-no-shitome-ka", "title": "Haiyore! Nyaruko-san: Yasashii Teki no Shitome-kata", - "mal_title": "Haiyore! Nyaruko-san: Yasashii Teki no Shitome-kata", + "mal_id": 18713, "poster": "https://aruppi.jeluchu.xyz/res/directory/1003.jpg", "type": "OVA", "genres": [ @@ -17370,7 +17370,7 @@ { "id": "nurarihyon-no-mago-ova", "title": "Nurarihyon no Mago OVA", - "mal_title": "Nurarihyon no Mago OVA", + "mal_id": 15959, "poster": "https://aruppi.jeluchu.xyz/res/directory/1004.jpg", "type": "OVA", "genres": [ @@ -17387,7 +17387,7 @@ { "id": "kotonoha-no-niwa", "title": "Kotonoha no Niwa", - "mal_title": "Kotonoha no Niwa", + "mal_id": 16782, "poster": "https://aruppi.jeluchu.xyz/res/directory/1005.jpg", "type": "Película", "genres": [ @@ -17404,7 +17404,7 @@ { "id": "monogatari-series-second-season", "title": "Monogatari Series: Second Season", - "mal_title": "Monogatari Series: Second Season", + "mal_id": 17074, "poster": "https://aruppi.jeluchu.xyz/res/directory/1006.jpg", "type": "Anime", "genres": [ @@ -17422,7 +17422,7 @@ { "id": "free", "title": "Free!", - "mal_title": "Free!", + "mal_id": 18507, "poster": "https://aruppi.jeluchu.xyz/res/directory/1007.jpg", "type": "Anime", "genres": [ @@ -17439,7 +17439,7 @@ { "id": "kami-nomi-zo-shiru-sekai-megami-hen", "title": "Kami Nomi zo Shiru Sekai: Megami-Hen", - "mal_title": "Kami Nomi zo Shiru Sekai: Megami-Hen", + "mal_id": 16706, "poster": "https://aruppi.jeluchu.xyz/res/directory/1008.jpg", "type": "Anime", "genres": [ @@ -17457,7 +17457,7 @@ { "id": "high-school-dxd-new", "title": "High School DxD New", - "mal_title": "High School DxD New", + "mal_id": 15451, "poster": "https://aruppi.jeluchu.xyz/res/directory/1009.jpg", "type": "Anime", "genres": [ @@ -17477,7 +17477,7 @@ { "id": "watamote", "title": "Watamote!", - "mal_title": "Watamote!", + "mal_id": 16742, "poster": "https://aruppi.jeluchu.xyz/res/directory/1010.jpg", "type": "Anime", "genres": [ @@ -17494,7 +17494,7 @@ { "id": "choujigen-game-neptune-animation", "title": "Choujigen Game Neptune The Animation", - "mal_title": "Choujigen Game Neptune The Animation", + "mal_id": 16157, "poster": "https://aruppi.jeluchu.xyz/res/directory/1011.jpg", "type": "Anime", "genres": [ @@ -17513,7 +17513,7 @@ { "id": "high-school-dxd-ova", "title": "High School DxD OVA", - "mal_title": "High School DxD OVA", + "mal_id": 12729, "poster": "https://aruppi.jeluchu.xyz/res/directory/1012.jpg", "type": "OVA", "genres": [ @@ -17531,7 +17531,7 @@ { "id": "gungrave", "title": "Gungrave", - "mal_title": "Gungrave", + "mal_id": 267, "poster": "https://aruppi.jeluchu.xyz/res/directory/1013.jpg", "type": "Anime", "genres": [ @@ -17549,7 +17549,7 @@ { "id": "009-recyborg-2012", "title": "009 Re:Cyborg (2012)", - "mal_title": "009 Re:Cyborg (2012)", + "mal_id": 11755, "poster": "https://aruppi.jeluchu.xyz/res/directory/1014.jpg", "type": "Película", "genres": [ @@ -17566,7 +17566,7 @@ { "id": "nerawareta-gakuen", "title": "Nerawareta Gakuen", - "mal_title": "Nerawareta Gakuen", + "mal_id": 14293, "poster": "https://aruppi.jeluchu.xyz/res/directory/1015.jpg", "type": "Película", "genres": [ @@ -17582,7 +17582,7 @@ { "id": "kingdom-2", "title": "Kingdom 2", - "mal_title": "Kingdom 2", + "mal_id": 12031, "poster": "https://aruppi.jeluchu.xyz/res/directory/1016.jpg", "type": "Anime", "genres": [ @@ -17599,7 +17599,7 @@ { "id": "ryo", "title": "Ryo", - "mal_title": "Ryo", + "mal_id": 14347, "poster": "https://aruppi.jeluchu.xyz/res/directory/1017.jpg", "type": "OVA", "genres": [ @@ -17616,7 +17616,7 @@ { "id": "queens-blade-vanquished", "title": "Queen's Blade: Vanquished", - "mal_title": "Queen's Blade: Vanquished", + "mal_id": 16363, "poster": "https://aruppi.jeluchu.xyz/res/directory/1018.jpg", "type": "OVA", "genres": [ @@ -17633,7 +17633,7 @@ { "id": "elemental-gelade", "title": "Elemental Gelade", - "mal_title": "Elemental Gelade", + "mal_id": 1250, "poster": "https://aruppi.jeluchu.xyz/res/directory/1019.jpg", "type": "Anime", "genres": [ @@ -17652,7 +17652,7 @@ { "id": "afro-samurai-resurrection", "title": "Afro Samurai: Resurrection", - "mal_title": "Afro Samurai: Resurrection", + "mal_id": 4970, "poster": "https://aruppi.jeluchu.xyz/res/directory/1020.jpg", "type": "Película", "genres": [ @@ -17668,7 +17668,7 @@ { "id": "berserk", "title": "Berserk", - "mal_title": "Berserk", + "mal_id": 32379, "poster": "https://aruppi.jeluchu.xyz/res/directory/1021.jpg", "type": "Anime", "genres": [ @@ -17691,7 +17691,7 @@ { "id": "giant-killing", "title": "Giant Killing", - "mal_title": "Giant Killing", + "mal_id": 7661, "poster": "https://aruppi.jeluchu.xyz/res/directory/1022.jpg", "type": "Anime", "genres": [ @@ -17707,7 +17707,7 @@ { "id": "chuunibyou-demo-koi-ga-shitai-kirameki", "title": "Chuunibyou Demo Koi ga Shitai!: Kirameki no... Slapstick Noe", - "mal_title": "Chuunibyou Demo Koi ga Shitai!: Kirameki no... Slapstick Noe", + "mal_id": 16934, "poster": "https://aruppi.jeluchu.xyz/res/directory/1023.jpg", "type": "OVA", "genres": [ @@ -17722,7 +17722,7 @@ { "id": "ro-kyu-bu-tomoka-no-ichigo-sundae", "title": "Ro-Kyu-Bu!: Tomoka no Ichigo Sundae", - "mal_title": "Ro-Kyu-Bu!: Tomoka no Ichigo Sundae", + "mal_id": 15807, "poster": "https://aruppi.jeluchu.xyz/res/directory/1024.jpg", "type": "OVA", "genres": [ @@ -17739,7 +17739,7 @@ { "id": "berserk-ougon-jidaihen-iii-kourin", "title": "Berserk Ougon Jidaihen III: Kourin", - "mal_title": "Berserk Ougon Jidaihen III: Kourin", + "mal_id": 12115, "poster": "https://aruppi.jeluchu.xyz/res/directory/1025.jpg", "type": "Película", "genres": [ @@ -17761,7 +17761,7 @@ { "id": "ghost-in-the-shell-arise", "title": "Ghost in the Shell: Arise", - "mal_title": "Ghost in the Shell: Arise", + "mal_id": 17187, "poster": "https://aruppi.jeluchu.xyz/res/directory/1026.jpg", "type": "Película", "genres": [ @@ -17778,7 +17778,7 @@ { "id": "mirai-nikki-redial", "title": "Mirai Nikki Redial", - "mal_title": "Mirai Nikki Redial", + "mal_id": 16762, "poster": "https://aruppi.jeluchu.xyz/res/directory/1027.jpg", "type": "OVA", "genres": [ @@ -17795,7 +17795,7 @@ { "id": "especial-ebiten-kritsu-ebisugawa-kk-tenmon", "title": "Especial Ebiten: Kōritsu Ebisugawa Kōkō Tenmonbu", - "mal_title": "Especial Ebiten: Kōritsu Ebisugawa Kōkō Tenmonbu", + "mal_id": 14889, "poster": "https://aruppi.jeluchu.xyz/res/directory/1028.jpg", "type": "OVA", "genres": [ @@ -17813,7 +17813,7 @@ { "id": "inu-to-hasami-wa-tsukaiyou", "title": "Inu to Hasami wa Tsukaiyou", - "mal_title": "Inu to Hasami wa Tsukaiyou", + "mal_id": 17831, "poster": "https://aruppi.jeluchu.xyz/res/directory/1029.jpg", "type": "Anime", "genres": [ @@ -17828,7 +17828,7 @@ { "id": "gifu-dodo-kanetsugu-and-keiji", "title": "Gifu Dodo!! Kanetsugu and Keiji", - "mal_title": "Gifu Dodo!! Kanetsugu and Keiji", + "mal_id": 18771, "poster": "https://aruppi.jeluchu.xyz/res/directory/1030.jpg", "type": "Anime", "genres": [ @@ -17846,7 +17846,7 @@ { "id": "kamisama-no-inai-nichiyoubi", "title": "Kamisama no Inai Nichiyoubi", - "mal_title": "Kamisama no Inai Nichiyoubi", + "mal_id": 16009, "poster": "https://aruppi.jeluchu.xyz/res/directory/1031.jpg", "type": "Anime", "genres": [ @@ -17861,7 +17861,7 @@ { "id": "brothers-conflict", "title": "Brothers Conflict", - "mal_title": "Brothers Conflict", + "mal_id": 15605, "poster": "https://aruppi.jeluchu.xyz/res/directory/1032.jpg", "type": "Anime", "genres": [ @@ -17877,7 +17877,7 @@ { "id": "senyu-dai-2-ki", "title": "Senyu Dai 2 Ki", - "mal_title": "Senyu Dai 2 Ki", + "mal_id": 18523, "poster": "https://aruppi.jeluchu.xyz/res/directory/1033.jpg", "type": "Anime", "genres": [ @@ -17895,7 +17895,7 @@ { "id": "magicalstar-kanon-100", "title": "Magical☆Star Kanon 100%", - "mal_title": "Magical☆Star Kanon 100%", + "mal_id": 17725, "poster": "https://aruppi.jeluchu.xyz/res/directory/1034.jpg", "type": "OVA", "genres": [ @@ -17911,7 +17911,7 @@ { "id": "tamayura-more-aggressive", "title": "Tamayura - More Aggressive", - "mal_title": "Tamayura - More Aggressive", + "mal_id": 15731, "poster": "https://aruppi.jeluchu.xyz/res/directory/1035.jpg", "type": "Anime", "genres": [ @@ -17927,7 +17927,7 @@ { "id": "servant-x-service", "title": "Servant x Service", - "mal_title": "Servant x Service", + "mal_id": 18119, "poster": "https://aruppi.jeluchu.xyz/res/directory/1036.jpg", "type": "Anime", "genres": [ @@ -17942,7 +17942,7 @@ { "id": "kitakubu-katsudou-kiroku", "title": "Kitakubu Katsudou Kiroku", - "mal_title": "Kitakubu Katsudou Kiroku", + "mal_id": 18495, "poster": "https://aruppi.jeluchu.xyz/res/directory/1037.jpg", "type": "Anime", "genres": [ @@ -17958,7 +17958,7 @@ { "id": "senki-zesshou-symphogear-g", "title": "Senki Zesshou Symphogear G", - "mal_title": "Senki Zesshou Symphogear G", + "mal_id": 15793, "poster": "https://aruppi.jeluchu.xyz/res/directory/1038.jpg", "type": "Anime", "genres": [ @@ -17974,7 +17974,7 @@ { "id": "love-lab", "title": "Love Lab", - "mal_title": "Love Lab", + "mal_id": 16353, "poster": "https://aruppi.jeluchu.xyz/res/directory/1039.jpg", "type": "Anime", "genres": [ @@ -17990,7 +17990,7 @@ { "id": "danganronpa-the-animation", "title": "Danganronpa The Animation", - "mal_title": "Danganronpa The Animation", + "mal_id": 16592, "poster": "https://aruppi.jeluchu.xyz/res/directory/1040.jpg", "type": "Anime", "genres": [ @@ -18007,7 +18007,7 @@ { "id": "rozen-maiden-2013", "title": "Rozen Maiden (2013)", - "mal_title": "Rozen Maiden (2013)", + "mal_id": 18041, "poster": "https://aruppi.jeluchu.xyz/res/directory/1041.jpg", "type": "Anime", "genres": [ @@ -18025,7 +18025,7 @@ { "id": "stella-jogakuin-koutouka-c3-bu", "title": "Stella Jogakuin Koutouka C3-bu", - "mal_title": "Stella Jogakuin Koutouka C3-bu", + "mal_id": 17821, "poster": "https://aruppi.jeluchu.xyz/res/directory/1042.jpg", "type": "Anime", "genres": [ @@ -18041,7 +18041,7 @@ { "id": "one-piece-glorious-island", "title": "One Piece: Glorious Island", - "mal_title": "One Piece: Glorious Island", + "mal_id": 16468, "poster": "https://aruppi.jeluchu.xyz/res/directory/1043.jpg", "type": "OVA", "genres": [ @@ -18060,7 +18060,7 @@ { "id": "genei-wo-kakeru-taiyou", "title": "Genei wo Kakeru Taiyou", - "mal_title": "Genei wo Kakeru Taiyou", + "mal_id": 17651, "poster": "https://aruppi.jeluchu.xyz/res/directory/1044.jpg", "type": "Anime", "genres": [ @@ -18074,7 +18074,7 @@ { "id": "fatekaleid-liner-prisma-illya", "title": "Fate/kaleid liner Prisma Illya", - "mal_title": "Fate/kaleid liner Prisma Illya", + "mal_id": 14829, "poster": "https://aruppi.jeluchu.xyz/res/directory/1045.jpg", "type": "Anime", "genres": [ @@ -18091,7 +18091,7 @@ { "id": "kiniro-mosaic", "title": "Kiniro Mosaic", - "mal_title": "Kiniro Mosaic", + "mal_id": 16732, "poster": "https://aruppi.jeluchu.xyz/res/directory/1046.jpg", "type": "Anime", "genres": [ @@ -18107,7 +18107,7 @@ { "id": "genshiken-nidaime", "title": "Genshiken Nidaime", - "mal_title": "Genshiken Nidaime", + "mal_id": 18465, "poster": "https://aruppi.jeluchu.xyz/res/directory/1047.jpg", "type": "Anime", "genres": [ @@ -18123,7 +18123,7 @@ { "id": "seitokai-no-shukujitsu", "title": "Seitokai no Shukujitsu", - "mal_title": "Seitokai no Shukujitsu", + "mal_id": 10119, "poster": "https://aruppi.jeluchu.xyz/res/directory/1048.jpg", "type": "OVA", "genres": [ @@ -18140,7 +18140,7 @@ { "id": "ro-kyu-bu-ss", "title": "Ro-Kyu-Bu! SS", - "mal_title": "Ro-Kyu-Bu! SS", + "mal_id": 16051, "poster": "https://aruppi.jeluchu.xyz/res/directory/1049.jpg", "type": "Anime", "genres": [ @@ -18157,7 +18157,7 @@ { "id": "teekyuu-2", "title": "Teekyuu 2", - "mal_title": "Teekyuu 2", + "mal_id": 18121, "poster": "https://aruppi.jeluchu.xyz/res/directory/1050.jpg", "type": "Anime", "genres": [ @@ -18174,7 +18174,7 @@ { "id": "uchouten-kazoku", "title": "Uchouten Kazoku", - "mal_title": "Uchouten Kazoku", + "mal_id": 17909, "poster": "https://aruppi.jeluchu.xyz/res/directory/1051.jpg", "type": "Anime", "genres": [ @@ -18191,7 +18191,7 @@ { "id": "makai-ouji-devils-and-realist", "title": "Makai Ouji: Devils and Realist", - "mal_title": "Makai Ouji: Devils and Realist", + "mal_id": 16890, "poster": "https://aruppi.jeluchu.xyz/res/directory/1052.jpg", "type": "Anime", "genres": [ @@ -18212,7 +18212,7 @@ { "id": "blood-lad", "title": "Blood Lad", - "mal_title": "Blood Lad", + "mal_id": 11633, "poster": "https://aruppi.jeluchu.xyz/res/directory/1053.jpg", "type": "Anime", "genres": [ @@ -18231,7 +18231,7 @@ { "id": "fantasista-doll", "title": "Fantasista Doll", - "mal_title": "Fantasista Doll", + "mal_id": 15883, "poster": "https://aruppi.jeluchu.xyz/res/directory/1054.jpg", "type": "Anime", "genres": [ @@ -18247,7 +18247,7 @@ { "id": "hakkenden-touhou-hakken-ibun-2", "title": "Hakkenden: Touhou Hakken Ibun 2", - "mal_title": "Hakkenden: Touhou Hakken Ibun 2", + "mal_id": 18055, "poster": "https://aruppi.jeluchu.xyz/res/directory/1055.jpg", "type": "Anime", "genres": [ @@ -18264,7 +18264,7 @@ { "id": "recorder-and-randsell-mi", "title": "Recorder and Randsell Mi", - "mal_title": "Recorder and Randsell Mi", + "mal_id": 18099, "poster": "https://aruppi.jeluchu.xyz/res/directory/1056.jpg", "type": "Anime", "genres": [ @@ -18281,7 +18281,7 @@ { "id": "rescue-me", "title": "Rescue Me!", - "mal_title": "Rescue Me!", + "mal_id": 18039, "poster": "https://aruppi.jeluchu.xyz/res/directory/1057.jpg", "type": "OVA", "genres": [ @@ -18297,7 +18297,7 @@ { "id": "gin-no-saji", "title": "Gin no Saji", - "mal_title": "Gin no Saji", + "mal_id": 16918, "poster": "https://aruppi.jeluchu.xyz/res/directory/1058.jpg", "type": "Anime", "genres": [ @@ -18314,7 +18314,7 @@ { "id": "gatchaman-crowds", "title": "Gatchaman Crowds", - "mal_title": "Gatchaman Crowds", + "mal_id": 18229, "poster": "https://aruppi.jeluchu.xyz/res/directory/1059.jpg", "type": "Anime", "genres": [ @@ -18329,7 +18329,7 @@ { "id": "ao-no-exorcist-movie", "title": "Ao no Exorcist (Movie)", - "mal_title": "Ao no Exorcist (Movie)", + "mal_id": 11737, "poster": "https://aruppi.jeluchu.xyz/res/directory/1060.jpg", "type": "Película", "genres": [ @@ -18347,7 +18347,7 @@ { "id": "magic-tree-house", "title": "Magic Tree House", - "mal_title": "Magic Tree House", + "mal_id": 10690, "poster": "https://aruppi.jeluchu.xyz/res/directory/1061.jpg", "type": "Película", "genres": [ @@ -18362,7 +18362,7 @@ { "id": "kimi-no-iru-machi", "title": "Kimi no Iru Machi", - "mal_title": "Kimi no Iru Machi", + "mal_id": 17741, "poster": "https://aruppi.jeluchu.xyz/res/directory/1062.jpg", "type": "Anime", "genres": [ @@ -18378,7 +18378,7 @@ { "id": "futari-wa-milky-holmes", "title": "Futari wa Milky Holmes", - "mal_title": "Futari wa Milky Holmes", + "mal_id": 17267, "poster": "https://aruppi.jeluchu.xyz/res/directory/1063.jpg", "type": "Anime", "genres": [ @@ -18394,7 +18394,7 @@ { "id": "xxxholic-rou-adayume", "title": "xxxHOLiC・Rou Adayume", - "mal_title": "xxxHOLiC・Rou Adayume", + "mal_id": 6864, "poster": "https://aruppi.jeluchu.xyz/res/directory/1064.jpg", "type": "Anime", "genres": [ @@ -18409,7 +18409,7 @@ { "id": "yami-shibai", "title": "Yami Shibai", - "mal_title": "Yami Shibai", + "mal_id": 19383, "poster": "https://aruppi.jeluchu.xyz/res/directory/1065.jpg", "type": "Anime", "genres": [ @@ -18425,7 +18425,7 @@ { "id": "pocket-monster-el-despertar-de-mewtwo", "title": "Pokemon: El Despertar de Mewtwo", - "mal_title": "Pokemon: El Despertar de Mewtwo", + "mal_id": 528, "poster": "https://aruppi.jeluchu.xyz/res/directory/1066.jpg", "type": "Película", "genres": [ @@ -18443,7 +18443,7 @@ { "id": "mahou-shoujo-madoka-magica-zenpen", "title": "Gekijouban Mahou Shoujo Madoka Magica (Zenpen) - Hajimari no Monogatari", - "mal_title": "Gekijouban Mahou Shoujo Madoka Magica (Zenpen) - Hajimari no Monogatari", + "mal_id": 11977, "poster": "https://aruppi.jeluchu.xyz/res/directory/1067.jpg", "type": "Película", "genres": [ @@ -18460,7 +18460,7 @@ { "id": "mahou-shoujo-madoka-magica-kouhen", "title": "Gekijouban Mahou Shoujo Madoka Magica (Kouhen) - Eien no Monogatari", - "mal_title": "Gekijouban Mahou Shoujo Madoka Magica (Kouhen) - Eien no Monogatari", + "mal_id": 11979, "poster": "https://aruppi.jeluchu.xyz/res/directory/1068.jpg", "type": "Película", "genres": [ @@ -18477,7 +18477,7 @@ { "id": "pretty-rhythm-rainbow-live", "title": "Pretty Rhythm: Rainbow Live", - "mal_title": "Pretty Rhythm: Rainbow Live", + "mal_id": 17249, "poster": "https://aruppi.jeluchu.xyz/res/directory/1069.jpg", "type": "Anime", "genres": [ @@ -18494,7 +18494,7 @@ { "id": "hanayaka-nari-waga-ichizoku-kinetograph", "title": "Hanayaka Nari, Waga Ichizoku: Kinetograph", - "mal_title": "Hanayaka Nari, Waga Ichizoku: Kinetograph", + "mal_id": 14145, "poster": "https://aruppi.jeluchu.xyz/res/directory/1070.jpg", "type": "OVA", "genres": [ @@ -18510,7 +18510,7 @@ { "id": "hunter-x-hunter-phantom-rouge", "title": "Hunter x Hunter: Phantom Rouge", - "mal_title": "Hunter x Hunter: Phantom Rouge", + "mal_id": 13271, "poster": "https://aruppi.jeluchu.xyz/res/directory/1071.jpg", "type": "Película", "genres": [ @@ -18527,7 +18527,7 @@ { "id": "shingeki-no-kyojin-chimi-kyara-gekijou-tondeke", "title": "Shingeki no Kyojin: Chimi Kyara Gekijou - Tondeke! Kunren Heidan", - "mal_title": "Shingeki no Kyojin: Chimi Kyara Gekijou - Tondeke! Kunren Heidan", + "mal_id": 19391, "poster": "https://aruppi.jeluchu.xyz/res/directory/1072.jpg", "type": "OVA", "genres": [ @@ -18542,7 +18542,7 @@ { "id": "corpse-party-tortured-souls-bougyaku-sareta-ta", "title": "Corpse Party: Tortured Souls - Bougyaku Sareta Tamashii no Jukyou", - "mal_title": "Corpse Party: Tortured Souls - Bougyaku Sareta Tamashii no Jukyou", + "mal_id": 15037, "poster": "https://aruppi.jeluchu.xyz/res/directory/1073.jpg", "type": "OVA", "genres": [ @@ -18557,7 +18557,7 @@ { "id": "the-prince-of-tennis", "title": "The Prince of Tennis", - "mal_title": "The Prince of Tennis", + "mal_id": 22, "poster": "https://aruppi.jeluchu.xyz/res/directory/1074.jpg", "type": "Anime", "genres": [ @@ -18575,7 +18575,7 @@ { "id": "maji-de-otaku-na-english-ribbon-chan-eigo-de-ta", "title": "Maji de Otaku na English! Ribbon-chan: Eigo de Tatakau Mahou Shoujo - The TV", - "mal_title": "Maji de Otaku na English! Ribbon-chan: Eigo de Tatakau Mahou Shoujo - The TV", + "mal_id": 19207, "poster": "https://aruppi.jeluchu.xyz/res/directory/1075.jpg", "type": "Anime", "genres": [ @@ -18590,7 +18590,7 @@ { "id": "haitai-nanafa-s2", "title": "Haitai Nanafa S2", - "mal_title": "Haitai Nanafa S2", + "mal_id": 15043, "poster": "https://aruppi.jeluchu.xyz/res/directory/1076.jpg", "type": "Anime", "genres": [ @@ -18605,7 +18605,7 @@ { "id": "tenshi-no-drop", "title": "Tenshi no Drop", - "mal_title": "Tenshi no Drop", + "mal_id": 16436, "poster": "https://aruppi.jeluchu.xyz/res/directory/1077.jpg", "type": "OVA", "genres": [ @@ -18622,7 +18622,7 @@ { "id": "dragon-ball-z-pelicula-1", "title": "Dragon Ball Z Pelicula 01: Devuelveme a mi Gohan", - "mal_title": "Dragon Ball Z Pelicula 01: Devuelveme a mi Gohan", + "mal_id": 894, "poster": "https://aruppi.jeluchu.xyz/res/directory/1078.jpg", "type": "Película", "genres": [ @@ -18640,7 +18640,7 @@ { "id": "dragon-ball-z-pelicula-2", "title": "Dragon Ball Z Pelicula 02: El hombre más fuerte de este mundo", - "mal_title": "Dragon Ball Z Pelicula 02: El hombre más fuerte de este mundo", + "mal_id": 895, "poster": "https://aruppi.jeluchu.xyz/res/directory/1079.jpg", "type": "Película", "genres": [ @@ -18658,7 +18658,7 @@ { "id": "dragon-ball-z-pelicula-3", "title": "Dragon Ball Z Pelicula 03: La batalla más grande del mundo esta por comenzar", - "mal_title": "Dragon Ball Z Pelicula 03: La batalla más grande del mundo esta por comenzar", + "mal_id": 896, "poster": "https://aruppi.jeluchu.xyz/res/directory/1080.jpg", "type": "Película", "genres": [ @@ -18676,7 +18676,7 @@ { "id": "dragon-ball-z-pelicula-4", "title": "Dragon Ball Z Pelicula 04: Goku es un Super Saiyajin", - "mal_title": "Dragon Ball Z Pelicula 04: Goku es un Super Saiyajin", + "mal_id": 897, "poster": "https://aruppi.jeluchu.xyz/res/directory/1081.jpg", "type": "Película", "genres": [ @@ -18693,7 +18693,7 @@ { "id": "dragon-ball-z-pelicula-5", "title": "Dragon Ball Z Pelicula 05: Los rivales mas poderosos", - "mal_title": "Dragon Ball Z Pelicula 05: Los rivales mas poderosos", + "mal_id": 898, "poster": "https://aruppi.jeluchu.xyz/res/directory/1082.jpg", "type": "Película", "genres": [ @@ -18711,7 +18711,7 @@ { "id": "dragon-ball-z-pelicula-6", "title": "Dragon Ball Z Pelicula 06: El regreso de Cooler", - "mal_title": "Dragon Ball Z Pelicula 06: El regreso de Cooler", + "mal_id": 899, "poster": "https://aruppi.jeluchu.xyz/res/directory/1083.jpg", "type": "Película", "genres": [ @@ -18729,7 +18729,7 @@ { "id": "dragon-ball-z-pelicula-7", "title": "Dragon Ball Z Pelicula 07: La pelea de los tres Saiyajin", - "mal_title": "Dragon Ball Z Pelicula 07: La pelea de los tres Saiyajin", + "mal_id": 900, "poster": "https://aruppi.jeluchu.xyz/res/directory/1084.jpg", "type": "Película", "genres": [ @@ -18747,7 +18747,7 @@ { "id": "dragon-ball-z-pelicula-8", "title": "Dragon Ball Z Pelicula 08: El poder invencible", - "mal_title": "Dragon Ball Z Pelicula 08: El poder invencible", + "mal_id": 901, "poster": "https://aruppi.jeluchu.xyz/res/directory/1085.jpg", "type": "Película", "genres": [ @@ -18765,7 +18765,7 @@ { "id": "dragon-ball-z-pelicula-9", "title": "Dragon Ball Z Pelicula 09: La Galaxia corre peligro", - "mal_title": "Dragon Ball Z Pelicula 09: La Galaxia corre peligro", + "mal_id": 902, "poster": "https://aruppi.jeluchu.xyz/res/directory/1086.jpg", "type": "Película", "genres": [ @@ -18783,7 +18783,7 @@ { "id": "dragon-ball-z-pelicula-10", "title": "Dragon Ball Z Pelicula 10: El regreso del Guerrero Legendario", - "mal_title": "Dragon Ball Z Pelicula 10: El regreso del Guerrero Legendario", + "mal_id": 903, "poster": "https://aruppi.jeluchu.xyz/res/directory/1087.jpg", "type": "Película", "genres": [ @@ -18804,7 +18804,7 @@ { "id": "dragon-ball-z-pelicula-11", "title": "Dragon Ball Z Pelicula 11: El combate final", - "mal_title": "Dragon Ball Z Pelicula 11: El combate final", + "mal_id": 904, "poster": "https://aruppi.jeluchu.xyz/res/directory/1088.jpg", "type": "Película", "genres": [ @@ -18824,7 +18824,7 @@ { "id": "dragon-ball-z-pelicula-12", "title": "Dragon Ball Z Pelicula 12: La fusión de Goku y Vegeta", - "mal_title": "Dragon Ball Z Pelicula 12: La fusión de Goku y Vegeta", + "mal_id": 905, "poster": "https://aruppi.jeluchu.xyz/res/directory/1089.jpg", "type": "Película", "genres": [ @@ -18842,7 +18842,7 @@ { "id": "dragon-ball-z-pelicula-13", "title": "Dragon Ball Z Pelicula 13: El ataque del dragón", - "mal_title": "Dragon Ball Z Pelicula 13: El ataque del dragón", + "mal_id": 906, "poster": "https://aruppi.jeluchu.xyz/res/directory/1090.jpg", "type": "Película", "genres": [ @@ -18860,7 +18860,7 @@ { "id": "dragon-ball-z-especial-1", "title": "Dragon Ball Z Especial: Freezer contra el padre de Goku", - "mal_title": "Dragon Ball Z Especial: Freezer contra el padre de Goku", + "mal_id": 986, "poster": "https://aruppi.jeluchu.xyz/res/directory/1091.jpg", "type": "OVA", "genres": [ @@ -18874,7 +18874,7 @@ { "id": "dragon-ball-z-especial-2", "title": "Dragon Ball Z Especial: Los guerreros de futuro", - "mal_title": "Dragon Ball Z Especial: Los guerreros de futuro", + "mal_id": 985, "poster": "https://aruppi.jeluchu.xyz/res/directory/1092.jpg", "type": "OVA", "genres": [ @@ -18891,7 +18891,7 @@ { "id": "one-piece-episodio-de-merry-la-historia-de-un-am", "title": "One Piece Episodio de Merry: La historia de un amigo mas", - "mal_title": "One Piece Episodio de Merry: La historia de un amigo mas", + "mal_id": 19123, "poster": "https://aruppi.jeluchu.xyz/res/directory/1093.jpg", "type": "OVA", "genres": [ @@ -18911,7 +18911,7 @@ { "id": "toaru-majutsu-no-index-endymion-no-kiseki", "title": "Toaru Majutsu no Index: Endymion no Kiseki", - "mal_title": "Toaru Majutsu no Index: Endymion no Kiseki", + "mal_id": 11743, "poster": "https://aruppi.jeluchu.xyz/res/directory/1094.jpg", "type": "Película", "genres": [ @@ -18928,7 +18928,7 @@ { "id": "minami-ke-natsuyasumi", "title": "Minami-ke Natsuyasumi", - "mal_title": "Minami-ke Natsuyasumi", + "mal_id": 20221, "poster": "https://aruppi.jeluchu.xyz/res/directory/1095.jpg", "type": "OVA", "genres": [ @@ -18943,7 +18943,7 @@ { "id": "dokidoki-precure", "title": "Dokidoki! Precure", - "mal_title": "Dokidoki! Precure", + "mal_id": 16419, "poster": "https://aruppi.jeluchu.xyz/res/directory/1096.jpg", "type": "Anime", "genres": [ @@ -18960,7 +18960,7 @@ { "id": "free-specials", "title": "Free! Specials", - "mal_title": "Free! Specials", + "mal_id": 10172, "poster": "https://aruppi.jeluchu.xyz/res/directory/1097.jpg", "type": "OVA", "genres": [ @@ -18976,7 +18976,7 @@ { "id": "dragon-ball-z-battle-of-gods", "title": "Dragon Ball Z: Battle of Gods", - "mal_title": "Dragon Ball Z: Battle of Gods", + "mal_id": 14837, "poster": "https://aruppi.jeluchu.xyz/res/directory/1098.jpg", "type": "Película", "genres": [ @@ -18995,7 +18995,7 @@ { "id": "avatar-la-leyenda-de-korra-libro-dos", "title": "La Leyenda de Korra: Libro 2", - "mal_title": "La Leyenda de Korra: Libro 2", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1099.jpg", "type": "Anime", "genres": [ @@ -19009,7 +19009,7 @@ { "id": "diabolik-lovers", "title": "Diabolik Lovers", - "mal_title": "Diabolik Lovers", + "mal_id": 17513, "poster": "https://aruppi.jeluchu.xyz/res/directory/1100.jpg", "type": "Anime", "genres": [ @@ -19026,7 +19026,7 @@ { "id": "inazuma-eleven-go-vs-danball-senki-w", "title": "Inazuma Eleven Go vs Danball Senki W", - "mal_title": "Inazuma Eleven Go vs Danball Senki W", + "mal_id": 15785, "poster": "https://aruppi.jeluchu.xyz/res/directory/1101.jpg", "type": "Película", "genres": [ @@ -19043,7 +19043,7 @@ { "id": "kill-la-kill", "title": "Kill La Kill", - "mal_title": "Kill La Kill", + "mal_id": 18679, "poster": "https://aruppi.jeluchu.xyz/res/directory/1102.jpg", "type": "Anime", "genres": [ @@ -19060,7 +19060,7 @@ { "id": "tsubasa-chronicle", "title": "Tsubasa Chronicle", - "mal_title": "Tsubasa Chronicle", + "mal_id": 177, "poster": "https://aruppi.jeluchu.xyz/res/directory/1103.jpg", "type": "Anime", "genres": [ @@ -19080,7 +19080,7 @@ { "id": "super-seisyun-brothers", "title": "Super Seisyun Brothers", - "mal_title": "Super Seisyun Brothers", + "mal_id": 19841, "poster": "https://aruppi.jeluchu.xyz/res/directory/1104.jpg", "type": "Anime", "genres": [ @@ -19096,7 +19096,7 @@ { "id": "higurashi-no-naku-koro-ni-kaku-outbreak", "title": "Higurashi no naku koro ni Kaku ~Outbreak~", - "mal_title": "Higurashi no naku koro ni Kaku ~Outbreak~", + "mal_id": 16700, "poster": "https://aruppi.jeluchu.xyz/res/directory/1105.jpg", "type": "OVA", "genres": [ @@ -19113,7 +19113,7 @@ { "id": "mardock-scramble-the-third-exhaust", "title": "Mardock Scramble: The Third Exhaust", - "mal_title": "Mardock Scramble: The Third Exhaust", + "mal_id": 12053, "poster": "https://aruppi.jeluchu.xyz/res/directory/1106.jpg", "type": "Película", "genres": [ @@ -19129,7 +19129,7 @@ { "id": "rozen-maiden-ouverture", "title": "Rozen Maiden: Ouvertüre", - "mal_title": "Rozen Maiden: Ouvertüre", + "mal_id": 1719, "poster": "https://aruppi.jeluchu.xyz/res/directory/1107.jpg", "type": "OVA", "genres": [ @@ -19147,7 +19147,7 @@ { "id": "miss-monochrome-the-animation", "title": "Miss Monochrome The Animation", - "mal_title": "Miss Monochrome The Animation", + "mal_id": 30384, "poster": "https://aruppi.jeluchu.xyz/res/directory/1108.jpg", "type": "Anime", "genres": [ @@ -19163,7 +19163,7 @@ { "id": "coppelion", "title": "Coppelion", - "mal_title": "Coppelion", + "mal_id": 9479, "poster": "https://aruppi.jeluchu.xyz/res/directory/1109.jpg", "type": "Anime", "genres": [ @@ -19179,7 +19179,7 @@ { "id": "kyoukai-no-kanata", "title": "Kyoukai no Kanata", - "mal_title": "Kyoukai no Kanata", + "mal_id": 18153, "poster": "https://aruppi.jeluchu.xyz/res/directory/1110.jpg", "type": "Anime", "genres": [ @@ -19195,7 +19195,7 @@ { "id": "Pokemon-the-origin", "title": "Pokemon: The Origin", - "mal_title": "Pokemon: The Origin", + "mal_id": 20159, "poster": "https://aruppi.jeluchu.xyz/res/directory/1111.jpg", "type": "OVA", "genres": [ @@ -19213,7 +19213,7 @@ { "id": "kyousogiga-tv", "title": "Kyousogiga (TV)", - "mal_title": "Kyousogiga (TV)", + "mal_id": 19703, "poster": "https://aruppi.jeluchu.xyz/res/directory/1112.jpg", "type": "Anime", "genres": [ @@ -19229,7 +19229,7 @@ { "id": "nagi-no-asukara", "title": "Nagi no Asukara", - "mal_title": "Nagi no Asukara", + "mal_id": 16067, "poster": "https://aruppi.jeluchu.xyz/res/directory/1113.jpg", "type": "Anime", "genres": [ @@ -19245,7 +19245,7 @@ { "id": "golden-time", "title": "Golden Time", - "mal_title": "Golden Time", + "mal_id": 17895, "poster": "https://aruppi.jeluchu.xyz/res/directory/1114.jpg", "type": "Anime", "genres": [ @@ -19261,7 +19261,7 @@ { "id": "infinite-stratos-2", "title": "IS: Infinite Stratos 2", - "mal_title": "IS: Infinite Stratos 2", + "mal_id": 18247, "poster": "https://aruppi.jeluchu.xyz/res/directory/1115.jpg", "type": "Anime", "genres": [ @@ -19279,7 +19279,7 @@ { "id": "outbreak-company", "title": "Outbreak Company", - "mal_title": "Outbreak Company", + "mal_id": 19369, "poster": "https://aruppi.jeluchu.xyz/res/directory/1116.jpg", "type": "Anime", "genres": [ @@ -19296,7 +19296,7 @@ { "id": "freezing-vibration", "title": "Freezing Vibration", - "mal_title": "Freezing Vibration", + "mal_id": 18001, "poster": "https://aruppi.jeluchu.xyz/res/directory/1117.jpg", "type": "Anime", "genres": [ @@ -19318,7 +19318,7 @@ { "id": "strike-the-blood", "title": "Strike the Blood", - "mal_title": "Strike the Blood", + "mal_id": 18277, "poster": "https://aruppi.jeluchu.xyz/res/directory/1118.jpg", "type": "Anime", "genres": [ @@ -19339,7 +19339,7 @@ { "id": "hajime-no-ippo-rising", "title": "Hajime no Ippo: Rising", - "mal_title": "Hajime no Ippo: Rising", + "mal_id": 19647, "poster": "https://aruppi.jeluchu.xyz/res/directory/1119.jpg", "type": "Anime", "genres": [ @@ -19356,7 +19356,7 @@ { "id": "yuusha-ni-narenakatta-ore-wa-shibushibu-shushoku", "title": "Yuushibu", - "mal_title": "Yuushibu", + "mal_id": 18677, "poster": "https://aruppi.jeluchu.xyz/res/directory/1120.jpg", "type": "Anime", "genres": [ @@ -19373,7 +19373,7 @@ { "id": "little-busters-refrain", "title": "Little Busters! Refrain", - "mal_title": "Little Busters! Refrain", + "mal_id": 18195, "poster": "https://aruppi.jeluchu.xyz/res/directory/1121.jpg", "type": "Anime", "genres": [ @@ -19392,7 +19392,7 @@ { "id": "log-horizon", "title": "Log Horizon", - "mal_title": "Log Horizon", + "mal_id": 17265, "poster": "https://aruppi.jeluchu.xyz/res/directory/1122.jpg", "type": "Anime", "genres": [ @@ -19410,7 +19410,7 @@ { "id": "walkure-romanze", "title": "Walkure Romanze", - "mal_title": "Walkure Romanze", + "mal_id": 19151, "poster": "https://aruppi.jeluchu.xyz/res/directory/1123.jpg", "type": "Anime", "genres": [ @@ -19429,7 +19429,7 @@ { "id": "kuroko-no-basuke-2", "title": "Kuroko no Basuke 2", - "mal_title": "Kuroko no Basuke 2", + "mal_id": 11771, "poster": "https://aruppi.jeluchu.xyz/res/directory/1124.jpg", "type": "Anime", "genres": [ @@ -19446,7 +19446,7 @@ { "id": "gaist-crusher", "title": "Gaist Crusher", - "mal_title": "Gaist Crusher", + "mal_id": 19871, "poster": "https://aruppi.jeluchu.xyz/res/directory/1125.jpg", "type": "Anime", "genres": [ @@ -19462,7 +19462,7 @@ { "id": "white-album-2-2013", "title": "White Album 2 (2013)", - "mal_title": "White Album 2 (2013)", + "mal_id": 18245, "poster": "https://aruppi.jeluchu.xyz/res/directory/1126.jpg", "type": "Anime", "genres": [ @@ -19479,7 +19479,7 @@ { "id": "diamond-no-ace", "title": "Diamond no Ace", - "mal_title": "Diamond no Ace", + "mal_id": 18689, "poster": "https://aruppi.jeluchu.xyz/res/directory/1127.jpg", "type": "Anime", "genres": [ @@ -19496,7 +19496,7 @@ { "id": "sekai-de-ichiban-tsuyoku-naritai", "title": "Sekai de Ichiban Tsuyoku Naritai!", - "mal_title": "Sekai de Ichiban Tsuyoku Naritai!", + "mal_id": 11763, "poster": "https://aruppi.jeluchu.xyz/res/directory/1128.jpg", "type": "Anime", "genres": [ @@ -19512,7 +19512,7 @@ { "id": "magi-the-kingdom-of-magic", "title": "Magi: The Kingdom of Magic", - "mal_title": "Magi: The Kingdom of Magic", + "mal_id": 18115, "poster": "https://aruppi.jeluchu.xyz/res/directory/1129.jpg", "type": "Anime", "genres": [ @@ -19530,7 +19530,7 @@ { "id": "teekyuu-3", "title": "Teekyuu 3", - "mal_title": "Teekyuu 3", + "mal_id": 20473, "poster": "https://aruppi.jeluchu.xyz/res/directory/1130.jpg", "type": "Anime", "genres": [ @@ -19547,7 +19547,7 @@ { "id": "gingitsune", "title": "Gingitsune", - "mal_title": "Gingitsune", + "mal_id": 18411, "poster": "https://aruppi.jeluchu.xyz/res/directory/1131.jpg", "type": "Anime", "genres": [ @@ -19563,7 +19563,7 @@ { "id": "yozakura-quartet-hana-no-uta", "title": "Yozakura Quartet ~Hana no Uta~", - "mal_title": "Yozakura Quartet ~Hana no Uta~", + "mal_id": 18497, "poster": "https://aruppi.jeluchu.xyz/res/directory/1132.jpg", "type": "Anime", "genres": [ @@ -19582,7 +19582,7 @@ { "id": "meganebu", "title": "Meganebu!", - "mal_title": "Meganebu!", + "mal_id": 19257, "poster": "https://aruppi.jeluchu.xyz/res/directory/1133.jpg", "type": "Anime", "genres": [ @@ -19598,7 +19598,7 @@ { "id": "yakitate-japan", "title": "Yakitate!! Japan", - "mal_title": "Yakitate!! Japan", + "mal_id": 28, "poster": "https://aruppi.jeluchu.xyz/res/directory/1134.jpg", "type": "Anime", "genres": [ @@ -19613,7 +19613,7 @@ { "id": "aikatsu-2", "title": "Aikatsu! 2", - "mal_title": "Aikatsu! 2", + "mal_id": 15061, "poster": "https://aruppi.jeluchu.xyz/res/directory/1135.jpg", "type": "Anime", "genres": [ @@ -19630,7 +19630,7 @@ { "id": "phi-brain-kami-no-puzzle-iii", "title": "Phi Brain: Kami no Puzzle III", - "mal_title": "Phi Brain: Kami no Puzzle III", + "mal_id": 9981, "poster": "https://aruppi.jeluchu.xyz/res/directory/1136.jpg", "type": "Anime", "genres": [ @@ -19647,7 +19647,7 @@ { "id": "yowamushi-pedal", "title": "Yowamushi Pedal", - "mal_title": "Yowamushi Pedal", + "mal_id": 18179, "poster": "https://aruppi.jeluchu.xyz/res/directory/1137.jpg", "type": "Anime", "genres": [ @@ -19664,7 +19664,7 @@ { "id": "machine-doll-wa-kizutsukanai", "title": "Machine-Doll wa Kizutsukanai", - "mal_title": "Machine-Doll wa Kizutsukanai", + "mal_id": 17247, "poster": "https://aruppi.jeluchu.xyz/res/directory/1138.jpg", "type": "Anime", "genres": [ @@ -19682,7 +19682,7 @@ { "id": "aoki-hagane-no-arpeggio", "title": "Aoki Hagane no Arpeggio", - "mal_title": "Aoki Hagane no Arpeggio", + "mal_id": 18893, "poster": "https://aruppi.jeluchu.xyz/res/directory/1139.jpg", "type": "Anime", "genres": [ @@ -19698,7 +19698,7 @@ { "id": "non-non-biyori", "title": "Non Non Biyori", - "mal_title": "Non Non Biyori", + "mal_id": 17549, "poster": "https://aruppi.jeluchu.xyz/res/directory/1140.jpg", "type": "Anime", "genres": [ @@ -19715,7 +19715,7 @@ { "id": "gundam-build-fighters", "title": "Gundam Build Fighters", - "mal_title": "Gundam Build Fighters", + "mal_id": 19319, "poster": "https://aruppi.jeluchu.xyz/res/directory/1141.jpg", "type": "Anime", "genres": [ @@ -19731,7 +19731,7 @@ { "id": "blazblue-alter-memory", "title": "BlazBlue Alter Memory", - "mal_title": "BlazBlue Alter Memory", + "mal_id": 18767, "poster": "https://aruppi.jeluchu.xyz/res/directory/1142.jpg", "type": "Anime", "genres": [ @@ -19746,7 +19746,7 @@ { "id": "tokyo-ravens", "title": "Tokyo Ravens", - "mal_title": "Tokyo Ravens", + "mal_id": 16011, "poster": "https://aruppi.jeluchu.xyz/res/directory/1143.jpg", "type": "Anime", "genres": [ @@ -19764,7 +19764,7 @@ { "id": "noucome", "title": "Noucome", - "mal_title": "Noucome", + "mal_id": 19221, "poster": "https://aruppi.jeluchu.xyz/res/directory/1144.jpg", "type": "Anime", "genres": [ @@ -19780,7 +19780,7 @@ { "id": "samurai-flamenco", "title": "Samurai Flamenco", - "mal_title": "Samurai Flamenco", + "mal_id": 19365, "poster": "https://aruppi.jeluchu.xyz/res/directory/1145.jpg", "type": "Anime", "genres": [ @@ -19796,7 +19796,7 @@ { "id": "galilei-donna", "title": "Galilei Donna", - "mal_title": "Galilei Donna", + "mal_id": 19367, "poster": "https://aruppi.jeluchu.xyz/res/directory/1146.jpg", "type": "Anime", "genres": [ @@ -19812,7 +19812,7 @@ { "id": "valvrave-the-liberator-s2", "title": "Valvrave the Liberator S2", - "mal_title": "Valvrave the Liberator S2", + "mal_id": 18295, "poster": "https://aruppi.jeluchu.xyz/res/directory/1147.jpg", "type": "Anime", "genres": [ @@ -19828,7 +19828,7 @@ { "id": "minami-ke", "title": "Minami-ke", - "mal_title": "Minami-ke", + "mal_id": 2963, "poster": "https://aruppi.jeluchu.xyz/res/directory/1148.jpg", "type": "Anime", "genres": [ @@ -19844,7 +19844,7 @@ { "id": "minami-ke-okaeri", "title": "Minami-ke: Okaeri", - "mal_title": "Minami-ke: Okaeri", + "mal_id": 5162, "poster": "https://aruppi.jeluchu.xyz/res/directory/1149.jpg", "type": "Anime", "genres": [ @@ -19860,7 +19860,7 @@ { "id": "pokemon-xy", "title": "Pokemon XY", - "mal_title": "Pokemon XY", + "mal_id": 19291, "poster": "https://aruppi.jeluchu.xyz/res/directory/1150.jpg", "type": "Anime", "genres": [ @@ -19878,7 +19878,7 @@ { "id": "hanasaku-iroha-home-sweet-home", "title": "Hanasaku Iroha: Home Sweet Home", - "mal_title": "Hanasaku Iroha: Home Sweet Home", + "mal_id": 14175, "poster": "https://aruppi.jeluchu.xyz/res/directory/1151.jpg", "type": "Película", "genres": [ @@ -19894,7 +19894,7 @@ { "id": "kill-me-baby-butsuzou-kegatte-kise-halloween", "title": "Kill Me Baby: Butsuzou Kegatte Nise Halloween", - "mal_title": "Kill Me Baby: Butsuzou Kegatte Nise Halloween", + "mal_id": 20039, "poster": "https://aruppi.jeluchu.xyz/res/directory/1152.jpg", "type": "OVA", "genres": [ @@ -19909,7 +19909,7 @@ { "id": "infinite-stratos-2-hitonatsu-no-omoide", "title": "Infinite Stratos 2 - Hitonatsu no Omoide", - "mal_title": "Infinite Stratos 2 - Hitonatsu no Omoide", + "mal_id": 20045, "poster": "https://aruppi.jeluchu.xyz/res/directory/1153.jpg", "type": "OVA", "genres": [ @@ -19927,7 +19927,7 @@ { "id": "mahou-shoujo-madoka-magica-shinpen", "title": "Gekijouban Mahou Shoujo Madoka Magica (Shinpen) - Hangyaku no Monogatari", - "mal_title": "Gekijouban Mahou Shoujo Madoka Magica (Shinpen) - Hangyaku no Monogatari", + "mal_id": 11981, "poster": "https://aruppi.jeluchu.xyz/res/directory/1154.jpg", "type": "Película", "genres": [ @@ -19944,7 +19944,7 @@ { "id": "kyoukai-no-kanata-idol-saiban-mayoi-nagara-mo-kimi-wo-sabaku", "title": "Kyoukai no Kanata: Idol Saiban! Mayoi Nagara mo Kimi wo Sabaku Tami", - "mal_title": "Kyoukai no Kanata: Idol Saiban! Mayoi Nagara mo Kimi wo Sabaku Tami", + "mal_id": 21241, "poster": "https://aruppi.jeluchu.xyz/res/directory/1155.jpg", "type": "OVA", "genres": [ @@ -19958,7 +19958,7 @@ { "id": "little-busters-sekai-no-saitou-wa-ore-ga-mamoru", "title": "Little Busters!: Sekai no Saitou wa Ore ga Mamoru!", - "mal_title": "Little Busters!: Sekai no Saitou wa Ore ga Mamoru!", + "mal_id": 17643, "poster": "https://aruppi.jeluchu.xyz/res/directory/1156.jpg", "type": "OVA", "genres": [ @@ -19974,7 +19974,7 @@ { "id": "steins-gate-fuka-ryoiki-no-deja-vu", "title": "Steins;Gate Fuka Ryoiki no Deja vu", - "mal_title": "Steins;Gate Fuka Ryoiki no Deja vu", + "mal_id": 11577, "poster": "https://aruppi.jeluchu.xyz/res/directory/1157.jpg", "type": "Película", "genres": [ @@ -19989,7 +19989,7 @@ { "id": "kuroko-no-basuke-ova", "title": "Kuroko no Basuke Ova", - "mal_title": "Kuroko no Basuke Ova", + "mal_id": 11771, "poster": "https://aruppi.jeluchu.xyz/res/directory/1158.jpg", "type": "OVA", "genres": [ @@ -20006,7 +20006,7 @@ { "id": "fuse-teppou-musume-no-torimonochou", "title": "Fuse Teppou Musume no Torimonochou", - "mal_title": "Fuse Teppou Musume no Torimonochou", + "mal_id": 13335, "poster": "https://aruppi.jeluchu.xyz/res/directory/1159.jpg", "type": "Película", "genres": [ @@ -20023,7 +20023,7 @@ { "id": "yozakura-quartet-hoshi-no-umi", "title": "Yozakura Quartet ~Hoshi no Umi~", - "mal_title": "Yozakura Quartet ~Hoshi no Umi~", + "mal_id": 8457, "poster": "https://aruppi.jeluchu.xyz/res/directory/1160.jpg", "type": "OVA", "genres": [ @@ -20042,7 +20042,7 @@ { "id": "yozakura-quartet-tsuki-ni-naku", "title": "Yozakura Quartet ~Tsuki ni Naku~", - "mal_title": "Yozakura Quartet ~Tsuki ni Naku~", + "mal_id": 18499, "poster": "https://aruppi.jeluchu.xyz/res/directory/1161.jpg", "type": "OVA", "genres": [ @@ -20061,7 +20061,7 @@ { "id": "shingeki-no-kyojin-ova", "title": "Shingeki no Kyojin OVA", - "mal_title": "Shingeki no Kyojin OVA", + "mal_id": 18397, "poster": "https://aruppi.jeluchu.xyz/res/directory/1162.jpg", "type": "OVA", "genres": [ @@ -20079,7 +20079,7 @@ { "id": "sacred-seven-shirogane-no-tsubasa", "title": "Sacred Seven: Shirogane no Tsubasa", - "mal_title": "Sacred Seven: Shirogane no Tsubasa", + "mal_id": 11635, "poster": "https://aruppi.jeluchu.xyz/res/directory/1163.jpg", "type": "Película", "genres": [ @@ -20096,7 +20096,7 @@ { "id": "saint-onii-san-pelicula", "title": "Saint☆Onii-san", - "mal_title": "Saint☆Onii-san", + "mal_id": 15775, "poster": "https://aruppi.jeluchu.xyz/res/directory/1164.jpg", "type": "Película", "genres": [ @@ -20112,7 +20112,7 @@ { "id": "hentai-ouji-to-warawanai-neko-specials", "title": "Hentai Ouji to Warawanai Neko Specials", - "mal_title": "Hentai Ouji to Warawanai Neko Specials", + "mal_id": 21541, "poster": "https://aruppi.jeluchu.xyz/res/directory/1165.jpg", "type": "Anime", "genres": [ @@ -20126,7 +20126,7 @@ { "id": "koitabi-true-tours-nanto", "title": "Koitabi ~True Tours Nanto", - "mal_title": "Koitabi ~True Tours Nanto", + "mal_id": 17635, "poster": "https://aruppi.jeluchu.xyz/res/directory/1166.jpg", "type": "OVA", "genres": [ @@ -20140,7 +20140,7 @@ { "id": "pupipo", "title": "Pupipo!", - "mal_title": "Pupipo!", + "mal_id": 21325, "poster": "https://aruppi.jeluchu.xyz/res/directory/1167.jpg", "type": "Anime", "genres": [ @@ -20157,7 +20157,7 @@ { "id": "hal", "title": "Hal", - "mal_title": "Hal", + "mal_id": 16528, "poster": "https://aruppi.jeluchu.xyz/res/directory/1168.jpg", "type": "Película", "genres": [ @@ -20173,7 +20173,7 @@ { "id": "chuunibyou-demo-koi-ga-shitai-ren-lite", "title": "Chuunibyou demo koi ga shitai! ren lite", - "mal_title": "Chuunibyou demo koi ga shitai! ren lite", + "mal_id": 21797, "poster": "https://aruppi.jeluchu.xyz/res/directory/1169.jpg", "type": "OVA", "genres": [ @@ -20188,7 +20188,7 @@ { "id": "gintama-kanketsuhen-yorozuya-yo-eien-nare", "title": "Gintama Kanketsuhen: Yorozuya yo Eien Nare", - "mal_title": "Gintama Kanketsuhen: Yorozuya yo Eien Nare", + "mal_id": 15335, "poster": "https://aruppi.jeluchu.xyz/res/directory/1170.jpg", "type": "Película", "genres": [ @@ -20208,7 +20208,7 @@ { "id": "freezing-vibration-specials", "title": "Freezing Vibration Specials", - "mal_title": "Freezing Vibration Specials", + "mal_id": 21373, "poster": "https://aruppi.jeluchu.xyz/res/directory/1171.jpg", "type": "OVA", "genres": [ @@ -20224,7 +20224,7 @@ { "id": "machine-doll-wa-kizutsukanai-specials", "title": "Machine-Doll wa Kizutsukanai Specials", - "mal_title": "Machine-Doll wa Kizutsukanai Specials", + "mal_id": 21415, "poster": "https://aruppi.jeluchu.xyz/res/directory/1172.jpg", "type": "OVA", "genres": [ @@ -20242,7 +20242,7 @@ { "id": "sword-art-online-extra-edition", "title": "Sword Art Online: Extra Edition", - "mal_title": "Sword Art Online: Extra Edition", + "mal_id": 20021, "poster": "https://aruppi.jeluchu.xyz/res/directory/1173.jpg", "type": "OVA", "genres": [ @@ -20260,7 +20260,7 @@ { "id": "zetsumetsu-kigu-shoujo-amazing-twins", "title": "Zetsumetsu Kigu Shoujo: Amazing Twins", - "mal_title": "Zetsumetsu Kigu Shoujo: Amazing Twins", + "mal_id": 19953, "poster": "https://aruppi.jeluchu.xyz/res/directory/1174.jpg", "type": "OVA", "genres": [ @@ -20275,7 +20275,7 @@ { "id": "ansatsu-kyoushitsu-ova", "title": "Ansatsu Kyoushitsu OVA", - "mal_title": "Ansatsu Kyoushitsu: Jump Festa 2013 Special", + "mal_id": 24833, "poster": "https://aruppi.jeluchu.xyz/res/directory/1175.jpg", "type": "OVA", "genres": [ @@ -20291,7 +20291,7 @@ { "id": "aura-maryuuinkouga-saigo-no-tatakai", "title": "Aura: Maryuuinkouga Saigo no Tatakai", - "mal_title": "Aura: Maryuuinkouga Saigo no Tatakai", + "mal_id": 14669, "poster": "https://aruppi.jeluchu.xyz/res/directory/1176.jpg", "type": "Película", "genres": [ @@ -20309,7 +20309,7 @@ { "id": "buddy-complex", "title": "Buddy Complex", - "mal_title": "Buddy Complex", + "mal_id": 21437, "poster": "https://aruppi.jeluchu.xyz/res/directory/1177.jpg", "type": "Anime", "genres": [ @@ -20325,7 +20325,7 @@ { "id": "witch-craft-works", "title": "Witch Craft Works", - "mal_title": "Witch Craft Works", + "mal_id": 21085, "poster": "https://aruppi.jeluchu.xyz/res/directory/1178.jpg", "type": "Anime", "genres": [ @@ -20343,7 +20343,7 @@ { "id": "fatekaleid-liner-prisma-illya-specials", "title": "Fate/kaleid liner Prisma Illya Specials", - "mal_title": "Fate/kaleid liner Prisma Illya Specials", + "mal_id": 19109, "poster": "https://aruppi.jeluchu.xyz/res/directory/1179.jpg", "type": "OVA", "genres": [ @@ -20360,7 +20360,7 @@ { "id": "saikin-imouto-no-yousu-ga-chotto-okashiinda-ga", "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga", - "mal_title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga", + "mal_id": 17777, "poster": "https://aruppi.jeluchu.xyz/res/directory/1180.jpg", "type": "Anime", "genres": [ @@ -20378,7 +20378,7 @@ { "id": "mushishi-tokubetsu-hen-hihamukage", "title": "Mushishi Tokubetsu-hen: Hihamukage", - "mal_title": "Mushishi Tokubetsu-hen: Hihamukage", + "mal_id": 62023, "poster": "https://aruppi.jeluchu.xyz/res/directory/1181.jpg", "type": "OVA", "genres": [ @@ -20398,7 +20398,7 @@ { "id": "seitokai-yakuindomo-2nd-season", "title": "Seitokai Yakuindomo 2nd Season", - "mal_title": "Seitokai Yakuindomo 2nd Season", + "mal_id": 20847, "poster": "https://aruppi.jeluchu.xyz/res/directory/1182.jpg", "type": "Anime", "genres": [ @@ -20415,7 +20415,7 @@ { "id": "space-dandy", "title": "Space☆Dandy", - "mal_title": "Space☆Dandy", + "mal_id": 20057, "poster": "https://aruppi.jeluchu.xyz/res/directory/1183.jpg", "type": "Anime", "genres": [ @@ -20431,7 +20431,7 @@ { "id": "mou-hitotsu-no-mirai-wo", "title": "Mou Hitotsu no Mirai wo", - "mal_title": "Mou Hitotsu no Mirai wo", + "mal_id": 21587, "poster": "https://aruppi.jeluchu.xyz/res/directory/1184.jpg", "type": "OVA", "genres": [ @@ -20445,7 +20445,7 @@ { "id": "saki-zenkoku-hen", "title": "Saki Zenkoku-hen", - "mal_title": "Saki Zenkoku-hen", + "mal_id": 16123, "poster": "https://aruppi.jeluchu.xyz/res/directory/1185.jpg", "type": "Anime", "genres": [ @@ -20461,7 +20461,7 @@ { "id": "tonari-no-seki-kun", "title": "Tonari no Seki-kun", - "mal_title": "Tonari no Seki-kun", + "mal_id": 18139, "poster": "https://aruppi.jeluchu.xyz/res/directory/1186.jpg", "type": "Anime", "genres": [ @@ -20477,7 +20477,7 @@ { "id": "noragami", "title": "Noragami", - "mal_title": "Noragami", + "mal_id": 20507, "poster": "https://aruppi.jeluchu.xyz/res/directory/1187.jpg", "type": "Anime", "genres": [ @@ -20494,7 +20494,7 @@ { "id": "nobunaga-the-fool", "title": "Nobunaga the Fool", - "mal_title": "Nobunaga the Fool", + "mal_id": 21177, "poster": "https://aruppi.jeluchu.xyz/res/directory/1188.jpg", "type": "Anime", "genres": [ @@ -20511,7 +20511,7 @@ { "id": "nobunagun", "title": "Nobunagun", - "mal_title": "Nobunagun", + "mal_id": 19855, "poster": "https://aruppi.jeluchu.xyz/res/directory/1189.jpg", "type": "Anime", "genres": [ @@ -20526,7 +20526,7 @@ { "id": "toaru-hikushi-e-no-koiuta", "title": "Toaru Hikushi e no Koiuta", - "mal_title": "Toaru Hikushi e no Koiuta", + "mal_id": 19117, "poster": "https://aruppi.jeluchu.xyz/res/directory/1190.jpg", "type": "Anime", "genres": [ @@ -20542,7 +20542,7 @@ { "id": "super-sonico-the-animation", "title": "Super Sonico the Animation", - "mal_title": "Super Sonico the Animation", + "mal_id": 20555, "poster": "https://aruppi.jeluchu.xyz/res/directory/1191.jpg", "type": "Anime", "genres": [ @@ -20557,7 +20557,7 @@ { "id": "d-frag", "title": "D-Frag!", - "mal_title": "D-Frag!", + "mal_id": 20031, "poster": "https://aruppi.jeluchu.xyz/res/directory/1192.jpg", "type": "Anime", "genres": [ @@ -20574,7 +20574,7 @@ { "id": "hamatora", "title": "Hamatora", - "mal_title": "Hamatora", + "mal_id": 23421, "poster": "https://aruppi.jeluchu.xyz/res/directory/1193.jpg", "type": "Anime", "genres": [ @@ -20590,7 +20590,7 @@ { "id": "wooser-no-sono-higurashi-kakusei-hen", "title": "Wooser no Sono Higurashi Kakusei-hen", - "mal_title": "Wooser no Sono Higurashi Kakusei-hen", + "mal_id": 20267, "poster": "https://aruppi.jeluchu.xyz/res/directory/1194.jpg", "type": "Anime", "genres": [ @@ -20606,7 +20606,7 @@ { "id": "robot-girls-z", "title": "Robot Girls Z", - "mal_title": "Robot Girls Z", + "mal_id": 19799, "poster": "https://aruppi.jeluchu.xyz/res/directory/1195.jpg", "type": "Anime", "genres": [ @@ -20622,7 +20622,7 @@ { "id": "chuunibyou-demo-koi-ga-shitai-ren", "title": "Chuunibyou demo Koi ga Shitai! Ren", - "mal_title": "Chuunibyou demo Koi ga Shitai! Ren", + "mal_id": 18671, "poster": "https://aruppi.jeluchu.xyz/res/directory/1196.jpg", "type": "Anime", "genres": [ @@ -20640,7 +20640,7 @@ { "id": "oneechan-ga-kita", "title": "Oneechan ga Kita", - "mal_title": "Oneechan ga Kita", + "mal_id": 20931, "poster": "https://aruppi.jeluchu.xyz/res/directory/1197.jpg", "type": "Anime", "genres": [ @@ -20655,7 +20655,7 @@ { "id": "mikakunin-de-shinkoukei", "title": "Mikakunin de Shinkoukei", - "mal_title": "Mikakunin de Shinkoukei", + "mal_id": 20541, "poster": "https://aruppi.jeluchu.xyz/res/directory/1198.jpg", "type": "Anime", "genres": [ @@ -20672,7 +20672,7 @@ { "id": "strange-plus", "title": "Strange plus", - "mal_title": "Strange plus", + "mal_id": 21067, "poster": "https://aruppi.jeluchu.xyz/res/directory/1199.jpg", "type": "Anime", "genres": [ @@ -20688,7 +20688,7 @@ { "id": "gin-no-saji-2", "title": "Gin no Saji 2", - "mal_title": "Gin no Saji 2", + "mal_id": 16918, "poster": "https://aruppi.jeluchu.xyz/res/directory/1200.jpg", "type": "Anime", "genres": [ @@ -20705,7 +20705,7 @@ { "id": "go-go-575", "title": "Go! Go! 575", - "mal_title": "Go! Go! 575", + "mal_id": 21267, "poster": "https://aruppi.jeluchu.xyz/res/directory/1201.jpg", "type": "Anime", "genres": [ @@ -20719,7 +20719,7 @@ { "id": "hoozuki-no-reitetsu", "title": "Hoozuki no Reitetsu", - "mal_title": "Hoozuki no Reitetsu", + "mal_id": 20431, "poster": "https://aruppi.jeluchu.xyz/res/directory/1202.jpg", "type": "Anime", "genres": [ @@ -20736,7 +20736,7 @@ { "id": "pupa", "title": "Pupa", - "mal_title": "Pupa", + "mal_id": 19315, "poster": "https://aruppi.jeluchu.xyz/res/directory/1203.jpg", "type": "Anime", "genres": [ @@ -20752,7 +20752,7 @@ { "id": "zx-ignition", "title": "Z/X Ignition", - "mal_title": "Z/X Ignition", + "mal_id": 20533, "poster": "https://aruppi.jeluchu.xyz/res/directory/1204.jpg", "type": "Anime", "genres": [ @@ -20769,7 +20769,7 @@ { "id": "mahou-sensou", "title": "Mahou Sensou", - "mal_title": "Mahou Sensou", + "mal_id": 19769, "poster": "https://aruppi.jeluchu.xyz/res/directory/1205.jpg", "type": "Anime", "genres": [ @@ -20785,7 +20785,7 @@ { "id": "sakura-trick", "title": "Sakura Trick", - "mal_title": "Sakura Trick", + "mal_id": 20047, "poster": "https://aruppi.jeluchu.xyz/res/directory/1206.jpg", "type": "Anime", "genres": [ @@ -20804,7 +20804,7 @@ { "id": "neppuu-kairiku-bushi-road", "title": "Neppuu Kairiku Bushi Road", - "mal_title": "Neppuu Kairiku Bushi Road", + "mal_id": 19653, "poster": "https://aruppi.jeluchu.xyz/res/directory/1207.jpg", "type": "Película", "genres": [ @@ -20821,7 +20821,7 @@ { "id": "wake-up-girls-shichinin-no-idol", "title": "Wake Up, Girls! Shichinin no Idol", - "mal_title": "Wake Up, Girls! Shichinin no Idol", + "mal_id": 21189, "poster": "https://aruppi.jeluchu.xyz/res/directory/1208.jpg", "type": "Película", "genres": [ @@ -20836,7 +20836,7 @@ { "id": "wake-up-girls", "title": "Wake Up, Girls!", - "mal_title": "Wake Up, Girls!", + "mal_id": 25875, "poster": "https://aruppi.jeluchu.xyz/res/directory/1209.jpg", "type": "Anime", "genres": [ @@ -20851,7 +20851,7 @@ { "id": "nourin", "title": "Nourin", - "mal_title": "Nourin", + "mal_id": 18095, "poster": "https://aruppi.jeluchu.xyz/res/directory/1210.jpg", "type": "Anime", "genres": [ @@ -20868,7 +20868,7 @@ { "id": "nisekoi", "title": "Nisekoi", - "mal_title": "Nisekoi", + "mal_id": 18897, "poster": "https://aruppi.jeluchu.xyz/res/directory/1211.jpg", "type": "Anime", "genres": [ @@ -20886,7 +20886,7 @@ { "id": "sekai-seifuku-bouryaku-no-zvezda", "title": "Sekai Seifuku: Bouryaku no Zvezda", - "mal_title": "Sekai Seifuku: Bouryaku no Zvezda", + "mal_id": 20973, "poster": "https://aruppi.jeluchu.xyz/res/directory/1212.jpg", "type": "Anime", "genres": [ @@ -20902,7 +20902,7 @@ { "id": "wizard-barristers-benmashi-cecil", "title": "Wizard Barristers: Benmashi Cecil", - "mal_title": "Wizard Barristers: Benmashi Cecil", + "mal_id": 20053, "poster": "https://aruppi.jeluchu.xyz/res/directory/1213.jpg", "type": "Anime", "genres": [ @@ -20916,7 +20916,7 @@ { "id": "minna-atsumare-falcom-gakuen", "title": "Minna Atsumare! Falcom Gakuen", - "mal_title": "Minna Atsumare! Falcom Gakuen", + "mal_id": 21427, "poster": "https://aruppi.jeluchu.xyz/res/directory/1214.jpg", "type": "Anime", "genres": [ @@ -20933,7 +20933,7 @@ { "id": "tonari-no-seki-kun-ova", "title": "Tonari no Seki-kun Ova", - "mal_title": "Tonari no Seki-kun Ova", + "mal_id": 20977, "poster": "https://aruppi.jeluchu.xyz/res/directory/1215.jpg", "type": "OVA", "genres": [ @@ -20949,7 +20949,7 @@ { "id": "maken-ki-two", "title": "Maken-Ki! Two", - "mal_title": "Maken-Ki! Two", + "mal_id": 15565, "poster": "https://aruppi.jeluchu.xyz/res/directory/1216.jpg", "type": "Anime", "genres": [ @@ -20968,7 +20968,7 @@ { "id": "inari-konkon-koi-iroha", "title": "Inari Konkon Koi Iroha", - "mal_title": "Inari Konkon Koi Iroha", + "mal_id": 20457, "poster": "https://aruppi.jeluchu.xyz/res/directory/1217.jpg", "type": "Anime", "genres": [ @@ -20986,7 +20986,7 @@ { "id": "little-busters-ex", "title": "Little Busters! EX", - "mal_title": "Little Busters! EX", + "mal_id": 20517, "poster": "https://aruppi.jeluchu.xyz/res/directory/1218.jpg", "type": "OVA", "genres": [ @@ -21005,7 +21005,7 @@ { "id": "wonder-momo", "title": "Wonder Momo", - "mal_title": "Wonder Momo", + "mal_id": 22377, "poster": "https://aruppi.jeluchu.xyz/res/directory/1219.jpg", "type": "Anime", "genres": [ @@ -21022,7 +21022,7 @@ { "id": "hori-san-to-miyamura-kun", "title": "Hori-san to Miyamura-kun", - "mal_title": "Hori-san to Miyamura-kun", + "mal_id": 14753, "poster": "https://aruppi.jeluchu.xyz/res/directory/1220.jpg", "type": "OVA", "genres": [ @@ -21039,7 +21039,7 @@ { "id": "yowamushi-pedal-ova", "title": "Yowamushi Pedal Ova", - "mal_title": "Yowamushi Pedal Ova", + "mal_id": 18179, "poster": "https://aruppi.jeluchu.xyz/res/directory/1221.jpg", "type": "OVA", "genres": [ @@ -21056,7 +21056,7 @@ { "id": "pumpkin-scissors", "title": "Pumpkin Scissors", - "mal_title": "Pumpkin Scissors", + "mal_id": 1538, "poster": "https://aruppi.jeluchu.xyz/res/directory/1222.jpg", "type": "Anime", "genres": [ @@ -21073,7 +21073,7 @@ { "id": "shikabane-hime-aka", "title": "Shikabane Hime: Aka", - "mal_title": "Shikabane Hime: Aka", + "mal_id": 4581, "poster": "https://aruppi.jeluchu.xyz/res/directory/1223.jpg", "type": "Anime", "genres": [ @@ -21089,7 +21089,7 @@ { "id": "shikabane-hime-kuro", "title": "Shikabane Hime: Kuro", - "mal_title": "Shikabane Hime: Kuro", + "mal_id": 5034, "poster": "https://aruppi.jeluchu.xyz/res/directory/1224.jpg", "type": "Anime", "genres": [ @@ -21104,7 +21104,7 @@ { "id": "natsume-yuujinchou-itsuka-yuki", "title": "Natsume Yuujinchou: Itsuka Yuki no Hi ni", - "mal_title": "Natsume Yuujinchou: Itsuka Yuki no Hi ni", + "mal_id": 20651, "poster": "https://aruppi.jeluchu.xyz/res/directory/1225.jpg", "type": "OVA", "genres": [ @@ -21122,7 +21122,7 @@ { "id": "noragami-ova", "title": "Noragami OVA", - "mal_title": "Noragami OVA", + "mal_id": 20767, "poster": "https://aruppi.jeluchu.xyz/res/directory/1226.jpg", "type": "OVA", "genres": [ @@ -21138,7 +21138,7 @@ { "id": "natsume-yuujinchou-lala-special", "title": "Natsume Yuujinchou LaLa Special", - "mal_title": "Natsume Yuujinchou LaLa Special", + "mal_id": 34534, "poster": "https://aruppi.jeluchu.xyz/res/directory/1227.jpg", "type": "OVA", "genres": [ @@ -21156,7 +21156,7 @@ { "id": "princess-lover", "title": "Princess Lover!", - "mal_title": "Princess Lover!", + "mal_id": 6201, "poster": "https://aruppi.jeluchu.xyz/res/directory/1228.jpg", "type": "Anime", "genres": [ @@ -21173,7 +21173,7 @@ { "id": "aki-sora", "title": "Aki Sora", - "mal_title": "Aki Sora", + "mal_id": 6987, "poster": "https://aruppi.jeluchu.xyz/res/directory/1229.jpg", "type": "OVA", "genres": [ @@ -21189,7 +21189,7 @@ { "id": "aki-sora-yume-no-naka", "title": "Aki Sora: Yume no Naka", - "mal_title": "Aki Sora: Yume no Naka", + "mal_id": 8577, "poster": "https://aruppi.jeluchu.xyz/res/directory/1230.jpg", "type": "OVA", "genres": [ @@ -21206,7 +21206,7 @@ { "id": "hidamari-sketch", "title": "Hidamari Sketch", - "mal_title": "Hidamari Sketch", + "mal_id": 1852, "poster": "https://aruppi.jeluchu.xyz/res/directory/1231.jpg", "type": "Anime", "genres": [ @@ -21222,7 +21222,7 @@ { "id": "hidamari-sketch-x-365", "title": "Hidamari Sketch X 365", - "mal_title": "Hidamari Sketch X 365", + "mal_id": 3604, "poster": "https://aruppi.jeluchu.xyz/res/directory/1232.jpg", "type": "Anime", "genres": [ @@ -21238,7 +21238,7 @@ { "id": "hidamari-sketch-x-hoshimittsu", "title": "Hidamari Sketch x Hoshimittsu", - "mal_title": "Hidamari Sketch x Hoshimittsu", + "mal_id": 7062, "poster": "https://aruppi.jeluchu.xyz/res/directory/1233.jpg", "type": "Anime", "genres": [ @@ -21254,7 +21254,7 @@ { "id": "hidamari-sketch-x-sp", "title": "Hidamari Sketch x SP", - "mal_title": "Hidamari Sketch x SP", + "mal_id": 9563, "poster": "https://aruppi.jeluchu.xyz/res/directory/1234.jpg", "type": "OVA", "genres": [ @@ -21270,7 +21270,7 @@ { "id": "hidamari-sketch-sae-hiro-sotsugyou-sen", "title": "Hidamari Sketch: Sae Hiro Sotsugyou Hen", - "mal_title": "Hidamari Sketch: Sae Hiro Sotsugyou Hen", + "mal_id": 17739, "poster": "https://aruppi.jeluchu.xyz/res/directory/1235.jpg", "type": "OVA", "genres": [ @@ -21286,7 +21286,7 @@ { "id": "real-drive", "title": "Real Drive", - "mal_title": "Real Drive", + "mal_id": 3363, "poster": "https://aruppi.jeluchu.xyz/res/directory/1236.jpg", "type": "Anime", "genres": [ @@ -21301,7 +21301,7 @@ { "id": "dantalian-no-shoka-ibarahime", "title": "Dantalian no Shoka: Ibarahime", - "mal_title": "Dantalian no Shoka: Ibarahime", + "mal_id": 12879, "poster": "https://aruppi.jeluchu.xyz/res/directory/1237.jpg", "type": "OVA", "genres": [ @@ -21317,7 +21317,7 @@ { "id": "bayonetta-bloody-fate", "title": "Bayonetta: Bloody Fate", - "mal_title": "Bayonetta: Bloody Fate", + "mal_id": 20543, "poster": "https://aruppi.jeluchu.xyz/res/directory/1238.jpg", "type": "Película", "genres": [ @@ -21334,7 +21334,7 @@ { "id": "sekaiichi-hatsukoi", "title": "Sekaiichi Hatsukoi", - "mal_title": "Sekaiichi Hatsukoi", + "mal_id": 8063, "poster": "https://aruppi.jeluchu.xyz/res/directory/1239.jpg", "type": "Anime", "genres": [ @@ -21351,7 +21351,7 @@ { "id": "takanashi-rikka-kai-gekijouban-chuunibyou-demo-koi-ga-shitai", "title": "Takanashi Rikka Kai: Gekijouban Chuunibyou demo Koi ga Shitai!", - "mal_title": "Takanashi Rikka Kai: Gekijouban Chuunibyou demo Koi ga Shitai!", + "mal_id": 19021, "poster": "https://aruppi.jeluchu.xyz/res/directory/1240.jpg", "type": "Película", "genres": [ @@ -21369,7 +21369,7 @@ { "id": "busou-renkin", "title": "Busou Renkin", - "mal_title": "Busou Renkin", + "mal_id": 1536, "poster": "https://aruppi.jeluchu.xyz/res/directory/1241.jpg", "type": "Anime", "genres": [ @@ -21388,7 +21388,7 @@ { "id": "kimi-no-iru-machi-uchi-ga-kita-machi", "title": "Kimi no Iru Machi Uchi ga Kita Machi", - "mal_title": "Kimi no Iru Machi Uchi ga Kita Machi", + "mal_id": 20649, "poster": "https://aruppi.jeluchu.xyz/res/directory/1242.jpg", "type": "OVA", "genres": [ @@ -21404,7 +21404,7 @@ { "id": "hanasakeru-seishounen", "title": "Hanasakeru Seishounen", - "mal_title": "Hanasakeru Seishounen", + "mal_id": 5835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1243.jpg", "type": "Anime", "genres": [ @@ -21420,7 +21420,7 @@ { "id": "kara-no-kyoukai-mirai-fukuin", "title": "Kara no Kyoukai: Mirai Fukuin", - "mal_title": "Kara no Kyoukai: Mirai Fukuin", + "mal_id": 14807, "poster": "https://aruppi.jeluchu.xyz/res/directory/1244.jpg", "type": "Película", "genres": [ @@ -21437,7 +21437,7 @@ { "id": "gekijouban-anohana", "title": "Gekijouban Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai", - "mal_title": "Gekijouban Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai", + "mal_id": 9989, "poster": "https://aruppi.jeluchu.xyz/res/directory/1245.jpg", "type": "Película", "genres": [ @@ -21453,7 +21453,7 @@ { "id": "tokyo-ravens-specials", "title": "Tokyo Ravens Specials", - "mal_title": "Tokyo Ravens Specials", + "mal_id": 23405, "poster": "https://aruppi.jeluchu.xyz/res/directory/1246.jpg", "type": "OVA", "genres": [ @@ -21468,7 +21468,7 @@ { "id": "captain-harlock-2013", "title": "Captain Harlock (2013)", - "mal_title": "Captain Harlock (2013)", + "mal_id": 17269, "poster": "https://aruppi.jeluchu.xyz/res/directory/1247.jpg", "type": "Película", "genres": [ @@ -21485,7 +21485,7 @@ { "id": "senki-zesshou-symphogear-g-ova", "title": "Senki Zesshou Symphogear G OVA", - "mal_title": "Senki Zesshou Symphogear G OVA", + "mal_id": 11751, "poster": "https://aruppi.jeluchu.xyz/res/directory/1248.jpg", "type": "OVA", "genres": [ @@ -21501,7 +21501,7 @@ { "id": "hen-zemi-ova", "title": "Hen Zemi OVA", - "mal_title": "Hen Zemi OVA", + "mal_id": 8101, "poster": "https://aruppi.jeluchu.xyz/res/directory/1249.jpg", "type": "OVA", "genres": [ @@ -21517,7 +21517,7 @@ { "id": "fatekaleid-liner-prisma-illya-undoukai-de-dance", "title": "Fate/kaleid liner Prisma☆Illya: Undoukai de Dance!", - "mal_title": "Fate/kaleid liner Prisma☆Illya: Undoukai de Dance!", + "mal_id": 18851, "poster": "https://aruppi.jeluchu.xyz/res/directory/1250.jpg", "type": "OVA", "genres": [ @@ -21533,7 +21533,7 @@ { "id": "selector-infected-wixoss", "title": "Selector Infected WIXOSS", - "mal_title": "Selector Infected WIXOSS", + "mal_id": 22273, "poster": "https://aruppi.jeluchu.xyz/res/directory/1251.jpg", "type": "Anime", "genres": [ @@ -21548,7 +21548,7 @@ { "id": "haikyuu", "title": "Haikyuu!!", - "mal_title": "Haikyuu!!", + "mal_id": 20583, "poster": "https://aruppi.jeluchu.xyz/res/directory/1252.jpg", "type": "Anime", "genres": [ @@ -21566,7 +21566,7 @@ { "id": "blade-soul", "title": "Blade & Soul", - "mal_title": "Blade & Soul", + "mal_id": 22547, "poster": "https://aruppi.jeluchu.xyz/res/directory/1253.jpg", "type": "Anime", "genres": [ @@ -21583,7 +21583,7 @@ { "id": "soul-eater-not", "title": "Soul Eater Not!", - "mal_title": "Soul Eater Not!", + "mal_id": 3588, "poster": "https://aruppi.jeluchu.xyz/res/directory/1254.jpg", "type": "Anime", "genres": [ @@ -21601,7 +21601,7 @@ { "id": "kindaichi-shounen-no-likenbo-returns", "title": "Kindaichi Shounen no Jikenbo Returns", - "mal_title": "Kindaichi Shounen no Jikenbo Returns", + "mal_id": 22817, "poster": "https://aruppi.jeluchu.xyz/res/directory/1255.jpg", "type": "Anime", "genres": [ @@ -21616,7 +21616,7 @@ { "id": "baby-steps", "title": "Baby Steps", - "mal_title": "Baby Steps", + "mal_id": 21185, "poster": "https://aruppi.jeluchu.xyz/res/directory/1256.jpg", "type": "Anime", "genres": [ @@ -21633,7 +21633,7 @@ { "id": "jojos-bizarre-adventure-stardust-crusaders", "title": "JoJo's Bizarre Adventure: Stardust Crusaders", - "mal_title": "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "mal_id": 20899, "poster": "https://aruppi.jeluchu.xyz/res/directory/1257.jpg", "type": "Anime", "genres": [ @@ -21651,7 +21651,7 @@ { "id": "abarenbou-rikishi-matsutarou", "title": "Abarenbou Rikishi!! Matsutarou", - "mal_title": "Abarenbou Rikishi!! Matsutarou", + "mal_id": 22831, "poster": "https://aruppi.jeluchu.xyz/res/directory/1258.jpg", "type": "Anime", "genres": [ @@ -21666,7 +21666,7 @@ { "id": "yu-gi-oh-arc-v", "title": "Yu-Gi-Oh: Arc-V", - "mal_title": "Yu-Gi-Oh: Arc-V", + "mal_id": 21639, "poster": "https://aruppi.jeluchu.xyz/res/directory/1259.jpg", "type": "Anime", "genres": [ @@ -21683,7 +21683,7 @@ { "id": "dragon-ball-kai-majin-buu-hen", "title": "Dragon Ball Kai: Majin Buu-hen", - "mal_title": "Dragon Ball Kai: Majin Buu-hen", + "mal_id": 22777, "poster": "https://aruppi.jeluchu.xyz/res/directory/1260.jpg", "type": "Anime", "genres": [ @@ -21703,7 +21703,7 @@ { "id": "fairy-tail-2014", "title": "Fairy Tail (2014)", - "mal_title": "Fairy Tail (2014)", + "mal_id": 22043, "poster": "https://aruppi.jeluchu.xyz/res/directory/1261.jpg", "type": "Anime", "genres": [ @@ -21722,7 +21722,7 @@ { "id": "soredemo-sekai-wa-utsukushii", "title": "Soredemo Sekai wa Utsukushii", - "mal_title": "Soredemo Sekai wa Utsukushii", + "mal_id": 22101, "poster": "https://aruppi.jeluchu.xyz/res/directory/1262.jpg", "type": "Anime", "genres": [ @@ -21739,7 +21739,7 @@ { "id": "love-live-2", "title": "Love Live! 2", - "mal_title": "Love Live! 2", + "mal_id": 19111, "poster": "https://aruppi.jeluchu.xyz/res/directory/1263.jpg", "type": "Anime", "genres": [ @@ -21755,7 +21755,7 @@ { "id": "gokukoku-no-brynhildr", "title": "Gokukoku no Brynhildr", - "mal_title": "Gokukoku no Brynhildr", + "mal_id": 21431, "poster": "https://aruppi.jeluchu.xyz/res/directory/1264.jpg", "type": "Anime", "genres": [ @@ -21772,7 +21772,7 @@ { "id": "break-blade-2014", "title": "Break Blade (2014)", - "mal_title": "Break Blade (2014)", + "mal_id": 22433, "poster": "https://aruppi.jeluchu.xyz/res/directory/1265.jpg", "type": "Anime", "genres": [ @@ -21790,7 +21790,7 @@ { "id": "gochuumon-wa-usagi-desu-ka", "title": "Gochuumon wa Usagi Desu ka?", - "mal_title": "Gochuumon wa Usagi Desu ka?", + "mal_id": 21273, "poster": "https://aruppi.jeluchu.xyz/res/directory/1266.jpg", "type": "Anime", "genres": [ @@ -21805,7 +21805,7 @@ { "id": "isshuukan-friends", "title": "Isshuukan Friends.", - "mal_title": "Isshuukan Friends.", + "mal_id": 21327, "poster": "https://aruppi.jeluchu.xyz/res/directory/1267.jpg", "type": "Anime", "genres": [ @@ -21822,7 +21822,7 @@ { "id": "kamigami-no-asobi", "title": "Kamigami no Asobi", - "mal_title": "Kamigami no Asobi", + "mal_id": 21563, "poster": "https://aruppi.jeluchu.xyz/res/directory/1268.jpg", "type": "Anime", "genres": [ @@ -21840,7 +21840,7 @@ { "id": "mikakunin-de-shinkoukei-ova", "title": "Mikakunin de Shinkoukei OVA", - "mal_title": "Mikakunin de Shinkoukei OVA", + "mal_id": 20541, "poster": "https://aruppi.jeluchu.xyz/res/directory/1269.jpg", "type": "OVA", "genres": [ @@ -21857,7 +21857,7 @@ { "id": "kanojo-ga-flag-wo-oraretara", "title": "Kanojo ga Flag wo Oraretara", - "mal_title": "Kanojo ga Flag wo Oraretara", + "mal_id": 19685, "poster": "https://aruppi.jeluchu.xyz/res/directory/1270.jpg", "type": "Anime", "genres": [ @@ -21874,7 +21874,7 @@ { "id": "Kiniro-no-corda-blue-sky", "title": "Kiniro no Corda: Blue♪Sky", - "mal_title": "Kiniro no Corda: Blue♪Sky", + "mal_id": 20971, "poster": "https://aruppi.jeluchu.xyz/res/directory/1271.jpg", "type": "Anime", "genres": [ @@ -21891,7 +21891,7 @@ { "id": "M3-sono-kuroki-hagane", "title": "M3: Sono Kuroki Hagane", - "mal_title": "M3: Sono Kuroki Hagane", + "mal_id": 23133, "poster": "https://aruppi.jeluchu.xyz/res/directory/1272.jpg", "type": "Anime", "genres": [ @@ -21910,7 +21910,7 @@ { "id": "toaru-kagaku-no-railgun-s-daiji-na-koto-wa-zenbu", "title": "Toaru Kagaku no Railgun S: Daiji na Koto wa Zenbu ", - "mal_title": "Toaru Kagaku no Railgun S: Daiji na Koto wa Zenbu ", + "mal_id": 22759, "poster": "https://aruppi.jeluchu.xyz/res/directory/1273.jpg", "type": "OVA", "genres": [ @@ -21924,7 +21924,7 @@ { "id": "majin-bone", "title": "Majin Bone", - "mal_title": "Majin Bone", + "mal_id": 21835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1274.jpg", "type": "Anime", "genres": [ @@ -21938,7 +21938,7 @@ { "id": "atelier-escha-and-logy-tasogare-no-sora-no-renkinjutsushi", "title": "Atelier Escha & Logy ~Tasogare no Sora no Renkinjutsushi~", - "mal_title": "Atelier Escha & Logy ~Tasogare no Sora no Renkinjutsushi~", + "mal_id": 21167, "poster": "https://aruppi.jeluchu.xyz/res/directory/1275.jpg", "type": "Anime", "genres": [ @@ -21952,7 +21952,7 @@ { "id": "mangaka-san-to-assistant-san-to", "title": "Mangaka-san to Assistant-san to The Animation", - "mal_title": "Mangaka-san to Assistant-san to The Animation", + "mal_id": 21863, "poster": "https://aruppi.jeluchu.xyz/res/directory/1276.jpg", "type": "Anime", "genres": [ @@ -21970,7 +21970,7 @@ { "id": "mahouka-koukou-no-rettousei", "title": "Mahouka Koukou no Rettousei", - "mal_title": "Mahouka Koukou no Rettousei", + "mal_id": 20785, "poster": "https://aruppi.jeluchu.xyz/res/directory/1277.jpg", "type": "Anime", "genres": [ @@ -21988,7 +21988,7 @@ { "id": "mahouka-koukou-no-rettousei-yoku-wakaru-mahouka", "title": "Mahouka Koukou no Rettousei: Yoku Wakaru Mahouka", - "mal_title": "Mahouka Koukou no Rettousei: Yoku Wakaru Mahouka", + "mal_id": 23341, "poster": "https://aruppi.jeluchu.xyz/res/directory/1278.jpg", "type": "OVA", "genres": [ @@ -22003,7 +22003,7 @@ { "id": "akuma-no-riddle", "title": "Akuma no Riddle", - "mal_title": "Akuma no Riddle", + "mal_id": 19429, "poster": "https://aruppi.jeluchu.xyz/res/directory/1279.jpg", "type": "Anime", "genres": [ @@ -22019,7 +22019,7 @@ { "id": "bokura-wa-minna-kawaisou", "title": "Bokura wa Minna Kawaisou", - "mal_title": "Bokura wa Minna Kawaisou", + "mal_id": 24973, "poster": "https://aruppi.jeluchu.xyz/res/directory/1280.jpg", "type": "Anime", "genres": [ @@ -22036,7 +22036,7 @@ { "id": "kenzen-robo-daimidaler", "title": "Kenzen Robo Daimidaler", - "mal_title": "Kenzen Robo Daimidaler", + "mal_id": 21809, "poster": "https://aruppi.jeluchu.xyz/res/directory/1281.jpg", "type": "Anime", "genres": [ @@ -22053,7 +22053,7 @@ { "id": "mushishi-zoku-shou", "title": "Mushishi Zoku Shou", - "mal_title": "Mushishi Zoku Shou", + "mal_id": 21939, "poster": "https://aruppi.jeluchu.xyz/res/directory/1282.jpg", "type": "Anime", "genres": [ @@ -22073,7 +22073,7 @@ { "id": "seikoku-no-dragonar", "title": "Seikoku no Dragonar", - "mal_title": "Seikoku no Dragonar", + "mal_id": 21033, "poster": "https://aruppi.jeluchu.xyz/res/directory/1283.jpg", "type": "Anime", "genres": [ @@ -22090,7 +22090,7 @@ { "id": "captain-earth", "title": "Captain Earth", - "mal_title": "Captain Earth", + "mal_id": 21677, "poster": "https://aruppi.jeluchu.xyz/res/directory/1284.jpg", "type": "Anime", "genres": [ @@ -22108,7 +22108,7 @@ { "id": "black-bullet", "title": "Black Bullet", - "mal_title": "Black Bullet", + "mal_id": 20787, "poster": "https://aruppi.jeluchu.xyz/res/directory/1285.jpg", "type": "Anime", "genres": [ @@ -22125,7 +22125,7 @@ { "id": "mahou-shoujo-taisen", "title": "Mahou Shoujo Taisen", - "mal_title": "Mahou Shoujo Taisen", + "mal_id": 21421, "poster": "https://aruppi.jeluchu.xyz/res/directory/1286.jpg", "type": "Anime", "genres": [ @@ -22139,7 +22139,7 @@ { "id": "no-game-no-life", "title": "No Game No Life", - "mal_title": "No Game No Life", + "mal_id": 19815, "poster": "https://aruppi.jeluchu.xyz/res/directory/1287.jpg", "type": "Anime", "genres": [ @@ -22158,7 +22158,7 @@ { "id": "fuuun-ishin-dai-shougun", "title": "Fuuun Ishin Dai Shougun", - "mal_title": "Fuuun Ishin Dai Shougun", + "mal_id": 21821, "poster": "https://aruppi.jeluchu.xyz/res/directory/1288.jpg", "type": "Anime", "genres": [ @@ -22174,7 +22174,7 @@ { "id": "hitsugi-no-chaika", "title": "Hitsugi no Chaika", - "mal_title": "Hitsugi no Chaika", + "mal_id": 20853, "poster": "https://aruppi.jeluchu.xyz/res/directory/1289.jpg", "type": "Anime", "genres": [ @@ -22193,7 +22193,7 @@ { "id": "ryuugajou-nanana-no-maizoukin", "title": "Ryuugajou Nanana no Maizoukin", - "mal_title": "Ryuugajou Nanana no Maizoukin", + "mal_id": 21561, "poster": "https://aruppi.jeluchu.xyz/res/directory/1290.jpg", "type": "Anime", "genres": [ @@ -22208,7 +22208,7 @@ { "id": "sidonia-no-kishi", "title": "Sidonia no Kishi", - "mal_title": "Sidonia no Kishi", + "mal_id": 19775, "poster": "https://aruppi.jeluchu.xyz/res/directory/1291.jpg", "type": "Anime", "genres": [ @@ -22226,7 +22226,7 @@ { "id": "date-a-live-2", "title": "Date a Live II", - "mal_title": "Date a Live II", + "mal_id": 36633, "poster": "https://aruppi.jeluchu.xyz/res/directory/1292.jpg", "type": "Anime", "genres": [ @@ -22245,7 +22245,7 @@ { "id": "hanamonogatari", "title": "Hanamonogatari", - "mal_title": "Hanamonogatari", + "mal_id": 21855, "poster": "https://aruppi.jeluchu.xyz/res/directory/1293.jpg", "type": "Anime", "genres": [ @@ -22261,7 +22261,7 @@ { "id": "mekaku-city-actors", "title": "Mekaku City Actors", - "mal_title": "Mekaku City Actors", + "mal_id": 21603, "poster": "https://aruppi.jeluchu.xyz/res/directory/1294.jpg", "type": "Anime", "genres": [ @@ -22279,7 +22279,7 @@ { "id": "marvel-avengers-confidential-black-widow-and-punisher", "title": "Marvel Avengers Confidential: Black Widow and Punisher (2014)", - "mal_title": "Marvel Avengers Confidential: Black Widow and Punisher (2014)", + "mal_id": 25457, "poster": "https://aruppi.jeluchu.xyz/res/directory/1295.jpg", "type": "Película", "genres": [ @@ -22295,7 +22295,7 @@ { "id": "inugami-san-to-nekoyama-san", "title": "Inugami-san to Nekoyama-san", - "mal_title": "Inugami-san to Nekoyama-san", + "mal_id": 22123, "poster": "https://aruppi.jeluchu.xyz/res/directory/1296.jpg", "type": "Anime", "genres": [ @@ -22311,7 +22311,7 @@ { "id": "yondemasuyo-azazel-san-ova", "title": "Yondemasuyo Azazel-san OVA", - "mal_title": "Yondemasuyo Azazel-san OVA", + "mal_id": 7762, "poster": "https://aruppi.jeluchu.xyz/res/directory/1297.jpg", "type": "OVA", "genres": [ @@ -22327,7 +22327,7 @@ { "id": "pokemon-xy-tokubetsu-hen-saikyou-mega-shinka", "title": "Pokemon XY: Saikyou Mega Shinka", - "mal_title": "Pokemon XY: Saikyou Mega Shinka", + "mal_id": 23301, "poster": "https://aruppi.jeluchu.xyz/res/directory/1298.jpg", "type": "Anime", "genres": [ @@ -22345,7 +22345,7 @@ { "id": "kuroko-no-basket-ng-shu-2", "title": "Kuroko no Basket NG-Shuu 2", - "mal_title": "Kuroko no Basket NG-Shuu 2", + "mal_id": 15487, "poster": "https://aruppi.jeluchu.xyz/res/directory/1299.jpg", "type": "Anime", "genres": [ @@ -22362,7 +22362,7 @@ { "id": "disk-dars-avengers", "title": "Disk Wars: Avengers", - "mal_title": "Disk Wars: Avengers", + "mal_id": 21013, "poster": "https://aruppi.jeluchu.xyz/res/directory/1300.jpg", "type": "Anime", "genres": [ @@ -22378,7 +22378,7 @@ { "id": "harmonie", "title": "Harmonie", - "mal_title": "Harmonie", + "mal_id": 20903, "poster": "https://aruppi.jeluchu.xyz/res/directory/1301.jpg", "type": "Película", "genres": [ @@ -22394,7 +22394,7 @@ { "id": "steel-angel-kurumi-encore", "title": "Steel Angel Kurumi Encore", - "mal_title": "Steel Angel Kurumi Encore", + "mal_id": 557, "poster": "https://aruppi.jeluchu.xyz/res/directory/1302.jpg", "type": "OVA", "genres": [ @@ -22412,7 +22412,7 @@ { "id": "steel-angel-kurumi-shiki", "title": "Steel Angel Kurumi Shiki", - "mal_title": "Steel Angel Kurumi Shiki", + "mal_id": 555, "poster": "https://aruppi.jeluchu.xyz/res/directory/1303.jpg", "type": "Anime", "genres": [ @@ -22431,7 +22431,7 @@ { "id": "ping-pong-the-animation", "title": "Ping Pong The Animation", - "mal_title": "Ping Pong The Animation", + "mal_id": 22135, "poster": "https://aruppi.jeluchu.xyz/res/directory/1304.jpg", "type": "Anime", "genres": [ @@ -22447,7 +22447,7 @@ { "id": "maken-ki-two-specials", "title": "Maken-Ki! Two Specials", - "mal_title": "Maken-Ki! Two Specials", + "mal_id": 23989, "poster": "https://aruppi.jeluchu.xyz/res/directory/1305.jpg", "type": "OVA", "genres": [ @@ -22461,7 +22461,7 @@ { "id": "tsubasa-tokyo-revelations", "title": "Tsubasa Tokyo Revelations", - "mal_title": "Tsubasa Tokyo Revelations", + "mal_id": 2685, "poster": "https://aruppi.jeluchu.xyz/res/directory/1306.jpg", "type": "OVA", "genres": [ @@ -22480,7 +22480,7 @@ { "id": "tsubasa-shunraiki", "title": "Tsubasa Shunraiki", - "mal_title": "Tsubasa Shunraiki", + "mal_id": 4938, "poster": "https://aruppi.jeluchu.xyz/res/directory/1307.jpg", "type": "OVA", "genres": [ @@ -22502,7 +22502,7 @@ { "id": "saint-tail", "title": "Saint Tail", - "mal_title": "Saint Tail", + "mal_id": 1567, "poster": "https://aruppi.jeluchu.xyz/res/directory/1308.jpg", "type": "Anime", "genres": [ @@ -22519,7 +22519,7 @@ { "id": "sister-princess-re-pure", "title": "Sister Princess: Re Pure", - "mal_title": "Sister Princess: Re Pure", + "mal_id": 835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1309.jpg", "type": "Anime", "genres": [ @@ -22534,7 +22534,7 @@ { "id": "mai-otome-s-ifr", "title": "Mai-Otome 0: S.ifr", - "mal_title": "Mai-Otome 0: S.ifr", + "mal_id": 3268, "poster": "https://aruppi.jeluchu.xyz/res/directory/1310.jpg", "type": "OVA", "genres": [ @@ -22548,7 +22548,7 @@ { "id": "mai-otome", "title": "Mai-Otome", - "mal_title": "Mai-Otome", + "mal_id": 99, "poster": "https://aruppi.jeluchu.xyz/res/directory/1311.jpg", "type": "Anime", "genres": [ @@ -22565,7 +22565,7 @@ { "id": "mai-otome-zwei", "title": "Mai-Otome Zwei", - "mal_title": "Mai-Otome Zwei", + "mal_id": 1609, "poster": "https://aruppi.jeluchu.xyz/res/directory/1312.jpg", "type": "OVA", "genres": [ @@ -22580,7 +22580,7 @@ { "id": "12-sai-kiss-kirai-suki", "title": "12-sai.: Kiss, Kirai, Suki", - "mal_title": "12-sai.: Kiss, Kirai, Suki", + "mal_id": 23579, "poster": "https://aruppi.jeluchu.xyz/res/directory/1313.jpg", "type": "OVA", "genres": [ @@ -22596,7 +22596,7 @@ { "id": "darker-than-black-kuro-no-keiyakusha-gaiden", "title": "Darker than Black: Kuro no Keiyakusha Gaiden", - "mal_title": "Darker than Black: Kuro no Keiyakusha Gaiden", + "mal_id": 7338, "poster": "https://aruppi.jeluchu.xyz/res/directory/1314.jpg", "type": "OVA", "genres": [ @@ -22613,7 +22613,7 @@ { "id": "tenshi-no-shippo-chu", "title": "Tenshi no Shippo Chu!", - "mal_title": "Tenshi no Shippo Chu!", + "mal_id": 684, "poster": "https://aruppi.jeluchu.xyz/res/directory/1315.jpg", "type": "Anime", "genres": [ @@ -22629,7 +22629,7 @@ { "id": "yoku-wakaru-gendai-mahou", "title": "Yoku Wakaru Gendai Mahou", - "mal_title": "Yoku Wakaru Gendai Mahou", + "mal_id": 5454, "poster": "https://aruppi.jeluchu.xyz/res/directory/1316.jpg", "type": "Anime", "genres": [ @@ -22644,7 +22644,7 @@ { "id": "gj-bu-ova", "title": "GJ-bu 2", - "mal_title": "GJ-bu 2", + "mal_id": 21635, "poster": "https://aruppi.jeluchu.xyz/res/directory/1317.jpg", "type": "OVA", "genres": [ @@ -22660,7 +22660,7 @@ { "id": "majutsushi-orphen", "title": "Majutsushi Orphen", - "mal_title": "Majutsushi Orphen", + "mal_id": 1017, "poster": "https://aruppi.jeluchu.xyz/res/directory/1318.jpg", "type": "Anime", "genres": [ @@ -22679,7 +22679,7 @@ { "id": "majutsushi-orphen-revenge", "title": "Majutsushi Orphen Revenge", - "mal_title": "Majutsushi Orphen Revenge", + "mal_id": 1018, "poster": "https://aruppi.jeluchu.xyz/res/directory/1319.jpg", "type": "Anime", "genres": [ @@ -22697,7 +22697,7 @@ { "id": "kamichama-karin", "title": "Kamichama Karin", - "mal_title": "Kamichama Karin", + "mal_id": 1808, "poster": "https://aruppi.jeluchu.xyz/res/directory/1320.jpg", "type": "Anime", "genres": [ @@ -22716,7 +22716,7 @@ { "id": "karin", "title": "Karin", - "mal_title": "Karin", + "mal_id": 469, "poster": "https://aruppi.jeluchu.xyz/res/directory/1321.jpg", "type": "Anime", "genres": [ @@ -22734,7 +22734,7 @@ { "id": "lodoss-tou-senki", "title": "Lodoss-tou Senki", - "mal_title": "Lodoss-tou Senki", + "mal_id": 207, "poster": "https://aruppi.jeluchu.xyz/res/directory/1322.jpg", "type": "Anime", "genres": [ @@ -22753,7 +22753,7 @@ { "id": "lodoss-tou-senki-eiyuu-kishi-den", "title": "Lodoss-tou Senki: Eiyuu Kishi Den", - "mal_title": "Lodoss-tou Senki: Eiyuu Kishi Den", + "mal_id": 206, "poster": "https://aruppi.jeluchu.xyz/res/directory/1323.jpg", "type": "Anime", "genres": [ @@ -22772,7 +22772,7 @@ { "id": "eve-no-jikan-gekijouban", "title": "Eve no Jikan Gekijouban", - "mal_title": "Eve no Jikan Gekijouban", + "mal_id": 7465, "poster": "https://aruppi.jeluchu.xyz/res/directory/1324.jpg", "type": "Película", "genres": [ @@ -22787,7 +22787,7 @@ { "id": "sakasama-no-patema", "title": "Sakasama no Patema", - "mal_title": "Sakasama no Patema", + "mal_id": 12477, "poster": "https://aruppi.jeluchu.xyz/res/directory/1325.jpg", "type": "Película", "genres": [ @@ -22802,7 +22802,7 @@ { "id": "urusei-yatsura", "title": "Urusei Yatsura", - "mal_title": "Urusei Yatsura", + "mal_id": 1293, "poster": "https://aruppi.jeluchu.xyz/res/directory/1326.jpg", "type": "Anime", "genres": [ @@ -22821,7 +22821,7 @@ { "id": "magi-sinbad-no-bouken", "title": "Magi: Sinbad no Bouken", - "mal_title": "Magi: Sinbad no Bouken", + "mal_id": 22097, "poster": "https://aruppi.jeluchu.xyz/res/directory/1327.jpg", "type": "OVA", "genres": [ @@ -22839,7 +22839,7 @@ { "id": "ghost-hunt", "title": "Ghost Hunt", - "mal_title": "Ghost Hunt", + "mal_id": 1571, "poster": "https://aruppi.jeluchu.xyz/res/directory/1328.jpg", "type": "Anime", "genres": [ @@ -22857,7 +22857,7 @@ { "id": "gekijouban-toriko-bishokushin-no-special-menu", "title": "Gekijouban Toriko: Bishokushin no Special Menu", - "mal_title": "Gekijouban Toriko: Bishokushin no Special Menu", + "mal_id": 17699, "poster": "https://aruppi.jeluchu.xyz/res/directory/1329.jpg", "type": "Película", "genres": [ @@ -22874,7 +22874,7 @@ { "id": "gyakkyou-burai-kaiji-ultimate-survivor", "title": "Gyakkyou Burai Kaiji: Ultimate Survivor ", - "mal_title": "Gyakkyou Burai Kaiji: Ultimate Survivor ", + "mal_id": 3002, "poster": "https://aruppi.jeluchu.xyz/res/directory/1330.jpg", "type": "Anime", "genres": [ @@ -22891,7 +22891,7 @@ { "id": "slayers-excellent", "title": "Slayers Excellent", - "mal_title": "Slayers Excellent", + "mal_id": 1171, "poster": "https://aruppi.jeluchu.xyz/res/directory/1331.jpg", "type": "OVA", "genres": [ @@ -22911,7 +22911,7 @@ { "id": "slayers-special", "title": "Slayers Special", - "mal_title": "Slayers Special", + "mal_id": 1170, "poster": "https://aruppi.jeluchu.xyz/res/directory/1332.jpg", "type": "OVA", "genres": [ @@ -22930,7 +22930,7 @@ { "id": "gekijouban-slayers", "title": "Gekijouban Slayers", - "mal_title": "Gekijouban Slayers", + "mal_id": 536, "poster": "https://aruppi.jeluchu.xyz/res/directory/1333.jpg", "type": "Película", "genres": [ @@ -22948,7 +22948,7 @@ { "id": "slayers-gorgeous", "title": "Slayers Gorgeous", - "mal_title": "Slayers Gorgeous", + "mal_id": 867, "poster": "https://aruppi.jeluchu.xyz/res/directory/1334.jpg", "type": "Película", "genres": [ @@ -22966,7 +22966,7 @@ { "id": "slayers-next", "title": "Slayers Next", - "mal_title": "Slayers Next", + "mal_id": 535, "poster": "https://aruppi.jeluchu.xyz/res/directory/1335.jpg", "type": "Anime", "genres": [ @@ -22984,7 +22984,7 @@ { "id": "slayers-premium", "title": "Slayers Premium", - "mal_title": "Slayers Premium", + "mal_id": 866, "poster": "https://aruppi.jeluchu.xyz/res/directory/1336.jpg", "type": "Película", "genres": [ @@ -23002,7 +23002,7 @@ { "id": "slayers-try", "title": "Slayers Try", - "mal_title": "Slayers Try", + "mal_id": 1172, "poster": "https://aruppi.jeluchu.xyz/res/directory/1337.jpg", "type": "Anime", "genres": [ @@ -23021,7 +23021,7 @@ { "id": "slayers-revolution", "title": "Slayers Revolution", - "mal_title": "Slayers Revolution", + "mal_id": 4028, "poster": "https://aruppi.jeluchu.xyz/res/directory/1338.jpg", "type": "Anime", "genres": [ @@ -23037,7 +23037,7 @@ { "id": "slayers-evolution-r", "title": "Slayers Evolution-R", - "mal_title": "Slayers Evolution-R", + "mal_id": 5233, "poster": "https://aruppi.jeluchu.xyz/res/directory/1339.jpg", "type": "Anime", "genres": [ @@ -23053,7 +23053,7 @@ { "id": "umi-ga-kikoeru", "title": "Umi ga Kikoeru", - "mal_title": "Umi ga Kikoeru", + "mal_id": 743, "poster": "https://aruppi.jeluchu.xyz/res/directory/1340.jpg", "type": "Anime", "genres": [ @@ -23070,7 +23070,7 @@ { "id": "persona-3", "title": "Persona 3 The Movie", - "mal_title": "Persona 3 The Movie", + "mal_id": 14407, "poster": "https://aruppi.jeluchu.xyz/res/directory/1341.jpg", "type": "Película", "genres": [ @@ -23087,7 +23087,7 @@ { "id": "star-driver-the-movie", "title": "Star Driver The Movie", - "mal_title": "Star Driver The Movie", + "mal_id": 12857, "poster": "https://aruppi.jeluchu.xyz/res/directory/1342.jpg", "type": "Película", "genres": [ @@ -23104,7 +23104,7 @@ { "id": "kuro-no-sumika-chronus", "title": "Kuro no Sumika -Chronus-", - "mal_title": "Kuro no Sumika -Chronus-", + "mal_id": 20889, "poster": "https://aruppi.jeluchu.xyz/res/directory/1343.jpg", "type": "OVA", "genres": [ @@ -23118,7 +23118,7 @@ { "id": "initial-d-final-stage", "title": "Initial D Final Stage", - "mal_title": "Initial D Final Stage", + "mal_id": 22507, "poster": "https://aruppi.jeluchu.xyz/res/directory/1344.jpg", "type": "Anime", "genres": [ @@ -23134,7 +23134,7 @@ { "id": "hadi-girl", "title": "Hadi girl", - "mal_title": "Hadi girl", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1345.jpg", "type": "Anime", "genres": [ @@ -23148,7 +23148,7 @@ { "id": "tsubasa-to-hotaru", "title": "Tsubasa to Hotaru", - "mal_title": "Tsubasa to Hotaru", + "mal_id": 33247, "poster": "https://aruppi.jeluchu.xyz/res/directory/1346.jpg", "type": "OVA", "genres": [ @@ -23164,7 +23164,7 @@ { "id": "kobayashi-ga-kawaisugite-tsurai", "title": "Kobayashi ga Kawaisugite Tsurai!!", - "mal_title": "Kobayashi ga Kawaisugite Tsurai!!", + "mal_id": 19575, "poster": "https://aruppi.jeluchu.xyz/res/directory/1347.jpg", "type": "OVA", "genres": [ @@ -23180,7 +23180,7 @@ { "id": "sengoku-musou-sp", "title": "Sengoku Musou SP: Sanada no Shou", - "mal_title": "Sengoku Musou SP: Sanada no Shou", + "mal_id": 21497, "poster": "https://aruppi.jeluchu.xyz/res/directory/1348.jpg", "type": "OVA", "genres": [ @@ -23196,7 +23196,7 @@ { "id": "toki-wo-kakeru-shoujo", "title": "Toki wo Kakeru Shoujo", - "mal_title": "Toki wo Kakeru Shoujo", + "mal_id": 2236, "poster": "https://aruppi.jeluchu.xyz/res/directory/1349.jpg", "type": "Película", "genres": [ @@ -23213,7 +23213,7 @@ { "id": "X-2001", "title": "X (2001)", - "mal_title": "X (2001)", + "mal_id": 156, "poster": "https://aruppi.jeluchu.xyz/res/directory/1350.jpg", "type": "Anime", "genres": [ @@ -23233,7 +23233,7 @@ { "id": "x-ova", "title": "X OVA", - "mal_title": "X OVA", + "mal_id": 595, "poster": "https://aruppi.jeluchu.xyz/res/directory/1351.jpg", "type": "OVA", "genres": [ @@ -23251,7 +23251,7 @@ { "id": "wild-adapter", "title": "Wild Adapter", - "mal_title": "Wild Adapter", + "mal_id": 13843, "poster": "https://aruppi.jeluchu.xyz/res/directory/1352.jpg", "type": "OVA", "genres": [ @@ -23268,7 +23268,7 @@ { "id": "hetalia-axis-powers", "title": "Hetalia: Axis Powers", - "mal_title": "Hetalia: Axis Powers", + "mal_id": 5060, "poster": "https://aruppi.jeluchu.xyz/res/directory/1353.jpg", "type": "Anime", "genres": [ @@ -23284,7 +23284,7 @@ { "id": "hetalia-axis-powers-paint-it-white", "title": "Hetalia: Axis Powers - Paint It, White!", - "mal_title": "Hetalia: Axis Powers - Paint It, White!", + "mal_id": 7337, "poster": "https://aruppi.jeluchu.xyz/res/directory/1354.jpg", "type": "Película", "genres": [ @@ -23300,7 +23300,7 @@ { "id": "hetalia-world-series", "title": "Hetalia World Series", - "mal_title": "Hetalia World Series", + "mal_id": 8479, "poster": "https://aruppi.jeluchu.xyz/res/directory/1355.jpg", "type": "Anime", "genres": [ @@ -23316,7 +23316,7 @@ { "id": "samurai-7", "title": "Samurai 7", - "mal_title": "Samurai 7", + "mal_id": 166, "poster": "https://aruppi.jeluchu.xyz/res/directory/1356.jpg", "type": "Anime", "genres": [ @@ -23333,7 +23333,7 @@ { "id": "monochrome-factor", "title": "Monochrome Factor", - "mal_title": "Monochrome Factor", + "mal_id": 3656, "poster": "https://aruppi.jeluchu.xyz/res/directory/1357.jpg", "type": "Anime", "genres": [ @@ -23349,7 +23349,7 @@ { "id": "fruits-basket", "title": "Fruits Basket", - "mal_title": "Fruits Basket", + "mal_id": 120, "poster": "https://aruppi.jeluchu.xyz/res/directory/1358.jpg", "type": "Anime", "genres": [ @@ -23368,7 +23368,7 @@ { "id": "the-law-of-ueki", "title": "The Law of Ueki", - "mal_title": "The Law of Ueki", + "mal_id": 479, "poster": "https://aruppi.jeluchu.xyz/res/directory/1359.jpg", "type": "Anime", "genres": [ @@ -23386,7 +23386,7 @@ { "id": "lupin-sansei-vs-meitantei-conan-the-movie", "title": "Lupin Sansei vs. Meitantei Conan The Movie", - "mal_title": "Lupin Sansei vs. Meitantei Conan The Movie", + "mal_id": 6115, "poster": "https://aruppi.jeluchu.xyz/res/directory/1360.jpg", "type": "Película", "genres": [ @@ -23403,7 +23403,7 @@ { "id": "higurashi-no-naku-koro-ni-gaiden-nekogoroshi-hen", "title": "Higurashi no Naku Koro ni Gaiden Nekogoroshi-hen", - "mal_title": "Higurashi no Naku Koro ni Gaiden Nekogoroshi-hen", + "mal_id": 2899, "poster": "https://aruppi.jeluchu.xyz/res/directory/1361.jpg", "type": "OVA", "genres": [ @@ -23418,7 +23418,7 @@ { "id": "one-outs", "title": "One Outs", - "mal_title": "One Outs", + "mal_id": 5040, "poster": "https://aruppi.jeluchu.xyz/res/directory/1362.jpg", "type": "Anime", "genres": [ @@ -23434,7 +23434,7 @@ { "id": "kaze-tachinu", "title": "Kaze Tachinu", - "mal_title": "Kaze Tachinu", + "mal_id": 16662, "poster": "https://aruppi.jeluchu.xyz/res/directory/1363.jpg", "type": "Película", "genres": [ @@ -23450,7 +23450,7 @@ { "id": "hayate-no-gotoku-2014", "title": "Hayate no Gotoku! (2014)", - "mal_title": "Hayate no Gotoku! (2014)", + "mal_id": 23153, "poster": "https://aruppi.jeluchu.xyz/res/directory/1364.jpg", "type": "OVA", "genres": [ @@ -23468,7 +23468,7 @@ { "id": "rekka-no-honoo", "title": "Rekka no Honoo", - "mal_title": "Rekka no Honoo", + "mal_id": 238, "poster": "https://aruppi.jeluchu.xyz/res/directory/1365.jpg", "type": "Anime", "genres": [ @@ -23486,7 +23486,7 @@ { "id": "rekka-no-honoo-final-burning", "title": "Rekka no Honoo: Final Burning", - "mal_title": "Rekka no Honoo: Final Burning", + "mal_id": 5691, "poster": "https://aruppi.jeluchu.xyz/res/directory/1366.jpg", "type": "OVA", "genres": [ @@ -23506,7 +23506,7 @@ { "id": "akira", "title": "Akira", - "mal_title": "Akira", + "mal_id": 47, "poster": "https://aruppi.jeluchu.xyz/res/directory/1367.jpg", "type": "Película", "genres": [ @@ -23525,7 +23525,7 @@ { "id": "tales-of-symphonia-sylvarant-hen", "title": "Tales of Symphonia: Sylvarant Hen", - "mal_title": "Tales of Symphonia: Sylvarant Hen", + "mal_id": 1731, "poster": "https://aruppi.jeluchu.xyz/res/directory/1368.jpg", "type": "OVA", "genres": [ @@ -23544,7 +23544,7 @@ { "id": "tales-of-symphonia-tethealla-hen", "title": "Tales of Symphonia: Tethe`alla Hen", - "mal_title": "Tales of Symphonia: Tethe`alla Hen", + "mal_id": 5306, "poster": "https://aruppi.jeluchu.xyz/res/directory/1369.jpg", "type": "OVA", "genres": [ @@ -23563,7 +23563,7 @@ { "id": "tales-of-symphonia-sekai-tougou-hen", "title": "Tales of Symphonia: Sekai Tougou Hen", - "mal_title": "Tales of Symphonia: Sekai Tougou Hen", + "mal_id": 8995, "poster": "https://aruppi.jeluchu.xyz/res/directory/1370.jpg", "type": "OVA", "genres": [ @@ -23582,7 +23582,7 @@ { "id": "toshokan-sensou", "title": "Toshokan Sensou", - "mal_title": "Toshokan Sensou", + "mal_id": 3613, "poster": "https://aruppi.jeluchu.xyz/res/directory/1371.jpg", "type": "Anime", "genres": [ @@ -23599,7 +23599,7 @@ { "id": "shounen-onmyouji", "title": "Shounen Onmyouji", - "mal_title": "Shounen Onmyouji", + "mal_id": 1557, "poster": "https://aruppi.jeluchu.xyz/res/directory/1372.jpg", "type": "Anime", "genres": [ @@ -23619,7 +23619,7 @@ { "id": "mobile-suit-gundam-the-08th-ms-team", "title": "Mobile Suit Gundam: The 08th MS Team", - "mal_title": "Mobile Suit Gundam: The 08th MS Team", + "mal_id": 81, "poster": "https://aruppi.jeluchu.xyz/res/directory/1373.jpg", "type": "OVA", "genres": [ @@ -23638,7 +23638,7 @@ { "id": "mobile-suit-gundam-the-08th-ms-team-millers-report", "title": "Mobile Suit Gundam: The 08th MS Team - Miller`s Report", - "mal_title": "Mobile Suit Gundam: The 08th MS Team - Miller`s Report", + "mal_id": 83, "poster": "https://aruppi.jeluchu.xyz/res/directory/1374.jpg", "type": "Película", "genres": [ @@ -23656,7 +23656,7 @@ { "id": "isshuukan-friends-specials", "title": "Isshuukan Friends Specials", - "mal_title": "Isshuukan Friends Specials", + "mal_id": 24821, "poster": "https://aruppi.jeluchu.xyz/res/directory/1375.jpg", "type": "OVA", "genres": [ @@ -23671,7 +23671,7 @@ { "id": "bakumatsu-rock", "title": "Bakumatsu Rock", - "mal_title": "Bakumatsu Rock", + "mal_id": 23037, "poster": "https://aruppi.jeluchu.xyz/res/directory/1376.jpg", "type": "Anime", "genres": [ @@ -23689,7 +23689,7 @@ { "id": "free-eternal-summer", "title": "Free! Eternal Summer", - "mal_title": "Free! Eternal Summer", + "mal_id": 22265, "poster": "https://aruppi.jeluchu.xyz/res/directory/1377.jpg", "type": "Anime", "genres": [ @@ -23706,7 +23706,7 @@ { "id": "futsuu-no-joshikousei-ga-yatte-mita", "title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita.", - "mal_title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita.", + "mal_id": 30988, "poster": "https://aruppi.jeluchu.xyz/res/directory/1378.jpg", "type": "Anime", "genres": [ @@ -23721,7 +23721,7 @@ { "id": "glasslip", "title": "Glasslip", - "mal_title": "Glasslip", + "mal_id": 23079, "poster": "https://aruppi.jeluchu.xyz/res/directory/1379.jpg", "type": "Anime", "genres": [ @@ -23737,7 +23737,7 @@ { "id": "shirogane-no-ishi-argevollen", "title": "Shirogane no Ishi Argevollen", - "mal_title": "Shirogane no Ishi Argevollen", + "mal_id": 23325, "poster": "https://aruppi.jeluchu.xyz/res/directory/1380.jpg", "type": "Anime", "genres": [ @@ -23752,7 +23752,7 @@ { "id": "tokyo-ghoul", "title": "Tokyo Ghoul", - "mal_title": "Tokyo Ghoul", + "mal_id": 27899, "poster": "https://aruppi.jeluchu.xyz/res/directory/1381.jpg", "type": "Anime", "genres": [ @@ -23772,7 +23772,7 @@ { "id": "strait-jacket", "title": "Strait Jacket", - "mal_title": "Strait Jacket", + "mal_id": 3086, "poster": "https://aruppi.jeluchu.xyz/res/directory/1382.jpg", "type": "Película", "genres": [ @@ -23788,7 +23788,7 @@ { "id": "shin-strange-plus", "title": "Shin Strange+", - "mal_title": "Shin Strange+", + "mal_id": 23433, "poster": "https://aruppi.jeluchu.xyz/res/directory/1383.jpg", "type": "Anime", "genres": [ @@ -23804,7 +23804,7 @@ { "id": "rail-wars", "title": "Rail Wars!", - "mal_title": "Rail Wars!", + "mal_id": 23309, "poster": "https://aruppi.jeluchu.xyz/res/directory/1384.jpg", "type": "Anime", "genres": [ @@ -23820,7 +23820,7 @@ { "id": "shounen-hollywood-holly-stage-for-49", "title": "Shounen Hollywood: Holly Stage for 49", - "mal_title": "Shounen Hollywood: Holly Stage for 49", + "mal_id": 23151, "poster": "https://aruppi.jeluchu.xyz/res/directory/1385.jpg", "type": "Anime", "genres": [ @@ -23836,7 +23836,7 @@ { "id": "bishoujo-senshi-sailor-moon-crystal", "title": "Bishoujo Senshi Sailor Moon: Crystal", - "mal_title": "Bishoujo Senshi Sailor Moon: Crystal", + "mal_id": 14751, "poster": "https://aruppi.jeluchu.xyz/res/directory/1386.jpg", "type": "Anime", "genres": [ @@ -23853,7 +23853,7 @@ { "id": "sword-art-online-2", "title": "Sword Art Online II", - "mal_title": "Sword Art Online II", + "mal_id": 21881, "poster": "https://aruppi.jeluchu.xyz/res/directory/1387.jpg", "type": "Anime", "genres": [ @@ -23871,7 +23871,7 @@ { "id": "aldnoah-zero", "title": "Aldnoah.Zero", - "mal_title": "Aldnoah.Zero", + "mal_id": 22729, "poster": "https://aruppi.jeluchu.xyz/res/directory/1388.jpg", "type": "Anime", "genres": [ @@ -23887,7 +23887,7 @@ { "id": "sengoku-basara-judge-end", "title": "Sengoku Basara Judge End", - "mal_title": "Sengoku Basara Judge End", + "mal_id": 23201, "poster": "https://aruppi.jeluchu.xyz/res/directory/1389.jpg", "type": "Anime", "genres": [ @@ -23905,7 +23905,7 @@ { "id": "barakamon", "title": "Barakamon", - "mal_title": "Barakamon", + "mal_id": 22789, "poster": "https://aruppi.jeluchu.xyz/res/directory/1390.jpg", "type": "Anime", "genres": [ @@ -23920,7 +23920,7 @@ { "id": "jinsei", "title": "Jinsei", - "mal_title": "Jinsei", + "mal_id": 23121, "poster": "https://aruppi.jeluchu.xyz/res/directory/1391.jpg", "type": "Anime", "genres": [ @@ -23936,7 +23936,7 @@ { "id": "sabagebu", "title": "Sabagebu!", - "mal_title": "Sabagebu!", + "mal_id": 20709, "poster": "https://aruppi.jeluchu.xyz/res/directory/1392.jpg", "type": "Anime", "genres": [ @@ -23953,7 +23953,7 @@ { "id": "space-dandy-2", "title": "Space☆Dandy 2", - "mal_title": "Space☆Dandy 2", + "mal_id": 20057, "poster": "https://aruppi.jeluchu.xyz/res/directory/1393.jpg", "type": "Anime", "genres": [ @@ -23969,7 +23969,7 @@ { "id": "akame-ga-kill", "title": "Akame ga Kill!", - "mal_title": "Akame ga Kill!", + "mal_id": 26449, "poster": "https://aruppi.jeluchu.xyz/res/directory/1394.jpg", "type": "Anime", "genres": [ @@ -23985,7 +23985,7 @@ { "id": "gekkan-shoujo-nozaki-kun", "title": "Gekkan Shoujo Nozaki-kun", - "mal_title": "Gekkan Shoujo Nozaki-kun", + "mal_id": 23289, "poster": "https://aruppi.jeluchu.xyz/res/directory/1395.jpg", "type": "Anime", "genres": [ @@ -24001,7 +24001,7 @@ { "id": "francesca", "title": "Francesca", - "mal_title": "Francesca", + "mal_id": 22955, "poster": "https://aruppi.jeluchu.xyz/res/directory/1396.jpg", "type": "Anime", "genres": [ @@ -24016,7 +24016,7 @@ { "id": "dramatical-murder", "title": "DRAMAtical Murder", - "mal_title": "DRAMAtical Murder", + "mal_id": 23333, "poster": "https://aruppi.jeluchu.xyz/res/directory/1397.jpg", "type": "Anime", "genres": [ @@ -24033,7 +24033,7 @@ { "id": "yami-shibai-2", "title": "Yami Shibai 2", - "mal_title": "Yami Shibai 2", + "mal_id": 22537, "poster": "https://aruppi.jeluchu.xyz/res/directory/1398.jpg", "type": "Anime", "genres": [ @@ -24049,7 +24049,7 @@ { "id": "himegoto", "title": "Himegoto", - "mal_title": "Himegoto", + "mal_id": 22835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1399.jpg", "type": "Anime", "genres": [ @@ -24064,7 +24064,7 @@ { "id": "ao-haru-ride", "title": "Ao Haru Ride", - "mal_title": "Ao Haru Ride", + "mal_id": 24151, "poster": "https://aruppi.jeluchu.xyz/res/directory/1400.jpg", "type": "Anime", "genres": [ @@ -24083,7 +24083,7 @@ { "id": "hanayamata", "title": "Hanayamata", - "mal_title": "Hanayamata", + "mal_id": 21681, "poster": "https://aruppi.jeluchu.xyz/res/directory/1401.jpg", "type": "Anime", "genres": [ @@ -24100,7 +24100,7 @@ { "id": "hamatora-2", "title": "Re: Hamatora", - "mal_title": "Re: Hamatora", + "mal_id": 23421, "poster": "https://aruppi.jeluchu.xyz/res/directory/1402.jpg", "type": "Anime", "genres": [ @@ -24116,7 +24116,7 @@ { "id": "momo-kyun-sword", "title": "Momo Kyun Sword", - "mal_title": "Momo Kyun Sword", + "mal_id": 22225, "poster": "https://aruppi.jeluchu.xyz/res/directory/1403.jpg", "type": "Anime", "genres": [ @@ -24132,7 +24132,7 @@ { "id": "majimoji-rurumo", "title": "Majimoji Rurumo", - "mal_title": "Majimoji Rurumo", + "mal_id": 23945, "poster": "https://aruppi.jeluchu.xyz/res/directory/1404.jpg", "type": "Anime", "genres": [ @@ -24151,7 +24151,7 @@ { "id": "yama-no-susume-2", "title": "Yama no Susume 2", - "mal_title": "Yama no Susume 2", + "mal_id": 14355, "poster": "https://aruppi.jeluchu.xyz/res/directory/1405.jpg", "type": "Anime", "genres": [ @@ -24167,7 +24167,7 @@ { "id": "love-stage", "title": "Love Stage!!", - "mal_title": "Love Stage!!", + "mal_id": 21105, "poster": "https://aruppi.jeluchu.xyz/res/directory/1406.jpg", "type": "Anime", "genres": [ @@ -24183,7 +24183,7 @@ { "id": "fate-kaleid-liner-prisma-illya-zwei", "title": "Fate/Kaleid Liner Prisma☆Illya Zwei!", - "mal_title": "Fate/Kaleid Liner Prisma☆Illya Zwei!", + "mal_id": 20509, "poster": "https://aruppi.jeluchu.xyz/res/directory/1407.jpg", "type": "Anime", "genres": [ @@ -24200,7 +24200,7 @@ { "id": "zankyou-no-terror", "title": "Zankyou no Terror", - "mal_title": "Zankyou no Terror", + "mal_id": 23283, "poster": "https://aruppi.jeluchu.xyz/res/directory/1408.jpg", "type": "Anime", "genres": [ @@ -24215,7 +24215,7 @@ { "id": "psycho-pass-new-edit-version", "title": "Psycho-Pass New Edit Version", - "mal_title": "Psycho-Pass New Edit Version", + "mal_id": 13601, "poster": "https://aruppi.jeluchu.xyz/res/directory/1409.jpg", "type": "Anime", "genres": [ @@ -24229,7 +24229,7 @@ { "id": "persona-4-the-golden-animation", "title": "Persona 4 The Golden Animation", - "mal_title": "Persona 4 The Golden Animation", + "mal_id": 24075, "poster": "https://aruppi.jeluchu.xyz/res/directory/1410.jpg", "type": "Anime", "genres": [ @@ -24248,7 +24248,7 @@ { "id": "kuroshitsuji-book-of-circus", "title": "Kuroshitsuji: Book of Circus", - "mal_title": "Kuroshitsuji: Book of Circus", + "mal_id": 22145, "poster": "https://aruppi.jeluchu.xyz/res/directory/1411.jpg", "type": "Anime", "genres": [ @@ -24267,7 +24267,7 @@ { "id": "rokujouma-no-shinryakusha", "title": "Rokujouma no Shinryakusha!?", - "mal_title": "Rokujouma no Shinryakusha!?", + "mal_id": 22865, "poster": "https://aruppi.jeluchu.xyz/res/directory/1412.jpg", "type": "Anime", "genres": [ @@ -24285,7 +24285,7 @@ { "id": "tokyo-esp", "title": "Tokyo ESP", - "mal_title": "Tokyo ESP", + "mal_id": 21353, "poster": "https://aruppi.jeluchu.xyz/res/directory/1413.jpg", "type": "Anime", "genres": [ @@ -24304,7 +24304,7 @@ { "id": "nobunaga-concerto", "title": "Nobunaga Concerto", - "mal_title": "Nobunaga Concerto", + "mal_id": 24135, "poster": "https://aruppi.jeluchu.xyz/res/directory/1414.jpg", "type": "Anime", "genres": [ @@ -24320,7 +24320,7 @@ { "id": "seirei-tsukai-no-blade-dance", "title": "Seirei Tsukai no Blade Dance", - "mal_title": "Seirei Tsukai no Blade Dance", + "mal_id": 25285, "poster": "https://aruppi.jeluchu.xyz/res/directory/1415.jpg", "type": "Anime", "genres": [ @@ -24341,7 +24341,7 @@ { "id": "la-leyenda-de-korra-libro-3", "title": "La Leyenda de Korra: Libro 3", - "mal_title": "La Leyenda de Korra: Libro 3", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1416.jpg", "type": "Anime", "genres": [ @@ -24355,7 +24355,7 @@ { "id": "sousei-no-aquarion", "title": "Sousei no Aquarion", - "mal_title": "Sousei no Aquarion", + "mal_id": 478, "poster": "https://aruppi.jeluchu.xyz/res/directory/1417.jpg", "type": "Anime", "genres": [ @@ -24374,7 +24374,7 @@ { "id": "sousei-no-aquarion-uragiri-no-tsubasa", "title": "Sousei no Aquarion: Uragiri no Tsubasa", - "mal_title": "Sousei no Aquarion: Uragiri no Tsubasa", + "mal_id": 2170, "poster": "https://aruppi.jeluchu.xyz/res/directory/1418.jpg", "type": "OVA", "genres": [ @@ -24393,7 +24393,7 @@ { "id": "princess-resurrection", "title": "Princess Resurrection", - "mal_title": "Princess Resurrection", + "mal_id": 2130, "poster": "https://aruppi.jeluchu.xyz/res/directory/1419.jpg", "type": "Anime", "genres": [ @@ -24412,7 +24412,7 @@ { "id": "kaibutsu-oujo", "title": "Kaibutsu Oujo", - "mal_title": "Kaibutsu Oujo", + "mal_id": 2130, "poster": "https://aruppi.jeluchu.xyz/res/directory/1420.jpg", "type": "OVA", "genres": [ @@ -24430,7 +24430,7 @@ { "id": "rahxephon", "title": "RahXephon", - "mal_title": "RahXephon", + "mal_id": 165, "poster": "https://aruppi.jeluchu.xyz/res/directory/1421.jpg", "type": "Anime", "genres": [ @@ -24451,7 +24451,7 @@ { "id": "rahxephon-ova", "title": "RahXephon Kansoukyoku: Kanojo to Kanojo Jishin to - Thatness and Thereness ", - "mal_title": "RahXephon Kansoukyoku: Kanojo to Kanojo Jishin to - Thatness and Thereness ", + "mal_id": 559, "poster": "https://aruppi.jeluchu.xyz/res/directory/1422.jpg", "type": "OVA", "genres": [ @@ -24467,7 +24467,7 @@ { "id": "rahxephon-tagen-hensoukyoku", "title": "RahXephon: Tagen Hensoukyoku", - "mal_title": "RahXephon: Tagen Hensoukyoku", + "mal_id": 758, "poster": "https://aruppi.jeluchu.xyz/res/directory/1423.jpg", "type": "Película", "genres": [ @@ -24486,7 +24486,7 @@ { "id": "ookii-1-nensei-to-chiisana-2-nensei", "title": "Ookii 1 Nensei to Chiisana 2 Nensei", - "mal_title": "Ookii 1 Nensei to Chiisana 2 Nensei", + "mal_id": 20907, "poster": "https://aruppi.jeluchu.xyz/res/directory/1424.jpg", "type": "Película", "genres": [ @@ -24500,7 +24500,7 @@ { "id": "no-game-no-life-specials", "title": "No Game No Life Specials", - "mal_title": "No Game No Life Specials", + "mal_id": 24991, "poster": "https://aruppi.jeluchu.xyz/res/directory/1425.jpg", "type": "OVA", "genres": [ @@ -24516,7 +24516,7 @@ { "id": "ark-IX", "title": "Ark IX", - "mal_title": "Ark IX", + "mal_id": 17395, "poster": "https://aruppi.jeluchu.xyz/res/directory/1426.jpg", "type": "OVA", "genres": [ @@ -24530,7 +24530,7 @@ { "id": "majokko-shimai-no-yoyo-to-nene", "title": "Majokko Shimai no Yoyo to Nene", - "mal_title": "Majokko Shimai no Yoyo to Nene", + "mal_id": 15813, "poster": "https://aruppi.jeluchu.xyz/res/directory/1427.jpg", "type": "Película", "genres": [ @@ -24545,7 +24545,7 @@ { "id": "girls-und-panzer-kore-ga-hontou-no-anzio-sen-desu", "title": "Girls und Panzer: Kore ga Hontou no Anzio-sen Desu!", - "mal_title": "Girls und Panzer: Kore ga Hontou no Anzio-sen Desu!", + "mal_id": 18619, "poster": "https://aruppi.jeluchu.xyz/res/directory/1428.jpg", "type": "OVA", "genres": [ @@ -24560,7 +24560,7 @@ { "id": "kidou-senshi-gundam-san", "title": "Kidou Senshi Gundam-san", - "mal_title": "Kidou Senshi Gundam-san", + "mal_id": 24835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1429.jpg", "type": "Anime", "genres": [ @@ -24576,7 +24576,7 @@ { "id": "puri-para", "title": "Puri Para", - "mal_title": "Puri Para", + "mal_id": 23135, "poster": "https://aruppi.jeluchu.xyz/res/directory/1430.jpg", "type": "Anime", "genres": [ @@ -24593,7 +24593,7 @@ { "id": "solty-rei", "title": "Solty Rei", - "mal_title": "Solty Rei", + "mal_id": 152, "poster": "https://aruppi.jeluchu.xyz/res/directory/1431.jpg", "type": "Anime", "genres": [ @@ -24609,7 +24609,7 @@ { "id": "ai-mai-mi-mousou-catastrophe", "title": "Ai Mai Mi: Mousou Catastrophe", - "mal_title": "Ai Mai Mi: Mousou Catastrophe", + "mal_id": 23551, "poster": "https://aruppi.jeluchu.xyz/res/directory/1432.jpg", "type": "Anime", "genres": [ @@ -24624,7 +24624,7 @@ { "id": "senjou-no-valkyria-valkyria-chronicles", "title": "Senjou no Valkyria: Valkyria Chronicles", - "mal_title": "Senjou no Valkyria: Valkyria Chronicles", + "mal_id": 5507, "poster": "https://aruppi.jeluchu.xyz/res/directory/1433.jpg", "type": "Anime", "genres": [ @@ -24640,7 +24640,7 @@ { "id": "akame-ga-kill-theater", "title": "Akame ga Kill Theater", - "mal_title": "Akame ga Kill Theater", + "mal_id": 25241, "poster": "https://aruppi.jeluchu.xyz/res/directory/1434.jpg", "type": "Anime", "genres": [ @@ -24654,7 +24654,7 @@ { "id": "lost-universe", "title": "Lost Universe", - "mal_title": "Lost Universe", + "mal_id": 1184, "poster": "https://aruppi.jeluchu.xyz/res/directory/1435.jpg", "type": "Anime", "genres": [ @@ -24673,7 +24673,7 @@ { "id": "barakamon-mijikamon", "title": "Barakamon: Mijikamon", - "mal_title": "Barakamon: Mijikamon", + "mal_id": 25045, "poster": "https://aruppi.jeluchu.xyz/res/directory/1436.jpg", "type": "Anime", "genres": [ @@ -24687,7 +24687,7 @@ { "id": "mushibugyou-ova", "title": "Mushibugyou (2014)", - "mal_title": "Mushibugyou (2014)", + "mal_id": 17505, "poster": "https://aruppi.jeluchu.xyz/res/directory/1437.jpg", "type": "OVA", "genres": [ @@ -24707,7 +24707,7 @@ { "id": "ijime-ikenie-no-kyoushitsu", "title": "Ijime: Ikenie no Kyoushitsu", - "mal_title": "Ijime: Ikenie no Kyoushitsu", + "mal_id": 12599, "poster": "https://aruppi.jeluchu.xyz/res/directory/1438.jpg", "type": "OVA", "genres": [ @@ -24722,7 +24722,7 @@ { "id": "non-non-biyori-okinawa-e-ikukoto-ni-natta", "title": "Non Non Biyori: Okinawa e Ikukoto ni Natta", - "mal_title": "Non Non Biyori: Okinawa e Ikukoto ni Natta", + "mal_id": 21667, "poster": "https://aruppi.jeluchu.xyz/res/directory/1439.jpg", "type": "OVA", "genres": [ @@ -24739,7 +24739,7 @@ { "id": "hunter-x-hunter-the-last-mission", "title": "Hunter x Hunter: The Last Mission", - "mal_title": "Hunter x Hunter: The Last Mission", + "mal_id": 19951, "poster": "https://aruppi.jeluchu.xyz/res/directory/1440.jpg", "type": "Película", "genres": [ @@ -24756,7 +24756,7 @@ { "id": "witch-craft-works-specials", "title": "Witch Craft Works Specials", - "mal_title": "Witch Craft Works Specials", + "mal_id": 23487, "poster": "https://aruppi.jeluchu.xyz/res/directory/1441.jpg", "type": "OVA", "genres": [ @@ -24771,7 +24771,7 @@ { "id": "guardian-hearts", "title": "Guardian Hearts", - "mal_title": "Guardian Hearts", + "mal_id": 824, "poster": "https://aruppi.jeluchu.xyz/res/directory/1442.jpg", "type": "OVA", "genres": [ @@ -24789,7 +24789,7 @@ { "id": "guardian-hearts-power-up", "title": "Guardian Hearts Power UP!", - "mal_title": "Guardian Hearts Power UP!", + "mal_id": 3157, "poster": "https://aruppi.jeluchu.xyz/res/directory/1443.jpg", "type": "OVA", "genres": [ @@ -24809,7 +24809,7 @@ { "id": "sayonara-zetsubou-sensei", "title": "Sayonara Zetsubou Sensei", - "mal_title": "Sayonara Zetsubou Sensei", + "mal_id": 2605, "poster": "https://aruppi.jeluchu.xyz/res/directory/1444.jpg", "type": "Anime", "genres": [ @@ -24825,7 +24825,7 @@ { "id": "zoku-sayonara-zetsubou-sensei", "title": "Zoku Sayonara Zetsubou Sensei", - "mal_title": "Zoku Sayonara Zetsubou Sensei", + "mal_id": 3228, "poster": "https://aruppi.jeluchu.xyz/res/directory/1445.jpg", "type": "Anime", "genres": [ @@ -24841,7 +24841,7 @@ { "id": "goku-sayonara-zetsubou-sensei", "title": "Goku Sayonara Zetsubou Sensei", - "mal_title": "Goku Sayonara Zetsubou Sensei", + "mal_id": 4872, "poster": "https://aruppi.jeluchu.xyz/res/directory/1446.jpg", "type": "OVA", "genres": [ @@ -24857,7 +24857,7 @@ { "id": "zan-sayonara-zetsubou-sensei", "title": "Zan Sayonara Zetsubou Sensei", - "mal_title": "Zan Sayonara Zetsubou Sensei", + "mal_id": 6377, "poster": "https://aruppi.jeluchu.xyz/res/directory/1447.jpg", "type": "Anime", "genres": [ @@ -24873,7 +24873,7 @@ { "id": "zan-sayonara-zetsubou-sensei-bangaichi", "title": "Zan Sayonara Zetsubou Sensei Bangaichi", - "mal_title": "Zan Sayonara Zetsubou Sensei Bangaichi", + "mal_id": 7044, "poster": "https://aruppi.jeluchu.xyz/res/directory/1448.jpg", "type": "OVA", "genres": [ @@ -24889,7 +24889,7 @@ { "id": "shigurui", "title": "Shigurui", - "mal_title": "Shigurui", + "mal_id": 2216, "poster": "https://aruppi.jeluchu.xyz/res/directory/1449.jpg", "type": "Anime", "genres": [ @@ -24908,7 +24908,7 @@ { "id": "kousetsu-hyaku-monogatari", "title": "Kousetsu Hyaku Monogatari", - "mal_title": "Kousetsu Hyaku Monogatari", + "mal_id": 279, "poster": "https://aruppi.jeluchu.xyz/res/directory/1450.jpg", "type": "Anime", "genres": [ @@ -24927,7 +24927,7 @@ { "id": "tsubasa-chronicle-tori-kago-no-kuni-no-himegimi", "title": "Tsubasa Chronicle: Tori Kago no Kuni no Himegimi", - "mal_title": "Tsubasa Chronicle: Tori Kago no Kuni no Himegimi", + "mal_id": 807, "poster": "https://aruppi.jeluchu.xyz/res/directory/1451.jpg", "type": "Película", "genres": [ @@ -24945,7 +24945,7 @@ { "id": "phantom-requiem-for-the-phantom", "title": "Phantom: Requiem for the Phantom", - "mal_title": "Phantom: Requiem for the Phantom", + "mal_id": 5682, "poster": "https://aruppi.jeluchu.xyz/res/directory/1452.jpg", "type": "Anime", "genres": [ @@ -24962,7 +24962,7 @@ { "id": "evangelion-10-you-are-not-alone", "title": "Evangelion: 1.11 You Are (Not) Alone", - "mal_title": "Evangelion: 1.11 You Are (Not) Alone", + "mal_id": 2759, "poster": "https://aruppi.jeluchu.xyz/res/directory/1453.jpg", "type": "Película", "genres": [ @@ -24978,7 +24978,7 @@ { "id": "evangelion-20-you-can-not-advance", "title": "Evangelion: 2.22 You Can (Not) Advance", - "mal_title": "Evangelion: 2.22 You Can (Not) Advance", + "mal_id": 3784, "poster": "https://aruppi.jeluchu.xyz/res/directory/1454.jpg", "type": "Película", "genres": [ @@ -24994,7 +24994,7 @@ { "id": "shinkyoku-sukai-polyphonica", "title": "Shinkyoku Soukai Polyphonica", - "mal_title": "Shinkyoku Soukai Polyphonica", + "mal_id": 1727, "poster": "https://aruppi.jeluchu.xyz/res/directory/1455.jpg", "type": "Anime", "genres": [ @@ -25012,7 +25012,7 @@ { "id": "shinkyoku-soukai-polyphonica-crimson-s", "title": "Shinkyoku Soukai Polyphonica: Crimson S", - "mal_title": "Shinkyoku Soukai Polyphonica: Crimson S", + "mal_id": 5504, "poster": "https://aruppi.jeluchu.xyz/res/directory/1456.jpg", "type": "Anime", "genres": [ @@ -25030,7 +25030,7 @@ { "id": "tiger-and-bunny-movie-1-the-beginning", "title": "Tiger & Bunny Movie 1: The Beginning", - "mal_title": "Tiger & Bunny Movie 1: The Beginning", + "mal_id": 12017, "poster": "https://aruppi.jeluchu.xyz/res/directory/1457.jpg", "type": "Película", "genres": [ @@ -25047,7 +25047,7 @@ { "id": "tiger-and-bunny-movie-2-the-rising", "title": "Tiger & Bunny Movie 2: The Rising", - "mal_title": "Tiger & Bunny Movie 2: The Rising", + "mal_id": 12017, "poster": "https://aruppi.jeluchu.xyz/res/directory/1458.jpg", "type": "Película", "genres": [ @@ -25064,7 +25064,7 @@ { "id": "neon-genesis-evangelion-death-and-rebirth", "title": "Neon Genesis Evangelion: Death & Rebirth", - "mal_title": "Neon Genesis Evangelion: Death & Rebirth", + "mal_id": 31, "poster": "https://aruppi.jeluchu.xyz/res/directory/1459.jpg", "type": "Película", "genres": [ @@ -25081,7 +25081,7 @@ { "id": "neon-genesis-evangelion-the-end-of-evangelion", "title": "Neon Genesis Evangelion: The End of Evangelion", - "mal_title": "Neon Genesis Evangelion: The End of Evangelion", + "mal_id": 32, "poster": "https://aruppi.jeluchu.xyz/res/directory/1460.jpg", "type": "Película", "genres": [ @@ -25099,7 +25099,7 @@ { "id": "mitsuwano", "title": "Mitsuwano", - "mal_title": "Mitsuwano", + "mal_id": 21649, "poster": "https://aruppi.jeluchu.xyz/res/directory/1461.jpg", "type": "OVA", "genres": [ @@ -25113,7 +25113,7 @@ { "id": "bounen-no-xamdou", "title": "Bounen no Xamdou", - "mal_title": "Bounen no Xamdou", + "mal_id": 4177, "poster": "https://aruppi.jeluchu.xyz/res/directory/1462.jpg", "type": "Anime", "genres": [ @@ -25129,7 +25129,7 @@ { "id": "zipang", "title": "Zipang", - "mal_title": "Zipang", + "mal_id": 29, "poster": "https://aruppi.jeluchu.xyz/res/directory/1463.jpg", "type": "Anime", "genres": [ @@ -25148,7 +25148,7 @@ { "id": "koutetsu-sangokushi", "title": "Koutetsu Sangokushi", - "mal_title": "Koutetsu Sangokushi", + "mal_id": 2162, "poster": "https://aruppi.jeluchu.xyz/res/directory/1464.jpg", "type": "Anime", "genres": [ @@ -25164,7 +25164,7 @@ { "id": "da-capo", "title": "Da Capo", - "mal_title": "Da Capo", + "mal_id": 62, "poster": "https://aruppi.jeluchu.xyz/res/directory/1465.jpg", "type": "Anime", "genres": [ @@ -25181,7 +25181,7 @@ { "id": "da-capo-second-season", "title": "Da Capo Second Season", - "mal_title": "Da Capo Second Season", + "mal_id": 291, "poster": "https://aruppi.jeluchu.xyz/res/directory/1466.jpg", "type": "Anime", "genres": [ @@ -25199,7 +25199,7 @@ { "id": "da-capo-if", "title": "Da Capo If", - "mal_title": "Da Capo If", + "mal_id": 5216, "poster": "https://aruppi.jeluchu.xyz/res/directory/1467.jpg", "type": "OVA", "genres": [ @@ -25216,7 +25216,7 @@ { "id": "da-capo-2", "title": "Da Capo II", - "mal_title": "Da Capo II", + "mal_id": 2595, "poster": "https://aruppi.jeluchu.xyz/res/directory/1468.jpg", "type": "Anime", "genres": [ @@ -25233,7 +25233,7 @@ { "id": "da-capo-2-second-season", "title": "Da Capo II Second Season", - "mal_title": "Da Capo II Second Season", + "mal_id": 3627, "poster": "https://aruppi.jeluchu.xyz/res/directory/1469.jpg", "type": "Anime", "genres": [ @@ -25251,7 +25251,7 @@ { "id": "t-p-sakura-time-paladin-sakura", "title": "T.P. Sakura: Time Paladin Sakura", - "mal_title": "T.P. Sakura: Time Paladin Sakura", + "mal_id": 9393, "poster": "https://aruppi.jeluchu.xyz/res/directory/1470.jpg", "type": "OVA", "genres": [ @@ -25266,7 +25266,7 @@ { "id": "tantei-gakuen-q", "title": "Tantei Gakuen Q", - "mal_title": "Tantei Gakuen Q", + "mal_id": 407, "poster": "https://aruppi.jeluchu.xyz/res/directory/1471.jpg", "type": "Anime", "genres": [ @@ -25284,7 +25284,7 @@ { "id": "terra-formars-ova", "title": "Terra Formars OVA", - "mal_title": "Terra Formars OVA", + "mal_id": 22687, "poster": "https://aruppi.jeluchu.xyz/res/directory/1472.jpg", "type": "OVA", "genres": [ @@ -25303,7 +25303,7 @@ { "id": "nozo-x-kimi", "title": "Nozo x Kimi", - "mal_title": "Nozo x Kimi", + "mal_id": 24175, "poster": "https://aruppi.jeluchu.xyz/res/directory/1473.jpg", "type": "OVA", "genres": [ @@ -25321,7 +25321,7 @@ { "id": "senkou-no-night-raid", "title": "Senkou no Night Raid", - "mal_title": "Senkou no Night Raid", + "mal_id": 8840, "poster": "https://aruppi.jeluchu.xyz/res/directory/1474.jpg", "type": "Anime", "genres": [ @@ -25338,7 +25338,7 @@ { "id": "sumomomo-momomo", "title": "Sumomomo Momomo", - "mal_title": "Sumomomo Momomo", + "mal_id": 1568, "poster": "https://aruppi.jeluchu.xyz/res/directory/1475.jpg", "type": "Anime", "genres": [ @@ -25356,7 +25356,7 @@ { "id": "dennou-coil", "title": "Dennou Coil", - "mal_title": "Dennou Coil", + "mal_id": 2164, "poster": "https://aruppi.jeluchu.xyz/res/directory/1476.jpg", "type": "Anime", "genres": [ @@ -25374,7 +25374,7 @@ { "id": "kekkaishi", "title": "Kekkaishi", - "mal_title": "Kekkaishi", + "mal_id": 1606, "poster": "https://aruppi.jeluchu.xyz/res/directory/1477.jpg", "type": "Anime", "genres": [ @@ -25391,7 +25391,7 @@ { "id": "trinity-blood", "title": "Trinity Blood", - "mal_title": "Trinity Blood", + "mal_id": 27, "poster": "https://aruppi.jeluchu.xyz/res/directory/1478.jpg", "type": "Anime", "genres": [ @@ -25407,7 +25407,7 @@ { "id": "peach-girl", "title": "Peach Girl", - "mal_title": "Peach Girl", + "mal_id": 325, "poster": "https://aruppi.jeluchu.xyz/res/directory/1479.jpg", "type": "Anime", "genres": [ @@ -25424,7 +25424,7 @@ { "id": "souten-no-ken", "title": "Souten no Ken", - "mal_title": "Souten no Ken", + "mal_id": 1541, "poster": "https://aruppi.jeluchu.xyz/res/directory/1480.jpg", "type": "Anime", "genres": [ @@ -25440,7 +25440,7 @@ { "id": "hokuto-no-ken", "title": "Hokuto no Ken", - "mal_title": "Hokuto no Ken", + "mal_id": 967, "poster": "https://aruppi.jeluchu.xyz/res/directory/1481.jpg", "type": "Anime", "genres": [ @@ -25458,7 +25458,7 @@ { "id": "hokuto-no-ken-movie", "title": "Hokuto no Ken Movie", - "mal_title": "Hokuto no Ken Movie", + "mal_id": 1358, "poster": "https://aruppi.jeluchu.xyz/res/directory/1482.jpg", "type": "Película", "genres": [ @@ -25474,7 +25474,7 @@ { "id": "hokuto-no-ken-2", "title": "Hokuto no Ken 2", - "mal_title": "Hokuto no Ken 2", + "mal_id": 1356, "poster": "https://aruppi.jeluchu.xyz/res/directory/1483.jpg", "type": "Anime", "genres": [ @@ -25491,7 +25491,7 @@ { "id": "shin-hokuto-no-ken", "title": "Shin Hokuto no Ken", - "mal_title": "Shin Hokuto no Ken", + "mal_id": 1357, "poster": "https://aruppi.jeluchu.xyz/res/directory/1484.jpg", "type": "OVA", "genres": [ @@ -25508,7 +25508,7 @@ { "id": "hokuto-no-ken-raou-gaiden-ten-no-haou", "title": "Hokuto no Ken Raou Gaiden Ten no Haou", - "mal_title": "Hokuto no Ken Raou Gaiden Ten no Haou", + "mal_id": 4549, "poster": "https://aruppi.jeluchu.xyz/res/directory/1485.jpg", "type": "Anime", "genres": [ @@ -25524,7 +25524,7 @@ { "id": "hokuto-no-ken-raoh-gaiden-junai-hen", "title": "Hokuto no Ken: Raoh Gaiden Junai-hen", - "mal_title": "Hokuto no Ken: Raoh Gaiden Junai-hen", + "mal_id": 1773, "poster": "https://aruppi.jeluchu.xyz/res/directory/1486.jpg", "type": "Película", "genres": [ @@ -25540,7 +25540,7 @@ { "id": "hokuto-no-ken-yuria-den", "title": "Hokuto no Ken: Yuria-den", - "mal_title": "Hokuto no Ken: Yuria-den", + "mal_id": 3027, "poster": "https://aruppi.jeluchu.xyz/res/directory/1487.jpg", "type": "OVA", "genres": [ @@ -25557,7 +25557,7 @@ { "id": "hokuto-no-ken-raoh-gaiden-gekitou-hen", "title": "Hokuto no Ken: Raoh Gaiden Gekitou-hen", - "mal_title": "Hokuto no Ken: Raoh Gaiden Gekitou-hen", + "mal_id": 2174, "poster": "https://aruppi.jeluchu.xyz/res/directory/1488.jpg", "type": "Película", "genres": [ @@ -25574,7 +25574,7 @@ { "id": "hokuto-no-ken-toki-den", "title": "Hokuto no Ken: Toki-den", - "mal_title": "Hokuto no Ken: Toki-den", + "mal_id": 4312, "poster": "https://aruppi.jeluchu.xyz/res/directory/1489.jpg", "type": "OVA", "genres": [ @@ -25589,7 +25589,7 @@ { "id": "hokuto-no-ken-zero-kenshiro-den", "title": "Hokuto no Ken: Zero Kenshiro Den", - "mal_title": "Hokuto no Ken: Zero Kenshiro Den", + "mal_id": 5291, "poster": "https://aruppi.jeluchu.xyz/res/directory/1490.jpg", "type": "OVA", "genres": [ @@ -25603,7 +25603,7 @@ { "id": "kore-ga-watashi-no-goshujin-sama", "title": "Kore ga Watashi no Goshujin-sama", - "mal_title": "Kore ga Watashi no Goshujin-sama", + "mal_id": 412, "poster": "https://aruppi.jeluchu.xyz/res/directory/1491.jpg", "type": "Anime", "genres": [ @@ -25619,7 +25619,7 @@ { "id": "pretty-rhythm-aurora-dream", "title": "Pretty Rhythm: Aurora Dream", - "mal_title": "Pretty Rhythm: Aurora Dream", + "mal_id": 10257, "poster": "https://aruppi.jeluchu.xyz/res/directory/1492.jpg", "type": "Anime", "genres": [ @@ -25636,7 +25636,7 @@ { "id": "pretty-rhythm-dear-my-future", "title": "Pretty Rhythm: Dear My Future", - "mal_title": "Pretty Rhythm: Dear My Future", + "mal_id": 12863, "poster": "https://aruppi.jeluchu.xyz/res/directory/1493.jpg", "type": "Anime", "genres": [ @@ -25653,7 +25653,7 @@ { "id": "princess-tutu", "title": "Princess Tutu", - "mal_title": "Princess Tutu", + "mal_id": 721, "poster": "https://aruppi.jeluchu.xyz/res/directory/1494.jpg", "type": "Anime", "genres": [ @@ -25670,7 +25670,7 @@ { "id": "jikuu-tenshou-nazca", "title": "Jikuu Tenshou Nazca", - "mal_title": "Jikuu Tenshou Nazca", + "mal_id": 1775, "poster": "https://aruppi.jeluchu.xyz/res/directory/1495.jpg", "type": "Anime", "genres": [ @@ -25688,7 +25688,7 @@ { "id": "exce-saga", "title": "Excel Saga", - "mal_title": "Excel Saga", + "mal_id": 379, "poster": "https://aruppi.jeluchu.xyz/res/directory/1496.jpg", "type": "Anime", "genres": [ @@ -25705,7 +25705,7 @@ { "id": "puni-puni-poemi", "title": "Puni Puni Poemi", - "mal_title": "Puni Puni Poemi", + "mal_id": 564, "poster": "https://aruppi.jeluchu.xyz/res/directory/1497.jpg", "type": "OVA", "genres": [ @@ -25722,7 +25722,7 @@ { "id": "jigoku-sensei-nube-ova", "title": "Jigoku Sensei Nube OVA", - "mal_title": "Jigoku Sensei Nube OVA", + "mal_id": 2745, "poster": "https://aruppi.jeluchu.xyz/res/directory/1498.jpg", "type": "OVA", "genres": [ @@ -25742,7 +25742,7 @@ { "id": "jigoku-sensei-nube-movie", "title": "Jigoku Sensei Nube Movie", - "mal_title": "Jigoku Sensei Nube Movie", + "mal_id": 8208, "poster": "https://aruppi.jeluchu.xyz/res/directory/1499.jpg", "type": "Película", "genres": [ @@ -25761,7 +25761,7 @@ { "id": "jigoku-sensei-nube-gozen-0-toki-nube-shisu", "title": "Jigoku Sensei Nube: Gozen 0 toki Nube Shisu", - "mal_title": "Jigoku Sensei Nube: Gozen 0 toki Nube Shisu", + "mal_id": 8228, "poster": "https://aruppi.jeluchu.xyz/res/directory/1500.jpg", "type": "Película", "genres": [ @@ -25780,7 +25780,7 @@ { "id": "jigoku-sensei-nube-kyoufu-no-natsu-yasumi", "title": "Jigoku Sensei Nube: Kyoufu no Natsu Yasumi! Asashi no Uni no Gensetsu", - "mal_title": "Jigoku Sensei Nube: Kyoufu no Natsu Yasumi! Asashi no Uni no Gensetsu", + "mal_id": 5296, "poster": "https://aruppi.jeluchu.xyz/res/directory/1501.jpg", "type": "Película", "genres": [ @@ -25798,7 +25798,7 @@ { "id": "nana-to-kaoru", "title": "Nana to Kaoru", - "mal_title": "Nana to Kaoru", + "mal_id": 9741, "poster": "https://aruppi.jeluchu.xyz/res/directory/1502.jpg", "type": "OVA", "genres": [ @@ -25815,7 +25815,7 @@ { "id": "dareka-no-manazashi", "title": "Dareka no Manazashi", - "mal_title": "Dareka no Manazashi", + "mal_id": 17121, "poster": "https://aruppi.jeluchu.xyz/res/directory/1503.jpg", "type": "OVA", "genres": [ @@ -25830,7 +25830,7 @@ { "id": "uchuu-senkan-yamato-2199", "title": "Uchuu Senkan Yamato 2199", - "mal_title": "Uchuu Senkan Yamato 2199", + "mal_id": 12029, "poster": "https://aruppi.jeluchu.xyz/res/directory/1504.jpg", "type": "Anime", "genres": [ @@ -25848,7 +25848,7 @@ { "id": "akihabara-dennou-gumi", "title": "Akihabara Dennou Gumi", - "mal_title": "Akihabara Dennou Gumi", + "mal_id": 2288, "poster": "https://aruppi.jeluchu.xyz/res/directory/1505.jpg", "type": "Anime", "genres": [ @@ -25865,7 +25865,7 @@ { "id": "akihabara-dennou-gumi-2011-nen-no-natsuyasumi", "title": "Akihabara Dennou-gumi: 2011 Nen no Natsuyasumi", - "mal_title": "Akihabara Dennou-gumi: 2011 Nen no Natsuyasumi", + "mal_id": 2289, "poster": "https://aruppi.jeluchu.xyz/res/directory/1506.jpg", "type": "Película", "genres": [ @@ -25882,7 +25882,7 @@ { "id": "muteki-kanban-musume", "title": "Muteki Kanban Musume", - "mal_title": "Muteki Kanban Musume", + "mal_id": 1738, "poster": "https://aruppi.jeluchu.xyz/res/directory/1507.jpg", "type": "Anime", "genres": [ @@ -25900,7 +25900,7 @@ { "id": "sunabouzu", "title": "Sunabouzu", - "mal_title": "Sunabouzu", + "mal_id": 25, "poster": "https://aruppi.jeluchu.xyz/res/directory/1508.jpg", "type": "Anime", "genres": [ @@ -25919,7 +25919,7 @@ { "id": "sora-no-otoshimono-final-eternal-my-master", "title": "Sora no Otoshimono Final: Eternal My Master", - "mal_title": "Sora no Otoshimono Final: Eternal My Master", + "mal_id": 12783, "poster": "https://aruppi.jeluchu.xyz/res/directory/1509.jpg", "type": "Película", "genres": [ @@ -25938,7 +25938,7 @@ { "id": "sekaiichi-hatsukoi-movie-yokozawa-takafumi-no-baai", "title": "Sekaiichi Hatsukoi Movie: Yokozawa Takafumi no Baai", - "mal_title": "Sekaiichi Hatsukoi Movie: Yokozawa Takafumi no Baai", + "mal_id": 20371, "poster": "https://aruppi.jeluchu.xyz/res/directory/1510.jpg", "type": "Película", "genres": [ @@ -25955,7 +25955,7 @@ { "id": "one-piece-3d2y-ace-no-shi-wo-koete-luffy-nakama-tono-chikai", "title": "One Piece 3D2Y", - "mal_title": "One Piece 3D2Y", + "mal_id": 25161, "poster": "https://aruppi.jeluchu.xyz/res/directory/1511.jpg", "type": "OVA", "genres": [ @@ -25972,7 +25972,7 @@ { "id": "mujaki-no-rakuen", "title": "Mujaki no Rakuen", - "mal_title": "Mujaki no Rakuen", + "mal_id": 23423, "poster": "https://aruppi.jeluchu.xyz/res/directory/1512.jpg", "type": "OVA", "genres": [ @@ -25990,7 +25990,7 @@ { "id": "monster-rancher", "title": "Monster Rancher", - "mal_title": "Monster Rancher", + "mal_id": 1469, "poster": "https://aruppi.jeluchu.xyz/res/directory/1513.jpg", "type": "Anime", "genres": [ @@ -26007,7 +26007,7 @@ { "id": "monster-rancher-2000", "title": "Monster Rancher (2000)", - "mal_title": "Monster Rancher (2000)", + "mal_id": 13201, "poster": "https://aruppi.jeluchu.xyz/res/directory/1514.jpg", "type": "Anime", "genres": [ @@ -26024,7 +26024,7 @@ { "id": "otome-wa-boku-ni-koishiteru", "title": "Otome wa Boku ni Koishiteru", - "mal_title": "Otome wa Boku ni Koishiteru", + "mal_id": 1569, "poster": "https://aruppi.jeluchu.xyz/res/directory/1515.jpg", "type": "Anime", "genres": [ @@ -26041,7 +26041,7 @@ { "id": "otome-wa-boku-ni-koishiteru-special", "title": "Otome wa Boku ni Koishiteru Special", - "mal_title": "Otome wa Boku ni Koishiteru Special", + "mal_id": 2615, "poster": "https://aruppi.jeluchu.xyz/res/directory/1516.jpg", "type": "OVA", "genres": [ @@ -26057,7 +26057,7 @@ { "id": "otome-wa-boku-ni-koishiteru-futari-no-elder", "title": "Otome wa Boku ni Koishiteru: Futari no Elder", - "mal_title": "Otome wa Boku ni Koishiteru: Futari no Elder", + "mal_id": 9988, "poster": "https://aruppi.jeluchu.xyz/res/directory/1517.jpg", "type": "OVA", "genres": [ @@ -26073,7 +26073,7 @@ { "id": "hakuouki-movie-1-kyoto-ranbu", "title": "Hakuouki Movie 1: Kyoto Ranbu", - "mal_title": "Hakuouki Movie 1: Kyoto Ranbu", + "mal_id": 13117, "poster": "https://aruppi.jeluchu.xyz/res/directory/1518.jpg", "type": "Película", "genres": [ @@ -26092,7 +26092,7 @@ { "id": "druaga-no-tou-the-aegis-of-uruk", "title": "Druaga no Tou: the Aegis of Uruk", - "mal_title": "Druaga no Tou: the Aegis of Uruk", + "mal_id": 3230, "poster": "https://aruppi.jeluchu.xyz/res/directory/1519.jpg", "type": "Anime", "genres": [ @@ -26108,7 +26108,7 @@ { "id": "druaga-no-tou-the-sword-of-uruk", "title": "Druaga no Tou: the Sword of Uruk", - "mal_title": "Druaga no Tou: the Sword of Uruk", + "mal_id": 4726, "poster": "https://aruppi.jeluchu.xyz/res/directory/1520.jpg", "type": "Anime", "genres": [ @@ -26123,7 +26123,7 @@ { "id": "rizelmine", "title": "Rizelmine", - "mal_title": "Rizelmine", + "mal_id": 197, "poster": "https://aruppi.jeluchu.xyz/res/directory/1521.jpg", "type": "Anime", "genres": [ @@ -26141,7 +26141,7 @@ { "id": "gakuen-heaven", "title": "Gakuen Heaven", - "mal_title": "Gakuen Heaven", + "mal_id": 850, "poster": "https://aruppi.jeluchu.xyz/res/directory/1522.jpg", "type": "Anime", "genres": [ @@ -26159,7 +26159,7 @@ { "id": "kaidan-restaurant", "title": "Kaidan Restaurant", - "mal_title": "Kaidan Restaurant", + "mal_id": 6980, "poster": "https://aruppi.jeluchu.xyz/res/directory/1523.jpg", "type": "Anime", "genres": [ @@ -26176,7 +26176,7 @@ { "id": "kare-kano", "title": "Kareshi Kanojo no Jijou", - "mal_title": "Kareshi Kanojo no Jijou", + "mal_id": 145, "poster": "https://aruppi.jeluchu.xyz/res/directory/1524.jpg", "type": "Anime", "genres": [ @@ -26195,7 +26195,7 @@ { "id": "mermaid-melody-pichi-pichi-pitch", "title": "Mermaid Melody Pichi Pichi Pitch", - "mal_title": "Mermaid Melody Pichi Pichi Pitch", + "mal_id": 521, "poster": "https://aruppi.jeluchu.xyz/res/directory/1525.jpg", "type": "Anime", "genres": [ @@ -26213,7 +26213,7 @@ { "id": "mermaid-melody-pichi-pichi-pitch-pure", "title": "Mermaid Melody Pichi Pichi Pitch Pure", - "mal_title": "Mermaid Melody Pichi Pichi Pitch Pure", + "mal_id": 1110, "poster": "https://aruppi.jeluchu.xyz/res/directory/1526.jpg", "type": "Anime", "genres": [ @@ -26231,7 +26231,7 @@ { "id": "musekinin-kanchou-tylor", "title": "Irresponsable Capitán Tylor", - "mal_title": "Irresponsable Capitán Tylor", + "mal_id": 569, "poster": "https://aruppi.jeluchu.xyz/res/directory/1527.jpg", "type": "Anime", "genres": [ @@ -26249,7 +26249,7 @@ { "id": "musekinin-kanchou-tylor-ova", "title": "Irresponsable Capitán Tylor OVA", - "mal_title": "Irresponsable Capitán Tylor OVA", + "mal_id": 1168, "poster": "https://aruppi.jeluchu.xyz/res/directory/1528.jpg", "type": "OVA", "genres": [ @@ -26268,7 +26268,7 @@ { "id": "koe-de-oshigoto", "title": "Koe de Oshigoto!", - "mal_title": "Koe de Oshigoto!", + "mal_id": 8876, "poster": "https://aruppi.jeluchu.xyz/res/directory/1529.jpg", "type": "OVA", "genres": [ @@ -26284,7 +26284,7 @@ { "id": "red-baron", "title": "Red Baron", - "mal_title": "Red Baron", + "mal_id": 2283, "poster": "https://aruppi.jeluchu.xyz/res/directory/1530.jpg", "type": "Anime", "genres": [ @@ -26301,7 +26301,7 @@ { "id": "bakuretsu-hunters", "title": "Bakuretsu Hunters", - "mal_title": "Bakuretsu Hunters", + "mal_id": 495, "poster": "https://aruppi.jeluchu.xyz/res/directory/1531.jpg", "type": "Anime", "genres": [ @@ -26321,7 +26321,7 @@ { "id": "gravitation", "title": "Gravitation", - "mal_title": "Gravitation", + "mal_id": 243, "poster": "https://aruppi.jeluchu.xyz/res/directory/1532.jpg", "type": "Anime", "genres": [ @@ -26339,7 +26339,7 @@ { "id": "gravitation-lyrics-of-love", "title": "Gravitation: Lyrics of Love", - "mal_title": "Gravitation: Lyrics of Love", + "mal_id": 507, "poster": "https://aruppi.jeluchu.xyz/res/directory/1533.jpg", "type": "Anime", "genres": [ @@ -26356,7 +26356,7 @@ { "id": "loveless", "title": "Loveless", - "mal_title": "Loveless", + "mal_id": 149, "poster": "https://aruppi.jeluchu.xyz/res/directory/1534.jpg", "type": "Anime", "genres": [ @@ -26377,7 +26377,7 @@ { "id": "paradis-kiss", "title": "Paradise Kiss", - "mal_title": "Paradise Kiss", + "mal_id": 322, "poster": "https://aruppi.jeluchu.xyz/res/directory/1535.jpg", "type": "Anime", "genres": [ @@ -26395,7 +26395,7 @@ { "id": "saint_seiya_legend_of_sanctuary", "title": "Saint Seiya: Legend of Sanctuary", - "mal_title": "Saint Seiya: Legend of Sanctuary", + "mal_id": 10687, "poster": "https://aruppi.jeluchu.xyz/res/directory/1536.jpg", "type": "Película", "genres": [ @@ -26412,7 +26412,7 @@ { "id": "blade-and-soul-specials", "title": "Blade & Soul Specials", - "mal_title": "Blade & Soul Specials", + "mal_id": 23781, "poster": "https://aruppi.jeluchu.xyz/res/directory/1537.jpg", "type": "OVA", "genres": [ @@ -26426,7 +26426,7 @@ { "id": "digimon-savers", "title": "Digimon Savers", - "mal_title": "Digimon Savers", + "mal_id": 859, "poster": "https://aruppi.jeluchu.xyz/res/directory/1538.jpg", "type": "Anime", "genres": [ @@ -26444,7 +26444,7 @@ { "id": "to-love-ru-ova", "title": "To LOVE-Ru OVA", - "mal_title": "To LOVE-Ru OVA", + "mal_id": 5667, "poster": "https://aruppi.jeluchu.xyz/res/directory/1539.jpg", "type": "OVA", "genres": [ @@ -26463,7 +26463,7 @@ { "id": "saiunkoku-monogatari", "title": "Saiunkoku Monogatari", - "mal_title": "Saiunkoku Monogatari", + "mal_id": 957, "poster": "https://aruppi.jeluchu.xyz/res/directory/1540.jpg", "type": "Anime", "genres": [ @@ -26482,7 +26482,7 @@ { "id": "saiunkoku-monogatari-2nd-season", "title": "Saiunkoku Monogatari 2nd Season", - "mal_title": "Saiunkoku Monogatari 2nd Season", + "mal_id": 1914, "poster": "https://aruppi.jeluchu.xyz/res/directory/1541.jpg", "type": "Anime", "genres": [ @@ -26501,7 +26501,7 @@ { "id": "sky-girls-ova", "title": "Sky Girls OVA", - "mal_title": "Sky Girls OVA", + "mal_id": 1480, "poster": "https://aruppi.jeluchu.xyz/res/directory/1542.jpg", "type": "OVA", "genres": [ @@ -26517,7 +26517,7 @@ { "id": "sky-girls", "title": "Sky Girls", - "mal_title": "Sky Girls", + "mal_id": 2604, "poster": "https://aruppi.jeluchu.xyz/res/directory/1543.jpg", "type": "Anime", "genres": [ @@ -26533,7 +26533,7 @@ { "id": "choujikuu-yousai-macross", "title": "Choujikuu Yousai Macross", - "mal_title": "Choujikuu Yousai Macross", + "mal_id": 1088, "poster": "https://aruppi.jeluchu.xyz/res/directory/1544.jpg", "type": "Anime", "genres": [ @@ -26553,7 +26553,7 @@ { "id": "choujikuu-yousai-macross-ai-oboete-imasuka", "title": "Choujikuu Yousai Macross: Ai Oboete Imasuka", - "mal_title": "Choujikuu Yousai Macross: Ai Oboete Imasuka", + "mal_id": 1089, "poster": "https://aruppi.jeluchu.xyz/res/directory/1545.jpg", "type": "Película", "genres": [ @@ -26573,7 +26573,7 @@ { "id": "choujikuu-yousai-macross-2-lovers-again", "title": "Choujikuu Yousai Macross II: Lovers Again", - "mal_title": "Choujikuu Yousai Macross II: Lovers Again", + "mal_id": 1262, "poster": "https://aruppi.jeluchu.xyz/res/directory/1546.jpg", "type": "OVA", "genres": [ @@ -26592,7 +26592,7 @@ { "id": "macross-plus", "title": "Macross Plus", - "mal_title": "Macross Plus", + "mal_id": 474, "poster": "https://aruppi.jeluchu.xyz/res/directory/1547.jpg", "type": "OVA", "genres": [ @@ -26611,7 +26611,7 @@ { "id": "macross-7", "title": "Macross 7", - "mal_title": "Macross 7", + "mal_id": 1397, "poster": "https://aruppi.jeluchu.xyz/res/directory/1548.jpg", "type": "Anime", "genres": [ @@ -26634,7 +26634,7 @@ { "id": "macross-7-ginga-ga-ore-wo-yonde-iru", "title": "Macross 7: Ginga ga Ore wo Yonde Iru!", - "mal_title": "Macross 7: Ginga ga Ore wo Yonde Iru!", + "mal_id": 1400, "poster": "https://aruppi.jeluchu.xyz/res/directory/1549.jpg", "type": "Película", "genres": [ @@ -26655,7 +26655,7 @@ { "id": "macross-fb7-ginga-rukon-ore-no-uta-wo-kike", "title": "Macross FB7: Ginga Rukon - Ore no Uta wo Kike!", - "mal_title": "Macross FB7: Ginga Rukon - Ore no Uta wo Kike!", + "mal_id": 15177, "poster": "https://aruppi.jeluchu.xyz/res/directory/1550.jpg", "type": "Película", "genres": [ @@ -26673,7 +26673,7 @@ { "id": "macross-dynamite-7", "title": "Macross Dynamite 7", - "mal_title": "Macross Dynamite 7", + "mal_id": 1398, "poster": "https://aruppi.jeluchu.xyz/res/directory/1551.jpg", "type": "OVA", "genres": [ @@ -26691,7 +26691,7 @@ { "id": "macross-frontier-music-clip-shuu-nyankuri", "title": "Macross Frontier Music Clip Shuu: Nyankuri", - "mal_title": "Macross Frontier Music Clip Shuu: Nyankuri", + "mal_id": 10050, "poster": "https://aruppi.jeluchu.xyz/res/directory/1552.jpg", "type": "OVA", "genres": [ @@ -26705,7 +26705,7 @@ { "id": "macros-zero", "title": "Macross Zero", - "mal_title": "Macross Zero", + "mal_id": 194, "poster": "https://aruppi.jeluchu.xyz/res/directory/1553.jpg", "type": "OVA", "genres": [ @@ -26723,7 +26723,7 @@ { "id": "macross-flash-back-2012", "title": "Choujikuu Yousai Macross: Flash Back 2012", - "mal_title": "Choujikuu Yousai Macross: Flash Back 2012", + "mal_id": 1504, "poster": "https://aruppi.jeluchu.xyz/res/directory/1554.jpg", "type": "OVA", "genres": [ @@ -26740,7 +26740,7 @@ { "id": "ane-log", "title": "Ane Log", - "mal_title": "Ane Log", + "mal_id": 24531, "poster": "https://aruppi.jeluchu.xyz/res/directory/1555.jpg", "type": "OVA", "genres": [ @@ -26757,7 +26757,7 @@ { "id": "macross-plus-movie-edition", "title": "Macross Plus Movie Edition", - "mal_title": "Macross Plus Movie Edition", + "mal_id": 1211, "poster": "https://aruppi.jeluchu.xyz/res/directory/1556.jpg", "type": "Película", "genres": [ @@ -26777,7 +26777,7 @@ { "id": "tennis-no-ouji-sama-futari-no-samurai-the-first-game", "title": "Gekijouban Tennis no Ouji-sama: Futari no Samurai - The First Game", - "mal_title": "Gekijouban Tennis no Ouji-sama: Futari no Samurai - The First Game", + "mal_id": 815, "poster": "https://aruppi.jeluchu.xyz/res/directory/1557.jpg", "type": "Película", "genres": [ @@ -26793,7 +26793,7 @@ { "id": "tennis-no-ouji-sama-zenkoku-taikai-hen", "title": "Tennis no Ouji-sama: Zenkoku Taikai Hen", - "mal_title": "Tennis no Ouji-sama: Zenkoku Taikai Hen", + "mal_id": 995, "poster": "https://aruppi.jeluchu.xyz/res/directory/1558.jpg", "type": "OVA", "genres": [ @@ -26810,7 +26810,7 @@ { "id": "tennis-no-ouji-sama-zenkoku-taikai-hen-semifinal", "title": "Tennis no Ouji-sama: Zenkoku Taikai Hen - Semifinal", - "mal_title": "Tennis no Ouji-sama: Zenkoku Taikai Hen - Semifinal", + "mal_id": 2752, "poster": "https://aruppi.jeluchu.xyz/res/directory/1559.jpg", "type": "OVA", "genres": [ @@ -26826,7 +26826,7 @@ { "id": "tennis-no-ouji-sama-zenkoku-taikai-hen-final", "title": "Tennis no Ouji-sama: Zenkoku Taikai Hen - Final", - "mal_title": "Tennis no Ouji-sama: Zenkoku Taikai Hen - Final", + "mal_id": 4053, "poster": "https://aruppi.jeluchu.xyz/res/directory/1560.jpg", "type": "OVA", "genres": [ @@ -26843,7 +26843,7 @@ { "id": "sugar-sugar-rune", "title": "Sugar Sugar Rune", - "mal_title": "Sugar Sugar Rune", + "mal_id": 1642, "poster": "https://aruppi.jeluchu.xyz/res/directory/1561.jpg", "type": "Anime", "genres": [ @@ -26859,7 +26859,7 @@ { "id": "yamato-nadeshiko-shichi-henge", "title": "Yamato Nadeshiko Shichi Henge", - "mal_title": "Yamato Nadeshiko Shichi Henge", + "mal_id": 1562, "poster": "https://aruppi.jeluchu.xyz/res/directory/1562.jpg", "type": "Anime", "genres": [ @@ -26874,7 +26874,7 @@ { "id": "mononoke", "title": "Mononoke", - "mal_title": "Mononoke", + "mal_id": 2246, "poster": "https://aruppi.jeluchu.xyz/res/directory/1563.jpg", "type": "Anime", "genres": [ @@ -26894,7 +26894,7 @@ { "id": "isekai-no-seikishi-monogatari", "title": "Isekai no Seikishi Monogatari", - "mal_title": "Isekai no Seikishi Monogatari", + "mal_id": 5781, "poster": "https://aruppi.jeluchu.xyz/res/directory/1564.jpg", "type": "OVA", "genres": [ @@ -26914,7 +26914,7 @@ { "id": "sukisho", "title": "Suki na Mono wa Suki Dakara Shou ga Nai!!", - "mal_title": "Suki na Mono wa Suki Dakara Shou ga Nai!!", + "mal_id": 1532, "poster": "https://aruppi.jeluchu.xyz/res/directory/1565.jpg", "type": "Anime", "genres": [ @@ -26933,7 +26933,7 @@ { "id": "gun-x-sword", "title": "Gun x Sword", - "mal_title": "Gun x Sword", + "mal_id": 411, "poster": "https://aruppi.jeluchu.xyz/res/directory/1566.jpg", "type": "Anime", "genres": [ @@ -26952,7 +26952,7 @@ { "id": "terra-formers", "title": "Terra Formars", - "mal_title": "Terra Formars", + "mal_id": 22687, "poster": "https://aruppi.jeluchu.xyz/res/directory/1567.jpg", "type": "Anime", "genres": [ @@ -26971,7 +26971,7 @@ { "id": "tribe-cool-crew", "title": "Tribe Cool Crew", - "mal_title": "Tribe Cool Crew", + "mal_id": 26453, "poster": "https://aruppi.jeluchu.xyz/res/directory/1568.jpg", "type": "Anime", "genres": [ @@ -26986,7 +26986,7 @@ { "id": "aikatsu-3", "title": "Aikatsu! 3", - "mal_title": "Aikatsu! 3", + "mal_id": 15061, "poster": "https://aruppi.jeluchu.xyz/res/directory/1569.jpg", "type": "Anime", "genres": [ @@ -27003,7 +27003,7 @@ { "id": "denki-gai-no-honya-san", "title": "Denki-Gai no Honya-san", - "mal_title": "Denki-Gai no Honya-san", + "mal_id": 24031, "poster": "https://aruppi.jeluchu.xyz/res/directory/1570.jpg", "type": "Anime", "genres": [ @@ -27019,7 +27019,7 @@ { "id": "amagi-brilliant-park", "title": "Amagi Brilliant Park", - "mal_title": "Amagi Brilliant Park", + "mal_id": 22147, "poster": "https://aruppi.jeluchu.xyz/res/directory/1571.jpg", "type": "Anime", "genres": [ @@ -27034,7 +27034,7 @@ { "id": "danna-ga-nani-wo-itteiru-ka-wakaranai-ken", "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", - "mal_title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "mal_id": 26349, "poster": "https://aruppi.jeluchu.xyz/res/directory/1572.jpg", "type": "Anime", "genres": [ @@ -27050,7 +27050,7 @@ { "id": "gundam-g-no-reconguista", "title": "Gundam: G no Reconguista", - "mal_title": "Gundam: G no Reconguista", + "mal_id": 23259, "poster": "https://aruppi.jeluchu.xyz/res/directory/1573.jpg", "type": "Anime", "genres": [ @@ -27067,7 +27067,7 @@ { "id": "garo-honoo-no-kokuin", "title": "Garo: Honoo no Kokuin", - "mal_title": "Garo: Honoo no Kokuin", + "mal_id": 23311, "poster": "https://aruppi.jeluchu.xyz/res/directory/1574.jpg", "type": "Anime", "genres": [ @@ -27085,7 +27085,7 @@ { "id": "log-horizon-2", "title": "Log Horizon 2", - "mal_title": "Log Horizon 2", + "mal_id": 17265, "poster": "https://aruppi.jeluchu.xyz/res/directory/1575.jpg", "type": "Anime", "genres": [ @@ -27102,7 +27102,7 @@ { "id": "madan-no-ou-to-vanadis", "title": "Madan no Ou to Vanadis", - "mal_title": "Madan no Ou to Vanadis", + "mal_id": 24455, "poster": "https://aruppi.jeluchu.xyz/res/directory/1576.jpg", "type": "Anime", "genres": [ @@ -27120,7 +27120,7 @@ { "id": "magic-kaito-1412", "title": "Magic Kaito 1412", - "mal_title": "Magic Kaito 1412", + "mal_id": 25517, "poster": "https://aruppi.jeluchu.xyz/res/directory/1577.jpg", "type": "Anime", "genres": [ @@ -27137,7 +27137,7 @@ { "id": "selector-spread-wixoss", "title": "Selector Spread WIXOSS", - "mal_title": "Selector Spread WIXOSS", + "mal_id": 24037, "poster": "https://aruppi.jeluchu.xyz/res/directory/1578.jpg", "type": "Anime", "genres": [ @@ -27152,7 +27152,7 @@ { "id": "ushinawareta-mirai-wo-motomete", "title": "Ushinawareta Mirai wo Motomete", - "mal_title": "Ushinawareta Mirai wo Motomete", + "mal_id": 21845, "poster": "https://aruppi.jeluchu.xyz/res/directory/1579.jpg", "type": "Anime", "genres": [ @@ -27169,7 +27169,7 @@ { "id": "cross-ange-tenshi-to-ryuu-no-rondo", "title": "Cross Ange: Tenshi to Ryuu no Rondo", - "mal_title": "Cross Ange: Tenshi to Ryuu no Rondo", + "mal_id": 25731, "poster": "https://aruppi.jeluchu.xyz/res/directory/1580.jpg", "type": "Anime", "genres": [ @@ -27185,7 +27185,7 @@ { "id": "fate-stay-night-unlimited-blade-works", "title": "Fate/stay night: Unlimited Blade Works", - "mal_title": "Fate/stay night: Unlimited Blade Works", + "mal_id": 22297, "poster": "https://aruppi.jeluchu.xyz/res/directory/1581.jpg", "type": "Anime", "genres": [ @@ -27203,7 +27203,7 @@ { "id": "grisaia-no-kajitsu", "title": "Grisaia no Kajitsu", - "mal_title": "Grisaia no Kajitsu", + "mal_id": 17729, "poster": "https://aruppi.jeluchu.xyz/res/directory/1582.jpg", "type": "Anime", "genres": [ @@ -27221,7 +27221,7 @@ { "id": "nanatsu-no-taizai", "title": "Nanatsu no Taizai", - "mal_title": "Nanatsu no Taizai", + "mal_id": 23755, "poster": "https://aruppi.jeluchu.xyz/res/directory/1583.jpg", "type": "Anime", "genres": [ @@ -27240,7 +27240,7 @@ { "id": "ookami-shoujo-to-kuro-ouji", "title": "Ookami Shoujo to Kuro Ouji", - "mal_title": "Ookami Shoujo to Kuro Ouji", + "mal_id": 29129, "poster": "https://aruppi.jeluchu.xyz/res/directory/1584.jpg", "type": "Anime", "genres": [ @@ -27257,7 +27257,7 @@ { "id": "sora-no-method", "title": "Sora no Method", - "mal_title": "Sora no Method", + "mal_id": 23209, "poster": "https://aruppi.jeluchu.xyz/res/directory/1585.jpg", "type": "Anime", "genres": [ @@ -27274,7 +27274,7 @@ { "id": "world-trigger", "title": "World Trigger", - "mal_title": "World Trigger", + "mal_id": 24405, "poster": "https://aruppi.jeluchu.xyz/res/directory/1586.jpg", "type": "Anime", "genres": [ @@ -27292,7 +27292,7 @@ { "id": "gugure-kokkuri-san", "title": "Gugure! Kokkuri-san", - "mal_title": "Gugure! Kokkuri-san", + "mal_id": 23251, "poster": "https://aruppi.jeluchu.xyz/res/directory/1587.jpg", "type": "Anime", "genres": [ @@ -27308,7 +27308,7 @@ { "id": "kaitou-joker", "title": "Kaitou Joker", - "mal_title": "Kaitou Joker", + "mal_id": 24909, "poster": "https://aruppi.jeluchu.xyz/res/directory/1588.jpg", "type": "Anime", "genres": [ @@ -27325,7 +27325,7 @@ { "id": "orenchi-no-furo-jijou", "title": "Orenchi no Furo Jijou", - "mal_title": "Orenchi no Furo Jijou", + "mal_id": 24211, "poster": "https://aruppi.jeluchu.xyz/res/directory/1589.jpg", "type": "Anime", "genres": [ @@ -27341,7 +27341,7 @@ { "id": "shingeki-no-bahamut-genesis", "title": "Shingeki no Bahamut: Genesis", - "mal_title": "Shingeki no Bahamut: Genesis", + "mal_id": 21843, "poster": "https://aruppi.jeluchu.xyz/res/directory/1590.jpg", "type": "Anime", "genres": [ @@ -27360,7 +27360,7 @@ { "id": "akatsuki-no-yona", "title": "Akatsuki no Yona", - "mal_title": "Akatsuki no Yona", + "mal_id": 30370, "poster": "https://aruppi.jeluchu.xyz/res/directory/1591.jpg", "type": "Anime", "genres": [ @@ -27379,7 +27379,7 @@ { "id": "inou-battle-wa-nichijou-kei-no-naka-de", "title": "Inou-Battle wa Nichijou-kei no Naka de", - "mal_title": "Inou-Battle wa Nichijou-kei no Naka de", + "mal_id": 25159, "poster": "https://aruppi.jeluchu.xyz/res/directory/1592.jpg", "type": "Anime", "genres": [ @@ -27397,7 +27397,7 @@ { "id": "yowamushi-pedal-grande-road", "title": "Yowamushi Pedal: Grande Road", - "mal_title": "Yowamushi Pedal: Grande Road", + "mal_id": 24277, "poster": "https://aruppi.jeluchu.xyz/res/directory/1593.jpg", "type": "Anime", "genres": [ @@ -27414,7 +27414,7 @@ { "id": "gundam-build-fighters-try", "title": "Gundam Build Fighters Try", - "mal_title": "Gundam Build Fighters Try", + "mal_id": 24625, "poster": "https://aruppi.jeluchu.xyz/res/directory/1594.jpg", "type": "Anime", "genres": [ @@ -27430,7 +27430,7 @@ { "id": "trinity-seven", "title": "Trinity Seven", - "mal_title": "Trinity Seven", + "mal_id": 25157, "poster": "https://aruppi.jeluchu.xyz/res/directory/1595.jpg", "type": "Anime", "genres": [ @@ -27453,7 +27453,7 @@ { "id": "daitoshokan-no-hitsujikai", "title": "Daitoshokan no Hitsujikai", - "mal_title": "Daitoshokan no Hitsujikai", + "mal_id": 17827, "poster": "https://aruppi.jeluchu.xyz/res/directory/1596.jpg", "type": "Anime", "genres": [ @@ -27469,7 +27469,7 @@ { "id": "hitsugi-no-chaika-avenging-battle", "title": "Hitsugi no Chaika: Avenging Battle", - "mal_title": "Hitsugi no Chaika: Avenging Battle", + "mal_id": 24231, "poster": "https://aruppi.jeluchu.xyz/res/directory/1597.jpg", "type": "Anime", "genres": [ @@ -27488,7 +27488,7 @@ { "id": "kiseijuu-sei-no-kakuritsu", "title": "Kiseijuu: Sei no Kakuritsu", - "mal_title": "Kiseijuu: Sei no Kakuritsu", + "mal_id": 22535, "poster": "https://aruppi.jeluchu.xyz/res/directory/1598.jpg", "type": "Anime", "genres": [ @@ -27507,7 +27507,7 @@ { "id": "shirobako", "title": "Shirobako", - "mal_title": "Shirobako", + "mal_id": 25835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1599.jpg", "type": "Anime", "genres": [ @@ -27522,7 +27522,7 @@ { "id": "ore-twintails-ni-narimasu", "title": "Ore, Twintails ni Narimasu", - "mal_title": "Ore, Twintails ni Narimasu", + "mal_id": 24705, "poster": "https://aruppi.jeluchu.xyz/res/directory/1600.jpg", "type": "Anime", "genres": [ @@ -27541,7 +27541,7 @@ { "id": "psycho-pass-2", "title": "Psycho-Pass 2", - "mal_title": "Psycho-Pass 2", + "mal_id": 23281, "poster": "https://aruppi.jeluchu.xyz/res/directory/1601.jpg", "type": "Anime", "genres": [ @@ -27558,7 +27558,7 @@ { "id": "shigatsu-wa-kimi-no-uso", "title": "Shigatsu wa Kimi no Uso", - "mal_title": "Shigatsu wa Kimi no Uso", + "mal_id": 23273, "poster": "https://aruppi.jeluchu.xyz/res/directory/1602.jpg", "type": "Anime", "genres": [ @@ -27576,7 +27576,7 @@ { "id": "sanzoku-no-musume-ronja", "title": "Sanzoku no Musume Ronja", - "mal_title": "Sanzoku no Musume Ronja", + "mal_id": 22359, "poster": "https://aruppi.jeluchu.xyz/res/directory/1603.jpg", "type": "Anime", "genres": [ @@ -27590,7 +27590,7 @@ { "id": "girlfriend-kari", "title": "Girlfriend (Kari)", - "mal_title": "Girlfriend (Kari)", + "mal_id": 24855, "poster": "https://aruppi.jeluchu.xyz/res/directory/1604.jpg", "type": "Anime", "genres": [ @@ -27605,7 +27605,7 @@ { "id": "yuuki-yuuna-wa-yusha-de-aru", "title": "Yuuki Yuuna wa Yuusha de Aru", - "mal_title": "Yuuki Yuuna wa Yuusha de Aru", + "mal_id": 25519, "poster": "https://aruppi.jeluchu.xyz/res/directory/1605.jpg", "type": "Anime", "genres": [ @@ -27622,7 +27622,7 @@ { "id": "mushishi-zoku-shou-2", "title": "Mushishi Zoku Shou 2", - "mal_title": "Mushishi Zoku Shou 2", + "mal_id": 24701, "poster": "https://aruppi.jeluchu.xyz/res/directory/1606.jpg", "type": "Anime", "genres": [ @@ -27642,7 +27642,7 @@ { "id": "ai-tenchi-muyo", "title": "Ai Tenchi Muyo!", - "mal_title": "Ai Tenchi Muyo!", + "mal_id": 24699, "poster": "https://aruppi.jeluchu.xyz/res/directory/1607.jpg", "type": "Anime", "genres": [ @@ -27658,7 +27658,7 @@ { "id": "kurozuka", "title": "Kurozuka", - "mal_title": "Kurozuka", + "mal_id": 5039, "poster": "https://aruppi.jeluchu.xyz/res/directory/1608.jpg", "type": "Anime", "genres": [ @@ -27678,7 +27678,7 @@ { "id": "mousou-dairinin", "title": "Mousou Dairinin", - "mal_title": "Mousou Dairinin", + "mal_id": 323, "poster": "https://aruppi.jeluchu.xyz/res/directory/1609.jpg", "type": "Anime", "genres": [ @@ -27697,7 +27697,7 @@ { "id": "izumo-takeki-turugi-no-senki", "title": "Izumo: Takeki Tsurugi no Senki", - "mal_title": "Izumo: Takeki Tsurugi no Senki", + "mal_id": 2523, "poster": "https://aruppi.jeluchu.xyz/res/directory/1610.jpg", "type": "Anime", "genres": [ @@ -27716,7 +27716,7 @@ { "id": "ayakashi-japanese-classic-horror", "title": "Ayakashi: Japanese Classic Horror", - "mal_title": "Ayakashi: Japanese Classic Horror", + "mal_id": 586, "poster": "https://aruppi.jeluchu.xyz/res/directory/1611.jpg", "type": "Anime", "genres": [ @@ -27732,7 +27732,7 @@ { "id": "major", "title": "Major", - "mal_title": "Major", + "mal_id": 627, "poster": "https://aruppi.jeluchu.xyz/res/directory/1612.jpg", "type": "Anime", "genres": [ @@ -27749,7 +27749,7 @@ { "id": "gekijouban-major-yuujou-no-winning-shot", "title": "Gekijouban Major: Yuujou no Winning Shot", - "mal_title": "Gekijouban Major: Yuujou no Winning Shot", + "mal_id": 5029, "poster": "https://aruppi.jeluchu.xyz/res/directory/1613.jpg", "type": "Película", "genres": [ @@ -27765,7 +27765,7 @@ { "id": "major-2", "title": "Major 2", - "mal_title": "Major 2", + "mal_id": 32324, "poster": "https://aruppi.jeluchu.xyz/res/directory/1614.jpg", "type": "Anime", "genres": [ @@ -27780,7 +27780,7 @@ { "id": "major-3", "title": "Major 3", - "mal_title": "Major 3", + "mal_id": 1842, "poster": "https://aruppi.jeluchu.xyz/res/directory/1615.jpg", "type": "Anime", "genres": [ @@ -27796,7 +27796,7 @@ { "id": "major-4", "title": "Major 4", - "mal_title": "Major 4", + "mal_id": 3226, "poster": "https://aruppi.jeluchu.xyz/res/directory/1616.jpg", "type": "Anime", "genres": [ @@ -27813,7 +27813,7 @@ { "id": "major-5", "title": "Major 5", - "mal_title": "Major 5", + "mal_id": 5028, "poster": "https://aruppi.jeluchu.xyz/res/directory/1617.jpg", "type": "Anime", "genres": [ @@ -27830,7 +27830,7 @@ { "id": "major-6", "title": "Major 6", - "mal_title": "Major 6", + "mal_id": 7655, "poster": "https://aruppi.jeluchu.xyz/res/directory/1618.jpg", "type": "Anime", "genres": [ @@ -27846,7 +27846,7 @@ { "id": "major-world-series", "title": "Major: World Series", - "mal_title": "Major: World Series", + "mal_id": 11917, "poster": "https://aruppi.jeluchu.xyz/res/directory/1619.jpg", "type": "OVA", "genres": [ @@ -27862,7 +27862,7 @@ { "id": "yami-no-matsuei", "title": "Yami no Matsuei", - "mal_title": "Yami no Matsuei", + "mal_id": 553, "poster": "https://aruppi.jeluchu.xyz/res/directory/1620.jpg", "type": "Anime", "genres": [ @@ -27883,7 +27883,7 @@ { "id": "ie-naki-ko", "title": "Ie Naki Ko", - "mal_title": "Ie Naki Ko", + "mal_id": 2828, "poster": "https://aruppi.jeluchu.xyz/res/directory/1621.jpg", "type": "Anime", "genres": [ @@ -27901,7 +27901,7 @@ { "id": "gekkan-shoujo-nozaki-kun-specials", "title": "Gekkan Shoujo Nozaki-kun Specials", - "mal_title": "Gekkan Shoujo Nozaki-kun Specials", + "mal_id": 27633, "poster": "https://aruppi.jeluchu.xyz/res/directory/1622.jpg", "type": "OVA", "genres": [ @@ -27917,7 +27917,7 @@ { "id": "karen-senki", "title": "Karen Senki", - "mal_title": "Karen Senki", + "mal_id": 27503, "poster": "https://aruppi.jeluchu.xyz/res/directory/1623.jpg", "type": "Anime", "genres": [ @@ -27932,7 +27932,7 @@ { "id": "hachimitsu-to-clover", "title": "Honey & Clover", - "mal_title": "Honey & Clover", + "mal_id": 16, "poster": "https://aruppi.jeluchu.xyz/res/directory/1624.jpg", "type": "Anime", "genres": [ @@ -27949,7 +27949,7 @@ { "id": "hachimitsu-to-clover-specials", "title": "Honey & Clover Specials", - "mal_title": "Honey & Clover Specials", + "mal_id": 644, "poster": "https://aruppi.jeluchu.xyz/res/directory/1625.jpg", "type": "OVA", "genres": [ @@ -27967,7 +27967,7 @@ { "id": "hachimitsu-to-clover-2", "title": "Honey & Clover II", - "mal_title": "Honey & Clover II", + "mal_id": 1142, "poster": "https://aruppi.jeluchu.xyz/res/directory/1626.jpg", "type": "Anime", "genres": [ @@ -27983,7 +27983,7 @@ { "id": "selector-infected-wixoss-specials", "title": "Selector Infected WIXOSS Specials", - "mal_title": "Selector Infected WIXOSS Specials", + "mal_id": 22273, "poster": "https://aruppi.jeluchu.xyz/res/directory/1627.jpg", "type": "OVA", "genres": [ @@ -27997,7 +27997,7 @@ { "id": "buddy-complex-kanketsu-hen-ano-sora-ni-kaeru-mirai-de", "title": "Buddy Complex: Kanketsu-hen - Ano Sora ni Kaeru Mirai de", - "mal_title": "Buddy Complex: Kanketsu-hen - Ano Sora ni Kaeru Mirai de", + "mal_id": 24469, "poster": "https://aruppi.jeluchu.xyz/res/directory/1628.jpg", "type": "OVA", "genres": [ @@ -28013,7 +28013,7 @@ { "id": "kaze-no-tani-no-nausicaa", "title": "Kaze no Tani no Nausicaa", - "mal_title": "Kaze no Tani no Nausicaa", + "mal_id": 572, "poster": "https://aruppi.jeluchu.xyz/res/directory/1629.jpg", "type": "Película", "genres": [ @@ -28028,7 +28028,7 @@ { "id": "tenkuu-no-shiro-laputa", "title": "Tenkuu no Shiro Laputa", - "mal_title": "Tenkuu no Shiro Laputa", + "mal_id": 513, "poster": "https://aruppi.jeluchu.xyz/res/directory/1630.jpg", "type": "Película", "genres": [ @@ -28045,7 +28045,7 @@ { "id": "tonari-no-totoro", "title": "Tonari no Totoro", - "mal_title": "Tonari no Totoro", + "mal_id": 523, "poster": "https://aruppi.jeluchu.xyz/res/directory/1631.jpg", "type": "Película", "genres": [ @@ -28061,7 +28061,7 @@ { "id": "majo-no-takkyuubin", "title": "Majo no Takkyuubin", - "mal_title": "Majo no Takkyuubin", + "mal_id": 512, "poster": "https://aruppi.jeluchu.xyz/res/directory/1632.jpg", "type": "Película", "genres": [ @@ -28080,7 +28080,7 @@ { "id": "kurenai-no-buta", "title": "Kurenai no Buta", - "mal_title": "Kurenai no Buta", + "mal_id": 416, "poster": "https://aruppi.jeluchu.xyz/res/directory/1633.jpg", "type": "Película", "genres": [ @@ -28100,7 +28100,7 @@ { "id": "heisei-tanuki-gassen-ponpoko", "title": "Heisei Tanuki Gassen Ponpoko", - "mal_title": "Heisei Tanuki Gassen Ponpoko", + "mal_id": 1030, "poster": "https://aruppi.jeluchu.xyz/res/directory/1634.jpg", "type": "Película", "genres": [ @@ -28114,7 +28114,7 @@ { "id": "mononoke-hime", "title": "Mononoke Hime", - "mal_title": "Mononoke Hime", + "mal_id": 164, "poster": "https://aruppi.jeluchu.xyz/res/directory/1635.jpg", "type": "Película", "genres": [ @@ -28130,7 +28130,7 @@ { "id": "sen-to-chihiro-no-kamikakushi", "title": "Sen to Chihiro no Kamikakushi", - "mal_title": "Sen to Chihiro no Kamikakushi", + "mal_id": 199, "poster": "https://aruppi.jeluchu.xyz/res/directory/1636.jpg", "type": "Película", "genres": [ @@ -28146,7 +28146,7 @@ { "id": "neko-no-ongaeshi", "title": "Neko no Ongaeshi", - "mal_title": "Neko no Ongaeshi", + "mal_id": 597, "poster": "https://aruppi.jeluchu.xyz/res/directory/1637.jpg", "type": "Película", "genres": [ @@ -28162,7 +28162,7 @@ { "id": "howl-no-ugoku-shiro", "title": "Howl no Ugoku Shiro", - "mal_title": "Howl no Ugoku Shiro", + "mal_id": 431, "poster": "https://aruppi.jeluchu.xyz/res/directory/1638.jpg", "type": "Película", "genres": [ @@ -28179,7 +28179,7 @@ { "id": "mimi-wo-sumaseba", "title": "Mimi wo Sumaseba", - "mal_title": "Mimi wo Sumaseba", + "mal_id": 585, "poster": "https://aruppi.jeluchu.xyz/res/directory/1639.jpg", "type": "Película", "genres": [ @@ -28197,7 +28197,7 @@ { "id": "hotaru-no-haka", "title": "Hotaru no Haka", - "mal_title": "Hotaru no Haka", + "mal_id": 578, "poster": "https://aruppi.jeluchu.xyz/res/directory/1640.jpg", "type": "Película", "genres": [ @@ -28212,7 +28212,7 @@ { "id": "toukiden-kiwami", "title": "Toukiden Kiwami", - "mal_title": "Toukiden Kiwami", + "mal_id": 25873, "poster": "https://aruppi.jeluchu.xyz/res/directory/1641.jpg", "type": "OVA", "genres": [ @@ -28228,7 +28228,7 @@ { "id": "locodol-ova", "title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita.: Nagarekawa, Annai Shite Mita.", - "mal_title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita.: Nagarekawa, Annai Shite Mita.", + "mal_id": 25719, "poster": "https://aruppi.jeluchu.xyz/res/directory/1642.jpg", "type": "OVA", "genres": [ @@ -28243,7 +28243,7 @@ { "id": "suisei-no-gargantia-meguru-kouro-haruka", "title": "Suisei no Gargantia: Meguru Kouro, Haruka", - "mal_title": "Suisei no Gargantia: Meguru Kouro, Haruka", + "mal_id": 23319, "poster": "https://aruppi.jeluchu.xyz/res/directory/1643.jpg", "type": "OVA", "genres": [ @@ -28260,7 +28260,7 @@ { "id": "la-leyenda-de-korra-libro-4", "title": "La Leyenda de Korra: Libro 4", - "mal_title": "La Leyenda de Korra: Libro 4", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1644.jpg", "type": "Anime", "genres": [ @@ -28274,7 +28274,7 @@ { "id": "donten-ni-warau", "title": "Donten ni Warau", - "mal_title": "Donten ni Warau", + "mal_id": 21743, "poster": "https://aruppi.jeluchu.xyz/res/directory/1645.jpg", "type": "Anime", "genres": [ @@ -28290,7 +28290,7 @@ { "id": "kowarekake-no-orgol", "title": "Kowarekake no Orgol", - "mal_title": "Kowarekake no Orgol", + "mal_id": 9213, "poster": "https://aruppi.jeluchu.xyz/res/directory/1646.jpg", "type": "OVA", "genres": [ @@ -28307,7 +28307,7 @@ { "id": "naruto-shippuden-sunny-side-battle", "title": "Naruto Shippuden Sunny Side Battle", - "mal_title": "Naruto Shippuden Sunny Side Battle", + "mal_id": 19511, "poster": "https://aruppi.jeluchu.xyz/res/directory/1647.jpg", "type": "OVA", "genres": [ @@ -28325,7 +28325,7 @@ { "id": "hiscoool-seha-girls", "title": "Hi-sCoool! SeHa Girl", - "mal_title": "Hi-sCoool! SeHa Girl", + "mal_id": 23787, "poster": "https://aruppi.jeluchu.xyz/res/directory/1648.jpg", "type": "Anime", "genres": [ @@ -28340,7 +28340,7 @@ { "id": "bonjour-koiaji-patisserie", "title": "Bonjour♪ Koiaji Pâtisserie", - "mal_title": "Bonjour♪ Koiaji Pâtisserie", + "mal_id": 25839, "poster": "https://aruppi.jeluchu.xyz/res/directory/1649.jpg", "type": "OVA", "genres": [ @@ -28358,7 +28358,7 @@ { "id": "weiss-survive", "title": "Weiß Survive", - "mal_title": "Weiß Survive", + "mal_id": 7463, "poster": "https://aruppi.jeluchu.xyz/res/directory/1650.jpg", "type": "Anime", "genres": [ @@ -28374,7 +28374,7 @@ { "id": "weiss-survive-r", "title": "Weiß Survive R", - "mal_title": "Weiß Survive R", + "mal_id": 7463, "poster": "https://aruppi.jeluchu.xyz/res/directory/1651.jpg", "type": "Anime", "genres": [ @@ -28390,7 +28390,7 @@ { "id": "futari-wa-precure", "title": "Futari wa Precure", - "mal_title": "Futari wa Precure", + "mal_id": 603, "poster": "https://aruppi.jeluchu.xyz/res/directory/1652.jpg", "type": "Anime", "genres": [ @@ -28408,7 +28408,7 @@ { "id": "futari-wa-precure-max-heart", "title": "Futari wa Precure: Max Heart", - "mal_title": "Futari wa Precure: Max Heart", + "mal_id": 1929, "poster": "https://aruppi.jeluchu.xyz/res/directory/1653.jpg", "type": "Anime", "genres": [ @@ -28426,7 +28426,7 @@ { "id": "futari-wa-precure-splash-star", "title": "Futari wa Precure: Splash☆Star", - "mal_title": "Futari wa Precure: Splash☆Star", + "mal_id": 1534, "poster": "https://aruppi.jeluchu.xyz/res/directory/1654.jpg", "type": "Anime", "genres": [ @@ -28444,7 +28444,7 @@ { "id": "futari-wa-precure-splash-star-movie", "title": "Futari wa Precure: Splash☆Star Movie - Tick Tack Kiki Ippatsu!", - "mal_title": "Futari wa Precure: Splash☆Star Movie - Tick Tack Kiki Ippatsu!", + "mal_id": 4124, "poster": "https://aruppi.jeluchu.xyz/res/directory/1655.jpg", "type": "Película", "genres": [ @@ -28461,7 +28461,7 @@ { "id": "yes-precure-5", "title": "Yes! Precure 5", - "mal_title": "Yes! Precure 5", + "mal_id": 1932, "poster": "https://aruppi.jeluchu.xyz/res/directory/1656.jpg", "type": "Anime", "genres": [ @@ -28479,7 +28479,7 @@ { "id": "yes-precure-5-gogo", "title": "Yes! Precure 5 GoGo!", - "mal_title": "Yes! Precure 5 GoGo!", + "mal_id": 3692, "poster": "https://aruppi.jeluchu.xyz/res/directory/1657.jpg", "type": "Anime", "genres": [ @@ -28497,7 +28497,7 @@ { "id": "fresh-precure", "title": "Fresh Precure!", - "mal_title": "Fresh Precure!", + "mal_id": 5684, "poster": "https://aruppi.jeluchu.xyz/res/directory/1658.jpg", "type": "Anime", "genres": [ @@ -28516,7 +28516,7 @@ { "id": "fresh-precure-movie", "title": "Fresh Precure! Movie: Omocha no Kuni wa Himitsu ga Ippai!?", - "mal_title": "Fresh Precure! Movie: Omocha no Kuni wa Himitsu ga Ippai!?", + "mal_id": 6527, "poster": "https://aruppi.jeluchu.xyz/res/directory/1659.jpg", "type": "Película", "genres": [ @@ -28534,7 +28534,7 @@ { "id": "heartcatch-precure", "title": "Heartcatch Precure!", - "mal_title": "Heartcatch Precure!", + "mal_id": 7645, "poster": "https://aruppi.jeluchu.xyz/res/directory/1660.jpg", "type": "Anime", "genres": [ @@ -28554,7 +28554,7 @@ { "id": "heartcatch-precure-movie", "title": "Heartcatch Precure! Movie: Hana no Miyako de Fashion Show... Desu ka!?", - "mal_title": "Heartcatch Precure! Movie: Hana no Miyako de Fashion Show... Desu ka!?", + "mal_id": 9288, "poster": "https://aruppi.jeluchu.xyz/res/directory/1661.jpg", "type": "Película", "genres": [ @@ -28571,7 +28571,7 @@ { "id": "suite-precure", "title": "Suite Precure♪", - "mal_title": "Suite Precure♪", + "mal_id": 9893, "poster": "https://aruppi.jeluchu.xyz/res/directory/1662.jpg", "type": "Anime", "genres": [ @@ -28588,7 +28588,7 @@ { "id": "smile-precure", "title": "Smile Precure!", - "mal_title": "Smile Precure!", + "mal_id": 12191, "poster": "https://aruppi.jeluchu.xyz/res/directory/1663.jpg", "type": "Anime", "genres": [ @@ -28605,7 +28605,7 @@ { "id": "smile-precure-movie", "title": "Smile Precure! Movie: Ehon no Naka wa Minna Chiguhagu!", - "mal_title": "Smile Precure! Movie: Ehon no Naka wa Minna Chiguhagu!", + "mal_id": 15307, "poster": "https://aruppi.jeluchu.xyz/res/directory/1664.jpg", "type": "Película", "genres": [ @@ -28622,7 +28622,7 @@ { "id": "dokidoki-precure-movie", "title": "DokiDoki! Precure Movie: Mana Kekkon!!? Mirai ni Tsunagu Kibou no Dress", - "mal_title": "DokiDoki! Precure Movie: Mana Kekkon!!? Mirai ni Tsunagu Kibou no Dress", + "mal_id": 17357, "poster": "https://aruppi.jeluchu.xyz/res/directory/1665.jpg", "type": "Película", "genres": [ @@ -28639,7 +28639,7 @@ { "id": "happiness-charge-precure", "title": "Happiness Charge Precure!", - "mal_title": "Happiness Charge Precure!", + "mal_id": 21407, "poster": "https://aruppi.jeluchu.xyz/res/directory/1666.jpg", "type": "Anime", "genres": [ @@ -28656,7 +28656,7 @@ { "id": "tamako-love-story", "title": "Tamako Love Story", - "mal_title": "Tamako Love Story", + "mal_id": 21647, "poster": "https://aruppi.jeluchu.xyz/res/directory/1667.jpg", "type": "Película", "genres": [ @@ -28672,7 +28672,7 @@ { "id": "steins-gate-soumei-eichi-no-cognitive-computing", "title": "Steins;Gate - Soumei Eichi no Cognitive Computing", - "mal_title": "Steins;Gate - Soumei Eichi no Cognitive Computing", + "mal_id": 27957, "poster": "https://aruppi.jeluchu.xyz/res/directory/1668.jpg", "type": "OVA", "genres": [ @@ -28686,7 +28686,7 @@ { "id": "spice-and-wolf-2-ova", "title": "Spice and Wolf II OVA ", - "mal_title": "Spice and Wolf II OVA ", + "mal_id": 6007, "poster": "https://aruppi.jeluchu.xyz/res/directory/1669.jpg", "type": "OVA", "genres": [ @@ -28702,7 +28702,7 @@ { "id": "spice-and-wolf-2-specials", "title": "Spice and Wolf 2 Specials", - "mal_title": "Spice and Wolf 2 Specials", + "mal_id": 6884, "poster": "https://aruppi.jeluchu.xyz/res/directory/1670.jpg", "type": "OVA", "genres": [ @@ -28716,7 +28716,7 @@ { "id": "kimi-ga-nozomu-eien", "title": "Kimi ga Nozomu Eien", - "mal_title": "Kimi ga Nozomu Eien", + "mal_id": 147, "poster": "https://aruppi.jeluchu.xyz/res/directory/1671.jpg", "type": "Anime", "genres": [ @@ -28732,7 +28732,7 @@ { "id": "kimi-ga-nozomu-eien-next-season", "title": "Kimi ga Nozomu Eien: Next Season", - "mal_title": "Kimi ga Nozomu Eien: Next Season", + "mal_id": 3318, "poster": "https://aruppi.jeluchu.xyz/res/directory/1672.jpg", "type": "OVA", "genres": [ @@ -28747,7 +28747,7 @@ { "id": "akane-maniax", "title": "Akane Maniax", - "mal_title": "Akane Maniax", + "mal_id": 281, "poster": "https://aruppi.jeluchu.xyz/res/directory/1673.jpg", "type": "OVA", "genres": [ @@ -28763,7 +28763,7 @@ { "id": "kimi-ga-nozomu-eien-ayu-mayu-gekijou", "title": "Kimi ga Nozomu Eien: Ayu Mayu Gekijou", - "mal_title": "Kimi ga Nozomu Eien: Ayu Mayu Gekijou", + "mal_id": 1856, "poster": "https://aruppi.jeluchu.xyz/res/directory/1674.jpg", "type": "OVA", "genres": [ @@ -28777,7 +28777,7 @@ { "id": "hashi-no-mukou", "title": "Hashi no Mukou", - "mal_title": "Hashi no Mukou", + "mal_id": 24127, "poster": "https://aruppi.jeluchu.xyz/res/directory/1675.jpg", "type": "OVA", "genres": [ @@ -28793,7 +28793,7 @@ { "id": "marmalade-boy", "title": "Marmalade Boy", - "mal_title": "Marmalade Boy", + "mal_id": 520, "poster": "https://aruppi.jeluchu.xyz/res/directory/1676.jpg", "type": "Anime", "genres": [ @@ -28810,7 +28810,7 @@ { "id": "marmalade-boy-movie", "title": "Marmalade Boy Movie", - "mal_title": "Marmalade Boy Movie", + "mal_id": 520, "poster": "https://aruppi.jeluchu.xyz/res/directory/1677.jpg", "type": "Película", "genres": [ @@ -28825,7 +28825,7 @@ { "id": "kagihime-monogatari-eikyuu-alice-rinbukyoku", "title": "Kagihime Monogatari Eikyuu Alice Rinbukyoku", - "mal_title": "Kagihime Monogatari Eikyuu Alice Rinbukyoku", + "mal_id": 577, "poster": "https://aruppi.jeluchu.xyz/res/directory/1678.jpg", "type": "Anime", "genres": [ @@ -28840,7 +28840,7 @@ { "id": "wangan-midnight", "title": "Wangan Midnight", - "mal_title": "Wangan Midnight", + "mal_id": 2608, "poster": "https://aruppi.jeluchu.xyz/res/directory/1679.jpg", "type": "Anime", "genres": [ @@ -28857,7 +28857,7 @@ { "id": "youre-under-arrest", "title": "You're Under Arrest!", - "mal_title": "You're Under Arrest!", + "mal_id": 1577, "poster": "https://aruppi.jeluchu.xyz/res/directory/1680.jpg", "type": "Anime", "genres": [ @@ -28874,7 +28874,7 @@ { "id": "youre-under-arresr-the-movie", "title": "You're Under Arrest: The Movie", - "mal_title": "You're Under Arrest: The Movie", + "mal_id": 2013, "poster": "https://aruppi.jeluchu.xyz/res/directory/1681.jpg", "type": "Película", "genres": [ @@ -28892,7 +28892,7 @@ { "id": "youre-under-arrest-mini-specials", "title": "You're Under Arrest! Mini Specials", - "mal_title": "You're Under Arrest! Mini Specials", + "mal_id": 2011, "poster": "https://aruppi.jeluchu.xyz/res/directory/1682.jpg", "type": "Anime", "genres": [ @@ -28909,7 +28909,7 @@ { "id": "youre-under-arrest-no-mercy", "title": "You're Under Arrest! No Mercy!!", - "mal_title": "You're Under Arrest! No Mercy!!", + "mal_id": 2010, "poster": "https://aruppi.jeluchu.xyz/res/directory/1683.jpg", "type": "OVA", "genres": [ @@ -28926,7 +28926,7 @@ { "id": "chicchana-yukitsukai-sugar", "title": "Chicchana Yukitsukai Sugar", - "mal_title": "Chicchana Yukitsukai Sugar", + "mal_id": 831, "poster": "https://aruppi.jeluchu.xyz/res/directory/1684.jpg", "type": "Anime", "genres": [ @@ -28942,7 +28942,7 @@ { "id": "jibaku-kun", "title": "Jibaku-kun", - "mal_title": "Jibaku-kun", + "mal_id": 2330, "poster": "https://aruppi.jeluchu.xyz/res/directory/1685.jpg", "type": "Anime", "genres": [ @@ -28958,7 +28958,7 @@ { "id": "imawa-no-kuni-no-alice", "title": "Imawa no Kuni no Alice", - "mal_title": "Imawa no Kuni no Alice", + "mal_id": 24781, "poster": "https://aruppi.jeluchu.xyz/res/directory/1686.jpg", "type": "OVA", "genres": [ @@ -28972,7 +28972,7 @@ { "id": "hybrid-child", "title": "Hybrid Child", - "mal_title": "Hybrid Child", + "mal_id": 11135, "poster": "https://aruppi.jeluchu.xyz/res/directory/1687.jpg", "type": "OVA", "genres": [ @@ -28990,7 +28990,7 @@ { "id": "fastening-days", "title": "Fastening Days", - "mal_title": "Fastening Days", + "mal_id": 28205, "poster": "https://aruppi.jeluchu.xyz/res/directory/1688.jpg", "type": "OVA", "genres": [ @@ -29005,7 +29005,7 @@ { "id": "madan-no-ou-to-vanadis-tigre-kun-to-vanadi-chu", "title": "Madan no Ou to Vanadis: Tigre-kun to Vanadi-chu", - "mal_title": "Madan no Ou to Vanadis: Tigre-kun to Vanadi-chu", + "mal_id": 27857, "poster": "https://aruppi.jeluchu.xyz/res/directory/1689.jpg", "type": "OVA", "genres": [ @@ -29019,7 +29019,7 @@ { "id": "sword-art-offline-ii", "title": "Sword Art Offline II", - "mal_title": "Sword Art Offline II", + "mal_id": 11757, "poster": "https://aruppi.jeluchu.xyz/res/directory/1690.jpg", "type": "OVA", "genres": [ @@ -29033,7 +29033,7 @@ { "id": "sabagebu-special-mission", "title": "Sabagebu! SPECIAL MISSION", - "mal_title": "Sabagebu! SPECIAL MISSION", + "mal_id": 25647, "poster": "https://aruppi.jeluchu.xyz/res/directory/1691.jpg", "type": "OVA", "genres": [ @@ -29050,7 +29050,7 @@ { "id": "detective-conan-movie-17", "title": "Detective Conan Movie 17: Private Eye in the Distant Sea", - "mal_title": "Detective Conan Movie 17: Private Eye in the Distant Sea", + "mal_id": 14735, "poster": "https://aruppi.jeluchu.xyz/res/directory/1692.jpg", "type": "Película", "genres": [ @@ -29068,7 +29068,7 @@ { "id": "detective-conan-movie-18", "title": "Detective Conan Movie 18: The Sniper from Another Dimension", - "mal_title": "Detective Conan Movie 18: The Sniper from Another Dimension", + "mal_id": 21419, "poster": "https://aruppi.jeluchu.xyz/res/directory/1693.jpg", "type": "Película", "genres": [ @@ -29085,7 +29085,7 @@ { "id": "new-prince-of-tennis-ova", "title": "New Prince of Tennis Ova", - "mal_title": "New Prince of Tennis Ova", + "mal_id": 13245, "poster": "https://aruppi.jeluchu.xyz/res/directory/1694.jpg", "type": "OVA", "genres": [ @@ -29102,7 +29102,7 @@ { "id": "love-stage-ova", "title": "Love Stage!! Ova", - "mal_title": "Love Stage!! Ova", + "mal_id": 21105, "poster": "https://aruppi.jeluchu.xyz/res/directory/1695.jpg", "type": "OVA", "genres": [ @@ -29118,7 +29118,7 @@ { "id": "gekijouban-shakugan-no-shana", "title": "Gekijouban Shakugan no Shana", - "mal_title": "Gekijouban Shakugan no Shana", + "mal_id": 1815, "poster": "https://aruppi.jeluchu.xyz/res/directory/1696.jpg", "type": "Película", "genres": [ @@ -29134,7 +29134,7 @@ { "id": "shakugan-no-shana-s", "title": "Shakugan no Shana S", - "mal_title": "Shakugan no Shana S", + "mal_id": 6572, "poster": "https://aruppi.jeluchu.xyz/res/directory/1697.jpg", "type": "OVA", "genres": [ @@ -29153,7 +29153,7 @@ { "id": "diamond-no-ace-ova", "title": "Diamond no Ace OVA", - "mal_title": "Diamond no Ace OVA", + "mal_id": 25341, "poster": "https://aruppi.jeluchu.xyz/res/directory/1698.jpg", "type": "OVA", "genres": [ @@ -29170,7 +29170,7 @@ { "id": "infinite-stratos-2-world-purge-hen", "title": "IS: Infinite Stratos 2 - World Purge-hen", - "mal_title": "IS: Infinite Stratos 2 - World Purge-hen", + "mal_id": 21653, "poster": "https://aruppi.jeluchu.xyz/res/directory/1699.jpg", "type": "OVA", "genres": [ @@ -29188,7 +29188,7 @@ { "id": "tengen-toppa-gurren-lagann-movie-gurren-hen", "title": "Tengen Toppa Gurren Lagann Movie: Gurren-hen", - "mal_title": "Tengen Toppa Gurren Lagann Movie: Gurren-hen", + "mal_id": 4565, "poster": "https://aruppi.jeluchu.xyz/res/directory/1700.jpg", "type": "Película", "genres": [ @@ -29204,7 +29204,7 @@ { "id": "tengen-toppa-gurren-lagann-movie-lagann-hen", "title": "Tengen Toppa Gurren Lagann Movie: Lagann-hen", - "mal_title": "Tengen Toppa Gurren Lagann Movie: Lagann-hen", + "mal_id": 4565, "poster": "https://aruppi.jeluchu.xyz/res/directory/1701.jpg", "type": "Película", "genres": [ @@ -29222,7 +29222,7 @@ { "id": "comic-party", "title": "Comic Party", - "mal_title": "Comic Party", + "mal_id": 289, "poster": "https://aruppi.jeluchu.xyz/res/directory/1702.jpg", "type": "Anime", "genres": [ @@ -29237,7 +29237,7 @@ { "id": "comic-party-specials", "title": "Comic Party Specials", - "mal_title": "Comic Party Specials", + "mal_id": 707, "poster": "https://aruppi.jeluchu.xyz/res/directory/1703.jpg", "type": "OVA", "genres": [ @@ -29252,7 +29252,7 @@ { "id": "comic-party-revolution", "title": "Comic Party Revolution", - "mal_title": "Comic Party Revolution", + "mal_id": 706, "poster": "https://aruppi.jeluchu.xyz/res/directory/1704.jpg", "type": "Anime", "genres": [ @@ -29267,7 +29267,7 @@ { "id": "senkaiden-houshin-engi", "title": "Senkaiden Houshin Engi", - "mal_title": "Senkaiden Houshin Engi", + "mal_id": 1108, "poster": "https://aruppi.jeluchu.xyz/res/directory/1705.jpg", "type": "Anime", "genres": [ @@ -29286,7 +29286,7 @@ { "id": "saber-marionette-j", "title": "Saber Marionette J", - "mal_title": "Saber Marionette J", + "mal_id": 573, "poster": "https://aruppi.jeluchu.xyz/res/directory/1706.jpg", "type": "Anime", "genres": [ @@ -29309,7 +29309,7 @@ { "id": "saber-marionette-j-again", "title": "Saber Marionette J Again", - "mal_title": "Saber Marionette J Again", + "mal_id": 1191, "poster": "https://aruppi.jeluchu.xyz/res/directory/1707.jpg", "type": "OVA", "genres": [ @@ -29328,7 +29328,7 @@ { "id": "saber-marionette-j-to-x", "title": "Saber Marionette J to X", - "mal_title": "Saber Marionette J to X", + "mal_id": 1231, "poster": "https://aruppi.jeluchu.xyz/res/directory/1708.jpg", "type": "Anime", "genres": [ @@ -29347,7 +29347,7 @@ { "id": "saber-marionette-r", "title": "Saber Marionette R", - "mal_title": "Saber Marionette R", + "mal_id": 1232, "poster": "https://aruppi.jeluchu.xyz/res/directory/1709.jpg", "type": "OVA", "genres": [ @@ -29365,7 +29365,7 @@ { "id": "ookami-kodomo-no-ame-to-yuki", "title": "Ookami Kodomo no Ame to Yuki", - "mal_title": "Ookami Kodomo no Ame to Yuki", + "mal_id": 12355, "poster": "https://aruppi.jeluchu.xyz/res/directory/1710.jpg", "type": "Película", "genres": [ @@ -29380,7 +29380,7 @@ { "id": "minami-ke-betsubara", "title": "Minami-ke Betsubara", - "mal_title": "Minami-ke Betsubara", + "mal_id": 5713, "poster": "https://aruppi.jeluchu.xyz/res/directory/1711.jpg", "type": "OVA", "genres": [ @@ -29395,7 +29395,7 @@ { "id": "tenshi-kinryouku", "title": "Tenshi Kinryouku", - "mal_title": "Tenshi Kinryouku", + "mal_id": 51, "poster": "https://aruppi.jeluchu.xyz/res/directory/1712.jpg", "type": "OVA", "genres": [ @@ -29413,7 +29413,7 @@ { "id": "perrine-monogatari", "title": "Perrine Monogatari", - "mal_title": "Perrine Monogatari", + "mal_id": 2549, "poster": "https://aruppi.jeluchu.xyz/res/directory/1713.jpg", "type": "Anime", "genres": [ @@ -29430,7 +29430,7 @@ { "id": "nishi-no-yoki-majo-astraea-testament", "title": "Nishi no Yoki Majo: Astraea Testament", - "mal_title": "Nishi no Yoki Majo: Astraea Testament", + "mal_id": 942, "poster": "https://aruppi.jeluchu.xyz/res/directory/1714.jpg", "type": "Anime", "genres": [ @@ -29448,7 +29448,7 @@ { "id": "shingeki-no-kyojin-kuinaki-sentaku", "title": "Shingeki no Kyojin: Kuinaki Sentaku", - "mal_title": "Shingeki no Kyojin: Kuinaki Sentaku", + "mal_id": 25781, "poster": "https://aruppi.jeluchu.xyz/res/directory/1715.jpg", "type": "OVA", "genres": [ @@ -29465,7 +29465,7 @@ { "id": "date-a-live-encore-ova", "title": "Date A Live: Encore OVA", - "mal_title": "Date A Live: Encore OVA", + "mal_id": 22961, "poster": "https://aruppi.jeluchu.xyz/res/directory/1716.jpg", "type": "OVA", "genres": [ @@ -29480,7 +29480,7 @@ { "id": "boku-wa-imouto-ni-koi-wo-suru", "title": "Boku wa Imouto ni Koi wo Suru", - "mal_title": "Boku wa Imouto ni Koi wo Suru", + "mal_id": 819, "poster": "https://aruppi.jeluchu.xyz/res/directory/1717.jpg", "type": "OVA", "genres": [ @@ -29495,7 +29495,7 @@ { "id": "soukyuu-no-fafner-right-of-left", "title": "Soukyuu no Fafner: Right of Left", - "mal_title": "Soukyuu no Fafner: Right of Left", + "mal_id": 560, "poster": "https://aruppi.jeluchu.xyz/res/directory/1718.jpg", "type": "OVA", "genres": [ @@ -29513,7 +29513,7 @@ { "id": "soukyuu-no-fafner-dead-aggressor", "title": "Soukyuu no Fafner: Dead Aggressor", - "mal_title": "Soukyuu no Fafner: Dead Aggressor", + "mal_id": 75, "poster": "https://aruppi.jeluchu.xyz/res/directory/1719.jpg", "type": "Anime", "genres": [ @@ -29531,7 +29531,7 @@ { "id": "soukyuu-no-fafner-dead-aggressor-heaven-and-earth", "title": "Soukyuu no Fafner: Dead Aggressor - Heaven and Earth", - "mal_title": "Soukyuu no Fafner: Dead Aggressor - Heaven and Earth", + "mal_id": 8098, "poster": "https://aruppi.jeluchu.xyz/res/directory/1720.jpg", "type": "Película", "genres": [ @@ -29549,7 +29549,7 @@ { "id": "persona-trinity-soul", "title": "Persona: Trinity Soul", - "mal_title": "Persona: Trinity Soul", + "mal_id": 3366, "poster": "https://aruppi.jeluchu.xyz/res/directory/1721.jpg", "type": "Anime", "genres": [ @@ -29565,7 +29565,7 @@ { "id": "halo-legends", "title": "Halo Legends", - "mal_title": "Halo Legends", + "mal_id": 6867, "poster": "https://aruppi.jeluchu.xyz/res/directory/1722.jpg", "type": "OVA", "genres": [ @@ -29582,7 +29582,7 @@ { "id": "drappler-baki", "title": "Grappler Baki", - "mal_title": "Grappler Baki", + "mal_id": 287, "poster": "https://aruppi.jeluchu.xyz/res/directory/1723.jpg", "type": "Anime", "genres": [ @@ -29597,7 +29597,7 @@ { "id": "grappler-baki-saidai-tournament-hen", "title": "Grappler Baki: Saidai Tournament Hen", - "mal_title": "Grappler Baki: Saidai Tournament Hen", + "mal_id": 551, "poster": "https://aruppi.jeluchu.xyz/res/directory/1724.jpg", "type": "Anime", "genres": [ @@ -29614,7 +29614,7 @@ { "id": "grappler-baki-ova", "title": "Grappler Baki OVA", - "mal_title": "Grappler Baki OVA", + "mal_id": 1859, "poster": "https://aruppi.jeluchu.xyz/res/directory/1725.jpg", "type": "OVA", "genres": [ @@ -29630,7 +29630,7 @@ { "id": "yumeiro-patissiere", "title": "Yumeiro Patissiere", - "mal_title": "Yumeiro Patissiere", + "mal_id": 6586, "poster": "https://aruppi.jeluchu.xyz/res/directory/1726.jpg", "type": "Anime", "genres": [ @@ -29646,7 +29646,7 @@ { "id": "gakuen-alice", "title": "Gakuen Alice", - "mal_title": "Gakuen Alice", + "mal_id": 74, "poster": "https://aruppi.jeluchu.xyz/res/directory/1727.jpg", "type": "Anime", "genres": [ @@ -29663,7 +29663,7 @@ { "id": "android-ana-maico-2010", "title": "Android Ana Maico 2010", - "mal_title": "Android Ana Maico 2010", + "mal_id": 810, "poster": "https://aruppi.jeluchu.xyz/res/directory/1728.jpg", "type": "Anime", "genres": [ @@ -29680,7 +29680,7 @@ { "id": "dear-boys", "title": "Dear Boys", - "mal_title": "Dear Boys", + "mal_id": 292, "poster": "https://aruppi.jeluchu.xyz/res/directory/1729.jpg", "type": "Anime", "genres": [ @@ -29696,7 +29696,7 @@ { "id": "inukami", "title": "Inukami!", - "mal_title": "Inukami!", + "mal_id": 940, "poster": "https://aruppi.jeluchu.xyz/res/directory/1730.jpg", "type": "Anime", "genres": [ @@ -29714,7 +29714,7 @@ { "id": "inukami-the-movie", "title": "Inukami! the Movie", - "mal_title": "Inukami! the Movie", + "mal_id": 2132, "poster": "https://aruppi.jeluchu.xyz/res/directory/1731.jpg", "type": "Película", "genres": [ @@ -29732,7 +29732,7 @@ { "id": "kimi-ga-aruji-de-shitsuji-ga-ore-de", "title": "Kimi ga Aruji de Shitsuji ga Ore de", - "mal_title": "Kimi ga Aruji de Shitsuji ga Ore de", + "mal_id": 3229, "poster": "https://aruppi.jeluchu.xyz/res/directory/1732.jpg", "type": "Anime", "genres": [ @@ -29750,7 +29750,7 @@ { "id": "magikano", "title": "Magikano", - "mal_title": "Magikano", + "mal_id": 576, "poster": "https://aruppi.jeluchu.xyz/res/directory/1733.jpg", "type": "Anime", "genres": [ @@ -29769,7 +29769,7 @@ { "id": "rakuen-tsuihou-expelled-from-paradise", "title": "Rakuen Tsuihou: Expelled From Paradise", - "mal_title": "Rakuen Tsuihou: Expelled From Paradise", + "mal_id": 13391, "poster": "https://aruppi.jeluchu.xyz/res/directory/1734.jpg", "type": "Película", "genres": [ @@ -29785,7 +29785,7 @@ { "id": "yamada-kun-to-7-nin-no-majo", "title": "Yamada-kun to 7-nin no Majo", - "mal_title": "Yamada-kun to 7-nin no Majo", + "mal_id": 20359, "poster": "https://aruppi.jeluchu.xyz/res/directory/1735.jpg", "type": "OVA", "genres": [ @@ -29802,7 +29802,7 @@ { "id": "ikkitousen-extravaganza-epoch", "title": "Ikkitousen: Extravaganza Epoch", - "mal_title": "Ikkitousen: Extravaganza Epoch", + "mal_id": 26183, "poster": "https://aruppi.jeluchu.xyz/res/directory/1736.jpg", "type": "OVA", "genres": [ @@ -29821,7 +29821,7 @@ { "id": "the-idolmaster-movie-kagayaki-no-mukougawa-e", "title": "The iDOLM@STER Movie: Kagayaki no Mukougawa e!", - "mal_title": "The iDOLM@STER Movie: Kagayaki no Mukougawa e!", + "mal_id": 17437, "poster": "https://aruppi.jeluchu.xyz/res/directory/1737.jpg", "type": "Película", "genres": [ @@ -29837,7 +29837,7 @@ { "id": "strike-witches-operation-victory-arrow", "title": "Strike Witches: Operation Victory Arrow", - "mal_title": "Strike Witches: Operation Victory Arrow", + "mal_id": 23725, "poster": "https://aruppi.jeluchu.xyz/res/directory/1738.jpg", "type": "OVA", "genres": [ @@ -29855,7 +29855,7 @@ { "id": "tantei-kageki-milky-holmes-td", "title": "Tantei Kageki Milky Holmes TD", - "mal_title": "Tantei Kageki Milky Holmes TD", + "mal_id": 27629, "poster": "https://aruppi.jeluchu.xyz/res/directory/1739.jpg", "type": "Anime", "genres": [ @@ -29871,7 +29871,7 @@ { "id": "absolute-duo", "title": "Absolute Duo", - "mal_title": "Absolute Duo", + "mal_id": 25397, "poster": "https://aruppi.jeluchu.xyz/res/directory/1740.jpg", "type": "Anime", "genres": [ @@ -29890,7 +29890,7 @@ { "id": "yuri-kuma-arashi", "title": "Yuri Kuma Arashi", - "mal_title": "Yuri Kuma Arashi", + "mal_id": 26165, "poster": "https://aruppi.jeluchu.xyz/res/directory/1741.jpg", "type": "Anime", "genres": [ @@ -29909,7 +29909,7 @@ { "id": "kamisama-hajimemashita-2", "title": "Kamisama Hajimemashita◎", - "mal_title": "Kamisama Hajimemashita◎", + "mal_id": 25681, "poster": "https://aruppi.jeluchu.xyz/res/directory/1742.jpg", "type": "Anime", "genres": [ @@ -29928,7 +29928,7 @@ { "id": "binan-koukou-chikyuu-bouei-bu-love", "title": "Binan Koukou Chikyuu Bouei-bu Love!", - "mal_title": "Binan Koukou Chikyuu Bouei-bu Love!", + "mal_id": 31417, "poster": "https://aruppi.jeluchu.xyz/res/directory/1743.jpg", "type": "Anime", "genres": [ @@ -29945,7 +29945,7 @@ { "id": "kantai-collection-kancolle", "title": "Kantai Collection: KanColle", - "mal_title": "Kantai Collection: KanColle", + "mal_id": 21511, "poster": "https://aruppi.jeluchu.xyz/res/directory/1744.jpg", "type": "Anime", "genres": [ @@ -29963,7 +29963,7 @@ { "id": "shinmai-maou-no-keiyakusha", "title": "Shinmai Maou no Testament", - "mal_title": "Shinmai Maou no Testament", + "mal_id": 23233, "poster": "https://aruppi.jeluchu.xyz/res/directory/1745.jpg", "type": "Anime", "genres": [ @@ -29982,7 +29982,7 @@ { "id": "tokyo-ghoul-2", "title": "Tokyo Ghoul √A", - "mal_title": "Tokyo Ghoul √A", + "mal_id": 27899, "poster": "https://aruppi.jeluchu.xyz/res/directory/1746.jpg", "type": "Anime", "genres": [ @@ -30002,7 +30002,7 @@ { "id": "saenai-heroin-no-sodatekata", "title": "Saenai Heroine no Sodatekata", - "mal_title": "Saenai Heroine no Sodatekata", + "mal_id": 23277, "poster": "https://aruppi.jeluchu.xyz/res/directory/1747.jpg", "type": "Anime", "genres": [ @@ -30020,7 +30020,7 @@ { "id": "koufuku-graffiti", "title": "Koufuku Graffiti", - "mal_title": "Koufuku Graffiti", + "mal_id": 24629, "poster": "https://aruppi.jeluchu.xyz/res/directory/1748.jpg", "type": "Anime", "genres": [ @@ -30036,7 +30036,7 @@ { "id": "juuou-mujin-no-fafnir", "title": "Juuou Mujin no Fafnir", - "mal_title": "Juuou Mujin no Fafnir", + "mal_id": 24873, "poster": "https://aruppi.jeluchu.xyz/res/directory/1749.jpg", "type": "Anime", "genres": [ @@ -30053,7 +30053,7 @@ { "id": "soukyuu-no-fafner-dead-aggressor-exodus", "title": "Soukyuu no Fafner: Dead Aggressor - Exodus", - "mal_title": "Soukyuu no Fafner: Dead Aggressor - Exodus", + "mal_id": 17080, "poster": "https://aruppi.jeluchu.xyz/res/directory/1750.jpg", "type": "Anime", "genres": [ @@ -30071,7 +30071,7 @@ { "id": "the-idolmaster-cinderella-girls", "title": "The iDOLM@STER Cinderella Girls", - "mal_title": "The iDOLM@STER Cinderella Girls", + "mal_id": 23587, "poster": "https://aruppi.jeluchu.xyz/res/directory/1751.jpg", "type": "Anime", "genres": [ @@ -30087,7 +30087,7 @@ { "id": "jojos-bizarre-adventure-stardust-crusaders-2", "title": "Jojo's Bizarre Adventure: Stardust Crusaders 2nd Season", - "mal_title": "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders 2nd Season", + "mal_id": 26055, "poster": "https://aruppi.jeluchu.xyz/res/directory/1752.jpg", "type": "Anime", "genres": [ @@ -30105,7 +30105,7 @@ { "id": "ansatsu-kyoushitsu-tv", "title": "Ansatsu Kyoushitsu (TV)", - "mal_title": "Ansatsu Kyoushitsu", + "mal_id": 24833, "poster": "https://aruppi.jeluchu.xyz/res/directory/1753.jpg", "type": "Anime", "genres": [ @@ -30122,7 +30122,7 @@ { "id": "death-parade", "title": "Death Parade", - "mal_title": "Death Parade", + "mal_id": 28223, "poster": "https://aruppi.jeluchu.xyz/res/directory/1754.jpg", "type": "Anime", "genres": [ @@ -30140,7 +30140,7 @@ { "id": "shounen-hollywood-holly-stage-for-50", "title": "Shounen Hollywood: Holly Stage for 50", - "mal_title": "Shounen Hollywood: Holly Stage for 50", + "mal_id": 27741, "poster": "https://aruppi.jeluchu.xyz/res/directory/1755.jpg", "type": "Anime", "genres": [ @@ -30156,7 +30156,7 @@ { "id": "durararax2-shou", "title": "Durarara!!x2 Shou", - "mal_title": "Durarara!!x2 Shou", + "mal_id": 23199, "poster": "https://aruppi.jeluchu.xyz/res/directory/1756.jpg", "type": "Anime", "genres": [ @@ -30172,7 +30172,7 @@ { "id": "aldnoah-zero-2", "title": "Aldnoah.Zero 2", - "mal_title": "Aldnoah.Zero 2", + "mal_id": 22729, "poster": "https://aruppi.jeluchu.xyz/res/directory/1757.jpg", "type": "Anime", "genres": [ @@ -30189,7 +30189,7 @@ { "id": "dog-days-3", "title": "Dog Days''", - "mal_title": "Dog Days''", + "mal_id": 10155, "poster": "https://aruppi.jeluchu.xyz/res/directory/1758.jpg", "type": "Anime", "genres": [ @@ -30206,7 +30206,7 @@ { "id": "rolling-girls", "title": "Rolling☆Girls", - "mal_title": "Rolling☆Girls", + "mal_id": 25867, "poster": "https://aruppi.jeluchu.xyz/res/directory/1759.jpg", "type": "Anime", "genres": [ @@ -30223,7 +30223,7 @@ { "id": "kuroko-no-basket-3", "title": "Kuroko no Basket 3", - "mal_title": "Kuroko no Basket 3", + "mal_id": 11771, "poster": "https://aruppi.jeluchu.xyz/res/directory/1760.jpg", "type": "Anime", "genres": [ @@ -30240,7 +30240,7 @@ { "id": "yoru-no-yatterman", "title": "Yoru no Yatterman", - "mal_title": "Yoru no Yatterman", + "mal_id": 28155, "poster": "https://aruppi.jeluchu.xyz/res/directory/1761.jpg", "type": "Anime", "genres": [ @@ -30257,7 +30257,7 @@ { "id": "junketsu-no-maria", "title": "Junketsu no Maria", - "mal_title": "Junketsu no Maria", + "mal_id": 26441, "poster": "https://aruppi.jeluchu.xyz/res/directory/1762.jpg", "type": "Anime", "genres": [ @@ -30275,7 +30275,7 @@ { "id": "seiken-tsukai-no-world-break", "title": "Seiken Tsukai no World Break", - "mal_title": "Seiken Tsukai no World Break", + "mal_id": 22663, "poster": "https://aruppi.jeluchu.xyz/res/directory/1763.jpg", "type": "Anime", "genres": [ @@ -30294,7 +30294,7 @@ { "id": "sengoku-musou", "title": "Sengoku Musou", - "mal_title": "Sengoku Musou", + "mal_id": 28283, "poster": "https://aruppi.jeluchu.xyz/res/directory/1764.jpg", "type": "Anime", "genres": [ @@ -30310,7 +30310,7 @@ { "id": "isuca", "title": "Isuca", - "mal_title": "Isuca", + "mal_id": 25429, "poster": "https://aruppi.jeluchu.xyz/res/directory/1765.jpg", "type": "Anime", "genres": [ @@ -30330,7 +30330,7 @@ { "id": "strike-witches-movie", "title": "Strike Witches Movie", - "mal_title": "Strike Witches Movie", + "mal_id": 9751, "poster": "https://aruppi.jeluchu.xyz/res/directory/1766.jpg", "type": "Película", "genres": [ @@ -30348,7 +30348,7 @@ { "id": "daitoshokan-no-hitsujikai-specials", "title": "Daitoshokan no Hitsujikai Specials", - "mal_title": "Daitoshokan no Hitsujikai Specials", + "mal_id": 17827, "poster": "https://aruppi.jeluchu.xyz/res/directory/1767.jpg", "type": "OVA", "genres": [ @@ -30364,7 +30364,7 @@ { "id": "grisaia-no-kajitsu-specials", "title": "Grisaia no Kajitsu Specials", - "mal_title": "Grisaia no Kajitsu Specials", + "mal_id": 29101, "poster": "https://aruppi.jeluchu.xyz/res/directory/1768.jpg", "type": "OVA", "genres": [ @@ -30378,7 +30378,7 @@ { "id": "rurouni-kenshin-kyoto-taika-hen", "title": "Rurouni Kenshin: Kyoto Taika-hen", - "mal_title": "Rurouni Kenshin: Kyoto Taika-hen", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1769.jpg", "type": "Película", "genres": [ @@ -30392,7 +30392,7 @@ { "id": "naruto-shippuuden-movie-7-the-last", "title": "Naruto: Shippuuden Movie 7 - The Last", - "mal_title": "Naruto: Shippuuden Movie 7 - The Last", + "mal_id": 2472, "poster": "https://aruppi.jeluchu.xyz/res/directory/1770.jpg", "type": "Película", "genres": [ @@ -30410,7 +30410,7 @@ { "id": "kono-danshi-uchuujin-to-tatakaemasu", "title": "Kono Danshi, Uchuujin to Tatakaemasu", - "mal_title": "Kono Danshi, Uchuujin to Tatakaemasu", + "mal_id": 11355, "poster": "https://aruppi.jeluchu.xyz/res/directory/1771.jpg", "type": "OVA", "genres": [ @@ -30428,7 +30428,7 @@ { "id": "kono-danshi-ningyo-hiroimashita", "title": "Kono Danshi, Ningyo Hiroimashita", - "mal_title": "Kono Danshi, Ningyo Hiroimashita", + "mal_id": 15439, "poster": "https://aruppi.jeluchu.xyz/res/directory/1772.jpg", "type": "OVA", "genres": [ @@ -30443,7 +30443,7 @@ { "id": "kono-danshi-sekka-ni-nayandemasu", "title": "Kono Danshi, Sekka ni Nayandemasu", - "mal_title": "Kono Danshi, Sekka ni Nayandemasu", + "mal_id": 25143, "poster": "https://aruppi.jeluchu.xyz/res/directory/1773.jpg", "type": "OVA", "genres": [ @@ -30459,7 +30459,7 @@ { "id": "tsukimonogatari", "title": "Tsukimonogatari", - "mal_title": "Tsukimonogatari", + "mal_id": 28025, "poster": "https://aruppi.jeluchu.xyz/res/directory/1774.jpg", "type": "Anime", "genres": [ @@ -30475,7 +30475,7 @@ { "id": "tales-of-zestiria-doushi-no-yoake", "title": "Tales of Zestiria: Doushi no Yoake", - "mal_title": "Tales of Zestiria: Doushi no Yoake", + "mal_id": 24459, "poster": "https://aruppi.jeluchu.xyz/res/directory/1775.jpg", "type": "OVA", "genres": [ @@ -30489,7 +30489,7 @@ { "id": "pokemon-pelicula-17-diancie-y-la-crisalida-de-la-destruccion", "title": "Pokemon Película 17: Diancie y la Crisálida de la Destrucción", - "mal_title": "Pokemon Película 17: Diancie y la Crisálida de la Destrucción", + "mal_id": 21569, "poster": "https://aruppi.jeluchu.xyz/res/directory/1776.jpg", "type": "Película", "genres": [ @@ -30505,7 +30505,7 @@ { "id": "dramatical-murder-ova-data-xx-transitory", "title": "DRAMAtical Murder OVA: Data_xx_Transitory", - "mal_title": "DRAMAtical Murder OVA: Data_xx_Transitory", + "mal_id": 25567, "poster": "https://aruppi.jeluchu.xyz/res/directory/1777.jpg", "type": "OVA", "genres": [ @@ -30522,7 +30522,7 @@ { "id": "tsumiki-no-ie", "title": "Tsumiki no Ie", - "mal_title": "Tsumiki no Ie", + "mal_id": 5365, "poster": "https://aruppi.jeluchu.xyz/res/directory/1778.jpg", "type": "Película", "genres": [ @@ -30536,7 +30536,7 @@ { "id": "military", "title": "Military!", - "mal_title": "Military!", + "mal_id": 26085, "poster": "https://aruppi.jeluchu.xyz/res/directory/1779.jpg", "type": "Anime", "genres": [ @@ -30554,7 +30554,7 @@ { "id": "one-piece-episode-of-chopper-plus-2014-special", "title": "One Piece: Episode of Chopper Plus - Fuyu ni Saku, Kiseki no Sakura (2014) Special", - "mal_title": "One Piece: Episode of Chopper Plus - Fuyu ni Saku, Kiseki no Sakura (2014) Special", + "mal_id": 3848, "poster": "https://aruppi.jeluchu.xyz/res/directory/1780.jpg", "type": "OVA", "genres": [ @@ -30573,7 +30573,7 @@ { "id": "byousoku-5-centimeter", "title": "Byousoku 5 Centimeter", - "mal_title": "Byousoku 5 Centimeter", + "mal_id": 1689, "poster": "https://aruppi.jeluchu.xyz/res/directory/1781.jpg", "type": "Película", "genres": [ @@ -30589,7 +30589,7 @@ { "id": "touhai-densetsu-akagi-yami-ni-maiorita-tensai", "title": "Touhai Densetsu Akagi: Yami ni Maiorita Tensai", - "mal_title": "Touhai Densetsu Akagi: Yami ni Maiorita Tensai", + "mal_id": 658, "poster": "https://aruppi.jeluchu.xyz/res/directory/1782.jpg", "type": "Anime", "genres": [ @@ -30606,7 +30606,7 @@ { "id": "ultra-maniac", "title": "Ultra Maniac", - "mal_title": "Ultra Maniac", + "mal_id": 178, "poster": "https://aruppi.jeluchu.xyz/res/directory/1783.jpg", "type": "Anime", "genres": [ @@ -30624,7 +30624,7 @@ { "id": "ultra-maniac-ova", "title": "Ultra Maniac OVA", - "mal_title": "Ultra Maniac OVA", + "mal_id": 179, "poster": "https://aruppi.jeluchu.xyz/res/directory/1784.jpg", "type": "OVA", "genres": [ @@ -30641,7 +30641,7 @@ { "id": "munto", "title": "Munto", - "mal_title": "Munto", + "mal_id": 1174, "poster": "https://aruppi.jeluchu.xyz/res/directory/1785.jpg", "type": "OVA", "genres": [ @@ -30657,7 +30657,7 @@ { "id": "munto-toki-no-kabe-wo-koete", "title": "Munto: Toki no Kabe wo Koete", - "mal_title": "Munto: Toki no Kabe wo Koete", + "mal_id": 1135, "poster": "https://aruppi.jeluchu.xyz/res/directory/1786.jpg", "type": "OVA", "genres": [ @@ -30674,7 +30674,7 @@ { "id": "sora-wo-miageru-shoujo-no-hitomi-ni-utsuru-sekai", "title": "Sora wo Miageru Shoujo no Hitomi ni Utsuru Sekai", - "mal_title": "Sora wo Miageru Shoujo no Hitomi ni Utsuru Sekai", + "mal_id": 5702, "poster": "https://aruppi.jeluchu.xyz/res/directory/1787.jpg", "type": "Anime", "genres": [ @@ -30692,7 +30692,7 @@ { "id": "shin-gekijouban-initial-d-legend-1-kakusei", "title": "Shin Gekijouban Initial D: Legend 1 - Kakusei", - "mal_title": "Shin Gekijouban Initial D: Legend 1 - Kakusei", + "mal_id": 19613, "poster": "https://aruppi.jeluchu.xyz/res/directory/1788.jpg", "type": "Película", "genres": [ @@ -30709,7 +30709,7 @@ { "id": "rurouni-kenshin-densetsu-no-saigo-hen", "title": "Rurouni Kenshin: Densetsu no Saigo-hen", - "mal_title": "Rurouni Kenshin: Densetsu no Saigo-hen", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1789.jpg", "type": "Película", "genres": [ @@ -30723,7 +30723,7 @@ { "id": "pokemon-pikachu-kore-nan-no-kagi", "title": "Pokemon: Pikachu, Kore Nan no Kagi?", - "mal_title": "Pokemon: Pikachu, Kore Nan no Kagi?", + "mal_id": 21571, "poster": "https://aruppi.jeluchu.xyz/res/directory/1790.jpg", "type": "OVA", "genres": [ @@ -30740,7 +30740,7 @@ { "id": "buki-yo-saraba", "title": "Buki yo Saraba", - "mal_title": "Buki yo Saraba", + "mal_id": 17677, "poster": "https://aruppi.jeluchu.xyz/res/directory/1791.jpg", "type": "Película", "genres": [ @@ -30756,7 +30756,7 @@ { "id": "sukitte-iinayo-live-action", "title": "Sukitte iinayo Live Action", - "mal_title": "Sukitte iinayo Live Action", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1792.jpg", "type": "Película", "genres": [ @@ -30770,7 +30770,7 @@ { "id": "giovanni-no-shima", "title": "Giovanni no Shima", - "mal_title": "Giovanni no Shima", + "mal_id": 19115, "poster": "https://aruppi.jeluchu.xyz/res/directory/1793.jpg", "type": "Película", "genres": [ @@ -30785,7 +30785,7 @@ { "id": "bokura-wa-minna-kawaisou-hajimete-no", "title": "Bokura wa Minna Kawaisou: Hajimete no", - "mal_title": "Bokura wa Minna Kawaisou: Hajimete no", + "mal_id": 24913, "poster": "https://aruppi.jeluchu.xyz/res/directory/1794.jpg", "type": "OVA", "genres": [ @@ -30802,7 +30802,7 @@ { "id": "digimon-adventure-movie", "title": "Digimon Adventure Movie", - "mal_title": "Digimon Adventure Movie", + "mal_id": 2961, "poster": "https://aruppi.jeluchu.xyz/res/directory/1795.jpg", "type": "Película", "genres": [ @@ -30819,7 +30819,7 @@ { "id": "kuroshitsuji-book-of-murder", "title": "Kuroshitsuji: Book of Murder", - "mal_title": "Kuroshitsuji: Book of Murder", + "mal_id": 23317, "poster": "https://aruppi.jeluchu.xyz/res/directory/1796.jpg", "type": "OVA", "genres": [ @@ -30839,7 +30839,7 @@ { "id": "the-disappearance-of-conan-edogawa-the-worst-two", "title": "The Disappearance of Conan Edogawa: The Worst Two Days in History", - "mal_title": "The Disappearance of Conan Edogawa: The Worst Two Days in History", + "mal_id": 21867, "poster": "https://aruppi.jeluchu.xyz/res/directory/1797.jpg", "type": "OVA", "genres": [ @@ -30857,7 +30857,7 @@ { "id": "anime-de-wakaru-shinryounaika", "title": "Anime de Wakaru Shinryounaika", - "mal_title": "Anime de Wakaru Shinryounaika", + "mal_id": 27911, "poster": "https://aruppi.jeluchu.xyz/res/directory/1798.jpg", "type": "OVA", "genres": [ @@ -30872,7 +30872,7 @@ { "id": "yu-gi-oh-duel-monsters-remastered", "title": "Yu-Gi-Oh! Duel Monsters Remastered", - "mal_title": "Yu-Gi-Oh! Duel Monsters Remastered", + "mal_id": 481, "poster": "https://aruppi.jeluchu.xyz/res/directory/1799.jpg", "type": "Anime", "genres": [ @@ -30888,7 +30888,7 @@ { "id": "amagi-brilliant-park-wakuwaku-mini-theater", "title": "Amagi Brilliant Park: Wakuwaku Mini Theater", - "mal_title": "Amagi Brilliant Park: Wakuwaku Mini Theater", + "mal_id": 30056, "poster": "https://aruppi.jeluchu.xyz/res/directory/1800.jpg", "type": "OVA", "genres": [ @@ -30902,7 +30902,7 @@ { "id": "nihon-animator-mihonichi", "title": "Exposición de Animadores de Japón", - "mal_title": "Exposición de Animadores de Japón", + "mal_id": 28149, "poster": "https://aruppi.jeluchu.xyz/res/directory/1801.jpg", "type": "OVA", "genres": [ @@ -30916,7 +30916,7 @@ { "id": "go-princess-precure", "title": "Go! Princess Precure", - "mal_title": "Go! Princess Precure", + "mal_id": 28669, "poster": "https://aruppi.jeluchu.xyz/res/directory/1802.jpg", "type": "Anime", "genres": [ @@ -30936,7 +30936,7 @@ { "id": "hyakka-ryouran-samurai-after", "title": "Hyakka Ryouran: Samurai After", - "mal_title": "Hyakka Ryouran: Samurai After", + "mal_id": 25689, "poster": "https://aruppi.jeluchu.xyz/res/directory/1803.jpg", "type": "OVA", "genres": [ @@ -30951,7 +30951,7 @@ { "id": "hyakka-ryouran-samurai-after-specials", "title": "Hyakka Ryouran: Samurai After Specials", - "mal_title": "Hyakka Ryouran: Samurai After Specials", + "mal_id": 30237, "poster": "https://aruppi.jeluchu.xyz/res/directory/1804.jpg", "type": "OVA", "genres": [ @@ -30965,7 +30965,7 @@ { "id": "yuru-yuri-nachuyachumi", "title": "Yuru Yuri Nachuyachumi!", - "mal_title": "Yuru Yuri Nachuyachumi!", + "mal_id": 23225, "poster": "https://aruppi.jeluchu.xyz/res/directory/1805.jpg", "type": "OVA", "genres": [ @@ -30981,7 +30981,7 @@ { "id": "shirobako-specials", "title": "Shirobako Specials", - "mal_title": "Shirobako Specials", + "mal_id": 28105, "poster": "https://aruppi.jeluchu.xyz/res/directory/1806.jpg", "type": "OVA", "genres": [ @@ -30996,7 +30996,7 @@ { "id": "mobile-suit-gundam-the-origin", "title": "Mobile Suit Gundam: The Origin", - "mal_title": "Mobile Suit Gundam: The Origin", + "mal_id": 10937, "poster": "https://aruppi.jeluchu.xyz/res/directory/1807.jpg", "type": "Anime", "genres": [ @@ -31015,7 +31015,7 @@ { "id": "pale-cocoon", "title": "Pale Cocoon", - "mal_title": "Pale Cocoon", + "mal_id": 770, "poster": "https://aruppi.jeluchu.xyz/res/directory/1808.jpg", "type": "OVA", "genres": [ @@ -31030,7 +31030,7 @@ { "id": "ufo-princess-valkyrie", "title": "UFO Princess Valkyrie", - "mal_title": "UFO Princess Valkyrie", + "mal_id": 1127, "poster": "https://aruppi.jeluchu.xyz/res/directory/1809.jpg", "type": "Anime", "genres": [ @@ -31047,7 +31047,7 @@ { "id": "ufo-princess-valkyrie-2", "title": "UFO Princess Valkyrie 2: Juunigatsu no Yasoukyoku", - "mal_title": "UFO Princess Valkyrie 2: Juunigatsu no Yasoukyoku", + "mal_id": 1128, "poster": "https://aruppi.jeluchu.xyz/res/directory/1810.jpg", "type": "Anime", "genres": [ @@ -31063,7 +31063,7 @@ { "id": "mobile-suit-gundam", "title": "Mobile Suit Gundam", - "mal_title": "Mobile Suit Gundam", + "mal_id": 90, "poster": "https://aruppi.jeluchu.xyz/res/directory/1811.jpg", "type": "Anime", "genres": [ @@ -31081,7 +31081,7 @@ { "id": "mobile-suit-gundam-0080-war-in-the-pocket", "title": "Mobile Suit Gundam 0080: War in the Pocket", - "mal_title": "Mobile Suit Gundam 0080: War in the Pocket", + "mal_id": 82, "poster": "https://aruppi.jeluchu.xyz/res/directory/1812.jpg", "type": "OVA", "genres": [ @@ -31100,7 +31100,7 @@ { "id": "mobile-suit-gundam-0083-stardust-memory", "title": "Mobile Suit Gundam 0083: Stardust Memory", - "mal_title": "Mobile Suit Gundam 0083: Stardust Memory", + "mal_id": 84, "poster": "https://aruppi.jeluchu.xyz/res/directory/1813.jpg", "type": "OVA", "genres": [ @@ -31119,7 +31119,7 @@ { "id": "mobile-suit-gundam-0083-the-fading-light-of-zeon", "title": "Mobile Suit Gundam 0083: The Fading Light of Zeon", - "mal_title": "Mobile Suit Gundam 0083: The Fading Light of Zeon", + "mal_id": 2695, "poster": "https://aruppi.jeluchu.xyz/res/directory/1814.jpg", "type": "Película", "genres": [ @@ -31137,7 +31137,7 @@ { "id": "mobile-suit-gundam-ms-igloo-1-nen-sensou-hiroku", "title": "Mobile Suit Gundam MS IGLOO: 1-nen Sensou Hiroku", - "mal_title": "Mobile Suit Gundam MS IGLOO: 1-nen Sensou Hiroku", + "mal_id": 1917, "poster": "https://aruppi.jeluchu.xyz/res/directory/1815.jpg", "type": "OVA", "genres": [ @@ -31154,7 +31154,7 @@ { "id": "mobile-suit-gundam-ms-igloo-mokushiroku-0079", "title": "Mobile Suit Gundam MS IGLOO: Mokushiroku 0079", - "mal_title": "Mobile Suit Gundam MS IGLOO: Mokushiroku 0079", + "mal_id": 1916, "poster": "https://aruppi.jeluchu.xyz/res/directory/1816.jpg", "type": "OVA", "genres": [ @@ -31171,7 +31171,7 @@ { "id": "mobile-suit-gundam-ms-igloo-2-juuryoku-sensen", "title": "Mobile Suit Gundam MS IGLOO 2: Juuryoku Sensen", - "mal_title": "Mobile Suit Gundam MS IGLOO 2: Juuryoku Sensen", + "mal_id": 4232, "poster": "https://aruppi.jeluchu.xyz/res/directory/1817.jpg", "type": "OVA", "genres": [ @@ -31186,7 +31186,7 @@ { "id": "mobile-suit-zeta-gundam", "title": "Mobile Suit Zeta Gundam", - "mal_title": "Mobile Suit Zeta Gundam", + "mal_id": 85, "poster": "https://aruppi.jeluchu.xyz/res/directory/1818.jpg", "type": "Anime", "genres": [ @@ -31204,7 +31204,7 @@ { "id": "kidou-senshi-z-gundam-1-hoshi-wo-tsugu-mono", "title": "Kidou Senshi Z Gundam I: Hoshi wo Tsugu Mono", - "mal_title": "Kidou Senshi Z Gundam I: Hoshi wo Tsugu Mono", + "mal_id": 1967, "poster": "https://aruppi.jeluchu.xyz/res/directory/1819.jpg", "type": "Película", "genres": [ @@ -31222,7 +31222,7 @@ { "id": "kidou-senshi-z-gundam-2-koibito-tachi", "title": "Kidou Senshi Z Gundam II: Koibito-tachi", - "mal_title": "Kidou Senshi Z Gundam II: Koibito-tachi", + "mal_id": 1968, "poster": "https://aruppi.jeluchu.xyz/res/directory/1820.jpg", "type": "Película", "genres": [ @@ -31241,7 +31241,7 @@ { "id": "kidou-senshi-z-gundam-3-hoshi-no-kodou-wa-ai", "title": "Kidou Senshi Z Gundam III: Hoshi no Kodou wa Ai", - "mal_title": "Kidou Senshi Z Gundam III: Hoshi no Kodou wa Ai", + "mal_id": 1969, "poster": "https://aruppi.jeluchu.xyz/res/directory/1821.jpg", "type": "Película", "genres": [ @@ -31259,7 +31259,7 @@ { "id": "mobile-suit-gundam-zz", "title": "Mobile Suit Gundam ZZ", - "mal_title": "Mobile Suit Gundam ZZ", + "mal_id": 86, "poster": "https://aruppi.jeluchu.xyz/res/directory/1822.jpg", "type": "Anime", "genres": [ @@ -31278,7 +31278,7 @@ { "id": "mobile-suit-gundam-gyakushuu-no-char", "title": "Mobile Suit Gundam: Gyakushuu no Char", - "mal_title": "Mobile Suit Gundam: Gyakushuu no Char", + "mal_id": 68983, "poster": "https://aruppi.jeluchu.xyz/res/directory/1823.jpg", "type": "Película", "genres": [ @@ -31296,7 +31296,7 @@ { "id": "mobile-suit-gundam-unicorn", "title": "Mobile Suit Gundam Unicorn", - "mal_title": "Mobile Suit Gundam Unicorn", + "mal_id": 6336, "poster": "https://aruppi.jeluchu.xyz/res/directory/1824.jpg", "type": "OVA", "genres": [ @@ -31315,7 +31315,7 @@ { "id": "mobile-suit-gundam-f91", "title": "Mobile Suit Gundam F91", - "mal_title": "Mobile Suit Gundam F91", + "mal_id": 88, "poster": "https://aruppi.jeluchu.xyz/res/directory/1825.jpg", "type": "Película", "genres": [ @@ -31333,7 +31333,7 @@ { "id": "mobile-suit-victory-gundam", "title": "Mobile Suit Victory Gundam", - "mal_title": "Mobile Suit Victory Gundam", + "mal_id": 89, "poster": "https://aruppi.jeluchu.xyz/res/directory/1826.jpg", "type": "Anime", "genres": [ @@ -31351,7 +31351,7 @@ { "id": "kidou-butouden-g-gundam", "title": "Kidou Butouden G Gundam", - "mal_title": "Kidou Butouden G Gundam", + "mal_id": 96, "poster": "https://aruppi.jeluchu.xyz/res/directory/1827.jpg", "type": "Anime", "genres": [ @@ -31373,7 +31373,7 @@ { "id": "after-war-gundam-x", "title": "After War Gundam X", - "mal_title": "After War Gundam X", + "mal_id": 92, "poster": "https://aruppi.jeluchu.xyz/res/directory/1828.jpg", "type": "Anime", "genres": [ @@ -31391,7 +31391,7 @@ { "id": "turn-a-gundam", "title": "Turn A Gundam", - "mal_title": "Turn A Gundam", + "mal_id": 95, "poster": "https://aruppi.jeluchu.xyz/res/directory/1829.jpg", "type": "Anime", "genres": [ @@ -31411,7 +31411,7 @@ { "id": "high-school-dxd-new-born", "title": "High School DxD BorN", - "mal_title": "High School DxD BorN", + "mal_id": 24703, "poster": "https://aruppi.jeluchu.xyz/res/directory/1830.jpg", "type": "Anime", "genres": [ @@ -31431,7 +31431,7 @@ { "id": "mobile-suit-gundam-wing-endless-waltz", "title": "Mobile Suit Gundam Wing: Endless Waltz", - "mal_title": "Mobile Suit Gundam Wing: Endless Waltz", + "mal_id": 2273, "poster": "https://aruppi.jeluchu.xyz/res/directory/1831.jpg", "type": "OVA", "genres": [ @@ -31450,7 +31450,7 @@ { "id": "mobile-suit-gundam-wing-endless-waltz-movie", "title": "Mobile Suit Gundam Wing: Endless Waltz Movie", - "mal_title": "Mobile Suit Gundam Wing: Endless Waltz Movie", + "mal_id": 2273, "poster": "https://aruppi.jeluchu.xyz/res/directory/1832.jpg", "type": "Película", "genres": [ @@ -31469,7 +31469,7 @@ { "id": "hell-target", "title": "Hell Target", - "mal_title": "Hell Target", + "mal_id": 11411, "poster": "https://aruppi.jeluchu.xyz/res/directory/1833.jpg", "type": "Película", "genres": [ @@ -31485,7 +31485,7 @@ { "id": "shin-koihime-musou", "title": "Shin Koihime†Musou", - "mal_title": "Shin Koihime†Musou", + "mal_id": 6112, "poster": "https://aruppi.jeluchu.xyz/res/directory/1834.jpg", "type": "Anime", "genres": [ @@ -31502,7 +31502,7 @@ { "id": "shin-koihime-musou-ova", "title": "Shin Koihime†Musou OVA", - "mal_title": "Shin Koihime†Musou OVA", + "mal_id": 15095, "poster": "https://aruppi.jeluchu.xyz/res/directory/1835.jpg", "type": "OVA", "genres": [ @@ -31518,7 +31518,7 @@ { "id": "shin-koihime-musou-otome-tairan", "title": "Shin Koihime†Musou: Otome Tairan", - "mal_title": "Shin Koihime†Musou: Otome Tairan", + "mal_id": 8057, "poster": "https://aruppi.jeluchu.xyz/res/directory/1836.jpg", "type": "Anime", "genres": [ @@ -31536,7 +31536,7 @@ { "id": "shin-koihime-musou-otome-tairan-ova", "title": "Shin Koihime†Musou: Otome Tairan OVA", - "mal_title": "Shin Koihime†Musou: Otome Tairan OVA", + "mal_id": 15015, "poster": "https://aruppi.jeluchu.xyz/res/directory/1837.jpg", "type": "OVA", "genres": [ @@ -31551,7 +31551,7 @@ { "id": "bakumatsu-kikansetsu-irohanihoheto", "title": "Bakumatsu Kikansetsu Irohanihoheto", - "mal_title": "Bakumatsu Kikansetsu Irohanihoheto", + "mal_id": 1576, "poster": "https://aruppi.jeluchu.xyz/res/directory/1838.jpg", "type": "Anime", "genres": [ @@ -31568,7 +31568,7 @@ { "id": "maison-ikkoku", "title": "Maison Ikkoku", - "mal_title": "Maison Ikkoku", + "mal_id": 1453, "poster": "https://aruppi.jeluchu.xyz/res/directory/1839.jpg", "type": "Anime", "genres": [ @@ -31585,7 +31585,7 @@ { "id": "maison-ikkoku-kanketsu-hen", "title": "Maison Ikkoku: Kanketsu-hen", - "mal_title": "Maison Ikkoku: Kanketsu-hen", + "mal_id": 2460, "poster": "https://aruppi.jeluchu.xyz/res/directory/1840.jpg", "type": "Película", "genres": [ @@ -31601,7 +31601,7 @@ { "id": "mezzo-dsa", "title": "Mezzo DSA", - "mal_title": "Mezzo DSA", + "mal_id": 222, "poster": "https://aruppi.jeluchu.xyz/res/directory/1841.jpg", "type": "Anime", "genres": [ @@ -31619,7 +31619,7 @@ { "id": "danna-ga-nani-wo-itteiru-ka-wakaranai-ken-2-sure-me", "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", - "mal_title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "mal_id": 29067, "poster": "https://aruppi.jeluchu.xyz/res/directory/1842.jpg", "type": "Anime", "genres": [ @@ -31635,7 +31635,7 @@ { "id": "mahou-shoujo-lyrical-nanoha-vivid", "title": "Mahou Shoujo Lyrical Nanoha ViVid", - "mal_title": "Mahou Shoujo Lyrical Nanoha ViVid", + "mal_id": 25939, "poster": "https://aruppi.jeluchu.xyz/res/directory/1843.jpg", "type": "Anime", "genres": [ @@ -31651,7 +31651,7 @@ { "id": "re-kan", "title": "Re-Kan!", - "mal_title": "Re-Kan!", + "mal_id": 25859, "poster": "https://aruppi.jeluchu.xyz/res/directory/1844.jpg", "type": "Anime", "genres": [ @@ -31668,7 +31668,7 @@ { "id": "yahari-ore-no-seishun-love-comedy-wa-machigatteiru-zoku", "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", - "mal_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", + "mal_id": 23847, "poster": "https://aruppi.jeluchu.xyz/res/directory/1845.jpg", "type": "Anime", "genres": [ @@ -31685,7 +31685,7 @@ { "id": "denpa-kyoushi-tv", "title": "Denpa Kyoushi (TV)", - "mal_title": "Denpa Kyoushi (TV)", + "mal_id": 29589, "poster": "https://aruppi.jeluchu.xyz/res/directory/1846.jpg", "type": "Anime", "genres": [ @@ -31702,7 +31702,7 @@ { "id": "dungeon-ni-deai-wo-motomeru-no-wa-machigatteiru-darou-ka", "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", - "mal_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "mal_id": 28121, "poster": "https://aruppi.jeluchu.xyz/res/directory/1847.jpg", "type": "Anime", "genres": [ @@ -31720,7 +31720,7 @@ { "id": "gunslinger-stratos-the-animation", "title": "Gunslinger Stratos: The Animation", - "mal_title": "Gunslinger Stratos: The Animation", + "mal_id": 28791, "poster": "https://aruppi.jeluchu.xyz/res/directory/1848.jpg", "type": "Anime", "genres": [ @@ -31735,7 +31735,7 @@ { "id": "kyoukai-no-rinne-tv", "title": "Kyoukai no Rinne (TV)", - "mal_title": "Kyoukai no Rinne (TV)", + "mal_id": 28423, "poster": "https://aruppi.jeluchu.xyz/res/directory/1849.jpg", "type": "Anime", "genres": [ @@ -31753,7 +31753,7 @@ { "id": "nagato-yuki-chan-no-shoushitsu", "title": "Nagato Yuki-chan no Shoushitsu", - "mal_title": "Nagato Yuki-chan no Shoushitsu", + "mal_id": 26351, "poster": "https://aruppi.jeluchu.xyz/res/directory/1850.jpg", "type": "Anime", "genres": [ @@ -31771,7 +31771,7 @@ { "id": "owari-no-seraph", "title": "Owari no Seraph", - "mal_title": "Owari no Seraph", + "mal_id": 26243, "poster": "https://aruppi.jeluchu.xyz/res/directory/1851.jpg", "type": "Anime", "genres": [ @@ -31789,7 +31789,7 @@ { "id": "shokugeki-no-souma", "title": "Shokugeki no Souma", - "mal_title": "Shokugeki no Souma", + "mal_id": 28171, "poster": "https://aruppi.jeluchu.xyz/res/directory/1852.jpg", "type": "Anime", "genres": [ @@ -31805,7 +31805,7 @@ { "id": "vampire-holmes", "title": "Vampire Holmes", - "mal_title": "Vampire Holmes", + "mal_id": 28929, "poster": "https://aruppi.jeluchu.xyz/res/directory/1853.jpg", "type": "Anime", "genres": [ @@ -31822,7 +31822,7 @@ { "id": "ame-iro-cocoa", "title": "Ame-iro Cocoa", - "mal_title": "Ame-iro Cocoa", + "mal_id": 28981, "poster": "https://aruppi.jeluchu.xyz/res/directory/1854.jpg", "type": "Anime", "genres": [ @@ -31837,7 +31837,7 @@ { "id": "arslan-senki-tv", "title": "Arslan Senki (TV)", - "mal_title": "Arslan Senki (TV)", + "mal_id": 28249, "poster": "https://aruppi.jeluchu.xyz/res/directory/1855.jpg", "type": "Anime", "genres": [ @@ -31856,7 +31856,7 @@ { "id": "baby-steps-2", "title": "Baby Steps 2nd Season", - "mal_title": "Baby Steps 2nd Season", + "mal_id": 27663, "poster": "https://aruppi.jeluchu.xyz/res/directory/1856.jpg", "type": "Anime", "genres": [ @@ -31873,7 +31873,7 @@ { "id": "fate-stay-night-unlimited-blade-works-2", "title": "Fate/stay night: Unlimited Blade Works (TV) 2nd Season", - "mal_title": "Fate/stay night: Unlimited Blade Works (TV) 2nd Season", + "mal_id": 28701, "poster": "https://aruppi.jeluchu.xyz/res/directory/1857.jpg", "type": "Anime", "genres": [ @@ -31891,7 +31891,7 @@ { "id": "ghost-in-the-shell-arise-alternative-architecture", "title": "Ghost in the Shell: Arise - Alternative Architecture", - "mal_title": "Ghost in the Shell: Arise - Alternative Architecture", + "mal_id": 29325, "poster": "https://aruppi.jeluchu.xyz/res/directory/1858.jpg", "type": "Anime", "genres": [ @@ -31908,7 +31908,7 @@ { "id": "kekkai-sensen", "title": "Kekkai Sensen", - "mal_title": "Kekkai Sensen", + "mal_id": 24439, "poster": "https://aruppi.jeluchu.xyz/res/directory/1859.jpg", "type": "Anime", "genres": [ @@ -31927,7 +31927,7 @@ { "id": "plastic-memories", "title": "Plastic Memories", - "mal_title": "Plastic Memories", + "mal_id": 27775, "poster": "https://aruppi.jeluchu.xyz/res/directory/1860.jpg", "type": "Anime", "genres": [ @@ -31943,7 +31943,7 @@ { "id": "show-by-rock", "title": "Show By Rock!!", - "mal_title": "Show By Rock!!", + "mal_id": 32038, "poster": "https://aruppi.jeluchu.xyz/res/directory/1861.jpg", "type": "Anime", "genres": [ @@ -31958,7 +31958,7 @@ { "id": "uta-no-prince-sama-maji-love-revolutions", "title": "Uta no☆Prince-sama♪ Maji Love Revolutions", - "mal_title": "Uta no☆Prince-sama♪ Maji Love Revolutions", + "mal_id": 21439, "poster": "https://aruppi.jeluchu.xyz/res/directory/1862.jpg", "type": "Anime", "genres": [ @@ -31977,7 +31977,7 @@ { "id": "diamond-no-ace-second-season", "title": "Diamond no Ace: Second Season", - "mal_title": "Diamond no Ace: Second Season", + "mal_id": 30230, "poster": "https://aruppi.jeluchu.xyz/res/directory/1863.jpg", "type": "Anime", "genres": [ @@ -31994,7 +31994,7 @@ { "id": "kiniro-mosaic-2", "title": "Hello!! Kiniro Mosaic", - "mal_title": "Hello!! Kiniro Mosaic", + "mal_id": 23269, "poster": "https://aruppi.jeluchu.xyz/res/directory/1864.jpg", "type": "Anime", "genres": [ @@ -32010,7 +32010,7 @@ { "id": "kaitou-joker-2", "title": "Kaitou Joker 2nd Season", - "mal_title": "Kaitou Joker 2nd Season", + "mal_id": 28869, "poster": "https://aruppi.jeluchu.xyz/res/directory/1865.jpg", "type": "Anime", "genres": [ @@ -32027,7 +32027,7 @@ { "id": "mikagura-gakuen-kumikyoku", "title": "Mikagura Gakuen Kumikyoku", - "mal_title": "Mikagura Gakuen Kumikyoku", + "mal_id": 28817, "poster": "https://aruppi.jeluchu.xyz/res/directory/1866.jpg", "type": "Anime", "genres": [ @@ -32044,7 +32044,7 @@ { "id": "teekyuu-4", "title": "Teekyuu 4", - "mal_title": "Teekyuu 4", + "mal_id": 26395, "poster": "https://aruppi.jeluchu.xyz/res/directory/1867.jpg", "type": "Anime", "genres": [ @@ -32060,7 +32060,7 @@ { "id": "takamiya-nasuno-desu-teekyuu-spin-off", "title": "Takamiya Nasuno Desu!: Teekyuu Spin-off", - "mal_title": "Takamiya Nasuno Desu!: Teekyuu Spin-off", + "mal_id": 28861, "poster": "https://aruppi.jeluchu.xyz/res/directory/1868.jpg", "type": "Anime", "genres": [ @@ -32075,7 +32075,7 @@ { "id": "gintama-2015", "title": "Gintama°", - "mal_title": "Gintama°", + "mal_id": 28977, "poster": "https://aruppi.jeluchu.xyz/res/directory/1869.jpg", "type": "Anime", "genres": [ @@ -32095,7 +32095,7 @@ { "id": "hibike-euphonium", "title": "Hibike! Euphonium", - "mal_title": "Hibike! Euphonium", + "mal_id": 27989, "poster": "https://aruppi.jeluchu.xyz/res/directory/1870.jpg", "type": "Anime", "genres": [ @@ -32111,7 +32111,7 @@ { "id": "etotama", "title": "Etotama", - "mal_title": "Etotama", + "mal_id": 28221, "poster": "https://aruppi.jeluchu.xyz/res/directory/1871.jpg", "type": "Anime", "genres": [ @@ -32127,7 +32127,7 @@ { "id": "ore-monogatari", "title": "Ore Monogatari!!", - "mal_title": "Ore Monogatari!!", + "mal_id": 28297, "poster": "https://aruppi.jeluchu.xyz/res/directory/1872.jpg", "type": "Anime", "genres": [ @@ -32143,7 +32143,7 @@ { "id": "triage-x", "title": "Triage X", - "mal_title": "Triage X", + "mal_id": 26443, "poster": "https://aruppi.jeluchu.xyz/res/directory/1873.jpg", "type": "Anime", "genres": [ @@ -32160,7 +32160,7 @@ { "id": "houkago-no-pleiades-tv", "title": "Houkago no Pleiades (TV)", - "mal_title": "Houkago no Pleiades (TV)", + "mal_id": 17919, "poster": "https://aruppi.jeluchu.xyz/res/directory/1874.jpg", "type": "Anime", "genres": [ @@ -32175,7 +32175,7 @@ { "id": "nisekoi-2", "title": "Nisekoi 2", - "mal_title": "Nisekoi 2", + "mal_id": 27787, "poster": "https://aruppi.jeluchu.xyz/res/directory/1875.jpg", "type": "Anime", "genres": [ @@ -32193,7 +32193,7 @@ { "id": "punchline", "title": "Punchline", - "mal_title": "Punchline", + "mal_id": 28617, "poster": "https://aruppi.jeluchu.xyz/res/directory/1876.jpg", "type": "Anime", "genres": [ @@ -32211,7 +32211,7 @@ { "id": "urawa-no-usagi-chan", "title": "Urawa no Usagi-chan", - "mal_title": "Urawa no Usagi-chan", + "mal_id": 27927, "poster": "https://aruppi.jeluchu.xyz/res/directory/1877.jpg", "type": "Anime", "genres": [ @@ -32227,7 +32227,7 @@ { "id": "yamada-kun-to-7-nin-no-majo-tv", "title": "Yamada-kun to 7-nin no Majo (TV)", - "mal_title": "Yamada-kun to 7-nin no Majo (TV)", + "mal_id": 28677, "poster": "https://aruppi.jeluchu.xyz/res/directory/1878.jpg", "type": "Anime", "genres": [ @@ -32247,7 +32247,7 @@ { "id": "grisaia-no-meikyuu", "title": "Grisaia no Meikyuu", - "mal_title": "Grisaia no Meikyuu", + "mal_id": 29093, "poster": "https://aruppi.jeluchu.xyz/res/directory/1879.jpg", "type": "Anime", "genres": [ @@ -32261,7 +32261,7 @@ { "id": "ninja-slayer-from-animation", "title": "Ninja Slayer From Animation", - "mal_title": "Ninja Slayer From Animation", + "mal_id": 23605, "poster": "https://aruppi.jeluchu.xyz/res/directory/1880.jpg", "type": "OVA", "genres": [ @@ -32275,7 +32275,7 @@ { "id": "grisaia-no-rakuen", "title": "Grisaia no Rakuen", - "mal_title": "Grisaia no Rakuen", + "mal_id": 29095, "poster": "https://aruppi.jeluchu.xyz/res/directory/1881.jpg", "type": "Anime", "genres": [ @@ -32292,7 +32292,7 @@ { "id": "fantasista-stella", "title": "Fantasista Stella", - "mal_title": "Fantasista Stella", + "mal_id": 24817, "poster": "https://aruppi.jeluchu.xyz/res/directory/1882.jpg", "type": "OVA", "genres": [ @@ -32307,7 +32307,7 @@ { "id": "tamayura", "title": "Tamayura", - "mal_title": "Tamayura", + "mal_id": 9055, "poster": "https://aruppi.jeluchu.xyz/res/directory/1883.jpg", "type": "OVA", "genres": [ @@ -32323,7 +32323,7 @@ { "id": "samurai-girl-real-bout-high-school", "title": "Samurai Girl Real Bout High School", - "mal_title": "Samurai Girl Real Bout High School", + "mal_id": 1098, "poster": "https://aruppi.jeluchu.xyz/res/directory/1884.jpg", "type": "Anime", "genres": [ @@ -32340,7 +32340,7 @@ { "id": "silent-mobius", "title": "Silent Mobius", - "mal_title": "Silent Mobius", + "mal_id": 1517, "poster": "https://aruppi.jeluchu.xyz/res/directory/1885.jpg", "type": "Anime", "genres": [ @@ -32361,7 +32361,7 @@ { "id": "silent-mobius-the-motion-picture", "title": "Silent Mobius: The Motion Picture", - "mal_title": "Silent Mobius: The Motion Picture", + "mal_id": 2099, "poster": "https://aruppi.jeluchu.xyz/res/directory/1886.jpg", "type": "Película", "genres": [ @@ -32377,7 +32377,7 @@ { "id": "silent-mobius-2", "title": "Silent Mobius 2", - "mal_title": "Silent Mobius 2", + "mal_id": 1517, "poster": "https://aruppi.jeluchu.xyz/res/directory/1887.jpg", "type": "Película", "genres": [ @@ -32395,7 +32395,7 @@ { "id": "touhou-niji-sousaku-doujin-anime-musou-kakyou", "title": "Touhou Niji Sousaku Doujin Anime: Musou Kakyou", - "mal_title": "Touhou Niji Sousaku Doujin Anime: Musou Kakyou", + "mal_id": 9874, "poster": "https://aruppi.jeluchu.xyz/res/directory/1888.jpg", "type": "OVA", "genres": [ @@ -32410,7 +32410,7 @@ { "id": "digimon-adventure-tri", "title": "Digimon Adventure Tri.", - "mal_title": "Digimon Adventure Tri.", + "mal_id": 25687, "poster": "https://aruppi.jeluchu.xyz/res/directory/1889.jpg", "type": "Anime", "genres": [ @@ -32427,7 +32427,7 @@ { "id": "sidonia-no-kishi-daikyuu-wakusei-seneki", "title": "Sidonia no Kishi: Daikyuu Wakusei Seneki", - "mal_title": "Sidonia no Kishi: Daikyuu Wakusei Seneki", + "mal_id": 24893, "poster": "https://aruppi.jeluchu.xyz/res/directory/1890.jpg", "type": "Anime", "genres": [ @@ -32445,7 +32445,7 @@ { "id": "yotsunoha", "title": "Yotsunoha", - "mal_title": "Yotsunoha", + "mal_id": 3011, "poster": "https://aruppi.jeluchu.xyz/res/directory/1891.jpg", "type": "OVA", "genres": [ @@ -32460,7 +32460,7 @@ { "id": "kiss-dum-engage-planet", "title": "Kiss Dum: Engage Planet", - "mal_title": "Kiss Dum: Engage Planet", + "mal_id": 2106, "poster": "https://aruppi.jeluchu.xyz/res/directory/1892.jpg", "type": "Anime", "genres": [ @@ -32476,7 +32476,7 @@ { "id": "zegapain", "title": "Zegapain", - "mal_title": "Zegapain", + "mal_id": 878, "poster": "https://aruppi.jeluchu.xyz/res/directory/1893.jpg", "type": "Anime", "genres": [ @@ -32493,7 +32493,7 @@ { "id": "shinmai-maou-no-keiyakusha-special", "title": "Shinmai Maou no Keiyakusha Special", - "mal_title": "Shinmai Maou no Keiyakusha Special", + "mal_id": 30464, "poster": "https://aruppi.jeluchu.xyz/res/directory/1894.jpg", "type": "OVA", "genres": [ @@ -32510,7 +32510,7 @@ { "id": "blue-seed", "title": "Blue Seed", - "mal_title": "Blue Seed", + "mal_id": 998, "poster": "https://aruppi.jeluchu.xyz/res/directory/1895.jpg", "type": "Anime", "genres": [ @@ -32533,7 +32533,7 @@ { "id": "blue-seed-2", "title": "Blue Seed 2", - "mal_title": "Blue Seed 2", + "mal_id": 999, "poster": "https://aruppi.jeluchu.xyz/res/directory/1896.jpg", "type": "OVA", "genres": [ @@ -32554,7 +32554,7 @@ { "id": "kenyuu-densetsu-yaiba", "title": "Kenyuu Densetsu Yaiba", - "mal_title": "Kenyuu Densetsu Yaiba", + "mal_id": 2335, "poster": "https://aruppi.jeluchu.xyz/res/directory/1897.jpg", "type": "Anime", "genres": [ @@ -32572,7 +32572,7 @@ { "id": "shingeki-no-kyojin-movie-1-guren-no-yumiya", "title": "Shingeki no Kyojin Movie 1: Guren no Yumiya", - "mal_title": "Shingeki no Kyojin Movie 1: Guren no Yumiya", + "mal_id": 23775, "poster": "https://aruppi.jeluchu.xyz/res/directory/1898.jpg", "type": "Película", "genres": [ @@ -32590,7 +32590,7 @@ { "id": "senran-kagura-estival-versus-shoujo-tachi-no-sentaku", "title": "Senran Kagura: Estival Versus - Shoujo-tachi no Sentaku", - "mal_title": "Senran Kagura: Estival Versus - Shoujo-tachi no Sentaku", + "mal_id": 27967, "poster": "https://aruppi.jeluchu.xyz/res/directory/1899.jpg", "type": "OVA", "genres": [ @@ -32606,7 +32606,7 @@ { "id": "blue-gender", "title": "Blue Gender", - "mal_title": "Blue Gender", + "mal_id": 58, "poster": "https://aruppi.jeluchu.xyz/res/directory/1900.jpg", "type": "Anime", "genres": [ @@ -32627,7 +32627,7 @@ { "id": "gensoumaden-saiyuuki", "title": "Gensoumaden Saiyuuki", - "mal_title": "Gensoumaden Saiyuuki", + "mal_id": 129, "poster": "https://aruppi.jeluchu.xyz/res/directory/1901.jpg", "type": "Anime", "genres": [ @@ -32645,7 +32645,7 @@ { "id": "kakurenbo", "title": "Kakurenbo", - "mal_title": "Kakurenbo", + "mal_id": 1192, "poster": "https://aruppi.jeluchu.xyz/res/directory/1902.jpg", "type": "Película", "genres": [ @@ -32661,7 +32661,7 @@ { "id": "top-wo-nerae-gunbuster", "title": "Top wo Nerae! Gunbuster", - "mal_title": "Top wo Nerae! Gunbuster", + "mal_id": 949, "poster": "https://aruppi.jeluchu.xyz/res/directory/1903.jpg", "type": "OVA", "genres": [ @@ -32682,7 +32682,7 @@ { "id": "top-wo-nerae-2-diebuster", "title": "Top wo Nerae 2! Diebuster", - "mal_title": "Top wo Nerae 2! Diebuster", + "mal_id": 1002, "poster": "https://aruppi.jeluchu.xyz/res/directory/1904.jpg", "type": "OVA", "genres": [ @@ -32700,7 +32700,7 @@ { "id": "omoide-no-marnie", "title": "Omoide no Marnie", - "mal_title": "Omoide no Marnie", + "mal_id": 21557, "poster": "https://aruppi.jeluchu.xyz/res/directory/1905.jpg", "type": "Película", "genres": [ @@ -32716,7 +32716,7 @@ { "id": "touka-gettan", "title": "Touka Gettan", - "mal_title": "Touka Gettan", + "mal_id": 2105, "poster": "https://aruppi.jeluchu.xyz/res/directory/1906.jpg", "type": "Anime", "genres": [ @@ -32732,7 +32732,7 @@ { "id": "tsukuyomi-moon-phase", "title": "Tsukuyomi: Moon Phase", - "mal_title": "Tsukuyomi: Moon Phase", + "mal_id": 343, "poster": "https://aruppi.jeluchu.xyz/res/directory/1907.jpg", "type": "Anime", "genres": [ @@ -32750,7 +32750,7 @@ { "id": "uchuu-no-kishi-tekkaman-blade", "title": "Uchuu no Kishi Tekkaman Blade", - "mal_title": "Uchuu no Kishi Tekkaman Blade", + "mal_id": 1459, "poster": "https://aruppi.jeluchu.xyz/res/directory/1908.jpg", "type": "Anime", "genres": [ @@ -32772,7 +32772,7 @@ { "id": "yojou-han-shinwa-taikei", "title": "Yojou-han Shinwa Taikei", - "mal_title": "Yojou-han Shinwa Taikei", + "mal_id": 7785, "poster": "https://aruppi.jeluchu.xyz/res/directory/1909.jpg", "type": "Anime", "genres": [ @@ -32788,7 +32788,7 @@ { "id": "yojouhan-shinwa-taikei-specials", "title": "Yojouhan Shinwa Taikei Specials", - "mal_title": "Yojouhan Shinwa Taikei Specials", + "mal_id": 8985, "poster": "https://aruppi.jeluchu.xyz/res/directory/1910.jpg", "type": "OVA", "genres": [ @@ -32802,7 +32802,7 @@ { "id": "ongaku-shoujo", "title": "Ongaku Shoujo", - "mal_title": "Ongaku Shoujo", + "mal_id": 29511, "poster": "https://aruppi.jeluchu.xyz/res/directory/1911.jpg", "type": "Película", "genres": [ @@ -32817,7 +32817,7 @@ { "id": "b-t-x", "title": "B'T X", - "mal_title": "B'T X", + "mal_id": 286, "poster": "https://aruppi.jeluchu.xyz/res/directory/1912.jpg", "type": "Anime", "genres": [ @@ -32834,7 +32834,7 @@ { "id": "b-t-x-neo", "title": "B'T X Neo", - "mal_title": "B'T X Neo", + "mal_id": 1736, "poster": "https://aruppi.jeluchu.xyz/res/directory/1913.jpg", "type": "OVA", "genres": [ @@ -32850,7 +32850,7 @@ { "id": "uragiri-wa-boku-no-namae-wo-shitteiru", "title": "Uragiri wa Boku no Namae wo Shitteiru", - "mal_title": "Uragiri wa Boku no Namae wo Shitteiru", + "mal_id": 7058, "poster": "https://aruppi.jeluchu.xyz/res/directory/1914.jpg", "type": "Anime", "genres": [ @@ -32868,7 +32868,7 @@ { "id": "sentou-yousei-yukikaze", "title": "Sentou Yousei Yukikaze", - "mal_title": "Sentou Yousei Yukikaze", + "mal_id": 1080, "poster": "https://aruppi.jeluchu.xyz/res/directory/1915.jpg", "type": "OVA", "genres": [ @@ -32887,7 +32887,7 @@ { "id": "sentou-yousei-shoujo-tasukete-mave-chan", "title": "Sentou Yousei Shoujo Tasukete! Mave-chan", - "mal_title": "Sentou Yousei Shoujo Tasukete! Mave-chan", + "mal_id": 1515, "poster": "https://aruppi.jeluchu.xyz/res/directory/1916.jpg", "type": "OVA", "genres": [ @@ -32905,7 +32905,7 @@ { "id": "tesagure-bukatsumono-spin-off-purupurun-sharumu-to-asobou", "title": "Tesagure! Bukatsumono Spin-off Purupurun Sharumu to Asobou", - "mal_title": "Tesagure! Bukatsumono Spin-off Purupurun Sharumu to Asobou", + "mal_id": 28835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1917.jpg", "type": "Anime", "genres": [ @@ -32921,7 +32921,7 @@ { "id": "gintama-ova-2015", "title": "Gintama' 2015", - "mal_title": "Gintama'", + "mal_id": 25313, "poster": "https://aruppi.jeluchu.xyz/res/directory/1918.jpg", "type": "OVA", "genres": [ @@ -32941,7 +32941,7 @@ { "id": "aki-no-kanade", "title": "Aki no Kanade", - "mal_title": "Aki no Kanade", + "mal_id": 29513, "poster": "https://aruppi.jeluchu.xyz/res/directory/1919.jpg", "type": "Película", "genres": [ @@ -32957,7 +32957,7 @@ { "id": "futari-ecchi-2014", "title": "Futari Ecchi (2014)", - "mal_title": "Futari Ecchi (2014)", + "mal_id": 23985, "poster": "https://aruppi.jeluchu.xyz/res/directory/1920.jpg", "type": "OVA", "genres": [ @@ -32975,7 +32975,7 @@ { "id": "Scrapped-princess", "title": "Scrapped Princess", - "mal_title": "Scrapped Princess", + "mal_id": 167, "poster": "https://aruppi.jeluchu.xyz/res/directory/1921.jpg", "type": "Anime", "genres": [ @@ -32995,7 +32995,7 @@ { "id": "versailles-no-bara", "title": "Versailles no Bara", - "mal_title": "Versailles no Bara", + "mal_id": 338, "poster": "https://aruppi.jeluchu.xyz/res/directory/1922.jpg", "type": "Anime", "genres": [ @@ -33014,7 +33014,7 @@ { "id": "ryuusei-sentai-musumet", "title": "Ryuusei Sentai Musumet", - "mal_title": "Ryuusei Sentai Musumet", + "mal_id": 1711, "poster": "https://aruppi.jeluchu.xyz/res/directory/1923.jpg", "type": "Anime", "genres": [ @@ -33032,7 +33032,7 @@ { "id": "hikaru-no-go", "title": "Hikaru no Go", - "mal_title": "Hikaru no Go", + "mal_id": 135, "poster": "https://aruppi.jeluchu.xyz/res/directory/1924.jpg", "type": "Anime", "genres": [ @@ -33049,7 +33049,7 @@ { "id": "the-sky-crawlers", "title": "The Sky Crawlers", - "mal_title": "The Sky Crawlers", + "mal_id": 3089, "poster": "https://aruppi.jeluchu.xyz/res/directory/1925.jpg", "type": "Película", "genres": [ @@ -33064,7 +33064,7 @@ { "id": "saint-seiya-soul-of-gold", "title": "Saint Seiya: Soul of Gold", - "mal_title": "Saint Seiya: Soul of Gold", + "mal_id": 28215, "poster": "https://aruppi.jeluchu.xyz/res/directory/1926.jpg", "type": "Anime", "genres": [ @@ -33082,7 +33082,7 @@ { "id": "happiness-charge-precure-movie-ningyou-no-kuni-no-ballerina", "title": "Happiness Charge PreCure! Movie: Ningyou no Kuni no Ballerina", - "mal_title": "Happiness Charge PreCure! Movie: Ningyou no Kuni no Ballerina", + "mal_id": 23083, "poster": "https://aruppi.jeluchu.xyz/res/directory/1927.jpg", "type": "Película", "genres": [ @@ -33099,7 +33099,7 @@ { "id": "honoo-no-mirage", "title": "Honoo no Mirage", - "mal_title": "Honoo no Mirage", + "mal_id": 1019, "poster": "https://aruppi.jeluchu.xyz/res/directory/1928.jpg", "type": "Anime", "genres": [ @@ -33119,7 +33119,7 @@ { "id": "honoo-no-mirage-minagiwa-no-hangyakusha", "title": "Honoo no Mirage: Minagiwa no Hangyakusha", - "mal_title": "Honoo no Mirage: Minagiwa no Hangyakusha", + "mal_id": 1020, "poster": "https://aruppi.jeluchu.xyz/res/directory/1929.jpg", "type": "OVA", "genres": [ @@ -33139,7 +33139,7 @@ { "id": "mahou-tsukai-ni-taisetsu-na-koto", "title": "Mahou Tsukai ni Taisetsu na Koto", - "mal_title": "Mahou Tsukai ni Taisetsu na Koto", + "mal_id": 4483, "poster": "https://aruppi.jeluchu.xyz/res/directory/1930.jpg", "type": "Anime", "genres": [ @@ -33156,7 +33156,7 @@ { "id": "mahou-tsukai-ni-taisetsu-na-koto-natsu-no-sora", "title": "Mahou Tsukai ni Taisetsu na Koto: Natsu no Sora", - "mal_title": "Mahou Tsukai ni Taisetsu na Koto: Natsu no Sora", + "mal_id": 4483, "poster": "https://aruppi.jeluchu.xyz/res/directory/1931.jpg", "type": "Anime", "genres": [ @@ -33173,7 +33173,7 @@ { "id": "happy-lesson", "title": "Happy☆Lesson", - "mal_title": "Happy☆Lesson", + "mal_id": 260, "poster": "https://aruppi.jeluchu.xyz/res/directory/1932.jpg", "type": "OVA", "genres": [ @@ -33190,7 +33190,7 @@ { "id": "happy-lesson-tv", "title": "Happy☆Lesson (TV)", - "mal_title": "Happy☆Lesson (TV)", + "mal_id": 260, "poster": "https://aruppi.jeluchu.xyz/res/directory/1933.jpg", "type": "Anime", "genres": [ @@ -33208,7 +33208,7 @@ { "id": "happy-lesson-advance", "title": "Happy☆Lesson: Advance", - "mal_title": "Happy☆Lesson: Advance", + "mal_id": 261, "poster": "https://aruppi.jeluchu.xyz/res/directory/1934.jpg", "type": "Anime", "genres": [ @@ -33225,7 +33225,7 @@ { "id": "happy-lesson-the-final", "title": "Happy☆Lesson: The Final", - "mal_title": "Happy☆Lesson: The Final", + "mal_id": 262, "poster": "https://aruppi.jeluchu.xyz/res/directory/1935.jpg", "type": "OVA", "genres": [ @@ -33242,7 +33242,7 @@ { "id": "boruto-naruto-the-movie", "title": "Boruto: Naruto the Movie", - "mal_title": "Boruto: Naruto the Movie", + "mal_id": 28755, "poster": "https://aruppi.jeluchu.xyz/res/directory/1936.jpg", "type": "Película", "genres": [ @@ -33260,7 +33260,7 @@ { "id": "kyoukai-no-kanata-movie-ill-be-here-kako-hen", "title": "Kyoukai no Kanata Movie: I'll Be Here - Kako-hen", - "mal_title": "Kyoukai no Kanata Movie: I'll Be Here - Kako-hen", + "mal_id": 30745, "poster": "https://aruppi.jeluchu.xyz/res/directory/1937.jpg", "type": "Película", "genres": [ @@ -33276,7 +33276,7 @@ { "id": "turn-a-gundam-1-earth-light", "title": "Turn A Gundam I: Earth Light", - "mal_title": "Turn A Gundam I: Earth Light", + "mal_id": 3963, "poster": "https://aruppi.jeluchu.xyz/res/directory/1938.jpg", "type": "Película", "genres": [ @@ -33295,7 +33295,7 @@ { "id": "turn-a-gundam-2-moonlight-butterfly", "title": "Turn A Gundam II: Moonlight Butterfly", - "mal_title": "Turn A Gundam II: Moonlight Butterfly", + "mal_id": 3964, "poster": "https://aruppi.jeluchu.xyz/res/directory/1939.jpg", "type": "Película", "genres": [ @@ -33314,7 +33314,7 @@ { "id": "ookiku-furikabutte", "title": "Ookiku Furikabutte", - "mal_title": "Ookiku Furikabutte", + "mal_id": 2159, "poster": "https://aruppi.jeluchu.xyz/res/directory/1940.jpg", "type": "Anime", "genres": [ @@ -33329,7 +33329,7 @@ { "id": "ookik-furikabutte-natsu-no-taikai-hen", "title": "Ookiku Furikabutte: Natsu no Taikai Hen", - "mal_title": "Ookiku Furikabutte: Natsu no Taikai Hen", + "mal_id": 7720, "poster": "https://aruppi.jeluchu.xyz/res/directory/1941.jpg", "type": "Anime", "genres": [ @@ -33344,7 +33344,7 @@ { "id": "suit-precure-movie-torimodose-kokoro-ga-tsunaku-kiseki-no-me", "title": "Suite Precure♪ Movie: Torimodose! Kokoro ga Tsunaku Kiseki no Melody♪", - "mal_title": "Suite Precure♪ Movie: Torimodose! Kokoro ga Tsunaku Kiseki no Melody♪", + "mal_id": 10821, "poster": "https://aruppi.jeluchu.xyz/res/directory/1942.jpg", "type": "Película", "genres": [ @@ -33361,7 +33361,7 @@ { "id": "k-missing-kings", "title": "K: Missing Kings", - "mal_title": "K: Missing Kings", + "mal_id": 16904, "poster": "https://aruppi.jeluchu.xyz/res/directory/1943.jpg", "type": "Película", "genres": [ @@ -33377,7 +33377,7 @@ { "id": "rolling-girls-chibi-rolling-girls-korokoro-gekijou", "title": "Rolling☆Girls: Chibi☆Rolling☆Girls Korokoro Gekijou", - "mal_title": "Rolling☆Girls: Chibi☆Rolling☆Girls Korokoro Gekijou", + "mal_id": 30499, "poster": "https://aruppi.jeluchu.xyz/res/directory/1944.jpg", "type": "OVA", "genres": [ @@ -33391,7 +33391,7 @@ { "id": "canvas-sepia-iro-no-motif", "title": "Canvas: Sepia-iro no Motif", - "mal_title": "Canvas: Sepia-iro no Motif", + "mal_id": 695, "poster": "https://aruppi.jeluchu.xyz/res/directory/1945.jpg", "type": "OVA", "genres": [ @@ -33407,7 +33407,7 @@ { "id": "canvas-2-niji-iro-no-sketch", "title": "Canvas 2: Niji-iro no Sketch", - "mal_title": "Canvas 2: Niji-iro no Sketch", + "mal_id": 694, "poster": "https://aruppi.jeluchu.xyz/res/directory/1946.jpg", "type": "Anime", "genres": [ @@ -33424,7 +33424,7 @@ { "id": "iketeru-futari", "title": "Iketeru Futari", - "mal_title": "Iketeru Futari", + "mal_id": 637, "poster": "https://aruppi.jeluchu.xyz/res/directory/1947.jpg", "type": "Anime", "genres": [ @@ -33442,7 +33442,7 @@ { "id": "bleach-the-diamonddust-rebellion", "title": "Bleach: The DiamondDust Rebellion", - "mal_title": "Bleach: The DiamondDust Rebellion", + "mal_id": 2889, "poster": "https://aruppi.jeluchu.xyz/res/directory/1948.jpg", "type": "Película", "genres": [ @@ -33459,7 +33459,7 @@ { "id": "bleach-fade-to-black-kimi-no-na-o-yobu", "title": "Bleach: Fade to Black - Kimi no Na o Yobu", - "mal_title": "Bleach: Fade to Black - Kimi no Na o Yobu", + "mal_id": 4835, "poster": "https://aruppi.jeluchu.xyz/res/directory/1949.jpg", "type": "Película", "genres": [ @@ -33477,7 +33477,7 @@ { "id": "bleach-jigoku-hen", "title": "Bleach: Jigoku-hen", - "mal_title": "Bleach: Jigoku-hen", + "mal_id": 8247, "poster": "https://aruppi.jeluchu.xyz/res/directory/1950.jpg", "type": "Película", "genres": [ @@ -33495,7 +33495,7 @@ { "id": "elfen-lied-ova", "title": "Elfen Lied OVA", - "mal_title": "Elfen Lied OVA", + "mal_id": 226, "poster": "https://aruppi.jeluchu.xyz/res/directory/1951.jpg", "type": "OVA", "genres": [ @@ -33513,7 +33513,7 @@ { "id": "kiniro-no-corda-primo-passo", "title": "Kiniro no Corda: Primo Passo", - "mal_title": "Kiniro no Corda: Primo Passo", + "mal_id": 1579, "poster": "https://aruppi.jeluchu.xyz/res/directory/1952.jpg", "type": "Anime", "genres": [ @@ -33534,7 +33534,7 @@ { "id": "kiniro-no-corda-second-passo", "title": "Kiniro no Corda: Secondo Passo", - "mal_title": "Kiniro no Corda: Secondo Passo", + "mal_id": 5717, "poster": "https://aruppi.jeluchu.xyz/res/directory/1953.jpg", "type": "OVA", "genres": [ @@ -33551,7 +33551,7 @@ { "id": "kujibiki-unbalance-tv", "title": "Kujibiki♥Unbalance (TV)", - "mal_title": "Kujibiki♥Unbalance (TV)", + "mal_id": 1591, "poster": "https://aruppi.jeluchu.xyz/res/directory/1954.jpg", "type": "Anime", "genres": [ @@ -33567,7 +33567,7 @@ { "id": "kujibiki-unbalance", "title": "Kujibiki Unbalance", - "mal_title": "Kujibiki Unbalance", + "mal_id": 669, "poster": "https://aruppi.jeluchu.xyz/res/directory/1955.jpg", "type": "OVA", "genres": [ @@ -33583,7 +33583,7 @@ { "id": "ghost-sweeper-gs-mikami", "title": "Ghost Sweeper GS Mikami", - "mal_title": "Ghost Sweeper GS Mikami", + "mal_id": 2400, "poster": "https://aruppi.jeluchu.xyz/res/directory/1956.jpg", "type": "Anime", "genres": [ @@ -33598,7 +33598,7 @@ { "id": "ima-soko-ni-iru-boku", "title": "Ima, Soko ni Iru Boku", - "mal_title": "Ima, Soko ni Iru Boku", + "mal_id": 160, "poster": "https://aruppi.jeluchu.xyz/res/directory/1957.jpg", "type": "Anime", "genres": [ @@ -33616,7 +33616,7 @@ { "id": "steel-angel-kurumi-zero", "title": "Steel Angel Kurumi Zero", - "mal_title": "Steel Angel Kurumi Zero", + "mal_id": 556, "poster": "https://aruppi.jeluchu.xyz/res/directory/1958.jpg", "type": "OVA", "genres": [ @@ -33632,7 +33632,7 @@ { "id": "fantasti-children", "title": "Fantastic Children", - "mal_title": "Fantastic Children", + "mal_id": 455, "poster": "https://aruppi.jeluchu.xyz/res/directory/1959.jpg", "type": "Anime", "genres": [ @@ -33650,7 +33650,7 @@ { "id": "kodomo-no-omocha", "title": "Kodomo no Omocha", - "mal_title": "Kodomo no Omocha", + "mal_id": 1486, "poster": "https://aruppi.jeluchu.xyz/res/directory/1960.jpg", "type": "Anime", "genres": [ @@ -33667,7 +33667,7 @@ { "id": "mobile-suit-gundam-seed-c-e-73-stargazer", "title": "Mobile Suit Gundam Seed C.E.73: Stargazer", - "mal_title": "Mobile Suit Gundam Seed C.E.73: Stargazer", + "mal_id": 1215, "poster": "https://aruppi.jeluchu.xyz/res/directory/1961.jpg", "type": "OVA", "genres": [ @@ -33684,7 +33684,7 @@ { "id": "haiyore-nyaruko-san-f", "title": "Haiyore! Nyaruko-san F", - "mal_title": "Haiyore! Nyaruko-san F", + "mal_id": 26023, "poster": "https://aruppi.jeluchu.xyz/res/directory/1962.jpg", "type": "OVA", "genres": [ @@ -33701,7 +33701,7 @@ { "id": "terra-e", "title": "Terra e...", - "mal_title": "Terra e...", + "mal_id": 2560, "poster": "https://aruppi.jeluchu.xyz/res/directory/1963.jpg", "type": "Anime", "genres": [ @@ -33719,7 +33719,7 @@ { "id": "tokimeki-memorial-only-love", "title": "Tokimeki Memorial: Only Love", - "mal_title": "Tokimeki Memorial: Only Love", + "mal_id": 1555, "poster": "https://aruppi.jeluchu.xyz/res/directory/1964.jpg", "type": "Anime", "genres": [ @@ -33736,7 +33736,7 @@ { "id": "seirei-no-moribito", "title": "Seirei no Moribito", - "mal_title": "Seirei no Moribito", + "mal_id": 1827, "poster": "https://aruppi.jeluchu.xyz/res/directory/1965.jpg", "type": "Anime", "genres": [ @@ -33753,7 +33753,7 @@ { "id": "magic-knight-rayearth", "title": "Magic Knight Rayearth", - "mal_title": "Magic Knight Rayearth", + "mal_id": 435, "poster": "https://aruppi.jeluchu.xyz/res/directory/1966.jpg", "type": "Anime", "genres": [ @@ -33774,7 +33774,7 @@ { "id": "magic-knight-rayearth-2", "title": "Magic Knight Rayearth II", - "mal_title": "Magic Knight Rayearth II", + "mal_id": 1563, "poster": "https://aruppi.jeluchu.xyz/res/directory/1967.jpg", "type": "Anime", "genres": [ @@ -33794,7 +33794,7 @@ { "id": "panyo-panyo-di-gi-charat", "title": "Panyo Panyo Di Gi Charat", - "mal_title": "Panyo Panyo Di Gi Charat", + "mal_id": 1597, "poster": "https://aruppi.jeluchu.xyz/res/directory/1968.jpg", "type": "Anime", "genres": [ @@ -33808,7 +33808,7 @@ { "id": "di-gi-charat", "title": "Di Gi Charat", - "mal_title": "Di Gi Charat", + "mal_id": 293, "poster": "https://aruppi.jeluchu.xyz/res/directory/1969.jpg", "type": "Anime", "genres": [ @@ -33824,7 +33824,7 @@ { "id": "di-gi-charat-summer-special-2000", "title": "Di Gi Charat Summer Special 2000", - "mal_title": "Di Gi Charat Summer Special 2000", + "mal_id": 1754, "poster": "https://aruppi.jeluchu.xyz/res/directory/1970.jpg", "type": "OVA", "genres": [ @@ -33838,7 +33838,7 @@ { "id": "di-gi-charat-natsuyasumi-special", "title": "Di Gi Charat Natsuyasumi Special", - "mal_title": "Di Gi Charat Natsuyasumi Special", + "mal_id": 1756, "poster": "https://aruppi.jeluchu.xyz/res/directory/1971.jpg", "type": "OVA", "genres": [ @@ -33852,7 +33852,7 @@ { "id": "di-gi-charat-hoshi-no-tabi", "title": "Di Gi Charat: Hoshi no Tabi", - "mal_title": "Di Gi Charat: Hoshi no Tabi", + "mal_id": 1752, "poster": "https://aruppi.jeluchu.xyz/res/directory/1972.jpg", "type": "Película", "genres": [ @@ -33866,7 +33866,7 @@ { "id": "over-drie", "title": "Over Drive", - "mal_title": "Over Drive", + "mal_id": 2112, "poster": "https://aruppi.jeluchu.xyz/res/directory/1973.jpg", "type": "Anime", "genres": [ @@ -33881,7 +33881,7 @@ { "id": "aa-megami-sama", "title": "Aa! Megami-sama!", - "mal_title": "Aa! Megami-sama!", + "mal_id": 50, "poster": "https://aruppi.jeluchu.xyz/res/directory/1974.jpg", "type": "OVA", "genres": [ @@ -33899,7 +33899,7 @@ { "id": "aa-megami-sama-tatakau-tsubasa", "title": "Aa! Megami-sama!: Tatakau Tsubasa", - "mal_title": "Aa! Megami-sama!: Tatakau Tsubasa", + "mal_id": 3090, "poster": "https://aruppi.jeluchu.xyz/res/directory/1975.jpg", "type": "OVA", "genres": [ @@ -33917,7 +33917,7 @@ { "id": "aa-megami-sama-movie", "title": "Aa! Megami-sama! Movie", - "mal_title": "Aa! Megami-sama! Movie", + "mal_id": 304, "poster": "https://aruppi.jeluchu.xyz/res/directory/1976.jpg", "type": "Película", "genres": [ @@ -33935,7 +33935,7 @@ { "id": "moyashimon", "title": "Moyashimon", - "mal_title": "Moyashimon", + "mal_id": 3001, "poster": "https://aruppi.jeluchu.xyz/res/directory/1977.jpg", "type": "Anime", "genres": [ @@ -33951,7 +33951,7 @@ { "id": "yakushiji-ryoko-no-kaiki-jikenbo", "title": "Yakushiji Ryoko no Kaiki Jikenbo", - "mal_title": "Yakushiji Ryoko no Kaiki Jikenbo", + "mal_id": 3614, "poster": "https://aruppi.jeluchu.xyz/res/directory/1978.jpg", "type": "Anime", "genres": [ @@ -33967,7 +33967,7 @@ { "id": "princess-princess", "title": "Princess Princess", - "mal_title": "Princess Princess", + "mal_id": 907, "poster": "https://aruppi.jeluchu.xyz/res/directory/1979.jpg", "type": "Anime", "genres": [ @@ -33983,7 +33983,7 @@ { "id": "otaku-no-video", "title": "Otaku no Video", - "mal_title": "Otaku no Video", + "mal_id": 785, "poster": "https://aruppi.jeluchu.xyz/res/directory/1980.jpg", "type": "OVA", "genres": [ @@ -34002,7 +34002,7 @@ { "id": "renkin-san-kyuu-magical-pokaan", "title": "Renkin San-kyuu Magical? Pokaan", - "mal_title": "Renkin San-kyuu Magical? Pokaan", + "mal_id": 941, "poster": "https://aruppi.jeluchu.xyz/res/directory/1981.jpg", "type": "Anime", "genres": [ @@ -34020,7 +34020,7 @@ { "id": "renkin-san-kyuu-magical-pokaan-specials", "title": "Renkin San-kyuu Magical? Pokaan Specials", - "mal_title": "Renkin San-kyuu Magical? Pokaan Specials", + "mal_id": 1489, "poster": "https://aruppi.jeluchu.xyz/res/directory/1982.jpg", "type": "OVA", "genres": [ @@ -34038,7 +34038,7 @@ { "id": "lingerie-senshi-papillon-rose", "title": "Lingerie Senshi Papillon Rose", - "mal_title": "Lingerie Senshi Papillon Rose", + "mal_id": 1995, "poster": "https://aruppi.jeluchu.xyz/res/directory/1983.jpg", "type": "OVA", "genres": [ @@ -34055,7 +34055,7 @@ { "id": "mamotte-lollipop", "title": "Mamotte! Lollipop", - "mal_title": "Mamotte! Lollipop", + "mal_id": 1509, "poster": "https://aruppi.jeluchu.xyz/res/directory/1984.jpg", "type": "Anime", "genres": [ @@ -34073,7 +34073,7 @@ { "id": "photon", "title": "Photon", - "mal_title": "Photon", + "mal_id": 1944, "poster": "https://aruppi.jeluchu.xyz/res/directory/1985.jpg", "type": "OVA", "genres": [ @@ -34094,7 +34094,7 @@ { "id": "super-gals-kotobuki-ran", "title": "Super GALS! Kotobuki Ran", - "mal_title": "Super GALS! Kotobuki Ran", + "mal_id": 1728, "poster": "https://aruppi.jeluchu.xyz/res/directory/1986.jpg", "type": "Anime", "genres": [ @@ -34110,7 +34110,7 @@ { "id": "lime-iro-senkitan", "title": "Lime-iro Senkitan", - "mal_title": "Lime-iro Senkitan", + "mal_id": 1097, "poster": "https://aruppi.jeluchu.xyz/res/directory/1987.jpg", "type": "Anime", "genres": [ @@ -34129,7 +34129,7 @@ { "id": "melody-of-oblivion", "title": "Melody of Oblivion", - "mal_title": "Melody of Oblivion", + "mal_id": 159, "poster": "https://aruppi.jeluchu.xyz/res/directory/1988.jpg", "type": "Anime", "genres": [ @@ -34151,7 +34151,7 @@ { "id": "soul-link", "title": "Soul Link", - "mal_title": "Soul Link", + "mal_id": 854, "poster": "https://aruppi.jeluchu.xyz/res/directory/1989.jpg", "type": "Anime", "genres": [ @@ -34171,7 +34171,7 @@ { "id": "kyuuketsuhime-miyu", "title": "Kyuuketsuhime Miyu", - "mal_title": "Kyuuketsuhime Miyu", + "mal_id": 1384, "poster": "https://aruppi.jeluchu.xyz/res/directory/1990.jpg", "type": "OVA", "genres": [ @@ -34189,7 +34189,7 @@ { "id": "colorful-movie", "title": "Colorful Movie", - "mal_title": "Colorful Movie", + "mal_id": 8142, "poster": "https://aruppi.jeluchu.xyz/res/directory/1991.jpg", "type": "Película", "genres": [ @@ -34205,7 +34205,7 @@ { "id": "wasurenagumo", "title": "Wasurenagumo", - "mal_title": "Wasurenagumo", + "mal_id": 13171, "poster": "https://aruppi.jeluchu.xyz/res/directory/1992.jpg", "type": "OVA", "genres": [ @@ -34220,7 +34220,7 @@ { "id": "kyuuketsuhime-miyu-tv", "title": "Kyuuketsuhime Miyu (TV)", - "mal_title": "Kyuuketsuhime Miyu (TV)", + "mal_id": 690, "poster": "https://aruppi.jeluchu.xyz/res/directory/1993.jpg", "type": "Anime", "genres": [ @@ -34238,7 +34238,7 @@ { "id": "spiral-suiri-no-kizuna", "title": "Spiral: Suiri no Kizuna", - "mal_title": "Spiral: Suiri no Kizuna", + "mal_id": 341, "poster": "https://aruppi.jeluchu.xyz/res/directory/1994.jpg", "type": "Anime", "genres": [ @@ -34254,7 +34254,7 @@ { "id": "kishin-taisen-gigantic-formula", "title": "Kishin Taisen Gigantic Formula", - "mal_title": "Kishin Taisen Gigantic Formula", + "mal_id": 2215, "poster": "https://aruppi.jeluchu.xyz/res/directory/1995.jpg", "type": "Anime", "genres": [ @@ -34269,7 +34269,7 @@ { "id": "ao-haru-ride-live-action", "title": "Ao Haru Ride Live Action", - "mal_title": "Ao Haru Ride Live Action", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/1996.jpg", "type": "Película", "genres": [ @@ -34283,7 +34283,7 @@ { "id": "edens-bowy", "title": "Eden's Bowy", - "mal_title": "Eden's Bowy", + "mal_id": 1189, "poster": "https://aruppi.jeluchu.xyz/res/directory/1997.jpg", "type": "Anime", "genres": [ @@ -34301,7 +34301,7 @@ { "id": "maria-sama-ga-miteru", "title": "Maria-sama ga Miteru", - "mal_title": "Maria-sama ga Miteru", + "mal_id": 158, "poster": "https://aruppi.jeluchu.xyz/res/directory/1998.jpg", "type": "Anime", "genres": [ @@ -34319,7 +34319,7 @@ { "id": "maria-sama-ga-miteru-haru", "title": "Maria-sama ga Miteru: Haru", - "mal_title": "Maria-sama ga Miteru: Haru", + "mal_id": 444, "poster": "https://aruppi.jeluchu.xyz/res/directory/1999.jpg", "type": "Anime", "genres": [ @@ -34337,7 +34337,7 @@ { "id": "maria-sama-ga-miteru-haru-specials", "title": "Maria-sama ga Miteru: Haru Specials", - "mal_title": "Maria-sama ga Miteru: Haru Specials", + "mal_id": 3469, "poster": "https://aruppi.jeluchu.xyz/res/directory/2000.jpg", "type": "OVA", "genres": [ @@ -34356,7 +34356,7 @@ { "id": "maria-sama-ga-miteru-3rd", "title": "Maria-sama ga Miteru 3rd", - "mal_title": "Maria-sama ga Miteru 3rd", + "mal_id": 1729, "poster": "https://aruppi.jeluchu.xyz/res/directory/2001.jpg", "type": "OVA", "genres": [ @@ -34373,7 +34373,7 @@ { "id": "maria-sama-ga-miteru-3rd-specials", "title": "Maria-sama ga Miteru 3rd Specials", - "mal_title": "Maria-sama ga Miteru 3rd Specials", + "mal_id": 2954, "poster": "https://aruppi.jeluchu.xyz/res/directory/2002.jpg", "type": "OVA", "genres": [ @@ -34387,7 +34387,7 @@ { "id": "maria-sama-ga-miteru-4th", "title": "Maria-sama ga Miteru 4th", - "mal_title": "Maria-sama ga Miteru 4th", + "mal_id": 3750, "poster": "https://aruppi.jeluchu.xyz/res/directory/2003.jpg", "type": "Anime", "genres": [ @@ -34404,7 +34404,7 @@ { "id": "maria-sama-ga-miteru-4th-specials", "title": "Maria-sama ga Miteru 4th Specials", - "mal_title": "Maria-sama ga Miteru 4th Specials", + "mal_id": 6299, "poster": "https://aruppi.jeluchu.xyz/res/directory/2004.jpg", "type": "OVA", "genres": [ @@ -34418,7 +34418,7 @@ { "id": "peace-maker-kurogane", "title": "Peace Maker Kurogane", - "mal_title": "Peace Maker Kurogane", + "mal_id": 161, "poster": "https://aruppi.jeluchu.xyz/res/directory/2005.jpg", "type": "Anime", "genres": [ @@ -34436,7 +34436,7 @@ { "id": "kishin-douji-zenki", "title": "Kishin Douji Zenki", - "mal_title": "Kishin Douji Zenki", + "mal_id": 1573, "poster": "https://aruppi.jeluchu.xyz/res/directory/2006.jpg", "type": "Anime", "genres": [ @@ -34457,7 +34457,7 @@ { "id": "kiseijuu-sei-no-kakuritsu-part-1-live-action", "title": "Kiseijuu: Sei no Kakuritsu Part 1 Live Action", - "mal_title": "Kiseijuu: Sei no Kakuritsu Part 1 Live Action", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/2007.jpg", "type": "Película", "genres": [ @@ -34471,7 +34471,7 @@ { "id": "seikai-no-danshou-tanjou", "title": "Seikai no Danshou Tanjou", - "mal_title": "Seikai no Danshou Tanjou", + "mal_id": 1124, "poster": "https://aruppi.jeluchu.xyz/res/directory/2008.jpg", "type": "OVA", "genres": [ @@ -34488,7 +34488,7 @@ { "id": "seikai-no-monshou", "title": "Seikai no Monshou", - "mal_title": "Seikai no Monshou", + "mal_id": 290, "poster": "https://aruppi.jeluchu.xyz/res/directory/2009.jpg", "type": "Anime", "genres": [ @@ -34506,7 +34506,7 @@ { "id": "seikai-no-senki", "title": "Seikai no Senki", - "mal_title": "Seikai no Senki", + "mal_id": 398, "poster": "https://aruppi.jeluchu.xyz/res/directory/2010.jpg", "type": "Anime", "genres": [ @@ -34524,7 +34524,7 @@ { "id": "seikai-no-senki-2", "title": "Seikai no Senki II", - "mal_title": "Seikai no Senki II", + "mal_id": 398, "poster": "https://aruppi.jeluchu.xyz/res/directory/2011.jpg", "type": "Anime", "genres": [ @@ -34542,7 +34542,7 @@ { "id": "seikai-no-senki-3", "title": "Seikai no Senki III", - "mal_title": "Seikai no Senki III", + "mal_id": 398, "poster": "https://aruppi.jeluchu.xyz/res/directory/2012.jpg", "type": "OVA", "genres": [ @@ -34560,7 +34560,7 @@ { "id": "grenadier-hohoemi-no-senshi", "title": "Grenadier: Hohoemi no Senshi", - "mal_title": "Grenadier: Hohoemi no Senshi", + "mal_id": 297, "poster": "https://aruppi.jeluchu.xyz/res/directory/2013.jpg", "type": "Anime", "genres": [ @@ -34578,7 +34578,7 @@ { "id": "mahoromatic", "title": "Mahoromatic", - "mal_title": "Mahoromatic", + "mal_id": 276, "poster": "https://aruppi.jeluchu.xyz/res/directory/2014.jpg", "type": "Anime", "genres": [ @@ -34596,7 +34596,7 @@ { "id": "mahoromatic-2", "title": "Mahoromatic 2", - "mal_title": "Mahoromatic 2", + "mal_id": 277, "poster": "https://aruppi.jeluchu.xyz/res/directory/2015.jpg", "type": "Anime", "genres": [ @@ -34615,7 +34615,7 @@ { "id": "mahoromatic-summer-special", "title": "Mahoromatic Summer Special", - "mal_title": "Mahoromatic Summer Special", + "mal_id": 631, "poster": "https://aruppi.jeluchu.xyz/res/directory/2016.jpg", "type": "OVA", "genres": [ @@ -34632,7 +34632,7 @@ { "id": "elf-ban-kakyuusei-anata-dake-o-mitsumete", "title": "Elf Ban Kakyuusei: Anata Dake o Mitsumete...", - "mal_title": "Elf Ban Kakyuusei: Anata Dake o Mitsumete...", + "mal_id": 661, "poster": "https://aruppi.jeluchu.xyz/res/directory/2017.jpg", "type": "OVA", "genres": [ @@ -34649,7 +34649,7 @@ { "id": "kakyuusei-2-hitomi-no-naka-no-shoujotachi", "title": "Kakyuusei 2: Hitomi no Naka no Shoujotachi", - "mal_title": "Kakyuusei 2: Hitomi no Naka no Shoujotachi", + "mal_id": 510, "poster": "https://aruppi.jeluchu.xyz/res/directory/2018.jpg", "type": "Anime", "genres": [ @@ -34667,7 +34667,7 @@ { "id": "god-eater-prologue", "title": "God Eater Prologue", - "mal_title": "God Eater Prologue", + "mal_id": 10470, "poster": "https://aruppi.jeluchu.xyz/res/directory/2019.jpg", "type": "OVA", "genres": [ @@ -34684,7 +34684,7 @@ { "id": "ojamajo-doremi", "title": "Ojamajo Doremi", - "mal_title": "Ojamajo Doremi", + "mal_id": 350, "poster": "https://aruppi.jeluchu.xyz/res/directory/2020.jpg", "type": "Anime", "genres": [ @@ -34699,7 +34699,7 @@ { "id": "ojamajo-doremi-sharp", "title": "Ojamajo Doremi Sharp", - "mal_title": "Ojamajo Doremi Sharp", + "mal_id": 351, "poster": "https://aruppi.jeluchu.xyz/res/directory/2021.jpg", "type": "Anime", "genres": [ @@ -34715,7 +34715,7 @@ { "id": "motto-ojamajo-doremi", "title": "Motto! Ojamajo Doremi", - "mal_title": "Motto! Ojamajo Doremi", + "mal_id": 352, "poster": "https://aruppi.jeluchu.xyz/res/directory/2022.jpg", "type": "Anime", "genres": [ @@ -34732,7 +34732,7 @@ { "id": "ojamajo-doremi-dokkaan", "title": "Ojamajo Doremi Dokkaan!", - "mal_title": "Ojamajo Doremi Dokkaan!", + "mal_id": 353, "poster": "https://aruppi.jeluchu.xyz/res/directory/2023.jpg", "type": "Anime", "genres": [ @@ -34748,7 +34748,7 @@ { "id": "ojamajo-doremi-sharp-movie", "title": "Ojamajo Doremi Sharp Movie", - "mal_title": "Ojamajo Doremi Sharp Movie", + "mal_id": 2947, "poster": "https://aruppi.jeluchu.xyz/res/directory/2024.jpg", "type": "Película", "genres": [ @@ -34764,7 +34764,7 @@ { "id": "motto-ojamajo-doremi-kaeru-ishi-no-himitsu", "title": "Motto! Ojamajo Doremi: Kaeru Ishi no Himitsu", - "mal_title": "Motto! Ojamajo Doremi: Kaeru Ishi no Himitsu", + "mal_id": 2948, "poster": "https://aruppi.jeluchu.xyz/res/directory/2025.jpg", "type": "Película", "genres": [ @@ -34780,7 +34780,7 @@ { "id": "ojamajo-doremi-na-i-sho", "title": "Ojamajo Doremi Na-i-sho", - "mal_title": "Ojamajo Doremi Na-i-sho", + "mal_id": 1376, "poster": "https://aruppi.jeluchu.xyz/res/directory/2026.jpg", "type": "OVA", "genres": [ @@ -34797,7 +34797,7 @@ { "id": "mahoromatic-tadaima-okaeri", "title": "Mahoromatic: Tadaima◇Okaeri", - "mal_title": "Mahoromatic: Tadaima◇Okaeri", + "mal_id": 7066, "poster": "https://aruppi.jeluchu.xyz/res/directory/2027.jpg", "type": "OVA", "genres": [ @@ -34814,7 +34814,7 @@ { "id": "daa-daa-daa-ufo-baby", "title": "Daa! Daa! Daa! UFO Baby", - "mal_title": "Daa! Daa! Daa! UFO Baby", + "mal_id": 233, "poster": "https://aruppi.jeluchu.xyz/res/directory/2028.jpg", "type": "Anime", "genres": [ @@ -34830,7 +34830,7 @@ { "id": "dragon-ball-z-pelicula-15-fukkatsu-no-f", "title": "Dragon Ball Z Pelicula 15: Fukkatsu no F", - "mal_title": "Dragon Ball Z Pelicula 15: Fukkatsu no F", + "mal_id": 25389, "poster": "https://aruppi.jeluchu.xyz/res/directory/2029.jpg", "type": "Película", "genres": [ @@ -34850,7 +34850,7 @@ { "id": "gatchaman-crowds-insight-inbound", "title": "Gatchaman Crowds Insight: Inbound", - "mal_title": "Gatchaman Crowds Insight: Inbound", + "mal_id": 30925, "poster": "https://aruppi.jeluchu.xyz/res/directory/2030.jpg", "type": "OVA", "genres": [ @@ -34865,7 +34865,7 @@ { "id": "okusama-ga-seito-kaichou", "title": "Okusama ga Seito Kaichou!", - "mal_title": "Okusama ga Seito Kaichou!", + "mal_id": 32603, "poster": "https://aruppi.jeluchu.xyz/res/directory/2031.jpg", "type": "Anime", "genres": [ @@ -34883,7 +34883,7 @@ { "id": "gangsta", "title": "Gangsta.", - "mal_title": "Gangsta.", + "mal_id": 25183, "poster": "https://aruppi.jeluchu.xyz/res/directory/2032.jpg", "type": "Anime", "genres": [ @@ -34899,7 +34899,7 @@ { "id": "chaos-dragon-sekiryuu-seneki", "title": "Chaos Dragon: Sekiryuu Seneki", - "mal_title": "Chaos Dragon: Sekiryuu Seneki", + "mal_id": 30091, "poster": "https://aruppi.jeluchu.xyz/res/directory/2033.jpg", "type": "Anime", "genres": [ @@ -34915,7 +34915,7 @@ { "id": "aquarion-logos", "title": "Aquarion Logos", - "mal_title": "Aquarion Logos", + "mal_id": 30382, "poster": "https://aruppi.jeluchu.xyz/res/directory/2034.jpg", "type": "Anime", "genres": [ @@ -34935,7 +34935,7 @@ { "id": "ranpo-kitan-game-of-laplace", "title": "Ranpo Kitan: Game of Laplace", - "mal_title": "Ranpo Kitan: Game of Laplace", + "mal_id": 28619, "poster": "https://aruppi.jeluchu.xyz/res/directory/2035.jpg", "type": "Anime", "genres": [ @@ -34949,7 +34949,7 @@ { "id": "aoharu-x-kikanjuu", "title": "Aoharu x Kikanjuu", - "mal_title": "Aoharu x Kikanjuu", + "mal_id": 30205, "poster": "https://aruppi.jeluchu.xyz/res/directory/2036.jpg", "type": "Anime", "genres": [ @@ -34966,7 +34966,7 @@ { "id": "joukamachi-no-dandelion", "title": "Joukamachi no Dandelion", - "mal_title": "Joukamachi no Dandelion", + "mal_id": 28387, "poster": "https://aruppi.jeluchu.xyz/res/directory/2037.jpg", "type": "Anime", "genres": [ @@ -34983,7 +34983,7 @@ { "id": "ushio-to-tora-tv", "title": "Ushio to Tora (TV)", - "mal_title": "Ushio to Tora (TV)", + "mal_id": 29854, "poster": "https://aruppi.jeluchu.xyz/res/directory/2038.jpg", "type": "Anime", "genres": [ @@ -35002,7 +35002,7 @@ { "id": "miss-monochrome-the-animation-2nd-season", "title": "Miss Monochrome: The Animation 2nd Season", - "mal_title": "Miss Monochrome: The Animation 2nd Season", + "mal_id": 20033, "poster": "https://aruppi.jeluchu.xyz/res/directory/2039.jpg", "type": "Anime", "genres": [ @@ -35018,7 +35018,7 @@ { "id": "wooser-no-sono-higurashi-mugen-hen", "title": "Wooser no Sono Higurashi: Mugen-hen", - "mal_title": "Wooser no Sono Higurashi: Mugen-hen", + "mal_id": 29017, "poster": "https://aruppi.jeluchu.xyz/res/directory/2040.jpg", "type": "Anime", "genres": [ @@ -35034,7 +35034,7 @@ { "id": "wakaba-girl", "title": "Wakaba*Girl", - "mal_title": "Wakaba*Girl", + "mal_id": 30355, "poster": "https://aruppi.jeluchu.xyz/res/directory/2041.jpg", "type": "Anime", "genres": [ @@ -35050,7 +35050,7 @@ { "id": "gate-jieitai-kanochi-nite-kaku-tatakaeri", "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", - "mal_title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "mal_id": 28907, "poster": "https://aruppi.jeluchu.xyz/res/directory/2042.jpg", "type": "Anime", "genres": [ @@ -35067,7 +35067,7 @@ { "id": "classroom-crisis", "title": "Classroom ☆ Crisis", - "mal_title": "Classroom ☆ Crisis", + "mal_id": 30383, "poster": "https://aruppi.jeluchu.xyz/res/directory/2043.jpg", "type": "Anime", "genres": [ @@ -35082,7 +35082,7 @@ { "id": "senki-zesshou-symphogear-gx", "title": "Senki Zesshou Symphogear GX", - "mal_title": "Senki Zesshou Symphogear GX", + "mal_id": 21573, "poster": "https://aruppi.jeluchu.xyz/res/directory/2044.jpg", "type": "Anime", "genres": [ @@ -35098,7 +35098,7 @@ { "id": "shimoneta-to-Iu-gainen-ga-sonzai-shinai-taikutsu-na-sekai", "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", - "mal_title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "mal_id": 29786, "poster": "https://aruppi.jeluchu.xyz/res/directory/2045.jpg", "type": "Anime", "genres": [ @@ -35114,7 +35114,7 @@ { "id": "durarara-x2-ten", "title": "Durarara!!x2 Ten", - "mal_title": "Durarara!!x2 Ten", + "mal_id": 27831, "poster": "https://aruppi.jeluchu.xyz/res/directory/2046.jpg", "type": "Anime", "genres": [ @@ -35130,7 +35130,7 @@ { "id": "charlotte", "title": "Charlotte", - "mal_title": "Charlotte", + "mal_id": 28999, "poster": "https://aruppi.jeluchu.xyz/res/directory/2047.jpg", "type": "Anime", "genres": [ @@ -35146,7 +35146,7 @@ { "id": "working-3", "title": "Working!!!", - "mal_title": "Working!!!", + "mal_id": 25879, "poster": "https://aruppi.jeluchu.xyz/res/directory/2048.jpg", "type": "Anime", "genres": [ @@ -35162,7 +35162,7 @@ { "id": "gatchaman-crowds-insight", "title": "Gatchaman Crowds Insight", - "mal_title": "Gatchaman Crowds Insight", + "mal_id": 21039, "poster": "https://aruppi.jeluchu.xyz/res/directory/2049.jpg", "type": "Anime", "genres": [ @@ -35177,7 +35177,7 @@ { "id": "rokka-no-yuusha", "title": "Rokka no Yuusha", - "mal_title": "Rokka no Yuusha", + "mal_id": 28497, "poster": "https://aruppi.jeluchu.xyz/res/directory/2050.jpg", "type": "Anime", "genres": [ @@ -35195,7 +35195,7 @@ { "id": "dragon-ball-super", "title": "Dragon Ball Super", - "mal_title": "Dragon Ball Super", + "mal_id": 30694, "poster": "https://aruppi.jeluchu.xyz/res/directory/2051.jpg", "type": "Anime", "genres": [ @@ -35215,7 +35215,7 @@ { "id": "wakako-zake", "title": "Wakako-zake", - "mal_title": "Wakako-zake", + "mal_id": 30437, "poster": "https://aruppi.jeluchu.xyz/res/directory/2052.jpg", "type": "Anime", "genres": [ @@ -35230,7 +35230,7 @@ { "id": "god-eater", "title": "God Eater", - "mal_title": "God Eater", + "mal_id": 27631, "poster": "https://aruppi.jeluchu.xyz/res/directory/2053.jpg", "type": "Anime", "genres": [ @@ -35247,7 +35247,7 @@ { "id": "akagami-no-shirayuki-hime", "title": "Akagami no Shirayuki-hime", - "mal_title": "Akagami no Shirayuki-hime", + "mal_id": 30123, "poster": "https://aruppi.jeluchu.xyz/res/directory/2054.jpg", "type": "Anime", "genres": [ @@ -35264,7 +35264,7 @@ { "id": "to-love-ru-darkness-2nd", "title": "To LOVE-Ru Darkness 2nd", - "mal_title": "To LOVE-Ru Darkness 2nd", + "mal_id": 31380, "poster": "https://aruppi.jeluchu.xyz/res/directory/2055.jpg", "type": "Anime", "genres": [ @@ -35284,7 +35284,7 @@ { "id": "teekyuu-5", "title": "Teekyuu 5", - "mal_title": "Teekyuu 5", + "mal_id": 30567, "poster": "https://aruppi.jeluchu.xyz/res/directory/2056.jpg", "type": "Anime", "genres": [ @@ -35300,7 +35300,7 @@ { "id": "million-doll", "title": "Million Doll", - "mal_title": "Million Doll", + "mal_id": 29941, "poster": "https://aruppi.jeluchu.xyz/res/directory/2057.jpg", "type": "Anime", "genres": [ @@ -35314,7 +35314,7 @@ { "id": "jitsu-wa-watashi-wa", "title": "Jitsu wa Watashi wa", - "mal_title": "Jitsu wa Watashi wa", + "mal_id": 29785, "poster": "https://aruppi.jeluchu.xyz/res/directory/2058.jpg", "type": "Anime", "genres": [ @@ -35333,7 +35333,7 @@ { "id": "non-non-biyori-repeat", "title": "Non Non Biyori Repeat", - "mal_title": "Non Non Biyori Repeat", + "mal_id": 23623, "poster": "https://aruppi.jeluchu.xyz/res/directory/2059.jpg", "type": "Anime", "genres": [ @@ -35350,7 +35350,7 @@ { "id": "overlord", "title": "Overlord", - "mal_title": "Overlord", + "mal_id": 29803, "poster": "https://aruppi.jeluchu.xyz/res/directory/2060.jpg", "type": "Anime", "genres": [ @@ -35369,7 +35369,7 @@ { "id": "sore-ga-seiyuu", "title": "Sore ga Seiyuu!", - "mal_title": "Sore ga Seiyuu!", + "mal_id": 29163, "poster": "https://aruppi.jeluchu.xyz/res/directory/2061.jpg", "type": "Anime", "genres": [ @@ -35384,7 +35384,7 @@ { "id": "monster-musume-no-iru-nichijou", "title": "Monster Musume no Iru Nichijou", - "mal_title": "Monster Musume no Iru Nichijou", + "mal_id": 30307, "poster": "https://aruppi.jeluchu.xyz/res/directory/2062.jpg", "type": "Anime", "genres": [ @@ -35403,7 +35403,7 @@ { "id": "bikini-warriors", "title": "Bikini Warriors", - "mal_title": "Bikini Warriors", + "mal_id": 30782, "poster": "https://aruppi.jeluchu.xyz/res/directory/2063.jpg", "type": "Anime", "genres": [ @@ -35420,7 +35420,7 @@ { "id": "kuusen-madoushi-kouhosei-no-kyoukan", "title": "Kuusen Madoushi Kouhosei no Kyoukan", - "mal_title": "Kuusen Madoushi Kouhosei no Kyoukan", + "mal_id": 25283, "poster": "https://aruppi.jeluchu.xyz/res/directory/2064.jpg", "type": "Anime", "genres": [ @@ -35438,7 +35438,7 @@ { "id": "junjou-romantica-3", "title": "Junjou Romantica 3", - "mal_title": "Junjou Romantica 3", + "mal_id": 25649, "poster": "https://aruppi.jeluchu.xyz/res/directory/2065.jpg", "type": "Anime", "genres": [ @@ -35455,7 +35455,7 @@ { "id": "himouto-umaru-chan", "title": "Himouto! Umaru-chan", - "mal_title": "Himouto! Umaru-chan", + "mal_id": 35376, "poster": "https://aruppi.jeluchu.xyz/res/directory/2066.jpg", "type": "Anime", "genres": [ @@ -35472,7 +35472,7 @@ { "id": "gakkou-gurashi", "title": "Gakkou Gurashi!", - "mal_title": "Gakkou Gurashi!", + "mal_id": 24765, "poster": "https://aruppi.jeluchu.xyz/res/directory/2067.jpg", "type": "Anime", "genres": [ @@ -35490,7 +35490,7 @@ { "id": "danchigai", "title": "Danchigai", - "mal_title": "Danchigai", + "mal_id": 30127, "poster": "https://aruppi.jeluchu.xyz/res/directory/2068.jpg", "type": "Anime", "genres": [ @@ -35505,7 +35505,7 @@ { "id": "kangoku-gakuen", "title": "Kangoku Gakuen", - "mal_title": "Kangoku Gakuen", + "mal_id": 30240, "poster": "https://aruppi.jeluchu.xyz/res/directory/2069.jpg", "type": "Anime", "genres": [ @@ -35523,7 +35523,7 @@ { "id": "venus-project-climax", "title": "Venus Project: Climax", - "mal_title": "Venus Project: Climax", + "mal_id": 30251, "poster": "https://aruppi.jeluchu.xyz/res/directory/2070.jpg", "type": "Anime", "genres": [ @@ -35538,7 +35538,7 @@ { "id": "makura-no-danshi", "title": "Makura no Danshi", - "mal_title": "Makura no Danshi", + "mal_id": 30705, "poster": "https://aruppi.jeluchu.xyz/res/directory/2071.jpg", "type": "Anime", "genres": [ @@ -35552,7 +35552,7 @@ { "id": "the-idolmaster-cinderella-girls-2", "title": "The IDOLM@STER: Cinderella Girls 2nd Season", - "mal_title": "The IDOLM@STER: Cinderella Girls 2nd Season", + "mal_id": 30344, "poster": "https://aruppi.jeluchu.xyz/res/directory/2072.jpg", "type": "Anime", "genres": [ @@ -35568,7 +35568,7 @@ { "id": "fate-kaleid-liner-prisma-illya-2wei-herz", "title": "Fate/kaleid liner Prisma☆Illya 2wei Herz!", - "mal_title": "Fate/kaleid liner Prisma☆Illya 2wei Herz!", + "mal_id": 27525, "poster": "https://aruppi.jeluchu.xyz/res/directory/2073.jpg", "type": "Anime", "genres": [ @@ -35586,7 +35586,7 @@ { "id": "hibike-euphonium-especiales", "title": "Hibike! Euphonium Especiales", - "mal_title": "Hibike! Euphonium Especiales", + "mal_id": 34204, "poster": "https://aruppi.jeluchu.xyz/res/directory/2074.jpg", "type": "OVA", "genres": [ @@ -35602,7 +35602,7 @@ { "id": "aikatsu-movie", "title": "Aikatsu! Movie", - "mal_title": "Aikatsu! Movie", + "mal_id": 22819, "poster": "https://aruppi.jeluchu.xyz/res/directory/2075.jpg", "type": "Película", "genres": [ @@ -35619,7 +35619,7 @@ { "id": "amagi-brilliant-park-special", "title": "Amagi Brilliant Park Special", - "mal_title": "Amagi Brilliant Park Special", + "mal_id": 22147, "poster": "https://aruppi.jeluchu.xyz/res/directory/2076.jpg", "type": "OVA", "genres": [ @@ -35633,7 +35633,7 @@ { "id": "ao-no-6-gou", "title": "Ao no 6-gou", - "mal_title": "Ao no 6-gou", + "mal_id": 1051, "poster": "https://aruppi.jeluchu.xyz/res/directory/2077.jpg", "type": "OVA", "genres": [ @@ -35651,7 +35651,7 @@ { "id": "hetalia-the-world-twinkle", "title": "Hetalia: The World Twinkle", - "mal_title": "Hetalia: The World Twinkle", + "mal_id": 28607, "poster": "https://aruppi.jeluchu.xyz/res/directory/2078.jpg", "type": "Anime", "genres": [ @@ -35667,7 +35667,7 @@ { "id": "sousei-no-aquarion-evol", "title": "Sousei no Aquarion Evol", - "mal_title": "Sousei no Aquarion Evol", + "mal_id": 30381, "poster": "https://aruppi.jeluchu.xyz/res/directory/2079.jpg", "type": "OVA", "genres": [ @@ -35686,7 +35686,7 @@ { "id": "little-witch-academia-mahou-shikake-no-parade", "title": "Little Witch Academia: Mahou Shikake no Parade", - "mal_title": "Little Witch Academia: Mahou Shikake no Parade", + "mal_id": 19489, "poster": "https://aruppi.jeluchu.xyz/res/directory/2080.jpg", "type": "Película", "genres": [ @@ -35704,7 +35704,7 @@ { "id": "tamayura-sotsugyou-shashin-part-1-kizashi", "title": "Tamayura: Sotsugyou Shashin Part 1 - Kizashi", - "mal_title": "Tamayura: Sotsugyou Shashin Part 1 - Kizashi", + "mal_id": 25729, "poster": "https://aruppi.jeluchu.xyz/res/directory/2081.jpg", "type": "Película", "genres": [ @@ -35720,7 +35720,7 @@ { "id": "higashi-no-eden-movie-1-the-king-of-eden", "title": "Higashi no Eden Movie I: The King of Eden", - "mal_title": "Higashi no Eden Movie I: The King of Eden", + "mal_id": 6372, "poster": "https://aruppi.jeluchu.xyz/res/directory/2082.jpg", "type": "Película", "genres": [ @@ -35739,7 +35739,7 @@ { "id": "higashi-no-eden-movie-2-paradise-lost", "title": "Higashi no Eden Movie II: Paradise Lost", - "mal_title": "Higashi no Eden Movie II: Paradise Lost", + "mal_id": 6637, "poster": "https://aruppi.jeluchu.xyz/res/directory/2083.jpg", "type": "Película", "genres": [ @@ -35758,7 +35758,7 @@ { "id": "ushio-to-tora", "title": "Ushio to Tora", - "mal_title": "Ushio to Tora", + "mal_id": 842, "poster": "https://aruppi.jeluchu.xyz/res/directory/2084.jpg", "type": "OVA", "genres": [ @@ -35774,7 +35774,7 @@ { "id": "tytania", "title": "Tytania", - "mal_title": "Tytania", + "mal_id": 4066, "poster": "https://aruppi.jeluchu.xyz/res/directory/2085.jpg", "type": "Anime", "genres": [ @@ -35793,7 +35793,7 @@ { "id": "tokyo-underground", "title": "Tokyo Underground", - "mal_title": "Tokyo Underground", + "mal_id": 175, "poster": "https://aruppi.jeluchu.xyz/res/directory/2086.jpg", "type": "Anime", "genres": [ @@ -35812,7 +35812,7 @@ { "id": "tales-of-eternia", "title": "Tales of Eternia", - "mal_title": "Tales of Eternia", + "mal_id": 445, "poster": "https://aruppi.jeluchu.xyz/res/directory/2087.jpg", "type": "Anime", "genres": [ @@ -35830,7 +35830,7 @@ { "id": "tactical-roar", "title": "Tactical Roar", - "mal_title": "Tactical Roar", + "mal_id": 817, "poster": "https://aruppi.jeluchu.xyz/res/directory/2088.jpg", "type": "Anime", "genres": [ @@ -35847,7 +35847,7 @@ { "id": "shoujo-kakumei-utena", "title": "Shoujo Kakumei Utena", - "mal_title": "Shoujo Kakumei Utena", + "mal_id": 440, "poster": "https://aruppi.jeluchu.xyz/res/directory/2089.jpg", "type": "Anime", "genres": [ @@ -35864,7 +35864,7 @@ { "id": "seihou-tenshi-angel-links", "title": "Seihou Tenshi Angel Links", - "mal_title": "Seihou Tenshi Angel Links", + "mal_id": 1226, "poster": "https://aruppi.jeluchu.xyz/res/directory/2090.jpg", "type": "Anime", "genres": [ @@ -35884,7 +35884,7 @@ { "id": "seihou-bukyou-outlaw-star", "title": "Seihou Bukyou Outlaw Star", - "mal_title": "Seihou Bukyou Outlaw Star", + "mal_id": 400, "poster": "https://aruppi.jeluchu.xyz/res/directory/2091.jpg", "type": "Anime", "genres": [ @@ -35902,7 +35902,7 @@ { "id": "night-walker-mayonaka-no-tantei", "title": "Night Walker: Mayonaka no Tantei", - "mal_title": "Night Walker: Mayonaka no Tantei", + "mal_id": 621, "poster": "https://aruppi.jeluchu.xyz/res/directory/2092.jpg", "type": "Anime", "genres": [ @@ -35920,7 +35920,7 @@ { "id": "mahoraba-heartful-days", "title": "Mahoraba Heartful days", - "mal_title": "Mahoraba Heartful days", + "mal_id": 519, "poster": "https://aruppi.jeluchu.xyz/res/directory/2093.jpg", "type": "Anime", "genres": [ @@ -35937,7 +35937,7 @@ { "id": "aoki-hagane-no-arpeggio-ars-nova-dc", "title": "Aoki Hagane no Arpeggio: Ars Nova DC", - "mal_title": "Aoki Hagane no Arpeggio: Ars Nova DC", + "mal_id": 24919, "poster": "https://aruppi.jeluchu.xyz/res/directory/2094.jpg", "type": "Película", "genres": [ @@ -35953,7 +35953,7 @@ { "id": "okusama-wa-mahou-shoujo", "title": "Okusama wa Mahou Shoujo", - "mal_title": "Okusama wa Mahou Shoujo", + "mal_id": 614, "poster": "https://aruppi.jeluchu.xyz/res/directory/2095.jpg", "type": "Anime", "genres": [ @@ -35968,7 +35968,7 @@ { "id": "mahou-senshi-louie", "title": "Mahou Senshi Louie", - "mal_title": "Mahou Senshi Louie", + "mal_id": 1164, "poster": "https://aruppi.jeluchu.xyz/res/directory/2096.jpg", "type": "Anime", "genres": [ @@ -35986,7 +35986,7 @@ { "id": "kenran-butoh-sai", "title": "Kenran Butoh Sai", - "mal_title": "Kenran Butoh Sai", + "mal_id": 1086, "poster": "https://aruppi.jeluchu.xyz/res/directory/2097.jpg", "type": "Anime", "genres": [ @@ -36006,7 +36006,7 @@ { "id": "hyper-police", "title": "Hyper Police", - "mal_title": "Hyper Police", + "mal_id": 1180, "poster": "https://aruppi.jeluchu.xyz/res/directory/2098.jpg", "type": "Anime", "genres": [ @@ -36024,7 +36024,7 @@ { "id": "tsuki-wa-higashi-ni-hi-wa-nishi-ni-operation-sanctuary", "title": "Tsuki wa Higashi ni Hi wa Nishi ni: Operation Sanctuary", - "mal_title": "Tsuki wa Higashi ni Hi wa Nishi ni: Operation Sanctuary", + "mal_id": 648, "poster": "https://aruppi.jeluchu.xyz/res/directory/2099.jpg", "type": "Anime", "genres": [ @@ -36042,7 +36042,7 @@ { "id": "rumiko-takahashi-anthology", "title": "Rumiko Takahashi Anthology", - "mal_title": "Rumiko Takahashi Anthology", + "mal_id": 2486, "poster": "https://aruppi.jeluchu.xyz/res/directory/2100.jpg", "type": "Anime", "genres": [ @@ -36061,7 +36061,7 @@ { "id": "high-school-dxd-new-born-specials", "title": "High School DxD BorN Specials", - "mal_title": "High School DxD BorN Specials", + "mal_id": 13357, "poster": "https://aruppi.jeluchu.xyz/res/directory/2101.jpg", "type": "OVA", "genres": [ @@ -36080,7 +36080,7 @@ { "id": "fate-kaleid-liner-prisma-illya-2wei-ova", "title": "Fate/kaleid liner Prisma☆Illya 2wei! OVA", - "mal_title": "Fate/kaleid liner Prisma☆Illya 2wei! OVA", + "mal_id": 20509, "poster": "https://aruppi.jeluchu.xyz/res/directory/2102.jpg", "type": "OVA", "genres": [ @@ -36097,7 +36097,7 @@ { "id": "sora-no-method-aru-shoujo-no-kyuujitsu", "title": "Sora no Method: Aru Shoujo no Kyuujitsu★", - "mal_title": "Sora no Method: Aru Shoujo no Kyuujitsu★", + "mal_id": 30919, "poster": "https://aruppi.jeluchu.xyz/res/directory/2103.jpg", "type": "OVA", "genres": [ @@ -36113,7 +36113,7 @@ { "id": "psycho-pass-movie", "title": "Psycho-Pass Movie", - "mal_title": "Psycho-Pass Movie", + "mal_id": 21339, "poster": "https://aruppi.jeluchu.xyz/res/directory/2104.jpg", "type": "Película", "genres": [ @@ -36130,7 +36130,7 @@ { "id": "owari-no-seraph-owaranai-seraph", "title": "Owari no Seraph: Owaranai Seraph", - "mal_title": "Owari no Seraph: Owaranai Seraph", + "mal_id": 30714, "poster": "https://aruppi.jeluchu.xyz/res/directory/2105.jpg", "type": "OVA", "genres": [ @@ -36148,7 +36148,7 @@ { "id": "overlord-specials", "title": "Overlord Specials", - "mal_title": "Overlord Specials", + "mal_id": 31138, "poster": "https://aruppi.jeluchu.xyz/res/directory/2106.jpg", "type": "OVA", "genres": [ @@ -36165,7 +36165,7 @@ { "id": "diabolik-lovers-more-blood", "title": "Diabolik Lovers More,Blood", - "mal_title": "Diabolik Lovers More,Blood", + "mal_id": 29974, "poster": "https://aruppi.jeluchu.xyz/res/directory/2107.jpg", "type": "Anime", "genres": [ @@ -36182,7 +36182,7 @@ { "id": "kaichou-wa-maid-sama-omake-dayo", "title": "Kaichou wa Maid-sama!: Omake dayo!", - "mal_title": "Kaichou wa Maid-sama!: Omake dayo!", + "mal_id": 9366, "poster": "https://aruppi.jeluchu.xyz/res/directory/2108.jpg", "type": "OVA", "genres": [ @@ -36198,7 +36198,7 @@ { "id": "ichiban-ushiro-no-daimaou-specials", "title": "Ichiban Ushiro no Daimaou Specials", - "mal_title": "Ichiban Ushiro no Daimaou Specials", + "mal_id": 8465, "poster": "https://aruppi.jeluchu.xyz/res/directory/2109.jpg", "type": "OVA", "genres": [ @@ -36216,7 +36216,7 @@ { "id": "air-in-summer", "title": "Air in Summer", - "mal_title": "Air in Summer", + "mal_id": 656, "poster": "https://aruppi.jeluchu.xyz/res/directory/2110.jpg", "type": "OVA", "genres": [ @@ -36234,7 +36234,7 @@ { "id": "azumanga-daioh-gekijou-tanpen", "title": "Azumanga Daioh: Gekijou Tanpen", - "mal_title": "Azumanga Daioh: Gekijou Tanpen", + "mal_id": 659, "poster": "https://aruppi.jeluchu.xyz/res/directory/2111.jpg", "type": "OVA", "genres": [ @@ -36250,7 +36250,7 @@ { "id": "azumang-web-daioh", "title": "Azumanga Web Daioh", - "mal_title": "Azumanga Web Daioh", + "mal_id": 1593, "poster": "https://aruppi.jeluchu.xyz/res/directory/2112.jpg", "type": "OVA", "genres": [ @@ -36266,7 +36266,7 @@ { "id": "candy-boy-episode-ex01-mirai-yohouzu", "title": "Candy Boy Episode: EX01 - Mirai Yohouzu", - "mal_title": "Candy Boy Episode: EX01 - Mirai Yohouzu", + "mal_id": 5116, "poster": "https://aruppi.jeluchu.xyz/res/directory/2113.jpg", "type": "OVA", "genres": [ @@ -36282,7 +36282,7 @@ { "id": "candy-boy-side-story-for-archive", "title": "Candy☆Boy: Side Story For Archive", - "mal_title": "Candy☆Boy: Side Story For Archive", + "mal_id": 3456, "poster": "https://aruppi.jeluchu.xyz/res/directory/2114.jpg", "type": "OVA", "genres": [ @@ -36298,7 +36298,7 @@ { "id": "candy-boy-episode-ex02-shiawase-kyouyuu-riron", "title": "Candy Boy Episode: EX02 - Shiawase Kyouyuu Riron", - "mal_title": "Candy Boy Episode: EX02 - Shiawase Kyouyuu Riron", + "mal_id": 6479, "poster": "https://aruppi.jeluchu.xyz/res/directory/2115.jpg", "type": "OVA", "genres": [ @@ -36314,7 +36314,7 @@ { "id": "1-2-paradise", "title": "1+2=Paradise", - "mal_title": "1+2=Paradise", + "mal_id": 2730, "poster": "https://aruppi.jeluchu.xyz/res/directory/2116.jpg", "type": "OVA", "genres": [ @@ -36332,7 +36332,7 @@ { "id": "galaxy-angel", "title": "Galaxy Angel", - "mal_title": "Galaxy Angel", + "mal_id": 383, "poster": "https://aruppi.jeluchu.xyz/res/directory/2117.jpg", "type": "Anime", "genres": [ @@ -36347,7 +36347,7 @@ { "id": "galaxy-angel-z", "title": "Galaxy Angel Z", - "mal_title": "Galaxy Angel Z", + "mal_id": 652, "poster": "https://aruppi.jeluchu.xyz/res/directory/2118.jpg", "type": "Anime", "genres": [ @@ -36362,7 +36362,7 @@ { "id": "galaxy-angel-z-special", "title": "Galaxy Angel Z Special", - "mal_title": "Galaxy Angel Z Special", + "mal_id": 654, "poster": "https://aruppi.jeluchu.xyz/res/directory/2119.jpg", "type": "OVA", "genres": [ @@ -36377,7 +36377,7 @@ { "id": "galaxy-angel-3", "title": "Galaxy Angel 3", - "mal_title": "Galaxy Angel 3", + "mal_id": 653, "poster": "https://aruppi.jeluchu.xyz/res/directory/2120.jpg", "type": "Anime", "genres": [ @@ -36392,7 +36392,7 @@ { "id": "galaxy-angel-3-specials", "title": "Galaxy Angel 3 Specials", - "mal_title": "Galaxy Angel 3 Specials", + "mal_id": 654, "poster": "https://aruppi.jeluchu.xyz/res/directory/2121.jpg", "type": "OVA", "genres": [ @@ -36407,7 +36407,7 @@ { "id": "galaxy-angel-s", "title": "Galaxy Angel S", - "mal_title": "Galaxy Angel S", + "mal_id": 12225, "poster": "https://aruppi.jeluchu.xyz/res/directory/2122.jpg", "type": "OVA", "genres": [ @@ -36422,7 +36422,7 @@ { "id": "galaxy-angel-4", "title": "Galaxy Angel 4", - "mal_title": "Galaxy Angel 4", + "mal_id": 655, "poster": "https://aruppi.jeluchu.xyz/res/directory/2123.jpg", "type": "Anime", "genres": [ @@ -36437,7 +36437,7 @@ { "id": "burn-up", "title": "Burn Up!", - "mal_title": "Burn Up!", + "mal_id": 767, "poster": "https://aruppi.jeluchu.xyz/res/directory/2124.jpg", "type": "OVA", "genres": [ @@ -36455,7 +36455,7 @@ { "id": "rio-rainbow-gate", "title": "Rio: Rainbow Gate!", - "mal_title": "Rio: Rainbow Gate!", + "mal_id": 8241, "poster": "https://aruppi.jeluchu.xyz/res/directory/2125.jpg", "type": "Anime", "genres": [ @@ -36471,7 +36471,7 @@ { "id": "yawaraka-sangokushi-tsukisase-ryofuko-chan", "title": "Yawaraka Sangokushi Tsukisase Ryofuko Chan", - "mal_title": "Yawaraka Sangokushi Tsukisase Ryofuko Chan", + "mal_id": 3417, "poster": "https://aruppi.jeluchu.xyz/res/directory/2126.jpg", "type": "OVA", "genres": [ @@ -36487,7 +36487,7 @@ { "id": "texhnolyze", "title": "Texhnolyze", - "mal_title": "Texhnolyze", + "mal_id": 26, "poster": "https://aruppi.jeluchu.xyz/res/directory/2127.jpg", "type": "Anime", "genres": [ @@ -36504,7 +36504,7 @@ { "id": "shingeki-no-kyojin-live-action", "title": "Shingeki no Kyojin Live Action", - "mal_title": "Shingeki no Kyojin Live Action", + "mal_id": 35760, "poster": "https://aruppi.jeluchu.xyz/res/directory/2128.jpg", "type": "Película", "genres": [ @@ -36518,7 +36518,7 @@ { "id": "lucky-star-original-na-visual-to-animation", "title": "Lucky☆Star: Original na Visual to Animation", - "mal_title": "Lucky☆Star: Original na Visual to Animation", + "mal_id": 4472, "poster": "https://aruppi.jeluchu.xyz/res/directory/2129.jpg", "type": "OVA", "genres": [ @@ -36535,7 +36535,7 @@ { "id": "legend-of-basara", "title": "Legend of Basara", - "mal_title": "Legend of Basara", + "mal_id": 633, "poster": "https://aruppi.jeluchu.xyz/res/directory/2130.jpg", "type": "Anime", "genres": [ @@ -36552,7 +36552,7 @@ { "id": "to-heart", "title": "To Heart", - "mal_title": "To Heart", + "mal_id": 472, "poster": "https://aruppi.jeluchu.xyz/res/directory/2131.jpg", "type": "Anime", "genres": [ @@ -36570,7 +36570,7 @@ { "id": "to-heart-remember-my-memories", "title": "To Heart: Remember My Memories", - "mal_title": "To Heart: Remember My Memories", + "mal_id": 685, "poster": "https://aruppi.jeluchu.xyz/res/directory/2132.jpg", "type": "Anime", "genres": [ @@ -36589,7 +36589,7 @@ { "id": "to-heart-2", "title": "To Heart 2", - "mal_title": "To Heart 2", + "mal_id": 471, "poster": "https://aruppi.jeluchu.xyz/res/directory/2133.jpg", "type": "Anime", "genres": [ @@ -36608,7 +36608,7 @@ { "id": "to-heart-2-ova", "title": "To Heart 2 OVA", - "mal_title": "To Heart 2 OVA", + "mal_id": 1720, "poster": "https://aruppi.jeluchu.xyz/res/directory/2134.jpg", "type": "OVA", "genres": [ @@ -36626,7 +36626,7 @@ { "id": "to-heart-2-ad", "title": "To Heart 2 AD", - "mal_title": "To Heart 2 AD", + "mal_id": 9005, "poster": "https://aruppi.jeluchu.xyz/res/directory/2135.jpg", "type": "OVA", "genres": [ @@ -36642,7 +36642,7 @@ { "id": "to-heart-2-ad-plus", "title": "To Heart 2 AD Plus", - "mal_title": "To Heart 2 AD Plus", + "mal_id": 4804, "poster": "https://aruppi.jeluchu.xyz/res/directory/2136.jpg", "type": "OVA", "genres": [ @@ -36656,7 +36656,7 @@ { "id": "to-heart-2-adnext", "title": "To Heart 2 Adnext", - "mal_title": "To Heart 2 Adnext", + "mal_id": 9005, "poster": "https://aruppi.jeluchu.xyz/res/directory/2137.jpg", "type": "OVA", "genres": [ @@ -36672,7 +36672,7 @@ { "id": "majuu-sensen-the-apocalypse", "title": "Majuu Sensen: The Apocalypse", - "mal_title": "Majuu Sensen: The Apocalypse", + "mal_id": 1708, "poster": "https://aruppi.jeluchu.xyz/res/directory/2138.jpg", "type": "Anime", "genres": [ @@ -36687,7 +36687,7 @@ { "id": "mission-e", "title": "Mission-E", - "mal_title": "Mission-E", + "mal_id": 4209, "poster": "https://aruppi.jeluchu.xyz/res/directory/2139.jpg", "type": "Anime", "genres": [ @@ -36704,7 +36704,7 @@ { "id": "nurse-witch-komugi-chan-magikarte", "title": "Nurse Witch Komugi-chan Magikarte", - "mal_title": "Nurse Witch Komugi-chan Magikarte", + "mal_id": 615, "poster": "https://aruppi.jeluchu.xyz/res/directory/2140.jpg", "type": "OVA", "genres": [ @@ -36720,7 +36720,7 @@ { "id": "nurse-witch-komugi-chan-magikarte-z", "title": "Nurse Witch Komugi-chan Magikarte Z", - "mal_title": "Nurse Witch Komugi-chan Magikarte Z", + "mal_id": 921, "poster": "https://aruppi.jeluchu.xyz/res/directory/2141.jpg", "type": "OVA", "genres": [ @@ -36736,7 +36736,7 @@ { "id": "el-hazard-the-magnificent-world", "title": "El Hazard: The Magnificent World", - "mal_title": "El Hazard: The Magnificent World", + "mal_id": 117, "poster": "https://aruppi.jeluchu.xyz/res/directory/2142.jpg", "type": "OVA", "genres": [ @@ -36753,7 +36753,7 @@ { "id": "el-hazard-the-wanderers", "title": "El Hazard: The Wanderers", - "mal_title": "El Hazard: The Wanderers", + "mal_id": 116, "poster": "https://aruppi.jeluchu.xyz/res/directory/2143.jpg", "type": "Anime", "genres": [ @@ -36770,7 +36770,7 @@ { "id": "fushigi-no-umi-no-nadia", "title": "Fushigi no Umi no Nadia", - "mal_title": "Fushigi no Umi no Nadia", + "mal_id": 1251, "poster": "https://aruppi.jeluchu.xyz/res/directory/2144.jpg", "type": "Anime", "genres": [ @@ -36788,7 +36788,7 @@ { "id": "usagi-drop-live-action", "title": "Usagi Drop Live Action", - "mal_title": "Usagi Drop Live Action", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/2145.jpg", "type": "Película", "genres": [ @@ -36802,7 +36802,7 @@ { "id": "yuru-yuri-nachuyachumi-plus", "title": "YuruYuri Nachuyachumi! Plus", - "mal_title": "YuruYuri Nachuyachumi! Plus", + "mal_id": 30902, "poster": "https://aruppi.jeluchu.xyz/res/directory/2146.jpg", "type": "OVA", "genres": [ @@ -36818,7 +36818,7 @@ { "id": "chu-feng-bee", "title": "Chu Feng: B.E.E", - "mal_title": "Chu Feng: B.E.E", + "mal_id": 29876, "poster": "https://aruppi.jeluchu.xyz/res/directory/2147.jpg", "type": "Anime", "genres": [ @@ -36838,7 +36838,7 @@ { "id": "one-piece-episode-of-Sabo-3-kyoudai-no-kizuna-kiseki-no-sai", "title": "One Piece: Episode of Sabo - 3 Kyoudai no Kizuna Kiseki no Saikai to Uketsugareru Ishi", - "mal_title": "One Piece: Episode of Sabo - 3 Kyoudai no Kizuna Kiseki no Saikai to Uketsugareru Ishi", + "mal_id": 31289, "poster": "https://aruppi.jeluchu.xyz/res/directory/2148.jpg", "type": "OVA", "genres": [ @@ -36858,7 +36858,7 @@ { "id": "es-otherwise", "title": "E's Otherwise", - "mal_title": "E's Otherwise", + "mal_id": 236, "poster": "https://aruppi.jeluchu.xyz/res/directory/2149.jpg", "type": "Anime", "genres": [ @@ -36878,7 +36878,7 @@ { "id": "kemono-no-souja-erin", "title": "Kemono no Souja Erin", - "mal_title": "Kemono no Souja Erin", + "mal_id": 5420, "poster": "https://aruppi.jeluchu.xyz/res/directory/2150.jpg", "type": "Anime", "genres": [ @@ -36893,7 +36893,7 @@ { "id": "gunsmith-cats", "title": "Gunsmith Cats", - "mal_title": "Gunsmith Cats", + "mal_id": 650, "poster": "https://aruppi.jeluchu.xyz/res/directory/2151.jpg", "type": "Anime", "genres": [ @@ -36910,7 +36910,7 @@ { "id": "hakushaku-to-yousei", "title": "Hakushaku to Yousei", - "mal_title": "Hakushaku to Yousei", + "mal_id": 4551, "poster": "https://aruppi.jeluchu.xyz/res/directory/2152.jpg", "type": "Anime", "genres": [ @@ -36927,7 +36927,7 @@ { "id": "kyou-no-go-no-ni-agai-jugyou-mizukake", "title": "Kyou no Go no Ni Kagai Jugyou: Mizukake", - "mal_title": "Kyou no Go no Ni Kagai Jugyou: Mizukake", + "mal_id": 4078, "poster": "https://aruppi.jeluchu.xyz/res/directory/2153.jpg", "type": "OVA", "genres": [ @@ -36944,7 +36944,7 @@ { "id": "kyou-no-go-no-ni-2008", "title": "Kyou no Go no Ni (2008)", - "mal_title": "Kyou no Go no Ni (2008)", + "mal_id": 4903, "poster": "https://aruppi.jeluchu.xyz/res/directory/2154.jpg", "type": "Anime", "genres": [ @@ -36961,7 +36961,7 @@ { "id": "tenshi-ni-narumon", "title": "Tenshi ni Narumon!", - "mal_title": "Tenshi ni Narumon!", + "mal_id": 605, "poster": "https://aruppi.jeluchu.xyz/res/directory/2155.jpg", "type": "Anime", "genres": [ @@ -36977,7 +36977,7 @@ { "id": "grisaia-no-meikyuu-special", "title": "Grisaia no Meikyuu Special", - "mal_title": "Grisaia no Meikyuu Special", + "mal_id": 31368, "poster": "https://aruppi.jeluchu.xyz/res/directory/2156.jpg", "type": "OVA", "genres": [ @@ -36991,7 +36991,7 @@ { "id": "tenamonya-voyagers", "title": "Tenamonya Voyagers", - "mal_title": "Tenamonya Voyagers", + "mal_id": 773, "poster": "https://aruppi.jeluchu.xyz/res/directory/2157.jpg", "type": "OVA", "genres": [ @@ -37009,7 +37009,7 @@ { "id": "grisaia-no-rakuen-specials", "title": "Grisaia no Rakuen Specials", - "mal_title": "Grisaia no Rakuen Specials", + "mal_id": 31368, "poster": "https://aruppi.jeluchu.xyz/res/directory/2158.jpg", "type": "OVA", "genres": [ @@ -37023,7 +37023,7 @@ { "id": "hoozuki-no-reitetsu-ova", "title": "Hoozuki no Reitetsu OVA", - "mal_title": "Hoozuki no Reitetsu OVA", + "mal_id": 24471, "poster": "https://aruppi.jeluchu.xyz/res/directory/2159.jpg", "type": "OVA", "genres": [ @@ -37040,7 +37040,7 @@ { "id": "major-message", "title": "Major: Message", - "mal_title": "Major: Message", + "mal_id": 9890, "poster": "https://aruppi.jeluchu.xyz/res/directory/2160.jpg", "type": "OVA", "genres": [ @@ -37056,7 +37056,7 @@ { "id": "saikin-imouto-no-yousu-ga-chotto-okashiinda-ga-live-action", "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga Live Action", - "mal_title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga Live Action", + "mal_id": 17777, "poster": "https://aruppi.jeluchu.xyz/res/directory/2161.jpg", "type": "Película", "genres": [ @@ -37070,7 +37070,7 @@ { "id": "isuca-ova", "title": "Isuca Ova", - "mal_title": "Isuca Ova", + "mal_id": 28713, "poster": "https://aruppi.jeluchu.xyz/res/directory/2162.jpg", "type": "OVA", "genres": [ @@ -37088,7 +37088,7 @@ { "id": "urusei-yatsura-ovie-1-only-you", "title": "Urusei Yatsura Movie 1: Only You", - "mal_title": "Urusei Yatsura Movie 1: Only You", + "mal_id": 1920, "poster": "https://aruppi.jeluchu.xyz/res/directory/2163.jpg", "type": "Película", "genres": [ @@ -37107,7 +37107,7 @@ { "id": "urusei-yatsura-movie-2-beautiful-dreamer", "title": "Urusei Yatsura Movie 2: Beautiful Dreamer", - "mal_title": "Urusei Yatsura Movie 2: Beautiful Dreamer", + "mal_id": 1921, "poster": "https://aruppi.jeluchu.xyz/res/directory/2164.jpg", "type": "Película", "genres": [ @@ -37126,7 +37126,7 @@ { "id": "urusei-yatsura-movie-3-remember-my-love", "title": "Urusei Yatsura Movie 3: Remember My Love", - "mal_title": "Urusei Yatsura Movie 3: Remember My Love", + "mal_id": 1922, "poster": "https://aruppi.jeluchu.xyz/res/directory/2165.jpg", "type": "Película", "genres": [ @@ -37145,7 +37145,7 @@ { "id": "urusei-yatsura-movie-4-lum-the-forever", "title": "Urusei Yatsura Movie 4: Lum The Forever", - "mal_title": "Urusei Yatsura Movie 4: Lum The Forever", + "mal_id": 1923, "poster": "https://aruppi.jeluchu.xyz/res/directory/2166.jpg", "type": "Película", "genres": [ @@ -37164,7 +37164,7 @@ { "id": "urusei-yatsura-movie-5-final", "title": "Urusei Yatsura Movie 5: Final", - "mal_title": "Urusei Yatsura Movie 5: Final", + "mal_id": 1920, "poster": "https://aruppi.jeluchu.xyz/res/directory/2167.jpg", "type": "Película", "genres": [ @@ -37183,7 +37183,7 @@ { "id": "urusei-yatsura-movie-6-itsudatte-my-darling", "title": "Urusei Yatsura Movie 6: Itsudatte My Darling", - "mal_title": "Urusei Yatsura Movie 6: Itsudatte My Darling", + "mal_id": 1925, "poster": "https://aruppi.jeluchu.xyz/res/directory/2168.jpg", "type": "Película", "genres": [ @@ -37202,7 +37202,7 @@ { "id": "kyoukai-no-kanata-mini-theater", "title": "Kyoukai no Kanata: Mini Theater", - "mal_title": "Kyoukai no Kanata: Mini Theater", + "mal_id": 20909, "poster": "https://aruppi.jeluchu.xyz/res/directory/2169.jpg", "type": "OVA", "genres": [ @@ -37217,7 +37217,7 @@ { "id": "shinmai-maou-no-testament-ova", "title": "Shinmai Maou no Testament OVA", - "mal_title": "Shinmai Maou no Testament OVA", + "mal_id": 30363, "poster": "https://aruppi.jeluchu.xyz/res/directory/2170.jpg", "type": "OVA", "genres": [ @@ -37236,7 +37236,7 @@ { "id": "kamisama-hajimemashita-kako-hen", "title": "Kamisama Hajimemashita: Kako-hen", - "mal_title": "Kamisama Hajimemashita: Kako-hen", + "mal_id": 30709, "poster": "https://aruppi.jeluchu.xyz/res/directory/2171.jpg", "type": "OVA", "genres": [ @@ -37255,7 +37255,7 @@ { "id": "one-punch-man", "title": "One Punch Man", - "mal_title": "One Punch Man", + "mal_id": 30276, "poster": "https://aruppi.jeluchu.xyz/res/directory/2172.jpg", "type": "Anime", "genres": [ @@ -37275,7 +37275,7 @@ { "id": "taifuu-no-noruda", "title": "Taifuu no Noruda", - "mal_title": "Taifuu no Noruda", + "mal_id": 30585, "poster": "https://aruppi.jeluchu.xyz/res/directory/2173.jpg", "type": "Película", "genres": [ @@ -37292,7 +37292,7 @@ { "id": "hyakka-ryouran-samurai-bride-specials", "title": "Hyakka Ryouran: Samurai Bride Specials", - "mal_title": "Hyakka Ryouran: Samurai Bride Specials", + "mal_id": 19255, "poster": "https://aruppi.jeluchu.xyz/res/directory/2174.jpg", "type": "OVA", "genres": [ @@ -37307,7 +37307,7 @@ { "id": "dakara-boku-wa-h-ga-dekinai-ova", "title": "Dakara Boku wa, H ga Dekinai Ova", - "mal_title": "Dakara Boku wa, H ga Dekinai Ova", + "mal_id": 12549, "poster": "https://aruppi.jeluchu.xyz/res/directory/2175.jpg", "type": "OVA", "genres": [ @@ -37323,7 +37323,7 @@ { "id": "queens-blade-vanquished-specials", "title": "Queen's Blade: Vanquished Specials", - "mal_title": "Queen's Blade: Vanquished Specials", + "mal_id": 12065, "poster": "https://aruppi.jeluchu.xyz/res/directory/2176.jpg", "type": "OVA", "genres": [ @@ -37337,7 +37337,7 @@ { "id": "hakuouki-movie-2-shikon-soukyuu", "title": "Hakuouki Movie 2: Shikon Soukyuu", - "mal_title": "Hakuouki Movie 2: Shikon Soukyuu", + "mal_id": 13119, "poster": "https://aruppi.jeluchu.xyz/res/directory/2177.jpg", "type": "Película", "genres": [ @@ -37356,7 +37356,7 @@ { "id": "akatsuki-no-yona-ova", "title": "Akatsuki no Yona Ova", - "mal_title": "Akatsuki no Yona Ova", + "mal_id": 30370, "poster": "https://aruppi.jeluchu.xyz/res/directory/2178.jpg", "type": "OVA", "genres": [ @@ -37373,7 +37373,7 @@ { "id": "kamisama-minarai-himitsu-no-cocotama", "title": "Kamisama Minarai: Himitsu no Cocotama", - "mal_title": "Kamisama Minarai: Himitsu no Cocotama", + "mal_id": 31044, "poster": "https://aruppi.jeluchu.xyz/res/directory/2179.jpg", "type": "Anime", "genres": [ @@ -37389,7 +37389,7 @@ { "id": "lance-n-masques", "title": "Lance N' Masques", - "mal_title": "Lance N' Masques", + "mal_id": 24011, "poster": "https://aruppi.jeluchu.xyz/res/directory/2180.jpg", "type": "Anime", "genres": [ @@ -37403,7 +37403,7 @@ { "id": "young-black-jack", "title": "Young Black Jack", - "mal_title": "Young Black Jack", + "mal_id": 30740, "poster": "https://aruppi.jeluchu.xyz/res/directory/2181.jpg", "type": "Anime", "genres": [ @@ -37419,7 +37419,7 @@ { "id": "heavy-object", "title": "Heavy Object", - "mal_title": "Heavy Object", + "mal_id": 27829, "poster": "https://aruppi.jeluchu.xyz/res/directory/2182.jpg", "type": "Anime", "genres": [ @@ -37436,7 +37436,7 @@ { "id": "noragami-aragoto", "title": "Noragami Aragoto", - "mal_title": "Noragami Aragoto", + "mal_id": 30503, "poster": "https://aruppi.jeluchu.xyz/res/directory/2183.jpg", "type": "Anime", "genres": [ @@ -37453,7 +37453,7 @@ { "id": "gakusen-toshi-asterisk", "title": "Gakusen Toshi Asterisk", - "mal_title": "Gakusen Toshi Asterisk", + "mal_id": 30544, "poster": "https://aruppi.jeluchu.xyz/res/directory/2184.jpg", "type": "Anime", "genres": [ @@ -37475,7 +37475,7 @@ { "id": "rakudai-kishi-no-cavalry", "title": "Rakudai Kishi no Cavalry", - "mal_title": "Rakudai Kishi no Cavalry", + "mal_id": 30296, "poster": "https://aruppi.jeluchu.xyz/res/directory/2185.jpg", "type": "Anime", "genres": [ @@ -37493,7 +37493,7 @@ { "id": "owarimonogatari", "title": "Owarimonogatari", - "mal_title": "Owarimonogatari", + "mal_id": 31181, "poster": "https://aruppi.jeluchu.xyz/res/directory/2186.jpg", "type": "Anime", "genres": [ @@ -37509,7 +37509,7 @@ { "id": "utawarerumono-itsuwari-no-kamen", "title": "Utawarerumono: Itsuwari no Kamen", - "mal_title": "Utawarerumono: Itsuwari no Kamen", + "mal_id": 30901, "poster": "https://aruppi.jeluchu.xyz/res/directory/2187.jpg", "type": "Anime", "genres": [ @@ -37525,7 +37525,7 @@ { "id": "k-return-of-kings", "title": "K: Return of Kings", - "mal_title": "K: Return of Kings", + "mal_id": 27991, "poster": "https://aruppi.jeluchu.xyz/res/directory/2188.jpg", "type": "Anime", "genres": [ @@ -37541,7 +37541,7 @@ { "id": "shingeki-kyojin-chuugakkou", "title": "Shingeki! Kyojin Chuugakkou", - "mal_title": "Shingeki! Kyojin Chuugakkou", + "mal_id": 31374, "poster": "https://aruppi.jeluchu.xyz/res/directory/2189.jpg", "type": "Anime", "genres": [ @@ -37558,7 +37558,7 @@ { "id": "haikyuu-second-season", "title": "Haikyuu!! Second Season", - "mal_title": "Haikyuu!! Second Season", + "mal_id": 28891, "poster": "https://aruppi.jeluchu.xyz/res/directory/2190.jpg", "type": "Anime", "genres": [ @@ -37576,7 +37576,7 @@ { "id": "mobile-suit-gundam-iron-blooded-orphans", "title": "Kidou Senshi Gundam: Tekketsu no Orphans", - "mal_title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "mal_id": 31251, "poster": "https://aruppi.jeluchu.xyz/res/directory/2191.jpg", "type": "Anime", "genres": [ @@ -37594,7 +37594,7 @@ { "id": "comet-lucifer", "title": "Comet Lucifer", - "mal_title": "Comet Lucifer", + "mal_id": 31318, "poster": "https://aruppi.jeluchu.xyz/res/directory/2192.jpg", "type": "Anime", "genres": [ @@ -37611,7 +37611,7 @@ { "id": "concrete-revolutio-choujin-gensou", "title": "Concrete Revolutio: Choujin Gensou", - "mal_title": "Concrete Revolutio: Choujin Gensou", + "mal_id": 31147, "poster": "https://aruppi.jeluchu.xyz/res/directory/2193.jpg", "type": "Anime", "genres": [ @@ -37632,7 +37632,7 @@ { "id": "high-school-star-musical", "title": "Starmyu", - "mal_title": "Starmyu", + "mal_id": 30375, "poster": "https://aruppi.jeluchu.xyz/res/directory/2194.jpg", "type": "Anime", "genres": [ @@ -37648,7 +37648,7 @@ { "id": "hidan-no-aria-aa", "title": "Hidan no Aria AA", - "mal_title": "Hidan no Aria AA", + "mal_id": 28883, "poster": "https://aruppi.jeluchu.xyz/res/directory/2195.jpg", "type": "Anime", "genres": [ @@ -37664,7 +37664,7 @@ { "id": "hokuto-no-ken-ichigo-aji", "title": "Hokuto no Ken: Ichigo Aji", - "mal_title": "Hokuto no Ken: Ichigo Aji", + "mal_id": 31018, "poster": "https://aruppi.jeluchu.xyz/res/directory/2196.jpg", "type": "Anime", "genres": [ @@ -37681,7 +37681,7 @@ { "id": "dance-with-devils", "title": "Dance with Devils", - "mal_title": "Dance with Devils", + "mal_id": 29976, "poster": "https://aruppi.jeluchu.xyz/res/directory/2197.jpg", "type": "Anime", "genres": [ @@ -37699,7 +37699,7 @@ { "id": "ore-ga-ojousama-gakkou-ni-shomin-sample-toshite-gets-sareta", "title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", - "mal_title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", + "mal_id": 25099, "poster": "https://aruppi.jeluchu.xyz/res/directory/2198.jpg", "type": "Anime", "genres": [ @@ -37717,7 +37717,7 @@ { "id": "sakurako-san-no-ashimoto-ni-wa-shitai-ga-umatteiru", "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", - "mal_title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "mal_id": 30187, "poster": "https://aruppi.jeluchu.xyz/res/directory/2199.jpg", "type": "Anime", "genres": [ @@ -37731,7 +37731,7 @@ { "id": "taimadou-gakuen-35-shiken-shoutai", "title": "Taimadou Gakuen 35 Shiken Shoutai", - "mal_title": "Taimadou Gakuen 35 Shiken Shoutai", + "mal_id": 24133, "poster": "https://aruppi.jeluchu.xyz/res/directory/2200.jpg", "type": "Anime", "genres": [ @@ -37751,7 +37751,7 @@ { "id": "subete-ga-f-ni-naru-the-perfect-insider", "title": "Subete ga F ni Naru: The Perfect Insider", - "mal_title": "Subete ga F ni Naru: The Perfect Insider", + "mal_id": 28621, "poster": "https://aruppi.jeluchu.xyz/res/directory/2201.jpg", "type": "Anime", "genres": [ @@ -37767,7 +37767,7 @@ { "id": "garo-guren-no-tsuki", "title": "Garo: Guren no Tsuki", - "mal_title": "Garo: Guren no Tsuki", + "mal_id": 28537, "poster": "https://aruppi.jeluchu.xyz/res/directory/2202.jpg", "type": "Anime", "genres": [ @@ -37785,7 +37785,7 @@ { "id": "shinmai-maou-no-testament-burst", "title": "Shinmai Maou no Testament Burst", - "mal_title": "Shinmai Maou no Testament Burst", + "mal_id": 30363, "poster": "https://aruppi.jeluchu.xyz/res/directory/2203.jpg", "type": "Anime", "genres": [ @@ -37804,7 +37804,7 @@ { "id": "owari-no-seraph-nagoya-kessen-hen", "title": "Owari no Seraph: Nagoya Kessen-hen", - "mal_title": "Owari no Seraph: Nagoya Kessen-hen", + "mal_id": 28927, "poster": "https://aruppi.jeluchu.xyz/res/directory/2204.jpg", "type": "Anime", "genres": [ @@ -37822,7 +37822,7 @@ { "id": "valkyrie-drive-mermaid", "title": "Valkyrie Drive: Mermaid", - "mal_title": "Valkyrie Drive: Mermaid", + "mal_id": 30385, "poster": "https://aruppi.jeluchu.xyz/res/directory/2205.jpg", "type": "Anime", "genres": [ @@ -37839,7 +37839,7 @@ { "id": "cardfight-vanguard-g-gears-crisis-hen", "title": "Cardfight!! Vanguard G: Gears Crisis-hen", - "mal_title": "Cardfight!! Vanguard G: Gears Crisis-hen", + "mal_id": 31196, "poster": "https://aruppi.jeluchu.xyz/res/directory/2206.jpg", "type": "Anime", "genres": [ @@ -37855,7 +37855,7 @@ { "id": "pokemon-xy-z", "title": "Pokemon XY&Z", - "mal_title": "Pokemon XY&Z", + "mal_id": 19291, "poster": "https://aruppi.jeluchu.xyz/res/directory/2207.jpg", "type": "Anime", "genres": [ @@ -37873,7 +37873,7 @@ { "id": "aikatsu-4", "title": "Aikatsu! 4", - "mal_title": "Aikatsu! 4", + "mal_id": 15061, "poster": "https://aruppi.jeluchu.xyz/res/directory/2208.jpg", "type": "Anime", "genres": [ @@ -37890,7 +37890,7 @@ { "id": "miss-monochrome-the-animation-3", "title": "Miss Monochrome: The Animation 3", - "mal_title": "Miss Monochrome: The Animation 3", + "mal_id": 31560, "poster": "https://aruppi.jeluchu.xyz/res/directory/2209.jpg", "type": "Anime", "genres": [ @@ -37906,7 +37906,7 @@ { "id": "hacka-doll-the-animation", "title": "Hacka Doll The Animation", - "mal_title": "Hacka Doll The Animation", + "mal_id": 30721, "poster": "https://aruppi.jeluchu.xyz/res/directory/2210.jpg", "type": "Anime", "genres": [ @@ -37921,7 +37921,7 @@ { "id": "kagewani", "title": "Kagewani", - "mal_title": "Kagewani", + "mal_id": 30524, "poster": "https://aruppi.jeluchu.xyz/res/directory/2211.jpg", "type": "Anime", "genres": [ @@ -37938,7 +37938,7 @@ { "id": "ame-iro-cocoa-rainy-color-e-youkoso", "title": "Ame-iro Cocoa: Rainy Color e Youkoso!", - "mal_title": "Ame-iro Cocoa: Rainy Color e Youkoso!", + "mal_id": 31139, "poster": "https://aruppi.jeluchu.xyz/res/directory/2212.jpg", "type": "Anime", "genres": [ @@ -37953,7 +37953,7 @@ { "id": "onsen-yousei-hakone-chan", "title": "Onsen Yousei Hakone-chan", - "mal_title": "Onsen Yousei Hakone-chan", + "mal_id": 31143, "poster": "https://aruppi.jeluchu.xyz/res/directory/2213.jpg", "type": "Anime", "genres": [ @@ -37969,7 +37969,7 @@ { "id": "komori-san-wa-kotowarenai", "title": "Komori-san wa Kotowarenai!", - "mal_title": "Komori-san wa Kotowarenai!", + "mal_id": 31091, "poster": "https://aruppi.jeluchu.xyz/res/directory/2214.jpg", "type": "Anime", "genres": [ @@ -37985,7 +37985,7 @@ { "id": "jk-meshi", "title": "JK Meshi!", - "mal_title": "JK Meshi!", + "mal_id": 31578, "poster": "https://aruppi.jeluchu.xyz/res/directory/2215.jpg", "type": "Anime", "genres": [ @@ -37999,7 +37999,7 @@ { "id": "teekyuu-6", "title": "Teekyuu 6", - "mal_title": "Teekyuu 6", + "mal_id": 31440, "poster": "https://aruppi.jeluchu.xyz/res/directory/2216.jpg", "type": "Anime", "genres": [ @@ -38015,7 +38015,7 @@ { "id": "tantei-team-kz-jiken-note", "title": "Tantei Team KZ Jiken Note", - "mal_title": "Tantei Team KZ Jiken Note", + "mal_id": 31221, "poster": "https://aruppi.jeluchu.xyz/res/directory/2217.jpg", "type": "Anime", "genres": [ @@ -38030,7 +38030,7 @@ { "id": "fushigi-na-somera-chan", "title": "Fushigi na Somera-chan", - "mal_title": "Fushigi na Somera-chan", + "mal_id": 33659, "poster": "https://aruppi.jeluchu.xyz/res/directory/2218.jpg", "type": "Anime", "genres": [ @@ -38046,7 +38046,7 @@ { "id": "urusei-yatsura-haru-da-tobidase", "title": "Urusei Yatsura: Haru da, Tobidase!", - "mal_title": "Urusei Yatsura: Haru da, Tobidase!", + "mal_id": 1481, "poster": "https://aruppi.jeluchu.xyz/res/directory/2219.jpg", "type": "OVA", "genres": [ @@ -38065,7 +38065,7 @@ { "id": "urusei-yatsura-ova", "title": "Urusei Yatsura OVA", - "mal_title": "Urusei Yatsura OVA", + "mal_id": 1919, "poster": "https://aruppi.jeluchu.xyz/res/directory/2220.jpg", "type": "OVA", "genres": [ @@ -38081,7 +38081,7 @@ { "id": "otome-nadeshiko-koi-techou", "title": "Otome Nadeshiko Koi Techou", - "mal_title": "Otome Nadeshiko Koi Techou", + "mal_id": 13673, "poster": "https://aruppi.jeluchu.xyz/res/directory/2221.jpg", "type": "OVA", "genres": [ @@ -38096,7 +38096,7 @@ { "id": "urusei-yatsura-the-shougaibutsu-suieitaikai", "title": "Urusei Yatsura: The Shougaibutsu Suieitaikai", - "mal_title": "Urusei Yatsura: The Shougaibutsu Suieitaikai", + "mal_id": 6567, "poster": "https://aruppi.jeluchu.xyz/res/directory/2222.jpg", "type": "OVA", "genres": [ @@ -38114,7 +38114,7 @@ { "id": "zettai-junpaku-mahou-shoujo", "title": "Zettai Junpaku: Mahou Shoujo", - "mal_title": "Zettai Junpaku: Mahou Shoujo", + "mal_id": 16656, "poster": "https://aruppi.jeluchu.xyz/res/directory/2223.jpg", "type": "OVA", "genres": [ @@ -38131,7 +38131,7 @@ { "id": "ginga-eyuu-densetsu-gaiden-ougon-no-tsubasa", "title": "Ginga Eiyuu Densetsu Gaiden: Ougon no Tsubasa", - "mal_title": "Ginga Eiyuu Densetsu Gaiden: Ougon no Tsubasa", + "mal_id": 3015, "poster": "https://aruppi.jeluchu.xyz/res/directory/2224.jpg", "type": "Película", "genres": [ @@ -38150,7 +38150,7 @@ { "id": "ginga-eiyuu-densetsu-waga-yuku-wa-hoshi-no-taikai", "title": "Ginga Eiyuu Densetsu: Waga Yuku wa Hoshi no Taikai", - "mal_title": "Ginga Eiyuu Densetsu: Waga Yuku wa Hoshi no Taikai", + "mal_id": 3014, "poster": "https://aruppi.jeluchu.xyz/res/directory/2225.jpg", "type": "Película", "genres": [ @@ -38168,7 +38168,7 @@ { "id": "ginga-eiyuu-densetsu-arata-naru-tatakai-no-overture", "title": "Ginga Eiyuu Densetsu: Arata Naru Tatakai no Overture", - "mal_title": "Ginga Eiyuu Densetsu: Arata Naru Tatakai no Overture", + "mal_id": 3016, "poster": "https://aruppi.jeluchu.xyz/res/directory/2226.jpg", "type": "Película", "genres": [ @@ -38186,7 +38186,7 @@ { "id": "ginga-eiyuu-densetsu", "title": "Ginga Eiyuu Densetsu", - "mal_title": "Ginga Eiyuu Densetsu", + "mal_id": 820, "poster": "https://aruppi.jeluchu.xyz/res/directory/2227.jpg", "type": "Anime", "genres": [ @@ -38203,7 +38203,7 @@ { "id": "gotou-ni-naritai", "title": "Gotou ni Naritai", - "mal_title": "Gotou ni Naritai", + "mal_id": 8120, "poster": "https://aruppi.jeluchu.xyz/res/directory/2228.jpg", "type": "Película", "genres": [ @@ -38219,7 +38219,7 @@ { "id": "chirin-no-suzu", "title": "Chirin no Suzu", - "mal_title": "Chirin no Suzu", + "mal_id": 2199, "poster": "https://aruppi.jeluchu.xyz/res/directory/2229.jpg", "type": "Película", "genres": [ @@ -38235,7 +38235,7 @@ { "id": "ichigeki-sacchuu-hoihoi-san", "title": "Ichigeki Sacchuu!! Hoihoi-san", - "mal_title": "Ichigeki Sacchuu!! Hoihoi-san", + "mal_id": 932, "poster": "https://aruppi.jeluchu.xyz/res/directory/2230.jpg", "type": "OVA", "genres": [ @@ -38251,7 +38251,7 @@ { "id": "kamikaze-kaitou-jeanne", "title": "Kamikaze Kaitou Jeanne", - "mal_title": "Kamikaze Kaitou Jeanne", + "mal_id": 142, "poster": "https://aruppi.jeluchu.xyz/res/directory/2231.jpg", "type": "Anime", "genres": [ @@ -38273,7 +38273,7 @@ { "id": "flcl", "title": "FLCL", - "mal_title": "FLCL", + "mal_id": 227, "poster": "https://aruppi.jeluchu.xyz/res/directory/2232.jpg", "type": "OVA", "genres": [ @@ -38292,7 +38292,7 @@ { "id": "soukyuu-no-fafner-dead-aggressor-exodus-2", "title": "Soukyuu no Fafner: Dead Aggressor - Exodus 2", - "mal_title": "Soukyuu no Fafner: Dead Aggressor - Exodus 2", + "mal_id": 30549, "poster": "https://aruppi.jeluchu.xyz/res/directory/2233.jpg", "type": "Anime", "genres": [ @@ -38310,7 +38310,7 @@ { "id": "kindaichi-shounen-no-likenbo-returns-2", "title": "Kindaichi Shounen no Jikenbo Returns 2", - "mal_title": "Kindaichi Shounen no Jikenbo Returns 2", + "mal_id": 31227, "poster": "https://aruppi.jeluchu.xyz/res/directory/2234.jpg", "type": "Anime", "genres": [ @@ -38325,7 +38325,7 @@ { "id": "osomatsu-san", "title": "Osomatsu-san", - "mal_title": "Osomatsu-san", + "mal_id": 31174, "poster": "https://aruppi.jeluchu.xyz/res/directory/2235.jpg", "type": "Anime", "genres": [ @@ -38340,7 +38340,7 @@ { "id": "yuru-yuri-san-hai", "title": "Yuru Yuri San☆Hai!", - "mal_title": "Yuru Yuri San☆Hai!", + "mal_id": 30279, "poster": "https://aruppi.jeluchu.xyz/res/directory/2236.jpg", "type": "Anime", "genres": [ @@ -38357,7 +38357,7 @@ { "id": "kowabon", "title": "Kowabon", - "mal_title": "Kowabon", + "mal_id": 30948, "poster": "https://aruppi.jeluchu.xyz/res/directory/2237.jpg", "type": "Anime", "genres": [ @@ -38371,7 +38371,7 @@ { "id": "tokyo-ghoul-jack", "title": "Tokyo Ghoul: Jack", - "mal_title": "Tokyo Ghoul: Jack", + "mal_id": 30458, "poster": "https://aruppi.jeluchu.xyz/res/directory/2238.jpg", "type": "OVA", "genres": [ @@ -38390,7 +38390,7 @@ { "id": "hantsu-x-trash", "title": "Hantsu x Trash", - "mal_title": "Hantsu x Trash", + "mal_id": 31491, "poster": "https://aruppi.jeluchu.xyz/res/directory/2239.jpg", "type": "OVA", "genres": [ @@ -38409,7 +38409,7 @@ { "id": "gochuumon-wa-usagi-desu-ka-2", "title": "Gochuumon wa Usagi Desu ka? 2", - "mal_title": "Gochuumon wa Usagi Desu ka? 2", + "mal_id": 29787, "poster": "https://aruppi.jeluchu.xyz/res/directory/2240.jpg", "type": "Anime", "genres": [ @@ -38424,7 +38424,7 @@ { "id": "kyoukai-no-kanata-movie-ill-be-here-mirai-hen", "title": "Kyoukai no Kanata Movie: I'll Be Here - Mirai-hen", - "mal_title": "Kyoukai no Kanata Movie: I'll Be Here - Mirai-hen", + "mal_id": 28675, "poster": "https://aruppi.jeluchu.xyz/res/directory/2241.jpg", "type": "Película", "genres": [ @@ -38440,7 +38440,7 @@ { "id": "un-go-inga-ron", "title": "UN-GO: Inga-ron", - "mal_title": "UN-GO: Inga-ron", + "mal_id": 11531, "poster": "https://aruppi.jeluchu.xyz/res/directory/2242.jpg", "type": "Película", "genres": [ @@ -38455,7 +38455,7 @@ { "id": "fate-stay-night-unlimited-blade-works-tv-2nd-season-sunny-da", "title": "Fate/stay night: Unlimited Blade Works (TV) 2nd Season - Sunny Day", - "mal_title": "Fate/stay night: Unlimited Blade Works (TV) 2nd Season - Sunny Day", + "mal_id": 28701, "poster": "https://aruppi.jeluchu.xyz/res/directory/2243.jpg", "type": "OVA", "genres": [ @@ -38473,7 +38473,7 @@ { "id": "brave-beats", "title": "Brave Beats", - "mal_title": "Brave Beats", + "mal_id": 31573, "poster": "https://aruppi.jeluchu.xyz/res/directory/2244.jpg", "type": "Anime", "genres": [ @@ -38488,7 +38488,7 @@ { "id": "anitore-ex", "title": "Anitore! EX", - "mal_title": "Anitore! EX", + "mal_id": 31519, "poster": "https://aruppi.jeluchu.xyz/res/directory/2245.jpg", "type": "Anime", "genres": [ @@ -38503,7 +38503,7 @@ { "id": "detective-conan-movie-19", "title": "Detective Conan Movie 19: The Hellfire Sunflowers", - "mal_title": "Detective Conan Movie 19: The Hellfire Sunflowers", + "mal_id": 28479, "poster": "https://aruppi.jeluchu.xyz/res/directory/2246.jpg", "type": "Película", "genres": [ @@ -38520,7 +38520,7 @@ { "id": "mutsu-enmei-ryuu-gaiden-shura-no-toki", "title": "Mutsu Enmei Ryuu Gaiden: Shura no Toki", - "mal_title": "Mutsu Enmei Ryuu Gaiden: Shura no Toki", + "mal_id": 340, "poster": "https://aruppi.jeluchu.xyz/res/directory/2247.jpg", "type": "Anime", "genres": [ @@ -38538,7 +38538,7 @@ { "id": "utawarerumono", "title": "Utawarerumono", - "mal_title": "Utawarerumono", + "mal_id": 856, "poster": "https://aruppi.jeluchu.xyz/res/directory/2248.jpg", "type": "Anime", "genres": [ @@ -38555,7 +38555,7 @@ { "id": "mushishi-zoku-shou-suzu-no-shizuku", "title": "Mushishi Zoku Shou: Suzu no Shizuku", - "mal_title": "Mushishi Zoku Shou: Suzu no Shizuku", + "mal_id": 28957, "poster": "https://aruppi.jeluchu.xyz/res/directory/2249.jpg", "type": "Película", "genres": [ @@ -38575,7 +38575,7 @@ { "id": "utawarerumono-ova", "title": "Utawarerumono OVA", - "mal_title": "Utawarerumono OVA", + "mal_id": 3593, "poster": "https://aruppi.jeluchu.xyz/res/directory/2250.jpg", "type": "OVA", "genres": [ @@ -38591,7 +38591,7 @@ { "id": "harukanaru-toki-no-naka-de-hachiyou-shou", "title": "Harukanaru Toki no Naka de: Hachiyou Shou", - "mal_title": "Harukanaru Toki no Naka de: Hachiyou Shou", + "mal_id": 247, "poster": "https://aruppi.jeluchu.xyz/res/directory/2251.jpg", "type": "Anime", "genres": [ @@ -38610,7 +38610,7 @@ { "id": "umezu-kazuo-no-noroi", "title": "Umezu Kazuo no Noroi", - "mal_title": "Umezu Kazuo no Noroi", + "mal_id": 6276, "poster": "https://aruppi.jeluchu.xyz/res/directory/2252.jpg", "type": "OVA", "genres": [ @@ -38624,7 +38624,7 @@ { "id": "nagato-yuki-chan-no-shoushitsu-ova", "title": "Nagato Yuki-chan no Shoushitsu OVA", - "mal_title": "Nagato Yuki-chan no Shoushitsu OVA", + "mal_id": 26351, "poster": "https://aruppi.jeluchu.xyz/res/directory/2253.jpg", "type": "OVA", "genres": [ @@ -38640,7 +38640,7 @@ { "id": "battle-athletess-daiundoukai-tv", "title": "Battle Athletess Daiundoukai (TV)", - "mal_title": "Battle Athletess Daiundoukai (TV)", + "mal_id": 1186, "poster": "https://aruppi.jeluchu.xyz/res/directory/2254.jpg", "type": "Anime", "genres": [ @@ -38661,7 +38661,7 @@ { "id": "ghost-in-the-shell-2015", "title": "Ghost in the Shell (2015)", - "mal_title": "Ghost in the Shell (2015)", + "mal_id": 27411, "poster": "https://aruppi.jeluchu.xyz/res/directory/2255.jpg", "type": "Película", "genres": [ @@ -38679,7 +38679,7 @@ { "id": "shion-no-ou", "title": "Shion no Ou", - "mal_title": "Shion no Ou", + "mal_id": 2562, "poster": "https://aruppi.jeluchu.xyz/res/directory/2256.jpg", "type": "Anime", "genres": [ @@ -38696,7 +38696,7 @@ { "id": "triage-x-ova", "title": "Triage X OVA", - "mal_title": "Triage X OVA", + "mal_id": 30250, "poster": "https://aruppi.jeluchu.xyz/res/directory/2257.jpg", "type": "OVA", "genres": [ @@ -38713,7 +38713,7 @@ { "id": "cowboy-bebop-tengoku-no-obira", "title": "Cowboy Bebop: Tengoku no Tobira", - "mal_title": "Cowboy Bebop: Tengoku no Tobira", + "mal_id": 5, "poster": "https://aruppi.jeluchu.xyz/res/directory/2258.jpg", "type": "Película", "genres": [ @@ -38731,7 +38731,7 @@ { "id": "saraiya-goyou", "title": "Saraiya Goyou", - "mal_title": "Saraiya Goyou", + "mal_id": 7588, "poster": "https://aruppi.jeluchu.xyz/res/directory/2259.jpg", "type": "Anime", "genres": [ @@ -38747,7 +38747,7 @@ { "id": "saishuu-shiken-kujira", "title": "Saishuu Shiken Kujira", - "mal_title": "Saishuu Shiken Kujira", + "mal_id": 2967, "poster": "https://aruppi.jeluchu.xyz/res/directory/2260.jpg", "type": "OVA", "genres": [ @@ -38765,7 +38765,7 @@ { "id": "saishuu-shiken-kujira-progressive", "title": "Saishuu Shiken Kujira Progressive", - "mal_title": "Saishuu Shiken Kujira Progressive", + "mal_id": 4213, "poster": "https://aruppi.jeluchu.xyz/res/directory/2261.jpg", "type": "OVA", "genres": [ @@ -38780,7 +38780,7 @@ { "id": "otogizoushi", "title": "Otogizoushi", - "mal_title": "Otogizoushi", + "mal_id": 525, "poster": "https://aruppi.jeluchu.xyz/res/directory/2262.jpg", "type": "Anime", "genres": [ @@ -38797,7 +38797,7 @@ { "id": "mahou-shoujo-tai-arusu", "title": "Mahou Shoujo-tai Arusu", - "mal_title": "Mahou Shoujo-tai Arusu", + "mal_id": 872, "poster": "https://aruppi.jeluchu.xyz/res/directory/2263.jpg", "type": "Anime", "genres": [ @@ -38814,7 +38814,7 @@ { "id": "mahou-shoujo-tai-arusu-the-adventure", "title": "Mahou Shoujo-tai Arusu the Adventure", - "mal_title": "Mahou Shoujo-tai Arusu the Adventure", + "mal_id": 3991, "poster": "https://aruppi.jeluchu.xyz/res/directory/2264.jpg", "type": "OVA", "genres": [ @@ -38831,7 +38831,7 @@ { "id": "macademi-wasshoi", "title": "Macademi Wasshoi!", - "mal_title": "Macademi Wasshoi!", + "mal_id": 3654, "poster": "https://aruppi.jeluchu.xyz/res/directory/2265.jpg", "type": "Anime", "genres": [ @@ -38850,7 +38850,7 @@ { "id": "koi-kaze", "title": "Koi Kaze", - "mal_title": "Koi Kaze", + "mal_id": 634, "poster": "https://aruppi.jeluchu.xyz/res/directory/2266.jpg", "type": "Anime", "genres": [ @@ -38867,7 +38867,7 @@ { "id": "giniro-no-olynsis-tokito", "title": "Gin'iro no Olynsis: Tokito", - "mal_title": "Gin'iro no Olynsis: Tokito", + "mal_id": 1868, "poster": "https://aruppi.jeluchu.xyz/res/directory/2267.jpg", "type": "Anime", "genres": [ @@ -38884,7 +38884,7 @@ { "id": "ginga-nagareboshi-gin", "title": "Ginga Nagareboshi Gin", - "mal_title": "Ginga Nagareboshi Gin", + "mal_id": 589, "poster": "https://aruppi.jeluchu.xyz/res/directory/2268.jpg", "type": "Anime", "genres": [ @@ -38901,7 +38901,7 @@ { "id": "ginga-densetsu-weed", "title": "Ginga Densetsu Weed", - "mal_title": "Ginga Densetsu Weed", + "mal_id": 915, "poster": "https://aruppi.jeluchu.xyz/res/directory/2269.jpg", "type": "Anime", "genres": [ @@ -38917,7 +38917,7 @@ { "id": "gakuen-utopia-manabi-straight", "title": "Gakuen Utopia Manabi Straight!", - "mal_title": "Gakuen Utopia Manabi Straight!", + "mal_id": 1858, "poster": "https://aruppi.jeluchu.xyz/res/directory/2270.jpg", "type": "Anime", "genres": [ @@ -38933,7 +38933,7 @@ { "id": "gakuen-utopia-manabi-straight-special", "title": "Gakuen Utopia Manabi Straight! Special", - "mal_title": "Gakuen Utopia Manabi Straight! Special", + "mal_id": 1858, "poster": "https://aruppi.jeluchu.xyz/res/directory/2271.jpg", "type": "OVA", "genres": [ @@ -38950,7 +38950,7 @@ { "id": "flag", "title": "Flag", - "mal_title": "Flag", + "mal_id": 1299, "poster": "https://aruppi.jeluchu.xyz/res/directory/2272.jpg", "type": "Anime", "genres": [ @@ -38965,7 +38965,7 @@ { "id": "yamato-takeru", "title": "Yamato Takeru", - "mal_title": "Yamato Takeru", + "mal_id": 4773, "poster": "https://aruppi.jeluchu.xyz/res/directory/2273.jpg", "type": "Anime", "genres": [ @@ -38986,7 +38986,7 @@ { "id": "yamato-takeru-after-war", "title": "Yamato Takeru: After War", - "mal_title": "Yamato Takeru: After War", + "mal_id": 9376, "poster": "https://aruppi.jeluchu.xyz/res/directory/2274.jpg", "type": "OVA", "genres": [ @@ -39007,7 +39007,7 @@ { "id": "uchuu-no-stellvia", "title": "Uchuu no Stellvia", - "mal_title": "Uchuu no Stellvia", + "mal_id": 113, "poster": "https://aruppi.jeluchu.xyz/res/directory/2275.jpg", "type": "Anime", "genres": [ @@ -39024,7 +39024,7 @@ { "id": "utawarerumono-specials", "title": "Utawarerumono Specials", - "mal_title": "Utawarerumono Specials", + "mal_id": 1830, "poster": "https://aruppi.jeluchu.xyz/res/directory/2276.jpg", "type": "OVA", "genres": [ @@ -39041,7 +39041,7 @@ { "id": "kino-no-tabi-nanika-wo-suru-tame-ni-life-goes-on", "title": "Kino no Tabi: Nanika wo Suru Tame ni - Life Goes On", - "mal_title": "Kino no Tabi: Nanika wo Suru Tame ni - Life Goes On", + "mal_id": 1379, "poster": "https://aruppi.jeluchu.xyz/res/directory/2277.jpg", "type": "OVA", "genres": [ @@ -39057,7 +39057,7 @@ { "id": "kino-no-tabi-the-beautiful-world-byouki-no-kuni-for-you", "title": "Kino no Tabi: The Beautiful World - Byouki no Kuni: For You", - "mal_title": "Kino no Tabi: The Beautiful World - Byouki no Kuni: For You", + "mal_id": 2175, "poster": "https://aruppi.jeluchu.xyz/res/directory/2278.jpg", "type": "Película", "genres": [ @@ -39073,7 +39073,7 @@ { "id": "kino-no-tabi-the-beautiful-world-tou-no-kuni", "title": "Kino no Tabi: The Beautiful World - Tou no Kuni", - "mal_title": "Kino no Tabi: The Beautiful World - Tou no Kuni", + "mal_id": 3466, "poster": "https://aruppi.jeluchu.xyz/res/directory/2279.jpg", "type": "OVA", "genres": [ @@ -39089,7 +39089,7 @@ { "id": "ayashi-no-ceres", "title": "Ayashi no Ceres", - "mal_title": "Ayashi no Ceres", + "mal_id": 104, "poster": "https://aruppi.jeluchu.xyz/res/directory/2280.jpg", "type": "Anime", "genres": [ @@ -39110,7 +39110,7 @@ { "id": "pokemon-diamond-pearl", "title": "Pokemon Diamond & Pearl", - "mal_title": "Pokemon Diamond & Pearl", + "mal_id": 1565, "poster": "https://aruppi.jeluchu.xyz/res/directory/2281.jpg", "type": "Anime", "genres": [ @@ -39128,7 +39128,7 @@ { "id": "noragami-aragoto-ova", "title": "Noragami Aragoto OVA", - "mal_title": "Noragami Aragoto OVA", + "mal_id": 30885, "poster": "https://aruppi.jeluchu.xyz/res/directory/2282.jpg", "type": "OVA", "genres": [ @@ -39144,7 +39144,7 @@ { "id": "gintama-jump-festa-2015-special", "title": "Gintama: Jump Festa 2015 Special", - "mal_title": "Gintama: Jump Festa 2015 Special", + "mal_id": 32122, "poster": "https://aruppi.jeluchu.xyz/res/directory/2283.jpg", "type": "OVA", "genres": [ @@ -39163,7 +39163,7 @@ { "id": "strike-the-blood-valkyria-no-oukoku-hen", "title": "Strike the Blood: Valkyria no Oukoku-hen", - "mal_title": "Strike the Blood: Valkyria no Oukoku-hen", + "mal_id": 30321, "poster": "https://aruppi.jeluchu.xyz/res/directory/2284.jpg", "type": "OVA", "genres": [ @@ -39183,7 +39183,7 @@ { "id": "one-punch-man-road-to-hero", "title": "One Punch Man: Road to Hero", - "mal_title": "One Punch Man: Road to Hero", + "mal_id": 31704, "poster": "https://aruppi.jeluchu.xyz/res/directory/2285.jpg", "type": "OVA", "genres": [ @@ -39203,7 +39203,7 @@ { "id": "high-school-dxd-born-yomigaerarenai-pheonix", "title": "High School DxD BorN: Yomigaerarenai Pheonix", - "mal_title": "High School DxD BorN: Yomigaerarenai Pheonix", + "mal_id": 32215, "poster": "https://aruppi.jeluchu.xyz/res/directory/2286.jpg", "type": "OVA", "genres": [ @@ -39223,7 +39223,7 @@ { "id": "shin-gekijouban-initial-d-legend-2-tousou", "title": "Shin Gekijouban Initial D: Legend 2 - Tousou", - "mal_title": "Shin Gekijouban Initial D: Legend 2 - Tousou", + "mal_id": 28881, "poster": "https://aruppi.jeluchu.xyz/res/directory/2287.jpg", "type": "Película", "genres": [ @@ -39239,7 +39239,7 @@ { "id": "one-piece-adventure-of-nebulandia", "title": "One Piece: Adventure of Nebulandia", - "mal_title": "One Piece: Adventure of Nebulandia", + "mal_id": 32051, "poster": "https://aruppi.jeluchu.xyz/res/directory/2288.jpg", "type": "OVA", "genres": [ @@ -39258,7 +39258,7 @@ { "id": "hibike-euphonium-kakedasu-monaka", "title": "Hibike! Euphonium: Kakedasu Monaka", - "mal_title": "Hibike! Euphonium: Kakedasu Monaka", + "mal_id": 31665, "poster": "https://aruppi.jeluchu.xyz/res/directory/2289.jpg", "type": "OVA", "genres": [ @@ -39274,7 +39274,7 @@ { "id": "one-punch-man-specials", "title": "One Punch Man Specials", - "mal_title": "One Punch Man Specials", + "mal_id": 31772, "poster": "https://aruppi.jeluchu.xyz/res/directory/2290.jpg", "type": "OVA", "genres": [ @@ -39294,7 +39294,7 @@ { "id": "bikini-warriors-special", "title": "Bikini Warriors Special", - "mal_title": "Bikini Warriors Special", + "mal_id": 31283, "poster": "https://aruppi.jeluchu.xyz/res/directory/2291.jpg", "type": "OVA", "genres": [ @@ -39312,7 +39312,7 @@ { "id": "valkyrie-drive-mermaid-specials", "title": "Valkyrie Drive: Mermaid Specials", - "mal_title": "Valkyrie Drive: Mermaid Specials", + "mal_id": 31736, "poster": "https://aruppi.jeluchu.xyz/res/directory/2292.jpg", "type": "OVA", "genres": [ @@ -39329,7 +39329,7 @@ { "id": "love-live-the-school-idol-movie", "title": "Love Live! The School Idol Movie", - "mal_title": "Love Live! The School Idol Movie", + "mal_id": 24997, "poster": "https://aruppi.jeluchu.xyz/res/directory/2293.jpg", "type": "Película", "genres": [ @@ -39345,7 +39345,7 @@ { "id": "futsuu-no-joshikousei-ga-yatte-mita-ova", "title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita. Ova", - "mal_title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita. Ova", + "mal_id": 22189, "poster": "https://aruppi.jeluchu.xyz/res/directory/2294.jpg", "type": "OVA", "genres": [ @@ -39360,7 +39360,7 @@ { "id": "tokyo-ghoul-pinto", "title": "Tokyo Ghoul: \"Pinto\"", - "mal_title": "Tokyo Ghoul: \"Pinto\"", + "mal_id": 31297, "poster": "https://aruppi.jeluchu.xyz/res/directory/2295.jpg", "type": "OVA", "genres": [ @@ -39379,7 +39379,7 @@ { "id": "aoharu-x-kikanjuu-special", "title": "Aoharu x Kikanjuu Special", - "mal_title": "Aoharu x Kikanjuu Special", + "mal_id": 30205, "poster": "https://aruppi.jeluchu.xyz/res/directory/2296.jpg", "type": "OVA", "genres": [ @@ -39395,7 +39395,7 @@ { "id": "aria-the-avvenire", "title": "Aria The Avvenire", - "mal_title": "Aria The Avvenire", + "mal_id": 29893, "poster": "https://aruppi.jeluchu.xyz/res/directory/2297.jpg", "type": "OVA", "genres": [ @@ -39412,7 +39412,7 @@ { "id": "sakigake-cromartie-koukou", "title": "Sakigake!! Cromartie Koukou", - "mal_title": "Sakigake!! Cromartie Koukou", + "mal_id": 114, "poster": "https://aruppi.jeluchu.xyz/res/directory/2298.jpg", "type": "Anime", "genres": [ @@ -39428,7 +39428,7 @@ { "id": "mamoru-kun-ni-megami-no-shukufuku-wo", "title": "Mamoru-kun ni Megami no Shukufuku wo!", - "mal_title": "Mamoru-kun ni Megami no Shukufuku wo!", + "mal_id": 1588, "poster": "https://aruppi.jeluchu.xyz/res/directory/2299.jpg", "type": "Anime", "genres": [ @@ -39444,7 +39444,7 @@ { "id": "overman-king-gainer", "title": "Overman King Gainer", - "mal_title": "Overman King Gainer", + "mal_id": 1792, "poster": "https://aruppi.jeluchu.xyz/res/directory/2300.jpg", "type": "Anime", "genres": [ @@ -39462,7 +39462,7 @@ { "id": "shonan-junai-gumi", "title": "Shonan Junai Gumi!", - "mal_title": "Shonan Junai Gumi!", + "mal_id": 1913, "poster": "https://aruppi.jeluchu.xyz/res/directory/2301.jpg", "type": "OVA", "genres": [ @@ -39478,7 +39478,7 @@ { "id": "project-arms", "title": "Project ARMS", - "mal_title": "Project ARMS", + "mal_id": 1492, "poster": "https://aruppi.jeluchu.xyz/res/directory/2302.jpg", "type": "Anime", "genres": [ @@ -39494,7 +39494,7 @@ { "id": "project-arms-the-second-chapter", "title": "Project ARMS: The 2nd Chapter", - "mal_title": "Project ARMS: The 2nd Chapter", + "mal_id": 1493, "poster": "https://aruppi.jeluchu.xyz/res/directory/2303.jpg", "type": "Anime", "genres": [ @@ -39512,7 +39512,7 @@ { "id": "noein-mou-hitori-no-kimi-e", "title": "Noein: Mou Hitori no Kimi e", - "mal_title": "Noein: Mou Hitori no Kimi e", + "mal_id": 584, "poster": "https://aruppi.jeluchu.xyz/res/directory/2304.jpg", "type": "Anime", "genres": [ @@ -39529,7 +39529,7 @@ { "id": "cossette-no-shouzou", "title": "Cossette no Shouzou", - "mal_title": "Cossette no Shouzou", + "mal_id": 514, "poster": "https://aruppi.jeluchu.xyz/res/directory/2305.jpg", "type": "OVA", "genres": [ @@ -39548,7 +39548,7 @@ { "id": "mobile-suit-gundam-thunderbolt", "title": "Mobile Suit Gundam Thunderbolt", - "mal_title": "Mobile Suit Gundam Thunderbolt", + "mal_id": 31973, "poster": "https://aruppi.jeluchu.xyz/res/directory/2306.jpg", "type": "OVA", "genres": [ @@ -39567,7 +39567,7 @@ { "id": "macross-delta", "title": "Macross Δ", - "mal_title": "Macross Δ", + "mal_id": 28013, "poster": "https://aruppi.jeluchu.xyz/res/directory/2307.jpg", "type": "Anime", "genres": [ @@ -39587,7 +39587,7 @@ { "id": "luck-and-logic", "title": "Luck & Logic", - "mal_title": "Luck & Logic", + "mal_id": 32083, "poster": "https://aruppi.jeluchu.xyz/res/directory/2308.jpg", "type": "Anime", "genres": [ @@ -39602,7 +39602,7 @@ { "id": "prince-of-stride-alternative", "title": "Prince of Stride: Alternative", - "mal_title": "Prince of Stride: Alternative", + "mal_id": 31559, "poster": "https://aruppi.jeluchu.xyz/res/directory/2309.jpg", "type": "Anime", "genres": [ @@ -39616,7 +39616,7 @@ { "id": "musaigen-no-phantom-world", "title": "Musaigen no Phantom World", - "mal_title": "Musaigen no Phantom World", + "mal_id": 31442, "poster": "https://aruppi.jeluchu.xyz/res/directory/2310.jpg", "type": "Anime", "genres": [ @@ -39634,7 +39634,7 @@ { "id": "haruchika-haruta-to-chika-wa-seishun-suru", "title": "Haruchika: Haruta to Chika wa Seishun Suru", - "mal_title": "Haruchika: Haruta to Chika wa Seishun Suru", + "mal_id": 30895, "poster": "https://aruppi.jeluchu.xyz/res/directory/2311.jpg", "type": "Anime", "genres": [ @@ -39651,7 +39651,7 @@ { "id": "norn-9-norn-plus-nonet", "title": "Norn9: Norn+Nonet", - "mal_title": "Norn9: Norn+Nonet", + "mal_id": 31452, "poster": "https://aruppi.jeluchu.xyz/res/directory/2312.jpg", "type": "Anime", "genres": [ @@ -39668,7 +39668,7 @@ { "id": "active-raid-kido-kyoushuushitsu-dai-hakkei", "title": "Active Raid: Kidou Kyoushuushitsu Dai Hakkei", - "mal_title": "Active Raid: Kidou Kyoushuushitsu Dai Hakkei", + "mal_id": 31790, "poster": "https://aruppi.jeluchu.xyz/res/directory/2313.jpg", "type": "Anime", "genres": [ @@ -39685,7 +39685,7 @@ { "id": "shoujo-tachi-wa-kouya-wo-mezasu", "title": "Shoujo-tachi wa Kouya wo Mezasu", - "mal_title": "Shoujo-tachi wa Kouya wo Mezasu", + "mal_id": 31914, "poster": "https://aruppi.jeluchu.xyz/res/directory/2314.jpg", "type": "Anime", "genres": [ @@ -39699,7 +39699,7 @@ { "id": "boku-dake-ga-inai-machi", "title": "Boku dake ga Inai Machi", - "mal_title": "Boku dake ga Inai Machi", + "mal_id": 31043, "poster": "https://aruppi.jeluchu.xyz/res/directory/2315.jpg", "type": "Anime", "genres": [ @@ -39716,7 +39716,7 @@ { "id": "ansatsu-kyoushitsu-tv-2nd-season", "title": "Ansatsu Kyoushitsu (TV) 2nd Season", - "mal_title": "Ansatsu Kyoushitsu 2nd Season", + "mal_id": 30654, "poster": "https://aruppi.jeluchu.xyz/res/directory/2316.jpg", "type": "Anime", "genres": [ @@ -39733,7 +39733,7 @@ { "id": "phantasy-star-online-2-the-animation", "title": "Phantasy Star Online 2 The Animation", - "mal_title": "Phantasy Star Online 2 The Animation", + "mal_id": 31223, "poster": "https://aruppi.jeluchu.xyz/res/directory/2317.jpg", "type": "Anime", "genres": [ @@ -39750,7 +39750,7 @@ { "id": "dagashi-kashi", "title": "Dagashi Kashi", - "mal_title": "Dagashi Kashi", + "mal_id": 31636, "poster": "https://aruppi.jeluchu.xyz/res/directory/2318.jpg", "type": "Anime", "genres": [ @@ -39766,7 +39766,7 @@ { "id": "divine-gate", "title": "Divine Gate", - "mal_title": "Divine Gate", + "mal_id": 31710, "poster": "https://aruppi.jeluchu.xyz/res/directory/2319.jpg", "type": "Anime", "genres": [ @@ -39782,7 +39782,7 @@ { "id": "koukaku-no-pandora", "title": "Koukaku no Pandora", - "mal_title": "Koukaku no Pandora", + "mal_id": 32214, "poster": "https://aruppi.jeluchu.xyz/res/directory/2320.jpg", "type": "Anime", "genres": [ @@ -39799,7 +39799,7 @@ { "id": "reikenzan-hoshikuzu-tachi-no-utage", "title": "Reikenzan: Hoshikuzu-tachi no Utage", - "mal_title": "Reikenzan: Hoshikuzu-tachi no Utage", + "mal_id": 32094, "poster": "https://aruppi.jeluchu.xyz/res/directory/2321.jpg", "type": "Anime", "genres": [ @@ -39815,7 +39815,7 @@ { "id": "big-order-ova", "title": "Big Order Ova", - "mal_title": "Big Order Ova", + "mal_id": 31904, "poster": "https://aruppi.jeluchu.xyz/res/directory/2322.jpg", "type": "OVA", "genres": [ @@ -39831,7 +39831,7 @@ { "id": "gate-jieitai-kanochi-nite-kaku-tatakaeri-enryuu-hen", "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri - Enryuu-hen", - "mal_title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri - Enryuu-hen", + "mal_id": 31637, "poster": "https://aruppi.jeluchu.xyz/res/directory/2323.jpg", "type": "Anime", "genres": [ @@ -39848,7 +39848,7 @@ { "id": "bubuki-buranki", "title": "Bubuki Buranki", - "mal_title": "Bubuki Buranki", + "mal_id": 32023, "poster": "https://aruppi.jeluchu.xyz/res/directory/2324.jpg", "type": "Anime", "genres": [ @@ -39865,7 +39865,7 @@ { "id": "durararax-ketsu", "title": "Durarara!!x2 Ketsu", - "mal_title": "Durarara!!x2 Ketsu", + "mal_id": 27833, "poster": "https://aruppi.jeluchu.xyz/res/directory/2325.jpg", "type": "Anime", "genres": [ @@ -39881,7 +39881,7 @@ { "id": "nurse-witch-komugi-chan-r", "title": "Nurse Witch Komugi-chan R", - "mal_title": "Nurse Witch Komugi-chan R", + "mal_id": 31890, "poster": "https://aruppi.jeluchu.xyz/res/directory/2326.jpg", "type": "Anime", "genres": [ @@ -39897,7 +39897,7 @@ { "id": "dimension-w", "title": "Dimension W", - "mal_title": "Dimension W", + "mal_id": 31163, "poster": "https://aruppi.jeluchu.xyz/res/directory/2327.jpg", "type": "Anime", "genres": [ @@ -39913,7 +39913,7 @@ { "id": "hai-to-gensou-no-grimgar", "title": "Hai to Gensou no Grimgar", - "mal_title": "Hai to Gensou no Grimgar", + "mal_id": 31859, "poster": "https://aruppi.jeluchu.xyz/res/directory/2328.jpg", "type": "Anime", "genres": [ @@ -39930,7 +39930,7 @@ { "id": "schwarzesmarken", "title": "Schwarzesmarken", - "mal_title": "Schwarzesmarken", + "mal_id": 30806, "poster": "https://aruppi.jeluchu.xyz/res/directory/2329.jpg", "type": "Anime", "genres": [ @@ -39949,7 +39949,7 @@ { "id": "saijaku-muhai-no-bahamut", "title": "Saijaku Muhai no Bahamut", - "mal_title": "Saijaku Muhai no Bahamut", + "mal_id": 30749, "poster": "https://aruppi.jeluchu.xyz/res/directory/2330.jpg", "type": "Anime", "genres": [ @@ -39970,7 +39970,7 @@ { "id": "akagami-no-shirayuki-hime-2nd-season", "title": "Akagami no Shirayuki-hime 2nd Season", - "mal_title": "Akagami no Shirayuki-hime 2nd Season", + "mal_id": 31173, "poster": "https://aruppi.jeluchu.xyz/res/directory/2331.jpg", "type": "Anime", "genres": [ @@ -39987,7 +39987,7 @@ { "id": "ao-no-kanata-no-four-rhythm", "title": "Ao no Kanata no Four Rhythm", - "mal_title": "Ao no Kanata no Four Rhythm", + "mal_id": 28391, "poster": "https://aruppi.jeluchu.xyz/res/directory/2332.jpg", "type": "Anime", "genres": [ @@ -40004,7 +40004,7 @@ { "id": "kono-subarashii-sekai-ni-shukufuku-wo", "title": "Kono Subarashii Sekai ni Shukufuku wo!", - "mal_title": "Kono Subarashii Sekai ni Shukufuku wo!", + "mal_id": 38040, "poster": "https://aruppi.jeluchu.xyz/res/directory/2333.jpg", "type": "Anime", "genres": [ @@ -40021,7 +40021,7 @@ { "id": "ajin", "title": "Ajin", - "mal_title": "Ajin", + "mal_id": 31580, "poster": "https://aruppi.jeluchu.xyz/res/directory/2334.jpg", "type": "Anime", "genres": [ @@ -40039,7 +40039,7 @@ { "id": "pokemon-xy-odemashi-ko-majin-fuupa", "title": "Pokemon XY: Odemashi Ko Majin Fuupa", - "mal_title": "Pokemon XY: Odemashi Ko Majin Fuupa", + "mal_id": 31168, "poster": "https://aruppi.jeluchu.xyz/res/directory/2335.jpg", "type": "OVA", "genres": [ @@ -40055,7 +40055,7 @@ { "id": "pokemon-pelicula-18-el-gran-genio-de-los-anillos-hoopa", "title": "Pokemon Película 18: El gran genio de los anillos: Hoopa", - "mal_title": "Pokemon Película 18: El gran genio de los anillos: Hoopa", + "mal_id": 25805, "poster": "https://aruppi.jeluchu.xyz/res/directory/2336.jpg", "type": "Película", "genres": [ @@ -40071,7 +40071,7 @@ { "id": "akagami-no-shirayuki-hime-nandemonai-takaramono-kono-page", "title": "Akagami no Shirayuki-hime: Nandemonai Takaramono, Kono Page", - "mal_title": "Akagami no Shirayuki-hime: Nandemonai Takaramono, Kono Page", + "mal_id": 31483, "poster": "https://aruppi.jeluchu.xyz/res/directory/2337.jpg", "type": "OVA", "genres": [ @@ -40088,7 +40088,7 @@ { "id": "ojisan-to-marshmallow", "title": "Ojisan to Marshmallow", - "mal_title": "Ojisan to Marshmallow", + "mal_id": 31848, "poster": "https://aruppi.jeluchu.xyz/res/directory/2338.jpg", "type": "Anime", "genres": [ @@ -40103,7 +40103,7 @@ { "id": "oshiete-galko-chan", "title": "Oshiete! Galko-chan", - "mal_title": "Oshiete! Galko-chan", + "mal_id": 32013, "poster": "https://aruppi.jeluchu.xyz/res/directory/2339.jpg", "type": "Anime", "genres": [ @@ -40119,7 +40119,7 @@ { "id": "sekkou-boys", "title": "Sekkou Boys", - "mal_title": "Sekkou Boys", + "mal_id": 31540, "poster": "https://aruppi.jeluchu.xyz/res/directory/2340.jpg", "type": "Anime", "genres": [ @@ -40134,7 +40134,7 @@ { "id": "tabi-machi-late-show", "title": "Tabi Machi Late Show", - "mal_title": "Tabi Machi Late Show", + "mal_id": 32309, "poster": "https://aruppi.jeluchu.xyz/res/directory/2341.jpg", "type": "Anime", "genres": [ @@ -40148,7 +40148,7 @@ { "id": "shouwa-genroku-rakugo-shinjuu", "title": "Shouwa Genroku Rakugo Shinjuu", - "mal_title": "Shouwa Genroku Rakugo Shinjuu", + "mal_id": 28735, "poster": "https://aruppi.jeluchu.xyz/res/directory/2342.jpg", "type": "Anime", "genres": [ @@ -40164,7 +40164,7 @@ { "id": "yuyushiki-nyanyashiki", "title": "Yuyushiki: Nyanyashiki", - "mal_title": "Yuyushiki: Nyanyashiki", + "mal_id": 19029, "poster": "https://aruppi.jeluchu.xyz/res/directory/2343.jpg", "type": "OVA", "genres": [ @@ -40178,7 +40178,7 @@ { "id": "the-soultaker-tamashii-gari", "title": "The SoulTaker: Tamashii-gari", - "mal_title": "The SoulTaker: Tamashii-gari", + "mal_id": 1048, "poster": "https://aruppi.jeluchu.xyz/res/directory/2344.jpg", "type": "Anime", "genres": [ @@ -40194,7 +40194,7 @@ { "id": "ooyasan-wa-shishunki", "title": "Ooyasan wa Shishunki!", - "mal_title": "Ooyasan wa Shishunki!", + "mal_id": 31621, "poster": "https://aruppi.jeluchu.xyz/res/directory/2345.jpg", "type": "Anime", "genres": [ @@ -40209,7 +40209,7 @@ { "id": "nijiiro-days", "title": "Nijiiro Days", - "mal_title": "Nijiiro Days", + "mal_id": 31414, "poster": "https://aruppi.jeluchu.xyz/res/directory/2346.jpg", "type": "Anime", "genres": [ @@ -40227,7 +40227,7 @@ { "id": "koyomimonogatari", "title": "Koyomimonogatari", - "mal_title": "Koyomimonogatari", + "mal_id": 32268, "poster": "https://aruppi.jeluchu.xyz/res/directory/2347.jpg", "type": "Anime", "genres": [ @@ -40243,7 +40243,7 @@ { "id": "yami-shibai-3rd-season", "title": "Yami Shibai 3rd Season", - "mal_title": "Yami Shibai 3rd Season", + "mal_id": 31994, "poster": "https://aruppi.jeluchu.xyz/res/directory/2348.jpg", "type": "Anime", "genres": [ @@ -40259,7 +40259,7 @@ { "id": "mahou-shoujo-nante-mou-ii-desukara", "title": "Mahou Shoujo Nante Mou Ii Desukara.", - "mal_title": "Mahou Shoujo Nante Mou Ii Desukara.", + "mal_id": 31793, "poster": "https://aruppi.jeluchu.xyz/res/directory/2349.jpg", "type": "Anime", "genres": [ @@ -40274,7 +40274,7 @@ { "id": "aozora-shoujo-tai", "title": "Aozora Shoujo-tai", - "mal_title": "Aozora Shoujo-tai", + "mal_id": 1233, "poster": "https://aruppi.jeluchu.xyz/res/directory/2350.jpg", "type": "OVA", "genres": [ @@ -40292,7 +40292,7 @@ { "id": "hana-yori-dango", "title": "Hana yori Dango", - "mal_title": "Hana yori Dango", + "mal_id": 106, "poster": "https://aruppi.jeluchu.xyz/res/directory/2351.jpg", "type": "Anime", "genres": [ @@ -40309,7 +40309,7 @@ { "id": "shinkon-gattai-godannar", "title": "Shinkon Gattai Godannar!!", - "mal_title": "Shinkon Gattai Godannar!!", + "mal_id": 1103, "poster": "https://aruppi.jeluchu.xyz/res/directory/2352.jpg", "type": "Anime", "genres": [ @@ -40327,7 +40327,7 @@ { "id": "shinkon-gattai-godannar-2nd-season", "title": "Shinkon Gattai Godannar!! 2nd Season", - "mal_title": "Shinkon Gattai Godannar!! 2nd Season", + "mal_id": 1104, "poster": "https://aruppi.jeluchu.xyz/res/directory/2353.jpg", "type": "Anime", "genres": [ @@ -40345,7 +40345,7 @@ { "id": "ajin-part-1-shoudou", "title": "Ajin Part 1: Shoudou", - "mal_title": "Ajin Part 1: Shoudou", + "mal_id": 30868, "poster": "https://aruppi.jeluchu.xyz/res/directory/2354.jpg", "type": "Película", "genres": [ @@ -40363,7 +40363,7 @@ { "id": "rurouni-kenshin-tsuiokuhen", "title": "Rurouni Kenshin Tsuiokuhen", - "mal_title": "Rurouni Kenshin Tsuiokuhen", + "mal_id": 44, "poster": "https://aruppi.jeluchu.xyz/res/directory/2355.jpg", "type": "OVA", "genres": [ @@ -40382,7 +40382,7 @@ { "id": "rurouni-kenshin-seisou-hen", "title": "Rurouni Kenshin Seisou-hen", - "mal_title": "Rurouni Kenshin Seisou-hen", + "mal_id": 401, "poster": "https://aruppi.jeluchu.xyz/res/directory/2356.jpg", "type": "OVA", "genres": [ @@ -40400,7 +40400,7 @@ { "id": "glass-no-hana-to-kowasu-sekai", "title": "Glass no Hana to Kowasu Sekai", - "mal_title": "Glass no Hana to Kowasu Sekai", + "mal_id": 25907, "poster": "https://aruppi.jeluchu.xyz/res/directory/2357.jpg", "type": "Película", "genres": [ @@ -40414,7 +40414,7 @@ { "id": "kore-wa-zombie-desu-ka-ova", "title": "Kore wa Zombie Desu ka? OVA", - "mal_title": "Kore wa Zombie Desu ka? OVA", + "mal_id": 10209, "poster": "https://aruppi.jeluchu.xyz/res/directory/2358.jpg", "type": "OVA", "genres": [ @@ -40433,7 +40433,7 @@ { "id": "kore-wa-zombie-desu-ka-of-the-dead-ova", "title": "Kore wa Zombie Desu ka? of the Dead OVA", - "mal_title": "Kore wa Zombie Desu ka? of the Dead OVA", + "mal_id": 10790, "poster": "https://aruppi.jeluchu.xyz/res/directory/2359.jpg", "type": "OVA", "genres": [ @@ -40452,7 +40452,7 @@ { "id": "planetes", "title": "Planetes", - "mal_title": "Planetes", + "mal_id": 329, "poster": "https://aruppi.jeluchu.xyz/res/directory/2360.jpg", "type": "Anime", "genres": [ @@ -40470,7 +40470,7 @@ { "id": "pripara-movie-mi-nna-atsumare-prism-tours", "title": "PriPara Movie: Mi~nna Atsumare! Prism☆Tours", - "mal_title": "PriPara Movie: Mi~nna Atsumare! Prism☆Tours", + "mal_id": 25857, "poster": "https://aruppi.jeluchu.xyz/res/directory/2361.jpg", "type": "Película", "genres": [ @@ -40485,7 +40485,7 @@ { "id": "shingeki-no-kyojin-movie-2-jiyuu-no-tsubasa", "title": "Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa", - "mal_title": "Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa", + "mal_id": 23777, "poster": "https://aruppi.jeluchu.xyz/res/directory/2362.jpg", "type": "Película", "genres": [ @@ -40503,7 +40503,7 @@ { "id": "noblesse-awakening", "title": "Noblesse: Awakening", - "mal_title": "Noblesse: Awakening", + "mal_id": 32668, "poster": "https://aruppi.jeluchu.xyz/res/directory/2363.jpg", "type": "OVA", "genres": [ @@ -40520,7 +40520,7 @@ { "id": "kono-danshi-mahou-ga-oshigoto-desu", "title": "Kono Danshi, Mahou ga Oshigoto Desu.", - "mal_title": "Kono Danshi, Mahou ga Oshigoto Desu.", + "mal_id": 31815, "poster": "https://aruppi.jeluchu.xyz/res/directory/2364.jpg", "type": "Anime", "genres": [ @@ -40536,7 +40536,7 @@ { "id": "date-a-live-movie-mayuri-judgment", "title": "Date A Live Movie: Mayuri Judgment", - "mal_title": "Date A Live Movie: Mayuri Judgment", + "mal_id": 24655, "poster": "https://aruppi.jeluchu.xyz/res/directory/2365.jpg", "type": "Película", "genres": [ @@ -40552,7 +40552,7 @@ { "id": "kanojo-to-kanojo-no-neko-everything-flows", "title": "Kanojo to Kanojo no Neko: Everything Flows", - "mal_title": "Kanojo to Kanojo no Neko: Everything Flows", + "mal_id": 32491, "poster": "https://aruppi.jeluchu.xyz/res/directory/2366.jpg", "type": "Anime", "genres": [ @@ -40568,7 +40568,7 @@ { "id": "queens-blade-grimoire", "title": "Queen's Blade: Grimoire", - "mal_title": "Queen's Blade: Grimoire", + "mal_id": 30679, "poster": "https://aruppi.jeluchu.xyz/res/directory/2367.jpg", "type": "OVA", "genres": [ @@ -40585,7 +40585,7 @@ { "id": "Bakuon-ova", "title": "Bakuon!! Ova", - "mal_title": "Bakuon!! Ova", + "mal_id": 31883, "poster": "https://aruppi.jeluchu.xyz/res/directory/2368.jpg", "type": "OVA", "genres": [ @@ -40602,7 +40602,7 @@ { "id": "brotherhood-final-fantasy-xv", "title": "Brotherhood: Final Fantasy XV", - "mal_title": "Brotherhood: Final Fantasy XV", + "mal_id": 33080, "poster": "https://aruppi.jeluchu.xyz/res/directory/2369.jpg", "type": "OVA", "genres": [ @@ -40616,7 +40616,7 @@ { "id": "uchuu-patrol-luluco", "title": "Uchuu Patrol Luluco", - "mal_title": "Uchuu Patrol Luluco", + "mal_id": 32681, "poster": "https://aruppi.jeluchu.xyz/res/directory/2370.jpg", "type": "Anime", "genres": [ @@ -40633,7 +40633,7 @@ { "id": "kagewani-shou", "title": "Kagewani: Shou", - "mal_title": "Kagewani: Shou", + "mal_id": 32682, "poster": "https://aruppi.jeluchu.xyz/res/directory/2371.jpg", "type": "Anime", "genres": [ @@ -40650,7 +40650,7 @@ { "id": "ushio-to-tora-tv-2nd-season", "title": "Ushio to Tora (TV) 2nd Season", - "mal_title": "Ushio to Tora (TV) 2nd Season", + "mal_id": 31098, "poster": "https://aruppi.jeluchu.xyz/res/directory/2372.jpg", "type": "Anime", "genres": [ @@ -40667,7 +40667,7 @@ { "id": "mayoiga", "title": "Mayoiga", - "mal_title": "Mayoiga", + "mal_id": 32438, "poster": "https://aruppi.jeluchu.xyz/res/directory/2373.jpg", "type": "Anime", "genres": [ @@ -40684,7 +40684,7 @@ { "id": "jojo-no-kimyou-na-bouken-diamond-wa-kudakenai", "title": "Jojo no Kimyou na Bouken: Diamond wa Kudakenai", - "mal_title": "Jojo no Kimyou na Bouken: Diamond wa Kudakenai", + "mal_id": 31933, "poster": "https://aruppi.jeluchu.xyz/res/directory/2374.jpg", "type": "Anime", "genres": [ @@ -40703,7 +40703,7 @@ { "id": "terra-formars-revenge", "title": "Terra Formars: Revenge", - "mal_title": "Terra Formars: Revenge", + "mal_id": 31430, "poster": "https://aruppi.jeluchu.xyz/res/directory/2375.jpg", "type": "Anime", "genres": [ @@ -40722,7 +40722,7 @@ { "id": "gyakuten-saiban-sono-shinjitsu-igiari", "title": "Gyakuten Saiban: Sono \"Shinjitsu,\" Igiari!", - "mal_title": "Gyakuten Saiban: Sono \"Shinjitsu,\" Igiari!", + "mal_id": 31630, "poster": "https://aruppi.jeluchu.xyz/res/directory/2376.jpg", "type": "Anime", "genres": [ @@ -40739,7 +40739,7 @@ { "id": "gakusen-toshi-asterisk-2nd-season", "title": "Gakusen Toshi Asterisk 2nd Season", - "mal_title": "Gakusen Toshi Asterisk 2nd Season", + "mal_id": 31737, "poster": "https://aruppi.jeluchu.xyz/res/directory/2377.jpg", "type": "Anime", "genres": [ @@ -40760,7 +40760,7 @@ { "id": "ragnastrike-angels", "title": "Ragnastrike Angels", - "mal_title": "Ragnastrike Angels", + "mal_id": 33021, "poster": "https://aruppi.jeluchu.xyz/res/directory/2378.jpg", "type": "Anime", "genres": [ @@ -40774,7 +40774,7 @@ { "id": "kidou-senshi-gundam-unicorn-re0096", "title": "Kidou Senshi Gundam Unicorn RE:0096", - "mal_title": "Kidou Senshi Gundam Unicorn RE:0096", + "mal_id": 32792, "poster": "https://aruppi.jeluchu.xyz/res/directory/2379.jpg", "type": "Anime", "genres": [ @@ -40793,7 +40793,7 @@ { "id": "concrete-revolutio-choujin-gensou-the-last-song", "title": "Concrete Revolutio: Choujin Gensou - The Last Song", - "mal_title": "Concrete Revolutio: Choujin Gensou - The Last Song", + "mal_id": 32313, "poster": "https://aruppi.jeluchu.xyz/res/directory/2380.jpg", "type": "Anime", "genres": [ @@ -40814,7 +40814,7 @@ { "id": "endride", "title": "Endride", - "mal_title": "Endride", + "mal_id": 32608, "poster": "https://aruppi.jeluchu.xyz/res/directory/2381.jpg", "type": "Anime", "genres": [ @@ -40829,7 +40829,7 @@ { "id": "boku-no-hero-academia-2016", "title": "Boku no Hero Academia", - "mal_title": "Boku no Hero Academia", + "mal_id": 31964, "poster": "https://aruppi.jeluchu.xyz/res/directory/2382.jpg", "type": "Anime", "genres": [ @@ -40847,7 +40847,7 @@ { "id": "pan-de-peace", "title": "Pan de Peace!", - "mal_title": "Pan de Peace!", + "mal_id": 31498, "poster": "https://aruppi.jeluchu.xyz/res/directory/2383.jpg", "type": "Anime", "genres": [ @@ -40863,7 +40863,7 @@ { "id": "kuma-miko", "title": "Kuma Miko", - "mal_title": "Kuma Miko", + "mal_id": 31804, "poster": "https://aruppi.jeluchu.xyz/res/directory/2384.jpg", "type": "Anime", "genres": [ @@ -40879,7 +40879,7 @@ { "id": "rezero-kara-hajimeru-isekai-seikatsu", "title": "Re:Zero kara Hajimeru Isekai Seikatsu", - "mal_title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "mal_id": 36286, "poster": "https://aruppi.jeluchu.xyz/res/directory/2385.jpg", "type": "Anime", "genres": [ @@ -40896,7 +40896,7 @@ { "id": "kaitou-joker-3rd-season", "title": "Kaitou Joker 3rd Season", - "mal_title": "Kaitou Joker 3rd Season", + "mal_id": 31670, "poster": "https://aruppi.jeluchu.xyz/res/directory/2386.jpg", "type": "Anime", "genres": [ @@ -40913,7 +40913,7 @@ { "id": "bakuon", "title": "Bakuon!!", - "mal_title": "Bakuon!!", + "mal_id": 30795, "poster": "https://aruppi.jeluchu.xyz/res/directory/2387.jpg", "type": "Anime", "genres": [ @@ -40929,7 +40929,7 @@ { "id": "seisen-cerberus-ryuukoku-no-fatalite", "title": "Seisen Cerberus: Ryuukoku no Fatalite", - "mal_title": "Seisen Cerberus: Ryuukoku no Fatalite", + "mal_id": 32595, "poster": "https://aruppi.jeluchu.xyz/res/directory/2388.jpg", "type": "Anime", "genres": [ @@ -40944,7 +40944,7 @@ { "id": "12-sai-chicchana-mune-no-tokimeki", "title": "12-sai.: Chicchana Mune no Tokimeki", - "mal_title": "12-sai.: Chicchana Mune no Tokimeki", + "mal_id": 32601, "poster": "https://aruppi.jeluchu.xyz/res/directory/2389.jpg", "type": "Anime", "genres": [ @@ -40960,7 +40960,7 @@ { "id": "hundred", "title": "Hundred", - "mal_title": "Hundred", + "mal_id": 31338, "poster": "https://aruppi.jeluchu.xyz/res/directory/2390.jpg", "type": "Anime", "genres": [ @@ -40980,7 +40980,7 @@ { "id": "hakuouki-otogisoushi", "title": "Hakuouki: Otogisoushi", - "mal_title": "Hakuouki: Otogisoushi", + "mal_id": 32011, "poster": "https://aruppi.jeluchu.xyz/res/directory/2391.jpg", "type": "Anime", "genres": [ @@ -40997,7 +40997,7 @@ { "id": "joker-game", "title": "Joker Game", - "mal_title": "Joker Game", + "mal_id": 31405, "poster": "https://aruppi.jeluchu.xyz/res/directory/2392.jpg", "type": "Anime", "genres": [ @@ -41013,7 +41013,7 @@ { "id": "sousei-no-onmyouji", "title": "Sousei no Onmyouji", - "mal_title": "Sousei no Onmyouji", + "mal_id": 32105, "poster": "https://aruppi.jeluchu.xyz/res/directory/2393.jpg", "type": "Anime", "genres": [ @@ -41030,7 +41030,7 @@ { "id": "koutetsujou-no-kabaneri", "title": "Koutetsujou no Kabaneri", - "mal_title": "Koutetsujou no Kabaneri", + "mal_id": 28623, "poster": "https://aruppi.jeluchu.xyz/res/directory/2394.jpg", "type": "Anime", "genres": [ @@ -41047,7 +41047,7 @@ { "id": "bishoujo-yuugi-unit-crane-game-girls", "title": "Bishoujo Yuugi Unit Crane Game Girls", - "mal_title": "Bishoujo Yuugi Unit Crane Game Girls", + "mal_id": 33541, "poster": "https://aruppi.jeluchu.xyz/res/directory/2395.jpg", "type": "Anime", "genres": [ @@ -41063,7 +41063,7 @@ { "id": "super-lovers", "title": "Super Lovers", - "mal_title": "Super Lovers", + "mal_id": 31680, "poster": "https://aruppi.jeluchu.xyz/res/directory/2396.jpg", "type": "Anime", "genres": [ @@ -41081,7 +41081,7 @@ { "id": "onigiri", "title": "Onigiri", - "mal_title": "Onigiri", + "mal_id": 32606, "poster": "https://aruppi.jeluchu.xyz/res/directory/2397.jpg", "type": "Anime", "genres": [ @@ -41097,7 +41097,7 @@ { "id": "bungou-stray-dogs", "title": "Bungou Stray Dogs", - "mal_title": "Bungou Stray Dogs", + "mal_id": 31478, "poster": "https://aruppi.jeluchu.xyz/res/directory/2398.jpg", "type": "Anime", "genres": [ @@ -41115,7 +41115,7 @@ { "id": "kuromukuro", "title": "Kuromukuro", - "mal_title": "Kuromukuro", + "mal_id": 32245, "poster": "https://aruppi.jeluchu.xyz/res/directory/2399.jpg", "type": "Anime", "genres": [ @@ -41131,7 +41131,7 @@ { "id": "anne-happyo", "title": "Anne Happy♪", - "mal_title": "Anne Happy♪", + "mal_id": 31080, "poster": "https://aruppi.jeluchu.xyz/res/directory/2400.jpg", "type": "Anime", "genres": [ @@ -41147,7 +41147,7 @@ { "id": "netoge-no-yome-wa-onnanoko-ja-nai-to-omotta", "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", - "mal_title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "mal_id": 31404, "poster": "https://aruppi.jeluchu.xyz/res/directory/2401.jpg", "type": "Anime", "genres": [ @@ -41165,7 +41165,7 @@ { "id": "shounen-maid", "title": "Shounen Maid", - "mal_title": "Shounen Maid", + "mal_id": 32175, "poster": "https://aruppi.jeluchu.xyz/res/directory/2402.jpg", "type": "Anime", "genres": [ @@ -41181,7 +41181,7 @@ { "id": "sakamoto-desu-ga", "title": "Sakamoto desu ga?", - "mal_title": "Sakamoto desu ga?", + "mal_id": 32542, "poster": "https://aruppi.jeluchu.xyz/res/directory/2403.jpg", "type": "Anime", "genres": [ @@ -41197,7 +41197,7 @@ { "id": "kyoukai-no-rinne-tv-2", "title": "Kyoukai no Rinne (TV) 2nd Season", - "mal_title": "Kyoukai no Rinne (TV) 2nd Season", + "mal_id": 31610, "poster": "https://aruppi.jeluchu.xyz/res/directory/2404.jpg", "type": "Anime", "genres": [ @@ -41215,7 +41215,7 @@ { "id": "tanaka-kun-wa-itsumo-kedaruge", "title": "Tanaka-kun wa Itsumo Kedaruge", - "mal_title": "Tanaka-kun wa Itsumo Kedaruge", + "mal_id": 32093, "poster": "https://aruppi.jeluchu.xyz/res/directory/2405.jpg", "type": "Anime", "genres": [ @@ -41231,7 +41231,7 @@ { "id": "kiznaiver", "title": "Kiznaiver", - "mal_title": "Kiznaiver", + "mal_id": 31798, "poster": "https://aruppi.jeluchu.xyz/res/directory/2406.jpg", "type": "Anime", "genres": [ @@ -41246,7 +41246,7 @@ { "id": "haifuri", "title": "Haifuri", - "mal_title": "Haifuri", + "mal_id": 31500, "poster": "https://aruppi.jeluchu.xyz/res/directory/2407.jpg", "type": "Anime", "genres": [ @@ -41262,7 +41262,7 @@ { "id": "sansha-sanyou", "title": "Sansha Sanyou", - "mal_title": "Sansha Sanyou", + "mal_id": 31564, "poster": "https://aruppi.jeluchu.xyz/res/directory/2408.jpg", "type": "Anime", "genres": [ @@ -41278,7 +41278,7 @@ { "id": "flying-witch", "title": "Flying Witch", - "mal_title": "Flying Witch", + "mal_id": 31376, "poster": "https://aruppi.jeluchu.xyz/res/directory/2409.jpg", "type": "Anime", "genres": [ @@ -41296,7 +41296,7 @@ { "id": "bakemono-no-ko", "title": "Bakemono no Ko", - "mal_title": "Bakemono no Ko", + "mal_id": 28805, "poster": "https://aruppi.jeluchu.xyz/res/directory/2410.jpg", "type": "Película", "genres": [ @@ -41311,7 +41311,7 @@ { "id": "wagamama-high-spec", "title": "Wagamama High Spec", - "mal_title": "Wagamama High Spec", + "mal_id": 31439, "poster": "https://aruppi.jeluchu.xyz/res/directory/2411.jpg", "type": "Anime", "genres": [ @@ -41326,7 +41326,7 @@ { "id": "usakame", "title": "Usakame", - "mal_title": "Usakame", + "mal_id": 32454, "poster": "https://aruppi.jeluchu.xyz/res/directory/2412.jpg", "type": "Anime", "genres": [ @@ -41342,7 +41342,7 @@ { "id": "magi-sinbad-no-bouken-tv", "title": "Magi: Sinbad no Bouken (TV)", - "mal_title": "Magi: Sinbad no Bouken (TV)", + "mal_id": 31741, "poster": "https://aruppi.jeluchu.xyz/res/directory/2413.jpg", "type": "Anime", "genres": [ @@ -41360,7 +41360,7 @@ { "id": "big-order-tv", "title": "Big Order (TV)", - "mal_title": "Big Order (TV)", + "mal_id": 31904, "poster": "https://aruppi.jeluchu.xyz/res/directory/2414.jpg", "type": "Anime", "genres": [ @@ -41376,7 +41376,7 @@ { "id": "kokoro-ga-sakebitagatterunda", "title": "Kokoro ga Sakebitagatterunda.", - "mal_title": "Kokoro ga Sakebitagatterunda.", + "mal_id": 28725, "poster": "https://aruppi.jeluchu.xyz/res/directory/2415.jpg", "type": "Película", "genres": [ @@ -41392,7 +41392,7 @@ { "id": "aoki-hagane-no-arpeggio-ars-nova-cadenza", "title": "Aoki Hagane no Arpeggio: Ars Nova Cadenza", - "mal_title": "Aoki Hagane no Arpeggio: Ars Nova Cadenza", + "mal_id": 24921, "poster": "https://aruppi.jeluchu.xyz/res/directory/2416.jpg", "type": "Película", "genres": [ @@ -41408,7 +41408,7 @@ { "id": "shisha-no-teikoku", "title": "Shisha no Teikoku", - "mal_title": "Shisha no Teikoku", + "mal_id": 28625, "poster": "https://aruppi.jeluchu.xyz/res/directory/2417.jpg", "type": "Película", "genres": [ @@ -41424,7 +41424,7 @@ { "id": "stranger-mukou-hadan", "title": "Stranger: Mukou Hadan", - "mal_title": "Stranger: Mukou Hadan", + "mal_id": 2418, "poster": "https://aruppi.jeluchu.xyz/res/directory/2418.jpg", "type": "Película", "genres": [ @@ -41441,7 +41441,7 @@ { "id": "aikatsu-music-award-minna-de-shou-wo-moracchaima-show", "title": "Aikatsu! Music Award: Minna de Shou wo MoracchaimaShow!", - "mal_title": "Aikatsu! Music Award: Minna de Shou wo MoracchaimaShow!", + "mal_id": 30845, "poster": "https://aruppi.jeluchu.xyz/res/directory/2419.jpg", "type": "Película", "genres": [ @@ -41456,7 +41456,7 @@ { "id": "shokugeki-no-souma-ova", "title": "Shokugeki no Souma OVA", - "mal_title": "Shokugeki no Souma OVA", + "mal_id": 31327, "poster": "https://aruppi.jeluchu.xyz/res/directory/2420.jpg", "type": "OVA", "genres": [ @@ -41472,7 +41472,7 @@ { "id": "owari-no-seraph-kyuuketsuki-shahar", "title": "Owari no Seraph: Kyuuketsuki Shahar", - "mal_title": "Owari no Seraph: Kyuuketsuki Shahar", + "mal_id": 31378, "poster": "https://aruppi.jeluchu.xyz/res/directory/2421.jpg", "type": "OVA", "genres": [ @@ -41490,7 +41490,7 @@ { "id": "yowamushi-pedal-reride", "title": "Yowamushi Pedal: Re:RIDE", - "mal_title": "Yowamushi Pedal: Re:RIDE", + "mal_id": 18177, "poster": "https://aruppi.jeluchu.xyz/res/directory/2422.jpg", "type": "Película", "genres": [ @@ -41506,7 +41506,7 @@ { "id": "yowamushi-pedal-reroad", "title": "Yowamushi Pedal: Re:ROAD", - "mal_title": "Yowamushi Pedal: Re:ROAD", + "mal_id": 24277, "poster": "https://aruppi.jeluchu.xyz/res/directory/2423.jpg", "type": "Película", "genres": [ @@ -41522,7 +41522,7 @@ { "id": "yowamushi-pedal-movie", "title": "Yowamushi Pedal Movie", - "mal_title": "Yowamushi Pedal Movie", + "mal_id": 30413, "poster": "https://aruppi.jeluchu.xyz/res/directory/2424.jpg", "type": "Película", "genres": [ @@ -41539,7 +41539,7 @@ { "id": "haikyuu-vs-akaten", "title": "Haikyuu!!: vs. Akaten", - "mal_title": "Haikyuu!!: vs. Akaten", + "mal_id": 35806, "poster": "https://aruppi.jeluchu.xyz/res/directory/2425.jpg", "type": "OVA", "genres": [ @@ -41554,7 +41554,7 @@ { "id": "noblesse-pamyeol-ui-sijak", "title": "Noblesse: Pamyeol-ui Sijak", - "mal_title": "Noblesse: Pamyeol-ui Sijak", + "mal_id": 32566, "poster": "https://aruppi.jeluchu.xyz/res/directory/2426.jpg", "type": "OVA", "genres": [ @@ -41570,7 +41570,7 @@ { "id": "ajin-ova", "title": "Ajin OVA", - "mal_title": "Ajin OVA", + "mal_id": 32015, "poster": "https://aruppi.jeluchu.xyz/res/directory/2427.jpg", "type": "OVA", "genres": [ @@ -41588,7 +41588,7 @@ { "id": "girls-und-panzer-der-film", "title": "Girls und Panzer der Film", - "mal_title": "Girls und Panzer der Film", + "mal_id": 18617, "poster": "https://aruppi.jeluchu.xyz/res/directory/2428.jpg", "type": "Película", "genres": [ @@ -41603,7 +41603,7 @@ { "id": "girls-und-panzer-der-film-arisu-war", "title": "Girls und Panzer der Film: Arisu War!", - "mal_title": "Girls und Panzer der Film: Arisu War!", + "mal_id": 32740, "poster": "https://aruppi.jeluchu.xyz/res/directory/2429.jpg", "type": "OVA", "genres": [ @@ -41618,7 +41618,7 @@ { "id": "steinsgate-oukoubakko-no-poriomania", "title": "Steins;Gate: Oukoubakko no Poriomania", - "mal_title": "Steins;Gate: Oukoubakko no Poriomania", + "mal_id": 10863, "poster": "https://aruppi.jeluchu.xyz/res/directory/2430.jpg", "type": "OVA", "genres": [ @@ -41633,7 +41633,7 @@ { "id": "steinsgate-kyoukaimenjou-no-missing-link-divi", "title": "Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero", - "mal_title": "Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero", + "mal_id": 32188, "poster": "https://aruppi.jeluchu.xyz/res/directory/2431.jpg", "type": "OVA", "genres": [ @@ -41648,7 +41648,7 @@ { "id": "kuma-miko-specials", "title": "Kuma Miko Specials", - "mal_title": "Kuma Miko Specials", + "mal_id": 33118, "poster": "https://aruppi.jeluchu.xyz/res/directory/2432.jpg", "type": "OVA", "genres": [ @@ -41663,7 +41663,7 @@ { "id": "fukigen-na-mononokean", "title": "Fukigen na Mononokean", - "mal_title": "Fukigen na Mononokean", + "mal_id": 32696, "poster": "https://aruppi.jeluchu.xyz/res/directory/2433.jpg", "type": "Anime", "genres": [ @@ -41678,7 +41678,7 @@ { "id": "berserk-2016", "title": "Berserk (2016)", - "mal_title": "Berserk (2016)", + "mal_id": 32379, "poster": "https://aruppi.jeluchu.xyz/res/directory/2434.jpg", "type": "Anime", "genres": [ @@ -41701,7 +41701,7 @@ { "id": "relife", "title": "ReLIFE", - "mal_title": "ReLIFE", + "mal_id": 30015, "poster": "https://aruppi.jeluchu.xyz/res/directory/2435.jpg", "type": "Anime", "genres": [ @@ -41717,7 +41717,7 @@ { "id": "shokugeki-no-souma-ni-no-sara", "title": "Shokugeki no Souma: Ni no Sara", - "mal_title": "Shokugeki no Souma: Ni no Sara", + "mal_id": 32282, "poster": "https://aruppi.jeluchu.xyz/res/directory/2436.jpg", "type": "Anime", "genres": [ @@ -41733,7 +41733,7 @@ { "id": "love-live-sunshine", "title": "Love Live! Sunshine!!", - "mal_title": "Love Live! Sunshine!!", + "mal_id": 32526, "poster": "https://aruppi.jeluchu.xyz/res/directory/2437.jpg", "type": "Anime", "genres": [ @@ -41749,7 +41749,7 @@ { "id": "hatsukoi-monster", "title": "Hatsukoi Monster", - "mal_title": "Hatsukoi Monster", + "mal_id": 31109, "poster": "https://aruppi.jeluchu.xyz/res/directory/2438.jpg", "type": "Anime", "genres": [ @@ -41766,7 +41766,7 @@ { "id": "rewrite", "title": "Rewrite", - "mal_title": "Rewrite", + "mal_id": 31716, "poster": "https://aruppi.jeluchu.xyz/res/directory/2439.jpg", "type": "Anime", "genres": [ @@ -41784,7 +41784,7 @@ { "id": "b-project-kodouambitious", "title": "B-Project: Kodou*Ambitious", - "mal_title": "B-Project: Kodou*Ambitious", + "mal_id": 33046, "poster": "https://aruppi.jeluchu.xyz/res/directory/2440.jpg", "type": "Anime", "genres": [ @@ -41799,7 +41799,7 @@ { "id": "days-tv", "title": "Days (TV)", - "mal_title": "Days (TV)", + "mal_id": 32494, "poster": "https://aruppi.jeluchu.xyz/res/directory/2441.jpg", "type": "Anime", "genres": [ @@ -41815,7 +41815,7 @@ { "id": "arslan-senki-tv-fuujin-ranbu", "title": "Arslan Senki (TV): Fuujin Ranbu", - "mal_title": "Arslan Senki (TV): Fuujin Ranbu", + "mal_id": 31821, "poster": "https://aruppi.jeluchu.xyz/res/directory/2442.jpg", "type": "Anime", "genres": [ @@ -41835,7 +41835,7 @@ { "id": "tales-of-zestiria-the-x", "title": "Tales of Zestiria the X", - "mal_title": "Tales of Zestiria the X", + "mal_id": 30911, "poster": "https://aruppi.jeluchu.xyz/res/directory/2443.jpg", "type": "Anime", "genres": [ @@ -41851,7 +41851,7 @@ { "id": "orange", "title": "Orange", - "mal_title": "Orange", + "mal_id": 32729, "poster": "https://aruppi.jeluchu.xyz/res/directory/2444.jpg", "type": "Anime", "genres": [ @@ -41869,7 +41869,7 @@ { "id": "new-game", "title": "New Game!", - "mal_title": "New Game!", + "mal_id": 31953, "poster": "https://aruppi.jeluchu.xyz/res/directory/2445.jpg", "type": "Anime", "genres": [ @@ -41884,7 +41884,7 @@ { "id": "amaama-to-inazuma", "title": "Amaama to Inazuma", - "mal_title": "Amaama to Inazuma", + "mal_id": 32828, "poster": "https://aruppi.jeluchu.xyz/res/directory/2446.jpg", "type": "Anime", "genres": [ @@ -41900,7 +41900,7 @@ { "id": "dgray-man-hallow", "title": "D.Gray-man Hallow", - "mal_title": "D.Gray-man Hallow", + "mal_id": 32370, "poster": "https://aruppi.jeluchu.xyz/res/directory/2447.jpg", "type": "Anime", "genres": [ @@ -41917,7 +41917,7 @@ { "id": "taboo-tattoo", "title": "Taboo Tattoo", - "mal_title": "Taboo Tattoo", + "mal_id": 29758, "poster": "https://aruppi.jeluchu.xyz/res/directory/2448.jpg", "type": "Anime", "genres": [ @@ -41936,7 +41936,7 @@ { "id": "fudanshi-koukou-seikatsu", "title": "Fudanshi Koukou Seikatsu", - "mal_title": "Fudanshi Koukou Seikatsu", + "mal_id": 33222, "poster": "https://aruppi.jeluchu.xyz/res/directory/2449.jpg", "type": "Anime", "genres": [ @@ -41953,7 +41953,7 @@ { "id": "cheer-danshi", "title": "Cheer Danshi!!", - "mal_title": "Cheer Danshi!!", + "mal_id": 32483, "poster": "https://aruppi.jeluchu.xyz/res/directory/2450.jpg", "type": "Anime", "genres": [ @@ -41968,7 +41968,7 @@ { "id": "servamp", "title": "Servamp", - "mal_title": "Servamp", + "mal_id": 31229, "poster": "https://aruppi.jeluchu.xyz/res/directory/2451.jpg", "type": "Anime", "genres": [ @@ -41987,7 +41987,7 @@ { "id": "masou-gakuen-hxh", "title": "Masou Gakuen HxH", - "mal_title": "Masou Gakuen HxH", + "mal_id": 31845, "poster": "https://aruppi.jeluchu.xyz/res/directory/2452.jpg", "type": "Anime", "genres": [ @@ -42008,7 +42008,7 @@ { "id": "scared-rider-xechs", "title": "Scared Rider Xechs", - "mal_title": "Scared Rider Xechs", + "mal_id": 33113, "poster": "https://aruppi.jeluchu.xyz/res/directory/2453.jpg", "type": "Anime", "genres": [ @@ -42025,7 +42025,7 @@ { "id": "fatekaleid-liner-prismaillya-3rei", "title": "Fate/kaleid liner Prisma☆Illya 3rei!!", - "mal_title": "Fate/kaleid liner Prisma☆Illya 3rei!!", + "mal_id": 31706, "poster": "https://aruppi.jeluchu.xyz/res/directory/2454.jpg", "type": "Anime", "genres": [ @@ -42042,7 +42042,7 @@ { "id": "tsukiuta-the-animation", "title": "Tsukiuta: The Animation", - "mal_title": "Tsukiuta: The Animation", + "mal_id": 33037, "poster": "https://aruppi.jeluchu.xyz/res/directory/2455.jpg", "type": "Anime", "genres": [ @@ -42056,7 +42056,7 @@ { "id": "ozmafia", "title": "Ozmafia!!", - "mal_title": "Ozmafia!!", + "mal_id": 32697, "poster": "https://aruppi.jeluchu.xyz/res/directory/2456.jpg", "type": "Anime", "genres": [ @@ -42074,7 +42074,7 @@ { "id": "mahou-shoujo-nariagirls", "title": "Mahou Shoujo? Naria☆Girls", - "mal_title": "Mahou Shoujo? Naria☆Girls", + "mal_id": 33394, "poster": "https://aruppi.jeluchu.xyz/res/directory/2457.jpg", "type": "Anime", "genres": [ @@ -42088,7 +42088,7 @@ { "id": "regalia-the-three-sacred-stars", "title": "Regalia: The Three Sacred Stars", - "mal_title": "Regalia: The Three Sacred Stars", + "mal_id": 32961, "poster": "https://aruppi.jeluchu.xyz/res/directory/2458.jpg", "type": "Anime", "genres": [ @@ -42104,7 +42104,7 @@ { "id": "handa-kun", "title": "Handa-kun", - "mal_title": "Handa-kun", + "mal_id": 32648, "poster": "https://aruppi.jeluchu.xyz/res/directory/2459.jpg", "type": "Anime", "genres": [ @@ -42120,7 +42120,7 @@ { "id": "kono-bijutsubu-ni-wa-mondai-ga-aru", "title": "Kono Bijutsubu ni wa Mondai ga Aru!", - "mal_title": "Kono Bijutsubu ni wa Mondai ga Aru!", + "mal_id": 31952, "poster": "https://aruppi.jeluchu.xyz/res/directory/2460.jpg", "type": "Anime", "genres": [ @@ -42136,7 +42136,7 @@ { "id": "binan-koukou-chikyuu-bouei-bu-love-love", "title": "Binan Koukou Chikyuu Bouei-bu LOVE! LOVE!", - "mal_title": "Binan Koukou Chikyuu Bouei-bu LOVE! LOVE!", + "mal_id": 27727, "poster": "https://aruppi.jeluchu.xyz/res/directory/2461.jpg", "type": "Anime", "genres": [ @@ -42153,7 +42153,7 @@ { "id": "amanchu", "title": "Amanchu!", - "mal_title": "Amanchu!", + "mal_id": 31771, "poster": "https://aruppi.jeluchu.xyz/res/directory/2462.jpg", "type": "Anime", "genres": [ @@ -42170,7 +42170,7 @@ { "id": "nejimaki-seirei-senki-tenkyou-no-alderamin", "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", - "mal_title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "mal_id": 31764, "poster": "https://aruppi.jeluchu.xyz/res/directory/2463.jpg", "type": "Anime", "genres": [ @@ -42187,7 +42187,7 @@ { "id": "91-days", "title": "91 Days", - "mal_title": "91 Days", + "mal_id": 32998, "poster": "https://aruppi.jeluchu.xyz/res/directory/2464.jpg", "type": "Anime", "genres": [ @@ -42203,7 +42203,7 @@ { "id": "time-travel-shoujo-mari-waka-to-8-nin-no-kagakus", "title": "Time Travel Shoujo: Mari Waka to 8-nin no Kagakusha-tachi", - "mal_title": "Time Travel Shoujo: Mari Waka to 8-nin no Kagakusha-tachi", + "mal_id": 33341, "poster": "https://aruppi.jeluchu.xyz/res/directory/2465.jpg", "type": "Anime", "genres": [ @@ -42218,7 +42218,7 @@ { "id": "hitori-no-shita-the-outcast", "title": "Hitori no Shita: The Outcast", - "mal_title": "Hitori no Shita: The Outcast", + "mal_id": 33421, "poster": "https://aruppi.jeluchu.xyz/res/directory/2466.jpg", "type": "Anime", "genres": [ @@ -42234,7 +42234,7 @@ { "id": "qualidea-code", "title": "Qualidea Code", - "mal_title": "Qualidea Code", + "mal_id": 32360, "poster": "https://aruppi.jeluchu.xyz/res/directory/2467.jpg", "type": "Anime", "genres": [ @@ -42250,7 +42250,7 @@ { "id": "ange-vierge", "title": "Ange Vierge", - "mal_title": "Ange Vierge", + "mal_id": 32171, "poster": "https://aruppi.jeluchu.xyz/res/directory/2468.jpg", "type": "Anime", "genres": [ @@ -42267,7 +42267,7 @@ { "id": "danganronpa-3-the-end-of-kibougamine-gakuen-mi", "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", - "mal_title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "mal_id": 32189, "poster": "https://aruppi.jeluchu.xyz/res/directory/2469.jpg", "type": "Anime", "genres": [ @@ -42284,7 +42284,7 @@ { "id": "rs-keikaku-rebirth-storage", "title": "RS Keikaku: Rebirth Storage", - "mal_title": "RS Keikaku: Rebirth Storage", + "mal_id": 32950, "poster": "https://aruppi.jeluchu.xyz/res/directory/2470.jpg", "type": "OVA", "genres": [ @@ -42298,7 +42298,7 @@ { "id": "mob-psycho-100", "title": "Mob Psycho 100", - "mal_title": "Mob Psycho 100", + "mal_id": 32182, "poster": "https://aruppi.jeluchu.xyz/res/directory/2471.jpg", "type": "Anime", "genres": [ @@ -42315,7 +42315,7 @@ { "id": "active-raid-kidou-kyoushuushitsu-dai-hachi-gakar", "title": "Active Raid: Kidou Kyoushuushitsu Dai Hachi Gakari 2nd", - "mal_title": "Active Raid: Kidou Kyoushuushitsu Dai Hachi Gakari 2nd", + "mal_id": 32301, "poster": "https://aruppi.jeluchu.xyz/res/directory/2472.jpg", "type": "Anime", "genres": [ @@ -42332,7 +42332,7 @@ { "id": "battery", "title": "Battery", - "mal_title": "Battery", + "mal_id": 32947, "poster": "https://aruppi.jeluchu.xyz/res/directory/2473.jpg", "type": "Anime", "genres": [ @@ -42348,7 +42348,7 @@ { "id": "danganronpa-3-the-end-of-kibougamine-gakuen-ze", "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", - "mal_title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "mal_id": 33028, "poster": "https://aruppi.jeluchu.xyz/res/directory/2474.jpg", "type": "Anime", "genres": [ @@ -42365,7 +42365,7 @@ { "id": "momokuri", "title": "Momokuri", - "mal_title": "Momokuri", + "mal_id": 30014, "poster": "https://aruppi.jeluchu.xyz/res/directory/2475.jpg", "type": "OVA", "genres": [ @@ -42381,7 +42381,7 @@ { "id": "king-of-prism-by-pretty-rhythm", "title": "King of Prism by Pretty Rhythm", - "mal_title": "King of Prism by Pretty Rhythm", + "mal_id": 31762, "poster": "https://aruppi.jeluchu.xyz/res/directory/2476.jpg", "type": "Película", "genres": [ @@ -42397,7 +42397,7 @@ { "id": "boruto-naruto-the-movie-naruto-ga-hokage-ni-natta-hi", "title": "Boruto: Naruto the Movie Naruto ga Hokage ni Natta Hi", - "mal_title": "Boruto: Naruto the Movie Naruto ga Hokage ni Natta Hi", + "mal_id": 32365, "poster": "https://aruppi.jeluchu.xyz/res/directory/2477.jpg", "type": "OVA", "genres": [ @@ -42415,7 +42415,7 @@ { "id": "planetarian-chiisana-hoshi-no-yume", "title": "Planetarian: Chiisana Hoshi no Yume", - "mal_title": "Planetarian: Chiisana Hoshi no Yume", + "mal_id": 33091, "poster": "https://aruppi.jeluchu.xyz/res/directory/2478.jpg", "type": "OVA", "genres": [ @@ -42430,7 +42430,7 @@ { "id": "one-piece-heart-of-gold", "title": "One Piece: Heart of Gold", - "mal_title": "One Piece: Heart of Gold", + "mal_id": 33338, "poster": "https://aruppi.jeluchu.xyz/res/directory/2479.jpg", "type": "OVA", "genres": [ @@ -42449,7 +42449,7 @@ { "id": "juuza-engi-engetsu-sangokuden-gaiden-youzhou-genya", "title": "Juuza Engi: Engetsu Sangokuden - Gaiden Youzhou Genya", - "mal_title": "Juuza Engi: Engetsu Sangokuden - Gaiden Youzhou Genya", + "mal_id": 22295, "poster": "https://aruppi.jeluchu.xyz/res/directory/2480.jpg", "type": "OVA", "genres": [ @@ -42466,7 +42466,7 @@ { "id": "drifters-ova", "title": "Drifters OVA", - "mal_title": "Drifters OVA", + "mal_id": 36480, "poster": "https://aruppi.jeluchu.xyz/res/directory/2481.jpg", "type": "OVA", "genres": [ @@ -42486,7 +42486,7 @@ { "id": "under-the-dog", "title": "Under the Dog", - "mal_title": "Under the Dog", + "mal_id": 27387, "poster": "https://aruppi.jeluchu.xyz/res/directory/2482.jpg", "type": "OVA", "genres": [ @@ -42502,7 +42502,7 @@ { "id": "kizumonogatari-i-tekketsu-hen", "title": "Kizumonogatari I: Tekketsu-hen", - "mal_title": "Kizumonogatari I: Tekketsu-hen", + "mal_id": 9260, "poster": "https://aruppi.jeluchu.xyz/res/directory/2483.jpg", "type": "Película", "genres": [ @@ -42518,7 +42518,7 @@ { "id": "harmony", "title": "Harmony", - "mal_title": "Harmony", + "mal_id": 28211, "poster": "https://aruppi.jeluchu.xyz/res/directory/2484.jpg", "type": "Película", "genres": [ @@ -42533,7 +42533,7 @@ { "id": "dragon-ball-z-pelicula-15-fukkatsu-no-f-especial-trunks", "title": "Dragon Ball Z Pelicula 15: Fukkatsu no F Future Trunks Special", - "mal_title": "Dragon Ball Z Pelicula 15: Fukkatsu no F Future Trunks Special", + "mal_id": 25389, "poster": "https://aruppi.jeluchu.xyz/res/directory/2485.jpg", "type": "OVA", "genres": [ @@ -42553,7 +42553,7 @@ { "id": "nanatsu-no-taizai-seisen-no-shirushi", "title": "Nanatsu no Taizai: Seisen no Shirushi", - "mal_title": "Nanatsu no Taizai: Seisen no Shirushi", + "mal_id": 31722, "poster": "https://aruppi.jeluchu.xyz/res/directory/2486.jpg", "type": "Anime", "genres": [ @@ -42572,7 +42572,7 @@ { "id": "accel-world-infinite-burst", "title": "Accel World: Infinite Burst", - "mal_title": "Accel World: Infinite Burst", + "mal_id": 31763, "poster": "https://aruppi.jeluchu.xyz/res/directory/2487.jpg", "type": "Película", "genres": [ @@ -42590,7 +42590,7 @@ { "id": "gundam-build-fighters-try-island-wars", "title": "Gundam Build Fighters Try: Island Wars", - "mal_title": "Gundam Build Fighters Try: Island Wars", + "mal_id": 30533, "poster": "https://aruppi.jeluchu.xyz/res/directory/2488.jpg", "type": "OVA", "genres": [ @@ -42606,7 +42606,7 @@ { "id": "persona-5-the-animation-the-day-breakers", "title": "Persona 5 the Animation: The Day Breakers", - "mal_title": "Persona 5 the Animation: The Day Breakers", + "mal_id": 31645, "poster": "https://aruppi.jeluchu.xyz/res/directory/2489.jpg", "type": "OVA", "genres": [ @@ -42623,7 +42623,7 @@ { "id": "mahoutsukai-no-yome-hoshi-matsu-hito", "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", - "mal_title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "mal_id": 32902, "poster": "https://aruppi.jeluchu.xyz/res/directory/2490.jpg", "type": "OVA", "genres": [ @@ -42638,7 +42638,7 @@ { "id": "pokemon-generations", "title": "Pokemon Generations", - "mal_title": "Pokemon Generations", + "mal_id": 34514, "poster": "https://aruppi.jeluchu.xyz/res/directory/2491.jpg", "type": "OVA", "genres": [ @@ -42656,7 +42656,7 @@ { "id": "high-speed-free-starting-days", "title": "High☆Speed!: Free! Starting Days", - "mal_title": "High☆Speed!: Free! Starting Days", + "mal_id": 30415, "poster": "https://aruppi.jeluchu.xyz/res/directory/2492.jpg", "type": "Película", "genres": [ @@ -42672,7 +42672,7 @@ { "id": "kimi-no-na-wa", "title": "Kimi no Na wa", - "mal_title": "Kimi no Na wa", + "mal_id": 32281, "poster": "https://aruppi.jeluchu.xyz/res/directory/2493.jpg", "type": "Película", "genres": [ @@ -42689,7 +42689,7 @@ { "id": "dream-festival", "title": "Dream Festival!", - "mal_title": "Dream Festival!", + "mal_id": 33045, "poster": "https://aruppi.jeluchu.xyz/res/directory/2494.jpg", "type": "Anime", "genres": [ @@ -42703,7 +42703,7 @@ { "id": "non-non-biyori-repeat-ova", "title": "Non Non Biyori Repeat OVA", - "mal_title": "Non Non Biyori Repeat OVA", + "mal_id": 23623, "poster": "https://aruppi.jeluchu.xyz/res/directory/2495.jpg", "type": "OVA", "genres": [ @@ -42720,7 +42720,7 @@ { "id": "danganronpa-3-the-end-of-kibougamine-gakuen-kibou-hen", "title": "Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen", - "mal_title": "Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen", + "mal_id": 34103, "poster": "https://aruppi.jeluchu.xyz/res/directory/2496.jpg", "type": "OVA", "genres": [ @@ -42737,7 +42737,7 @@ { "id": "time-bokan-24", "title": "Time Bokan 24", - "mal_title": "Time Bokan 24", + "mal_id": 33026, "poster": "https://aruppi.jeluchu.xyz/res/directory/2497.jpg", "type": "Anime", "genres": [ @@ -42753,7 +42753,7 @@ { "id": "bloodivores", "title": "Bloodivores", - "mal_title": "Bloodivores", + "mal_id": 33985, "poster": "https://aruppi.jeluchu.xyz/res/directory/2498.jpg", "type": "Anime", "genres": [ @@ -42769,7 +42769,7 @@ { "id": "bubuki-buranki-hoshi-no-kyojin", "title": "Bubuki Buranki: Hoshi no Kyojin", - "mal_title": "Bubuki Buranki: Hoshi no Kyojin", + "mal_id": 33041, "poster": "https://aruppi.jeluchu.xyz/res/directory/2499.jpg", "type": "Anime", "genres": [ @@ -42786,7 +42786,7 @@ { "id": "mahou-shoujo-ikusei-keikaku", "title": "Mahou Shoujo Ikusei Keikaku", - "mal_title": "Mahou Shoujo Ikusei Keikaku", + "mal_id": 33003, "poster": "https://aruppi.jeluchu.xyz/res/directory/2500.jpg", "type": "Anime", "genres": [ @@ -42803,7 +42803,7 @@ { "id": "vivid-strike", "title": "ViVid Strike!", - "mal_title": "ViVid Strike!", + "mal_id": 33589, "poster": "https://aruppi.jeluchu.xyz/res/directory/2501.jpg", "type": "Anime", "genres": [ @@ -42819,7 +42819,7 @@ { "id": "uta-noprince-samao-maji-love-legend-star", "title": "Uta no☆Prince-sama♪ Maji Love Legend Star", - "mal_title": "Uta no☆Prince-sama♪ Maji Love Legend Star", + "mal_id": 31178, "poster": "https://aruppi.jeluchu.xyz/res/directory/2502.jpg", "type": "Anime", "genres": [ @@ -42837,7 +42837,7 @@ { "id": "tiger-mask-w", "title": "Tiger Mask W", - "mal_title": "Tiger Mask W", + "mal_id": 32881, "poster": "https://aruppi.jeluchu.xyz/res/directory/2503.jpg", "type": "Anime", "genres": [ @@ -42854,7 +42854,7 @@ { "id": "shuumatsu-no-izetta", "title": "Shuumatsu no Izetta", - "mal_title": "Shuumatsu no Izetta", + "mal_id": 33433, "poster": "https://aruppi.jeluchu.xyz/res/directory/2504.jpg", "type": "Anime", "genres": [ @@ -42870,7 +42870,7 @@ { "id": "www-working", "title": "WWW.Working!!", - "mal_title": "WWW.Working!!", + "mal_id": 33094, "poster": "https://aruppi.jeluchu.xyz/res/directory/2505.jpg", "type": "Anime", "genres": [ @@ -42885,7 +42885,7 @@ { "id": "kidou-senshi-gundam-tekketsu-no-orphans-2nd-seas", "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", - "mal_title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "mal_id": 33051, "poster": "https://aruppi.jeluchu.xyz/res/directory/2506.jpg", "type": "Anime", "genres": [ @@ -42903,7 +42903,7 @@ { "id": "show-by-rock-2nd", "title": "Show By Rock!! #", - "mal_title": "Show By Rock!! #", + "mal_id": 32038, "poster": "https://aruppi.jeluchu.xyz/res/directory/2507.jpg", "type": "Anime", "genres": [ @@ -42918,7 +42918,7 @@ { "id": "ame-iro-cocoa-in-hawaii", "title": "Ame-iro Cocoa in Hawaii", - "mal_title": "Ame-iro Cocoa in Hawaii", + "mal_id": 33245, "poster": "https://aruppi.jeluchu.xyz/res/directory/2508.jpg", "type": "Anime", "genres": [ @@ -42933,7 +42933,7 @@ { "id": "magic-kyun-renaissance", "title": "Magic Kyun! Renaissance", - "mal_title": "Magic Kyun! Renaissance", + "mal_id": 33299, "poster": "https://aruppi.jeluchu.xyz/res/directory/2509.jpg", "type": "Anime", "genres": [ @@ -42950,7 +42950,7 @@ { "id": "okusama-ga-seitokaichou", "title": "Okusama ga Seitokaichou!+!", - "mal_title": "Okusama ga Seitokaichou!+!", + "mal_id": 32603, "poster": "https://aruppi.jeluchu.xyz/res/directory/2510.jpg", "type": "Anime", "genres": [ @@ -42968,7 +42968,7 @@ { "id": "touken-ranbu-hanamaru", "title": "Touken Ranbu: Hanamaru", - "mal_title": "Touken Ranbu: Hanamaru", + "mal_id": 33023, "poster": "https://aruppi.jeluchu.xyz/res/directory/2511.jpg", "type": "Anime", "genres": [ @@ -42987,7 +42987,7 @@ { "id": "ao-oni-the-animation", "title": "Ao Oni The Animation", - "mal_title": "Ao Oni The Animation", + "mal_id": 33814, "poster": "https://aruppi.jeluchu.xyz/res/directory/2512.jpg", "type": "Anime", "genres": [ @@ -43002,7 +43002,7 @@ { "id": "idol-memories", "title": "Idol Memories", - "mal_title": "Idol Memories", + "mal_id": 33572, "poster": "https://aruppi.jeluchu.xyz/res/directory/2513.jpg", "type": "Anime", "genres": [ @@ -43016,7 +43016,7 @@ { "id": "kaitou-joker-4th-season", "title": "Kaitou Joker 4th Season", - "mal_title": "Kaitou Joker 4th Season", + "mal_id": 33490, "poster": "https://aruppi.jeluchu.xyz/res/directory/2514.jpg", "type": "Anime", "genres": [ @@ -43033,7 +43033,7 @@ { "id": "12-sai-chiccha-na-mune-no-tokimeki-2nd-season", "title": "12-Sai. Chiccha na Mune no Tokimeki 2nd Season", - "mal_title": "12-Sai. Chiccha na Mune no Tokimeki 2nd Season", + "mal_id": 33419, "poster": "https://aruppi.jeluchu.xyz/res/directory/2515.jpg", "type": "Anime", "genres": [ @@ -43049,7 +43049,7 @@ { "id": "stella-no-mahou", "title": "Stella no Mahou", - "mal_title": "Stella no Mahou", + "mal_id": 32555, "poster": "https://aruppi.jeluchu.xyz/res/directory/2516.jpg", "type": "Anime", "genres": [ @@ -43065,7 +43065,7 @@ { "id": "gakuen-handsome", "title": "Gakuen Handsome", - "mal_title": "Gakuen Handsome", + "mal_id": 33392, "poster": "https://aruppi.jeluchu.xyz/res/directory/2517.jpg", "type": "Anime", "genres": [ @@ -43082,7 +43082,7 @@ { "id": "trickster-edogawa-ranpo-shounen-tanteidan-yori", "title": "Trickster: Edogawa Ranpo \"Shounen Tanteidan\" yori", - "mal_title": "Trickster: Edogawa Ranpo \"Shounen Tanteidan\" yori", + "mal_id": 33377, "poster": "https://aruppi.jeluchu.xyz/res/directory/2518.jpg", "type": "Anime", "genres": [ @@ -43096,7 +43096,7 @@ { "id": "shakunetsu-no-takkyuu-musume", "title": "Shakunetsu no Takkyuu Musume", - "mal_title": "Shakunetsu no Takkyuu Musume", + "mal_id": 33031, "poster": "https://aruppi.jeluchu.xyz/res/directory/2519.jpg", "type": "Anime", "genres": [ @@ -43110,7 +43110,7 @@ { "id": "soushin-shoujo-matoi", "title": "Soushin Shoujo Matoi", - "mal_title": "Soushin Shoujo Matoi", + "mal_id": 33668, "poster": "https://aruppi.jeluchu.xyz/res/directory/2520.jpg", "type": "Anime", "genres": [ @@ -43125,7 +43125,7 @@ { "id": "natsume-yuujinchou-go", "title": "Natsume Yuujinchou Go", - "mal_title": "Natsume Yuujinchou Go", + "mal_id": 32983, "poster": "https://aruppi.jeluchu.xyz/res/directory/2521.jpg", "type": "Anime", "genres": [ @@ -43143,7 +43143,7 @@ { "id": "nanbaka", "title": "Nanbaka", - "mal_title": "Nanbaka", + "mal_id": 30016, "poster": "https://aruppi.jeluchu.xyz/res/directory/2522.jpg", "type": "Anime", "genres": [ @@ -43159,7 +43159,7 @@ { "id": "nobunaga-no-shinobi", "title": "Nobunaga no Shinobi", - "mal_title": "Nobunaga no Shinobi", + "mal_id": 32829, "poster": "https://aruppi.jeluchu.xyz/res/directory/2523.jpg", "type": "Anime", "genres": [ @@ -43174,7 +43174,7 @@ { "id": "zutto-mae-kara-suki-deshita-kokuhaku-jikkou-Iinkai", "title": "Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai", - "mal_title": "Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai", + "mal_id": 31245, "poster": "https://aruppi.jeluchu.xyz/res/directory/2524.jpg", "type": "Película", "genres": [ @@ -43189,7 +43189,7 @@ { "id": "kaijuu-girls-ultra-kaijuu-gijinka-keikaku", "title": "Kaijuu Girls: Ultra Kaijuu Gijinka Keikaku", - "mal_title": "Kaijuu Girls: Ultra Kaijuu Gijinka Keikaku", + "mal_id": 33011, "poster": "https://aruppi.jeluchu.xyz/res/directory/2525.jpg", "type": "OVA", "genres": [ @@ -43205,7 +43205,7 @@ { "id": "cheating-craft", "title": "Cheating Craft", - "mal_title": "Cheating Craft", + "mal_id": 33771, "poster": "https://aruppi.jeluchu.xyz/res/directory/2526.jpg", "type": "Anime", "genres": [ @@ -43221,7 +43221,7 @@ { "id": "to-be-hero", "title": "To Be Hero", - "mal_title": "To Be Hero", + "mal_id": 34009, "poster": "https://aruppi.jeluchu.xyz/res/directory/2527.jpg", "type": "Anime", "genres": [ @@ -43235,7 +43235,7 @@ { "id": "bishoujo-yuugi-unit-crane-game-girls-galaxy", "title": "Bishoujo Yuugi Unit Crane Game Girls Galaxy", - "mal_title": "Bishoujo Yuugi Unit Crane Game Girls Galaxy", + "mal_id": 33541, "poster": "https://aruppi.jeluchu.xyz/res/directory/2528.jpg", "type": "Anime", "genres": [ @@ -43251,7 +43251,7 @@ { "id": "nazotokine", "title": "Nazotokine", - "mal_title": "Nazotokine", + "mal_id": 33690, "poster": "https://aruppi.jeluchu.xyz/res/directory/2529.jpg", "type": "Anime", "genres": [ @@ -43265,7 +43265,7 @@ { "id": "teekyuu-8", "title": "Teekyuu 8", - "mal_title": "Teekyuu 8", + "mal_id": 33811, "poster": "https://aruppi.jeluchu.xyz/res/directory/2530.jpg", "type": "Anime", "genres": [ @@ -43281,7 +43281,7 @@ { "id": "kiitarou-shounen-no-youkai-enikki", "title": "Kiitarou Shounen no Youkai Enikki", - "mal_title": "Kiitarou Shounen no Youkai Enikki", + "mal_id": 33244, "poster": "https://aruppi.jeluchu.xyz/res/directory/2531.jpg", "type": "Anime", "genres": [ @@ -43296,7 +43296,7 @@ { "id": "mahou-shoujo-nante-mou-ii-desukara-2nd-season", "title": "Mahou Shoujo Nante Mou Ii Desukara. 2nd Season", - "mal_title": "Mahou Shoujo Nante Mou Ii Desukara. 2nd Season", + "mal_id": 33795, "poster": "https://aruppi.jeluchu.xyz/res/directory/2532.jpg", "type": "Anime", "genres": [ @@ -43311,7 +43311,7 @@ { "id": "anitore-xx", "title": "Anitore! XX", - "mal_title": "Anitore! XX", + "mal_id": 31519, "poster": "https://aruppi.jeluchu.xyz/res/directory/2533.jpg", "type": "Anime", "genres": [ @@ -43326,7 +43326,7 @@ { "id": "hibike-euphonium-2", "title": "Hibike! Euphonium 2", - "mal_title": "Hibike! Euphonium 2", + "mal_id": 31988, "poster": "https://aruppi.jeluchu.xyz/res/directory/2534.jpg", "type": "Anime", "genres": [ @@ -43342,7 +43342,7 @@ { "id": "bungou-stray-dogs-2nd-season", "title": "Bungou Stray Dogs 2nd Season", - "mal_title": "Bungou Stray Dogs 2nd Season", + "mal_id": 32867, "poster": "https://aruppi.jeluchu.xyz/res/directory/2535.jpg", "type": "Anime", "genres": [ @@ -43358,7 +43358,7 @@ { "id": "brave-witches", "title": "Brave Witches", - "mal_title": "Brave Witches", + "mal_id": 32866, "poster": "https://aruppi.jeluchu.xyz/res/directory/2536.jpg", "type": "Anime", "genres": [ @@ -43376,7 +43376,7 @@ { "id": "yuri-on-ice", "title": "Yuri!!! on Ice", - "mal_title": "Yuri!!! on Ice", + "mal_id": 32995, "poster": "https://aruppi.jeluchu.xyz/res/directory/2537.jpg", "type": "Anime", "genres": [ @@ -43391,7 +43391,7 @@ { "id": "flip-flappers", "title": "Flip Flappers", - "mal_title": "Flip Flappers", + "mal_id": 32979, "poster": "https://aruppi.jeluchu.xyz/res/directory/2538.jpg", "type": "Anime", "genres": [ @@ -43406,7 +43406,7 @@ { "id": "keijo", "title": "Keijo!!!!!!!!", - "mal_title": "Keijo!!!!!!!!", + "mal_id": 32686, "poster": "https://aruppi.jeluchu.xyz/res/directory/2539.jpg", "type": "Anime", "genres": [ @@ -43422,7 +43422,7 @@ { "id": "all-out", "title": "All Out!!", - "mal_title": "All Out!!", + "mal_id": 31588, "poster": "https://aruppi.jeluchu.xyz/res/directory/2540.jpg", "type": "Anime", "genres": [ @@ -43438,7 +43438,7 @@ { "id": "watashi-ga-motete-dousunda", "title": "Watashi ga Motete Dousunda", - "mal_title": "Watashi ga Motete Dousunda", + "mal_id": 32899, "poster": "https://aruppi.jeluchu.xyz/res/directory/2541.jpg", "type": "Anime", "genres": [ @@ -43456,7 +43456,7 @@ { "id": "giarlish-number", "title": "Gi(a)rlish Number", - "mal_title": "Gi(a)rlish Number", + "mal_id": 32607, "poster": "https://aruppi.jeluchu.xyz/res/directory/2542.jpg", "type": "Anime", "genres": [ @@ -43470,7 +43470,7 @@ { "id": "soul-buster", "title": "Soul Buster", - "mal_title": "Soul Buster", + "mal_id": 33775, "poster": "https://aruppi.jeluchu.xyz/res/directory/2543.jpg", "type": "Anime", "genres": [ @@ -43485,7 +43485,7 @@ { "id": "bernard-jou-iwaku", "title": "Bernard-jou Iwaku.", - "mal_title": "Bernard-jou Iwaku.", + "mal_id": 33462, "poster": "https://aruppi.jeluchu.xyz/res/directory/2544.jpg", "type": "Anime", "genres": [ @@ -43500,7 +43500,7 @@ { "id": "drifters", "title": "Drifters", - "mal_title": "Drifters", + "mal_id": 31339, "poster": "https://aruppi.jeluchu.xyz/res/directory/2545.jpg", "type": "Anime", "genres": [ @@ -43520,7 +43520,7 @@ { "id": "lostorage-incited-wixoss", "title": "Lostorage Incited WIXOSS", - "mal_title": "Lostorage Incited WIXOSS", + "mal_id": 33197, "poster": "https://aruppi.jeluchu.xyz/res/directory/2546.jpg", "type": "Anime", "genres": [ @@ -43535,7 +43535,7 @@ { "id": "haikyuu-third-season", "title": "Haikyuu!! Third Season", - "mal_title": "Haikyuu!! Third Season", + "mal_id": 32935, "poster": "https://aruppi.jeluchu.xyz/res/directory/2547.jpg", "type": "Anime", "genres": [ @@ -43553,7 +43553,7 @@ { "id": "ajin-2nd-season", "title": "Ajin 2nd Season", - "mal_title": "Ajin 2nd Season", + "mal_id": 33253, "poster": "https://aruppi.jeluchu.xyz/res/directory/2548.jpg", "type": "Anime", "genres": [ @@ -43571,7 +43571,7 @@ { "id": "classicaloid", "title": "ClassicaLoid", - "mal_title": "ClassicaLoid", + "mal_id": 31157, "poster": "https://aruppi.jeluchu.xyz/res/directory/2549.jpg", "type": "Anime", "genres": [ @@ -43586,7 +43586,7 @@ { "id": "long-riders", "title": "Long Riders!", - "mal_title": "Long Riders!", + "mal_id": 30652, "poster": "https://aruppi.jeluchu.xyz/res/directory/2550.jpg", "type": "Anime", "genres": [ @@ -43603,7 +43603,7 @@ { "id": "3-gatsu-no-lion", "title": "3-gatsu no Lion", - "mal_title": "3-gatsu no Lion", + "mal_id": 31646, "poster": "https://aruppi.jeluchu.xyz/res/directory/2551.jpg", "type": "Anime", "genres": [ @@ -43620,7 +43620,7 @@ { "id": "occulticnine", "title": "Occultic;Nine", - "mal_title": "Occultic;Nine", + "mal_id": 32962, "poster": "https://aruppi.jeluchu.xyz/res/directory/2552.jpg", "type": "Anime", "genres": [ @@ -43635,7 +43635,7 @@ { "id": "sengoku-choujuu-giga", "title": "Sengoku Choujuu Giga", - "mal_title": "Sengoku Choujuu Giga", + "mal_id": 34738, "poster": "https://aruppi.jeluchu.xyz/res/directory/2553.jpg", "type": "Anime", "genres": [ @@ -43651,7 +43651,7 @@ { "id": "udon-no-kuni-no-kiniro-kemari", "title": "Udon no Kuni no Kiniro Kemari", - "mal_title": "Udon no Kuni no Kiniro Kemari", + "mal_id": 32673, "poster": "https://aruppi.jeluchu.xyz/res/directory/2554.jpg", "type": "Anime", "genres": [ @@ -43667,7 +43667,7 @@ { "id": "fune-wo-amu", "title": "Fune wo Amu", - "mal_title": "Fune wo Amu", + "mal_id": 32948, "poster": "https://aruppi.jeluchu.xyz/res/directory/2555.jpg", "type": "Anime", "genres": [ @@ -43683,7 +43683,7 @@ { "id": "karigurashi-no-arrietty", "title": "Karigurashi no Arrietty", - "mal_title": "Karigurashi no Arrietty", + "mal_id": 7711, "poster": "https://aruppi.jeluchu.xyz/res/directory/2556.jpg", "type": "Película", "genres": [ @@ -43697,7 +43697,7 @@ { "id": "digimon-universe-appli-monsters", "title": "Digimon Universe: Appli Monsters", - "mal_title": "Digimon Universe: Appli Monsters", + "mal_id": 33314, "poster": "https://aruppi.jeluchu.xyz/res/directory/2557.jpg", "type": "Anime", "genres": [ @@ -43715,7 +43715,7 @@ { "id": "masou-gakuen-hxh-special", "title": "Masou Gakuen HxH Special", - "mal_title": "Masou Gakuen HxH Special", + "mal_id": 34447, "poster": "https://aruppi.jeluchu.xyz/res/directory/2558.jpg", "type": "OVA", "genres": [ @@ -43730,7 +43730,7 @@ { "id": "getsuyoubi-no-tawawa", "title": "Getsuyoubi no Tawawa", - "mal_title": "Getsuyoubi no Tawawa", + "mal_id": 34213, "poster": "https://aruppi.jeluchu.xyz/res/directory/2559.jpg", "type": "OVA", "genres": [ @@ -43744,7 +43744,7 @@ { "id": "yahari-ore-no-seishun-love-comedy-wa-machigatteiru-zoku-ova", "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", - "mal_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", + "mal_id": 33161, "poster": "https://aruppi.jeluchu.xyz/res/directory/2560.jpg", "type": "OVA", "genres": [ @@ -43760,7 +43760,7 @@ { "id": "gintama-aizome-kaori-hen", "title": "Gintama°: Aizome Kaori-hen", - "mal_title": "Gintama°: Aizome Kaori-hen", + "mal_id": 32366, "poster": "https://aruppi.jeluchu.xyz/res/directory/2561.jpg", "type": "OVA", "genres": [ @@ -43775,7 +43775,7 @@ { "id": "kubikiri-cycle-aoiro-savant-to-zaregototsukai", "title": "Kubikiri Cycle: Aoiro Savant to Zaregototsukai", - "mal_title": "Kubikiri Cycle: Aoiro Savant to Zaregototsukai", + "mal_id": 33263, "poster": "https://aruppi.jeluchu.xyz/res/directory/2562.jpg", "type": "OVA", "genres": [ @@ -43792,7 +43792,7 @@ { "id": "luger-code-1951", "title": "Luger Code 1951", - "mal_title": "Luger Code 1951", + "mal_id": 31598, "poster": "https://aruppi.jeluchu.xyz/res/directory/2563.jpg", "type": "OVA", "genres": [ @@ -43807,7 +43807,7 @@ { "id": "shin-gekijouban-initial-d-legend-3-mugen", "title": "Shin Gekijouban Initial D: Legend 3 - Mugen", - "mal_title": "Shin Gekijouban Initial D: Legend 3 - Mugen", + "mal_id": 30952, "poster": "https://aruppi.jeluchu.xyz/res/directory/2564.jpg", "type": "Película", "genres": [ @@ -43823,7 +43823,7 @@ { "id": "kuroko-no-basket-movie-1-winter-cup", "title": "Kuroko no Basket Movie 1: Winter Cup Soushuuhen - Kage to Hikari", - "mal_title": "Kuroko no Basket Movie 1: Winter Cup Soushuuhen - Kage to Hikari", + "mal_id": 32869, "poster": "https://aruppi.jeluchu.xyz/res/directory/2565.jpg", "type": "Película", "genres": [ @@ -43839,7 +43839,7 @@ { "id": "phantom-of-the-kill-zero-kara-no-hangyaku", "title": "Phantom of the Kill: Zero kara no Hangyaku", - "mal_title": "Phantom of the Kill: Zero kara no Hangyaku", + "mal_id": 31927, "poster": "https://aruppi.jeluchu.xyz/res/directory/2566.jpg", "type": "Película", "genres": [ @@ -43855,7 +43855,7 @@ { "id": "pripara-movie-mi-nna-no-akogare-lets-go-prix-paris", "title": "PriPara Movie: Mi~nna no Akogare♪ Let's Go☆Prix Paris", - "mal_title": "PriPara Movie: Mi~nna no Akogare♪ Let's Go☆Prix Paris", + "mal_id": 31919, "poster": "https://aruppi.jeluchu.xyz/res/directory/2567.jpg", "type": "Película", "genres": [ @@ -43872,7 +43872,7 @@ { "id": "monster-musume-no-iru-nichijou-ova", "title": "Monster Musume no Iru Nichijou OVA", - "mal_title": "Monster Musume no Iru Nichijou OVA", + "mal_id": 32698, "poster": "https://aruppi.jeluchu.xyz/res/directory/2568.jpg", "type": "OVA", "genres": [ @@ -43891,7 +43891,7 @@ { "id": "natsume-yuujinchou-go-ova", "title": "Natsume Yuujinchou Go OVA", - "mal_title": "Natsume Yuujinchou Go OVA", + "mal_id": 11665, "poster": "https://aruppi.jeluchu.xyz/res/directory/2569.jpg", "type": "OVA", "genres": [ @@ -43909,7 +43909,7 @@ { "id": "arslan-senki-tv-ova", "title": "Arslan Senki (TV) OVA", - "mal_title": "Arslan Senki (TV) OVA", + "mal_id": 33254, "poster": "https://aruppi.jeluchu.xyz/res/directory/2570.jpg", "type": "OVA", "genres": [ @@ -43926,7 +43926,7 @@ { "id": "pokemon-sun-moon", "title": "Pokemon Sun & Moon", - "mal_title": "Pokemon Sun & Moon", + "mal_id": 34034, "poster": "https://aruppi.jeluchu.xyz/res/directory/2571.jpg", "type": "Anime", "genres": [ @@ -43943,7 +43943,7 @@ { "id": "hagane-orchestra", "title": "Hagane Orchestra", - "mal_title": "Hagane Orchestra", + "mal_id": 34013, "poster": "https://aruppi.jeluchu.xyz/res/directory/2572.jpg", "type": "Anime", "genres": [ @@ -43958,7 +43958,7 @@ { "id": "strike-the-blood-ii", "title": "Strike the Blood II", - "mal_title": "Strike the Blood II", + "mal_id": 33286, "poster": "https://aruppi.jeluchu.xyz/res/directory/2573.jpg", "type": "OVA", "genres": [ @@ -43978,7 +43978,7 @@ { "id": "shigofumi-special", "title": "Shigofumi Special", - "mal_title": "Shigofumi Special", + "mal_id": 4715, "poster": "https://aruppi.jeluchu.xyz/res/directory/2574.jpg", "type": "OVA", "genres": [ @@ -43995,7 +43995,7 @@ { "id": "shigofumi-picture-drama", "title": "Shigofumi Picture Drama", - "mal_title": "Shigofumi Picture Drama", + "mal_id": 4173, "poster": "https://aruppi.jeluchu.xyz/res/directory/2575.jpg", "type": "Anime", "genres": [ @@ -44009,7 +44009,7 @@ { "id": "yahari-ore-no-seishun-love-comedy-wa-machigatteir", "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA", - "mal_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA", + "mal_id": 18753, "poster": "https://aruppi.jeluchu.xyz/res/directory/2576.jpg", "type": "OVA", "genres": [ @@ -44025,7 +44025,7 @@ { "id": "kingsglaive-final-fantasy-xv", "title": "Kingsglaive: Final Fantasy XV", - "mal_title": "Kingsglaive: Final Fantasy XV", + "mal_id": 33082, "poster": "https://aruppi.jeluchu.xyz/res/directory/2577.jpg", "type": "Película", "genres": [ @@ -44039,7 +44039,7 @@ { "id": "fatekaleid-liner-prismaillya-3rei-special", "title": "Fate/kaleid liner Prisma☆Illya 3rei!! Special", - "mal_title": "Fate/kaleid liner Prisma☆Illya 3rei!! Special", + "mal_id": 33456, "poster": "https://aruppi.jeluchu.xyz/res/directory/2578.jpg", "type": "OVA", "genres": [ @@ -44055,7 +44055,7 @@ { "id": "dungeon-ni-deai-wo-motomeru-no-wa-machigatteiru-d", "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", - "mal_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", + "mal_id": 32801, "poster": "https://aruppi.jeluchu.xyz/res/directory/2579.jpg", "type": "OVA", "genres": [ @@ -44073,7 +44073,7 @@ { "id": "one-piece-film-gold", "title": "One Piece Film: Gold", - "mal_title": "One Piece Film: Gold", + "mal_id": 31490, "poster": "https://aruppi.jeluchu.xyz/res/directory/2580.jpg", "type": "Película", "genres": [ @@ -44092,7 +44092,7 @@ { "id": "chain-chronicle-haecceitas-no-hikari-part", "title": "Chain Chronicle: Haecceitas no Hikari Part 1", - "mal_title": "Chain Chronicle: Haecceitas no Hikari Part 1", + "mal_id": 33728, "poster": "https://aruppi.jeluchu.xyz/res/directory/2581.jpg", "type": "Película", "genres": [ @@ -44110,7 +44110,7 @@ { "id": "koro-sensei-quest", "title": "Koro-sensei Quest!", - "mal_title": "Koro-sensei Quest!", + "mal_id": 34389, "poster": "https://aruppi.jeluchu.xyz/res/directory/2582.jpg", "type": "OVA", "genres": [ @@ -44126,7 +44126,7 @@ { "id": "pokemon-pelicula-19-volcanion-to-karakuri-no-magiana", "title": "Pokemon Película 19: Volcanion to Karakuri no Magiana", - "mal_title": "Pokemon Película 19: Volcanion to Karakuri no Magiana", + "mal_id": 31231, "poster": "https://aruppi.jeluchu.xyz/res/directory/2583.jpg", "type": "Película", "genres": [ @@ -44142,7 +44142,7 @@ { "id": "kizumonogatari-ii-nekketsu-hen", "title": "Kizumonogatari II: Nekketsu-hen", - "mal_title": "Kizumonogatari II: Nekketsu-hen", + "mal_id": 31757, "poster": "https://aruppi.jeluchu.xyz/res/directory/2584.jpg", "type": "Película", "genres": [ @@ -44159,7 +44159,7 @@ { "id": "kamisama-hajimemashita-shiawase-ni-naru", "title": "Kamisama Hajimemashita: Kamisama, Shiawase ni Naru", - "mal_title": "Kamisama Hajimemashita: Kamisama, Shiawase ni Naru", + "mal_id": 33323, "poster": "https://aruppi.jeluchu.xyz/res/directory/2585.jpg", "type": "OVA", "genres": [ @@ -44178,7 +44178,7 @@ { "id": "garo-divine-flame", "title": "Garo Movie: Divine Flame", - "mal_title": "Garo Movie: Divine Flame", + "mal_id": 28539, "poster": "https://aruppi.jeluchu.xyz/res/directory/2586.jpg", "type": "Película", "genres": [ @@ -44196,7 +44196,7 @@ { "id": "fate-grand-order-first-order", "title": "Fate/Grand Order: First Order", - "mal_title": "Fate/Grand Order: First Order", + "mal_id": 34321, "poster": "https://aruppi.jeluchu.xyz/res/directory/2587.jpg", "type": "Película", "genres": [ @@ -44213,7 +44213,7 @@ { "id": "ai-mai-mii-surgical-friends", "title": "Ai Mai Mii: Surgical Friends", - "mal_title": "Ai Mai Mii: Surgical Friends", + "mal_id": 34295, "poster": "https://aruppi.jeluchu.xyz/res/directory/2588.jpg", "type": "Anime", "genres": [ @@ -44227,7 +44227,7 @@ { "id": "akibas-trip-the-animation", "title": "Akiba's Trip The Animation", - "mal_title": "Akiba's Trip The Animation", + "mal_id": 34051, "poster": "https://aruppi.jeluchu.xyz/res/directory/2589.jpg", "type": "Anime", "genres": [ @@ -44243,7 +44243,7 @@ { "id": "masamune-kun-no-revenge", "title": "Masamune-kun no Revenge", - "mal_title": "Masamune-kun no Revenge", + "mal_id": 33487, "poster": "https://aruppi.jeluchu.xyz/res/directory/2590.jpg", "type": "Anime", "genres": [ @@ -44261,7 +44261,7 @@ { "id": "urara-meirochou", "title": "Urara Meirochou", - "mal_title": "Urara Meirochou", + "mal_id": 32924, "poster": "https://aruppi.jeluchu.xyz/res/directory/2591.jpg", "type": "Anime", "genres": [ @@ -44278,7 +44278,7 @@ { "id": "seiren", "title": "Seiren", - "mal_title": "Seiren", + "mal_id": 33836, "poster": "https://aruppi.jeluchu.xyz/res/directory/2592.jpg", "type": "Anime", "genres": [ @@ -44292,7 +44292,7 @@ { "id": "fuuka", "title": "Fuuka", - "mal_title": "Fuuka", + "mal_id": 33743, "poster": "https://aruppi.jeluchu.xyz/res/directory/2593.jpg", "type": "Anime", "genres": [ @@ -44311,7 +44311,7 @@ { "id": "youjo-senki", "title": "Youjo Senki", - "mal_title": "Youjo Senki", + "mal_id": 32615, "poster": "https://aruppi.jeluchu.xyz/res/directory/2594.jpg", "type": "Anime", "genres": [ @@ -44326,7 +44326,7 @@ { "id": "minami-kamakura-koukou-joshi-jitensha-bu", "title": "Minami Kamakura Koukou Joshi Jitensha-bu", - "mal_title": "Minami Kamakura Koukou Joshi Jitensha-bu", + "mal_id": 31422, "poster": "https://aruppi.jeluchu.xyz/res/directory/2595.jpg", "type": "Anime", "genres": [ @@ -44342,7 +44342,7 @@ { "id": "schoolgirl-strikers-animation-channel", "title": "Schoolgirl Strikers: Animation Channel", - "mal_title": "Schoolgirl Strikers: Animation Channel", + "mal_id": 34289, "poster": "https://aruppi.jeluchu.xyz/res/directory/2596.jpg", "type": "Anime", "genres": [ @@ -44357,7 +44357,7 @@ { "id": "ao-no-exorcist-kyoto-fujouou-hen", "title": "Ao no Exorcist: Kyoto Fujouou-hen", - "mal_title": "Ao no Exorcist: Kyoto Fujouou-hen", + "mal_id": 33506, "poster": "https://aruppi.jeluchu.xyz/res/directory/2597.jpg", "type": "Anime", "genres": [ @@ -44375,7 +44375,7 @@ { "id": "shouwa-genroku-rakugo-shinjuu-sukeroku-futatabi", "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", - "mal_title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "mal_id": 33095, "poster": "https://aruppi.jeluchu.xyz/res/directory/2598.jpg", "type": "Anime", "genres": [ @@ -44390,7 +44390,7 @@ { "id": "spiritpact", "title": "Spiritpact", - "mal_title": "Spiritpact", + "mal_id": 33605, "poster": "https://aruppi.jeluchu.xyz/res/directory/2599.jpg", "type": "Anime", "genres": [ @@ -44408,7 +44408,7 @@ { "id": "demi-chan-wa-kataritai", "title": "Demi-chan wa Kataritai", - "mal_title": "Demi-chan wa Kataritai", + "mal_id": 33988, "poster": "https://aruppi.jeluchu.xyz/res/directory/2600.jpg", "type": "Anime", "genres": [ @@ -44425,7 +44425,7 @@ { "id": "reikenzan-eichi-e-no-shikaku", "title": "Reikenzan: Eichi e no Shikaku", - "mal_title": "Reikenzan: Eichi e no Shikaku", + "mal_id": 33019, "poster": "https://aruppi.jeluchu.xyz/res/directory/2601.jpg", "type": "Anime", "genres": [ @@ -44441,7 +44441,7 @@ { "id": "chain-chronicle-haecceitas-no-hikari", "title": "Chain Chronicle: Haecceitas no Hikari", - "mal_title": "Chain Chronicle: Haecceitas no Hikari", + "mal_id": 28833, "poster": "https://aruppi.jeluchu.xyz/res/directory/2602.jpg", "type": "Anime", "genres": [ @@ -44459,7 +44459,7 @@ { "id": "eldlive", "title": "ēlDLIVE", - "mal_title": "ēlDLIVE", + "mal_id": 32878, "poster": "https://aruppi.jeluchu.xyz/res/directory/2603.jpg", "type": "Anime", "genres": [ @@ -44475,7 +44475,7 @@ { "id": "nyanko-days", "title": "Nyanko Days", - "mal_title": "Nyanko Days", + "mal_id": 34148, "poster": "https://aruppi.jeluchu.xyz/res/directory/2604.jpg", "type": "Anime", "genres": [ @@ -44490,7 +44490,7 @@ { "id": "tales-of-zestiria-the-x-2017", "title": "Tales of Zestiria the X (2017)", - "mal_title": "Tales of Zestiria the X (2017)", + "mal_id": 34086, "poster": "https://aruppi.jeluchu.xyz/res/directory/2605.jpg", "type": "Anime", "genres": [ @@ -44506,7 +44506,7 @@ { "id": "idol-jihen", "title": "Idol Jihen", - "mal_title": "Idol Jihen", + "mal_id": 34028, "poster": "https://aruppi.jeluchu.xyz/res/directory/2606.jpg", "type": "Anime", "genres": [ @@ -44520,7 +44520,7 @@ { "id": "little-witch-academia-tv", "title": "Little Witch Academia (TV)", - "mal_title": "Little Witch Academia (TV)", + "mal_id": 33489, "poster": "https://aruppi.jeluchu.xyz/res/directory/2607.jpg", "type": "Anime", "genres": [ @@ -44538,7 +44538,7 @@ { "id": "gintama-2017", "title": "Gintama.", - "mal_title": "Gintama.", + "mal_id": 918, "poster": "https://aruppi.jeluchu.xyz/res/directory/2608.jpg", "type": "Anime", "genres": [ @@ -44558,7 +44558,7 @@ { "id": "gabriel-dropout", "title": "Gabriel DropOut", - "mal_title": "Gabriel DropOut", + "mal_id": 33731, "poster": "https://aruppi.jeluchu.xyz/res/directory/2609.jpg", "type": "Anime", "genres": [ @@ -44575,7 +44575,7 @@ { "id": "chiruran-nibun-no-ichi", "title": "Chiruran: Nibun no Ichi", - "mal_title": "Chiruran: Nibun no Ichi", + "mal_id": 34088, "poster": "https://aruppi.jeluchu.xyz/res/directory/2610.jpg", "type": "Anime", "genres": [ @@ -44591,7 +44591,7 @@ { "id": "yowamushi-pedal-new-generation", "title": "Yowamushi Pedal: New Generation", - "mal_title": "Yowamushi Pedal: New Generation", + "mal_id": 31783, "poster": "https://aruppi.jeluchu.xyz/res/directory/2611.jpg", "type": "Anime", "genres": [ @@ -44608,7 +44608,7 @@ { "id": "onihei", "title": "Onihei", - "mal_title": "Onihei", + "mal_id": 33983, "poster": "https://aruppi.jeluchu.xyz/res/directory/2612.jpg", "type": "Anime", "genres": [ @@ -44623,7 +44623,7 @@ { "id": "acca-13-ku-kansatsu-ka", "title": "ACCA: 13-ku Kansatsu-ka", - "mal_title": "ACCA: 13-ku Kansatsu-ka", + "mal_id": 33337, "poster": "https://aruppi.jeluchu.xyz/res/directory/2613.jpg", "type": "Anime", "genres": [ @@ -44640,7 +44640,7 @@ { "id": "hand-shakers", "title": "Hand Shakers", - "mal_title": "Hand Shakers", + "mal_id": 32981, "poster": "https://aruppi.jeluchu.xyz/res/directory/2614.jpg", "type": "Anime", "genres": [ @@ -44654,7 +44654,7 @@ { "id": "kemono-friends", "title": "Kemono Friends", - "mal_title": "Kemono Friends", + "mal_id": 35313, "poster": "https://aruppi.jeluchu.xyz/res/directory/2615.jpg", "type": "Anime", "genres": [ @@ -44669,7 +44669,7 @@ { "id": "piace-watashi-no-italian", "title": "Piace: Watashi no Italian", - "mal_title": "Piace: Watashi no Italian", + "mal_id": 33447, "poster": "https://aruppi.jeluchu.xyz/res/directory/2616.jpg", "type": "Anime", "genres": [ @@ -44684,7 +44684,7 @@ { "id": "one-room", "title": "One Room", - "mal_title": "One Room", + "mal_id": 34392, "poster": "https://aruppi.jeluchu.xyz/res/directory/2617.jpg", "type": "Anime", "genres": [ @@ -44698,7 +44698,7 @@ { "id": "chaos-child", "title": "ChäoS;Child", - "mal_title": "ChäoS;Child", + "mal_id": 30485, "poster": "https://aruppi.jeluchu.xyz/res/directory/2618.jpg", "type": "Anime", "genres": [ @@ -44716,7 +44716,7 @@ { "id": "kobayashi-san-chi-no-maid-dragon", "title": "Kobayashi-san Chi no Maid Dragon", - "mal_title": "Kobayashi-san Chi no Maid Dragon", + "mal_id": 33206, "poster": "https://aruppi.jeluchu.xyz/res/directory/2619.jpg", "type": "Anime", "genres": [ @@ -44732,7 +44732,7 @@ { "id": "kono-subarashii-sekai-ni-shukufuku-wo-2", "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", - "mal_title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "mal_id": 32937, "poster": "https://aruppi.jeluchu.xyz/res/directory/2620.jpg", "type": "Anime", "genres": [ @@ -44750,7 +44750,7 @@ { "id": "marginal4-kiss-kara-tsukuru-big-bang", "title": "Marginal#4: Kiss kara Tsukuru Big Bang", - "mal_title": "Marginal#4: Kiss kara Tsukuru Big Bang", + "mal_id": 33788, "poster": "https://aruppi.jeluchu.xyz/res/directory/2621.jpg", "type": "Anime", "genres": [ @@ -44766,7 +44766,7 @@ { "id": "super-lovers-2", "title": "Super Lovers 2", - "mal_title": "Super Lovers 2", + "mal_id": 33417, "poster": "https://aruppi.jeluchu.xyz/res/directory/2622.jpg", "type": "Anime", "genres": [ @@ -44783,7 +44783,7 @@ { "id": "kuzu-no-honkai", "title": "Kuzu no Honkai", - "mal_title": "Kuzu no Honkai", + "mal_id": 32949, "poster": "https://aruppi.jeluchu.xyz/res/directory/2623.jpg", "type": "Anime", "genres": [ @@ -44800,7 +44800,7 @@ { "id": "rewrite-moon-and-terra", "title": "Rewrite: Moon and Terra", - "mal_title": "Rewrite: Moon and Terra", + "mal_id": 34126, "poster": "https://aruppi.jeluchu.xyz/res/directory/2624.jpg", "type": "Anime", "genres": [ @@ -44819,7 +44819,7 @@ { "id": "granblue-fantasy-the-animation", "title": "Granblue Fantasy The Animation", - "mal_title": "Granblue Fantasy The Animation", + "mal_id": 31629, "poster": "https://aruppi.jeluchu.xyz/res/directory/2625.jpg", "type": "Especial", "genres": [ @@ -44833,7 +44833,7 @@ { "id": "super-lovers-ova", "title": "Super Lovers OVA", - "mal_title": "Super Lovers OVA", + "mal_id": 33013, "poster": "https://aruppi.jeluchu.xyz/res/directory/2626.jpg", "type": "OVA", "genres": [ @@ -44850,7 +44850,7 @@ { "id": "yami-shibai-4th-season", "title": "Yami Shibai 4th Season", - "mal_title": "Yami Shibai 4th Season", + "mal_id": 34467, "poster": "https://aruppi.jeluchu.xyz/res/directory/2627.jpg", "type": "Anime", "genres": [ @@ -44866,7 +44866,7 @@ { "id": "bang-dream", "title": "BanG Dream!", - "mal_title": "BanG Dream!", + "mal_id": 33573, "poster": "https://aruppi.jeluchu.xyz/res/directory/2628.jpg", "type": "Anime", "genres": [ @@ -44880,7 +44880,7 @@ { "id": "kuroko-no-basket-movie-2", "title": "Kuroko no Basket Movie 2: Winter Cup Soushuuhen - Namida no Saki e", - "mal_title": "Kuroko no Basket Movie 2: Winter Cup Soushuuhen - Namida no Saki e", + "mal_id": 32870, "poster": "https://aruppi.jeluchu.xyz/res/directory/2629.jpg", "type": "Película", "genres": [ @@ -44896,7 +44896,7 @@ { "id": "vivid-strike-specials", "title": "ViVid Strike! Specials", - "mal_title": "ViVid Strike! Specials", + "mal_id": 34812, "poster": "https://aruppi.jeluchu.xyz/res/directory/2630.jpg", "type": "OVA", "genres": [ @@ -44912,7 +44912,7 @@ { "id": "ao-oni-the-animation-movie", "title": "Ao Oni The Animation (Movie)", - "mal_title": "Ao Oni The Animation (Movie)", + "mal_id": 33820, "poster": "https://aruppi.jeluchu.xyz/res/directory/2631.jpg", "type": "Película", "genres": [ @@ -44927,7 +44927,7 @@ { "id": "kiddy-girl", "title": "Kiddy Girl", - "mal_title": "Kiddy Girl", + "mal_id": 3349, "poster": "https://aruppi.jeluchu.xyz/res/directory/2632.jpg", "type": "Anime", "genres": [ @@ -44945,7 +44945,7 @@ { "id": "upotte-ova", "title": "Upotte!! OVA", - "mal_title": "Upotte!! OVA", + "mal_id": 14173, "poster": "https://aruppi.jeluchu.xyz/res/directory/2633.jpg", "type": "OVA", "genres": [ @@ -44963,7 +44963,7 @@ { "id": "kuroko-no-basket-movie-3-winter-cup", "title": "Kuroko no Basket Movie 3: Winter Cup Soushuuhen - Tobira no Mukou", - "mal_title": "Kuroko no Basket Movie 3: Winter Cup Soushuuhen - Tobira no Mukou", + "mal_id": 32871, "poster": "https://aruppi.jeluchu.xyz/res/directory/2634.jpg", "type": "Película", "genres": [ @@ -44979,7 +44979,7 @@ { "id": "trinity-seven-movie", "title": "Trinity Seven Movie: Eternity Library to Alchemic Girl", - "mal_title": "Trinity Seven Movie: Eternity Library to Alchemic Girl", + "mal_id": 33581, "poster": "https://aruppi.jeluchu.xyz/res/directory/2635.jpg", "type": "Película", "genres": [ @@ -45001,7 +45001,7 @@ { "id": "boku-no-hero-academia-2nd-season", "title": "Boku no Hero Academia 2nd Season", - "mal_title": "Boku no Hero Academia 2nd Season", + "mal_id": 33486, "poster": "https://aruppi.jeluchu.xyz/res/directory/2636.jpg", "type": "Anime", "genres": [ @@ -45019,7 +45019,7 @@ { "id": "gin-no-guardian", "title": "Gin no Guardian", - "mal_title": "Gin no Guardian", + "mal_id": 32936, "poster": "https://aruppi.jeluchu.xyz/res/directory/2637.jpg", "type": "Anime", "genres": [ @@ -45034,7 +45034,7 @@ { "id": "shingeki-no-kyojin-season-2", "title": "Shingeki no Kyojin Season 2", - "mal_title": "Shingeki no Kyojin Season 2", + "mal_id": 25777, "poster": "https://aruppi.jeluchu.xyz/res/directory/2638.jpg", "type": "Anime", "genres": [ @@ -45052,7 +45052,7 @@ { "id": "granblue-fantasy-the-animation-tv", "title": "Granblue Fantasy The Animation TV", - "mal_title": "Granblue Fantasy The Animation TV", + "mal_id": 31629, "poster": "https://aruppi.jeluchu.xyz/res/directory/2639.jpg", "type": "Anime", "genres": [ @@ -45066,7 +45066,7 @@ { "id": "tsugumomo", "title": "Tsugumomo", - "mal_title": "Tsugumomo", + "mal_id": 34019, "poster": "https://aruppi.jeluchu.xyz/res/directory/2640.jpg", "type": "Anime", "genres": [ @@ -45085,7 +45085,7 @@ { "id": "alice-to-zouroku", "title": "Alice to Zouroku", - "mal_title": "Alice to Zouroku", + "mal_id": 34350, "poster": "https://aruppi.jeluchu.xyz/res/directory/2641.jpg", "type": "Anime", "genres": [ @@ -45101,7 +45101,7 @@ { "id": "souryo-to-majiwaru-shikiyoku-no-yoru-ni", "title": "Souryo to Majiwaru Shikiyoku no Yoru ni...", - "mal_title": "Souryo to Majiwaru Shikiyoku no Yoru ni...", + "mal_id": 34823, "poster": "https://aruppi.jeluchu.xyz/res/directory/2642.jpg", "type": "Anime", "genres": [ @@ -45117,7 +45117,7 @@ { "id": "sekai-no-yami-zukan", "title": "Sekai no Yami Zukan", - "mal_title": "Sekai no Yami Zukan", + "mal_id": 35069, "poster": "https://aruppi.jeluchu.xyz/res/directory/2643.jpg", "type": "Anime", "genres": [ @@ -45132,7 +45132,7 @@ { "id": "starmyu-2nd-season", "title": "Starmyu 2nd Season", - "mal_title": "Starmyu 2nd Season", + "mal_id": 33362, "poster": "https://aruppi.jeluchu.xyz/res/directory/2644.jpg", "type": "Anime", "genres": [ @@ -45148,7 +45148,7 @@ { "id": "frame-arms-girl", "title": "Frame Arms Girl", - "mal_title": "Frame Arms Girl", + "mal_id": 34427, "poster": "https://aruppi.jeluchu.xyz/res/directory/2645.jpg", "type": "Anime", "genres": [ @@ -45162,7 +45162,7 @@ { "id": "warau-salesman-new", "title": "Warau Salesman New", - "mal_title": "Warau Salesman New", + "mal_id": 34550, "poster": "https://aruppi.jeluchu.xyz/res/directory/2646.jpg", "type": "Anime", "genres": [ @@ -45178,7 +45178,7 @@ { "id": "rokudenashi-majutsu-koushi-to-akashic-records", "title": "Rokudenashi Majutsu Koushi to Akashic Records", - "mal_title": "Rokudenashi Majutsu Koushi to Akashic Records", + "mal_id": 32951, "poster": "https://aruppi.jeluchu.xyz/res/directory/2647.jpg", "type": "Anime", "genres": [ @@ -45194,7 +45194,7 @@ { "id": "cinderella-girls-gekijou", "title": "Cinderella Girls Gekijou", - "mal_title": "Cinderella Girls Gekijou", + "mal_id": 34257, "poster": "https://aruppi.jeluchu.xyz/res/directory/2648.jpg", "type": "Anime", "genres": [ @@ -45209,7 +45209,7 @@ { "id": "oushitsu-kyoushi-haine", "title": "Oushitsu Kyoushi Haine", - "mal_title": "Oushitsu Kyoushi Haine", + "mal_id": 34262, "poster": "https://aruppi.jeluchu.xyz/res/directory/2649.jpg", "type": "Anime", "genres": [ @@ -45223,7 +45223,7 @@ { "id": "boruto-naruto-next-generations-tv", "title": "Boruto: Naruto Next Generations", - "mal_title": "Boruto: Naruto Next Generations", + "mal_id": 34566, "poster": "https://aruppi.jeluchu.xyz/res/directory/2650.jpg", "type": "Anime", "genres": [ @@ -45241,7 +45241,7 @@ { "id": "love-kome-we-love-rice", "title": "Love Kome: We Love Rice", - "mal_title": "Love Kome: We Love Rice", + "mal_id": 34402, "poster": "https://aruppi.jeluchu.xyz/res/directory/2651.jpg", "type": "Anime", "genres": [ @@ -45255,7 +45255,7 @@ { "id": "busou-shoujo-machiavellianism", "title": "Busou Shoujo Machiavellianism", - "mal_title": "Busou Shoujo Machiavellianism", + "mal_id": 33475, "poster": "https://aruppi.jeluchu.xyz/res/directory/2652.jpg", "type": "Anime", "genres": [ @@ -45271,7 +45271,7 @@ { "id": "sakurada-reset", "title": "Sakurada Reset", - "mal_title": "Sakurada Reset", + "mal_id": 34102, "poster": "https://aruppi.jeluchu.xyz/res/directory/2653.jpg", "type": "Anime", "genres": [ @@ -45287,7 +45287,7 @@ { "id": "saenai-heroine-no-sodatekata", "title": "Saenai Heroine no Sodatekata 2", - "mal_title": "Saenai Heroine no Sodatekata 2", + "mal_id": 36885, "poster": "https://aruppi.jeluchu.xyz/res/directory/2654.jpg", "type": "Anime", "genres": [ @@ -45305,7 +45305,7 @@ { "id": "sakura-quest", "title": "Sakura Quest", - "mal_title": "Sakura Quest", + "mal_id": 34494, "poster": "https://aruppi.jeluchu.xyz/res/directory/2655.jpg", "type": "Anime", "genres": [ @@ -45319,7 +45319,7 @@ { "id": "seikaisuru-kado", "title": "Seikaisuru Kado", - "mal_title": "Seikaisuru Kado", + "mal_id": 35603, "poster": "https://aruppi.jeluchu.xyz/res/directory/2656.jpg", "type": "Anime", "genres": [ @@ -45333,7 +45333,7 @@ { "id": "tsuki-ga-kirei", "title": "Tsuki ga Kirei", - "mal_title": "Tsuki ga Kirei", + "mal_id": 34822, "poster": "https://aruppi.jeluchu.xyz/res/directory/2657.jpg", "type": "Anime", "genres": [ @@ -45348,7 +45348,7 @@ { "id": "clockwork-planet", "title": "Clockwork Planet", - "mal_title": "Clockwork Planet", + "mal_id": 32407, "poster": "https://aruppi.jeluchu.xyz/res/directory/2658.jpg", "type": "Anime", "genres": [ @@ -45363,7 +45363,7 @@ { "id": "kabukibu", "title": "Kabukibu!", - "mal_title": "Kabukibu!", + "mal_id": 33840, "poster": "https://aruppi.jeluchu.xyz/res/directory/2659.jpg", "type": "Anime", "genres": [ @@ -45377,7 +45377,7 @@ { "id": "renai-boukun", "title": "Renai Boukun", - "mal_title": "Renai Boukun", + "mal_id": 32262, "poster": "https://aruppi.jeluchu.xyz/res/directory/2660.jpg", "type": "Anime", "genres": [ @@ -45394,7 +45394,7 @@ { "id": "berserk-2017", "title": "Berserk (2017)", - "mal_title": "Berserk (2017)", + "mal_id": 34055, "poster": "https://aruppi.jeluchu.xyz/res/directory/2661.jpg", "type": "Anime", "genres": [ @@ -45417,7 +45417,7 @@ { "id": "kaitou-tenshi-twin-angel-tv", "title": "Kaitou Tenshi Twin Angel (TV)", - "mal_title": "Kaitou Tenshi Twin Angel (TV)", + "mal_id": 3805, "poster": "https://aruppi.jeluchu.xyz/res/directory/2662.jpg", "type": "Anime", "genres": [ @@ -45431,7 +45431,7 @@ { "id": "nobunaga-no-shinobi-ise-kanegasakihen", "title": "Nobunaga no Shinobi: Ise Kanegasaki-hen", - "mal_title": "Nobunaga no Shinobi: Ise Kanegasaki-hen", + "mal_id": 34978, "poster": "https://aruppi.jeluchu.xyz/res/directory/2663.jpg", "type": "Anime", "genres": [ @@ -45446,7 +45446,7 @@ { "id": "kyoukai-no-rinne-tv-3rd-season", "title": "Kyoukai no Rinne (TV) 3rd Season", - "mal_title": "Kyoukai no Rinne (TV) 3rd Season", + "mal_id": 34106, "poster": "https://aruppi.jeluchu.xyz/res/directory/2664.jpg", "type": "Anime", "genres": [ @@ -45464,7 +45464,7 @@ { "id": "hinako-note", "title": "Hinako Note", - "mal_title": "Hinako Note", + "mal_id": 33948, "poster": "https://aruppi.jeluchu.xyz/res/directory/2665.jpg", "type": "Anime", "genres": [ @@ -45479,7 +45479,7 @@ { "id": "shingeki-no-bahamut-virgin-soul", "title": "Shingeki no Bahamut: Virgin Soul", - "mal_title": "Shingeki no Bahamut: Virgin Soul", + "mal_id": 30736, "poster": "https://aruppi.jeluchu.xyz/res/directory/2666.jpg", "type": "Anime", "genres": [ @@ -45498,7 +45498,7 @@ { "id": "recreators", "title": "Re:Creators", - "mal_title": "Re:Creators", + "mal_id": 34561, "poster": "https://aruppi.jeluchu.xyz/res/directory/2667.jpg", "type": "Anime", "genres": [ @@ -45512,7 +45512,7 @@ { "id": "eromangasensei", "title": "Eromanga-sensei", - "mal_title": "Eromanga-sensei", + "mal_id": 32901, "poster": "https://aruppi.jeluchu.xyz/res/directory/2668.jpg", "type": "Anime", "genres": [ @@ -45528,7 +45528,7 @@ { "id": "uchouten-kazoku-2", "title": "Uchouten Kazoku 2", - "mal_title": "Uchouten Kazoku 2", + "mal_id": 34076, "poster": "https://aruppi.jeluchu.xyz/res/directory/2669.jpg", "type": "Anime", "genres": [ @@ -45545,7 +45545,7 @@ { "id": "id0", "title": "ID-0", - "mal_title": "ID-0", + "mal_id": 33797, "poster": "https://aruppi.jeluchu.xyz/res/directory/2670.jpg", "type": "Anime", "genres": [ @@ -45560,7 +45560,7 @@ { "id": "zero-kara-hajimeru-mahou-no-sho", "title": "Zero kara Hajimeru Mahou no Sho", - "mal_title": "Zero kara Hajimeru Mahou no Sho", + "mal_id": 34176, "poster": "https://aruppi.jeluchu.xyz/res/directory/2671.jpg", "type": "Anime", "genres": [ @@ -45575,7 +45575,7 @@ { "id": "furusato-meguri", "title": "Furusato Meguri Nippon no Mukashibanashi", - "mal_title": "Furusato Meguri Nippon no Mukashibanashi", + "mal_id": 35303, "poster": "https://aruppi.jeluchu.xyz/res/directory/2672.jpg", "type": "Anime", "genres": [ @@ -45591,7 +45591,7 @@ { "id": "fukumenkei-noise", "title": "Fukumenkei Noise", - "mal_title": "Fukumenkei Noise", + "mal_id": 33203, "poster": "https://aruppi.jeluchu.xyz/res/directory/2673.jpg", "type": "Anime", "genres": [ @@ -45607,7 +45607,7 @@ { "id": "shuumatsu-nani-shitemasu-ka", "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", - "mal_title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "mal_id": 33502, "poster": "https://aruppi.jeluchu.xyz/res/directory/2674.jpg", "type": "Anime", "genres": [ @@ -45624,7 +45624,7 @@ { "id": "natsume-yuujinchou-roku", "title": "Natsume Yuujinchou Roku", - "mal_title": "Natsume Yuujinchou Roku", + "mal_id": 34591, "poster": "https://aruppi.jeluchu.xyz/res/directory/2675.jpg", "type": "Anime", "genres": [ @@ -45642,7 +45642,7 @@ { "id": "kenka-banchou-otome", "title": "Kenka Banchou Otome: Girl Beats Boys", - "mal_title": "Kenka Banchou Otome: Girl Beats Boys", + "mal_id": 34501, "poster": "https://aruppi.jeluchu.xyz/res/directory/2676.jpg", "type": "Anime", "genres": [ @@ -45659,7 +45659,7 @@ { "id": "room-mate", "title": "Room Mate", - "mal_title": "Room Mate", + "mal_id": 34393, "poster": "https://aruppi.jeluchu.xyz/res/directory/2677.jpg", "type": "Anime", "genres": [ @@ -45673,7 +45673,7 @@ { "id": "sin-nanatsu-no-taizai", "title": "Sin: Nanatsu no Taizai", - "mal_title": "Sin: Nanatsu no Taizai", + "mal_id": 33834, "poster": "https://aruppi.jeluchu.xyz/res/directory/2678.jpg", "type": "Anime", "genres": [ @@ -45688,7 +45688,7 @@ { "id": "dungeon-ni-deai-wo-motomeru-no-wa-machigatteiru", "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", - "mal_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "mal_id": 32887, "poster": "https://aruppi.jeluchu.xyz/res/directory/2679.jpg", "type": "Anime", "genres": [ @@ -45704,7 +45704,7 @@ { "id": "atom-the-beginning", "title": "Atom: The Beginning", - "mal_title": "Atom: The Beginning", + "mal_id": 33371, "poster": "https://aruppi.jeluchu.xyz/res/directory/2680.jpg", "type": "Anime", "genres": [ @@ -45720,7 +45720,7 @@ { "id": "sword-art-online-movie-ordinal-scale", "title": "Sword Art Online Movie: Ordinal Scale", - "mal_title": "Sword Art Online Movie: Ordinal Scale", + "mal_id": 31765, "poster": "https://aruppi.jeluchu.xyz/res/directory/2681.jpg", "type": "Película", "genres": [ @@ -45738,7 +45738,7 @@ { "id": "ao-no-exorcist-ova", "title": "Ao no Exorcist: Kyoto Fujouou-hen OVA", - "mal_title": "Ao no Exorcist: Kyoto Fujouou-hen OVA", + "mal_id": 34465, "poster": "https://aruppi.jeluchu.xyz/res/directory/2682.jpg", "type": "OVA", "genres": [ @@ -45755,7 +45755,7 @@ { "id": "yugioh-the-dark-side-of-dimensions", "title": "Yu☆Gi☆Oh!: The Dark Side of Dimensions", - "mal_title": "Yu☆Gi☆Oh!: The Dark Side of Dimensions", + "mal_id": 28771, "poster": "https://aruppi.jeluchu.xyz/res/directory/2683.jpg", "type": "Película", "genres": [ @@ -45771,7 +45771,7 @@ { "id": "black-clover-ova", "title": "Black Clover Ova", - "mal_title": "Black Clover Ova", + "mal_id": 34572, "poster": "https://aruppi.jeluchu.xyz/res/directory/2684.jpg", "type": "Especial", "genres": [ @@ -45789,7 +45789,7 @@ { "id": "yugioh-vrains", "title": "Yu☆Gi☆Oh! VRAINS", - "mal_title": "Yu☆Gi☆Oh! VRAINS", + "mal_id": 34866, "poster": "https://aruppi.jeluchu.xyz/res/directory/2685.jpg", "type": "Anime", "genres": [ @@ -45806,7 +45806,7 @@ { "id": "koe-no-katachi", "title": "Koe no Katachi", - "mal_title": "Koe no Katachi", + "mal_id": 28851, "poster": "https://aruppi.jeluchu.xyz/res/directory/2686.jpg", "type": "Película", "genres": [ @@ -45822,7 +45822,7 @@ { "id": "ninpuu-kamui-gaiden", "title": "Ninpuu Kamui Gaiden", - "mal_title": "Ninpuu Kamui Gaiden", + "mal_id": 5023, "poster": "https://aruppi.jeluchu.xyz/res/directory/2687.jpg", "type": "Anime", "genres": [ @@ -45840,7 +45840,7 @@ { "id": "suki-ni-naru-sono-shunkan-wo", "title": "Suki ni Naru Sono Shunkan wo", - "mal_title": "Suki ni Naru Sono Shunkan wo", + "mal_id": 33036, "poster": "https://aruppi.jeluchu.xyz/res/directory/2688.jpg", "type": "Película", "genres": [ @@ -45857,7 +45857,7 @@ { "id": "hina-logi-from-luck-logic", "title": "Hina Logi: From Luck & Logic", - "mal_title": "Hina Logi: From Luck & Logic", + "mal_id": 34834, "poster": "https://aruppi.jeluchu.xyz/res/directory/2689.jpg", "type": "Anime", "genres": [ @@ -45872,7 +45872,7 @@ { "id": "kakegurui", "title": "Kakegurui", - "mal_title": "Kakegurui", + "mal_id": 34933, "poster": "https://aruppi.jeluchu.xyz/res/directory/2690.jpg", "type": "Anime", "genres": [ @@ -45890,7 +45890,7 @@ { "id": "enmusubi-no-youko-chan", "title": "Enmusubi no Youko-chan", - "mal_title": "Enmusubi no Youko-chan", + "mal_id": 31499, "poster": "https://aruppi.jeluchu.xyz/res/directory/2691.jpg", "type": "Anime", "genres": [ @@ -45907,7 +45907,7 @@ { "id": "fateapocrypha", "title": "Fate/Apocrypha", - "mal_title": "Fate/Apocrypha", + "mal_id": 34662, "poster": "https://aruppi.jeluchu.xyz/res/directory/2692.jpg", "type": "Anime", "genres": [ @@ -45926,7 +45926,7 @@ { "id": "katsugekitouken-ranbu", "title": "Katsugeki/Touken Ranbu", - "mal_title": "Katsugeki/Touken Ranbu", + "mal_id": 33018, "poster": "https://aruppi.jeluchu.xyz/res/directory/2693.jpg", "type": "Anime", "genres": [ @@ -45941,7 +45941,7 @@ { "id": "senki-zesshou-symphogear-axz", "title": "Senki Zesshou Symphogear AXZ", - "mal_title": "Senki Zesshou Symphogear AXZ", + "mal_id": 32836, "poster": "https://aruppi.jeluchu.xyz/res/directory/2694.jpg", "type": "Anime", "genres": [ @@ -45957,7 +45957,7 @@ { "id": "knights-magic", "title": "Knight's & Magic", - "mal_title": "Knight's & Magic", + "mal_id": 34104, "poster": "https://aruppi.jeluchu.xyz/res/directory/2695.jpg", "type": "Anime", "genres": [ @@ -45974,7 +45974,7 @@ { "id": "battle-girl-high-school-battle-girl-project", "title": "Battle Girl High School: Battle Girl Project", - "mal_title": "Battle Girl High School: Battle Girl Project", + "mal_id": 33184, "poster": "https://aruppi.jeluchu.xyz/res/directory/2696.jpg", "type": "Anime", "genres": [ @@ -45990,7 +45990,7 @@ { "id": "keppeki-danshi-aoyamakun", "title": "Keppeki Danshi! Aoyama-kun", - "mal_title": "Keppeki Danshi! Aoyama-kun", + "mal_id": 34825, "poster": "https://aruppi.jeluchu.xyz/res/directory/2697.jpg", "type": "Anime", "genres": [ @@ -46006,7 +46006,7 @@ { "id": "skirt-no-naka-wa-kedamono-deshita", "title": "Skirt no Naka wa Kedamono Deshita.", - "mal_title": "Skirt no Naka wa Kedamono Deshita.", + "mal_id": 35629, "poster": "https://aruppi.jeluchu.xyz/res/directory/2698.jpg", "type": "Anime", "genres": [ @@ -46022,7 +46022,7 @@ { "id": "yami-shibai-5th-season", "title": "Yami Shibai 5th Season", - "mal_title": "Yami Shibai 5th Season", + "mal_id": 35714, "poster": "https://aruppi.jeluchu.xyz/res/directory/2699.jpg", "type": "Anime", "genres": [ @@ -46038,7 +46038,7 @@ { "id": "youkai-apartment-no-yuuga-na-nichijou", "title": "Youkai Apartment no Yuuga na Nichijou", - "mal_title": "Youkai Apartment no Yuuga na Nichijou", + "mal_id": 35220, "poster": "https://aruppi.jeluchu.xyz/res/directory/2700.jpg", "type": "Anime", "genres": [ @@ -46054,7 +46054,7 @@ { "id": "koi-to-uso", "title": "Koi to Uso", - "mal_title": "Koi to Uso", + "mal_id": 34934, "poster": "https://aruppi.jeluchu.xyz/res/directory/2701.jpg", "type": "Anime", "genres": [ @@ -46070,7 +46070,7 @@ { "id": "isekai-shokudou", "title": "Isekai Shokudou", - "mal_title": "Isekai Shokudou", + "mal_id": 34012, "poster": "https://aruppi.jeluchu.xyz/res/directory/2702.jpg", "type": "Anime", "genres": [ @@ -46086,7 +46086,7 @@ { "id": "aho-girl", "title": "Aho Girl", - "mal_title": "Aho Girl", + "mal_id": 34881, "poster": "https://aruppi.jeluchu.xyz/res/directory/2703.jpg", "type": "Anime", "genres": [ @@ -46102,7 +46102,7 @@ { "id": "nana-maru-san-batsu", "title": "Nana Maru San Batsu", - "mal_title": "Nana Maru San Batsu", + "mal_id": 34580, "poster": "https://aruppi.jeluchu.xyz/res/directory/2704.jpg", "type": "Anime", "genres": [ @@ -46118,7 +46118,7 @@ { "id": "tsurezure-children", "title": "Tsurezure Children", - "mal_title": "Tsurezure Children", + "mal_id": 34902, "poster": "https://aruppi.jeluchu.xyz/res/directory/2705.jpg", "type": "Anime", "genres": [ @@ -46135,7 +46135,7 @@ { "id": "netsuzou-trap", "title": "Netsuzou TRap", - "mal_title": "Netsuzou TRap", + "mal_id": 34383, "poster": "https://aruppi.jeluchu.xyz/res/directory/2706.jpg", "type": "Anime", "genres": [ @@ -46150,7 +46150,7 @@ { "id": "saiyuuki-reload-blast", "title": "Saiyuuki Reload Blast", - "mal_title": "Saiyuuki Reload Blast", + "mal_id": 33726, "poster": "https://aruppi.jeluchu.xyz/res/directory/2707.jpg", "type": "Anime", "genres": [ @@ -46169,7 +46169,7 @@ { "id": "dive", "title": "Dive!!", - "mal_title": "Dive!!", + "mal_id": 34543, "poster": "https://aruppi.jeluchu.xyz/res/directory/2708.jpg", "type": "Anime", "genres": [ @@ -46184,7 +46184,7 @@ { "id": "konbini-kareshi", "title": "Konbini Kareshi", - "mal_title": "Konbini Kareshi", + "mal_id": 35434, "poster": "https://aruppi.jeluchu.xyz/res/directory/2709.jpg", "type": "Anime", "genres": [ @@ -46198,7 +46198,7 @@ { "id": "made-in-abyss", "title": "Made in Abyss", - "mal_title": "Made in Abyss", + "mal_id": 34599, "poster": "https://aruppi.jeluchu.xyz/res/directory/2710.jpg", "type": "Anime", "genres": [ @@ -46215,7 +46215,7 @@ { "id": "vatican-kiseki-chousakan", "title": "Vatican Kiseki Chousakan", - "mal_title": "Vatican Kiseki Chousakan", + "mal_id": 34368, "poster": "https://aruppi.jeluchu.xyz/res/directory/2711.jpg", "type": "Anime", "genres": [ @@ -46232,7 +46232,7 @@ { "id": "jikan-no-shihaisha", "title": "Jikan no Shihaisha", - "mal_title": "Jikan no Shihaisha", + "mal_id": 34565, "poster": "https://aruppi.jeluchu.xyz/res/directory/2712.jpg", "type": "Anime", "genres": [ @@ -46247,7 +46247,7 @@ { "id": "shoukoku-no-altair", "title": "Shoukoku no Altair", - "mal_title": "Shoukoku no Altair", + "mal_id": 34547, "poster": "https://aruppi.jeluchu.xyz/res/directory/2713.jpg", "type": "Anime", "genres": [ @@ -46265,7 +46265,7 @@ { "id": "ballroom-e-youkoso", "title": "Ballroom e Youkoso", - "mal_title": "Ballroom e Youkoso", + "mal_id": 34636, "poster": "https://aruppi.jeluchu.xyz/res/directory/2714.jpg", "type": "Anime", "genres": [ @@ -46284,7 +46284,7 @@ { "id": "18if", "title": "18if", - "mal_title": "18if", + "mal_id": 35248, "poster": "https://aruppi.jeluchu.xyz/res/directory/2715.jpg", "type": "Anime", "genres": [ @@ -46298,7 +46298,7 @@ { "id": "hitorijime-my-hero", "title": "Hitorijime My Hero", - "mal_title": "Hitorijime My Hero", + "mal_id": 33654, "poster": "https://aruppi.jeluchu.xyz/res/directory/2716.jpg", "type": "Anime", "genres": [ @@ -46314,7 +46314,7 @@ { "id": "centaur-no-nayami", "title": "Centaur no Nayami", - "mal_title": "Centaur no Nayami", + "mal_id": 34525, "poster": "https://aruppi.jeluchu.xyz/res/directory/2717.jpg", "type": "Anime", "genres": [ @@ -46332,7 +46332,7 @@ { "id": "princess-principal", "title": "Princess Principal", - "mal_title": "Princess Principal", + "mal_id": 35240, "poster": "https://aruppi.jeluchu.xyz/res/directory/2718.jpg", "type": "Anime", "genres": [ @@ -46347,7 +46347,7 @@ { "id": "tenshi-no-3p", "title": "Tenshi no 3P!", - "mal_title": "Tenshi no 3P!", + "mal_id": 34177, "poster": "https://aruppi.jeluchu.xyz/res/directory/2719.jpg", "type": "Anime", "genres": [ @@ -46363,7 +46363,7 @@ { "id": "isekai-wa-smartphone-to-tomo-ni", "title": "Isekai wa Smartphone to Tomo ni.", - "mal_title": "Isekai wa Smartphone to Tomo ni.", + "mal_id": 35203, "poster": "https://aruppi.jeluchu.xyz/res/directory/2720.jpg", "type": "Anime", "genres": [ @@ -46381,7 +46381,7 @@ { "id": "new-game2", "title": "New Game!!", - "mal_title": "New Game!!", + "mal_id": 31953, "poster": "https://aruppi.jeluchu.xyz/res/directory/2721.jpg", "type": "Anime", "genres": [ @@ -46396,7 +46396,7 @@ { "id": "mahoujin-guru-guru-2017", "title": "Mahoujin Guru Guru (2017)", - "mal_title": "Mahoujin Guru Guru (2017)", + "mal_id": 34745, "poster": "https://aruppi.jeluchu.xyz/res/directory/2722.jpg", "type": "Anime", "genres": [ @@ -46414,7 +46414,7 @@ { "id": "clione-no-akari", "title": "Clione no Akari", - "mal_title": "Clione no Akari", + "mal_id": 35114, "poster": "https://aruppi.jeluchu.xyz/res/directory/2723.jpg", "type": "Anime", "genres": [ @@ -46428,7 +46428,7 @@ { "id": "hajimete-no-gal", "title": "Hajimete no Gal", - "mal_title": "Hajimete no Gal", + "mal_id": 34403, "poster": "https://aruppi.jeluchu.xyz/res/directory/2724.jpg", "type": "Anime", "genres": [ @@ -46446,7 +46446,7 @@ { "id": "youkoso-jitsuryoku-shijou-shugi-no-kyoushitsu-e-tv", "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e (TV)", - "mal_title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e (TV)", + "mal_id": 35507, "poster": "https://aruppi.jeluchu.xyz/res/directory/2725.jpg", "type": "Anime", "genres": [ @@ -46462,7 +46462,7 @@ { "id": "nora-to-oujo-to-noraneko-heart", "title": "Nora to Oujo to Noraneko Heart", - "mal_title": "Nora to Oujo to Noraneko Heart", + "mal_id": 32447, "poster": "https://aruppi.jeluchu.xyz/res/directory/2726.jpg", "type": "Anime", "genres": [ @@ -46477,7 +46477,7 @@ { "id": "ikemen-sengoku-toki-wo-kakeru-ga-koi-wa-hajimaranai", "title": "Ikemen Sengoku: Toki wo Kakeru ga Koi wa Hajimaranai", - "mal_title": "Ikemen Sengoku: Toki wo Kakeru ga Koi wa Hajimaranai", + "mal_id": 34337, "poster": "https://aruppi.jeluchu.xyz/res/directory/2727.jpg", "type": "Anime", "genres": [ @@ -46492,7 +46492,7 @@ { "id": "musekinin-galaxytylor", "title": "Musekinin Galaxy☆Tylor", - "mal_title": "Musekinin Galaxy☆Tylor", + "mal_id": 35730, "poster": "https://aruppi.jeluchu.xyz/res/directory/2728.jpg", "type": "Anime", "genres": [ @@ -46510,7 +46510,7 @@ { "id": "gamers", "title": "Gamers!", - "mal_title": "Gamers!", + "mal_id": 34280, "poster": "https://aruppi.jeluchu.xyz/res/directory/2729.jpg", "type": "Anime", "genres": [ @@ -46526,7 +46526,7 @@ { "id": "jigoku-shoujo-yoi-no-togi", "title": "Jigoku Shoujo: Yoi no Togi", - "mal_title": "Jigoku Shoujo: Yoi no Togi", + "mal_id": 34966, "poster": "https://aruppi.jeluchu.xyz/res/directory/2730.jpg", "type": "Anime", "genres": [ @@ -46543,7 +46543,7 @@ { "id": "kizumonogatari-iii-reiketsuhen", "title": "Kizumonogatari III: Reiketsu-hen", - "mal_title": "Kizumonogatari III: Reiketsu-hen", + "mal_id": 31758, "poster": "https://aruppi.jeluchu.xyz/res/directory/2731.jpg", "type": "Película", "genres": [ @@ -46560,7 +46560,7 @@ { "id": "teekyuu-9", "title": "Teekyuu 9", - "mal_title": "Teekyuu 9", + "mal_id": 35370, "poster": "https://aruppi.jeluchu.xyz/res/directory/2732.jpg", "type": "Anime", "genres": [ @@ -46575,7 +46575,7 @@ { "id": "the-reflection", "title": "The Reflection", - "mal_title": "The Reflection", + "mal_id": 34449, "poster": "https://aruppi.jeluchu.xyz/res/directory/2733.jpg", "type": "Anime", "genres": [ @@ -46590,7 +46590,7 @@ { "id": "children-of-ether-ova", "title": "Children of Ether Ova", - "mal_title": "Children of Ether Ova", + "mal_id": null, "poster": "https://aruppi.jeluchu.xyz/res/directory/2734.jpg", "type": "OVA", "genres": [ @@ -46606,7 +46606,7 @@ { "id": "dragon-ball-super-latino", "title": "Dragon Ball Super Latino", - "mal_title": "Dragon Ball Super Latino", + "mal_id": 30694, "poster": "https://aruppi.jeluchu.xyz/res/directory/2735.jpg", "type": "Anime", "genres": [ @@ -46626,7 +46626,7 @@ { "id": "owarimonogatari-2nd-season", "title": "Owarimonogatari 2nd Season", - "mal_title": "Owarimonogatari 2nd Season", + "mal_id": 35247, "poster": "https://aruppi.jeluchu.xyz/res/directory/2736.jpg", "type": "Anime", "genres": [ @@ -46642,7 +46642,7 @@ { "id": "dream-festival-r", "title": "Dream Festival! R", - "mal_title": "Dream Festival! R", + "mal_id": 34552, "poster": "https://aruppi.jeluchu.xyz/res/directory/2737.jpg", "type": "Anime", "genres": [ @@ -46656,7 +46656,7 @@ { "id": "one-piece-episodio-del-east-blue", "title": "One Piece: Episodio del East Blue", - "mal_title": "One Piece: Episodio del East Blue", + "mal_id": 36215, "poster": "https://aruppi.jeluchu.xyz/res/directory/2738.jpg", "type": "Especial", "genres": [ @@ -46676,7 +46676,7 @@ { "id": "kancolle-movie", "title": "KanColle Movie", - "mal_title": "KanColle Movie", + "mal_id": 31418, "poster": "https://aruppi.jeluchu.xyz/res/directory/2739.jpg", "type": "Película", "genres": [ @@ -46694,7 +46694,7 @@ { "id": "sakura-card-captor-clear-cardhen-prologue-sakura-to-futatsu-no-kuma", "title": "Sakura Card Captor: Clear Card-hen - Prologue Sakura to Futatsu no Kuma", - "mal_title": "Sakura Card Captor: Clear Card-hen - Prologue Sakura to Futatsu no Kuma", + "mal_id": 35320, "poster": "https://aruppi.jeluchu.xyz/res/directory/2740.jpg", "type": "OVA", "genres": [ @@ -46710,7 +46710,7 @@ { "id": "kuroko-no-basket-last-game", "title": "Kuroko no Basket: Last Game", - "mal_title": "Kuroko no Basket: Last Game", + "mal_id": 35658, "poster": "https://aruppi.jeluchu.xyz/res/directory/2741.jpg", "type": "Película", "genres": [ @@ -46726,7 +46726,7 @@ { "id": "gintama-pororihen", "title": "Gintama. Porori-hen", - "mal_title": "Gintama. Porori-hen", + "mal_id": 35843, "poster": "https://aruppi.jeluchu.xyz/res/directory/2742.jpg", "type": "Anime", "genres": [ @@ -46746,7 +46746,7 @@ { "id": "omiai-aite-wa-oshiego-tsuyokina-mondaiji", "title": "Omiai Aite wa Oshiego, Tsuyokina, Mondaiji.", - "mal_title": "Omiai Aite wa Oshiego, Tsuyokina, Mondaiji.", + "mal_id": 36198, "poster": "https://aruppi.jeluchu.xyz/res/directory/2743.jpg", "type": "Anime", "genres": [ @@ -46763,7 +46763,7 @@ { "id": "osomatsusan-2", "title": "Osomatsu-san 2", - "mal_title": "Osomatsu-san 2", + "mal_id": 31174, "poster": "https://aruppi.jeluchu.xyz/res/directory/2744.jpg", "type": "Anime", "genres": [ @@ -46778,7 +46778,7 @@ { "id": "uq-holder-mahou-sensei-negima-2", "title": "UQ Holder!: Mahou Sensei Negima! 2", - "mal_title": "UQ Holder!: Mahou Sensei Negima! 2", + "mal_id": 33478, "poster": "https://aruppi.jeluchu.xyz/res/directory/2745.jpg", "type": "Anime", "genres": [ @@ -46796,7 +46796,7 @@ { "id": "black-clover-tv", "title": "Black Clover (TV)", - "mal_title": "Black Clover", + "mal_id": 34572, "poster": "https://aruppi.jeluchu.xyz/res/directory/2746.jpg", "type": "Anime", "genres": [ @@ -46814,7 +46814,7 @@ { "id": "shokugeki-no-souma-san-no-sara", "title": "Shokugeki no Souma: San no Sara", - "mal_title": "Shokugeki no Souma: San no Sara", + "mal_id": 35788, "poster": "https://aruppi.jeluchu.xyz/res/directory/2747.jpg", "type": "Anime", "genres": [ @@ -46830,7 +46830,7 @@ { "id": "juuni-taisen", "title": "Juuni Taisen", - "mal_title": "Juuni Taisen", + "mal_id": 35076, "poster": "https://aruppi.jeluchu.xyz/res/directory/2748.jpg", "type": "Anime", "genres": [ @@ -46844,7 +46844,7 @@ { "id": "osake-wa-fuufu-ni-natte-kara", "title": "Osake wa Fuufu ni Natte kara", - "mal_title": "Osake wa Fuufu ni Natte kara", + "mal_id": 37826, "poster": "https://aruppi.jeluchu.xyz/res/directory/2749.jpg", "type": "Anime", "genres": [ @@ -46860,7 +46860,7 @@ { "id": "sengoku-night-blood", "title": "Sengoku Night Blood", - "mal_title": "Sengoku Night Blood", + "mal_id": 35251, "poster": "https://aruppi.jeluchu.xyz/res/directory/2750.jpg", "type": "Anime", "genres": [ @@ -46876,7 +46876,7 @@ { "id": "cinderella-girls-gekijou-2nd-season", "title": "Cinderella Girls Gekijou 2nd Season", - "mal_title": "Cinderella Girls Gekijou 2nd Season", + "mal_id": 35883, "poster": "https://aruppi.jeluchu.xyz/res/directory/2751.jpg", "type": "Anime", "genres": [ @@ -46891,7 +46891,7 @@ { "id": "urahara", "title": "Urahara", - "mal_title": "Urahara", + "mal_id": 35250, "poster": "https://aruppi.jeluchu.xyz/res/directory/2752.jpg", "type": "Anime", "genres": [ @@ -46907,7 +46907,7 @@ { "id": "konohana-kitan", "title": "Konohana Kitan", - "mal_title": "Konohana Kitan", + "mal_id": 35241, "poster": "https://aruppi.jeluchu.xyz/res/directory/2753.jpg", "type": "Anime", "genres": [ @@ -46924,7 +46924,7 @@ { "id": "tsukipro-the-animation", "title": "Tsukipro The Animation", - "mal_title": "Tsukipro The Animation", + "mal_id": 34474, "poster": "https://aruppi.jeluchu.xyz/res/directory/2754.jpg", "type": "Anime", "genres": [ @@ -46938,7 +46938,7 @@ { "id": "ousama-game-the-animation", "title": "Ousama Game The Animation", - "mal_title": "Ousama Game The Animation", + "mal_id": 36027, "poster": "https://aruppi.jeluchu.xyz/res/directory/2755.jpg", "type": "Anime", "genres": [ @@ -46956,7 +46956,7 @@ { "id": "ameiro-cocoa-series-amecon", "title": "Ame-iro Cocoa Series: Ame-con!!", - "mal_title": "Ame-iro Cocoa Series: Ame-con!!", + "mal_id": 35923, "poster": "https://aruppi.jeluchu.xyz/res/directory/2756.jpg", "type": "Anime", "genres": [ @@ -46971,7 +46971,7 @@ { "id": "just-because", "title": "Just Because!", - "mal_title": "Just Because!", + "mal_id": 35639, "poster": "https://aruppi.jeluchu.xyz/res/directory/2757.jpg", "type": "Anime", "genres": [ @@ -46985,7 +46985,7 @@ { "id": "dies-irae", "title": "Dies Irae", - "mal_title": "Dies Irae", + "mal_id": 32271, "poster": "https://aruppi.jeluchu.xyz/res/directory/2758.jpg", "type": "Anime", "genres": [ @@ -47001,7 +47001,7 @@ { "id": "kino-no-tabi-the-beautiful-world-the-animated-series", "title": "Kino no Tabi: The Beautiful World - The Animated Series", - "mal_title": "Kino no Tabi: The Beautiful World - The Animated Series", + "mal_id": 35079, "poster": "https://aruppi.jeluchu.xyz/res/directory/2759.jpg", "type": "Anime", "genres": [ @@ -47017,7 +47017,7 @@ { "id": "taishou-chicchaisan", "title": "Taishou Chicchai-san", - "mal_title": "Taishou Chicchai-san", + "mal_id": 34411, "poster": "https://aruppi.jeluchu.xyz/res/directory/2760.jpg", "type": "Anime", "genres": [ @@ -47031,7 +47031,7 @@ { "id": "netjuu-no-susume", "title": "Net-juu no Susume", - "mal_title": "Net-juu no Susume", + "mal_id": 36043, "poster": "https://aruppi.jeluchu.xyz/res/directory/2761.jpg", "type": "Anime", "genres": [ @@ -47046,7 +47046,7 @@ { "id": "shoujo-shuumatsu-ryokou", "title": "Shoujo Shuumatsu Ryokou", - "mal_title": "Shoujo Shuumatsu Ryokou", + "mal_id": 35838, "poster": "https://aruppi.jeluchu.xyz/res/directory/2762.jpg", "type": "Anime", "genres": [ @@ -47061,7 +47061,7 @@ { "id": "yuuki-yuuna-wa-yuusha-de-aru-washio-sumi-no-shou", "title": "Yuuki Yuuna wa Yuusha de Aru: Washio Sumi no Shou", - "mal_title": "Yuuki Yuuna wa Yuusha de Aru: Washio Sumi no Shou", + "mal_id": 34284, "poster": "https://aruppi.jeluchu.xyz/res/directory/2763.jpg", "type": "Anime", "genres": [ @@ -47078,7 +47078,7 @@ { "id": "love-kome-we-love-rice-2nd-season", "title": "Love Kome: We Love Rice 2nd Season", - "mal_title": "Love Kome: We Love Rice 2nd Season", + "mal_id": 35818, "poster": "https://aruppi.jeluchu.xyz/res/directory/2764.jpg", "type": "Anime", "genres": [ @@ -47092,7 +47092,7 @@ { "id": "time-bokan-gyakushuu-no-san-akunin", "title": "Time Bokan: Gyakushuu no San Akunin", - "mal_title": "Time Bokan: Gyakushuu no San Akunin", + "mal_id": 35254, "poster": "https://aruppi.jeluchu.xyz/res/directory/2765.jpg", "type": "Anime", "genres": [ @@ -47108,7 +47108,7 @@ { "id": "blend-s", "title": "Blend S", - "mal_title": "Blend S", + "mal_id": 34618, "poster": "https://aruppi.jeluchu.xyz/res/directory/2766.jpg", "type": "Anime", "genres": [ @@ -47123,7 +47123,7 @@ { "id": "the-idolmster-side-m", "title": "The iDOLM@STER Side M", - "mal_title": "The iDOLM@STER Side M", + "mal_id": 34915, "poster": "https://aruppi.jeluchu.xyz/res/directory/2767.jpg", "type": "Anime", "genres": [ @@ -47137,7 +47137,7 @@ { "id": "mahoutsukai-no-yome", "title": "Mahoutsukai no Yome", - "mal_title": "Mahoutsukai no Yome", + "mal_id": 35062, "poster": "https://aruppi.jeluchu.xyz/res/directory/2768.jpg", "type": "Anime", "genres": [ @@ -47154,7 +47154,7 @@ { "id": "coderealize-sousei-no-himegimi", "title": "Code:Realize: Sousei no Himegimi", - "mal_title": "Code:Realize: Sousei no Himegimi", + "mal_id": 31456, "poster": "https://aruppi.jeluchu.xyz/res/directory/2769.jpg", "type": "Anime", "genres": [ @@ -47171,7 +47171,7 @@ { "id": "garo-vanishing-line", "title": "Garo: Vanishing Line", - "mal_title": "Garo: Vanishing Line", + "mal_id": 36144, "poster": "https://aruppi.jeluchu.xyz/res/directory/2770.jpg", "type": "Anime", "genres": [ @@ -47186,7 +47186,7 @@ { "id": "two-car", "title": "Two Car", - "mal_title": "Two Car", + "mal_id": 36009, "poster": "https://aruppi.jeluchu.xyz/res/directory/2771.jpg", "type": "Anime", "genres": [ @@ -47200,7 +47200,7 @@ { "id": "love-live-sunshine-2nd-season", "title": "Love Live! Sunshine!! 2nd Season", - "mal_title": "Love Live! Sunshine!! 2nd Season", + "mal_id": 34973, "poster": "https://aruppi.jeluchu.xyz/res/directory/2772.jpg", "type": "Anime", "genres": [ @@ -47216,7 +47216,7 @@ { "id": "kekkai-sensen-beyond", "title": "Kekkai Sensen & Beyond", - "mal_title": "Kekkai Sensen & Beyond", + "mal_id": 34451, "poster": "https://aruppi.jeluchu.xyz/res/directory/2773.jpg", "type": "Anime", "genres": [ @@ -47233,7 +47233,7 @@ { "id": "houseki-no-kuni-tv", "title": "Houseki no Kuni (TV)", - "mal_title": "Houseki no Kuni (TV)", + "mal_id": 35557, "poster": "https://aruppi.jeluchu.xyz/res/directory/2774.jpg", "type": "Anime", "genres": [ @@ -47249,7 +47249,7 @@ { "id": "hoozuki-no-reitetsu-2nd-season", "title": "Hoozuki no Reitetsu 2nd Season", - "mal_title": "Hoozuki no Reitetsu 2nd Season", + "mal_id": 35075, "poster": "https://aruppi.jeluchu.xyz/res/directory/2775.jpg", "type": "Anime", "genres": [ @@ -47267,7 +47267,7 @@ { "id": "classicaloid-2nd-season", "title": "ClassicaLoid 2nd Season", - "mal_title": "ClassicaLoid 2nd Season", + "mal_id": 35334, "poster": "https://aruppi.jeluchu.xyz/res/directory/2776.jpg", "type": "Anime", "genres": [ @@ -47282,7 +47282,7 @@ { "id": "animegataris", "title": "Animegataris", - "mal_title": "Animegataris", + "mal_id": 35427, "poster": "https://aruppi.jeluchu.xyz/res/directory/2777.jpg", "type": "Anime", "genres": [ @@ -47297,7 +47297,7 @@ { "id": "imouto-sae-ireba-ii", "title": "Imouto sae Ireba Ii.", - "mal_title": "Imouto sae Ireba Ii.", + "mal_id": 35413, "poster": "https://aruppi.jeluchu.xyz/res/directory/2778.jpg", "type": "Anime", "genres": [ @@ -47312,7 +47312,7 @@ { "id": "himouto-umaruchan-r", "title": "Himouto! Umaru-chan R", - "mal_title": "Himouto! Umaru-chan R", + "mal_id": 28825, "poster": "https://aruppi.jeluchu.xyz/res/directory/2779.jpg", "type": "Anime", "genres": [ @@ -47329,7 +47329,7 @@ { "id": "kujira-no-kora-wa-sajou-ni-utau", "title": "Kujira no Kora wa Sajou ni Utau", - "mal_title": "Kujira no Kora wa Sajou ni Utau", + "mal_id": 34712, "poster": "https://aruppi.jeluchu.xyz/res/directory/2780.jpg", "type": "Anime", "genres": [ @@ -47347,7 +47347,7 @@ { "id": "wake-up-girls-shin-shou", "title": "Wake Up, Girls! Shin Shou", - "mal_title": "Wake Up, Girls! Shin Shou", + "mal_id": 34522, "poster": "https://aruppi.jeluchu.xyz/res/directory/2781.jpg", "type": "Anime", "genres": [ @@ -47362,7 +47362,7 @@ { "id": "evil-or-live", "title": "Evil or Live", - "mal_title": "Evil or Live", + "mal_id": 36245, "poster": "https://aruppi.jeluchu.xyz/res/directory/2782.jpg", "type": "Anime", "genres": [ @@ -47376,7 +47376,7 @@ { "id": "boku-no-kanojo-ga-majimesugiru-shobitch-na-ken", "title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken", - "mal_title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken", + "mal_id": 35712, "poster": "https://aruppi.jeluchu.xyz/res/directory/2783.jpg", "type": "Anime", "genres": [ @@ -47392,7 +47392,7 @@ { "id": "inuyashiki", "title": "Inuyashiki", - "mal_title": "Inuyashiki", + "mal_id": 34542, "poster": "https://aruppi.jeluchu.xyz/res/directory/2784.jpg", "type": "Anime", "genres": [ @@ -47409,7 +47409,7 @@ { "id": "3gatsu-no-lion-2nd-season", "title": "3-gatsu no Lion 2nd Season", - "mal_title": "3-gatsu no Lion 2nd Season", + "mal_id": 35180, "poster": "https://aruppi.jeluchu.xyz/res/directory/2785.jpg", "type": "Anime", "genres": [ @@ -47426,7 +47426,7 @@ { "id": "yuuki-yuuna-wa-yuusha-de-aru-yuusha-no-shou", "title": "Yuuki Yuuna wa Yuusha de Aru: Yuusha no Shou", - "mal_title": "Yuuki Yuuna wa Yuusha de Aru: Yuusha no Shou", + "mal_id": 34445, "poster": "https://aruppi.jeluchu.xyz/res/directory/2786.jpg", "type": "Anime", "genres": [ @@ -47443,7 +47443,7 @@ { "id": "itsudatte-bokura-no-koi-wa-10-cm-datta", "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", - "mal_title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "mal_id": 36220, "poster": "https://aruppi.jeluchu.xyz/res/directory/2787.jpg", "type": "Anime", "genres": [ @@ -47460,7 +47460,7 @@ { "id": "fairy-tail-movie-2-dragon-cry", "title": "Fairy Tail Movie 2: Dragon Cry", - "mal_title": "Fairy Tail Movie 2: Dragon Cry", + "mal_id": 30778, "poster": "https://aruppi.jeluchu.xyz/res/directory/2788.jpg", "type": "Película", "genres": [ @@ -47479,7 +47479,7 @@ { "id": "pokemon-kimi-ni-kimeta", "title": "Pokemon: Kimi ni Kimeta!", - "mal_title": "Pokemon: Kimi ni Kimeta!", + "mal_id": 34540, "poster": "https://aruppi.jeluchu.xyz/res/directory/2789.jpg", "type": "Película", "genres": [ @@ -47496,7 +47496,7 @@ { "id": "nekopara", "title": "Nekopara", - "mal_title": "Nekopara", + "mal_id": 38924, "poster": "https://aruppi.jeluchu.xyz/res/directory/2790.jpg", "type": "OVA", "genres": [ @@ -47511,7 +47511,7 @@ { "id": "kono-sekai-no-katasumi-ni", "title": "Kono Sekai no Katasumi ni", - "mal_title": "Kono Sekai no Katasumi ni", + "mal_id": 15227, "poster": "https://aruppi.jeluchu.xyz/res/directory/2791.jpg", "type": "Película", "genres": [ @@ -47527,7 +47527,7 @@ { "id": "overlord-ii", "title": "Overlord II", - "mal_title": "Overlord II", + "mal_id": 35073, "poster": "https://aruppi.jeluchu.xyz/res/directory/2792.jpg", "type": "Anime", "genres": [ @@ -47545,7 +47545,7 @@ { "id": "sora-yori-mo-tooi-basho", "title": "Sora yori mo Tooi Basho", - "mal_title": "Sora yori mo Tooi Basho", + "mal_id": 35839, "poster": "https://aruppi.jeluchu.xyz/res/directory/2793.jpg", "type": "Anime", "genres": [ @@ -47559,7 +47559,7 @@ { "id": "ramen-daisuki-koizumisan", "title": "Ramen Daisuki Koizumi-san", - "mal_title": "Ramen Daisuki Koizumi-san", + "mal_id": 35298, "poster": "https://aruppi.jeluchu.xyz/res/directory/2794.jpg", "type": "Anime", "genres": [ @@ -47573,7 +47573,7 @@ { "id": "yuru-camp", "title": "Yuru Camp△", - "mal_title": "Yuru Camp△", + "mal_id": 34798, "poster": "https://aruppi.jeluchu.xyz/res/directory/2795.jpg", "type": "Anime", "genres": [ @@ -47588,7 +47588,7 @@ { "id": "fategrand-order-moonlightlostroom", "title": "Fate/Grand Order: Moonlight/Lostroom", - "mal_title": "Fate/Grand Order: Moonlight/Lostroom", + "mal_id": 36915, "poster": "https://aruppi.jeluchu.xyz/res/directory/2796.jpg", "type": "Especial", "genres": [ @@ -47605,7 +47605,7 @@ { "id": "emiyasan-chi-no-kyou-no-gohan", "title": "Emiya-san Chi no Kyou no Gohan", - "mal_title": "Emiya-san Chi no Kyou no Gohan", + "mal_id": 37033, "poster": "https://aruppi.jeluchu.xyz/res/directory/2797.jpg", "type": "OVA", "genres": [ @@ -47620,7 +47620,7 @@ { "id": "toji-no-miko", "title": "Toji no Miko", - "mal_title": "Toji no Miko", + "mal_id": 35589, "poster": "https://aruppi.jeluchu.xyz/res/directory/2798.jpg", "type": "Anime", "genres": [ @@ -47635,7 +47635,7 @@ { "id": "ito-junji-collection", "title": "Ito Junji: Collection", - "mal_title": "Ito Junji: Collection", + "mal_id": 36124, "poster": "https://aruppi.jeluchu.xyz/res/directory/2799.jpg", "type": "Anime", "genres": [ @@ -47653,7 +47653,7 @@ { "id": "grancrest-senki", "title": "Grancrest Senki", - "mal_title": "Grancrest Senki", + "mal_id": 34279, "poster": "https://aruppi.jeluchu.xyz/res/directory/2800.jpg", "type": "Anime", "genres": [ @@ -47668,7 +47668,7 @@ { "id": "sanrio-danshi", "title": "Sanrio Danshi", - "mal_title": "Sanrio Danshi", + "mal_id": 34839, "poster": "https://aruppi.jeluchu.xyz/res/directory/2801.jpg", "type": "Anime", "genres": [ @@ -47682,7 +47682,7 @@ { "id": "citrus", "title": "Citrus", - "mal_title": "Citrus", + "mal_id": 34382, "poster": "https://aruppi.jeluchu.xyz/res/directory/2802.jpg", "type": "Anime", "genres": [ @@ -47699,7 +47699,7 @@ { "id": "poputepipikku", "title": "Poputepipikku", - "mal_title": "Poputepipikku", + "mal_id": 35330, "poster": "https://aruppi.jeluchu.xyz/res/directory/2803.jpg", "type": "Anime", "genres": [ @@ -47713,7 +47713,7 @@ { "id": "slow-start", "title": "Slow Start", - "mal_title": "Slow Start", + "mal_id": 35540, "poster": "https://aruppi.jeluchu.xyz/res/directory/2804.jpg", "type": "Anime", "genres": [ @@ -47729,7 +47729,7 @@ { "id": "idolish7", "title": "IDOLiSH7", - "mal_title": "IDOLiSH7", + "mal_id": 33899, "poster": "https://aruppi.jeluchu.xyz/res/directory/2805.jpg", "type": "Anime", "genres": [ @@ -47743,7 +47743,7 @@ { "id": "cardcaptor-sakura-clear-cardhen", "title": "Cardcaptor Sakura: Clear Card-hen", - "mal_title": "Cardcaptor Sakura: Clear Card-hen", + "mal_id": 33354, "poster": "https://aruppi.jeluchu.xyz/res/directory/2806.jpg", "type": "Anime", "genres": [ @@ -47762,7 +47762,7 @@ { "id": "gakuen-babysitters", "title": "Gakuen Babysitters", - "mal_title": "Gakuen Babysitters", + "mal_id": 35222, "poster": "https://aruppi.jeluchu.xyz/res/directory/2807.jpg", "type": "Anime", "genres": [ @@ -47779,7 +47779,7 @@ { "id": "mitsuboshi-colors", "title": "Mitsuboshi Colors", - "mal_title": "Mitsuboshi Colors", + "mal_id": 35078, "poster": "https://aruppi.jeluchu.xyz/res/directory/2808.jpg", "type": "Anime", "genres": [ @@ -47794,7 +47794,7 @@ { "id": "kokkoku", "title": "Kokkoku", - "mal_title": "Kokkoku", + "mal_id": 36548, "poster": "https://aruppi.jeluchu.xyz/res/directory/2809.jpg", "type": "Anime", "genres": [ @@ -47811,7 +47811,7 @@ { "id": "gintama-gin-no-tamashiihen", "title": "Gintama.: Shirogane no Tamashii-hen", - "mal_title": "Gintama.: Shirogane no Tamashii-hen", + "mal_id": 37491, "poster": "https://aruppi.jeluchu.xyz/res/directory/2810.jpg", "type": "Anime", "genres": [ @@ -47831,7 +47831,7 @@ { "id": "ryuuou-no-oshigoto", "title": "Ryuuou no Oshigoto!", - "mal_title": "Ryuuou no Oshigoto!", + "mal_id": 35905, "poster": "https://aruppi.jeluchu.xyz/res/directory/2811.jpg", "type": "Anime", "genres": [ @@ -47847,7 +47847,7 @@ { "id": "karakai-jouzu-no-takagisan", "title": "Karakai Jouzu no Takagi-san", - "mal_title": "Karakai Jouzu no Takagi-san", + "mal_id": 35860, "poster": "https://aruppi.jeluchu.xyz/res/directory/2812.jpg", "type": "Anime", "genres": [ @@ -47865,7 +47865,7 @@ { "id": "basilisk-ouka-ninpouchou", "title": "Basilisk: Ouka Ninpouchou", - "mal_title": "Basilisk: Ouka Ninpouchou", + "mal_id": 35964, "poster": "https://aruppi.jeluchu.xyz/res/directory/2813.jpg", "type": "Anime", "genres": [ @@ -47883,7 +47883,7 @@ { "id": "yowamushi-pedal-glory-line", "title": "Yowamushi Pedal: Glory Line", - "mal_title": "Yowamushi Pedal: Glory Line", + "mal_id": 35789, "poster": "https://aruppi.jeluchu.xyz/res/directory/2814.jpg", "type": "Anime", "genres": [ @@ -47900,7 +47900,7 @@ { "id": "kaijuu-girls-ultra-kaijuu-gijinka-keikaku-2nd-season", "title": "Kaijuu Girls: Ultra Kaijuu Gijinka Keikaku 2nd Season", - "mal_title": "Kaijuu Girls: Ultra Kaijuu Gijinka Keikaku 2nd Season", + "mal_id": 36196, "poster": "https://aruppi.jeluchu.xyz/res/directory/2815.jpg", "type": "Anime", "genres": [ @@ -47916,7 +47916,7 @@ { "id": "hitori-no-shita-the-outcast-2nd-season", "title": "Hitori no Shita: The Outcast 2nd Season", - "mal_title": "Hitori no Shita: The Outcast 2nd Season", + "mal_id": 35333, "poster": "https://aruppi.jeluchu.xyz/res/directory/2816.jpg", "type": "Anime", "genres": [ @@ -47932,7 +47932,7 @@ { "id": "shingeki-no-kyojin-lost-girls", "title": "Shingeki no Kyojin: Lost Girls", - "mal_title": "Shingeki no Kyojin: Lost Girls", + "mal_id": 36106, "poster": "https://aruppi.jeluchu.xyz/res/directory/2817.jpg", "type": "OVA", "genres": [ @@ -47950,7 +47950,7 @@ { "id": "25sai-no-jyoshikousei", "title": "25-sai no Jyoshikousei", - "mal_title": "25-sai no Jyoshikousei", + "mal_id": 36840, "poster": "https://aruppi.jeluchu.xyz/res/directory/2818.jpg", "type": "Anime", "genres": [ @@ -47966,7 +47966,7 @@ { "id": "koi-wa-ameagari-no-you-ni", "title": "Koi wa Ameagari no You ni", - "mal_title": "Koi wa Ameagari no You ni", + "mal_id": 34984, "poster": "https://aruppi.jeluchu.xyz/res/directory/2819.jpg", "type": "Anime", "genres": [ @@ -47981,7 +47981,7 @@ { "id": "violet-evergarden", "title": "Violet Evergarden", - "mal_title": "Violet Evergarden", + "mal_id": 33352, "poster": "https://aruppi.jeluchu.xyz/res/directory/2820.jpg", "type": "Anime", "genres": [ @@ -47996,7 +47996,7 @@ { "id": "dame-x-prince-anime-caravan", "title": "Dame x Prince Anime Caravan", - "mal_title": "Dame x Prince Anime Caravan", + "mal_id": 35988, "poster": "https://aruppi.jeluchu.xyz/res/directory/2821.jpg", "type": "Anime", "genres": [ @@ -48011,7 +48011,7 @@ { "id": "marchen-madchen", "title": "Märchen Mädchen", - "mal_title": "Märchen Mädchen", + "mal_id": 35997, "poster": "https://aruppi.jeluchu.xyz/res/directory/2822.jpg", "type": "Anime", "genres": [ @@ -48027,7 +48027,7 @@ { "id": "death-march-kara-hajimaru-isekai-kyousoukyoku", "title": "Death March kara Hajimaru Isekai Kyousoukyoku", - "mal_title": "Death March kara Hajimaru Isekai Kyousoukyoku", + "mal_id": 34497, "poster": "https://aruppi.jeluchu.xyz/res/directory/2823.jpg", "type": "Anime", "genres": [ @@ -48041,7 +48041,7 @@ { "id": "miira-no-kaikata", "title": "Miira no Kaikata", - "mal_title": "Miira no Kaikata", + "mal_id": 35828, "poster": "https://aruppi.jeluchu.xyz/res/directory/2824.jpg", "type": "Anime", "genres": [ @@ -48057,7 +48057,7 @@ { "id": "dagashi-kashi-2", "title": "Dagashi Kashi 2", - "mal_title": "Dagashi Kashi 2", + "mal_id": 36049, "poster": "https://aruppi.jeluchu.xyz/res/directory/2825.jpg", "type": "Anime", "genres": [ @@ -48073,7 +48073,7 @@ { "id": "takunomi", "title": "Takunomi.", - "mal_title": "Takunomi.", + "mal_id": 36108, "poster": "https://aruppi.jeluchu.xyz/res/directory/2826.jpg", "type": "Anime", "genres": [ @@ -48088,7 +48088,7 @@ { "id": "hakata-tonkotsu-ramens", "title": "Hakata Tonkotsu Ramens", - "mal_title": "Hakata Tonkotsu Ramens", + "mal_id": 35889, "poster": "https://aruppi.jeluchu.xyz/res/directory/2827.jpg", "type": "Anime", "genres": [ @@ -48102,7 +48102,7 @@ { "id": "hakumei-to-mikochi", "title": "Hakumei to Mikochi", - "mal_title": "Hakumei to Mikochi", + "mal_id": 36094, "poster": "https://aruppi.jeluchu.xyz/res/directory/2828.jpg", "type": "Anime", "genres": [ @@ -48118,7 +48118,7 @@ { "id": "hakyuu-houshin-engi", "title": "Hakyuu Houshin Engi", - "mal_title": "Hakyuu Houshin Engi", + "mal_id": 36029, "poster": "https://aruppi.jeluchu.xyz/res/directory/2829.jpg", "type": "Anime", "genres": [ @@ -48136,7 +48136,7 @@ { "id": "killing-bites", "title": "Killing Bites", - "mal_title": "Killing Bites", + "mal_id": 34964, "poster": "https://aruppi.jeluchu.xyz/res/directory/2830.jpg", "type": "Anime", "genres": [ @@ -48154,7 +48154,7 @@ { "id": "nanatsu-no-taizai-imashime-no-fukkatsu", "title": "Nanatsu no Taizai: Imashime no Fukkatsu", - "mal_title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "mal_id": 34577, "poster": "https://aruppi.jeluchu.xyz/res/directory/2831.jpg", "type": "Anime", "genres": [ @@ -48171,7 +48171,7 @@ { "id": "gin-no-guardian-2nd-season", "title": "Gin no Guardian 2nd Season", - "mal_title": "Gin no Guardian 2nd Season", + "mal_id": 19363, "poster": "https://aruppi.jeluchu.xyz/res/directory/2832.jpg", "type": "Anime", "genres": [ @@ -48186,7 +48186,7 @@ { "id": "darling-in-the-franxx", "title": "Darling in the FranXX", - "mal_title": "Darling in the FranXX", + "mal_id": 35849, "poster": "https://aruppi.jeluchu.xyz/res/directory/2833.jpg", "type": "Anime", "genres": [ @@ -48201,7 +48201,7 @@ { "id": "beatless", "title": "Beatless", - "mal_title": "Beatless", + "mal_id": 36516, "poster": "https://aruppi.jeluchu.xyz/res/directory/2834.jpg", "type": "Anime", "genres": [ @@ -48218,7 +48218,7 @@ { "id": "zoku-touken-ranbu-hanamaru", "title": "Zoku Touken Ranbu: Hanamaru", - "mal_title": "Zoku Touken Ranbu: Hanamaru", + "mal_id": 34863, "poster": "https://aruppi.jeluchu.xyz/res/directory/2835.jpg", "type": "Anime", "genres": [ @@ -48237,7 +48237,7 @@ { "id": "nanatsu-no-bitoku", "title": "Nanatsu no Bitoku", - "mal_title": "Nanatsu no Bitoku", + "mal_id": 36847, "poster": "https://aruppi.jeluchu.xyz/res/directory/2836.jpg", "type": "Anime", "genres": [ @@ -48252,7 +48252,7 @@ { "id": "fateextra-last-encore", "title": "Fate/Extra Last Encore", - "mal_title": "Fate/Extra Last Encore", + "mal_id": 33047, "poster": "https://aruppi.jeluchu.xyz/res/directory/2837.jpg", "type": "Anime", "genres": [ @@ -48268,7 +48268,7 @@ { "id": "mahouka-koukou-no-rettousei-movie-hoshi-wo-yobu-shoujo", "title": "Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo", - "mal_title": "Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo", + "mal_id": 32900, "poster": "https://aruppi.jeluchu.xyz/res/directory/2838.jpg", "type": "Película", "genres": [ @@ -48285,7 +48285,7 @@ { "id": "no-game-no-life-zero", "title": "No Game No Life: Zero", - "mal_title": "No Game No Life: Zero", + "mal_id": 33674, "poster": "https://aruppi.jeluchu.xyz/res/directory/2839.jpg", "type": "Película", "genres": [ @@ -48303,7 +48303,7 @@ { "id": "spiritpact-2", "title": "Spiritpact 2", - "mal_title": "Spiritpact 2", + "mal_id": 36522, "poster": "https://aruppi.jeluchu.xyz/res/directory/2840.jpg", "type": "Anime", "genres": [ @@ -48321,7 +48321,7 @@ { "id": "shinmai-maou-no-testament-departures", "title": "Shinmai Maou no Testament Departures", - "mal_title": "Shinmai Maou no Testament Departures", + "mal_id": 36688, "poster": "https://aruppi.jeluchu.xyz/res/directory/2841.jpg", "type": "OVA", "genres": [ @@ -48340,7 +48340,7 @@ { "id": "relife-kanketsuhen", "title": "ReLIFE: Kanketsu-hen", - "mal_title": "ReLIFE: Kanketsu-hen", + "mal_id": 37921, "poster": "https://aruppi.jeluchu.xyz/res/directory/2842.jpg", "type": "Especial", "genres": [ @@ -48356,7 +48356,7 @@ { "id": "mahou-shoujo-ore", "title": "Mahou Shoujo Ore", - "mal_title": "Mahou Shoujo Ore", + "mal_id": 36902, "poster": "https://aruppi.jeluchu.xyz/res/directory/2843.jpg", "type": "Anime", "genres": [ @@ -48372,7 +48372,7 @@ { "id": "uma-musume-pretty-derby-tv", "title": "Uma Musume: Pretty Derby (TV)", - "mal_title": "Uma Musume: Pretty Derby (TV)", + "mal_id": 35249, "poster": "https://aruppi.jeluchu.xyz/res/directory/2844.jpg", "type": "Anime", "genres": [ @@ -48386,7 +48386,7 @@ { "id": "gegege-no-kitarou-2018", "title": "Gegege no Kitarou (2018)", - "mal_title": "Gegege no Kitarou (2018)", + "mal_id": 37140, "poster": "https://aruppi.jeluchu.xyz/res/directory/2845.jpg", "type": "Anime", "genres": [ @@ -48403,7 +48403,7 @@ { "id": "kakuriyo-no-yadomeshi", "title": "Kakuriyo no Yadomeshi", - "mal_title": "Kakuriyo no Yadomeshi", + "mal_id": 36754, "poster": "https://aruppi.jeluchu.xyz/res/directory/2846.jpg", "type": "Anime", "genres": [ @@ -48418,7 +48418,7 @@ { "id": "uchuu-senkan-tiramisu", "title": "Uchuu Senkan Tiramisù", - "mal_title": "Uchuu Senkan Tiramisù", + "mal_id": 36267, "poster": "https://aruppi.jeluchu.xyz/res/directory/2847.jpg", "type": "Anime", "genres": [ @@ -48437,7 +48437,7 @@ { "id": "souten-no-ken-regenesis", "title": "Souten no Ken Re:Genesis", - "mal_title": "Souten no Ken Re:Genesis", + "mal_id": 36655, "poster": "https://aruppi.jeluchu.xyz/res/directory/2848.jpg", "type": "Anime", "genres": [ @@ -48453,7 +48453,7 @@ { "id": "captain-tsubasa-2018", "title": "Captain Tsubasa (2018)", - "mal_title": "Captain Tsubasa (2018)", + "mal_id": 36934, "poster": "https://aruppi.jeluchu.xyz/res/directory/2849.jpg", "type": "Anime", "genres": [ @@ -48469,7 +48469,7 @@ { "id": "gundam-build-divers", "title": "Gundam Build Divers", - "mal_title": "Gundam Build Divers", + "mal_id": 37245, "poster": "https://aruppi.jeluchu.xyz/res/directory/2850.jpg", "type": "Anime", "genres": [ @@ -48485,7 +48485,7 @@ { "id": "ginga-eiyuu-densetsu-die-neue-these-kaikou", "title": "Ginga Eiyuu Densetsu: Die Neue These - Kaikou", - "mal_title": "Ginga Eiyuu Densetsu: Die Neue These - Kaikou", + "mal_id": 31433, "poster": "https://aruppi.jeluchu.xyz/res/directory/2851.jpg", "type": "Anime", "genres": [ @@ -48503,7 +48503,7 @@ { "id": "tokyo-ghoulre", "title": "Tokyo Ghoul:re", - "mal_title": "Tokyo Ghoul:re", + "mal_id": 22319, "poster": "https://aruppi.jeluchu.xyz/res/directory/2852.jpg", "type": "Anime", "genres": [ @@ -48523,7 +48523,7 @@ { "id": "tachibanakan-triangle", "title": "Tachibanakan Triangle", - "mal_title": "Tachibanakan Triangle", + "mal_id": 36943, "poster": "https://aruppi.jeluchu.xyz/res/directory/2853.jpg", "type": "Anime", "genres": [ @@ -48539,7 +48539,7 @@ { "id": "lupin-iii-part-v", "title": "Lupin III: Part V", - "mal_title": "Lupin III: Part V", + "mal_id": 35857, "poster": "https://aruppi.jeluchu.xyz/res/directory/2854.jpg", "type": "Anime", "genres": [ @@ -48555,7 +48555,7 @@ { "id": "3d-kanojo-real-girl", "title": "3D Kanojo: Real Girl", - "mal_title": "3D Kanojo: Real Girl", + "mal_id": 36793, "poster": "https://aruppi.jeluchu.xyz/res/directory/2855.jpg", "type": "Anime", "genres": [ @@ -48571,7 +48571,7 @@ { "id": "alice-or-alice-siscon-niisan-to-futago-no-imouto", "title": "Alice or Alice: Siscon Niisan to Futago no Imouto", - "mal_title": "Alice or Alice: Siscon Niisan to Futago no Imouto", + "mal_id": 36001, "poster": "https://aruppi.jeluchu.xyz/res/directory/2856.jpg", "type": "Anime", "genres": [ @@ -48586,7 +48586,7 @@ { "id": "tadakun-wa-koi-wo-shinai", "title": "Tada-kun wa Koi wo Shinai", - "mal_title": "Tada-kun wa Koi wo Shinai", + "mal_id": 36470, "poster": "https://aruppi.jeluchu.xyz/res/directory/2857.jpg", "type": "Anime", "genres": [ @@ -48601,7 +48601,7 @@ { "id": "comic-girls", "title": "Comic Girls", - "mal_title": "Comic Girls", + "mal_id": 35756, "poster": "https://aruppi.jeluchu.xyz/res/directory/2858.jpg", "type": "Anime", "genres": [ @@ -48616,7 +48616,7 @@ { "id": "saredo-tsumibito-wa-ryuu-to-odoru", "title": "Saredo Tsumibito wa Ryuu to Odoru", - "mal_title": "Saredo Tsumibito wa Ryuu to Odoru", + "mal_id": 33889, "poster": "https://aruppi.jeluchu.xyz/res/directory/2859.jpg", "type": "Anime", "genres": [ @@ -48633,7 +48633,7 @@ { "id": "megalo-box", "title": "Megalo Box", - "mal_title": "Megalo Box", + "mal_id": 36563, "poster": "https://aruppi.jeluchu.xyz/res/directory/2860.jpg", "type": "Anime", "genres": [ @@ -48651,7 +48651,7 @@ { "id": "gurazeni", "title": "Gurazeni", - "mal_title": "Gurazeni", + "mal_id": 35183, "poster": "https://aruppi.jeluchu.xyz/res/directory/2861.jpg", "type": "Anime", "genres": [ @@ -48668,7 +48668,7 @@ { "id": "akkun-to-kanojo", "title": "Akkun to Kanojo", - "mal_title": "Akkun to Kanojo", + "mal_id": 36864, "poster": "https://aruppi.jeluchu.xyz/res/directory/2862.jpg", "type": "Anime", "genres": [ @@ -48685,7 +48685,7 @@ { "id": "lostorage-conflated-wixoss", "title": "Lostorage Conflated WIXOSS", - "mal_title": "Lostorage Conflated WIXOSS", + "mal_id": 34607, "poster": "https://aruppi.jeluchu.xyz/res/directory/2863.jpg", "type": "Anime", "genres": [ @@ -48700,7 +48700,7 @@ { "id": "nobunaga-no-shinobi-anegawa-ishiyamahen", "title": "Nobunaga no Shinobi: Anegawa Ishiyama-hen", - "mal_title": "Nobunaga no Shinobi: Anegawa Ishiyama-hen", + "mal_id": 37126, "poster": "https://aruppi.jeluchu.xyz/res/directory/2864.jpg", "type": "Anime", "genres": [ @@ -48715,7 +48715,7 @@ { "id": "mahou-shoujo-site", "title": "Mahou Shoujo Site", - "mal_title": "Mahou Shoujo Site", + "mal_id": 36266, "poster": "https://aruppi.jeluchu.xyz/res/directory/2865.jpg", "type": "Anime", "genres": [ @@ -48732,7 +48732,7 @@ { "id": "boku-no-hero-academia-3rd-season", "title": "Boku no Hero Academia 3rd Season", - "mal_title": "Boku no Hero Academia 3rd Season", + "mal_id": 36456, "poster": "https://aruppi.jeluchu.xyz/res/directory/2866.jpg", "type": "Anime", "genres": [ @@ -48750,7 +48750,7 @@ { "id": "hinamatsuri", "title": "Hinamatsuri", - "mal_title": "Hinamatsuri", + "mal_id": 36296, "poster": "https://aruppi.jeluchu.xyz/res/directory/2867.jpg", "type": "Anime", "genres": [ @@ -48768,7 +48768,7 @@ { "id": "major-2nd-tv", "title": "Major 2nd (TV)", - "mal_title": "Major 2nd (TV)", + "mal_id": 36565, "poster": "https://aruppi.jeluchu.xyz/res/directory/2868.jpg", "type": "Anime", "genres": [ @@ -48785,7 +48785,7 @@ { "id": "amanchu-advance", "title": "Amanchu! Advance", - "mal_title": "Amanchu! Advance", + "mal_id": 36800, "poster": "https://aruppi.jeluchu.xyz/res/directory/2869.jpg", "type": "Anime", "genres": [ @@ -48802,7 +48802,7 @@ { "id": "sword-art-online-alternative-gun-gale-online", "title": "Sword Art Online Alternative: Gun Gale Online", - "mal_title": "Sword Art Online Alternative: Gun Gale Online", + "mal_id": 36475, "poster": "https://aruppi.jeluchu.xyz/res/directory/2870.jpg", "type": "Anime", "genres": [ @@ -48820,7 +48820,7 @@ { "id": "persona-5-the-animation", "title": "Persona 5 the Animation", - "mal_title": "Persona 5 the Animation", + "mal_id": 36023, "poster": "https://aruppi.jeluchu.xyz/res/directory/2871.jpg", "type": "Anime", "genres": [ @@ -48836,7 +48836,7 @@ { "id": "devils-line", "title": "Devils Line", - "mal_title": "Devils Line", + "mal_id": 35928, "poster": "https://aruppi.jeluchu.xyz/res/directory/2872.jpg", "type": "Anime", "genres": [ @@ -48855,7 +48855,7 @@ { "id": "omae-wa-mada-gunma-wo-shiranai", "title": "Omae wa Mada Gunma wo Shiranai", - "mal_title": "Omae wa Mada Gunma wo Shiranai", + "mal_id": 37258, "poster": "https://aruppi.jeluchu.xyz/res/directory/2873.jpg", "type": "Anime", "genres": [ @@ -48870,7 +48870,7 @@ { "id": "nil-admirari-no-tenbin-teito-genwaku-kitan", "title": "Nil Admirari no Tenbin: Teito Genwaku Kitan", - "mal_title": "Nil Admirari no Tenbin: Teito Genwaku Kitan", + "mal_id": 33850, "poster": "https://aruppi.jeluchu.xyz/res/directory/2874.jpg", "type": "Anime", "genres": [ @@ -48886,7 +48886,7 @@ { "id": "cutie-honey-universe", "title": "Cutie Honey Universe", - "mal_title": "Cutie Honey Universe", + "mal_id": 36976, "poster": "https://aruppi.jeluchu.xyz/res/directory/2875.jpg", "type": "Anime", "genres": [ @@ -48905,7 +48905,7 @@ { "id": "caligula", "title": "Caligula", - "mal_title": "Caligula", + "mal_id": 36828, "poster": "https://aruppi.jeluchu.xyz/res/directory/2876.jpg", "type": "Anime", "genres": [ @@ -48920,7 +48920,7 @@ { "id": "shokugeki-no-souma-san-no-sara-toutsuki-resshahen", "title": "Shokugeki no Souma: San no Sara - Toutsuki Ressha-hen", - "mal_title": "Shokugeki no Souma: San no Sara - Toutsuki Ressha-hen", + "mal_id": 36949, "poster": "https://aruppi.jeluchu.xyz/res/directory/2877.jpg", "type": "Anime", "genres": [ @@ -48936,7 +48936,7 @@ { "id": "binan-koukou-chikyuu-boueibu-happy-kiss", "title": "Binan Koukou Chikyuu Boueibu Happy Kiss!", - "mal_title": "Binan Koukou Chikyuu Boueibu Happy Kiss!", + "mal_id": 37036, "poster": "https://aruppi.jeluchu.xyz/res/directory/2878.jpg", "type": "Anime", "genres": [ @@ -48953,7 +48953,7 @@ { "id": "golden-kamuy", "title": "Golden Kamuy", - "mal_title": "Golden Kamuy", + "mal_id": 36028, "poster": "https://aruppi.jeluchu.xyz/res/directory/2879.jpg", "type": "Anime", "genres": [ @@ -48970,7 +48970,7 @@ { "id": "fumikiri-jikan", "title": "Fumikiri Jikan", - "mal_title": "Fumikiri Jikan", + "mal_id": 37188, "poster": "https://aruppi.jeluchu.xyz/res/directory/2880.jpg", "type": "Anime", "genres": [ @@ -48985,7 +48985,7 @@ { "id": "rokuhoudou-yotsuiro-biyori", "title": "Rokuhoudou Yotsuiro Biyori", - "mal_title": "Rokuhoudou Yotsuiro Biyori", + "mal_id": 36513, "poster": "https://aruppi.jeluchu.xyz/res/directory/2881.jpg", "type": "Anime", "genres": [ @@ -49000,7 +49000,7 @@ { "id": "high-school-dxd-hero", "title": "High School DxD Hero", - "mal_title": "High School DxD Hero", + "mal_id": 34281, "poster": "https://aruppi.jeluchu.xyz/res/directory/2882.jpg", "type": "Anime", "genres": [ @@ -49020,7 +49020,7 @@ { "id": "last-period-owarinaki-rasen-no-monogatari", "title": "Last Period: Owarinaki Rasen no Monogatari", - "mal_title": "Last Period: Owarinaki Rasen no Monogatari", + "mal_id": 37254, "poster": "https://aruppi.jeluchu.xyz/res/directory/2883.jpg", "type": "Anime", "genres": [ @@ -49038,7 +49038,7 @@ { "id": "butlers-chitose-momotose-monogatari", "title": "Butlers: Chitose Momotose Monogatari", - "mal_title": "Butlers: Chitose Momotose Monogatari", + "mal_id": 36309, "poster": "https://aruppi.jeluchu.xyz/res/directory/2884.jpg", "type": "Anime", "genres": [ @@ -49054,7 +49054,7 @@ { "id": "steinsgate-0", "title": "Steins;Gate 0", - "mal_title": "Steins;Gate 0", + "mal_id": 30484, "poster": "https://aruppi.jeluchu.xyz/res/directory/2885.jpg", "type": "Anime", "genres": [ @@ -49069,7 +49069,7 @@ { "id": "doreiku-the-animation", "title": "Dorei-ku The Animation", - "mal_title": "Dorei-ku The Animation", + "mal_id": 36525, "poster": "https://aruppi.jeluchu.xyz/res/directory/2886.jpg", "type": "Anime", "genres": [ @@ -49084,7 +49084,7 @@ { "id": "wotaku-ni-koi-wa-muzukashii", "title": "Wotaku ni Koi wa Muzukashii", - "mal_title": "Wotaku ni Koi wa Muzukashii", + "mal_id": 35968, "poster": "https://aruppi.jeluchu.xyz/res/directory/2887.jpg", "type": "Anime", "genres": [ @@ -49099,7 +49099,7 @@ { "id": "isekai-izakaya-koto-aitheria-no-izakaya-nobu", "title": "Isekai Izakaya: Koto Aitheria no Izakaya Nobu", - "mal_title": "Isekai Izakaya: Koto Aitheria no Izakaya Nobu", + "mal_id": 34420, "poster": "https://aruppi.jeluchu.xyz/res/directory/2888.jpg", "type": "Anime", "genres": [ @@ -49113,7 +49113,7 @@ { "id": "full-metal-panic-invisible-victory", "title": "Full Metal Panic! Invisible Victory", - "mal_title": "Full Metal Panic! Invisible Victory", + "mal_id": 31931, "poster": "https://aruppi.jeluchu.xyz/res/directory/2889.jpg", "type": "Anime", "genres": [ @@ -49129,7 +49129,7 @@ { "id": "fatekaleid-liner-prismaillya-movie-sekka-no-chikai", "title": "Fate/kaleid liner Prisma☆Illya Movie: Sekka no Chikai", - "mal_title": "Fate/kaleid liner Prisma☆Illya Movie: Sekka no Chikai", + "mal_id": 34100, "poster": "https://aruppi.jeluchu.xyz/res/directory/2890.jpg", "type": "Película", "genres": [ @@ -49146,7 +49146,7 @@ { "id": "piano-no-mori-tv", "title": "Piano no Mori (TV)", - "mal_title": "Piano no Mori (TV)", + "mal_id": 36652, "poster": "https://aruppi.jeluchu.xyz/res/directory/2891.jpg", "type": "Anime", "genres": [ @@ -49165,7 +49165,7 @@ { "id": "uchiage-hanabi-shita-kara-miru-ka-yoko-kara-miru-ka", "title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", - "mal_title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", + "mal_id": 34498, "poster": "https://aruppi.jeluchu.xyz/res/directory/2892.jpg", "type": "Película", "genres": [ @@ -49179,7 +49179,7 @@ { "id": "fatestay-night-movie-heavens-feel-i-presage-flower", "title": "Fate/stay night Movie: Heaven's Feel", - "mal_title": "Fate/stay night Movie: Heaven's Feel", + "mal_id": 33050, "poster": "https://aruppi.jeluchu.xyz/res/directory/2893.jpg", "type": "Película", "genres": [ @@ -49196,7 +49196,7 @@ { "id": "to-be-heroine", "title": "To Be Heroine", - "mal_title": "To Be Heroine", + "mal_id": 34009, "poster": "https://aruppi.jeluchu.xyz/res/directory/2894.jpg", "type": "Anime", "genres": [ @@ -49211,7 +49211,7 @@ { "id": "dragon-ball-heroes", "title": "Dragon Ball Heroes", - "mal_title": "Dragon Ball Heroes", + "mal_id": 37885, "poster": "https://aruppi.jeluchu.xyz/res/directory/2895.jpg", "type": "OVA", "genres": [ @@ -49230,7 +49230,7 @@ { "id": "island", "title": "Island", - "mal_title": "Island", + "mal_id": 33012, "poster": "https://aruppi.jeluchu.xyz/res/directory/2896.jpg", "type": "Anime", "genres": [ @@ -49245,7 +49245,7 @@ { "id": "hanebado", "title": "Hanebado!", - "mal_title": "Hanebado!", + "mal_id": 37259, "poster": "https://aruppi.jeluchu.xyz/res/directory/2897.jpg", "type": "Anime", "genres": [ @@ -49260,7 +49260,7 @@ { "id": "one-room-2nd-season", "title": "One Room 2nd Season", - "mal_title": "One Room 2nd Season", + "mal_id": 36431, "poster": "https://aruppi.jeluchu.xyz/res/directory/2898.jpg", "type": "Anime", "genres": [ @@ -49274,7 +49274,7 @@ { "id": "yama-no-susume-third-season", "title": "Yama no Susume: Third Season", - "mal_title": "Yama no Susume: Third Season", + "mal_id": 35672, "poster": "https://aruppi.jeluchu.xyz/res/directory/2899.jpg", "type": "Anime", "genres": [ @@ -49290,7 +49290,7 @@ { "id": "cinderella-girls-gekijou-3rd-season", "title": "Cinderella Girls Gekijou 3rd Season", - "mal_title": "Cinderella Girls Gekijou 3rd Season", + "mal_id": 37422, "poster": "https://aruppi.jeluchu.xyz/res/directory/2900.jpg", "type": "Anime", "genres": [ @@ -49305,7 +49305,7 @@ { "id": "senjuushi", "title": "Senjuushi", - "mal_title": "Senjuushi", + "mal_id": 37571, "poster": "https://aruppi.jeluchu.xyz/res/directory/2901.jpg", "type": "Anime", "genres": [ @@ -49319,7 +49319,7 @@ { "id": "chuukan-kanriroku-tonegawa", "title": "Chuukan Kanriroku Tonegawa", - "mal_title": "Chuukan Kanriroku Tonegawa", + "mal_id": 37338, "poster": "https://aruppi.jeluchu.xyz/res/directory/2902.jpg", "type": "Anime", "genres": [ @@ -49337,7 +49337,7 @@ { "id": "aru-zombie-shoujo-no-sainan-ona", "title": "Aru Zombie Shoujo no Sainan (ONA)", - "mal_title": "Aru Zombie Shoujo no Sainan (ONA)", + "mal_id": 37735, "poster": "https://aruppi.jeluchu.xyz/res/directory/2903.jpg", "type": "OVA", "genres": [ @@ -49353,7 +49353,7 @@ { "id": "yuragisou-no-yuunasan-ova", "title": "Yuragi-sou no Yuuna-san OVA", - "mal_title": "Yuragi-sou no Yuuna-san OVA", + "mal_id": 36950, "poster": "https://aruppi.jeluchu.xyz/res/directory/2904.jpg", "type": "OVA", "genres": [ @@ -49371,7 +49371,7 @@ { "id": "yume-oukoku-to-nemureru-100-nin-no-oujisama", "title": "Yume Oukoku to Nemureru 100 Nin no Ouji-sama", - "mal_title": "Yume Oukoku to Nemureru 100 Nin no Ouji-sama", + "mal_id": 33966, "poster": "https://aruppi.jeluchu.xyz/res/directory/2905.jpg", "type": "Anime", "genres": [ @@ -49386,7 +49386,7 @@ { "id": "isekai-maou-to-shoukan-shoujo-no-dorei-majutsu", "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", - "mal_title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "mal_id": 41623, "poster": "https://aruppi.jeluchu.xyz/res/directory/2906.jpg", "type": "Anime", "genres": [ @@ -49402,7 +49402,7 @@ { "id": "shichisei-no-subaru", "title": "Shichisei no Subaru", - "mal_title": "Shichisei no Subaru", + "mal_id": 36316, "poster": "https://aruppi.jeluchu.xyz/res/directory/2907.jpg", "type": "Anime", "genres": [ @@ -49419,7 +49419,7 @@ { "id": "banana-fish", "title": "Banana Fish", - "mal_title": "Banana Fish", + "mal_id": 36649, "poster": "https://aruppi.jeluchu.xyz/res/directory/2908.jpg", "type": "Anime", "genres": [ @@ -49436,7 +49436,7 @@ { "id": "sunoharasou-no-kanrininsan", "title": "Sunoharasou no Kanrinin-san", - "mal_title": "Sunoharasou no Kanrinin-san", + "mal_id": 36817, "poster": "https://aruppi.jeluchu.xyz/res/directory/2909.jpg", "type": "Anime", "genres": [ @@ -49451,7 +49451,7 @@ { "id": "satsuriku-no-tenshi", "title": "Satsuriku no Tenshi", - "mal_title": "Satsuriku no Tenshi", + "mal_id": 35994, "poster": "https://aruppi.jeluchu.xyz/res/directory/2910.jpg", "type": "Anime", "genres": [ @@ -49468,7 +49468,7 @@ { "id": "harukana-receive", "title": "Harukana Receive", - "mal_title": "Harukana Receive", + "mal_id": 35983, "poster": "https://aruppi.jeluchu.xyz/res/directory/2911.jpg", "type": "Anime", "genres": [ @@ -49484,7 +49484,7 @@ { "id": "chiochan-no-tsuugakuro", "title": "Chio-chan no Tsuugakuro", - "mal_title": "Chio-chan no Tsuugakuro", + "mal_id": 35821, "poster": "https://aruppi.jeluchu.xyz/res/directory/2912.jpg", "type": "Anime", "genres": [ @@ -49499,7 +49499,7 @@ { "id": "yami-shibai-6", "title": "Yami Shibai 6", - "mal_title": "Yami Shibai 6", + "mal_id": 37893, "poster": "https://aruppi.jeluchu.xyz/res/directory/2913.jpg", "type": "Anime", "genres": [ @@ -49515,7 +49515,7 @@ { "id": "hataraku-saibou-tv", "title": "Hataraku Saibou (TV)", - "mal_title": "Hataraku Saibou (TV)", + "mal_id": 37141, "poster": "https://aruppi.jeluchu.xyz/res/directory/2914.jpg", "type": "Anime", "genres": [ @@ -49530,7 +49530,7 @@ { "id": "planet-with", "title": "Planet With", - "mal_title": "Planet With", + "mal_id": 37578, "poster": "https://aruppi.jeluchu.xyz/res/directory/2915.jpg", "type": "Anime", "genres": [ @@ -49546,7 +49546,7 @@ { "id": "asobi-asobase", "title": "Asobi Asobase", - "mal_title": "Asobi Asobase", + "mal_id": 37171, "poster": "https://aruppi.jeluchu.xyz/res/directory/2916.jpg", "type": "Anime", "genres": [ @@ -49562,7 +49562,7 @@ { "id": "gintama-shirogane-no-tamashiihen-2", "title": "Gintama.: Shirogane no Tamashii-hen 2", - "mal_title": "Gintama.: Shirogane no Tamashii-hen 2", + "mal_id": 37491, "poster": "https://aruppi.jeluchu.xyz/res/directory/2917.jpg", "type": "Anime", "genres": [ @@ -49582,7 +49582,7 @@ { "id": "back-street-girls-gokudolls", "title": "Back Street Girls: Gokudolls", - "mal_title": "Back Street Girls: Gokudolls", + "mal_id": 36873, "poster": "https://aruppi.jeluchu.xyz/res/directory/2918.jpg", "type": "Anime", "genres": [ @@ -49598,7 +49598,7 @@ { "id": "hyakuren-no-haou-to-seiyaku-no-valkyria", "title": "Hyakuren no Haou to Seiyaku no Valkyria", - "mal_title": "Hyakuren no Haou to Seiyaku no Valkyria", + "mal_id": 37446, "poster": "https://aruppi.jeluchu.xyz/res/directory/2919.jpg", "type": "Anime", "genres": [ @@ -49613,7 +49613,7 @@ { "id": "ongaku-shoujo-tv", "title": "Ongaku Shoujo (TV)", - "mal_title": "Ongaku Shoujo (TV)", + "mal_id": 37481, "poster": "https://aruppi.jeluchu.xyz/res/directory/2920.jpg", "type": "Anime", "genres": [ @@ -49628,7 +49628,7 @@ { "id": "phantom-in-the-twilight", "title": "Phantom in the Twilight", - "mal_title": "Phantom in the Twilight", + "mal_id": 37598, "poster": "https://aruppi.jeluchu.xyz/res/directory/2921.jpg", "type": "Anime", "genres": [ @@ -49644,7 +49644,7 @@ { "id": "jashinchan-dropkick", "title": "Jashin-chan Dropkick", - "mal_title": "Jashin-chan Dropkick", + "mal_id": 36906, "poster": "https://aruppi.jeluchu.xyz/res/directory/2922.jpg", "type": "Anime", "genres": [ @@ -49660,7 +49660,7 @@ { "id": "kyoto-teramachi-sanjou-no-holmes", "title": "Kyoto Teramachi Sanjou no Holmes", - "mal_title": "Kyoto Teramachi Sanjou no Holmes", + "mal_id": 37458, "poster": "https://aruppi.jeluchu.xyz/res/directory/2923.jpg", "type": "Anime", "genres": [ @@ -49674,7 +49674,7 @@ { "id": "overlord-iii", "title": "Overlord III", - "mal_title": "Overlord III", + "mal_id": 37675, "poster": "https://aruppi.jeluchu.xyz/res/directory/2924.jpg", "type": "Anime", "genres": [ @@ -49693,7 +49693,7 @@ { "id": "angolmois-genkou-kassenki", "title": "Angolmois: Genkou Kassenki", - "mal_title": "Angolmois: Genkou Kassenki", + "mal_id": 35834, "poster": "https://aruppi.jeluchu.xyz/res/directory/2925.jpg", "type": "Anime", "genres": [ @@ -49711,7 +49711,7 @@ { "id": "free-dive-to-the-future", "title": "Free!: Dive to the Future", - "mal_title": "Free!: Dive to the Future", + "mal_id": 36704, "poster": "https://aruppi.jeluchu.xyz/res/directory/2926.jpg", "type": "Anime", "genres": [ @@ -49729,7 +49729,7 @@ { "id": "tenrou-sirius-the-jaeger", "title": "Tenrou: Sirius the Jaeger", - "mal_title": "Tenrou: Sirius the Jaeger", + "mal_id": 37569, "poster": "https://aruppi.jeluchu.xyz/res/directory/2927.jpg", "type": "Anime", "genres": [ @@ -49747,7 +49747,7 @@ { "id": "lord-of-vermilion-guren-no-ou", "title": "Lord of Vermilion: Guren no Ou", - "mal_title": "Lord of Vermilion: Guren no Ou", + "mal_id": 37601, "poster": "https://aruppi.jeluchu.xyz/res/directory/2928.jpg", "type": "Anime", "genres": [ @@ -49762,7 +49762,7 @@ { "id": "happy-sugar-life", "title": "Happy Sugar Life", - "mal_title": "Happy Sugar Life", + "mal_id": 37517, "poster": "https://aruppi.jeluchu.xyz/res/directory/2929.jpg", "type": "Anime", "genres": [ @@ -49778,7 +49778,7 @@ { "id": "grand-blue", "title": "Grand Blue", - "mal_title": "Grand Blue", + "mal_id": 37105, "poster": "https://aruppi.jeluchu.xyz/res/directory/2930.jpg", "type": "Anime", "genres": [ @@ -49794,7 +49794,7 @@ { "id": "yuragisou-no-yuunasan", "title": "Yuragi-sou no Yuuna-san", - "mal_title": "Yuragi-sou no Yuuna-san", + "mal_id": 36726, "poster": "https://aruppi.jeluchu.xyz/res/directory/2931.jpg", "type": "Anime", "genres": [ @@ -49813,7 +49813,7 @@ { "id": "shoujokageki-revue-starlight", "title": "Shoujo☆Kageki Revue Starlight", - "mal_title": "Shoujo☆Kageki Revue Starlight", + "mal_id": 35503, "poster": "https://aruppi.jeluchu.xyz/res/directory/2932.jpg", "type": "Anime", "genres": [ @@ -49828,7 +49828,7 @@ { "id": "baki-2018", "title": "Baki (2018)", - "mal_title": "Baki (2018)", + "mal_id": 34443, "poster": "https://aruppi.jeluchu.xyz/res/directory/2933.jpg", "type": "OVA", "genres": [ @@ -49844,7 +49844,7 @@ { "id": "chuunibyou-demo-koi-ga-shitai-movie-take-on-me", "title": "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", - "mal_title": "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", + "mal_id": 35608, "poster": "https://aruppi.jeluchu.xyz/res/directory/2934.jpg", "type": "Película", "genres": [ @@ -49862,7 +49862,7 @@ { "id": "shingeki-no-kyojin-season-3", "title": "Shingeki no Kyojin Season 3", - "mal_title": "Shingeki no Kyojin Season 3", + "mal_id": 35760, "poster": "https://aruppi.jeluchu.xyz/res/directory/2935.jpg", "type": "Anime", "genres": [ @@ -49882,7 +49882,7 @@ { "id": "tsukumogami-kashimasu", "title": "Tsukumogami Kashimasu", - "mal_title": "Tsukumogami Kashimasu", + "mal_id": 36654, "poster": "https://aruppi.jeluchu.xyz/res/directory/2936.jpg", "type": "Anime", "genres": [ @@ -49900,7 +49900,7 @@ { "id": "iya-na-kao-sare-nagara-opantsu-misete-moraitai", "title": "Iya na Kao sare nagara Opantsu Misete Moraitai", - "mal_title": "Iya na Kao sare nagara Opantsu Misete Moraitai", + "mal_id": 37021, "poster": "https://aruppi.jeluchu.xyz/res/directory/2937.jpg", "type": "OVA", "genres": [ @@ -49914,7 +49914,7 @@ { "id": "muhyo-to-rouji-no-mahouritsu-soudan-jimusho", "title": "Muhyo to Rouji no Mahouritsu Soudan Jimusho", - "mal_title": "Muhyo to Rouji no Mahouritsu Soudan Jimusho", + "mal_id": 37487, "poster": "https://aruppi.jeluchu.xyz/res/directory/2938.jpg", "type": "Anime", "genres": [ @@ -49932,7 +49932,7 @@ { "id": "yakusoku-no-nanaya-matsuri", "title": "Yakusoku no Nanaya Matsuri", - "mal_title": "Yakusoku no Nanaya Matsuri", + "mal_id": 37970, "poster": "https://aruppi.jeluchu.xyz/res/directory/2939.jpg", "type": "OVA", "genres": [ @@ -49947,7 +49947,7 @@ { "id": "shikioriori", "title": "Shiki oriori", - "mal_title": "Shiki oriori", + "mal_id": 37396, "poster": "https://aruppi.jeluchu.xyz/res/directory/2940.jpg", "type": "Película", "genres": [ @@ -49963,7 +49963,7 @@ { "id": "high-score-girl", "title": "High Score Girl", - "mal_title": "High Score Girl", + "mal_id": 39570, "poster": "https://aruppi.jeluchu.xyz/res/directory/2941.jpg", "type": "Anime", "genres": [ @@ -49980,7 +49980,7 @@ { "id": "one-piece-episode-of-sorajima", "title": "One Piece: Episode of Sorajima", - "mal_title": "One Piece: Episode of Sorajima", + "mal_id": 37902, "poster": "https://aruppi.jeluchu.xyz/res/directory/2942.jpg", "type": "Especial", "genres": [ @@ -50000,7 +50000,7 @@ { "id": "double-decker-doug-kirill", "title": "Double Decker! Doug & Kirill", - "mal_title": "Double Decker! Doug & Kirill", + "mal_id": 38895, "poster": "https://aruppi.jeluchu.xyz/res/directory/2943.jpg", "type": "Anime", "genres": [ @@ -50014,7 +50014,7 @@ { "id": "bungou-stray-dogs-dead-apple", "title": "Bungou Stray Dogs: Dead Apple", - "mal_title": "Bungou Stray Dogs: Dead Apple", + "mal_id": 34944, "poster": "https://aruppi.jeluchu.xyz/res/directory/2944.jpg", "type": "Película", "genres": [ @@ -50032,7 +50032,7 @@ { "id": "jikkenhin-kazoku", "title": "Jikken-hin Kazoku", - "mal_title": "Jikken-hin Kazoku", + "mal_id": 36397, "poster": "https://aruppi.jeluchu.xyz/res/directory/2945.jpg", "type": "Anime", "genres": [ @@ -50047,7 +50047,7 @@ { "id": "rerided-tokigoe-no-derrida", "title": "RErideD: Tokigoe no Derrida", - "mal_title": "RErideD: Tokigoe no Derrida", + "mal_id": 35835, "poster": "https://aruppi.jeluchu.xyz/res/directory/2946.jpg", "type": "Anime", "genres": [ @@ -50063,7 +50063,7 @@ { "id": "tokyo-ghoulre-2nd-season", "title": "Tokyo Ghoul:re 2nd Season", - "mal_title": "Tokyo Ghoul:re 2nd Season", + "mal_id": 37799, "poster": "https://aruppi.jeluchu.xyz/res/directory/2947.jpg", "type": "Anime", "genres": [ @@ -50082,7 +50082,7 @@ { "id": "akanesasu-shoujo", "title": "Akanesasu Shoujo", - "mal_title": "Akanesasu Shoujo", + "mal_id": 37561, "poster": "https://aruppi.jeluchu.xyz/res/directory/2948.jpg", "type": "Anime", "genres": [ @@ -50098,7 +50098,7 @@ { "id": "tensei-shitara-slime-datta-ken", "title": "Tensei shitara Slime Datta Ken", - "mal_title": "Tensei shitara Slime Datta Ken", + "mal_id": 37430, "poster": "https://aruppi.jeluchu.xyz/res/directory/2949.jpg", "type": "Anime", "genres": [ @@ -50112,7 +50112,7 @@ { "id": "uchuu-senkan-tiramisu-ii", "title": "Uchuu Senkan Tiramisù II", - "mal_title": "Uchuu Senkan Tiramisù II", + "mal_id": 39115, "poster": "https://aruppi.jeluchu.xyz/res/directory/2950.jpg", "type": "Anime", "genres": [ @@ -50130,7 +50130,7 @@ { "id": "souten-no-ken-regenesis-2nd-season", "title": "Souten no Ken: Regenesis 2nd Season", - "mal_title": "Souten no Ken: Regenesis 2nd Season", + "mal_id": 37388, "poster": "https://aruppi.jeluchu.xyz/res/directory/2951.jpg", "type": "Anime", "genres": [ @@ -50145,7 +50145,7 @@ { "id": "ken-en-ken-aoki-kagayaki", "title": "Ken En Ken: Aoki Kagayaki", - "mal_title": "Ken En Ken: Aoki Kagayaki", + "mal_id": 38083, "poster": "https://aruppi.jeluchu.xyz/res/directory/2952.jpg", "type": "Anime", "genres": [ @@ -50164,7 +50164,7 @@ { "id": "kaze-ga-tsuyoku-fuiteiru", "title": "Kaze ga Tsuyoku Fuiteiru", - "mal_title": "Kaze ga Tsuyoku Fuiteiru", + "mal_id": 37965, "poster": "https://aruppi.jeluchu.xyz/res/directory/2953.jpg", "type": "Anime", "genres": [ @@ -50179,7 +50179,7 @@ { "id": "jingaisan-no-yome", "title": "Jingai-san no Yome", - "mal_title": "Jingai-san no Yome", + "mal_id": 37992, "poster": "https://aruppi.jeluchu.xyz/res/directory/2954.jpg", "type": "Anime", "genres": [ @@ -50195,7 +50195,7 @@ { "id": "sora-to-umi-no-aida", "title": "Sora to Umi no Aida", - "mal_title": "Sora to Umi no Aida", + "mal_id": 36000, "poster": "https://aruppi.jeluchu.xyz/res/directory/2955.jpg", "type": "Anime", "genres": [ @@ -50212,7 +50212,7 @@ { "id": "seishun-buta-yarou-wa-bunny-girl-senpai-no-yume-wo-minai", "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", - "mal_title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "mal_id": 37450, "poster": "https://aruppi.jeluchu.xyz/res/directory/2956.jpg", "type": "Anime", "genres": [ @@ -50228,7 +50228,7 @@ { "id": "zombieland-saga", "title": "Zombieland Saga", - "mal_title": "Zombieland Saga", + "mal_id": 37976, "poster": "https://aruppi.jeluchu.xyz/res/directory/2957.jpg", "type": "Anime", "genres": [ @@ -50244,7 +50244,7 @@ { "id": "bakumatsu", "title": "Bakumatsu", - "mal_title": "Bakumatsu", + "mal_id": 37584, "poster": "https://aruppi.jeluchu.xyz/res/directory/2958.jpg", "type": "Anime", "genres": [ @@ -50260,7 +50260,7 @@ { "id": "tonari-no-kyuuketsukisan", "title": "Tonari no Kyuuketsuki-san", - "mal_title": "Tonari no Kyuuketsuki-san", + "mal_id": 37579, "poster": "https://aruppi.jeluchu.xyz/res/directory/2959.jpg", "type": "Anime", "genres": [ @@ -50277,7 +50277,7 @@ { "id": "toaru-majutsu-no-index-iii", "title": "Toaru Majutsu no Index III", - "mal_title": "Toaru Majutsu no Index III", + "mal_id": 36432, "poster": "https://aruppi.jeluchu.xyz/res/directory/2960.jpg", "type": "Anime", "genres": [ @@ -50294,7 +50294,7 @@ { "id": "yagate-kimi-ni-naru", "title": "Yagate Kimi ni Naru", - "mal_title": "Yagate Kimi ni Naru", + "mal_id": 37786, "poster": "https://aruppi.jeluchu.xyz/res/directory/2961.jpg", "type": "Anime", "genres": [ @@ -50309,7 +50309,7 @@ { "id": "gurazeni-season-2", "title": "Gurazeni: Season 2", - "mal_title": "Gurazeni: Season 2", + "mal_id": 37990, "poster": "https://aruppi.jeluchu.xyz/res/directory/2962.jpg", "type": "Anime", "genres": [ @@ -50326,7 +50326,7 @@ { "id": "hinomaruzumou", "title": "Hinomaruzumou", - "mal_title": "Hinomaruzumou", + "mal_id": 37007, "poster": "https://aruppi.jeluchu.xyz/res/directory/2963.jpg", "type": "Anime", "genres": [ @@ -50342,7 +50342,7 @@ { "id": "uchi-no-maid-ga-uzasugiru", "title": "Uchi no Maid ga Uzasugiru!", - "mal_title": "Uchi no Maid ga Uzasugiru!", + "mal_id": 37722, "poster": "https://aruppi.jeluchu.xyz/res/directory/2964.jpg", "type": "Anime", "genres": [ @@ -50357,7 +50357,7 @@ { "id": "dakaretai-otoko-1i-ni-odosarete-imasu", "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", - "mal_title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "mal_id": 37597, "poster": "https://aruppi.jeluchu.xyz/res/directory/2965.jpg", "type": "Anime", "genres": [ @@ -50373,7 +50373,7 @@ { "id": "jojo-no-kimyou-na-bouken-ougon-no-kaze", "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", - "mal_title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "mal_id": 38972, "poster": "https://aruppi.jeluchu.xyz/res/directory/2966.jpg", "type": "Anime", "genres": [ @@ -50389,7 +50389,7 @@ { "id": "kishuku-gakkou-no-juliet", "title": "Kishuku Gakkou no Juliet", - "mal_title": "Kishuku Gakkou no Juliet", + "mal_id": 37475, "poster": "https://aruppi.jeluchu.xyz/res/directory/2967.jpg", "type": "Anime", "genres": [ @@ -50407,7 +50407,7 @@ { "id": "irozuku-sekai-no-ashita-kara", "title": "Irozuku Sekai no Ashita kara", - "mal_title": "Irozuku Sekai no Ashita kara", + "mal_id": 37497, "poster": "https://aruppi.jeluchu.xyz/res/directory/2968.jpg", "type": "Anime", "genres": [ @@ -50423,7 +50423,7 @@ { "id": "gakuen-basara", "title": "Gakuen Basara", - "mal_title": "Gakuen Basara", + "mal_id": 37657, "poster": "https://aruppi.jeluchu.xyz/res/directory/2969.jpg", "type": "Anime", "genres": [ @@ -50438,8 +50438,8 @@ }, { "id": "gyakuten-saiban-sono-shinjitsu-igi-ari-season-2", - "title": "Ver Anime Gyakuten Saiban: Sono ", - "mal_title": "Ver Anime Gyakuten Saiban: Sono ", + "title": "Gyakuten Saiban: Sono ", + "mal_id": 37490, "poster": "https://aruppi.jeluchu.xyz/res/directory/2970.jpg", "type": "Anime", "genres": [ @@ -50456,7 +50456,7 @@ { "id": "radiant", "title": "Radiant", - "mal_title": "Radiant", + "mal_id": 37202, "poster": "https://aruppi.jeluchu.xyz/res/directory/2971.jpg", "type": "Anime", "genres": [ @@ -50473,7 +50473,7 @@ { "id": "goblin-slayer", "title": "Goblin Slayer", - "mal_title": "Goblin Slayer", + "mal_id": 37349, "poster": "https://aruppi.jeluchu.xyz/res/directory/2972.jpg", "type": "Anime", "genres": [ @@ -50488,7 +50488,7 @@ { "id": "sword-art-online-alicization", "title": "Sword Art Online: Alicization", - "mal_title": "Sword Art Online: Alicization", + "mal_id": 36474, "poster": "https://aruppi.jeluchu.xyz/res/directory/2973.jpg", "type": "Anime", "genres": [ @@ -50506,7 +50506,7 @@ { "id": "ssssgridman", "title": "SSSS.Gridman", - "mal_title": "SSSS.Gridman", + "mal_id": 35847, "poster": "https://aruppi.jeluchu.xyz/res/directory/2974.jpg", "type": "Anime", "genres": [ @@ -50522,7 +50522,7 @@ { "id": "release-the-spyce", "title": "Release the Spyce", - "mal_title": "Release the Spyce", + "mal_id": 37221, "poster": "https://aruppi.jeluchu.xyz/res/directory/2975.jpg", "type": "Anime", "genres": [ @@ -50537,7 +50537,7 @@ { "id": "fairy-tail-final-series", "title": "Fairy Tail: Final Series", - "mal_title": "Fairy Tail: Final Series", + "mal_id": 35972, "poster": "https://aruppi.jeluchu.xyz/res/directory/2976.jpg", "type": "Anime", "genres": [ @@ -50556,7 +50556,7 @@ { "id": "anima-yell", "title": "Anima Yell!", - "mal_title": "Anima Yell!", + "mal_id": 37206, "poster": "https://aruppi.jeluchu.xyz/res/directory/2977.jpg", "type": "Anime", "genres": [ @@ -50572,7 +50572,7 @@ { "id": "ulysses-jehanne-darc-to-renkin-no-kishi", "title": "Ulysses: Jehanne Darc to Renkin no Kishi", - "mal_title": "Ulysses: Jehanne Darc to Renkin no Kishi", + "mal_id": 36510, "poster": "https://aruppi.jeluchu.xyz/res/directory/2978.jpg", "type": "Anime", "genres": [ @@ -50587,7 +50587,7 @@ { "id": "gaikotsu-shotenin-hondasan", "title": "Gaikotsu Shotenin Honda-san", - "mal_title": "Gaikotsu Shotenin Honda-san", + "mal_id": 36317, "poster": "https://aruppi.jeluchu.xyz/res/directory/2979.jpg", "type": "Anime", "genres": [ @@ -50603,7 +50603,7 @@ { "id": "himote-house", "title": "Himote House", - "mal_title": "Himote House", + "mal_id": 36945, "poster": "https://aruppi.jeluchu.xyz/res/directory/2980.jpg", "type": "Anime", "genres": [ @@ -50617,7 +50617,7 @@ { "id": "golden-kamuy-2nd-season", "title": "Golden Kamuy 2nd Season", - "mal_title": "Golden Kamuy 2nd Season", + "mal_id": 37989, "poster": "https://aruppi.jeluchu.xyz/res/directory/2981.jpg", "type": "Anime", "genres": [ @@ -50634,7 +50634,7 @@ { "id": "the-idolmster-sidem-wake-atte-mini", "title": "The iDOLM@STER SideM: Wake Atte Mini!", - "mal_title": "The iDOLM@STER SideM: Wake Atte Mini!", + "mal_id": 38203, "poster": "https://aruppi.jeluchu.xyz/res/directory/2982.jpg", "type": "Anime", "genres": [ @@ -50649,7 +50649,7 @@ { "id": "otona-no-bouguyasan", "title": "Otona no Bouguya-san", - "mal_title": "Otona no Bouguya-san", + "mal_id": 38395, "poster": "https://aruppi.jeluchu.xyz/res/directory/2983.jpg", "type": "Anime", "genres": [ @@ -50665,7 +50665,7 @@ { "id": "ore-ga-suki-nano-wa-imouto-dakedo-imouto-ja-nai", "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", - "mal_title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "mal_id": 36632, "poster": "https://aruppi.jeluchu.xyz/res/directory/2984.jpg", "type": "Anime", "genres": [ @@ -50680,7 +50680,7 @@ { "id": "conception", "title": "Conception", - "mal_title": "Conception", + "mal_id": 37823, "poster": "https://aruppi.jeluchu.xyz/res/directory/2985.jpg", "type": "Anime", "genres": [ @@ -50699,7 +50699,7 @@ { "id": "merc-storia-mukiryoku-no-shounen-to-bin-no-naka-no-shoujo", "title": "Merc Storia: Mukiryoku no Shounen to Bin no Naka no Shoujo", - "mal_title": "Merc Storia: Mukiryoku no Shounen to Bin no Naka no Shoujo", + "mal_id": 37232, "poster": "https://aruppi.jeluchu.xyz/res/directory/2986.jpg", "type": "Anime", "genres": [ @@ -50716,7 +50716,7 @@ { "id": "karakuri-circus", "title": "Karakuri Circus", - "mal_title": "Karakuri Circus", + "mal_id": 37447, "poster": "https://aruppi.jeluchu.xyz/res/directory/2987.jpg", "type": "Anime", "genres": [ @@ -50732,7 +50732,7 @@ { "id": "beelzebubjou-no-okinimesu-mama", "title": "Beelzebub-jou no Okinimesu mama.", - "mal_title": "Beelzebub-jou no Okinimesu mama.", + "mal_id": 37716, "poster": "https://aruppi.jeluchu.xyz/res/directory/2988.jpg", "type": "Anime", "genres": [ @@ -50749,7 +50749,7 @@ { "id": "senran-kagura-shinovi-master-tokyo-youmahen", "title": "Senran Kagura Shinovi Master: Tokyo Youma-hen", - "mal_title": "Senran Kagura Shinovi Master: Tokyo Youma-hen", + "mal_id": 36037, "poster": "https://aruppi.jeluchu.xyz/res/directory/2989.jpg", "type": "Anime", "genres": [ @@ -50766,7 +50766,7 @@ { "id": "kitsune-no-koe", "title": "Kitsune no Koe", - "mal_title": "Kitsune no Koe", + "mal_id": 37106, "poster": "https://aruppi.jeluchu.xyz/res/directory/2990.jpg", "type": "Anime", "genres": [ @@ -50780,7 +50780,7 @@ { "id": "tsurune-kazemai-koukou-kyuudoubu", "title": "Tsurune: Kazemai Koukou Kyuudoubu", - "mal_title": "Tsurune: Kazemai Koukou Kyuudoubu", + "mal_id": 36653, "poster": "https://aruppi.jeluchu.xyz/res/directory/2991.jpg", "type": "Anime", "genres": [ @@ -50796,7 +50796,7 @@ { "id": "yu-yu-hakusho-specials", "title": "Yu Yu Hakusho: Specials", - "mal_title": "Yu Yu Hakusho: Specials", + "mal_id": 36951, "poster": "https://aruppi.jeluchu.xyz/res/directory/2992.jpg", "type": "Especial", "genres": [ @@ -50816,7 +50816,7 @@ { "id": "saint-seiya-saintia-shou", "title": "Saint Seiya: Saintia Shou", - "mal_title": "Saint Seiya: Saintia Shou", + "mal_id": 34539, "poster": "https://aruppi.jeluchu.xyz/res/directory/2993.jpg", "type": "Anime", "genres": [ @@ -50832,7 +50832,7 @@ { "id": "pokemon-minna-no-monogatari", "title": "Pokemon: Minna no Monogatari", - "mal_title": "Pokemon: Minna no Monogatari", + "mal_id": 36927, "poster": "https://aruppi.jeluchu.xyz/res/directory/2994.jpg", "type": "Película", "genres": [ @@ -50851,7 +50851,7 @@ { "id": "strike-the-blood-iii", "title": "Strike the Blood III", - "mal_title": "Strike the Blood III", + "mal_id": 37449, "poster": "https://aruppi.jeluchu.xyz/res/directory/2995.jpg", "type": "OVA", "genres": [ @@ -50869,7 +50869,7 @@ { "id": "kimi-no-suizou-wo-tabetai", "title": "Kimi no Suizou wo Tabetai", - "mal_title": "Kimi no Suizou wo Tabetai", + "mal_id": 36098, "poster": "https://aruppi.jeluchu.xyz/res/directory/2996.jpg", "type": "Película", "genres": [ @@ -50883,7 +50883,7 @@ { "id": "lord-elmelloi-iisei-no-jikenbo", "title": "Lord El-Melloi II-sei no Jikenbo", - "mal_title": "Lord El-Melloi II-sei no Jikenbo", + "mal_id": 38959, "poster": "https://aruppi.jeluchu.xyz/res/directory/2997.jpg", "type": "Especial", "genres": [ @@ -50899,7 +50899,7 @@ { "id": "nanatsu-no-taizai-movie-tenkuu-no-torawarebito", "title": "Nanatsu no Taizai Movie: Tenkuu no Torawarebito", - "mal_title": "Nanatsu no Taizai Movie: Tenkuu no Torawarebito", + "mal_id": 35946, "poster": "https://aruppi.jeluchu.xyz/res/directory/2998.jpg", "type": "Película", "genres": [ @@ -50918,7 +50918,7 @@ { "id": "bang-dream-2nd-season", "title": "BanG Dream! 2nd Season", - "mal_title": "BanG Dream! 2nd Season", + "mal_id": 37869, "poster": "https://aruppi.jeluchu.xyz/res/directory/2999.jpg", "type": "Anime", "genres": [ @@ -50932,7 +50932,7 @@ { "id": "ikkitousen-western-wolves", "title": "Ikkitousen: Western Wolves", - "mal_title": "Ikkitousen: Western Wolves", + "mal_id": 38425, "poster": "https://aruppi.jeluchu.xyz/res/directory/3000.jpg", "type": "OVA", "genres": [ @@ -50951,7 +50951,7 @@ { "id": "hangyakusei-million-arthur", "title": "Hangyakusei Million Arthur", - "mal_title": "Hangyakusei Million Arthur", + "mal_id": 37555, "poster": "https://aruppi.jeluchu.xyz/res/directory/3001.jpg", "type": "Anime", "genres": [ @@ -50968,7 +50968,7 @@ { "id": "boogiepop-wa-warawanai-2019", "title": "Boogiepop wa Warawanai (2019)", - "mal_title": "Boogiepop wa Warawanai (2019)", + "mal_id": 37451, "poster": "https://aruppi.jeluchu.xyz/res/directory/3002.jpg", "type": "Anime", "genres": [ @@ -50984,7 +50984,7 @@ { "id": "egao-no-daika", "title": "Egao no Daika", - "mal_title": "Egao no Daika", + "mal_id": 38544, "poster": "https://aruppi.jeluchu.xyz/res/directory/3003.jpg", "type": "Anime", "genres": [ @@ -51001,7 +51001,7 @@ { "id": "fukigen-na-mononokean-tsuzuki", "title": "Fukigen na Mononokean Tsuzuki", - "mal_title": "Fukigen na Mononokean Tsuzuki", + "mal_id": 37958, "poster": "https://aruppi.jeluchu.xyz/res/directory/3004.jpg", "type": "Anime", "genres": [ @@ -51017,7 +51017,7 @@ { "id": "wz", "title": "W'z", - "mal_title": "W'z", + "mal_id": 37509, "poster": "https://aruppi.jeluchu.xyz/res/directory/3005.jpg", "type": "Anime", "genres": [ @@ -51032,7 +51032,7 @@ { "id": "mini-toji", "title": "Mini Toji", - "mal_title": "Mini Toji", + "mal_id": 38673, "poster": "https://aruppi.jeluchu.xyz/res/directory/3006.jpg", "type": "Anime", "genres": [ @@ -51048,7 +51048,7 @@ { "id": "tate-no-yuusha-no-nariagari", "title": "Tate no Yuusha no Nariagari", - "mal_title": "Tate no Yuusha no Nariagari", + "mal_id": 35790, "poster": "https://aruppi.jeluchu.xyz/res/directory/3007.jpg", "type": "Anime", "genres": [ @@ -51068,7 +51068,7 @@ { "id": "uenosan-wa-bukiyou", "title": "Ueno-san wa Bukiyou", - "mal_title": "Ueno-san wa Bukiyou", + "mal_id": 37920, "poster": "https://aruppi.jeluchu.xyz/res/directory/3008.jpg", "type": "Anime", "genres": [ @@ -51084,7 +51084,7 @@ { "id": "mob-psycho-100-ii", "title": "Mob Psycho 100 II", - "mal_title": "Mob Psycho 100 II", + "mal_id": 37510, "poster": "https://aruppi.jeluchu.xyz/res/directory/3009.jpg", "type": "Anime", "genres": [ @@ -51101,7 +51101,7 @@ { "id": "dororo", "title": "Dororo", - "mal_title": "Dororo", + "mal_id": 37520, "poster": "https://aruppi.jeluchu.xyz/res/directory/3010.jpg", "type": "Anime", "genres": [ @@ -51120,7 +51120,7 @@ { "id": "pastel-memories", "title": "Pastel Memories", - "mal_title": "Pastel Memories", + "mal_id": 37374, "poster": "https://aruppi.jeluchu.xyz/res/directory/3011.jpg", "type": "Anime", "genres": [ @@ -51136,7 +51136,7 @@ { "id": "date-a-live-iii", "title": "Date A Live Ⅲ", - "mal_title": "Date A Live Ⅲ", + "mal_id": 15583, "poster": "https://aruppi.jeluchu.xyz/res/directory/3012.jpg", "type": "Anime", "genres": [ @@ -51155,7 +51155,7 @@ { "id": "watashi-ni-tenshi-ga-maiorita", "title": "Watashi ni Tenshi ga Maiorita!", - "mal_title": "Watashi ni Tenshi ga Maiorita!", + "mal_id": 37993, "poster": "https://aruppi.jeluchu.xyz/res/directory/3013.jpg", "type": "Anime", "genres": [ @@ -51169,7 +51169,7 @@ { "id": "3d-kanojo-real-girl-2nd-season", "title": "3D Kanojo: Real Girl 2nd Season", - "mal_title": "3D Kanojo: Real Girl 2nd Season", + "mal_id": 37956, "poster": "https://aruppi.jeluchu.xyz/res/directory/3014.jpg", "type": "Anime", "genres": [ @@ -51185,7 +51185,7 @@ { "id": "kakegurui-xx", "title": "Kakegurui××", - "mal_title": "Kakegurui××", + "mal_id": 37086, "poster": "https://aruppi.jeluchu.xyz/res/directory/3015.jpg", "type": "Anime", "genres": [ @@ -51204,7 +51204,7 @@ { "id": "ameiro-cocoa-side-g", "title": "Ame-iro Cocoa: Side G", - "mal_title": "Ame-iro Cocoa: Side G", + "mal_id": 37747, "poster": "https://aruppi.jeluchu.xyz/res/directory/3016.jpg", "type": "Anime", "genres": [ @@ -51219,7 +51219,7 @@ { "id": "yakusoku-no-neverland", "title": "Yakusoku no Neverland", - "mal_title": "Yakusoku no Neverland", + "mal_id": 37779, "poster": "https://aruppi.jeluchu.xyz/res/directory/3017.jpg", "type": "Anime", "genres": [ @@ -51236,7 +51236,7 @@ { "id": "kemurikusa-tv", "title": "Kemurikusa (TV)", - "mal_title": "Kemurikusa (TV)", + "mal_id": 37302, "poster": "https://aruppi.jeluchu.xyz/res/directory/3018.jpg", "type": "Anime", "genres": [ @@ -51251,7 +51251,7 @@ { "id": "meiji-tokyo-renka", "title": "Meiji Tokyo Renka", - "mal_title": "Meiji Tokyo Renka", + "mal_id": 34209, "poster": "https://aruppi.jeluchu.xyz/res/directory/3019.jpg", "type": "Anime", "genres": [ @@ -51268,7 +51268,7 @@ { "id": "doukyonin-wa-hiza-tokidoki-atama-no-ue", "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", - "mal_title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "mal_id": 38145, "poster": "https://aruppi.jeluchu.xyz/res/directory/3020.jpg", "type": "Anime", "genres": [ @@ -51283,7 +51283,7 @@ { "id": "girly-air-force", "title": "Girly Air Force", - "mal_title": "Girly Air Force", + "mal_id": 37998, "poster": "https://aruppi.jeluchu.xyz/res/directory/3021.jpg", "type": "Anime", "genres": [ @@ -51298,7 +51298,7 @@ { "id": "gotoubun-no-hanayome", "title": "Gotoubun no Hanayome", - "mal_title": "Gotoubun no Hanayome", + "mal_id": 38101, "poster": "https://aruppi.jeluchu.xyz/res/directory/3022.jpg", "type": "Anime", "genres": [ @@ -51316,7 +51316,7 @@ { "id": "mahou-shoujo-tokushusen-asuka", "title": "Mahou Shoujo Tokushusen Asuka", - "mal_title": "Mahou Shoujo Tokushusen Asuka", + "mal_id": 37979, "poster": "https://aruppi.jeluchu.xyz/res/directory/3023.jpg", "type": "Anime", "genres": [ @@ -51332,7 +51332,7 @@ { "id": "domestic-na-kanojo", "title": "Domestic na Kanojo", - "mal_title": "Domestic na Kanojo", + "mal_id": 37982, "poster": "https://aruppi.jeluchu.xyz/res/directory/3024.jpg", "type": "Anime", "genres": [ @@ -51349,7 +51349,7 @@ { "id": "b-project-zecchou-emotion", "title": "B-Project: Zecchou*Emotion", - "mal_title": "B-Project: Zecchou*Emotion", + "mal_id": 36483, "poster": "https://aruppi.jeluchu.xyz/res/directory/3025.jpg", "type": "Anime", "genres": [ @@ -51364,7 +51364,7 @@ { "id": "grimms-notes-the-animation", "title": "Grimms Notes The Animation", - "mal_title": "Grimms Notes The Animation", + "mal_id": 37154, "poster": "https://aruppi.jeluchu.xyz/res/directory/3026.jpg", "type": "Anime", "genres": [ @@ -51381,7 +51381,7 @@ { "id": "bermuda-triangle-colorful-pastrale", "title": "Bermuda Triangle: Colorful Pastrale", - "mal_title": "Bermuda Triangle: Colorful Pastrale", + "mal_id": 38199, "poster": "https://aruppi.jeluchu.xyz/res/directory/3027.jpg", "type": "Anime", "genres": [ @@ -51396,7 +51396,7 @@ { "id": "endro", "title": "Endro~!", - "mal_title": "Endro~!", + "mal_id": 38062, "poster": "https://aruppi.jeluchu.xyz/res/directory/3028.jpg", "type": "Anime", "genres": [ @@ -51412,7 +51412,7 @@ { "id": "kaguyasama-wa-kokurasetai-tensaitachi-no-renai-zunousen", "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", - "mal_title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "mal_id": 37999, "poster": "https://aruppi.jeluchu.xyz/res/directory/3029.jpg", "type": "Anime", "genres": [ @@ -51430,7 +51430,7 @@ { "id": "kouya-no-kotobuki-hikoutai", "title": "Kouya no Kotobuki Hikoutai", - "mal_title": "Kouya no Kotobuki Hikoutai", + "mal_id": 38301, "poster": "https://aruppi.jeluchu.xyz/res/directory/3030.jpg", "type": "Anime", "genres": [ @@ -51446,7 +51446,7 @@ { "id": "kemono-friends-2", "title": "Kemono Friends 2", - "mal_title": "Kemono Friends 2", + "mal_id": 35313, "poster": "https://aruppi.jeluchu.xyz/res/directory/3031.jpg", "type": "Anime", "genres": [ @@ -51461,7 +51461,7 @@ { "id": "manaria-friends", "title": "Manaria Friends", - "mal_title": "Manaria Friends", + "mal_id": 31537, "poster": "https://aruppi.jeluchu.xyz/res/directory/3032.jpg", "type": "Anime", "genres": [ @@ -51480,7 +51480,7 @@ { "id": "hisone-to-masotan", "title": "Hisone to Maso-tan", - "mal_title": "Hisone to Maso-tan", + "mal_id": 36884, "poster": "https://aruppi.jeluchu.xyz/res/directory/3033.jpg", "type": "Anime", "genres": [ @@ -51497,7 +51497,7 @@ { "id": "aggretsuko", "title": "Aggressive Retsuko", - "mal_title": "Aggressive Retsuko", + "mal_id": 32977, "poster": "https://aruppi.jeluchu.xyz/res/directory/3034.jpg", "type": "Anime", "genres": [ @@ -51513,7 +51513,7 @@ { "id": "boku-no-hero-academia-the-movie-futari-no-hero", "title": "Boku no Hero Academia the Movie: Futari no Hero", - "mal_title": "Boku no Hero Academia the Movie: Futari no Hero", + "mal_id": 38699, "poster": "https://aruppi.jeluchu.xyz/res/directory/3035.jpg", "type": "Película", "genres": [ @@ -51531,7 +51531,7 @@ { "id": "zoku-owarimonogatari", "title": "Zoku Owarimonogatari", - "mal_title": "Zoku Owarimonogatari", + "mal_id": 36999, "poster": "https://aruppi.jeluchu.xyz/res/directory/3036.jpg", "type": "OVA", "genres": [ @@ -51548,7 +51548,7 @@ { "id": "non-non-biyori-movie-vacation", "title": "Non Non Biyori Movie: Vacation", - "mal_title": "Non Non Biyori Movie: Vacation", + "mal_id": 36990, "poster": "https://aruppi.jeluchu.xyz/res/directory/3037.jpg", "type": "Película", "genres": [ @@ -51564,7 +51564,7 @@ { "id": "trinity-seven-movie-2-tenkuu-toshokan-to-shinku-no-maou", "title": "Trinity Seven Movie 2: Tenkuu Toshokan to Shinku no Maou", - "mal_title": "Trinity Seven Movie 2: Tenkuu Toshokan to Shinku no Maou", + "mal_id": 37986, "poster": "https://aruppi.jeluchu.xyz/res/directory/3038.jpg", "type": "Película", "genres": [ @@ -51585,7 +51585,7 @@ { "id": "diamond-no-ace-act-ii", "title": "Diamond no Ace: Act II", - "mal_title": "Diamond no Ace: Act II", + "mal_id": 38731, "poster": "https://aruppi.jeluchu.xyz/res/directory/3039.jpg", "type": "Anime", "genres": [ @@ -51602,7 +51602,7 @@ { "id": "cinderella-girls-gekijou-climax-season", "title": "Cinderella Girls Gekijou: Climax Season", - "mal_title": "Cinderella Girls Gekijou: Climax Season", + "mal_id": 38767, "poster": "https://aruppi.jeluchu.xyz/res/directory/3040.jpg", "type": "Anime", "genres": [ @@ -51617,7 +51617,7 @@ { "id": "kono-yo-no-hate-de-koi-wo-utau-shoujo-yuno", "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", - "mal_title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "mal_id": 34620, "poster": "https://aruppi.jeluchu.xyz/res/directory/3041.jpg", "type": "Anime", "genres": [ @@ -51632,7 +51632,7 @@ { "id": "bakumatsu-crisis", "title": "Bakumatsu: Crisis", - "mal_title": "Bakumatsu: Crisis", + "mal_id": 38860, "poster": "https://aruppi.jeluchu.xyz/res/directory/3042.jpg", "type": "Anime", "genres": [ @@ -51648,7 +51648,7 @@ { "id": "fruits-basket-2019", "title": "Fruits Basket (2019)", - "mal_title": "Fruits Basket (2019)", + "mal_id": 120, "poster": "https://aruppi.jeluchu.xyz/res/directory/3043.jpg", "type": "Anime", "genres": [ @@ -51667,7 +51667,7 @@ { "id": "senryuu-shoujo", "title": "Senryuu Shoujo", - "mal_title": "Senryuu Shoujo", + "mal_id": 38787, "poster": "https://aruppi.jeluchu.xyz/res/directory/3044.jpg", "type": "Anime", "genres": [ @@ -51684,7 +51684,7 @@ { "id": "hitoribocchi-no-seikatsu", "title": "Hitoribocchi no ○○ Seikatsu", - "mal_title": "Hitoribocchi no Marumaru Seikatsu", + "mal_id": 37614, "poster": "https://aruppi.jeluchu.xyz/res/directory/3045.jpg", "type": "Anime", "genres": [ @@ -51701,7 +51701,7 @@ { "id": "midara-na-aochan-wa-benkyou-ga-dekinai", "title": "Midara na Ao-chan wa Benkyou ga Dekinai", - "mal_title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "mal_id": 38778, "poster": "https://aruppi.jeluchu.xyz/res/directory/3046.jpg", "type": "Anime", "genres": [ @@ -51718,7 +51718,7 @@ { "id": "joshikausei", "title": "Joshikausei", - "mal_title": "Joshikausei", + "mal_id": 38295, "poster": "https://aruppi.jeluchu.xyz/res/directory/3047.jpg", "type": "Anime", "genres": [ @@ -51734,7 +51734,7 @@ { "id": "chou-kadou-girl-16-amazing-stranger", "title": "Chou Kadou Girl ⅙: Amazing Stranger", - "mal_title": "Chou Kadou Girl ⅙: Amazing Stranger", + "mal_id": 38226, "poster": "https://aruppi.jeluchu.xyz/res/directory/3048.jpg", "type": "Anime", "genres": [ @@ -51749,7 +51749,7 @@ { "id": "nobunagasensei-no-osanazuma", "title": "Nobunaga-sensei no Osanazuma", - "mal_title": "Nobunaga-sensei no Osanazuma", + "mal_id": 38814, "poster": "https://aruppi.jeluchu.xyz/res/directory/3049.jpg", "type": "Anime", "genres": [ @@ -51765,7 +51765,7 @@ { "id": "kimetsu-no-yaiba", "title": "Kimetsu no Yaiba", - "mal_title": "Kimetsu no Yaiba", + "mal_id": 38000, "poster": "https://aruppi.jeluchu.xyz/res/directory/3050.jpg", "type": "Anime", "genres": [ @@ -51783,7 +51783,7 @@ { "id": "bokutachi-wa-benkyou-ga-dekinai", "title": "Bokutachi wa Benkyou ga Dekinai", - "mal_title": "Bokutachi wa Benkyou ga Dekinai", + "mal_id": 38186, "poster": "https://aruppi.jeluchu.xyz/res/directory/3051.jpg", "type": "Anime", "genres": [ @@ -51801,7 +51801,7 @@ { "id": "mix-meisei-story", "title": "Mix: Meisei Story", - "mal_title": "Mix: Meisei Story", + "mal_id": 38098, "poster": "https://aruppi.jeluchu.xyz/res/directory/3052.jpg", "type": "Anime", "genres": [ @@ -51819,7 +51819,7 @@ { "id": "kono-oto-tomare", "title": "Kono Oto Tomare!", - "mal_title": "Kono Oto Tomare!", + "mal_id": 38080, "poster": "https://aruppi.jeluchu.xyz/res/directory/3053.jpg", "type": "Anime", "genres": [ @@ -51836,7 +51836,7 @@ { "id": "mayonaka-no-occult-koumuin", "title": "Mayonaka no Occult Koumuin", - "mal_title": "Mayonaka no Occult Koumuin", + "mal_id": 37964, "poster": "https://aruppi.jeluchu.xyz/res/directory/3054.jpg", "type": "Anime", "genres": [ @@ -51854,7 +51854,7 @@ { "id": "fairy-gone", "title": "Fairy Gone", - "mal_title": "Fairy Gone", + "mal_id": 39063, "poster": "https://aruppi.jeluchu.xyz/res/directory/3055.jpg", "type": "Anime", "genres": [ @@ -51872,7 +51872,7 @@ { "id": "hachigatsu-no-cinderella-nine", "title": "Hachigatsu no Cinderella Nine", - "mal_title": "Hachigatsu no Cinderella Nine", + "mal_id": 38091, "poster": "https://aruppi.jeluchu.xyz/res/directory/3056.jpg", "type": "Anime", "genres": [ @@ -51887,7 +51887,7 @@ { "id": "nande-koko-ni-sensei-ga", "title": "Nande Koko ni Sensei ga!?", - "mal_title": "Nande Koko ni Sensei ga!?", + "mal_id": 38397, "poster": "https://aruppi.jeluchu.xyz/res/directory/3057.jpg", "type": "Anime", "genres": [ @@ -51904,7 +51904,7 @@ { "id": "shoumetsu-toshi", "title": "Shoumetsu Toshi", - "mal_title": "Shoumetsu Toshi", + "mal_id": 37952, "poster": "https://aruppi.jeluchu.xyz/res/directory/3058.jpg", "type": "Anime", "genres": [ @@ -51922,7 +51922,7 @@ { "id": "gunjou-no-magmel", "title": "Gunjou no Magmel", - "mal_title": "Gunjou no Magmel", + "mal_id": 37806, "poster": "https://aruppi.jeluchu.xyz/res/directory/3059.jpg", "type": "Anime", "genres": [ @@ -51940,7 +51940,7 @@ { "id": "namu-amida-butsu-rendai-utena", "title": "Namu Amida Butsu!: Rendai Utena", - "mal_title": "Namu Amida Butsu!: Rendai Utena", + "mal_id": 38150, "poster": "https://aruppi.jeluchu.xyz/res/directory/3060.jpg", "type": "Anime", "genres": [ @@ -51954,7 +51954,7 @@ { "id": "yatogamechan-kansatsu-nikki", "title": "Yatogame-chan Kansatsu Nikki", - "mal_title": "Yatogame-chan Kansatsu Nikki", + "mal_id": 39960, "poster": "https://aruppi.jeluchu.xyz/res/directory/3061.jpg", "type": "Anime", "genres": [ @@ -51971,7 +51971,7 @@ { "id": "robihachi", "title": "RobiHachi", - "mal_title": "RobiHachi", + "mal_id": 38707, "poster": "https://aruppi.jeluchu.xyz/res/directory/3062.jpg", "type": "Anime", "genres": [ @@ -51986,7 +51986,7 @@ { "id": "isekai-quartet", "title": "Isekai Quartet", - "mal_title": "Isekai Quartet", + "mal_id": 39988, "poster": "https://aruppi.jeluchu.xyz/res/directory/3063.jpg", "type": "Anime", "genres": [ @@ -52002,7 +52002,7 @@ { "id": "one-punch-man-2nd-season", "title": "One Punch Man 2nd Season", - "mal_title": "One Punch Man 2nd Season", + "mal_id": 34134, "poster": "https://aruppi.jeluchu.xyz/res/directory/3064.jpg", "type": "Anime", "genres": [ @@ -52022,7 +52022,7 @@ { "id": "strike-witches-501-butai-hasshin-shimasu", "title": "Strike Witches: 501 Butai Hasshin Shimasu!", - "mal_title": "Strike Witches: 501 Butai Hasshin Shimasu!", + "mal_id": 38004, "poster": "https://aruppi.jeluchu.xyz/res/directory/3065.jpg", "type": "Anime", "genres": [ @@ -52039,7 +52039,7 @@ { "id": "kenja-no-mago", "title": "Kenja no Mago", - "mal_title": "Kenja no Mago", + "mal_id": 36407, "poster": "https://aruppi.jeluchu.xyz/res/directory/3066.jpg", "type": "Anime", "genres": [ @@ -52056,7 +52056,7 @@ { "id": "sewayaki-kitsune-no-senkosan", "title": "Sewayaki Kitsune no Senko-san", - "mal_title": "Sewayaki Kitsune no Senko-san", + "mal_id": 38759, "poster": "https://aruppi.jeluchu.xyz/res/directory/3067.jpg", "type": "Anime", "genres": [ @@ -52072,7 +52072,7 @@ { "id": "sarazanmai", "title": "Sarazanmai", - "mal_title": "Sarazanmai", + "mal_id": 37426, "poster": "https://aruppi.jeluchu.xyz/res/directory/3068.jpg", "type": "Anime", "genres": [ @@ -52088,7 +52088,7 @@ { "id": "bungou-stray-dogs-3rd-season", "title": "Bungou Stray Dogs 3rd Season", - "mal_title": "Bungou Stray Dogs 3rd Season", + "mal_id": 38003, "poster": "https://aruppi.jeluchu.xyz/res/directory/3069.jpg", "type": "Anime", "genres": [ @@ -52106,7 +52106,7 @@ { "id": "king-of-prism-shiny-seven-stars", "title": "King of Prism: Shiny Seven Stars", - "mal_title": "King of Prism: Shiny Seven Stars", + "mal_id": 39699, "poster": "https://aruppi.jeluchu.xyz/res/directory/3070.jpg", "type": "Anime", "genres": [ @@ -52122,7 +52122,7 @@ { "id": "carole-tuesday", "title": "Carole & Tuesday", - "mal_title": "Carole & Tuesday", + "mal_id": 37435, "poster": "https://aruppi.jeluchu.xyz/res/directory/3071.jpg", "type": "Anime", "genres": [ @@ -52139,7 +52139,7 @@ { "id": "shingeki-no-kyojin-season-3-part-2", "title": "Shingeki no Kyojin Season 3 Part 2", - "mal_title": "Shingeki no Kyojin Season 3 Part 2", + "mal_id": 38524, "poster": "https://aruppi.jeluchu.xyz/res/directory/3072.jpg", "type": "Anime", "genres": [ @@ -52159,7 +52159,7 @@ { "id": "koutetsujou-no-kabaneri-unato-kessen", "title": "Koutetsujou no Kabaneri: Unato Kessen", - "mal_title": "Koutetsujou no Kabaneri: Unato Kessen", + "mal_id": 34544, "poster": "https://aruppi.jeluchu.xyz/res/directory/3073.jpg", "type": "Película", "genres": [ @@ -52177,7 +52177,7 @@ { "id": "grisaia-phantom-trigger-the-animation", "title": "Grisaia: Phantom Trigger The Animation", - "mal_title": "Grisaia: Phantom Trigger The Animation", + "mal_id": 35868, "poster": "https://aruppi.jeluchu.xyz/res/directory/3074.jpg", "type": "Película", "genres": [ @@ -52192,7 +52192,7 @@ { "id": "rezero-kara-hajimeru-isekai-seikatsu-memory-snow", "title": "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", - "mal_title": "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", + "mal_id": 36286, "poster": "https://aruppi.jeluchu.xyz/res/directory/3075.jpg", "type": "Película", "genres": [ @@ -52209,7 +52209,7 @@ { "id": "katsute-kami-datta-kemonotachi-e", "title": "Katsute Kami Datta Kemono-tachi e", - "mal_title": "Katsute Kami Datta Kemono-tachi e", + "mal_id": 39199, "poster": "https://aruppi.jeluchu.xyz/res/directory/3076.jpg", "type": "Anime", "genres": [ @@ -52226,7 +52226,7 @@ { "id": "starmyu-3rd-season", "title": "Starmyu 3rd Season", - "mal_title": "Starmyu 3rd Season", + "mal_id": 36536, "poster": "https://aruppi.jeluchu.xyz/res/directory/3077.jpg", "type": "Anime", "genres": [ @@ -52242,7 +52242,7 @@ { "id": "sounan-desu-ka", "title": "Sounan Desu ka?", - "mal_title": "Sounan Desu ka?", + "mal_id": 39456, "poster": "https://aruppi.jeluchu.xyz/res/directory/3078.jpg", "type": "Anime", "genres": [ @@ -52258,7 +52258,7 @@ { "id": "tejinasenpai", "title": "Tejina-senpai", - "mal_title": "Tejina-senpai", + "mal_id": 38610, "poster": "https://aruppi.jeluchu.xyz/res/directory/3079.jpg", "type": "Anime", "genres": [ @@ -52275,7 +52275,7 @@ { "id": "kanata-no-astra", "title": "Kanata no Astra", - "mal_title": "Kanata no Astra", + "mal_id": 39198, "poster": "https://aruppi.jeluchu.xyz/res/directory/3080.jpg", "type": "Anime", "genres": [ @@ -52292,7 +52292,7 @@ { "id": "dumbbell-nan-kilo-moteru", "title": "Dumbbell Nan Kilo Moteru?", - "mal_title": "Dumbbell Nan Kilo Moteru?", + "mal_id": 39026, "poster": "https://aruppi.jeluchu.xyz/res/directory/3081.jpg", "type": "Anime", "genres": [ @@ -52307,7 +52307,7 @@ { "id": "maousama-retry", "title": "Maou-sama, Retry!", - "mal_title": "Maou-sama, Retry!", + "mal_id": 38297, "poster": "https://aruppi.jeluchu.xyz/res/directory/3082.jpg", "type": "Anime", "genres": [ @@ -52323,7 +52323,7 @@ { "id": "uchi-no-ko-no-tame-naraba-ore-wa-moshikashitara-maou-mo-taoseru-kamo-shirenai", "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", - "mal_title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "mal_id": 39324, "poster": "https://aruppi.jeluchu.xyz/res/directory/3083.jpg", "type": "Anime", "genres": [ @@ -52338,7 +52338,7 @@ { "id": "araburu-kisetsu-no-otomedomo-yo", "title": "Araburu Kisetsu no Otome-domo yo.", - "mal_title": "Araburu Kisetsu no Otome-domo yo.", + "mal_id": 38753, "poster": "https://aruppi.jeluchu.xyz/res/directory/3084.jpg", "type": "Anime", "genres": [ @@ -52354,7 +52354,7 @@ { "id": "dr-stone", "title": "Dr. Stone", - "mal_title": "Dr. Stone", + "mal_id": 38691, "poster": "https://aruppi.jeluchu.xyz/res/directory/3085.jpg", "type": "Anime", "genres": [ @@ -52370,7 +52370,7 @@ { "id": "granbelm", "title": "Granbelm", - "mal_title": "Granbelm", + "mal_id": 39417, "poster": "https://aruppi.jeluchu.xyz/res/directory/3086.jpg", "type": "Anime", "genres": [ @@ -52385,7 +52385,7 @@ { "id": "enen-no-shouboutai", "title": "Enen no Shouboutai", - "mal_title": "Enen no Shouboutai", + "mal_id": 38671, "poster": "https://aruppi.jeluchu.xyz/res/directory/3087.jpg", "type": "Anime", "genres": [ @@ -52401,7 +52401,7 @@ { "id": "joshikousei-no-mudazukai", "title": "Joshikousei no Mudazukai", - "mal_title": "Joshikousei no Mudazukai", + "mal_id": 38619, "poster": "https://aruppi.jeluchu.xyz/res/directory/3088.jpg", "type": "Anime", "genres": [ @@ -52416,7 +52416,7 @@ { "id": "lord-elmelloi-ii-sei-no-jikenbo-rail-zeppelin-grace-note", "title": "Lord El-Melloi II Sei no Jikenbo: Rail Zeppelin Grace Note", - "mal_title": "Lord El-Melloi II Sei no Jikenbo: Rail Zeppelin Grace Note", + "mal_id": 38959, "poster": "https://aruppi.jeluchu.xyz/res/directory/3089.jpg", "type": "Anime", "genres": [ @@ -52432,7 +52432,7 @@ { "id": "senki-zesshou-symphogear-xv", "title": "Senki Zesshou Symphogear XV", - "mal_title": "Senki Zesshou Symphogear XV", + "mal_id": 32843, "poster": "https://aruppi.jeluchu.xyz/res/directory/3090.jpg", "type": "Anime", "genres": [ @@ -52448,7 +52448,7 @@ { "id": "restage-dream-days", "title": "Re:Stage! Dream Days♪", - "mal_title": "Re:Stage! Dream Days♪", + "mal_id": 38009, "poster": "https://aruppi.jeluchu.xyz/res/directory/3091.jpg", "type": "Anime", "genres": [ @@ -52462,7 +52462,7 @@ { "id": "nakanohito-genome-jikkyouchuu", "title": "Nakanohito Genome [Jikkyouchuu]", - "mal_title": "Nakanohito Genome [Jikkyouchuu]", + "mal_id": 37926, "poster": "https://aruppi.jeluchu.xyz/res/directory/3092.jpg", "type": "Anime", "genres": [ @@ -52477,7 +52477,7 @@ { "id": "yami-shibai-7", "title": "Yami Shibai 7", - "mal_title": "Yami Shibai 7", + "mal_id": 39836, "poster": "https://aruppi.jeluchu.xyz/res/directory/3093.jpg", "type": "Anime", "genres": [ @@ -52493,7 +52493,7 @@ { "id": "vinland-saga", "title": "Vinland Saga", - "mal_title": "Vinland Saga", + "mal_id": 37521, "poster": "https://aruppi.jeluchu.xyz/res/directory/3094.jpg", "type": "Anime", "genres": [ @@ -52511,7 +52511,7 @@ { "id": "dungeon-ni-deai-wo-motomeru-no-wa-machigatteiru-darou-ka-movie-orion-no-ya", "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya", - "mal_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya", + "mal_id": 37348, "poster": "https://aruppi.jeluchu.xyz/res/directory/3095.jpg", "type": "Película", "genres": [ @@ -52529,7 +52529,7 @@ { "id": "ensemble-stars", "title": "Ensemble Stars!", - "mal_title": "Ensemble Stars!", + "mal_id": 32212, "poster": "https://aruppi.jeluchu.xyz/res/directory/3096.jpg", "type": "Anime", "genres": [ @@ -52545,7 +52545,7 @@ { "id": "kawaikereba-hentai-demo-suki-ni-natte-kuremasu-ka", "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", - "mal_title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "mal_id": 39326, "poster": "https://aruppi.jeluchu.xyz/res/directory/3097.jpg", "type": "Anime", "genres": [ @@ -52563,7 +52563,7 @@ { "id": "arifureta-shokugyou-de-sekai-saikyou", "title": "Arifureta Shokugyou de Sekai Saikyou", - "mal_title": "Arifureta Shokugyou de Sekai Saikyou", + "mal_id": 40507, "poster": "https://aruppi.jeluchu.xyz/res/directory/3098.jpg", "type": "Anime", "genres": [ @@ -52580,7 +52580,7 @@ { "id": "majimoji-rurumo-kanketsuhen", "title": "Majimoji Rurumo: Kanketsu-hen", - "mal_title": "Majimoji Rurumo: Kanketsu-hen", + "mal_id": 38357, "poster": "https://aruppi.jeluchu.xyz/res/directory/3099.jpg", "type": "OVA", "genres": [ @@ -52598,7 +52598,7 @@ { "id": "kochouki-wakaki-nobunaga", "title": "Kochouki: Wakaki Nobunaga", - "mal_title": "Kochouki: Wakaki Nobunaga", + "mal_id": 38920, "poster": "https://aruppi.jeluchu.xyz/res/directory/3100.jpg", "type": "Anime", "genres": [ @@ -52615,7 +52615,7 @@ { "id": "tensei-shitara-slime-datta-ken-ova", "title": "Tensei shitara Slime Datta Ken OVA", - "mal_title": "Tensei shitara Slime Datta Ken OVA", + "mal_id": 38793, "poster": "https://aruppi.jeluchu.xyz/res/directory/3101.jpg", "type": "OVA", "genres": [ @@ -52631,7 +52631,7 @@ { "id": "karakai-jouzu-no-takagisan-2", "title": "Karakai Jouzu no Takagi-san 2", - "mal_title": "Karakai Jouzu no Takagi-san 2", + "mal_id": 38993, "poster": "https://aruppi.jeluchu.xyz/res/directory/3102.jpg", "type": "Anime", "genres": [ @@ -52649,7 +52649,7 @@ { "id": "cop-craft", "title": "Cop Craft", - "mal_title": "Cop Craft", + "mal_id": 38940, "poster": "https://aruppi.jeluchu.xyz/res/directory/3103.jpg", "type": "Anime", "genres": [ @@ -52667,7 +52667,7 @@ { "id": "isekai-cheat-magician", "title": "Isekai Cheat Magician", - "mal_title": "Isekai Cheat Magician", + "mal_id": 37744, "poster": "https://aruppi.jeluchu.xyz/res/directory/3104.jpg", "type": "Anime", "genres": [ @@ -52683,7 +52683,7 @@ { "id": "machikado-mazoku", "title": "Machikado Mazoku", - "mal_title": "Machikado Mazoku", + "mal_id": 39071, "poster": "https://aruppi.jeluchu.xyz/res/directory/3105.jpg", "type": "Anime", "genres": [ @@ -52699,7 +52699,7 @@ { "id": "given", "title": "Given", - "mal_title": "Given", + "mal_id": 39533, "poster": "https://aruppi.jeluchu.xyz/res/directory/3106.jpg", "type": "Anime", "genres": [ @@ -52716,7 +52716,7 @@ { "id": "toaru-kagaku-no-accelerator", "title": "Toaru Kagaku no Accelerator", - "mal_title": "Toaru Kagaku no Accelerator", + "mal_id": 38480, "poster": "https://aruppi.jeluchu.xyz/res/directory/3107.jpg", "type": "Anime", "genres": [ @@ -52733,7 +52733,7 @@ { "id": "dungeon-ni-deai-wo-motomeru-no-wa-machigatteiru-darou-ka-ii", "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", - "mal_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "mal_id": 37347, "poster": "https://aruppi.jeluchu.xyz/res/directory/3108.jpg", "type": "Anime", "genres": [ @@ -52751,7 +52751,7 @@ { "id": "tsuujou-kougeki-ga-zentai-kougeki-de-nikai-kougeki-no-okaasan-wa-suki-desu-ka", "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki Desu ka", - "mal_title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki Desu ka", + "mal_id": 38573, "poster": "https://aruppi.jeluchu.xyz/res/directory/3109.jpg", "type": "Anime", "genres": [ @@ -52767,7 +52767,7 @@ { "id": "bem", "title": "Bem", - "mal_title": "Bem", + "mal_id": 39221, "poster": "https://aruppi.jeluchu.xyz/res/directory/3110.jpg", "type": "Anime", "genres": [ @@ -52783,7 +52783,7 @@ { "id": "try-knights", "title": "Try Knights", - "mal_title": "Try Knights", + "mal_id": 39527, "poster": "https://aruppi.jeluchu.xyz/res/directory/3111.jpg", "type": "Anime", "genres": [ @@ -52799,7 +52799,7 @@ { "id": "fategrand-order-zettai-majuu-sensen-babylonia-initium-iter", "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia - Initium Iter", - "mal_title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia - Initium Iter", + "mal_id": 40206, "poster": "https://aruppi.jeluchu.xyz/res/directory/3112.jpg", "type": "Especial", "genres": [ @@ -52816,7 +52816,7 @@ { "id": "youjo-senki-movie", "title": "Youjo Senki Movie", - "mal_title": "Youjo Senki Movie", + "mal_id": 37055, "poster": "https://aruppi.jeluchu.xyz/res/directory/3113.jpg", "type": "Película", "genres": [ @@ -52831,7 +52831,7 @@ { "id": "ahiru-no-sora", "title": "Ahiru no Sora", - "mal_title": "Ahiru no Sora", + "mal_id": 37403, "poster": "https://aruppi.jeluchu.xyz/res/directory/3114.jpg", "type": "Anime", "genres": [ @@ -52848,7 +52848,7 @@ { "id": "radiant-2nd-season", "title": "Radiant 2nd Season", - "mal_title": "Radiant 2nd Season", + "mal_id": 39355, "poster": "https://aruppi.jeluchu.xyz/res/directory/3115.jpg", "type": "Anime", "genres": [ @@ -52865,7 +52865,7 @@ { "id": "urashimasakatasen-no-nichijou", "title": "Urashimasakatasen no Nichijou ", - "mal_title": "Urashimasakatasen no Nichijou ", + "mal_id": 40197, "poster": "https://aruppi.jeluchu.xyz/res/directory/3116.jpg", "type": "Anime", "genres": [ @@ -52881,7 +52881,7 @@ { "id": "honzuki-no-gekokujou-shisho-ni-naru-tame-ni-wa-shudan-wo-erandeiraremasen", "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", - "mal_title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "mal_id": 40815, "poster": "https://aruppi.jeluchu.xyz/res/directory/3117.jpg", "type": "Anime", "genres": [ @@ -52896,7 +52896,7 @@ { "id": "ore-wo-suki-nano-wa-omae-dake-ka-yo", "title": "Ore wo Suki nano wa Omae dake ka yo", - "mal_title": "Ore wo Suki nano wa Omae dake ka yo", + "mal_id": 38483, "poster": "https://aruppi.jeluchu.xyz/res/directory/3118.jpg", "type": "Anime", "genres": [ @@ -52912,7 +52912,7 @@ { "id": "shinchou-yuusha-kono-yuusha-ga-ore-tueee-kuse-ni-shinchou-sugiru", "title": "Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru", - "mal_title": "Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru", + "mal_id": 38659, "poster": "https://aruppi.jeluchu.xyz/res/directory/3119.jpg", "type": "Anime", "genres": [ @@ -52929,7 +52929,7 @@ { "id": "hataage-kemono-michi", "title": "Hataage! Kemono Michi", - "mal_title": "Hataage! Kemono Michi", + "mal_id": 39030, "poster": "https://aruppi.jeluchu.xyz/res/directory/3120.jpg", "type": "Anime", "genres": [ @@ -52945,7 +52945,7 @@ { "id": "houkago-saikoro-club", "title": "Houkago Saikoro Club", - "mal_title": "Houkago Saikoro Club", + "mal_id": 38276, "poster": "https://aruppi.jeluchu.xyz/res/directory/3121.jpg", "type": "Anime", "genres": [ @@ -52961,7 +52961,7 @@ { "id": "choujin-koukouseitachi-wa-isekai-demo-yoyuu-de-ikinuku-you-desu", "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", - "mal_title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "mal_id": 39523, "poster": "https://aruppi.jeluchu.xyz/res/directory/3122.jpg", "type": "Anime", "genres": [ @@ -52975,7 +52975,7 @@ { "id": "azur-lane", "title": "Azur Lane", - "mal_title": "Azur Lane", + "mal_id": 38328, "poster": "https://aruppi.jeluchu.xyz/res/directory/3123.jpg", "type": "Anime", "genres": [ @@ -52991,7 +52991,7 @@ { "id": "null-peta", "title": "Null Peta", - "mal_title": "Null Peta", + "mal_id": 40178, "poster": "https://aruppi.jeluchu.xyz/res/directory/3124.jpg", "type": "OVA", "genres": [ @@ -53005,7 +53005,7 @@ { "id": "chuubyou-gekihatsu-boy", "title": "Chuubyou Gekihatsu Boy", - "mal_title": "Chuubyou Gekihatsu Boy", + "mal_id": 38390, "poster": "https://aruppi.jeluchu.xyz/res/directory/3125.jpg", "type": "Anime", "genres": [ @@ -53021,7 +53021,7 @@ { "id": "granblue-fantasy-the-animation-season-2", "title": "Granblue Fantasy The Animation Season 2", - "mal_title": "Granblue Fantasy The Animation Season 2", + "mal_id": 36587, "poster": "https://aruppi.jeluchu.xyz/res/directory/3126.jpg", "type": "Anime", "genres": [ @@ -53036,7 +53036,7 @@ { "id": "black-fox", "title": "Black Fox", - "mal_title": "Black Fox", + "mal_id": 37498, "poster": "https://aruppi.jeluchu.xyz/res/directory/3127.jpg", "type": "Película", "genres": [ @@ -53050,7 +53050,7 @@ { "id": "mairimashita-irumakun", "title": "Mairimashita! Iruma-kun", - "mal_title": "Mairimashita! Iruma-kun", + "mal_id": 39196, "poster": "https://aruppi.jeluchu.xyz/res/directory/3128.jpg", "type": "Anime", "genres": [ @@ -53068,7 +53068,7 @@ { "id": "val-x-love", "title": "Val x Love", - "mal_title": "Val x Love", + "mal_id": 39799, "poster": "https://aruppi.jeluchu.xyz/res/directory/3129.jpg", "type": "Anime", "genres": [ @@ -53088,7 +53088,7 @@ { "id": "fategrand-order-zettai-majuu-sensen-babylonia", "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", - "mal_title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "mal_id": 38084, "poster": "https://aruppi.jeluchu.xyz/res/directory/3130.jpg", "type": "Anime", "genres": [ @@ -53105,7 +53105,7 @@ { "id": "bokutachi-wa-benkyou-ga-dekinai-2", "title": "Bokutachi wa Benkyou ga Dekinai 2", - "mal_title": "Bokutachi wa Benkyou ga Dekinai 2", + "mal_id": 40004, "poster": "https://aruppi.jeluchu.xyz/res/directory/3131.jpg", "type": "Anime", "genres": [ @@ -53123,7 +53123,7 @@ { "id": "kono-oto-tomare-2nd-season", "title": "Kono Oto Tomare! 2nd Season", - "mal_title": "Kono Oto Tomare! 2nd Season", + "mal_id": 38889, "poster": "https://aruppi.jeluchu.xyz/res/directory/3132.jpg", "type": "Anime", "genres": [ @@ -53140,7 +53140,7 @@ { "id": "keishichou-tokumubu-tokushu-kyouakuhan-taisakushitsu-dainanaka-tokunana", "title": "Keishichou Tokumubu Tokushu Kyouakuhan Taisakushitsu Dainanaka: Tokunana", - "mal_title": "Keishichou Tokumubu Tokushu Kyouakuhan Taisakushitsu Dainanaka: Tokunana", + "mal_id": 39567, "poster": "https://aruppi.jeluchu.xyz/res/directory/3133.jpg", "type": "Anime", "genres": [ @@ -53155,7 +53155,7 @@ { "id": "fairy-gone-2nd-season", "title": "Fairy Gone 2nd Season", - "mal_title": "Fairy Gone 2nd Season", + "mal_id": 39811, "poster": "https://aruppi.jeluchu.xyz/res/directory/3134.jpg", "type": "Anime", "genres": [ @@ -53173,7 +53173,7 @@ { "id": "babylon", "title": "Babylon", - "mal_title": "Babylon", + "mal_id": 37525, "poster": "https://aruppi.jeluchu.xyz/res/directory/3135.jpg", "type": "Anime", "genres": [ @@ -53188,7 +53188,7 @@ { "id": "actors-songs-connection", "title": "Actors: Songs Connection", - "mal_title": "Actors: Songs Connection", + "mal_id": 38670, "poster": "https://aruppi.jeluchu.xyz/res/directory/3136.jpg", "type": "Anime", "genres": [ @@ -53203,7 +53203,7 @@ { "id": "watashi-nouryoku-wa-heikinchi-de-tte-itta-yo-ne", "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", - "mal_title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "mal_id": 37393, "poster": "https://aruppi.jeluchu.xyz/res/directory/3137.jpg", "type": "Anime", "genres": [ @@ -53218,7 +53218,7 @@ { "id": "phantasy-star-online-2-episode-oracle", "title": "Phantasy Star Online 2: Episode Oracle", - "mal_title": "Phantasy Star Online 2: Episode Oracle", + "mal_id": 39506, "poster": "https://aruppi.jeluchu.xyz/res/directory/3138.jpg", "type": "Anime", "genres": [ @@ -53234,7 +53234,7 @@ { "id": "stand-my-heroes-piece-of-truth", "title": "Stand My Heroes: Piece of Truth", - "mal_title": "Stand My Heroes: Piece of Truth", + "mal_id": 38331, "poster": "https://aruppi.jeluchu.xyz/res/directory/3139.jpg", "type": "Anime", "genres": [ @@ -53250,7 +53250,7 @@ { "id": "zx-code-reunion", "title": "Z/X: Code Reunion", - "mal_title": "Z/X: Code Reunion", + "mal_id": 37268, "poster": "https://aruppi.jeluchu.xyz/res/directory/3140.jpg", "type": "Anime", "genres": [ @@ -53267,7 +53267,7 @@ { "id": "kandagawa-jet-girls", "title": "Kandagawa Jet Girls", - "mal_title": "Kandagawa Jet Girls", + "mal_id": 41146, "poster": "https://aruppi.jeluchu.xyz/res/directory/3141.jpg", "type": "Anime", "genres": [ @@ -53281,7 +53281,7 @@ { "id": "nanatsu-no-taizai-kamigami-no-gekirin", "title": "Nanatsu no Taizai: Kamigami no Gekirin", - "mal_title": "Nanatsu no Taizai: Kamigami no Gekirin", + "mal_id": 39701, "poster": "https://aruppi.jeluchu.xyz/res/directory/3142.jpg", "type": "Anime", "genres": [ @@ -53300,7 +53300,7 @@ { "id": "gundam-build-divers-rerise", "title": "Gundam Build Divers Re:Rise", - "mal_title": "Gundam Build Divers Re:Rise", + "mal_id": 40192, "poster": "https://aruppi.jeluchu.xyz/res/directory/3143.jpg", "type": "OVA", "genres": [ @@ -53316,7 +53316,7 @@ { "id": "assassins-pride", "title": "Assassins Pride", - "mal_title": "Assassins Pride", + "mal_id": 38572, "poster": "https://aruppi.jeluchu.xyz/res/directory/3144.jpg", "type": "Anime", "genres": [ @@ -53330,7 +53330,7 @@ { "id": "no-guns-life", "title": "No Guns Life", - "mal_title": "No Guns Life", + "mal_id": 39539, "poster": "https://aruppi.jeluchu.xyz/res/directory/3145.jpg", "type": "Anime", "genres": [ @@ -53346,7 +53346,7 @@ { "id": "hoshiai-no-sora", "title": "Hoshiai no Sora", - "mal_title": "Hoshiai no Sora", + "mal_id": 37972, "poster": "https://aruppi.jeluchu.xyz/res/directory/3146.jpg", "type": "Anime", "genres": [ @@ -53363,7 +53363,7 @@ { "id": "mugen-no-juunin-immortal", "title": "Mugen no Juunin: Immortal", - "mal_title": "Mugen no Juunin: Immortal", + "mal_id": 39806, "poster": "https://aruppi.jeluchu.xyz/res/directory/3147.jpg", "type": "OVA", "genres": [ @@ -53384,7 +53384,7 @@ { "id": "shokugeki-no-souma-shin-no-sara", "title": "Shokugeki no Souma: Shin no Sara", - "mal_title": "Shokugeki no Souma: Shin no Sara", + "mal_id": 39940, "poster": "https://aruppi.jeluchu.xyz/res/directory/3148.jpg", "type": "Anime", "genres": [ @@ -53400,7 +53400,7 @@ { "id": "shin-chuuka-ichiban", "title": "Shin Chuuka Ichiban!", - "mal_title": "Shin Chuuka Ichiban!", + "mal_id": 39194, "poster": "https://aruppi.jeluchu.xyz/res/directory/3149.jpg", "type": "Anime", "genres": [ @@ -53415,7 +53415,7 @@ { "id": "kabukichou-sherlock", "title": "Kabukichou Sherlock", - "mal_title": "Kabukichou Sherlock", + "mal_id": 38161, "poster": "https://aruppi.jeluchu.xyz/res/directory/3150.jpg", "type": "Anime", "genres": [ @@ -53431,7 +53431,7 @@ { "id": "boku-no-hero-academia-4th-season", "title": "Boku no Hero Academia 4th Season", - "mal_title": "Boku no Hero Academia 4th Season", + "mal_id": 38408, "poster": "https://aruppi.jeluchu.xyz/res/directory/3151.jpg", "type": "Anime", "genres": [ @@ -53449,7 +53449,7 @@ { "id": "sword-art-online-alicization-war-of-underworld", "title": "Sword Art Online: Alicization - War of Underworld", - "mal_title": "Sword Art Online: Alicization - War of Underworld", + "mal_id": 39597, "poster": "https://aruppi.jeluchu.xyz/res/directory/3152.jpg", "type": "Anime", "genres": [ @@ -53467,7 +53467,7 @@ { "id": "rifle-is-beautiful", "title": "Rifle Is Beautiful", - "mal_title": "Rifle Is Beautiful", + "mal_id": 38529, "poster": "https://aruppi.jeluchu.xyz/res/directory/3153.jpg", "type": "Anime", "genres": [ @@ -53483,7 +53483,7 @@ { "id": "ginga-eiyuu-densetsu-die-neue-these-seiran-1", "title": "Ginga Eiyuu Densetsu: Die Neue These - Seiran 1", - "mal_title": "Ginga Eiyuu Densetsu: Die Neue These - Seiran 1", + "mal_id": 36369, "poster": "https://aruppi.jeluchu.xyz/res/directory/3154.jpg", "type": "Película", "genres": [ @@ -53501,7 +53501,7 @@ { "id": "chihayafuru-3", "title": "Chihayafuru 3", - "mal_title": "Chihayafuru 3", + "mal_id": 37379, "poster": "https://aruppi.jeluchu.xyz/res/directory/3155.jpg", "type": "Anime", "genres": [ @@ -53520,7 +53520,7 @@ { "id": "psychopass-3", "title": "Psycho-Pass 3", - "mal_title": "Psycho-Pass 3", + "mal_id": 39491, "poster": "https://aruppi.jeluchu.xyz/res/directory/3156.jpg", "type": "Anime", "genres": [ @@ -53537,7 +53537,7 @@ { "id": "beastars", "title": "BEASTARS", - "mal_title": "BEASTARS", + "mal_id": 39195, "poster": "https://aruppi.jeluchu.xyz/res/directory/3157.jpg", "type": "Anime", "genres": [ @@ -53554,7 +53554,7 @@ { "id": "granblue-fantasy-the-animation-especial", "title": "Granblue Fantasy The Animation Especial", - "mal_title": "Granblue Fantasy The Animation Especial", + "mal_id": 31629, "poster": "https://aruppi.jeluchu.xyz/res/directory/3158.jpg", "type": "Especial", "genres": [ @@ -53569,7 +53569,7 @@ { "id": "high-score-girl-ii", "title": "High Score Girl II", - "mal_title": "High Score Girl II", + "mal_id": 39570, "poster": "https://aruppi.jeluchu.xyz/res/directory/3159.jpg", "type": "Anime", "genres": [ @@ -53587,7 +53587,7 @@ { "id": "pokemon-2019", "title": "Pokemon (2019)", - "mal_title": "Pokemon (2019)", + "mal_id": 40351, "poster": "https://aruppi.jeluchu.xyz/res/directory/3160.jpg", "type": "Anime", "genres": [ @@ -53605,7 +53605,7 @@ { "id": "seishun-buta-yarou-wa-yumemiru-shoujo-no-yume-wo-minai", "title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", - "mal_title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", + "mal_id": 38329, "poster": "https://aruppi.jeluchu.xyz/res/directory/3161.jpg", "type": "Película", "genres": [ @@ -53621,7 +53621,7 @@ { "id": "rezero-kara-hajimeru-isekai-seikatsu-shin-henshuuban", "title": "Re:Zero kara Hajimeru Isekai Seikatsu: Shin Henshuu-ban", - "mal_title": "Re:Zero kara Hajimeru Isekai Seikatsu: Shin Henshuu-ban", + "mal_id": 42203, "poster": "https://aruppi.jeluchu.xyz/res/directory/3162.jpg", "type": "Anime", "genres": [ @@ -53637,7 +53637,7 @@ { "id": "somali-to-mori-no-kamisama", "title": "Somali to Mori no Kamisama", - "mal_title": "Somali to Mori no Kamisama", + "mal_id": 39575, "poster": "https://aruppi.jeluchu.xyz/res/directory/3163.jpg", "type": "Anime", "genres": [ @@ -53653,7 +53653,7 @@ { "id": "koisuru-asteroid", "title": "Koisuru Asteroid", - "mal_title": "Koisuru Asteroid", + "mal_id": 39388, "poster": "https://aruppi.jeluchu.xyz/res/directory/3164.jpg", "type": "Anime", "genres": [ @@ -53669,7 +53669,7 @@ { "id": "darwins-game", "title": "Darwin's Game", - "mal_title": "Darwin's Game", + "mal_id": 38656, "poster": "https://aruppi.jeluchu.xyz/res/directory/3165.jpg", "type": "Anime", "genres": [ @@ -53685,7 +53685,7 @@ { "id": "arifureta-shokugyou-de-sekai-saikyou-specials", "title": "Arifureta Shokugyou de Sekai Saikyou Specials", - "mal_title": "Arifureta Shokugyou de Sekai Saikyou Specials", + "mal_id": 40083, "poster": "https://aruppi.jeluchu.xyz/res/directory/3166.jpg", "type": "Especial", "genres": [ @@ -53702,7 +53702,7 @@ { "id": "magia-record-mahou-shoujo-madokamagica-gaiden-tv", "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden (TV)", - "mal_title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden (TV)", + "mal_id": 38256, "poster": "https://aruppi.jeluchu.xyz/res/directory/3167.jpg", "type": "Anime", "genres": [ @@ -53719,7 +53719,7 @@ { "id": "eizouken-ni-wa-te-wo-dasu-na", "title": "Eizouken ni wa Te wo Dasu na!", - "mal_title": "Eizouken ni wa Te wo Dasu na!", + "mal_id": 39792, "poster": "https://aruppi.jeluchu.xyz/res/directory/3168.jpg", "type": "Anime", "genres": [ @@ -53736,7 +53736,7 @@ { "id": "idinvaded", "title": "ID:Invaded", - "mal_title": "ID:Invaded", + "mal_id": 40046, "poster": "https://aruppi.jeluchu.xyz/res/directory/3169.jpg", "type": "Anime", "genres": [ @@ -53751,7 +53751,7 @@ { "id": "heya-camp", "title": "Heya Camp△", - "mal_title": "Heya Camp△", + "mal_id": 38476, "poster": "https://aruppi.jeluchu.xyz/res/directory/3170.jpg", "type": "Anime", "genres": [ @@ -53766,7 +53766,7 @@ { "id": "murenase-seton-gakuen", "title": "Murenase! Seton Gakuen", - "mal_title": "Murenase! Seton Gakuen", + "mal_id": 40483, "poster": "https://aruppi.jeluchu.xyz/res/directory/3171.jpg", "type": "Anime", "genres": [ @@ -53781,7 +53781,7 @@ { "id": "yatogamechan-kansatsu-nikki-nisatsume", "title": "Yatogame-chan Kansatsu Nikki Nisatsume", - "mal_title": "Yatogame-chan Kansatsu Nikki Nisatsume", + "mal_id": 39960, "poster": "https://aruppi.jeluchu.xyz/res/directory/3172.jpg", "type": "Anime", "genres": [ @@ -53798,7 +53798,7 @@ { "id": "pet", "title": "Pet", - "mal_title": "Pet", + "mal_id": 37522, "poster": "https://aruppi.jeluchu.xyz/res/directory/3173.jpg", "type": "Anime", "genres": [ @@ -53815,7 +53815,7 @@ { "id": "overflow", "title": "Overflow", - "mal_title": "Overflow", + "mal_id": 40746, "poster": "https://aruppi.jeluchu.xyz/res/directory/3174.jpg", "type": "Anime", "genres": [ @@ -53830,7 +53830,7 @@ { "id": "bang-dream-3rd-season", "title": "BanG Dream! 3rd Season", - "mal_title": "BanG Dream! 3rd Season", + "mal_id": 37870, "poster": "https://aruppi.jeluchu.xyz/res/directory/3175.jpg", "type": "Anime", "genres": [ @@ -53844,7 +53844,7 @@ { "id": "idolish7-second-beat", "title": "IDOLiSH7: Second Beat!", - "mal_title": "IDOLiSH7: Second Beat!", + "mal_id": 37962, "poster": "https://aruppi.jeluchu.xyz/res/directory/3176.jpg", "type": "Anime", "genres": [ @@ -53858,7 +53858,7 @@ { "id": "majutsushi-orphen-hagure-tabi", "title": "Majutsushi Orphen Hagure Tabi", - "mal_title": "Majutsushi Orphen Hagure Tabi", + "mal_id": 37576, "poster": "https://aruppi.jeluchu.xyz/res/directory/3177.jpg", "type": "Anime", "genres": [ @@ -53877,7 +53877,7 @@ { "id": "number24", "title": "number24", - "mal_title": "number24", + "mal_id": 39583, "poster": "https://aruppi.jeluchu.xyz/res/directory/3178.jpg", "type": "Anime", "genres": [ @@ -53892,7 +53892,7 @@ { "id": "itai-no-wa-iya-nano-de-bougyoryoku-ni-kyokufuri-shitai-to-omoimasu", "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", - "mal_title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "mal_id": 38790, "poster": "https://aruppi.jeluchu.xyz/res/directory/3179.jpg", "type": "Anime", "genres": [ @@ -53910,7 +53910,7 @@ { "id": "plunderer", "title": "Plunderer", - "mal_title": "Plunderer", + "mal_id": 37345, "poster": "https://aruppi.jeluchu.xyz/res/directory/3180.jpg", "type": "Anime", "genres": [ @@ -53927,7 +53927,7 @@ { "id": "nekopara-tv", "title": "Nekopara (TV)", - "mal_title": "Nekopara", + "mal_id": 38924, "poster": "https://aruppi.jeluchu.xyz/res/directory/3181.jpg", "type": "Anime", "genres": [ @@ -53942,7 +53942,7 @@ { "id": "housekishou-richardshi-no-nazo-kantei", "title": "Housekishou Richard-shi no Nazo Kantei", - "mal_title": "Housekishou Richard-shi no Nazo Kantei", + "mal_id": 40230, "poster": "https://aruppi.jeluchu.xyz/res/directory/3182.jpg", "type": "Anime", "genres": [ @@ -53957,7 +53957,7 @@ { "id": "hatenaillusion", "title": "Hatena☆Illusion", - "mal_title": "Hatena☆Illusion", + "mal_id": 35252, "poster": "https://aruppi.jeluchu.xyz/res/directory/3183.jpg", "type": "Anime", "genres": [ @@ -53974,7 +53974,7 @@ { "id": "infinite-dendrogram", "title": "Infinite Dendrogram", - "mal_title": "Infinite Dendrogram", + "mal_id": 38909, "poster": "https://aruppi.jeluchu.xyz/res/directory/3184.jpg", "type": "Anime", "genres": [ @@ -53989,7 +53989,7 @@ { "id": "jibaku-shounen-hanakokun", "title": "Jibaku Shounen Hanako-kun", - "mal_title": "Jibaku Shounen Hanako-kun", + "mal_id": 39534, "poster": "https://aruppi.jeluchu.xyz/res/directory/3185.jpg", "type": "Anime", "genres": [ @@ -54006,7 +54006,7 @@ { "id": "show-by-rock-mashumairesh", "title": "Show By Rock!! Mashumairesh!!", - "mal_title": "Show By Rock!! Mashumairesh!!", + "mal_id": 40763, "poster": "https://aruppi.jeluchu.xyz/res/directory/3186.jpg", "type": "Anime", "genres": [ @@ -54021,7 +54021,7 @@ { "id": "oshi-ga-budoukan-ittekuretara-shinu", "title": "Oshi ga Budoukan Ittekuretara Shinu", - "mal_title": "Oshi ga Budoukan Ittekuretara Shinu", + "mal_id": 37890, "poster": "https://aruppi.jeluchu.xyz/res/directory/3187.jpg", "type": "Anime", "genres": [ @@ -54037,7 +54037,7 @@ { "id": "uchi-tama-uchi-no-tama-shirimasen-ka", "title": "Uchi Tama?! Uchi no Tama Shirimasen ka?", - "mal_title": "Uchi Tama?! Uchi no Tama Shirimasen ka?", + "mal_id": 39942, "poster": "https://aruppi.jeluchu.xyz/res/directory/3188.jpg", "type": "Anime", "genres": [ @@ -54051,7 +54051,7 @@ { "id": "kyochuu-rettou", "title": "Kyochuu Rettou", - "mal_title": "Kyochuu Rettou", + "mal_id": 40332, "poster": "https://aruppi.jeluchu.xyz/res/directory/3189.jpg", "type": "OVA", "genres": [ @@ -54065,7 +54065,7 @@ { "id": "kyochuu-rettou-movie", "title": "Kyochuu Rettou Movie", - "mal_title": "Kyochuu Rettou Movie", + "mal_id": 40332, "poster": "https://aruppi.jeluchu.xyz/res/directory/3190.jpg", "type": "Película", "genres": [ @@ -54079,7 +54079,7 @@ { "id": "rikei-ga-koi-ni-ochita-no-de-shoumei-shitemita", "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", - "mal_title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "mal_id": 38992, "poster": "https://aruppi.jeluchu.xyz/res/directory/3191.jpg", "type": "Anime", "genres": [ @@ -54094,7 +54094,7 @@ { "id": "toaru-kagaku-no-railgun-t", "title": "Toaru Kagaku no Railgun T", - "mal_title": "Toaru Kagaku no Railgun T", + "mal_id": 38481, "poster": "https://aruppi.jeluchu.xyz/res/directory/3192.jpg", "type": "Anime", "genres": [ @@ -54110,7 +54110,7 @@ { "id": "haikyuu-to-the-top", "title": "Haikyuu!!: To the Top", - "mal_title": "Haikyuu!!: To the Top", + "mal_id": 38883, "poster": "https://aruppi.jeluchu.xyz/res/directory/3193.jpg", "type": "Anime", "genres": [ @@ -54128,7 +54128,7 @@ { "id": "oda-cinnamon-nobunaga", "title": "Oda Cinnamon Nobunaga", - "mal_title": "Oda Cinnamon Nobunaga", + "mal_id": 40136, "poster": "https://aruppi.jeluchu.xyz/res/directory/3194.jpg", "type": "Anime", "genres": [ @@ -54145,7 +54145,7 @@ { "id": "haikyuu-riku-vs-kuu", "title": "Haikyuu!!: Riku vs. Kuu", - "mal_title": "Haikyuu!!: Riku vs. Kuu", + "mal_id": 40262, "poster": "https://aruppi.jeluchu.xyz/res/directory/3195.jpg", "type": "OVA", "genres": [ @@ -54163,7 +54163,7 @@ { "id": "runway-de-waratte", "title": "Runway de Waratte", - "mal_title": "Runway de Waratte", + "mal_id": 40392, "poster": "https://aruppi.jeluchu.xyz/res/directory/3196.jpg", "type": "Anime", "genres": [ @@ -54180,7 +54180,7 @@ { "id": "boku-no-tonari-ni-ankoku-hakaishin-ga-imasu", "title": "Boku no Tonari ni Ankoku Hakaishin ga Imasu.", - "mal_title": "Boku no Tonari ni Ankoku Hakaishin ga Imasu.", + "mal_id": 38302, "poster": "https://aruppi.jeluchu.xyz/res/directory/3197.jpg", "type": "Anime", "genres": [ @@ -54197,7 +54197,7 @@ { "id": "ishuzoku-reviewers", "title": "Ishuzoku Reviewers", - "mal_title": "Ishuzoku Reviewers", + "mal_id": 40010, "poster": "https://aruppi.jeluchu.xyz/res/directory/3198.jpg", "type": "Anime", "genres": [ @@ -54213,7 +54213,7 @@ { "id": "kyokou-suiri", "title": "Kyokou Suiri", - "mal_title": "Kyokou Suiri", + "mal_id": 39017, "poster": "https://aruppi.jeluchu.xyz/res/directory/3199.jpg", "type": "Anime", "genres": [ @@ -54232,7 +54232,7 @@ { "id": "kimi-to-nami-ni-noretara", "title": "Kimi to, Nami ni Noretara", - "mal_title": "Kimi to, Nami ni Noretara", + "mal_id": 38594, "poster": "https://aruppi.jeluchu.xyz/res/directory/3200.jpg", "type": "Película", "genres": [ @@ -54249,7 +54249,7 @@ { "id": "227", "title": "22/7", - "mal_title": "22/7", + "mal_id": 40148, "poster": "https://aruppi.jeluchu.xyz/res/directory/3201.jpg", "type": "Anime", "genres": [ @@ -54263,7 +54263,7 @@ { "id": "arp-backstage-pass", "title": "ARP Backstage Pass", - "mal_title": "ARP Backstage Pass", + "mal_id": 40137, "poster": "https://aruppi.jeluchu.xyz/res/directory/3202.jpg", "type": "Anime", "genres": [ @@ -54277,7 +54277,7 @@ { "id": "a3-season-spring-summer", "title": "A3! Season Spring & Summer", - "mal_title": "A3! Season Spring & Summer", + "mal_id": 39184, "poster": "https://aruppi.jeluchu.xyz/res/directory/3203.jpg", "type": "Anime", "genres": [ @@ -54291,7 +54291,7 @@ { "id": "isekai-quartet-2nd-season", "title": "Isekai Quartet 2nd Season", - "mal_title": "Isekai Quartet 2nd Season", + "mal_id": 39988, "poster": "https://aruppi.jeluchu.xyz/res/directory/3204.jpg", "type": "Anime", "genres": [ @@ -54307,7 +54307,7 @@ { "id": "dorohedoro", "title": "Dorohedoro", - "mal_title": "Dorohedoro", + "mal_id": 38668, "poster": "https://aruppi.jeluchu.xyz/res/directory/3205.jpg", "type": "Anime", "genres": [ @@ -54325,7 +54325,7 @@ { "id": "tsugumomo-ova", "title": "Tsugumomo OVA", - "mal_title": "Tsugumomo OVA", + "mal_id": 39470, "poster": "https://aruppi.jeluchu.xyz/res/directory/3206.jpg", "type": "OVA", "genres": [ @@ -54344,7 +54344,7 @@ { "id": "pokemon-pelicula-22-mewtwo-no-gyakushuu-evolution", "title": "Pokemon Película 22: Mewtwo no Gyakushuu Evolution", - "mal_title": "Pokemon Película 22: Mewtwo no Gyakushuu Evolution", + "mal_id": 37966, "poster": "https://aruppi.jeluchu.xyz/res/directory/3207.jpg", "type": "Película", "genres": [ @@ -54362,7 +54362,7 @@ { "id": "tenchi-muyou-ryououki-5th-season", "title": "Tenchi Muyou! Ryououki 5th Season\t", - "mal_title": "Tenchi Muyou! Ryououki 5th Season\t", + "mal_id": 40097, "poster": "https://aruppi.jeluchu.xyz/res/directory/3208.jpg", "type": "OVA", "genres": [ @@ -54380,7 +54380,7 @@ { "id": "one-piece-movie-14-stampede", "title": "One Piece Movie 14: Stampede", - "mal_title": "One Piece Movie 14: Stampede", + "mal_id": 38234, "poster": "https://aruppi.jeluchu.xyz/res/directory/3209.jpg", "type": "Película", "genres": [ @@ -54399,7 +54399,7 @@ { "id": "kono-subarashii-sekai-ni-shukufuku-wo-kurenai-densetsu", "title": "Kono Subarashii Sekai ni Shukufuku wo!: Kurenai Densetsu", - "mal_title": "Kono Subarashii Sekai ni Shukufuku wo!: Kurenai Densetsu", + "mal_id": 38040, "poster": "https://aruppi.jeluchu.xyz/res/directory/3210.jpg", "type": "Película", "genres": [ @@ -54418,7 +54418,7 @@ { "id": "psychopass-3-first-inspector", "title": "Psycho-Pass 3: First Inspector", - "mal_title": "Psycho-Pass 3: First Inspector", + "mal_id": 40858, "poster": "https://aruppi.jeluchu.xyz/res/directory/3211.jpg", "type": "Película", "genres": [ @@ -54435,7 +54435,7 @@ { "id": "tamayomi", "title": "Tamayomi", - "mal_title": "Tamayomi", + "mal_id": 39966, "poster": "https://aruppi.jeluchu.xyz/res/directory/3212.jpg", "type": "Anime", "genres": [ @@ -54450,7 +54450,7 @@ { "id": "hachinan-tte-sore-wa-nai-deshou", "title": "Hachi-nan tte, Sore wa Nai deshou!", - "mal_title": "Hachi-nan tte, Sore wa Nai deshou!", + "mal_id": 38830, "poster": "https://aruppi.jeluchu.xyz/res/directory/3213.jpg", "type": "Anime", "genres": [ @@ -54465,7 +54465,7 @@ { "id": "kakushigoto", "title": "Kakushigoto", - "mal_title": "Kakushigoto", + "mal_id": 40716, "poster": "https://aruppi.jeluchu.xyz/res/directory/3214.jpg", "type": "Anime", "genres": [ @@ -54481,7 +54481,7 @@ { "id": "rezero-kara-hajimeru-isekai-seikatsu-hyouketsu-no-kizuna", "title": "ReZero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna", - "mal_title": "ReZero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna", + "mal_id": 38414, "poster": "https://aruppi.jeluchu.xyz/res/directory/3215.jpg", "type": "OVA", "genres": [ @@ -54497,7 +54497,7 @@ { "id": "shin-sakura-taisen-the-animation", "title": "Shin Sakura Taisen the Animation", - "mal_title": "Shin Sakura Taisen the Animation", + "mal_id": 40403, "poster": "https://aruppi.jeluchu.xyz/res/directory/3216.jpg", "type": "Anime", "genres": [ @@ -54514,7 +54514,7 @@ { "id": "promare", "title": "Promare\t", - "mal_title": "Promare\t", + "mal_id": 35848, "poster": "https://aruppi.jeluchu.xyz/res/directory/3217.jpg", "type": "Película", "genres": [ @@ -54531,7 +54531,7 @@ { "id": "bungou-to-alchemist-shinpan-no-haguruma", "title": "Bungou to Alchemist: Shinpan no Haguruma", - "mal_title": "Bungou to Alchemist: Shinpan no Haguruma", + "mal_id": 40934, "poster": "https://aruppi.jeluchu.xyz/res/directory/3218.jpg", "type": "Anime", "genres": [ @@ -54547,7 +54547,7 @@ { "id": "listeners", "title": "Listeners", - "mal_title": "Listeners", + "mal_id": 40165, "poster": "https://aruppi.jeluchu.xyz/res/directory/3219.jpg", "type": "Anime", "genres": [ @@ -54562,7 +54562,7 @@ { "id": "nami-yo-kiitekure", "title": "Nami yo Kiitekure", - "mal_title": "Nami yo Kiitekure", + "mal_id": 40513, "poster": "https://aruppi.jeluchu.xyz/res/directory/3220.jpg", "type": "Anime", "genres": [ @@ -54579,7 +54579,7 @@ { "id": "major-2nd-tv-2nd-season", "title": "Major 2nd (TV) 2nd Season\t", - "mal_title": "Major 2nd (TV) 2nd Season\t", + "mal_id": 40504, "poster": "https://aruppi.jeluchu.xyz/res/directory/3221.jpg", "type": "Anime", "genres": [ @@ -54596,7 +54596,7 @@ { "id": "arte", "title": "Arte", - "mal_title": "Arte", + "mal_id": 40128, "poster": "https://aruppi.jeluchu.xyz/res/directory/3222.jpg", "type": "Anime", "genres": [ @@ -54614,7 +54614,7 @@ { "id": "otome-game-no-hametsu-flag-shika-nai-akuyaku-reijou-ni-tensei-shiteshimatta", "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", - "mal_title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "mal_id": 38555, "poster": "https://aruppi.jeluchu.xyz/res/directory/3223.jpg", "type": "Anime", "genres": [ @@ -54632,7 +54632,7 @@ { "id": "yesterday-wo-utatte", "title": "Yesterday wo Utatte\t", - "mal_title": "Yesterday wo Utatte\t", + "mal_id": 39710, "poster": "https://aruppi.jeluchu.xyz/res/directory/3224.jpg", "type": "Anime", "genres": [ @@ -54649,7 +54649,7 @@ { "id": "honzuki-no-gekokujou-shisho-ni-naru-tame-ni-wa-shudan-wo-erandeiraremasen-2nd-season", "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", - "mal_title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "mal_id": 40815, "poster": "https://aruppi.jeluchu.xyz/res/directory/3225.jpg", "type": "Anime", "genres": [ @@ -54664,7 +54664,7 @@ { "id": "gal-to-kyouryuu", "title": "Gal to Kyouryuu", - "mal_title": "Gal to Kyouryuu", + "mal_id": 40358, "poster": "https://aruppi.jeluchu.xyz/res/directory/3226.jpg", "type": "Anime", "genres": [ @@ -54680,7 +54680,7 @@ { "id": "digimon-adventure-2020", "title": "Digimon Adventure: (2020)\t", - "mal_title": "Digimon Adventure: (2020)\t", + "mal_id": 41074, "poster": "https://aruppi.jeluchu.xyz/res/directory/3227.jpg", "type": "Anime", "genres": [ @@ -54698,7 +54698,7 @@ { "id": "tsugu-tsugumomo", "title": "Tsugu Tsugumomo\t", - "mal_title": "Tsugu Tsugumomo\t", + "mal_id": 39469, "poster": "https://aruppi.jeluchu.xyz/res/directory/3228.jpg", "type": "Anime", "genres": [ @@ -54717,7 +54717,7 @@ { "id": "gleipnir", "title": "Gleipnir", - "mal_title": "Gleipnir", + "mal_id": 39463, "poster": "https://aruppi.jeluchu.xyz/res/directory/3229.jpg", "type": "Anime", "genres": [ @@ -54735,7 +54735,7 @@ { "id": "shachou-battle-no-jikan-desu", "title": "Shachou, Battle no Jikan Desu!", - "mal_title": "Shachou, Battle no Jikan Desu!", + "mal_id": 40783, "poster": "https://aruppi.jeluchu.xyz/res/directory/3230.jpg", "type": "Anime", "genres": [ @@ -54751,7 +54751,7 @@ { "id": "kingdom-3rd-season", "title": "Kingdom 3rd Season", - "mal_title": "Kingdom 3rd Season", + "mal_id": 40682, "poster": "https://aruppi.jeluchu.xyz/res/directory/3231.jpg", "type": "Anime", "genres": [ @@ -54768,7 +54768,7 @@ { "id": "princess-connect-redive", "title": "Princess Connect! Re:Dive\t", - "mal_title": "Princess Connect! Re:Dive\t", + "mal_id": 42670, "poster": "https://aruppi.jeluchu.xyz/res/directory/3232.jpg", "type": "Anime", "genres": [ @@ -54784,7 +54784,7 @@ { "id": "jashinchan-dropkick-s2", "title": "Jashin-chan Dropkick' S2", - "mal_title": "Jashin-chan Dropkick' S2", + "mal_id": 36906, "poster": "https://aruppi.jeluchu.xyz/res/directory/3233.jpg", "type": "Anime", "genres": [ @@ -54799,7 +54799,7 @@ { "id": "fruits-basket-2nd-season", "title": "Fruits Basket 2nd Season", - "mal_title": "Fruits Basket 2nd Season", + "mal_id": 40417, "poster": "https://aruppi.jeluchu.xyz/res/directory/3234.jpg", "type": "Anime", "genres": [ @@ -54818,7 +54818,7 @@ { "id": "shironeko-project-zero-chronicle", "title": "Shironeko Project: Zero Chronicle", - "mal_title": "Shironeko Project: Zero Chronicle", + "mal_id": 38843, "poster": "https://aruppi.jeluchu.xyz/res/directory/3235.jpg", "type": "Anime", "genres": [ @@ -54835,7 +54835,7 @@ { "id": "altered-carbon-resleeved", "title": "Altered Carbon - Resleeved", - "mal_title": "Altered Carbon - Resleeved", + "mal_id": 40613, "poster": "https://aruppi.jeluchu.xyz/res/directory/3236.jpg", "type": "Película", "genres": [ @@ -54852,7 +54852,7 @@ { "id": "shadowverse-tv", "title": "Shadowverse (TV)\t", - "mal_title": "Shadowverse (TV)\t", + "mal_id": 40506, "poster": "https://aruppi.jeluchu.xyz/res/directory/3237.jpg", "type": "Anime", "genres": [ @@ -54867,7 +54867,7 @@ { "id": "houkago-teibou-nisshi", "title": "Houkago Teibou Nisshi", - "mal_title": "Houkago Teibou Nisshi", + "mal_id": 39730, "poster": "https://aruppi.jeluchu.xyz/res/directory/3238.jpg", "type": "Anime", "genres": [ @@ -54884,7 +54884,7 @@ { "id": "gundam-build-divers-rerise-2nd-season", "title": "Gundam Build Divers Re:Rise 2nd Season", - "mal_title": "Gundam Build Divers Re:Rise 2nd Season", + "mal_id": 40942, "poster": "https://aruppi.jeluchu.xyz/res/directory/3239.jpg", "type": "OVA", "genres": [ @@ -54899,7 +54899,7 @@ { "id": "fugou-keiji-balanceunlimited", "title": "Fugou Keiji: Balance:Unlimited", - "mal_title": "Fugou Keiji: Balance:Unlimited", + "mal_id": 41120, "poster": "https://aruppi.jeluchu.xyz/res/directory/3240.jpg", "type": "Anime", "genres": [ @@ -54913,7 +54913,7 @@ { "id": "zashiki-warashi-no-tatamichan", "title": "Zashiki Warashi no Tatami-chan", - "mal_title": "Zashiki Warashi no Tatami-chan", + "mal_id": 41124, "poster": "https://aruppi.jeluchu.xyz/res/directory/3241.jpg", "type": "OVA", "genres": [ @@ -54929,7 +54929,7 @@ { "id": "appareranman", "title": "Appare-Ranman!", - "mal_title": "Appare-Ranman!", + "mal_id": 40532, "poster": "https://aruppi.jeluchu.xyz/res/directory/3242.jpg", "type": "Anime", "genres": [ @@ -54944,7 +54944,7 @@ { "id": "shokugeki-no-souma-gou-no-sara", "title": "Shokugeki no Souma: Gou no Sara", - "mal_title": "Shokugeki no Souma: Gou no Sara", + "mal_id": 40902, "poster": "https://aruppi.jeluchu.xyz/res/directory/3243.jpg", "type": "Anime", "genres": [ @@ -54960,7 +54960,7 @@ { "id": "kaguyasama-wa-kokurasetai-tensaitachi-no-renai-zunousen-2nd-season", "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", - "mal_title": "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "mal_id": 40591, "poster": "https://aruppi.jeluchu.xyz/res/directory/3244.jpg", "type": "Anime", "genres": [ @@ -54978,7 +54978,7 @@ { "id": "kitsutsuki-tanteidokoro", "title": "Kitsutsuki Tanteidokoro", - "mal_title": "Kitsutsuki Tanteidokoro", + "mal_id": 39582, "poster": "https://aruppi.jeluchu.xyz/res/directory/3245.jpg", "type": "Anime", "genres": [ @@ -54993,7 +54993,7 @@ { "id": "tenki-no-ko", "title": "Tenki no Ko", - "mal_title": "Tenki no Ko", + "mal_id": 38826, "poster": "https://aruppi.jeluchu.xyz/res/directory/3246.jpg", "type": "Película", "genres": [ @@ -55010,7 +55010,7 @@ { "id": "baki-dai-reitaisaihen", "title": "BAKI: dai reitaisai-hen", - "mal_title": "Baki 2nd Season", + "mal_id": 39555, "poster": "https://aruppi.jeluchu.xyz/res/directory/3247.jpg", "type": "Anime", "genres": [ @@ -55026,7 +55026,7 @@ { "id": "enen-no-shouboutai-ni-no-shou", "title": "Enen no Shouboutai: Ni no Shou", - "mal_title": "Enen no Shouboutai: Ni no Shou", + "mal_id": 40956, "poster": "https://aruppi.jeluchu.xyz/res/directory/3248.jpg", "type": "Anime", "genres": [ @@ -55042,7 +55042,7 @@ { "id": "dokyuu-hentai-hxeros", "title": "Dokyuu Hentai HxEros", - "mal_title": "Dokyuu Hentai HxEros", + "mal_id": 40623, "poster": "https://aruppi.jeluchu.xyz/res/directory/3249.jpg", "type": "Anime", "genres": [ @@ -55061,7 +55061,7 @@ { "id": "monster-musume-no-oishasan", "title": "Monster Musume no Oishasan", - "mal_title": "Monster Musume no Oishasan", + "mal_id": 40708, "poster": "https://aruppi.jeluchu.xyz/res/directory/3250.jpg", "type": "Anime", "genres": [ @@ -55078,7 +55078,7 @@ { "id": "maou-gakuin-no-futekigousha", "title": "Maou Gakuin no Futekigousha", - "mal_title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e", + "mal_id": 40496, "poster": "https://aruppi.jeluchu.xyz/res/directory/3251.jpg", "type": "Anime", "genres": [ @@ -55094,7 +55094,7 @@ { "id": "lapis-relights", "title": "Lapis Re:LiGHTs", - "mal_title": "Lapis Re:LiGHTs", + "mal_id": 37587, "poster": "https://aruppi.jeluchu.xyz/res/directory/3252.jpg", "type": "Anime", "genres": [ @@ -55108,7 +55108,7 @@ { "id": "muhyo-to-rouji-no-mahouritsu-soudan-jimusho-2nd-season", "title": "Muhyo to Rouji no Mahouritsu Soudan Jimusho 2nd Season", - "mal_title": "Muhyo to Rouji no Mahouritsu Soudan Jimusho 2nd Season", + "mal_id": 39948, "poster": "https://aruppi.jeluchu.xyz/res/directory/3253.jpg", "type": "Anime", "genres": [ @@ -55127,7 +55127,7 @@ { "id": "rezero-kara-hajimeru-isekai-seikatsu-2nd-season", "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", - "mal_title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "mal_id": 39587, "poster": "https://aruppi.jeluchu.xyz/res/directory/3254.jpg", "type": "Anime", "genres": [ @@ -55143,7 +55143,7 @@ { "id": "decadence", "title": "Deca-Dence", - "mal_title": "Deca-Dence", + "mal_id": 40056, "poster": "https://aruppi.jeluchu.xyz/res/directory/3255.jpg", "type": "Anime", "genres": [ @@ -55159,7 +55159,7 @@ { "id": "no-guns-life-2nd-season", "title": "No Guns Life 2nd Season", - "mal_title": "No Guns Life 2nd Season", + "mal_id": 40529, "poster": "https://aruppi.jeluchu.xyz/res/directory/3256.jpg", "type": "Anime", "genres": [ @@ -55176,7 +55176,7 @@ { "id": "uzakichan-wa-asobitai", "title": "Uzaki-chan wa Asobitai!", - "mal_title": "Uzaki-chan wa Asobitai!", + "mal_id": 41226, "poster": "https://aruppi.jeluchu.xyz/res/directory/3257.jpg", "type": "Anime", "genres": [ @@ -55192,7 +55192,7 @@ { "id": "yahari-ore-no-seishun-love-comedy-wa-machigatteiru-kan", "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", - "mal_title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "mal_id": 39547, "poster": "https://aruppi.jeluchu.xyz/res/directory/3258.jpg", "type": "Anime", "genres": [ @@ -55210,7 +55210,7 @@ { "id": "peter-grill-to-kenja-no-jikan", "title": "Peter Grill to Kenja no Jikan", - "mal_title": "Peter Grill to Kenja no Jikan", + "mal_id": 40436, "poster": "https://aruppi.jeluchu.xyz/res/directory/3259.jpg", "type": "Anime", "genres": [ @@ -55227,7 +55227,7 @@ { "id": "kanojo-okarishimasu", "title": "Kanojo, Okarishimasu", - "mal_title": "Kanojo, Okarishimasu", + "mal_id": 40839, "poster": "https://aruppi.jeluchu.xyz/res/directory/3260.jpg", "type": "Anime", "genres": [ @@ -55244,7 +55244,7 @@ { "id": "boku-no-hero-academia-the-movie-2-heroesrising", "title": "Boku no Hero Academia the Movie 2: Heroes:Rising", - "mal_title": "Boku no Hero Academia the Movie 2: Heroes:Rising", + "mal_id": 39565, "poster": "https://aruppi.jeluchu.xyz/res/directory/3261.jpg", "type": "Película", "genres": [ @@ -55262,7 +55262,7 @@ { "id": "umayon", "title": "Umayon\t", - "mal_title": "Umayon\t", + "mal_id": 38835, "poster": "https://aruppi.jeluchu.xyz/res/directory/3262.jpg", "type": "Anime", "genres": [ @@ -55278,7 +55278,7 @@ { "id": "gibiate", "title": "Gibiate", - "mal_title": "Gibiate", + "mal_id": 40074, "poster": "https://aruppi.jeluchu.xyz/res/directory/3263.jpg", "type": "Anime", "genres": [ @@ -55296,7 +55296,7 @@ { "id": "koi-to-producer-evollove", "title": "Koi to Producer: EVOL×LOVE", - "mal_title": "Koi to Producer: EVOL×LOVE", + "mal_id": 40075, "poster": "https://aruppi.jeluchu.xyz/res/directory/3264.jpg", "type": "Anime", "genres": [ @@ -55314,7 +55314,7 @@ { "id": "goblin-slayer-goblins-crown", "title": "Goblin Slayer: Goblin's Crown\t", - "mal_title": "Goblin Slayer: Goblin's Crown\t", + "mal_id": 39576, "poster": "https://aruppi.jeluchu.xyz/res/directory/3265.jpg", "type": "Película", "genres": [ @@ -55330,7 +55330,7 @@ { "id": "hakubo", "title": "Hakubo", - "mal_title": "Hakubo", + "mal_id": 34972, "poster": "https://aruppi.jeluchu.xyz/res/directory/3266.jpg", "type": "Película", "genres": [ @@ -55344,7 +55344,7 @@ { "id": "boku-no-hero-academia-ikinokore-kesshi-no-survival-kunren", "title": "Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren", - "mal_title": "Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren", + "mal_id": 42603, "poster": "https://aruppi.jeluchu.xyz/res/directory/3267.jpg", "type": "OVA", "genres": [ @@ -55361,11 +55361,9 @@ { "id": "the-god-of-high-school", "title": "The God of High School", - "mal_title": "The God of High School", + "mal_id": 41353, "poster": "https://aruppi.jeluchu.xyz/res/directory/3268.jpg", "type": "Anime", - "score": "4.6", - "jkanime": true, "genres": [ "Acción", "Aventura", @@ -55375,27 +55373,29 @@ "Sobrenatural" ], "state": "En emision", + "score": "4.6", + "jkanime": true, "description": "Jin Mori se ha autoproclamado como el estudiante de preparatoria más fuerte del mundo, pero su vida cambia por completo cuando lo invitan a participar en el \"God of High School\", un torneo en el que se decidirá el estudiante más fuerte de todos. Para convencerlo para participar le dicen que si gana podrá pedir cualquier deseo... Todos los participantes son fuertes contrincantes dispuestos a todo para ganar y cumplir sus deseos." }, { "id": "bna", "title": "BNA", - "mal_title": "BNA", + "mal_id": 40060, "poster": "https://aruppi.jeluchu.xyz/res/directory/3269.jpg", "type": "Anime", - "score": "4.7", - "jkanime": true, "genres": [ "Acción", "Fantasía" ], "state": "Finalizado", + "score": "4.7", + "jkanime": true, "description": "BNA se desarrolla en un siglo XXI en el que la existencia de animales humanoides se ha revelado al mundo después de vivir en la oscuridad durante siglos. Un día, un estudiante de secundaria llamado Michiru de repente se convierte en una persona tanuki. Después de vivir en Anima City, donde conoce al lobo Ogami Shiro, continúa investigando por qué se convirtió en un animal y se mezcla en eventos aún más extraños en el proceso." }, { "id": "olympia-kyklos", "title": "Olympia Kyklos", - "mal_title": "Bessatsu Olympia Kyklos", + "mal_id": 41266, "poster": "https://aruppi.jeluchu.xyz/res/directory/3270.jpg", "type": "Anime", "score": "4.3", @@ -55412,26 +55412,24 @@ { "id": "kyojinzoku-no-hanayome", "title": "Kyojinzoku no Hanayome", - "mal_title": "Kyojinzoku no Hanayome", + "mal_id": 41466, "poster": "https://aruppi.jeluchu.xyz/res/directory/3271.jpg", "type": "Anime", - "score": "3.6", - "jkanime": true, "genres": [ "Fantasía", "Shounen" ], "state": "En emision", + "score": "3.6", + "jkanime": true, "description": "Kōichi, un jugador del equipo de baloncesto de su instituto, es llevado a otro mundo mientras se “estaba tocando la zambomba”. Allí, llega a un reino de gigantes, y el primer príncipe del reino le pide que sea su novia y que tenga su hijo" }, { "id": "kami-no-tou", "title": "Kami no Tou", - "mal_title": "Kami no Tou", + "mal_id": 40221, "poster": "https://aruppi.jeluchu.xyz/res/directory/3271.jpg", "type": "Anime", - "score": "4.7", - "jkanime": true, "genres": [ "Fantasía", "Drama", @@ -55440,16 +55438,16 @@ "Acción" ], "state": "Finalizado", + "score": "4.7", + "jkanime": true, "description": "Tower of God se centra en un niño llamado Twenty-Fifth Bam, que ha pasado la mayor parte de su vida atrapado debajo de una enorme y misteriosa Torre, con solo su amiga intima, Rachel, para hacerle compañía. Cuando Rachel entra en la Torre, Bam se las arregla para abrir la puerta y enfrenta desafios en cada piso de esta torre mientras trata de encontrar a su compañero más cercano." }, { "id": "yugioh-sevens", "title": "Yu☆Gi☆Oh!: Sevens", - "mal_title": "Yu☆Gi☆Oh!: Sevens", + "mal_id": 40145, "poster": "https://aruppi.jeluchu.xyz/res/directory/3272.jpg", "type": "Anime", - "score": "3.5", - "jkanime": true, "genres": [ "Shounen", "Juegos", @@ -55457,86 +55455,86 @@ "Acción" ], "state": "Finalizado", + "score": "3.5", + "jkanime": true, "description": "Una nueva serie de anime de televisión para el 20 aniversario de la franquicia de anime." }, { "id": "ninja-collection", "title": "Ninja Collection", - "mal_title": "Ninja Collection", + "mal_id": 42260, "poster": "https://aruppi.jeluchu.xyz/res/directory/3273.jpg", "type": "Anime", - "score": "2.7", - "jkanime": true, "genres": [ "Sobrenatural" ], "state": "Finalizado", + "score": "2.7", + "jkanime": true, "description": "Tokio, una ciudad repleta de sueños y deseos. Un antiguo clan de ninjas sigue en activo hoy en día, y tras heredad ancestrales técnicas, se dedican a cumplir sus misiones alejados de las miradas de la gente. Fusionándose con la oscuridad de la ciudad, acaban con todo tipo de criaturas inhumanas... La gente los llama Tokeshu" }, { "id": "rebirth", "title": "Rebirth", - "mal_title": "Rebirth", + "mal_id": 40129, "poster": "https://aruppi.jeluchu.xyz/res/directory/3274.jpg", "type": "Anime", - "score": "3.3", - "jkanime": true, "genres": [ "Juegos" ], "state": "Finalizado", + "score": "3.3", + "jkanime": true, "description": "Rebirth cortos de 4 minutos" }, { "id": "great-pretender", "title": "Great Pretender", - "mal_title": "Great Pretender", + "mal_id": 40052, "poster": "https://aruppi.jeluchu.xyz/res/directory/3275.jpg", "type": "Anime", - "score": "4.5", - "jkanime": true, "genres": [ "Juegos" ], "state": "Finalizado", + "score": "4.5", + "jkanime": true, "description": "Edamura Masato es supuestamenteEdamura Masato es supuestamente el mejor estafador de Japon. Junto con su compañero Kudo, intentan engañar a un francés en Asakusa, pero inesperadamente son engañados. El frances, a quien intentaron estafar, resulta ser Laurent Thierry, un \"hombre de confianza\" de mucho más alto nivel que controla la mafia. ¡Edamura aan no ha descubierto qué destino le espera, despues de haberse comprometido en los trabajos sucios del frances ...!" }, { "id": "another-world", "title": "Another World", - "mal_title": "Another World", + "mal_id": 40295, "poster": "https://aruppi.jeluchu.xyz/res/directory/3276.jpg", "type": "ONA", - "score": "4.2", - "jkanime": true, "genres": [ "Sci-fi" ], "state": "Finalizado", + "score": "4.2", + "jkanime": true, "description": "Spin-off de la pelicula dividida en 3 partes" }, { "id": "hello-world", "title": "Hello World", - "mal_title": "Hello World", + "mal_id": 38816, "poster": "https://aruppi.jeluchu.xyz/res/directory/3277.jpg", "type": "Película", - "score": "4.3", - "jkanime": true, "genres": [ "Sci-fi" ], "state": "Finalizado", + "score": "4.3", + "jkanime": true, "description": "El año es 2027, y la ciudad de Kyoto ha experimentado un tremendo avance tecnológico. Dentro de la ciudad vive Naomi Katagaki, un niño socialmente torpe e introvertido que ama los libros, y Ruri Ichigyou, una niña con una personalidad fría que a menudo es contundente con la gente, pero comparte su amor por la lectura. A pesar de tener intereses similares, Naomi teme acercarse a Ruri debido a su naturaleza hostil." }, { "id": "devilman-lady", "title": "Devilman Lady", - "mal_title": "Devilman Lady", + "mal_id": 1629, "poster": "https://aruppi.jeluchu.xyz/res/directory/3278.jpg", "type": "Anime", - "score": "3.8", - "jkanime": true, "genres": [ "Acción", "Drama", @@ -55544,32 +55542,32 @@ "Psicológico" ], "state": "Finalizado", + "score": "3.8", + "jkanime": true, "description": "La historia se centra en Jun Fudo, una maestra que es atacada por los demonios mientras acompañaba a un grupo de estudiantes en un viaje escolar. En medio del asalto, junio se transforma en Devil Lady y defiende a los sobrevivientes del ataque inicial, matando a los demonios con su recien adquirida fuerza. Jun, ahora la Devilman Lady, lucha por el bien de la humanidad para protegerlos de las bestias del diablo y sus creaciones." }, { "id": "ore-wo-suki-nano-wa-omae-dake-ka-yo-oretachi-no-game-set", "title": "Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set", - "mal_title": "Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set", + "mal_id": 40936, "poster": "https://aruppi.jeluchu.xyz/res/directory/3279.jpg", "type": "OVA", - "score": "4.8", - "jkanime": false, "genres": [ "Comedia", "Escolares", "Romance" ], "state": "Finalizado", + "score": "4.8", + "jkanime": false, "description": "La historia se centra en Amatsuyu “Joro” Kisaragi, un chico ordinario de preparatoria que es invitado por dos hermosas chicas a hablar a solas: la primera es su senpai, Sakura “Cosmos” Akino, y la segunda es su amiga de la infancia Aoi “Himawari” Hinata. Esperando que ambas va a confesarle su amor, Joro triunfante asiste a verlas solo para que ellas le confiesen que están enamoradas de su mejor amigo, Taiyou “Sun-chan” Ouga. Joro a regañadientes acepta ayudarlas a atraer su atención, con la esperanza de aprovechar la situación cuando una de las dos pierda, no obstante, la chica ratón de biblioteca Sumireko “Pansy” Sanshokuin se le confiesa, y resulta que su mejor amigo Sun-chan en realidad solo está interesado en ella. ¡Vaya lío!" }, { "id": "jewelpet-twinkle", "title": "Jewelpet Twinkle☆", - "mal_title": "Jewelpet Twinkle☆", + "mal_id": 8217, "poster": "https://aruppi.jeluchu.xyz/res/directory/3280.jpg", "type": "Anime", - "score": "4.8", - "jkanime": true, "genres": [ "Shoujo", "Colegial", @@ -55577,16 +55575,16 @@ "Fantasia" ], "state": "Finalizado", + "score": "4.8", + "jkanime": true, "description": "En Jewel Land, Jewelpets, criaturas que tienen la habilidad natural de usar la magia vivían en armonia con las Brujas, asistiendo a la Escuela de Magia y Hechicería para aprender a usar la magia con sus Jewel Eyes. Sin embargo, Ruby, una liebre japonesa blanca cuya magia a veces falla. Pero cuando usó la tarjeta que le dieron los magos, fue enviada al mundo Humano por accidente. En el mundo humano, una chica llamada Akari Sakura la encontró en la playa de camino a la escuela. Al principio, Akari no puede entenderla debido a su idioma de la tierra de las joyas hasta que Ruby tomo un caramelo especial para poder hablar y comprender el lenguaje humano." }, { "id": "human-lost-ningen-shikkaku", "title": "Human Lost: Ningen Shikkaku", - "mal_title": "Human Lost: Ningen Shikkaku", + "mal_id": 39584, "poster": "https://aruppi.jeluchu.xyz/res/directory/3281.jpg", "type": "Película", - "score": "4.4", - "jkanime": true, "genres": [ "Drama", "Historico", @@ -55594,16 +55592,16 @@ "Seinen" ], "state": "Finalizado", + "score": "4.4", + "jkanime": true, "description": "Tokio, 2036 (año 111 de Showa): una revolucion en el tratamiento médico ha conquistado la muerte ...\nMediante nanomaquinas internas y el \"S.H.E.L.L.\" sistema cuya red los controla, los seres humanos no padecen enfermedades, no requieren tratamiento de lesiones y tienen garantizada una vida útil de 120 años, libre de enfermedades. Sin embargo, este consumado sistema social distorsiona a la nación japonesa de muchas maneras: disparidades económicas no resueltas, decadencia etica resultante de la inmortalidad, grave contaminacion ambiental y el fenomeno \"Human Lost\", en el que las personas mismas, desconectadas de S.H.E.L.L. red, se deforman. Japón se tambalea salvajemente entre dos futuros potenciales: la restauracion de la civilizacion o su destrucción." }, { "id": "higurashi-no-naku-koro-ni-2020", "title": "Higurashi no Naku Koro ni (2020)", - "mal_title": "Higurashi no Naku Koro ni (2020)", + "mal_id": 41006, "poster": "https://aruppi.jeluchu.xyz/res/directory/3282.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Demencia", "Misterio", @@ -55611,32 +55609,32 @@ "Sobrenatural" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "Un cálido día de verano en 1983, el estudiante transferido Maebara Keiichi llega a un pacífico pueblo rural en Hinamizawa. Allí, se hace amigo de sus compañeras de clase Rena, Mion, Rika y Satoko. Aceptado como un miembro oficial del “club”, Keiichi y la pandilla realizan diversas actividades como juegos de cartas y de mesa, así como a las escondidas. Pero justo cuando Keiichi comenzaba a acostumbrarse a la vida en el campo, se encuentra con la oscura historia detrás de Hinamizawa. Mientras Keiichi va desentrañando este oscuro misterio, descubrirá que sus nuevos amigos podrían no ser lo que aparentan." }, { "id": "assault-lily-bouquet", "title": "Assault Lily: Bouquet", - "mal_title": "Assault Lily: Bouquet", + "mal_id": 40550, "poster": "https://aruppi.jeluchu.xyz/res/directory/3283.jpg", "type": "Anime", - "score": "4.1", - "jkanime": false, "genres": [ "Acción", "Fantasía", "Magia" ], "state": "En Emisión", + "score": "4.1", + "jkanime": false, "description": "En la Tierra de un futuro cercano, la humanidad enfrenta la inminente aniquilación de parte de una criaturas gigantes misteriosas conocidos como “los Enormes”. El mundo entero se une para enfrentar esta amenaza, y desarrollan exitosamente el armamento conocido como “CHARMS” combinando ciencia y magia. Las “CHARMS” demuestran altas tasas de sincronía con portadores adolescentes, y las chicas que utilizan “CHARMS” son consideradas heroínas conocidas como “Liliums”. En todo el mundo, se establecen institutos “Garden” para entrenar adolescentes en el uso de “CHARMS” y enfrentar a los Enormes. Esta será una historia sobre chicas que buscan convertirse en la defensa de la humanidad." }, { "id": "100man-no-inochi-no-ue-ni-ore-wa-tatteiru", "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", - "mal_title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "mal_id": 41380, "poster": "https://aruppi.jeluchu.xyz/res/directory/3284.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Acción", "Fantasía", @@ -55644,16 +55642,16 @@ "Juegos" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "El estudiante de noveno grado, Yusuke Yotsuya, es un chico práctico, sin amigos y no es miembro de ningún club. Pero un día, él y dos compañeras de clase son transportados a otro mundo en el que deberán trabajar juntos para sobrevivir. Yotsuya es un “lobo solitario” y siempre ha vivido su vida satisfaciéndose a sí mismo, ¿pero cómo funcionará eso ahora que es un héroe? ¡Prepárate para una fantasía única que desafiará todo lo que crees saber sobre historias de otro mundo!" }, { "id": "dungeon-ni-deai-wo-motomeru-no-wa-machigatteiru-darou-ka-iii", "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", - "mal_title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "mal_id": 40454, "poster": "https://aruppi.jeluchu.xyz/res/directory/3285.jpg", "type": "Anime", - "score": "4.8", - "jkanime": false, "genres": [ "Acción", "Fantasía", @@ -55661,32 +55659,32 @@ "Comedia" ], "state": "En Emisión", + "score": "4.8", + "jkanime": false, "description": "La vida en la ciudad de Orario nunca es aburrida, especialmente para Bell Cranel, un joven ingenuo que espera convertirse en el mayor aventurero de la tierra. Después de un encuentro casual con la diosa, Hestia, sus sueños se vuelven un poco más cercanos a la realidad. Con su apoyo, Bell se embarca en una búsqueda fantástica en las catacumbas llenas de monstruos de la ciudad, conocidas como «Dungeon». La muerte acecha en cada esquina de las profundidades cavernosas de este aterrador laberinto. Incluso en la superficie, la supervivencia es un privilegio ganado con esfuerzo. De hecho, nada es seguro en un mundo donde los dioses y los humanos viven y trabajan juntos, especialmente cuando a menudo luchan por llevarse bien. Sin embargo, una cosa es segura: una cantidad de errores, triunfos y amistades esperan al protagonista intrépidamente optimista de este cuento hercúleo." }, { "id": "rail-romanesque", "title": "Rail Romanesque", - "mal_title": "Rail Romanesque", + "mal_id": 40958, "poster": "https://aruppi.jeluchu.xyz/res/directory/3286.jpg", "type": "Anime", - "score": "4.4", - "jkanime": false, "genres": [ "Ciencia Ficción", "Harem", "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.4", + "jkanime": false, "description": "Después de enterarse de la posible construcción de una fábrica a lo largo de un emblemático río de su pueblo natal de Ohitoyo, Migita Sotetsu regresa a casa para cambiar los ideales de aquellos responsables de esta propuesta. A pesar de que la mitad del pueblo apoya la construcción, la otra mitad teme a la posible contaminación del emblemático río. Reconociendo la disminución en la economía de Ohitoyo en las últimas décadas, Sotetsu cree que el pueblo necesita un sistema que le permita ser fiscalmente independiente en vez de depender de una fábrica para mejorar su economía, y desarrolla una estrategia para lograr este objetivo. Durante este tiempo, Sotetsu se encuentra con una entidad tipo androide llamada Hachiroku mientras hurgaba en las pertenencias desu difunto padre. Aunque poco animados, Hachiroku y Sotetsu entablan una conexión profunda e improbable, y a través de este vínculo, trabajarán juntos para restablecer la antigua gloria del pueblo." }, { "id": "jujutsu-kaisen-tv", "title": "Jujutsu Kaisen (TV)", - "mal_title": "Jujutsu Kaisen (TV)", + "mal_id": 40748, "poster": "https://aruppi.jeluchu.xyz/res/directory/3287.jpg", "type": "Anime", - "score": "4.9", - "jkanime": false, "genres": [ "Acción", "Demonios", @@ -55694,45 +55692,45 @@ "Shounen" ], "state": "En Emisión", + "score": "4.9", + "jkanime": false, "description": "Yuuji Itadori es un estudiante de instituto con unas habilidades físicas excepcionales. Todos los días, como rutina, va al hospital a visitar a su abuelo enfermo y decide apuntarse al club de ocultismo del instituto para no dar un palo al agua… Sin embargo, un buen día el sello del talismán que se hallaba escondido en su instituto se rompe, y comienzan a aparecer unos monstruos. Ante este giro de los acontecimientos, Itadori decide adentrarse en el instituto para salvar a sus compañeros. ¿Qué le deparará el destino?" }, { "id": "majo-no-tabitabi", "title": "Majo no Tabitabi", - "mal_title": "Majo no Tabitabi", + "mal_id": 40571, "poster": "https://aruppi.jeluchu.xyz/res/directory/3288.jpg", "type": "Anime", - "score": "4.7", - "jkanime": false, "genres": [ "Aventuras", "Fantasía" ], "state": "En Emisión", + "score": "4.7", + "jkanime": false, "description": "En cierto lugar existe una bruja viajera, de nombre Elaina. Siendo una viajera, ella ha conocido a muchas personas y países mientras continúa con su largo, largo camino. Una ciudad que solo acepta magos, un gigante amante de los músculos, un joven queriendo reencontrarse con su fallecida amada, una princesa abandonada en una destruida ciudad, y la historia de la bruja se entrelazará con todos ellos. Al encontrarse con personas increíblemente extrañas y hacer hermosos recuerdos juntos, ahora, incluso ahora, la bruja no puede evitar que toda su vida siga siendo de encuentros y despedidas." }, { "id": "hypnosis-mic-division-rap-battle-rhyme-anima", "title": "Hypnosis Mic: Division Rap Battle - Rhyme Anima", - "mal_title": "Hypnosis Mic: Division Rap Battle - Rhyme Anima", + "mal_id": 40803, "poster": "https://aruppi.jeluchu.xyz/res/directory/3289.jpg", "type": "Anime", - "score": "3.8", - "jkanime": false, "genres": [ "Música" ], "state": "En Emisión", + "score": "3.8", + "jkanime": false, "description": "En un mundo en donde las mujeres dominan el gobierno, la creación y el uso de armas está estrictamente prohibida. Sin embargo, de ninguna manera se ha puesto fin a los conflictos: en lugar de armas, las guerras se libran con palabras. Con el poder del “Hypnosis Mic”, las letras pueden afectar al oponente de varias formas y causar un daño real. Aquellos en las divisiones fuera del Barrio de Chuou lo utilizan para realizar feroces batallas de rap como arma por la constante búsqueda por expandir territorios." }, { "id": "kings-raid-ishi-wo-tsugumonotachi", "title": "King's Raid: Ishi wo Tsugumono-tachi", - "mal_title": "King's Raid: Ishi wo Tsugumono-tachi", + "mal_id": 41834, "poster": "https://aruppi.jeluchu.xyz/res/directory/3290.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Acción", "Aventuras", @@ -55740,16 +55738,16 @@ "Magia" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "En el juego, los jugadores sigue la historia de un caballero en entrenamiento que busca resolver el misterio detrás de la muerte de su hermano. En el camino se reencuentra con su amiga de la infancia y sacerdotisa Frey, a la maga Cleo y a su guardaespaldas Roy." }, { "id": "strike-witches-road-to-berlin", "title": "Strike Witches: Road to Berlin", - "mal_title": "Strike Witches: Road to Berlin", + "mal_id": 38005, "poster": "https://aruppi.jeluchu.xyz/res/directory/3291.jpg", "type": "Anime", - "score": "4.3", - "jkanime": false, "genres": [ "Acción", "Ecchi", @@ -55757,30 +55755,30 @@ "Sci-fi" ], "state": "En Emisión", + "score": "4.3", + "jkanime": false, "description": "Secuela de la serie anime Strike Wtiches 2" }, { "id": "date-a-bullet-dead-or-bullet", "title": "Date A Bullet: Dead or Bullet", - "mal_title": "Date A Bullet: Dead or Bullet", + "mal_id": 40416, "poster": "https://aruppi.jeluchu.xyz/res/directory/3292.jpg", "type": "Anime", - "score": "4.4", - "jkanime": true, "genres": [ "Sci-fi" ], "state": "Finalizado", + "score": "4.4", + "jkanime": true, "description": "Esta es la historia de Tokisaki Kurumi que no debería haber sido contada. La joven amnésica,que se despertó en el mundo vecino, se encuentra con Tokisaki Kurumi. Liderada por ella, el lugar al que llegó fue el aula de la escuela. Para matarse entre sí, las chicas conocidas como semi-espíritus se reunieron. Ahora bien." }, { "id": "burn-the-witch", "title": "Burn the Witch", - "mal_title": "Burn the Witch", + "mal_id": 41468, "poster": "https://aruppi.jeluchu.xyz/res/directory/3293.jpg", "type": "Anime", - "score": "4.4", - "jkanime": false, "genres": [ "Acción", "Fantasía", @@ -55788,47 +55786,47 @@ "Shounen" ], "state": "Finalizado", + "score": "4.4", + "jkanime": false, "description": "Históricamente, el 72% de las muertes de London tienen relación con los dragones, seres fantásticos que son invisibles para la gran mayoría de la población. Aunque la mayoría ni siquiera conoce a estos dragones, hay un grupo de personas que les planta cara. Solo los habitantes de Reverse London, aquellos que viven en el oculto reverso de la ciudad, pueden ver a los dragones. Y entre ellos, solo unos pocos tienen las habilidades necesarias para convertirse en brujas o hechiceros, quienes pueden entrar en contacto directo con dichos seres." }, { "id": "tonikaku-kawaii", "title": "Tonikaku Kawaii", - "mal_title": "Tonikaku Kawaii", + "mal_id": 41389, "poster": "https://aruppi.jeluchu.xyz/res/directory/3294.jpg", "type": "Anime", - "score": "4.6", - "jkanime": true, "genres": [ "Comedia", "Romance", "Shounen" ], "state": "En Emisión", + "score": "4.6", + "jkanime": true, "description": "Una comedia de vida matrimonial obra de Kenjiro Hata, autor de Hayate the Comat Butler y que ¡al fin da el salto al anime! Nasa Yuzaki se enamora a primera vista tras conocer a la misteriosa Tsukasa. Cuando Nasa reúne valor para declararle lo que siente, la respuesta de la chica le sorprende: Saldré contigo, pero solo si nos casamos. ¡La entrañable vida de casados de Nasa y Tsukasa está a punto de comenzar." }, { "id": "inu-to-neko-docchi-mo-katteru-to-mainichi-tanoshii", "title": "Inu to Neko Docchi mo Katteru to Mainichi Tanoshii", - "mal_title": "Inu to Neko Docchi mo Katteru to Mainichi Tanoshii", + "mal_id": 40833, "poster": "https://aruppi.jeluchu.xyz/res/directory/3295.jpg", "type": "Anime", - "score": "3.8", - "jkanime": true, "genres": [ "Comedia", "Cosas de la vida" ], "state": "En Emisión", + "score": "3.8", + "jkanime": true, "description": "Un perrito la mar de adorable y excesivamente insistente en serlo y un gato con una cara que da miedo pero que es encantador en el fondo. Vivir con ellos hace que la diversión no falte en el día a día, y su dueño vive situaciones entrañables y divertidas a partes iguales. ¿Eres una persona de perros o gatos? ¿O tal vez de ambos? Este anime es todo un regalo para aquellos amantes de los gatos y los perros que son incapaces de escoger entre unos y otros" }, { "id": "hanyou-no-yashahime-sengoku-otogizoushi", "title": "Hanyou no Yashahime: Sengoku Otogizoushi", - "mal_title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "mal_id": 41911, "poster": "https://aruppi.jeluchu.xyz/res/directory/3296.jpg", "type": "Anime", - "score": "4.0", - "jkanime": true, "genres": [ "Sobrenatural", "Magia", @@ -55836,16 +55834,16 @@ "Comedia" ], "state": "En Emisión", + "score": "4.0", + "jkanime": true, "description": "¡Las hijas de Sesshomaru e Inuyasha emprenden un viaje que trasciende el tiempo! En el Japón feudal, los gemelos Half-Demon Towa y Setsuna se separan durante un incendio forestal. Mientras busca desesperadamente a su hermana menor, Towa se adentra en un misterioso túnel que la envía al Japón actual, donde es encontrada y criada por el hermano de Kagome Higurashi, Souta, y su familia. Diez años después, el túnel que conecta las dos eras se ha reabierto, lo que permite a Towa reunirse con Setsuna, que ahora es un Demon Slayer que trabaja para Kohaku. Pero para sorpresa de Towa, Setsuna parece haber perdido todos los recuerdos de su hermana mayor." }, { "id": "dragon-quest-dai-no-daibouken-2020", "title": "Dragon Quest: Dai no Daibouken (2020)", - "mal_title": "Dragon Quest: Dai no Daibouken (2020)", + "mal_id": 40906, "poster": "https://aruppi.jeluchu.xyz/res/directory/3297.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Acción", "Aventuras", @@ -55853,32 +55851,32 @@ "Shounen" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "En la historia, después de haber derrotado al señor demonio Hadlar, todos los monstruos fueron liberados de su control maligno y se mudaron a la isla de Delmurin para vivir de forma pacífica. Dai es el único humano que vive ahí. Habiendo sido criado por el monstruo Brass, el sueño de Dai es convertirse en un héroe. Él ve la oportunidad de convertirse en uno cuando se entera que el señor demonio Hadlar ha resucitado y que el héroe anterior, Avan, ha venido para entrenar a Dai. Pero Hadlar anuncia que ahora sirve a un señor demonio mucho más poderoso que él, y está cazando a Avan. Para salvar a su estudiante, el héroe utiliza el hechizo del auto-sacrificio, pero no es capaz de derrotar a Hadlar. Acorralado y a punto de morir, la marca del héroe aparece en la frente de Dai y obtiene el poder para hacerle frente. ¿Podrá salvar al mundo ahora que se ha convertido en un héroe?" }, { "id": "love-live-nijigasaki-gakuen-school-idol-doukoukai", "title": "Love Live! Nijigasaki Gakuen School Idol Doukoukai", - "mal_title": "Love Live! Nijigasaki Gakuen School Idol Doukoukai", + "mal_id": 40879, "poster": "https://aruppi.jeluchu.xyz/res/directory/3298.jpg", "type": "Anime", - "score": "4.5", - "jkanime": false, "genres": [ "Escolares", "Música", "Rencuentros de la vida" ], "state": "En Emisión", + "score": "4.5", + "jkanime": false, "description": "La Academia Nijigasaki ubicada en Odaiba, Tokio, es popular por ser una escuela pública y a sus diversas especialidades. La historia se centra en las miembros del club de idols de la preparatoria Nijigasaki, y en sus esfuerzos para conseguir la aprobación y el éxito requerido para evitar que el club sea clausurado." }, { "id": "mahouka-koukou-no-rettousei-raihoushahen", "title": "Mahouka Koukou no Rettousei: Raihousha-hen", - "mal_title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "mal_id": 40497, "poster": "https://aruppi.jeluchu.xyz/res/directory/3299.jpg", "type": "Anime", - "score": "4.8", - "jkanime": false, "genres": [ "Acción", "Ciencia Ficción", @@ -55886,47 +55884,47 @@ "Magia" ], "state": "En Emisión", + "score": "4.8", + "jkanime": false, "description": "Segunda temporada de Mahouka Koukou no Rettousei" }, { "id": "iwa-kakeru-sport-climbing-girls", "title": "Iwa Kakeru!: Sport Climbing Girls", - "mal_title": "Iwa Kakeru!: Sport Climbing Girls", + "mal_id": 41783, "poster": "https://aruppi.jeluchu.xyz/res/directory/3300.jpg", "type": "Anime", - "score": "4.5", - "jkanime": false, "genres": [ "Comedia", "Deportes", "Escolares" ], "state": "En Emisión", + "score": "4.5", + "jkanime": false, "description": "Ambos mangas se centran en chicas que compiten en el deporte de la escalada, particularmente en muros artificiales, haciendo uso de su cuerpo y mente. La estudiante de primer año Konomi Kasahara descubrió este deporte en la Academia para Mujeres Hanamiya después de haber entrenado su mente en los juegos de puzzle durante la secundaria. Su vida cambió en el momento en que descubrió que sus habilidades podían ayudarla." }, { "id": "senyoku-no-sigrdrifa", "title": "Senyoku no Sigrdrifa", - "mal_title": "Senyoku no Sigrdrifa", + "mal_id": 41372, "poster": "https://aruppi.jeluchu.xyz/res/directory/3301.jpg", "type": "Anime", - "score": "4.4", - "jkanime": false, "genres": [ "Acción", "Militar" ], "state": "En Emisión", + "score": "4.4", + "jkanime": false, "description": "En esta historia los Pilares súbitamente aparecieron en la Tierra, amenazando a todas las formas de vida. Un dios que se identificó como Odín apareció para auxiliar a la humanidad, que estaba al borde de la derrota. Para enfrentar a los Pilares, Odín declaró un contraataque al otorgar a la humanidad el poder de las doncellas de batalla “Valkyrie”. Varios años después, la batalla entre la humanidad y los Pilares continúa, con hombres que apoyan a las Valkyrie mientras se elevan a través de los cielos para salvar el mundo. Japón no es la excepción, con tres Valkyrie confrontando a un Pilar que se cierne sobre el Monte Fuji. Cada Valkyrie es bastante hábil, pero también tienen sus problemas. Y ahora, una piloto ha llegado desde Europa." }, { "id": "munou-na-nana", "title": "Munou na Nana", - "mal_title": "Munou na Nana", + "mal_id": 41619, "poster": "https://aruppi.jeluchu.xyz/res/directory/3302.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Psicológico", "Shounen", @@ -55934,32 +55932,32 @@ "Suspense" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "Es el año 20XX. La Tierra fue asediada por monstruos autodeclarados como “enemigos de la humanidad”. Para afrontar esta amenaza, se establecieron escuelas especiales que entrenan adolescentes con extraordinarias habilidades. Estas personas, quienes son conocidas como “Talentosos”, poseen habilidades que desafían las leyes de la realidad y, entre ellos, se encuentra un caso atípico, un individuo que fue enviado a una de esas escuelas pero que no posee ninguna habilidad especial. Así comienza la historia de nuestra protagonista quien, en vez de utilizar la fuerza bruta, utilizará su inteligencia y su habilidad de manipulación para derrotar a sus enemigos." }, { "id": "kamitachi-ni-hirowareta-otoko", "title": "Kami-tachi ni Hirowareta Otoko", - "mal_title": "Kami-tachi ni Hirowareta Otoko", + "mal_id": 41312, "poster": "https://aruppi.jeluchu.xyz/res/directory/3303.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Aventuras", "Fantasía", "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "¡Bajo la protección de los dioses, su relajada vida con los slimes comienza! Un día, la vida de un hombre japonés de mediana edad llamado Ryoma Takebayashi llega a un espontáneo y decepcionante final. Ryoma nunca fue agraciado en su vida, pero después de la muerte, tres dioses solicitaron su cooperación y lo reencarnaron como un chico en un mundo de espadas y magia. Recibiendo una cordial y divina bienvenida por los propios dioses, Ryoma decide vivir de forma relajada en el bosque por el momento. Trabajando diligentemente en cazar y aprender magia, su mayor pasión se vuelve… ¿entrenar slimes?" }, { "id": "golden-kamuy-3rd-season", "title": "Golden Kamuy 3rd Season", - "mal_title": "Golden Kamuy 3rd Season", + "mal_id": 40059, "poster": "https://aruppi.jeluchu.xyz/res/directory/3304.jpg", "type": "Anime", - "score": "4.3", - "jkanime": false, "genres": [ "Acción", "Aventuras", @@ -55967,193 +55965,193 @@ "Seinen" ], "state": "En Emisión", + "score": "4.3", + "jkanime": false, "description": "A principios del siglo XX, el veterano de la Guerra Ruso-Japonesa Saichi Sugimoto, apodado “El Inmortal”, se encuentra participando en la “Fiebre del Oro” de la posguerra. Resulta que se encuentra parte de un mapa que lo podría dirigir a la mítica fortuna de oro de la tribu Ainu oculta desde hace tiempo, por lo que se embarca en su búsqueda. ¡Pero por supuesto que Sugimoto no es el único buscando dicho tesoro! ¡Y todos matarían por cualquier pista que los lleve a ello! Frente a las duras condiciones del crudo clima frío, criminales despiadas y soldados japoneses corruptos, Sugimoto deberá emplear todas sus habilidades y su suerte para sobrevivir, con ayuda de una niña de la tribu Ainu llamada Asirpa." }, { "id": "one-room-third-season", "title": "One Room Third Season", - "mal_title": "One Room Third Season", + "mal_id": 41364, "poster": "https://aruppi.jeluchu.xyz/res/directory/3305.jpg", "type": "Anime", - "score": "4.4", - "jkanime": false, "genres": [ "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.4", + "jkanime": false, "description": "Tú eres el protagonista. Un nuevo proyecto nacido de las manos de SMIRAL Animation y que presenta nuevas historias que se desarrollan en tu habitación… No, no es esa clase de anime que estás pensando… La historia narra la vida diaria de un joven y su relación con cinco chicas diferentes, sin embargo, Yui Hanasaka es una chica que ha perdurado en las tres temporadas de este proyecto original." }, { "id": "yuukoku-no-moriarty", "title": "Yuukoku no Moriarty", - "mal_title": "Yuukoku no Moriarty", + "mal_id": 40911, "poster": "https://aruppi.jeluchu.xyz/res/directory/3306.jpg", "type": "Anime", - "score": "4.2", - "jkanime": false, "genres": [ "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.2", + "jkanime": false, "description": "A finales del siglo XIX, el Imperio Británico se convirtió en una potencia mundial. Debido a la estricta estratificación de clases, el ciudadano medio tiene pocas posibilidades de llegar a la cima, donde la despreciable nobleza gobierna sobre todos ellos.\n\nWilliam James Moriarty, el segundo hijo de la familia Moriarty, es un joven profesor de matemáticas que ha demostrado una gran astucia e intelecto desde que era niño. Junto con sus hermanos Albert y Louis, vive la vida sencilla de un noble. Fuera de la escuela, William es un conocido consultor privado dispuesto a resolver los problemas de cualquier persona que lo necesite. Sin embargo, su comportamiento amable contradice su posición como líder de un grupo dispuesto a causar estragos en la búsqueda de su deseo: un mundo nuevo construido a partir de las cenizas del viejo." }, { "id": "d4dj-first-mix", "title": "D4DJ First Mix", - "mal_title": "D4DJ: First Mix", + "mal_id": 39681, "poster": "https://aruppi.jeluchu.xyz/res/directory/3307.jpg", "type": "Anime", - "score": "4.3", - "jkanime": false, "genres": [ "Música" ], "state": "En Emisión", + "score": "4.3", + "jkanime": false, "description": "Nunca olvidaremos ese momento. Rinku Aimoto tiene el hábito de pasarse el tiempo diciendo “Happy Around!” cada vez que se siente feliz. Después de regresar a Japón, se ha transferido a la Academia Yoba, en donde las actividades de DJ están bastante activas.\nQuedando impresionada antes las actividades de DJ, decide afiliarse con las chicas" }, { "id": "dogeza-de-tanondemita", "title": "Dogeza de Tanondemita", - "mal_title": "Dogeza de Tanondemita", + "mal_id": 42571, "poster": "https://aruppi.jeluchu.xyz/res/directory/3308.jpg", "type": "Anime", - "score": "4.5", - "jkanime": false, "genres": [ "Comedia", "Fantasía" ], "state": "En Emisión", + "score": "4.5", + "jkanime": false, "description": "En el caso de las mujeres a las que les cuesta mucho decir que no, ¿aceptarán cualquier proposición, aunque sea indecente, si se les pide en dogeza? Suwaru Doge, es un hombre que suele pedir en posición a dogeza a las chicas que le muestren sus bragas, ¡y hasta la fecha nunca ha fallado! ¿Cuántas chicas más se expondrán ante él por verlo" }, { "id": "magatsu-wahrheit-zuerst", "title": "Magatsu Wahrheit: Zuerst", - "mal_title": "Magatsu Wahrheit: Zuerst", + "mal_id": 37599, "poster": "https://aruppi.jeluchu.xyz/res/directory/3309.jpg", "type": "Anime", - "score": "4.4", - "jkanime": false, "genres": [ "Acción", "Fantasía", "Magia" ], "state": "En Emisión", + "score": "4.4", + "jkanime": false, "description": "La historia se centrará en dos jóvenes que viven y trabajan en el Imperio Wahrheit: Inumael, un joven empleado de una agencia de transportes, y Leocadio, un soldado inexperto que trabaja en el ejército imperial. Inumael está preocupado por cuidar de su hermana, mientras que Leocadio sueña con alcanzar el éxito en su profesión." }, { "id": "osomatsusan-3rd-season", "title": "Osomatsu-san 3rd Season", - "mal_title": "Osomatsu-san 3rd Season", + "mal_id": 42391, "poster": "https://aruppi.jeluchu.xyz/res/directory/3310.jpg", "type": "Anime", - "score": "3.3", - "jkanime": false, "genres": [ "Comedia", "Parodia" ], "state": "En Emisión", + "score": "3.3", + "jkanime": false, "description": "Tercera Temporada" }, { "id": "a3-season-autumn-winter", "title": "A3! Season Autumn & Winter", - "mal_title": "A3! Season Autumn & Winter", + "mal_id": 40272, "poster": "https://aruppi.jeluchu.xyz/res/directory/3311.jpg", "type": "Anime", - "score": "3.9", - "jkanime": false, "genres": [ "Drama", "Recuentos de la vida" ], "state": "En Emisión", + "score": "3.9", + "jkanime": false, "description": "La protagonista es una actriz retirada que, en un giro de eventos, se convierte en la directora de una compañía teatral en picada. Será su misión salvar la Compañía Mankai y devolverla a su antigua gloria consiguiendo actores que logren apantallar al público.\\nPero hay un problema, ¡solo cuenta con un año y una presentación en cada esta" }, { "id": "ochikobore-fruit-tart", "title": "Ochikobore Fruit Tart", - "mal_title": "Ochikobore Fruit Tart", + "mal_id": 39609, "poster": "https://aruppi.jeluchu.xyz/res/directory/3312.jpg", "type": "Anime", - "score": "4.0", - "jkanime": false, "genres": [ "Música", "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.0", + "jkanime": false, "description": "Ino Sakura parte a Tokio persiguiendo su sueño de ser idol. Allí formará equipo con sus compañeras de la Residencia Nezumi (Ratón), donde se aloja: una antigua niña actriz poco popular llamada Roko, la música Hayu y la modelo Nina. Juntas serán Fruit Tart, un grupo de idols que intentarán entrar en la industria del entretenimiento a la vez" }, { "id": "maesetsu", "title": "Maesetsu!", - "mal_title": "Maesetsu!", + "mal_id": 40085, "poster": "https://aruppi.jeluchu.xyz/res/directory/3313.jpg", "type": "Anime", - "score": "3.5", - "jkanime": false, "genres": [ "Comedia", "Recuentos de la vida" ], "state": "En Emisión", + "score": "3.5", + "jkanime": false, "description": "La historia se centra en cuatro chicas en el mayor auge de su juventud, trabajando muy duro para lograr sus sueños mientras luchan valientemente. En la industria del entretenimiento japonés, “Maesetsu!” es una expresión introductoria de un intérprete hacia una audiencia antes de una emisión televisiva, usualmente realizada por los asistentes" }, { "id": "taisou-zamurai", "title": "Taisou Zamurai", - "mal_title": "Taisou Zamurai", + "mal_id": 42668, "poster": "https://aruppi.jeluchu.xyz/res/directory/3314.jpg", "type": "Anime", - "score": "4.0", - "jkanime": false, "genres": [ "Deportes" ], "state": "En Emisión", + "score": "4.0", + "jkanime": false, "description": "La historia se desarrolla en el año 2002 y se centra en el alguna vez imbatible equipo de gimnasia masculino de Japón. Shoutarou Aragaki, el ex-miembro del equipo japonés que dedicó su vida a la gimnasia, ya no puede competir con sus expectativas. A pesar de que sigue entrenando sin descanso día a día" }, { "id": "kamisama-ni-natta-hi", "title": "Kamisama ni Natta Hi", - "mal_title": "Kamisama ni Natta Hi", + "mal_id": 41930, "poster": "https://aruppi.jeluchu.xyz/res/directory/3315.jpg", "type": "Anime", - "score": "4.4", - "jkanime": false, "genres": [ "Drama", "Fantasía" ], "state": "En Emisión", + "score": "4.4", + "jkanime": false, "description": "Un día durante las últimas vacaciones de verano de Youta Narukami en preparatoria, una chica llamada Hina apareció ante él y se autoproclamó “la Diosa del Conocimiento”. Hina le anunció al confundido Youta que el mundo llegará a su final en solo 30 días.\\nYouta entonces es testigo de los poderes de Hina sobre prever el futuro" }, { "id": "gochuumon-wa-usagi-desu-ka-bloom", "title": "Gochuumon wa Usagi Desu ka? Bloom", - "mal_title": "Gochuumon wa Usagi Desu ka? Bloom", + "mal_id": 38337, "poster": "https://aruppi.jeluchu.xyz/res/directory/3316.jpg", "type": "Anime", - "score": "4.6", - "jkanime": false, "genres": [ "Comedia", "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.6", + "jkanime": false, "description": "Cocoa Hoto ingresa al café Rabbit House asumiendo que dentro hay conejos con los que podrán convivir. Lo que Cocoa descubre es que es en realidad el dormitorio de su preparatoria, manejado por la hija del propietario, Chino Kafuu, una pequeña y tímida chica que lleva un conejo de angora en su cabeza.\\nCocoa rápidamente se hace amiga de Chino" }, { "id": "adachi-to-shimamura", "title": "Adachi to Shimamura", - "mal_title": "Adachi to Shimamura", + "mal_id": 39790, "poster": "https://aruppi.jeluchu.xyz/res/directory/3317.jpg", "type": "Anime", - "score": "4.7", - "jkanime": false, "genres": [ "Escolares", "Yuri", @@ -56161,46 +56159,46 @@ "Recuentos de la vida" ], "state": "En Emisión", + "score": "4.7", + "jkanime": false, "description": "Adachi y Shimamura, dos chicas que asisten a la misma preparatoria y que son amigas inseparables. Ya sea jugando tenis, platicar sobre sus programas de televisión favoritos, o solo relajándose, siempre están juntas. Cuando Adachi se da cuenta de que siente una atracción física por Shimamura, toda su relación comenzará a cambiar" }, { "id": "guraburu", "title": "Guraburu!", - "mal_title": "Guraburu!", + "mal_id": 41574, "poster": "https://aruppi.jeluchu.xyz/res/directory/3318.jpg", "type": "Anime", - "score": "4.1", - "jkanime": false, "genres": [ "Aventura", "Fantasía" ], "state": "En Emisión", + "score": "4.1", + "jkanime": false, "description": "Este es un mundo en los cielos, en donde muchas islas flotan en él. Un chico llamado Gran y un lagarto alado parlante llamado Vyns viven en Zinkenstill, una isla llena de misterios. Un día, se encuentran con una chica llamada Lyria. Ella ha escapado del Imperio Erste, un gobierno militar que intenta dominar al mundo con un poderoso ejército" }, { "id": "akudama-drive", "title": "Akudama Drive", - "mal_title": "Akudama Drive", + "mal_id": 41433, "poster": "https://aruppi.jeluchu.xyz/res/directory/3319.jpg", "type": "Anime", - "score": "4.2", - "jkanime": false, "genres": [ "Acción", "Ciencia-Ficción" ], "state": "En Emisión", + "score": "4.2", + "jkanime": false, "description": "En esta historia, hace mucho tiempo las regiones de Kanto y Kansai tuvieron una guerra que dividió el mundo. Pero al final de la guerra, Kansai perdió y juró lealtad a Kanto. No obstante, el gobierno y la fuerza policial de Kansai no aceptaron la derrota, por lo que el crimen dominó la región." }, { "id": "kimi-to-boku-no-saigo-no-senjou-aruiwa-sekai-ga-hajimaru-seisen", "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", - "mal_title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "mal_id": 40595, "poster": "https://aruppi.jeluchu.xyz/res/directory/3320.jpg", "type": "Anime", - "score": "4.0", - "jkanime": false, "genres": [ "Acción", "Militar", @@ -56208,48 +56206,48 @@ "Fantasía" ], "state": "En Emisión", + "score": "4.0", + "jkanime": false, "description": "El Imperio, dotado de un nivel avanzado de conocimiento, y la Agencia de la Casa Imperial de Nebulis temida como el «País de las Brujas», mantienen una lucha que dura en el tiempo. En el campo de batalla un chico y una chica se conocen. El espadachín que se convirtió en la fuerza definitiva en el campo de batalla" }, { "id": "kuma-kuma-kuma-bear", "title": "Kuma Kuma Kuma Bear", - "mal_title": "Kuma Kuma Kuma Bear", + "mal_id": 40974, "poster": "https://aruppi.jeluchu.xyz/res/directory/3321.jpg", "type": "Anime", - "score": "4.0", - "jkanime": false, "genres": [ "Aventura", "Comedia", "Fantasía" ], "state": "En Emisión", + "score": "4.0", + "jkanime": false, "description": "Yuna, una chica de quince años, comienza a jugar su primer juego VRMMO. Ella ha conseguido miles de millones de yenes en acciones, y se confina en su casa para jugar sin ir a la escuela. Hoy, una actualización importante ha llegado al juego y ella obtiene un súper raro e intransferible traje de oso." }, { "id": "ikebukuro-west-gate-park", "title": "Ikebukuro West Gate Park", - "mal_title": "Ikebukuro West Gate Park", + "mal_id": 40359, "poster": "https://aruppi.jeluchu.xyz/res/directory/3322.jpg", "type": "Anime", - "score": "3.8", - "jkanime": false, "genres": [ "Drama", "Misterio", "Romance" ], "state": "En Emisión", + "score": "3.8", + "jkanime": false, "description": "La historia sigue al sereno Makoto mientras navega por la vida de constante pandillas dado que su amigo, King, es el líder de los G-Boys. Makoto ve la oportunidad de convertirse en un solucionador de problemas para la pandilla, como una forma de mantener la calma y proteger a sus amigos." }, { "id": "maoujou-de-oyasumi", "title": "Maoujou de Oyasumi", - "mal_title": "Maoujou de Oyasumi", + "mal_id": 40397, "poster": "https://aruppi.jeluchu.xyz/res/directory/3323.jpg", "type": "Anime", - "score": "4.5", - "jkanime": false, "genres": [ "Sobrenatural", "Shounen", @@ -56257,41 +56255,46 @@ "Fantasía" ], "state": "En Emisión", + "score": "4.5", + "jkanime": false, "description": "Shhh! La princesa Syalis está intentando dormir bien por la noche. Hace mucho tiempo, cuando las personas y los demonios coexistían, no en total armonía claro, un rey demonio secuestró a una princesa humana y la encerró en su castillo. Despojados, los súbditos de la princesa pensaban sin cesar en una solución" }, { "id": "toji-no-miko-kizamishi-issen-no-tomoshibi-ova", "title": "Toji no Miko: Kizamishi Issen no Tomoshibi OVA", - "mal_title": "Toji no Miko: Kizamishi Issen no Tomoshibi OVA", + "mal_id": 40901, "poster": "https://aruppi.jeluchu.xyz/res/directory/3324.jpg", "type": "Anime", - "score": "4.0", - "jkanime": true, "genres": [ "Acción", "Fantasía" ], "state": "En Emisión", + "score": "4.0", + "jkanime": true, "description": "Ovas de Katana Maiden" }, { "id": "noblesse", "title": "Noblesse", - "mal_title": "Noblesse", + "mal_id": 41345, "poster": "https://aruppi.jeluchu.xyz/res/directory/3325.jpg", "type": "Anime", - "score": "3.9", - "jkanime": true, "genres": [ "Acción", "Fantasía" ], "state": "En Emisión", + "score": "3.9", + "jkanime": true, "description": "Raizel despierta tras un letargo de 820 años. Ostenta el título de Noblesse, un Noble de pura sangre y protector del resto de Nobles. En un intento por proteger a Raizel, su sirviente Frankenstein se une a él en el Instituto Ye Ran, donde Raizel se acostumbra poco a poco a la rutina cotidiana del mundo humano junto a sus compañeros. Sin embargo, los humanos modificados de la Unión, una sociedad secreta que planea conquistar el mundo, entran poco a poco en la vida de Raizel y amenazan a sus seres queridos, obligándolo a usar su gran poder para protegerlos." }, { "id": "shingeki-no-kyojin-the-final-season", "title": "Shingeki no Kyojin: The Final Season", + "mal_id": 40028, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3326.jpg", + "type": "Anime", "genres": [ "militar", "super poderes", @@ -56301,17 +56304,17 @@ "misterio", "accion" ], - "description": "Con Eren y compañía ahora en la costa y la amenaza de Marley acechando, ¿que sigue para los Scouts y su búsqueda para desentrañar los misterios de los Titanes, la humanidad y mas?", "state": "En emisión", "score": "9.22", - "type": "Anime", "jkanime": false, - "poster": "https://aruppi.jeluchu.xyz/res/directory/3326.jpg", - "mal_title": "Shingeki no Kyojin: The Final Season" + "description": "Con Eren y compañía ahora en la costa y la amenaza de Marley acechando, ¿que sigue para los Scouts y su búsqueda para desentrañar los misterios de los Titanes, la humanidad y mas?" }, { "id": "kimetsu-no-yaiba-movie-mugen-ressha-hen", "title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "mal_id": 40456, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3327.jpg", + "type": "Película", "genres": [ "accion", "demonios", @@ -56319,17 +56322,17 @@ "shounen", "sobrenatural" ], - "description": "Tanjirou Kamado y sus amigos del Demon Slayer Corps acompañan a Kyoujurou Rengoku, el Flame Hashira, para investigar una misteriosa serie de desapariciones que ocurren dentro de un tren. Poco saben que Enmu, uno de los Doce Kizuki, también está a bordo y les ha preparado una trampa.", "state": "Finalizado", "score": "8.66", - "type": "Película", "jkanime": true, - "poster": "https://aruppi.jeluchu.xyz/res/directory/3327.jpg", - "mal_title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen" + "description": "Tanjirou Kamado y sus amigos del Demon Slayer Corps acompañan a Kyoujurou Rengoku, el Flame Hashira, para investigar una misteriosa serie de desapariciones que ocurren dentro de un tren. Poco saben que Enmu, uno de los Doce Kizuki, también está a bordo y les ha preparado una trampa." }, { "id": "dokyuu-hentai-hxeros-ova", "title": "Dokyuu Hentai HxEros OVA", + "mal_id": 42803, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3328.jpg", + "type": "OVA", "genres": [ "accion", "comedia", @@ -56338,127 +56341,127 @@ "shounen", "sobrenatural" ], - "description": "El primer episodio de video original seguirá a tres de las heroínas principales en una historia original.\n\nIncluido con los volúmenes 11 y 12 del manga Dokyuu Hentai HxEros.", "state": "Finalizado", - "type": "OVA", - "jkanime": true, "score": "6.18", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3328.jpg", - "mal_title": "Dokyuu Hentai HxEros OVA" + "jkanime": true, + "description": "El primer episodio de video original seguirá a tres de las heroínas principales en una historia original.\n\nIncluido con los volúmenes 11 y 12 del manga Dokyuu Hentai HxEros." }, { "id": "bem-movie-become-human", "title": "Bem Movie: Become Human", + "mal_id": 42129, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3329.jpg", + "type": "Película", "genres": [ "accion", "demonios", "terror", "sobrenatural" ], - "description": "Bem, Bela y Belo son aterradores monstruos humanoides (youkai) que luchan por la justicia. ... Los tres se encuentran excluidos tanto de los humanos como de otros youkai, pero continúan luchando con la esperanza de que algún día se conviertan en humanos.", "state": "Finalizado", - "type": "Película", - "jkanime": true, "score": "6.76", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3329.jpg", - "mal_title": "Bem Movie: Become Human" + "jkanime": true, + "description": "Bem, Bela y Belo son aterradores monstruos humanoides (youkai) que luchan por la justicia. ... Los tres se encuentran excluidos tanto de los humanos como de otros youkai, pero continúan luchando con la esperanza de que algún día se conviertan en humanos." }, { "id": "wave-surfing-yappe-tv", "title": "Wave!! Surfing Yappe!! (TV)", + "mal_id": 46118, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3330.jpg", + "type": "Anime", "genres": [ "deportes", "recuentos-de-la-vida" ], - "description": "La historia del proyecto se desarrolla en la ciudad de Ouarai, en la prefectura de Ibaraki, y se centra en Masaki Hinaoka, quien se hace amigo del estudiante de transferencia Shou Akitsuki antes de las vacaciones de verano, y termina enganchado al surf. A través de este deporte, Masaki conocerá nu...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "3.9", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3330.jpg", - "mal_title": "Wave!! Surfing Yappe!! (TV)" + "jkanime": false, + "description": "La historia del proyecto se desarrolla en la ciudad de Ouarai, en la prefectura de Ibaraki, y se centra en Masaki Hinaoka, quien se hace amigo del estudiante de transferencia Shou Akitsuki antes de las vacaciones de verano, y termina enganchado al surf. A través de este deporte, Masaki conocerá nu..." }, { "id": "shin-chuuka-ichiban-2nd-season", "title": "Shin Chuuka Ichiban! 2nd Season", + "mal_id": 40957, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3331.jpg", + "type": "Anime", "genres": [ "comedia", "shounen" ], - "description": "La serie está ambientada en un siglo 19 ficticio en China, donde los cocineros de toda china compiten en unas pruebas culinarias para medir sus habilidades, y siendo un cocinero maestro se le concede respeto y autoridad. La historia se centra en Liu Mao Xing, un joven cocinero de la provincia de Sz...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "2.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3331.jpg", - "mal_title": "Shin Chuuka Ichiban! 2nd Season" + "jkanime": false, + "description": "La serie está ambientada en un siglo 19 ficticio en China, donde los cocineros de toda china compiten en unas pruebas culinarias para medir sus habilidades, y siendo un cocinero maestro se le concede respeto y autoridad. La historia se centra en Liu Mao Xing, un joven cocinero de la provincia de Sz..." }, { "id": "idoly-pride", "title": "Idoly Pride", + "mal_id": 40842, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3332.jpg", + "type": "Anime", "genres": [ "musica" ], - "description": "Para convertirme en una idol derramé sangre, sudor y lágrimas. Incluso así, sigo adelante porque quiero brillar. Quiero ganármelo, convertirme en la número uno. Quiero sonreír, hacer mis sueños realidad. Quiero mirar atrás a un mar de gente, quiero ser reconocida y quiero encontrarlo. Quiero...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.2", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3332.jpg", - "mal_title": "Idoly Pride" + "jkanime": false, + "description": "Para convertirme en una idol derramé sangre, sudor y lágrimas. Incluso así, sigo adelante porque quiero brillar. Quiero ganármelo, convertirme en la número uno. Quiero sonreír, hacer mis sueños realidad. Quiero mirar atrás a un mar de gente, quiero ser reconocida y quiero encontrarlo. Quiero..." }, { "id": "mushoku-tensei-isekai-ittara-honki-dasu", "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "mal_id": 39535, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3333.jpg", + "type": "Anime", "genres": [ "drama", "fantasia", "magia" ], - "description": "Asesinado mientras salvaba unos estudiantes que serían atropellados por un camión, un NEET de 34 años reencarna en un nuevo mundo de magia bajo el nombre de Rudeus Greyrat, un recién nacido. Con conocimiento, experiencia y arrepentimientos de una vida pasada, Rudeus jura llevar una vida plena y ...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3333.jpg", - "mal_title": "Mushoku Tensei: Isekai Ittara Honki Dasu" + "jkanime": false, + "description": "Asesinado mientras salvaba unos estudiantes que serían atropellados por un camión, un NEET de 34 años reencarna en un nuevo mundo de magia bajo el nombre de Rudeus Greyrat, un recién nacido. Con conocimiento, experiencia y arrepentimientos de una vida pasada, Rudeus jura llevar una vida plena y ..." }, { "id": "non-non-biyori-nonstop", "title": "Non Non Biyori Nonstop", + "mal_id": 39808, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3334.jpg", + "type": "Anime", "genres": [ "comedia", "recuentos-de-la-vida", "seinen" ], - "description": "Tercera temporada", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3334.jpg", - "mal_title": "Non Non Biyori Nonstop" + "jkanime": false, + "description": "Tercera temporada" }, { "id": "exarm", "title": "Ex-Arm", + "mal_id": 38853, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3335.jpg", + "type": "Anime", "genres": [ "accion", "ecchi", "seinen", "sobrenatural" ], - "description": "2014: Akira Natsume parece tener una casi fobia a los dispositivos electrónicos a la vez que es muy bueno diagnosticándolos. Un día, decide cambiar para verse mejor y conseguir una novia tal como lo hizo su hermano mayor… Sin embargo, Akira muere repentinamente en un accidente.\n16 años desp...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "2.1", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3335.jpg", - "mal_title": "Ex-Arm" + "jkanime": false, + "description": "2014: Akira Natsume parece tener una casi fobia a los dispositivos electrónicos a la vez que es muy bueno diagnosticándolos. Un día, decide cambiar para verse mejor y conseguir una novia tal como lo hizo su hermano mayor… Sin embargo, Akira muere repentinamente en un accidente.\n16 años desp..." }, { "id": "kemono-jihen", "title": "Kemono Jihen", + "mal_id": 40908, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3336.jpg", + "type": "Anime", "genres": [ "accion", "demonios", @@ -56466,31 +56469,31 @@ "shounen", "sobrenatural" ], - "description": "Cuando una serie de cuerpos de animales que se pudren en una sola noche comienza a aparecer en un remoto pueblo de una montaña, Inugami, un detective de Tokio que se especializa en el ocultismo, comienza su investigación.\nMientras trabaja en el caso, se hace amigo de un chico que trabaja en el ...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.7", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3336.jpg", - "mal_title": "Kemono Jihen" + "jkanime": false, + "description": "Cuando una serie de cuerpos de animales que se pudren en una sola noche comienza a aparecer en un remoto pueblo de una montaña, Inugami, un detective de Tokio que se especializa en el ocultismo, comienza su investigación.\nMientras trabaja en el caso, se hace amigo de un chico que trabaja en el ..." }, { "id": "sk", "title": "SK∞", + "mal_id": 42923, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3337.jpg", + "type": "Anime", "genres": [ "deportes" ], - "description": "El anime se centra en Reki, una estudiante de segundo año de secundaria a quien le encanta andar en patineta. Un día, el se ve atrapado en “S”, una peligrosa carrera de patinetas sin reglas que se realiza en mina abandonada.\nLanga, quien ha regresado a Japón tras vivir algún tiempo en Ca...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.6", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3337.jpg", - "mal_title": "SK∞" + "jkanime": false, + "description": "El anime se centra en Reki, una estudiante de segundo año de secundaria a quien le encanta andar en patineta. Un día, el se ve atrapado en “S”, una peligrosa carrera de patinetas sin reglas que se realiza en mina abandonada.\nLanga, quien ha regresado a Japón tras vivir algún tiempo en Ca..." }, { "id": "horimiya", "title": "Horimiya", + "mal_id": 42897, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3338.jpg", + "type": "Anime", "genres": [ "comedia", "escolares", @@ -56498,17 +56501,17 @@ "romance", "shounen" ], - "description": "Aunque admirada en la escuela por su amabilidad y destreza académica, la estudiante de preparatoria Kyouko Hori ha estado escondiendo otro lado de ella. Con sus padres a menudo fuera de casa debido al trabajo, Hori tiene que cuidar de su hermano menor y hacer las tareas del hogar, sin tener tiempo ...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3338.jpg", - "mal_title": "Horimiya" + "jkanime": false, + "description": "Aunque admirada en la escuela por su amabilidad y destreza académica, la estudiante de preparatoria Kyouko Hori ha estado escondiendo otro lado de ella. Con sus padres a menudo fuera de casa debido al trabajo, Hori tiene que cuidar de su hermano menor y hacer las tareas del hogar, sin tener tiempo ..." }, { "id": "world-trigger-2nd-season", "title": "World Trigger 2nd Season", + "mal_id": 40907, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3339.jpg", + "type": "Anime", "genres": [ "accion", "ciencia-ficcion", @@ -56516,64 +56519,64 @@ "shounen", "sobrenatural" ], - "description": "Cuando la puerta a otro mundo de repente se abre en la Tierra, la ciudad de Mikado es invadida por extrañas criaturas conocidas como “Vecinos”, que son seres maliciosos con armamento tradicional. En respuesta a esta invasión, una organización conocida como la Agencia de Defensa Fronteriza ent...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3339.jpg", - "mal_title": "World Trigger 2nd Season" + "jkanime": false, + "description": "Cuando la puerta a otro mundo de repente se abre en la Tierra, la ciudad de Mikado es invadida por extrañas criaturas conocidas como “Vecinos”, que son seres maliciosos con armamento tradicional. En respuesta a esta invasión, una organización conocida como la Agencia de Defensa Fronteriza ent..." }, { "id": "kai-byoui-ramune", "title": "Kai Byoui Ramune", + "mal_id": 42822, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3340.jpg", + "type": "Anime", "genres": [ "psicologico", "shounen", "sobrenatural" ], - "description": "Mayonesa sale de mis ojos… Tus dedos se convierten en chiles… Si tienes alguna de esas tan extrañas enfermedades, ¡entonces acude con el especialista en enfermedades, el doctor Ramune! Descubre los misterios que habitan en tu cuerpo y en tus deseos más profundos. ¡La apertura de una fantasí...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.5", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3340.jpg", - "mal_title": "Kai Byoui Ramune" + "jkanime": false, + "description": "Mayonesa sale de mis ojos… Tus dedos se convierten en chiles… Si tienes alguna de esas tan extrañas enfermedades, ¡entonces acude con el especialista en enfermedades, el doctor Ramune! Descubre los misterios que habitan en tu cuerpo y en tus deseos más profundos. ¡La apertura de una fantasí..." }, { "id": "project-scard-praeter-no-kizu", "title": "Project Scard: Praeter no Kizu", + "mal_id": 42825, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3341.jpg", + "type": "Anime", "genres": [ "accion", "superpoderes" ], - "description": "La historia se desarrolla en el ficticio Barrio especial de Akatsuki en Tokio, un lugar donde no hay leyes. Para mantener el orden en dicho barrio, hay tres organizaciones: Helios, Artemis y la Oficina de Seguridad Pública, que emplean agentes conocidos como ‘Scard’. Estos agentes están marcad...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.1", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3341.jpg", - "mal_title": "Project Scard: Praeter no Kizu" + "jkanime": false, + "description": "La historia se desarrolla en el ficticio Barrio especial de Akatsuki en Tokio, un lugar donde no hay leyes. Para mantener el orden en dicho barrio, hay tres organizaciones: Helios, Artemis y la Oficina de Seguridad Pública, que emplean agentes conocidos como ‘Scard’. Estos agentes están marcad..." }, { "id": "back-arrow", "title": "Back Arrow", + "mal_id": 40964, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3342.jpg", + "type": "Anime", "genres": [ "accion", "fantasia", "mecha" ], - "description": "Lingalind es un lugar rodeado por un muro que protege y ayuda a dar prosperidad a esas tierras. El muro es la base sobre la que prospera Lingalind, casi como su dios.\nUn día aparece un misterioso hombre llamado Back Arrow en Edger, un pueblo en la zona más exterior de Lingalind. Arrow ha perdid...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3342.jpg", - "mal_title": "Back Arrow" + "jkanime": false, + "description": "Lingalind es un lugar rodeado por un muro que protege y ayuda a dar prosperidad a esas tierras. El muro es la base sobre la que prospera Lingalind, casi como su dios.\nUn día aparece un misterioso hombre llamado Back Arrow en Edger, un pueblo en la zona más exterior de Lingalind. Arrow ha perdid..." }, { "id": "ore-dake-haireru-kakushi-dungeon", "title": "Ore dake Haireru Kakushi Dungeon", + "mal_id": 41899, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3343.jpg", + "type": "Anime", "genres": [ "accion", "aventura", @@ -56581,123 +56584,122 @@ "fantasia", "harem" ], - "description": "Noir, el tercer hijo de una familia de nobles en decadencia, ha perdido su empleo y no sabe qué hacer, pero la fortuna le sonríe justo cuando decide convertirse en un aventurero.\nCalabozos a los que nadie sabe cómo entrar. Lugares legendarios llenos de extremadamente raras criaturas, herramien...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.7", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3343.jpg", - "mal_title": "Ore dake Haireru Kakushi Dungeon" + "jkanime": false, + "description": "Noir, el tercer hijo de una familia de nobles en decadencia, ha perdido su empleo y no sabe qué hacer, pero la fortuna le sonríe justo cuando decide convertirse en un aventurero.\nCalabozos a los que nadie sabe cómo entrar. Lugares legendarios llenos de extremadamente raras criaturas, herramien..." }, { "id": "wixoss-divaalive", "title": "WIXOSS Diva(A)Live", + "mal_id": 41521, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3344.jpg", + "type": "Anime", "genres": [ "juegos", "psicologico" ], - "description": "La historia del anime mueve el tradicional juego de cartas de “Wixoss” a un espacio virtual conocido como “Wixossland”, mientras continúa engrandeciendo su popularidad. El juego permite a los jugadores convertirse en avatar de LRIG por sí mismos. El formato más popular son la “Diva Batt...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "3.5", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3344.jpg", - "mal_title": "WIXOSS Diva(A)Live" + "jkanime": false, + "description": "La historia del anime mueve el tradicional juego de cartas de “Wixoss” a un espacio virtual conocido como “Wixossland”, mientras continúa engrandeciendo su popularidad. El juego permite a los jugadores convertirse en avatar de LRIG por sí mismos. El formato más popular son la “Diva Batt..." }, { "id": "idolls", "title": "Idolls!", + "mal_id": 42981, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3345.jpg", + "type": "Anime", "genres": [ "musica" ], - "description": "YouTubers Virtuales", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "2.6", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3345.jpg", - "mal_title": "Idolls!" + "jkanime": false, + "description": "YouTubers Virtuales" }, { "id": "jakuchara-tomozakikun", "title": "Jaku-Chara Tomozaki-kun", + "mal_id": 40530, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3346.jpg", + "type": "Anime", "genres": [ "drama", "escolares", "romance" ], - "description": "Tomozaki es uno de los mejores jugadores de videojuegos del mundo, y para él, la realidad es el peor juego de todos: no hay un objetivo claro para ganar, el equilibrio es un asco y nada tiene sentido. Es entonces cuando conoce a una jugadora tan buena como él que se ofrece a enseñarle unos cuanto...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.6", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3346.jpg", - "mal_title": "Jaku-Chara Tomozaki-kun" + "jkanime": false, + "description": "Tomozaki es uno de los mejores jugadores de videojuegos del mundo, y para él, la realidad es el peor juego de todos: no hay un objetivo claro para ganar, el equilibrio es un asco y nada tiene sentido. Es entonces cuando conoce a una jugadora tan buena como él que se ofrece a enseñarle unos cuanto..." }, { "id": "kumo-desu-ga-nani-ka", "title": "Kumo Desu ga, Nani ka?", + "mal_id": 37984, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3347.jpg", + "type": "Anime", "genres": [ "aventura", "comedia", "fantasia" ], - "description": "El mundo donde el Héroe y el Rey Demonio continúan oponiéndose el uno al otro. La gran magia del Héroe y el Rey Demonio cruzan mundos y explotan en el aula de una cierta escuela secundaria.\nLos estudiantes que murieron en la explosión reencarnarán en un mundo diferente. La protagonista, que...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.7", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3347.jpg", - "mal_title": "Kumo Desu ga, Nani ka?" + "jkanime": false, + "description": "El mundo donde el Héroe y el Rey Demonio continúan oponiéndose el uno al otro. La gran magia del Héroe y el Rey Demonio cruzan mundos y explotan en el aula de una cierta escuela secundaria.\nLos estudiantes que murieron en la explosión reencarnarán en un mundo diferente. La protagonista, que..." }, { "id": "243-seiin-koukou-danshi-volleybu", "title": "2.43: Seiin Koukou Danshi Volley-bu", + "mal_id": 40679, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3348.jpg", + "type": "Anime", "genres": [ "deportes", "escolares" ], - "description": "La historia se centra en Kimichika Haijima, quien se metió en serios problemas durante sus días en secundaria mientras participaba en el equipo de voleibol de su instituto, y como resultado fue transferido de la Prefectura de Tokio a la de Fukui, en donde se reencontró con su amigo de la infancia...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.5", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3348.jpg", - "mal_title": "2.43: Seiin Koukou Danshi Volley-bu" + "jkanime": false, + "description": "La historia se centra en Kimichika Haijima, quien se metió en serios problemas durante sus días en secundaria mientras participaba en el equipo de voleibol de su instituto, y como resultado fue transferido de la Prefectura de Tokio a la de Fukui, en donde se reencontró con su amigo de la infancia..." }, { "id": "hataraku-saibou-black-tv", "title": "Hataraku Saibou Black (TV)", + "mal_id": 41694, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3349.jpg", + "type": "Anime", "genres": [ "accion", "seinen" ], - "description": "La historia se centra en un glóbulo rojo novato, miembro de las otras células en el cuerpo. ¡Pero algo anda mal! Las hormonas del estrés le siguen gritando que aceleren cada vez más el ritmo. Los vasos sanguíneos están cubiertos de colesterol. Úlceras, hígado graso, problemas (ejem) abajo�...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3349.jpg", - "mal_title": "Hataraku Saibou Black (TV)" + "jkanime": false, + "description": "La historia se centra en un glóbulo rojo novato, miembro de las otras células en el cuerpo. ¡Pero algo anda mal! Las hormonas del estrés le siguen gritando que aceleren cada vez más el ritmo. Los vasos sanguíneos están cubiertos de colesterol. Úlceras, hígado graso, problemas (ejem) abajo�..." }, { "id": "hataraku-saibou", "title": "Hataraku Saibou!!", + "mal_id": 37141, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3350.jpg", + "type": "Anime", "genres": [ "comedia", "shounen" ], - "description": "Segunda temporada de Hataraku Saibou", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3350.jpg", - "mal_title": "Hataraku Saibou!!" + "jkanime": false, + "description": "Segunda temporada de Hataraku Saibou" }, { "id": "gotoubun-no-hanayome-2nd-season", "title": "Gotoubun no Hanayome 2nd Season", + "mal_id": 39783, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3351.jpg", "genres": [ "comedia", "escolares", @@ -56709,110 +56711,111 @@ "state": "En emision", "type": "Anime", "jkanime": false, - "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3351.jpg", - "mal_title": "5-toubun no Hanayome ∬" + "score": "4.8" }, { "id": "tenchi-souzou-designbu", "title": "Tenchi Souzou Design-bu", + "mal_id": 41762, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3352.jpg", + "type": "Anime", "genres": [ "comedia", "fantasia", "recuentos-de-la-vida", "seinen" ], - "description": "En el Departamento de Diseño Animal del Cielo, los diseñadores crean una variedad de animales todos los días para satisfacer las irracionales solicitudes de Dios. De forma divertida, interesante, y llena de información, la serie busca responder cuestiones como “¿Por qué los unicornios no pue...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.3", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3352.jpg", - "mal_title": "Tenchi Souzou Design-bu" + "jkanime": false, + "description": "En el Departamento de Diseño Animal del Cielo, los diseñadores crean una variedad de animales todos los días para satisfacer las irracionales solicitudes de Dios. De forma divertida, interesante, y llena de información, la serie busca responder cuestiones como “¿Por qué los unicornios no pue..." }, { "id": "yuru-camp-season-2", "title": "Yuru Camp△ Season 2", + "mal_id": 38474, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3353.jpg", + "type": "Anime", "genres": [ "comedia", "recuentos-de-la-vida" ], - "description": "Si bien la escapada perfecta para la mayoría de las chicas de su edad pueden ser unas vacaciones extravagantes con sus seres queridos, la manera ideal de Rin Shima es acampar sola en la base del Monte Fuji. Desde armar su tienda de campaña hasta recoger leña, ella siempre ha hecho todo por sí mi...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.7", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3353.jpg", - "mal_title": "Yuru Camp△ Season 2" + "jkanime": false, + "description": "Si bien la escapada perfecta para la mayoría de las chicas de su edad pueden ser unas vacaciones extravagantes con sus seres queridos, la manera ideal de Rin Shima es acampar sola en la base del Monte Fuji. Desde armar su tienda de campaña hasta recoger leña, ella siempre ha hecho todo por sí mi..." }, { "id": "show-by-rock-stars", "title": "Show by Rock!! Stars!!", + "mal_id": 41520, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3354.jpg", + "type": "Anime", "genres": [ "comedia", "musica" ], - "description": "Temporada \"All stars\" de Show by Rock!! mostrando a todas las bandas de las temporadas anteriores.", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3354.jpg", - "mal_title": "Show by Rock!! Stars!!" + "jkanime": false, + "description": "Temporada \"All stars\" de Show by Rock!! mostrando a todas las bandas de las temporadas anteriores." }, { "id": "soukou-musume-senki", "title": "Soukou Musume Senki", + "mal_id": 36458, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3355.jpg", + "type": "Anime", "genres": [ "accion", "fantasia", "militar" ], - "description": "Es el año 2051, donde todos los jóvenes jugadores de LBX de todo el mundo cooperan para resolver la Crisis de Mizel. La explosión del Seto-50 dentro del Mizel Trouser está contenido dentro de la Gran Esfera, pero la energía liberada abrió una grieta dimensional, dividiendo así el mundo en dos.\nEsta es la historia de otro mundo paralelo de...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3355.jpg", - "mal_title": "Soukou Musume Senki" + "jkanime": false, + "description": "Es el año 2051, donde todos los jóvenes jugadores de LBX de todo el mundo cooperan para resolver la Crisis de Mizel. La explosión del Seto-50 dentro del Mizel Trouser está contenido dentro de la Gran Esfera, pero la energía liberada abrió una grieta dimensional, dividiendo así el mundo en dos.\nEsta es la historia de otro mundo paralelo de..." }, { "id": "hortensia-saga-tv", "title": "Hortensia Saga (TV)", + "mal_id": 40961, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3356.jpg", + "type": "Anime", "genres": [ "accion", "aventura", "fantasia", "magia" ], - "description": "Ambientada en el Reino de Hortensia, una potencia mundial gracias a sus principales territorios, Camellia y Olivier, que sirven como espada y escudo contra las invasiones. Comienza una revuelta por parte de Camellia, y con Hortensia encaminada hacia el caos absoluto y la llegada de monstruos que solo complica la situación, ¿podrán los caballeros...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3356.jpg", - "mal_title": "Hortensia Saga (TV)" + "jkanime": false, + "description": "Ambientada en el Reino de Hortensia, una potencia mundial gracias a sus principales territorios, Camellia y Olivier, que sirven como espada y escudo contra las invasiones. Comienza una revuelta por parte de Camellia, y con Hortensia encaminada hacia el caos absoluto y la llegada de monstruos que solo complica la situación, ¿podrán los caballeros..." }, { "id": "ichu-halfway-through-the-idol", "title": "I★Chu: Halfway Through the Idol", + "mal_id": 39725, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3357.jpg", + "type": "Anime", "genres": [ "comedia", "escolares", "musica", "recuentos-de-la-vida" ], - "description": "Ha comenzado el ciclo escolar en la Academia Étoile Vio, en donde los estudiantes aspirantes a convertirse en idols conocidos como “I-Chu” recibirán entrenamiento para convertirse en idols plenos y derechos. Sin embargo, las cosas han tenido un comienzo extraño cuando los nuevos estudiantes reciben un discurso del director, ¿un oso? Los I-C...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "2.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3357.jpg", - "mal_title": "I★Chu: Halfway Through the Idol" + "jkanime": false, + "description": "Ha comenzado el ciclo escolar en la Academia Étoile Vio, en donde los estudiantes aspirantes a convertirse en idols conocidos como “I-Chu” recibirán entrenamiento para convertirse en idols plenos y derechos. Sin embargo, las cosas han tenido un comienzo extraño cuando los nuevos estudiantes reciben un discurso del director, ¿un oso? Los I-C..." }, { "id": "yakusoku-no-neverland-2nd-season", "title": "Yakusoku no Neverland 2nd Season", + "mal_id": 39617, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3358.jpg", + "type": "Anime", "genres": [ "ciencia-ficcion", "misterio", @@ -56820,31 +56823,31 @@ "shounen", "suspenso" ], - "description": "Segunda temporada de Yakusoku no Neverland", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.7", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3358.jpg", - "mal_title": "Yakusoku no Neverland 2nd Season" + "jkanime": false, + "description": "Segunda temporada de Yakusoku no Neverland" }, { "id": "gekidol", "title": "Gekidol", + "mal_id": 32455, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3359.jpg", + "type": "Anime", "genres": [ "musica" ], - "description": "La historia se desarrolla cinco años después de que un misterioso desastre borrase del mapa las grandes ciudades del mundo. Las protagonistas son un grupo de chicas que quieren formar parte de las producciones teatrales holográficas en 3D \"Theater Material System\".", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3359.jpg", - "mal_title": "Gekidol" + "jkanime": false, + "description": "La historia se desarrolla cinco años después de que un misterioso desastre borrase del mapa las grandes ciudades del mundo. Las protagonistas son un grupo de chicas que quieren formar parte de las producciones teatrales holográficas en 3D \"Theater Material System\"." }, { "id": "urasekai-picnic", "title": "Urasekai Picnic", + "mal_id": 41392, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3360.jpg", + "type": "Anime", "genres": [ "aventura", "ciencia-ficcion", @@ -56852,234 +56855,234 @@ "misterio", "yuri" ], - "description": "La novela original se desarrolla en el mundo moderno, pero existen puertas que pueden llevar a las personas al “otro lado”, donde las extrañas leyendas urbanas y los mitos de Internet resultan ser reales. La estudiante universitaria Kamikoshi Sorao descubre una de estas puertas y por poco muere estando del otro lado, hasta que es rescatada por...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3360.jpg", - "mal_title": "Urasekai Picnic" + "jkanime": false, + "description": "La novela original se desarrolla en el mundo moderno, pero existen puertas que pueden llevar a las personas al “otro lado”, donde las extrañas leyendas urbanas y los mitos de Internet resultan ser reales. La estudiante universitaria Kamikoshi Sorao descubre una de estas puertas y por poco muere estando del otro lado, hasta que es rescatada por..." }, { "id": "uma-musume-pretty-derby-season-2", "title": "Uma Musume: Pretty Derby Season 2", + "mal_id": 42941, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3361.jpg", + "type": "Anime", "genres": [ "comedia", "deportes", "recuentos-de-la-vida" ], - "description": "En un mundo muy parecido al nuestro, los grandes caballos de carreras del pasado recibieron la oportunidad de renacer como “uma musume”, chicas con las orejas y la cola de un caballo, pero que también cuentan con su velocidad y resistencia. Las mejores de estas chicas tienen el privilegio de estudiar en la Academia Tracen en Tokio, con la espe...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.4", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3361.jpg", - "mal_title": "Uma Musume: Pretty Derby (TV) Season 2" + "jkanime": false, + "description": "En un mundo muy parecido al nuestro, los grandes caballos de carreras del pasado recibieron la oportunidad de renacer como “uma musume”, chicas con las orejas y la cola de un caballo, pero que también cuentan con su velocidad y resistencia. Las mejores de estas chicas tienen el privilegio de estudiar en la Academia Tracen en Tokio, con la espe..." }, { "id": "tatoeba-last-dungeon-mae-no-mura-no-shounen-ga-joban-no-machi-de-kurasu-youna-monogatari", "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "mal_id": 40594, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3362.jpg", + "type": "Anime", "genres": [ "aventura", "fantasia" ], - "description": "Lloyd es un aventurero novato cuyo sueño es descubrir la \"verdadera fuerza\" en la capital que siempre ha admirado, aunque en realidad todos a su alrededor siempre le han considerado un debilucho. La historia comienza cuando parte de su pueblo natal, que casualmente, está junto a una de las mazmorras más peligrosas del mundo. Lloyd piensa que es ...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3362.jpg", - "mal_title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari" + "jkanime": false, + "description": "Lloyd es un aventurero novato cuyo sueño es descubrir la \"verdadera fuerza\" en la capital que siempre ha admirado, aunque en realidad todos a su alrededor siempre le han considerado un debilucho. La historia comienza cuando parte de su pueblo natal, que casualmente, está junto a una de las mazmorras más peligrosas del mundo. Lloyd piensa que es ..." }, { "id": "skateleadingstars", "title": "Skate-Leading☆Stars", + "mal_id": 40786, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3363.jpg", + "type": "Anime", "genres": [ "deportes" ], - "description": "\"Jamás podrás vencerme\".\nKensei Maeshima era un partinador artístico que abandonó su carrera cuando escuchó esas palabras de boca de Reo Shinozaki, su gran rival. Ahora, años después, Maeshima ya es estudiante de preparatoria y usa su talento físico para ayudar a otros clubes con sus actividades, aunque nunca se compromete con ninguno pa...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3363.jpg", - "mal_title": "Skate-Leading☆Stars" + "jkanime": false, + "description": "\"Jamás podrás vencerme\".\nKensei Maeshima era un partinador artístico que abandonó su carrera cuando escuchó esas palabras de boca de Reo Shinozaki, su gran rival. Ahora, años después, Maeshima ya es estudiante de preparatoria y usa su talento físico para ayudar a otros clubes con sus actividades, aunque nunca se compromete con ninguno pa..." }, { "id": "otona-no-bouguyasan-2nd-season", "title": "Otona no Bouguya-san II", + "mal_id": 42862, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3364.jpg", + "type": "Anime", "genres": [ "comedia", "ecchi", "fantasia" ], - "description": "Segunda temporada de Otona no Bouguya-san.", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "3.5", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3364.jpg", - "mal_title": "Otona no Bouguya-san II" + "jkanime": false, + "description": "Segunda temporada de Otona no Bouguya-san." }, { "id": "yami-shibai-8", "title": "Yami Shibai 8", + "mal_id": 44208, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3365.jpg", + "type": "Anime", "genres": [ "Demencia", "Terror", "Sobrenatural" ], - "description": "Octava temporada de Yami Shibai", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "3.2", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3365.jpg", - "mal_title": "Yami Shibai 8" + "jkanime": true, + "description": "Octava temporada de Yami Shibai" }, { "id": "jimihen-jimiko-wo-kaechau-jun-isei-kouyuu", "title": "Jimihen!!: Jimiko wo Kaechau Jun Isei Kouyuu!!", + "mal_id": 44044, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3366.jpg", + "type": "Anime", "genres": [ "Ecchi", "Romance" ], - "description": "La historia sigue a Rena Yukuhasahi, una oficinista reservada y a Ryouhei Hachiya, un hombre de negocios y colega. Yukuhasahi parece ser la chica más reservada de la compañía, pero se convierte en una mujer súper hermosa cuando se viste de gala. Nerviosa ante la presencia de su yo transformado, Hachiya insiste en sacarla, solo para encontrarse frente a un hotel del amor.", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "3.6", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3366.jpg", - "mal_title": "Jimihen!!: Jimiko wo Kaechau Jun Isei Kouyuu!!" + "jkanime": true, + "description": "La historia sigue a Rena Yukuhasahi, una oficinista reservada y a Ryouhei Hachiya, un hombre de negocios y colega. Yukuhasahi parece ser la chica más reservada de la compañía, pero se convierte en una mujer súper hermosa cuando se viste de gala. Nerviosa ante la presencia de su yo transformado, Hachiya insiste en sacarla, solo para encontrarse frente a un hotel del amor." }, { "id": "beastars-2nd-season", "title": "Beastars 2nd Season", + "mal_id": 40935, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3367.jpg", + "type": "Anime", "genres": [ "Drama", "Shounen", "Cosas de la vida", "Psicológico" ], - "description": "Segunda temporada de Beastars", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "4.8", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3367.jpg", - "mal_title": "Beastars 2nd Season" + "jkanime": true, + "description": "Segunda temporada de Beastars" }, { "id": "abciee-shuugyou-nikki", "title": "Abciee Shuugyou Nikki", + "mal_id": 44040, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3368.jpg", + "type": "Anime", "genres": [ "Comedia" ], - "description": "ABCiee es un poco torpe y despistado, pero ánimo no le falta, ¡y además por fin tiene el trabajo con el que siempre soñó en una emisora de televisión! ¡Una comedia laboral repleta de humor! ¡No esperaba que trabajar en la TV fuera tan duro!. Pese a tener que enfrentarse a las desconocidas normas del mundo de la televisión, a sus extravagantes compañeros, y a invitados estelares con sus peculiaridades, ABCiee no se acobardará ante nada y conservará su optimismo. ¡Trabajo, amor, familia, con todo! No te pierdas cómo ABCiee va conquistando el mundo de la tele", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "3.9", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3368.jpg", - "mal_title": "Abciee Shuugyou Nikki" + "jkanime": true, + "description": "ABCiee es un poco torpe y despistado, pero ánimo no le falta, ¡y además por fin tiene el trabajo con el que siempre soñó en una emisora de televisión! ¡Una comedia laboral repleta de humor! ¡No esperaba que trabajar en la TV fuera tan duro!. Pese a tener que enfrentarse a las desconocidas normas del mundo de la televisión, a sus extravagantes compañeros, y a invitados estelares con sus peculiaridades, ABCiee no se acobardará ante nada y conservará su optimismo. ¡Trabajo, amor, familia, con todo! No te pierdas cómo ABCiee va conquistando el mundo de la tele" }, { "id": "date-a-bullet-nightmare-or-queen", "title": "Date A Bullet: Nightmare or Queen", + "mal_id": 42423, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3369.jpg", + "type": "Película", "genres": [ "Sci-fi" ], - "description": "Segunda parte de las películas de Date A Bullet", "state": "En emision", - "type": "Película", - "jkanime": true, "score": "4.4", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3369.jpg", - "mal_title": "Date A Bullet: Nightmare or Queen" + "jkanime": true, + "description": "Segunda parte de las películas de Date A Bullet" }, { "id": "vlad-love", "title": "Vlad Love", + "mal_id": 39990, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3370.jpg", + "type": "Anime", "genres": [ "Comedia", "Escolar", "Vampiros", "Sobrenatural" ], - "description": "Mitsugu Banba es una chica de secundaria que encuentra sentido en la donación de sangre. Con frecuencia visita un banco de sangre para donar sangre, a pesar de que la enfermera la trata con dureza. Un día, se encuentra con una hermosa chica que parece ser del extranjero en el banco de sangre. La chica pálida parece que está a punto de desmayarse en cualquier momento, pero luego comienza a destruir el banco de sangre. La niña pierde el conocimiento y Mitsugu se la lleva a casa", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "4.2", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3370.jpg", - "mal_title": "Vlad Love" + "jkanime": true, + "description": "Mitsugu Banba es una chica de secundaria que encuentra sentido en la donación de sangre. Con frecuencia visita un banco de sangre para donar sangre, a pesar de que la enfermera la trata con dureza. Un día, se encuentra con una hermosa chica que parece ser del extranjero en el banco de sangre. La chica pálida parece que está a punto de desmayarse en cualquier momento, pero luego comienza a destruir el banco de sangre. La niña pierde el conocimiento y Mitsugu se la lleva a casa" }, { "id": "tensei-shitara-slime-datta-ken-2nd-season", "title": "Tensei shitara Slime Datta Ken 2nd Season", + "mal_id": 39551, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3371.jpg", + "type": "Anime", "genres": [ "Comedia", "Fantasia" ], - "description": "Satoru Mikami es un hombre ordinario de 37 años que vive en Tokio. Está relativamente contento con su monótona vida, a pesar del hecho de que no tiene novia. Durante un encuentro con uno de sus colegas, un asaltante lo acuchilla y muere. Pero durante su agonía previa a su muerte, una misteriosa voz recita una serie de comandos que, al principio...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "5.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3371.jpg", - "mal_title": "Tensei shitara Slime Datta Ken 2nd Season" + "jkanime": false, + "description": "Satoru Mikami es un hombre ordinario de 37 años que vive en Tokio. Está relativamente contento con su monótona vida, a pesar del hecho de que no tiene novia. Durante un encuentro con uno de sus colegas, un asaltante lo acuchilla y muere. Pero durante su agonía previa a su muerte, una misteriosa voz recita una serie de comandos que, al principio..." }, { "id": "azur-lane-bisoku-zenshin", "title": "Azur Lane: Bisoku Zenshin!", + "mal_id": 40930, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3372.jpg", + "type": "Anime", "genres": [ "ciencia-ficcion", "comedia", "militar", "recuentos-de-la-vida" ], - "description": "Cuando las “Sirens”, una fuerza extraterrestre con un arsenal que supera con creces la tecnología actual, aparecieron de repente, una humanidad dividida se apoyó entre sí por primera vez en la historia. Cuatro países, Eagle Union, Royal Navy, Sakura Empire y Iron Blood, formaron “Azur Lane”, allanando el camino para la mejora de la guer...", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.2", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3372.jpg", - "mal_title": "Azur Lane: Bisoku Zenshin!" + "jkanime": false, + "description": "Cuando las “Sirens”, una fuerza extraterrestre con un arsenal que supera con creces la tecnología actual, aparecieron de repente, una humanidad dividida se apoyó entre sí por primera vez en la historia. Cuatro países, Eagle Union, Royal Navy, Sakura Empire y Iron Blood, formaron “Azur Lane”, allanando el camino para la mejora de la guer..." }, { "id": "wonder-egg-priority", "title": "Wonder Egg Priority", + "mal_id": 43299, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3373.jpg", + "type": "Anime", "genres": [ "Cosas de la Vida" ], - "description": "Una historia de chicas con problemas, tejida por el guionista Shinji Nojima en el mundo del anime.\n\nDirigida por una voz misteriosa durante un paseo de medianoche, Ai Ooto, de 14 años, recoge un huevo. La voz la persuade: \"Si quieres cambiar el futuro, solo tienes que elegir ahora. Ahora, cree en ti misma y rompe el huevo\".", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "0.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3373.jpg", - "mal_title": "Wonder Egg Priority" + "jkanime": false, + "description": "Una historia de chicas con problemas, tejida por el guionista Shinji Nojima en el mundo del anime.\n\nDirigida por una voz misteriosa durante un paseo de medianoche, Ai Ooto, de 14 años, recoge un huevo. La voz la persuade: \"Si quieres cambiar el futuro, solo tienes que elegir ahora. Ahora, cree en ti misma y rompe el huevo\"." }, { "id": "yatogame-chan-kansatsu-nikki-sansatsume", "title": "Yatogame-chan Kansatsu Nikki Sansatsume", + "mal_id": 42959, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3374.jpg", + "type": "Anime", "genres": [ "Comedia", "Colegial", "Shounen", "Cosas de la Vida" ], - "description": "Tercera temporada de Yatogame-chan Kansatsu Nikki.", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "3.1", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3374.jpg", - "mal_title": "Yatogame-chan Kansatsu Nikki Sansatsume" + "jkanime": false, + "description": "Tercera temporada de Yatogame-chan Kansatsu Nikki." }, { "id": "nanatsu-no-taizai-fundo-no-shinpan", "title": "Nanatsu no Taizai: Fundo no Shinpan", + "mal_id": 41491, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3375.jpg", + "type": "Anime", "genres": [ "accion", "aventura", @@ -57088,48 +57091,48 @@ "shounen", "sobrenatural" ], - "description": "Cuarta temporada de Nanatsu no Taizai", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.7", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3375.jpg", - "mal_title": "Nanatsu no Taizai: Fundo no Shinpan" + "jkanime": false, + "description": "Cuarta temporada de Nanatsu no Taizai" }, { "id": "world-witches-hasshin-shimasu", "title": "World Witches Hasshin Shimasu!", + "mal_id": 42506, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3376.jpg", + "type": "Anime", "genres": [ "comedia", "militar" ], - "description": "Tal como la entrega anterior, Strike Witches: 501 Butai Hasshin Shimasu!, esta serie seguirá las cómicas vidas diarias de la brujas mientras no se encuentran en batalla. Sin embargo, esta nueva serie no solo incluirá al Ala de Combate Conjunta 501 (Strike Witches) sino también al Ala de Combate Conjunta 502 (Brave Witches).", "state": "En emision", - "type": "Anime", - "jkanime": false, "score": "4.0", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3376.jpg", - "mal_title": "World Witches Hasshin Shimasu!" + "jkanime": false, + "description": "Tal como la entrega anterior, Strike Witches: 501 Butai Hasshin Shimasu!, esta serie seguirá las cómicas vidas diarias de la brujas mientras no se encuentran en batalla. Sin embargo, esta nueva serie no solo incluirá al Ala de Combate Conjunta 501 (Strike Witches) sino también al Ala de Combate Conjunta 502 (Brave Witches)." }, { "id": "bungou-stray-dogs-wan", "title": "Bungou Stray Dogs Wan!", + "mal_id": 42250, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3377.jpg", + "type": "Anime", "genres": [ "comedia", "Cosas de la vida", "Sobrenatural" ], - "description": "Los días tranquilos de la muy popular obra Bungou Stray Dogs están aquí. ¿Los personajes de la Agencia Armada de Detectives y la Mafia están en forma de miniatura? Gracias a Atsushi y compañía. volviéndose lindo, esta es una experiencia diferente a la obra original: ¡un manga de broma agradable!", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "4.3", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3377.jpg", - "mal_title": "Bungou Stray Dogs Wan!" + "jkanime": false, + "description": "Los días tranquilos de la muy popular obra Bungou Stray Dogs están aquí. ¿Los personajes de la Agencia Armada de Detectives y la Mafia están en forma de miniatura? Gracias a Atsushi y compañía. volviéndose lindo, esta es una experiencia diferente a la obra original: ¡un manga de broma agradable!" }, { "id": "log-horizon-entaku-houkai", "title": "Log Horizon: Entaku Houkai", + "mal_id": 41109, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3378.jpg", + "type": "Anime", "genres": [ "Acción", "Aventura", @@ -57137,27 +57140,24 @@ "Juegos", "Magia" ], - "description": "Tercera temporada de Log Horizon", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "4.4", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3378.jpg", - "mal_title": "Log Horizon: Entaku Houkai" + "jkanime": false, + "description": "Tercera temporada de Log Horizon" }, { "id": "kaifuku-jutsushi-no-yarinaoshi", "title": "Kaifuku Jutsushi no Yarinaoshi", + "mal_id": 40750, + "poster": "https://aruppi.jeluchu.xyz/res/directory/3379.jpg", + "type": "Anime", "genres": [ "Ecchi", "Fantasía" ], - "description": "\"Los magos curadores no pueden luchar solos\".\n\nKeare, que estaba obligado por este conocimiento común, fue explotado una y otra vez por otros. Un día, se dio cuenta de lo que había más allá de la magia curativa y se convenció de que un mago curativo era la clase más fuerte. Sin embargo, cuando se dio cuenta de ese potencial, se vio privado de todo. Por lo tanto, usó magia curativa en el mundo mismo para retroceder cuatro años, decidiendo rehacer todo.\n\nEsta es una historia heroica de un mago curativo que se convirtió en el más fuerte al usar el conocimiento de su vida pasada y la magia curativa.", "state": "En emision", - "type": "Anime", - "jkanime": true, "score": "4.4", - "poster": "https://aruppi.jeluchu.xyz/res/directory/3379.jpg", - "mal_title": "Kaifuku Jutsushi no Yarinaoshi" + "jkanime": false, + "description": "\"Los magos curadores no pueden luchar solos\".\n\nKeare, que estaba obligado por este conocimiento común, fue explotado una y otra vez por otros. Un día, se dio cuenta de lo que había más allá de la magia curativa y se convenció de que un mago curativo era la clase más fuerte. Sin embargo, cuando se dio cuenta de ese potencial, se vio privado de todo. Por lo tanto, usó magia curativa en el mundo mismo para retroceder cuatro años, decidiendo rehacer todo.\n\nEsta es una historia heroica de un mago curativo que se convirtió en el más fuerte al usar el conocimiento de su vida pasada y la magia curativa." } -] +] \ No newline at end of file diff --git a/src/utils/index.js b/src/utils/index.js index 23b5a2d..f790efb 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -20,10 +20,10 @@ function btoa(str) { global.btoa = btoa; async function videoServersJK(id) { - const $ = await homgot(`${BASE_JKANIME}${id}`, { scrapy: true }); let servers = {}; let script; + const serverNames = $('div#reproductor-box li').map((index, element) => { return $(element).find('a').text(); }).get(); @@ -71,7 +71,6 @@ async function videoServersJK(id) { } async function desuServerUrl(url) { - const $ = await homgot(url, { scrapy: true}); let script; @@ -94,7 +93,6 @@ async function desuServerUrl(url) { const jkanimeInfo = async (id) => { - let $ = await homgot(`${BASE_JKANIME}${id}`, { scrapy: true }); let nextEpisodeDate; @@ -141,7 +139,6 @@ const jkanimeInfo = async (id) => { function getPosterAndType(id) { let data = JSON.parse(JSON.stringify(require('../assets/directory.json'))); - for (let anime of data) { if (anime.id === id) { return [ @@ -178,7 +175,6 @@ async function getRelatedAnimes(id) { } return relatedAnimes; - }else { return []; } @@ -252,57 +248,50 @@ const animeflvInfo = async (id) => { }; -const getAnimeCharacters = async(title) =>{ - - const matchAnime = await getMALid(title); +const getAnimeCharacters = async(mal_id) =>{ + let data; try { - if(matchAnime !== null) { - const data = await homgot(`${BASE_JIKAN}anime/${matchAnime.mal_id}/characters_staff`, { parse: true }); - return data.characters.map(doc => ({ - id: doc.mal_id, - name: doc.name, - image: doc.image_url, - role: doc.role - })); - } - } catch (err) { - console.log(err); + data = await homgot(`${BASE_JIKAN}anime/${mal_id}/characters_staff`, { parse: true }); + }catch(error) { + console.log(error); + } + + if(data !== null) { + return data.characters.map(doc => ({ + id: doc.mal_id, + name: doc.name, + image: doc.image_url, + role: doc.role + })); } - }; -const getAnimeVideoPromo = async(title) =>{ - - const matchAnime = await getMALid(title); +const getAnimeVideoPromo = async(mal_id) =>{ + let data; try { - if(matchAnime !== null) { - - const data = await homgot(`${BASE_JIKAN}anime/${matchAnime.mal_id}/videos`, {parse: true}); - - return data.promo.map(doc => ({ - title: doc.title, - previewImage: doc.image_url, - videoURL: doc.video_url - })); - } - } catch (err) { - console.log(err); + data = await homgot(`${BASE_JIKAN}anime/${mal_id}/videos`, {parse: true}); + }catch(error) { + console.log(error); } + if(data !== null) { + return data.promo.map(doc => ({ + title: doc.title, + previewImage: doc.image_url, + videoURL: doc.video_url + })); + } }; -const animeExtraInfo = async (title) => { - - const matchAnime = await getMALid(title); +const animeExtraInfo = async (mal_id) => { + const data = await homgot(`${BASE_JIKAN}anime/${mal_id}`, {parse: true}); try { - if(matchAnime !== null) { - - const data = await homgot(`${BASE_JIKAN}anime/${matchAnime.mal_id}`, {parse: true}); - const promises = []; + if(data !== null) { + let promises = []; let broadcast = ''; Array(data).map(doc => { @@ -358,32 +347,12 @@ const animeExtraInfo = async (title) => { }; -const getMALid = async (title) =>{ - - if (title === undefined || title === null) { - return 1; - } else { - - const res = await homgot(`${BASE_JIKAN}search/anime?q=${title}`,{ parse: true }); - - const matchAnime = res.results.find(x => x.title === title); - - if(typeof matchAnime === 'undefined') { - return null; - } else { - return matchAnime; - } - } -}; - - const imageUrlToBase64 = async (url) => { let img = await homgot(url) return img.rawBody.toString('base64'); }; const searchAnime = async (query) => { - let data = JSON.parse(JSON.stringify(require('../assets/directory.json'))); let queryLowerCase = query.toLowerCase(); const res = data.filter(x => x.title.toLowerCase().includes(queryLowerCase)); @@ -394,7 +363,6 @@ const searchAnime = async (query) => { type: doc.type || null, image: doc.poster || null })); - }; const transformUrlServer = async (urlReal) => { @@ -531,6 +499,5 @@ module.exports = { obtainPreviewNews, structureThemes, getThemes, - getMALid, videoServersJK }