'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Jean Chalopin

Jean Chalopin (born 31 May 1950) is a French producer and writer. In 1971, Chalopin created the company DIC Audiovisuel, which later evolved into DIC Entertainment (which today part of DHX Media), and wrote and produced programs animated by Japanese studios. In 1987, Chalopin would later become found the company C&D (Créativité et Développement) after selling his shares in DiC and continued to produce cartoons in the late 80's and 90's. Jean Chalopin is married to Chinese/Singaporean ex-Model, Ethel Chalopin. They have two children, Janvier and Tanis.

References

External links

  • Jean Chalopin at the Internet Movie Database
  • Podcasts:

    • Visualizing Music | Tanis Chalopin | TEDxBeaconStreet

      Tanis describes her music as visual. When she writes a song, she visualizes the images, probably because of her photography. She thinks, dreams and writes in both French and English, and is considering writing songs in Chinese too Tanis Tian-Xi Chalopin is a French and English music artist, singer, songwriter, photographer and composer.[1] Half-Singaporean and half-French, and based out of Paris, she was born to writer-producer Jean Chalopin[2] and one of Singapore’s first supermodels, Ethel Fong. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx

      published: 25 Jan 2017
    • Cartoonist 2013 : interview de Jean Chalopin

      Scénariste et producteur, Jean Chalopin est considéré comme un des papes de l'animation en France. On lui doit entre autre Ulysse 31, Jayce, etc. A l'occasion de la sortie de la nouvelle série des Mystérieuses Cités d'Or, nous avons rencontré M. Chalopin. Un regard plein d'informations sur 30 ans d'animations en France.

      published: 21 Jun 2013
    • Interview Jean Chalopin

      Interview exclusive du scénariste et producteur français Jean Chalopin, dans le cadre du fansfunding (financement par les fans) de l'adaptation cinématographique live de sa série d'animation culte "Les Mystérieuses Cités d'Or".

      published: 26 Jun 2013
    • Inspecteur Gadget - MAD Time Party | From then to now: Tanis and Jean Chalopin's Interview

      Discover the exclusive interview with Jean Chalopin, the creator of the series, and his daughter Tanis Chalopin, who composed the game's soundtrack. Inspector Gadget - MAD Time Party is out! https://linktr.ee/playinspectorgadget #gaming #videogames #gaming #inspectorgadget Get ready to save Metro City with your friends! Developed by Smart Tale Games, this new party game for 1-4 players will immerse you in the iconic world of Inspector Gadget. Stroll through the environments of the original series, meet characters such as Chief Quimby, Penny, or the M.A.D. agents, and use Inspector Gadget’s various gadgets to fight the M.A.D. forces. Inspector Gadget – MAD Time Party will come with 2 sticker sheets and a poster at launch on PlayStation 4, PlayStation 5 and Nintendo Switch! Wowsers! Pl...

      published: 14 Sep 2023
    • How Deltec Bank Embraced Innovation & Crypto. An In-Depth Chat With Chairman of Deltec Jean Chalopin

      Henri Arslanian and Jean Chalopin, Chairman of Deltec, share an in-depth discussion about Deltec and its role in the cryptocurrency ecosystem. The pair also explore the challenges of being active in digital assets and how that addresses issues with counterparties, including correspondent banks. Henri and Jean also examine everything from #AI, #VR, and quantum technology to the risk management framework used by banks when analyzing crypto companies to the potential of The Bahamas as a global crypto hub. This episode is ideal for anyone interested in learning more about the intersection of legacy banking and crypto along with some of the challenges in navigating this space. ___________ Powered by Bullish Bullish is a powerful new digital asset exchange built for institutions that offers d...

      published: 29 Jun 2022
    • Cartoonist : Rencontre avec Jean Chalopin

      Rencontre avec Bernard Deyriès : Producteur d'Ulysse 31, Jayce et les conquérants, Inspecteur Gadget Mangas partenaire du festival cartoonist Rendez-vous sur

      published: 10 Feb 2015
    • Jean Chalopin : d'Inspecteur Gadget à FTX, le parcours d'un homme en roux libre

      Dans ce quatrième épisode de "De Zéro à Héros", on va s'intéresser au parcours du fondateur des dessins animés français mythiques des années 90 et 2000, d'Inspecteur Gadget aux Mystérieuses Cités d'Or, puis qui s'est retrouvé au coeur du scandale FTX aux milliards de dollars. Vidéo réalisée par Pop Media https://instagram.com/popmedia_agency Réseaux sociaux de Sadek : https://twitter.com/sadekniuum https://instagram.com/sadek93zoo https://www.facebook.com/SadekNiuuum Musique utilisée : https://shorturl.at/oBFL7

      published: 03 May 2024
    • Jean Chalopin #20

      Enfants du Soleil ou Gogo-gadget-o-bras, ça vous parle ? Ulysse 31, Jayce, Musclor, les Bisounours pour ne citer que les plus connus… Derrière tous ces dessins animés, il y un homme : notre invité, Jean Chalopin, que nous recevons en duplex de New York. Aujourd’hui, nous vous proposons de découvrir son parcours, qui dévoile l’envers du décor de notre enfance, au travers des liens qu’il a tissés, l’amenant à créer la première société mondiale de programmes pour enfants. Nous aborderons aussi son changement de vie radical alors restez avec nous jusqu’au bout. N'hésitez pas à vous abonner et à partager les "petits" liens... de connexion au podcast. Vous pouvez également nous mettre une note (bonne si possible) et laisser un commentaire dithyrambique (évidemment 😏 ) Vous avez des quest...

      published: 11 Jul 2022
    • l'Univers Chalopin

      Cette Vidéo retrace d'une façon concentrée le succès de l'entreprise DIC et de son créateur Jean Chalopin, j'ai pas pu citer tout les titres des dessins animés en dehors d' Ulysse 31, les Mystérieuses Cités d'Or, alors je le fais ici dans la description: Les Entrechats, Pole Position, Les Bisounours, Blondine au pays de l'arc-en-ciel, Denis la Malice, Les Popples, Dame Boucleline et les Minicouettes, Barbie et les Rockstars, Cops, GI Joe, La Légende de Zelda, Les Aventures de Sonic, Charlotte aux Fraises...

      published: 29 Apr 2022
    • Inspecteur Gadget - MAD Time Party | D'hier à Aujourd'hui : Interview de Tanis et Jean Chalopin

      Découvrez l’une interview exclusive du créateur de la série Jean Chalopin, et de sa fille Tanis Chalopin, qui a composé la bande son du jeu Inspecteur Gadget - MAD Time Party disponible partout dès aujourd'hui ! https://linktr.ee/playinspectorgadget Sauvez Métroville avec vos amis ! Développé par Smart Tale Games, ce nouveau Party Game jouable de 1 à 4 joueurs vous plongera dans l’univers culte d’Inspecteur Gadget. Baladez-vous dans les environnements de la série originale, rencontrez des personnages tels que le Chef Gontier, Sophie ou les agents de MAD et utilisez les divers gadgets de l’inspecteur pour combattre les forces de MAD. Le jeu disposera de deux planches de stickers et d’un poster à l’effigie de l’inspecteur au lancement sur PlayStation 4, PlayStation 5 et Nintendo Switch ! ...

      published: 14 Sep 2023
    developed with YouTube
    Visualizing Music | Tanis Chalopin | TEDxBeaconStreet
    11:43

    Visualizing Music | Tanis Chalopin | TEDxBeaconStreet

    • Order:
    • Duration: 11:43
    • Uploaded Date: 25 Jan 2017
    • views: 14991
    Tanis describes her music as visual. When she writes a song, she visualizes the images, probably because of her photography. She thinks, dreams and writes in both French and English, and is considering writing songs in Chinese too Tanis Tian-Xi Chalopin is a French and English music artist, singer, songwriter, photographer and composer.[1] Half-Singaporean and half-French, and based out of Paris, she was born to writer-producer Jean Chalopin[2] and one of Singapore’s first supermodels, Ethel Fong. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx
    https://wn.com/Visualizing_Music_|_Tanis_Chalopin_|_Tedxbeaconstreet
    Cartoonist 2013 : interview de Jean Chalopin
    8:06

    Cartoonist 2013 : interview de Jean Chalopin

    • Order:
    • Duration: 8:06
    • Uploaded Date: 21 Jun 2013
    • views: 5406
    Scénariste et producteur, Jean Chalopin est considéré comme un des papes de l'animation en France. On lui doit entre autre Ulysse 31, Jayce, etc. A l'occasion de la sortie de la nouvelle série des Mystérieuses Cités d'Or, nous avons rencontré M. Chalopin. Un regard plein d'informations sur 30 ans d'animations en France.
    https://wn.com/Cartoonist_2013_Interview_De_Jean_Chalopin
    Interview Jean Chalopin
    22:31

    Interview Jean Chalopin

    • Order:
    • Duration: 22:31
    • Uploaded Date: 26 Jun 2013
    • views: 8162
    Interview exclusive du scénariste et producteur français Jean Chalopin, dans le cadre du fansfunding (financement par les fans) de l'adaptation cinématographique live de sa série d'animation culte "Les Mystérieuses Cités d'Or".
    https://wn.com/Interview_Jean_Chalopin
    Inspecteur Gadget - MAD Time Party | From then to now: Tanis and Jean Chalopin's Interview
    3:43

    Inspecteur Gadget - MAD Time Party | From then to now: Tanis and Jean Chalopin's Interview

    • Order:
    • Duration: 3:43
    • Uploaded Date: 14 Sep 2023
    • views: 3004
    Discover the exclusive interview with Jean Chalopin, the creator of the series, and his daughter Tanis Chalopin, who composed the game's soundtrack. Inspector Gadget - MAD Time Party is out! https://linktr.ee/playinspectorgadget #gaming #videogames #gaming #inspectorgadget Get ready to save Metro City with your friends! Developed by Smart Tale Games, this new party game for 1-4 players will immerse you in the iconic world of Inspector Gadget. Stroll through the environments of the original series, meet characters such as Chief Quimby, Penny, or the M.A.D. agents, and use Inspector Gadget’s various gadgets to fight the M.A.D. forces. Inspector Gadget – MAD Time Party will come with 2 sticker sheets and a poster at launch on PlayStation 4, PlayStation 5 and Nintendo Switch! Wowsers! Play as the iconic Inspector Gadget and join your friends in this new party game! Metro City has fallen under the control of the evil Dr. Claw. In order to save the city, Inspector Gadget must use a time machine to go back in time. Unfortunately, the machine breaks down and the Inspector’s ancestors are teleported to the present. Your mission is to explore Metro City and confront Inspector Gadget’s ancestors to recover the missing parts of the machine. You’ll have to solve mini-game quests to unlock the bolts needed to repair it. Website: https://www.microids.com/ Twitter: https://twitter.com/Microids_off Facebook: https://www.facebook.com/microids/ Instagram: https://www.instagram.com/microids_official/ TikTok: https://tiktok.com/@microids
    https://wn.com/Inspecteur_Gadget_Mad_Time_Party_|_From_Then_To_Now_Tanis_And_Jean_Chalopin's_Interview
    How Deltec Bank Embraced Innovation & Crypto. An In-Depth Chat With Chairman of Deltec Jean Chalopin
    44:19

    How Deltec Bank Embraced Innovation & Crypto. An In-Depth Chat With Chairman of Deltec Jean Chalopin

    • Order:
    • Duration: 44:19
    • Uploaded Date: 29 Jun 2022
    • views: 1133
    Henri Arslanian and Jean Chalopin, Chairman of Deltec, share an in-depth discussion about Deltec and its role in the cryptocurrency ecosystem. The pair also explore the challenges of being active in digital assets and how that addresses issues with counterparties, including correspondent banks. Henri and Jean also examine everything from #AI, #VR, and quantum technology to the risk management framework used by banks when analyzing crypto companies to the potential of The Bahamas as a global crypto hub. This episode is ideal for anyone interested in learning more about the intersection of legacy banking and crypto along with some of the challenges in navigating this space. ___________ Powered by Bullish Bullish is a powerful new digital asset exchange built for institutions that offers deep liquidity, automated market making, and state-of-the-art security. Combining the innovations of DeFi with the regulated environment of traditional finance, Bullish empowers users to trade with certainty at scale across variable market conditions, in an environment backed by multibillion-dollar liquidity contributions from the Bullish Treasury. Follow @Bullish on twitter or visit https://bullish.com/henri to learn more. "Not investment advice. Digital assets and cryptocurrencies are high risk products. Consult your professional advisor before dealing in them. Bullish’s services are available in select locations only and not to U.S persons. Visit bullish.com for important information and risk warnings ___________ Timecodes 1:34 - Introduction and background of Jean Chalopin, CEO and Chairman of Deltec. 7:02 - Henri asks Jean to elaborate on how he transitioned from writing to becoming a CEO at one of the major crypto-facing banks and why he is passionate about the future of digital assets. 12:56 - Henri asks Jean to share how Deltec, a traditional regulated bank, was comfortable taking on crypto companies at an early stage while so many financial institutions remain hesitant about the crypto industry. 16:48 - Henri and Jean discuss how being active in digital assets creates issues with counterparties, including correspondent banks. What are some of the biggest challenges, and how were they navigated over the years? 19:28 - Henri asks Jean whether or not risk management frameworks should be different from what the traditional banking industry uses when dealing with crypto companies. 23:55 - Henri and Jean discuss Relm, the leading insurance provider for crypto companies, part of the Deltec International Group. What are some challenges when building an insurance service in the crypto space? 28:33 - Henri asks Jean to share his thoughts on AI, VR, and quantum technology and how they will impact the future of finance and banking. And will banking ever be considered fun? 34:25 - Henri and Jean discuss the role of The Bahamas as an emerging crypto hub and its success throughout the ecosystem over the last few years. 37:15 - Henri and his bell hit Jean with a rapid-fire round of questions, with Jean sharing one thing that he finds exciting about the crypto industry, what he most enjoyed about living in The Bahamas, which crypto CEO he finds the most impressive, and who is the one person, dead or alive, he would like to have dinner with. #Technology #Web #Ecosystem #Markets #Blockchain #Cryptocurrency #Podcast #Success #Strategy #insurance #quantumtechnology #cryptohub #banking
    https://wn.com/How_Deltec_Bank_Embraced_Innovation_Crypto._An_In_Depth_Chat_With_Chairman_Of_Deltec_Jean_Chalopin
    Cartoonist : Rencontre avec Jean Chalopin
    9:05

    Cartoonist : Rencontre avec Jean Chalopin

    • Order:
    • Duration: 9:05
    • Uploaded Date: 10 Feb 2015
    • views: 1294
    Rencontre avec Bernard Deyriès : Producteur d'Ulysse 31, Jayce et les conquérants, Inspecteur Gadget Mangas partenaire du festival cartoonist Rendez-vous sur
    https://wn.com/Cartoonist_Rencontre_Avec_Jean_Chalopin
    Jean Chalopin : d'Inspecteur Gadget à FTX, le parcours d'un homme en roux libre
    12:26

    Jean Chalopin : d'Inspecteur Gadget à FTX, le parcours d'un homme en roux libre

    • Order:
    • Duration: 12:26
    • Uploaded Date: 03 May 2024
    • views: 21549
    Dans ce quatrième épisode de "De Zéro à Héros", on va s'intéresser au parcours du fondateur des dessins animés français mythiques des années 90 et 2000, d'Inspecteur Gadget aux Mystérieuses Cités d'Or, puis qui s'est retrouvé au coeur du scandale FTX aux milliards de dollars. Vidéo réalisée par Pop Media https://instagram.com/popmedia_agency Réseaux sociaux de Sadek : https://twitter.com/sadekniuum https://instagram.com/sadek93zoo https://www.facebook.com/SadekNiuuum Musique utilisée : https://shorturl.at/oBFL7
    https://wn.com/Jean_Chalopin_D'Inspecteur_Gadget_À_Ftx,_Le_Parcours_D'un_Homme_En_Roux_Libre
    Jean Chalopin #20
    1:14:32

    Jean Chalopin #20

    • Order:
    • Duration: 1:14:32
    • Uploaded Date: 11 Jul 2022
    • views: 452
    Enfants du Soleil ou Gogo-gadget-o-bras, ça vous parle ? Ulysse 31, Jayce, Musclor, les Bisounours pour ne citer que les plus connus… Derrière tous ces dessins animés, il y un homme : notre invité, Jean Chalopin, que nous recevons en duplex de New York. Aujourd’hui, nous vous proposons de découvrir son parcours, qui dévoile l’envers du décor de notre enfance, au travers des liens qu’il a tissés, l’amenant à créer la première société mondiale de programmes pour enfants. Nous aborderons aussi son changement de vie radical alors restez avec nous jusqu’au bout. N'hésitez pas à vous abonner et à partager les "petits" liens... de connexion au podcast. Vous pouvez également nous mettre une note (bonne si possible) et laisser un commentaire dithyrambique (évidemment 😏 ) Vous avez des questions, suggestions, remarques ? Vous souhaitez sponsoriser « les petits liens » ? Envoyez-nous un petit email à lespetitsliens@dsr.media ou contactez-nous sur Instagram https://www.instagram.com/lespetitsliens/ou Facebook https://www.facebook.com/lespetitslienspodcast Générique : FLY composé par Benjamin Franklin et Mickael Winter ©miss wave music www.mickael-winter.fr Créé en 2009, le groupe DSR est un réseau d'entraide, facilitateur du quotidien, ayant pour but de mettre ses membres en relation afin de trouver des solutions à leurs questions personnelles et professionnelles. Créée en 1990, Brief est une agence conseil en communication indépendante à la recherche du sens et de la différence.
    https://wn.com/Jean_Chalopin_20
    l'Univers Chalopin
    6:26

    l'Univers Chalopin

    • Order:
    • Duration: 6:26
    • Uploaded Date: 29 Apr 2022
    • views: 1901
    Cette Vidéo retrace d'une façon concentrée le succès de l'entreprise DIC et de son créateur Jean Chalopin, j'ai pas pu citer tout les titres des dessins animés en dehors d' Ulysse 31, les Mystérieuses Cités d'Or, alors je le fais ici dans la description: Les Entrechats, Pole Position, Les Bisounours, Blondine au pays de l'arc-en-ciel, Denis la Malice, Les Popples, Dame Boucleline et les Minicouettes, Barbie et les Rockstars, Cops, GI Joe, La Légende de Zelda, Les Aventures de Sonic, Charlotte aux Fraises...
    https://wn.com/L'Univers_Chalopin
    Inspecteur Gadget - MAD Time Party | D'hier à Aujourd'hui : Interview de Tanis et Jean Chalopin
    3:41

    Inspecteur Gadget - MAD Time Party | D'hier à Aujourd'hui : Interview de Tanis et Jean Chalopin

    • Order:
    • Duration: 3:41
    • Uploaded Date: 14 Sep 2023
    • views: 1778
    Découvrez l’une interview exclusive du créateur de la série Jean Chalopin, et de sa fille Tanis Chalopin, qui a composé la bande son du jeu Inspecteur Gadget - MAD Time Party disponible partout dès aujourd'hui ! https://linktr.ee/playinspectorgadget Sauvez Métroville avec vos amis ! Développé par Smart Tale Games, ce nouveau Party Game jouable de 1 à 4 joueurs vous plongera dans l’univers culte d’Inspecteur Gadget. Baladez-vous dans les environnements de la série originale, rencontrez des personnages tels que le Chef Gontier, Sophie ou les agents de MAD et utilisez les divers gadgets de l’inspecteur pour combattre les forces de MAD. Le jeu disposera de deux planches de stickers et d’un poster à l’effigie de l’inspecteur au lancement sur PlayStation 4, PlayStation 5 et Nintendo Switch ! #inspecteurgadget #inspectorgadget #gogogadget #gaming #videogame #jeanchalopin Nom d’un gadget ! Incarnez l’emblématique Inspecteur Gadget et jouez avec vos amis dans ce nouveau Party Game. Métroville est tombée sous le contrôle du diabolique Docteur Gang. Afin de sauver la ville, l’Inspecteur Gadget doit utiliser une machine à remonter le temps pour retourner dans le passé. Malheureusement, celle-ci tombe en panne et les ancêtres du célèbre inspecteur se retrouvent téléportés dans le présent. Votre mission : Explorer Métroville et défier les ancêtres d’Inspecteur Gadget pour récupérer les pièces manquantes de la machine. Vous devrez résoudre des quêtes sous forme de mini-jeux pour débloquer les boulons nécessaires à sa réparation. Website: https://www.microids.com/ Twitter: https://twitter.com/Microids_off Facebook: https://www.facebook.com/microids/ Instagram: https://www.instagram.com/microids_official/ TikTok: https://tiktok.com/@microids
    https://wn.com/Inspecteur_Gadget_Mad_Time_Party_|_D'Hier_À_Aujourd'Hui_Interview_De_Tanis_Et_Jean_Chalopin
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Visualizing Music | Tanis Chalopin | TEDxBeaconStreet
      11:43
      Visualizing Music | Tanis Chalopin | TEDxBeaconStreetremove from playlist
    • Cartoonist 2013 : interview de Jean Chalopin
      8:06
      Cartoonist 2013 : interview de Jean Chalopinremove from playlist
    • Interview Jean Chalopin
      22:31
      Interview Jean Chalopinremove from playlist
    • Inspecteur Gadget - MAD Time Party | From then to now: Tanis and Jean Chalopin's Interview
      3:43
      Inspecteur Gadget - MAD Time Party | From then to now: Tanis and Jean Chalopin's Interviewremove from playlist
    • How Deltec Bank Embraced Innovation & Crypto. An In-Depth Chat With Chairman of Deltec Jean Chalopin
      44:19
      How Deltec Bank Embraced Innovation & Crypto. An In-Depth Chat With Chairman of Deltec Jean Chalopinremove from playlist
    • Cartoonist : Rencontre avec Jean Chalopin
      9:05
      Cartoonist : Rencontre avec Jean Chalopinremove from playlist
    • Jean Chalopin : d'Inspecteur Gadget à FTX, le parcours d'un homme en roux libre
      12:26
      Jean Chalopin : d'Inspecteur Gadget à FTX, le parcours d'un homme en roux libreremove from playlist
    • Jean Chalopin #20
      1:14:32
      Jean Chalopin #20remove from playlist
    • l'Univers Chalopin
      6:26
      l'Univers Chalopinremove from playlist
    • Inspecteur Gadget - MAD Time Party | D'hier à Aujourd'hui : Interview de Tanis et Jean Chalopin
      3:41
      Inspecteur Gadget - MAD Time Party | D'hier à Aujourd'hui : Interview de Tanis et Jean Chalopinremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Visualizing Music | Tanis Chalopin | TEDxBeaconStreet

    Tanis describes her music as visual. When she writes a song, she visualizes the images, probably because of her photography. She thinks, dreams and writes in both French and English, and is considering writing songs in Chinese too Tanis Tian-Xi Chalopin is a French and English music artist, singer, songwriter, photographer and composer.[1] Half-Singaporean and half-French, and based out of Paris, she was born to writer-producer Jean Chalopin[2] and one of Singapore’s first supermodels, Ethel Fong. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx
    11:43
    Visualizing Music | Tanis Chalopin | TEDxBeaconStreet
    Tanis describes her music as visual. When she writes a song, she visualizes the images, pr...
    published: 25 Jan 2017
    Play in Full Screen
    8:06
    Cartoonist 2013 : interview de Jean Chalopin
    Scénariste et producteur, Jean Chalopin est considéré comme un des papes de l'animation en...
    published: 21 Jun 2013
    Play in Full Screen
    22:31
    Interview Jean Chalopin
    Interview exclusive du scénariste et producteur français Jean Chalopin, dans le cadre du f...
    published: 26 Jun 2013
    Play in Full Screen
    3:43
    Inspecteur Gadget - MAD Time Party | From then to now: Tanis and Jean Chalopin's Interview
    Discover the exclusive interview with Jean Chalopin, the creator of the series, and his da...
    published: 14 Sep 2023
    Play in Full Screen
    44:19
    How Deltec Bank Embraced Innovation & Crypto. An In-Depth Chat With Chairman of Deltec Jean Chalopin
    Henri Arslanian and Jean Chalopin, Chairman of Deltec, share an in-depth discussion about ...
    published: 29 Jun 2022
    Play in Full Screen
    9:05
    Cartoonist : Rencontre avec Jean Chalopin
    Rencontre avec Bernard Deyriès : Producteur d'Ulysse 31, Jayce et les conquérants, Inspect...
    published: 10 Feb 2015
    Play in Full Screen
    12:26
    Jean Chalopin : d'Inspecteur Gadget à FTX, le parcours d'un homme en roux libre
    Dans ce quatrième épisode de "De Zéro à Héros", on va s'intéresser au parcours du fondateu...
    published: 03 May 2024
    Play in Full Screen
    1:14:32
    Jean Chalopin #20
    Enfants du Soleil ou Gogo-gadget-o-bras, ça vous parle ? Ulysse 31, Jayce, Musclor, les B...
    published: 11 Jul 2022
    Play in Full Screen
    6:26
    l'Univers Chalopin
    Cette Vidéo retrace d'une façon concentrée le succès de l'entreprise DIC et de son créateu...
    published: 29 Apr 2022
    Play in Full Screen
    3:41
    Inspecteur Gadget - MAD Time Party | D'hier à Aujourd'hui : Interview de Tanis et Jean Chalopin
    Découvrez l’une interview exclusive du créateur de la série Jean Chalopin, et de sa fille ...
    published: 14 Sep 2023
    Play in Full Screen

    Jean Chalopin

    Jean Chalopin (born 31 May 1950) is a French producer and writer. In 1971, Chalopin created the company DIC Audiovisuel, which later evolved into DIC Entertainment (which today part of DHX Media), and wrote and produced programs animated by Japanese studios. In 1987, Chalopin would later become found the company C&D (Créativité et Développement) after selling his shares in DiC and continued to produce cartoons in the late 80's and 90's. Jean Chalopin is married to Chinese/Singaporean ex-Model, Ethel Chalopin. They have two children, Janvier and Tanis.

    References

    External links

  • Jean Chalopin at the Internet Movie Database
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: jean chalopin

    Edit

    FTX Lawsuits Seek to Recover Millions Amid Bankruptcy Proceedings

    CoinChapter 11 Nov 2024
    Among those named in the FTX lawsuits are Anthony Scaramucci, Storybook Brawl developers, and Jean Chalopin of Deltec Bank ... Deltec Bank Chairman Jean Chalopin Faces FTX Lawsuit Over $11.5 Million Investment.
    Edit

    FTX drags Scaramucci, Storybook Brawl, others to court to recover funds

    Cryptopolitan 10 Nov 2024
    The filing includes Storybook Brawl, Meerun, Jean Chalopin ... Another defendant is Bahamas-based bank Deltec and its Chairman, Jean Chalopin ... The firm listed Chalopin because of an $11 million investment ...
    Edit

    FTX files lawsuits over $1 billion losses due to alleged market manipulation

    Cryptopolitan 09 Nov 2024
    He said. ... In addition to Storybook, FTX has sued Jean Chalopin, the chairman of Deltec Bank, to recover $11.5 million. FTX had invested the amount in FBH Corporation, a bank holding company led by Chalopin, which acquired Farmington State Bank in 2020.
    Edit

    Inspector Gadget (1983) Season 1 Streaming: Watch & Stream Online via Paramount Plus

    Coming Soon 08 May 2024
    Image Credits. First-run syndication. Inspector Gadget (1983) Season 1 is an�animated�sci-fi comedy�series created by the trio of�Andy Heyward,�Jean Chalopin,�and�Bruno Bianchi ... Claw, as well as his organization, MAD ... Go to ParamountPlus.com ... NOTE ... Movies.
    Edit

    Inspector Gadget (1983) Season 2 Streaming: Watch & Stream Online via Paramount Plus

    Coming Soon 08 May 2024
    Image Credits. First-run syndication. Inspector Gadget (1983) Season 2 is the sophomore chapter of the animated sci-fi�comedy series created by Andy Heyward,�Jean Chalopin,�and�Bruno Bianchi ... You can watch via Paramount Plus by following these steps. ... .
    Edit

    How Bankman-Fried sentence ties back to Whitman County’s Farmington Bank

    The Spokesman-Review 29 Mar 2024
    But everything changed in 2020 when the bank’s charter was purchased by holding company FBH Corporation, which is controlled by Jean Chalopin. Chalopin is also the founder of Deltec International Group, which is based in The Bahamas.
    Edit

    King Arthur & the Knights of Justice (1992) Season 1 Streaming: Watch and Stream Online ...

    Coming Soon 22 Mar 2024
    Credit. Peacock ... Created by Jean Chalopin and Diane Eskenazi, the series premiered on Syndication in 1992. Here’s how you can watch and stream King Arthur & the Knights of Justice (1992) Season 1 via streaming services such as Peacock ... NOTE ... Movies.
    Edit

    FTX Secretly Used Deltec Bank To Create And Sell Tether For Profit, Lawsuit Alleges

    Bitcoin World 19 Feb 2024
    Previous developments revealed connections between FTX and Moonstone Bank (aka Farmington State Bank), a firm headed by Deltec chairman Jean Chalopin ... Jean Chalopin, had no knowledge of the wrongdoing.
    Edit

    Was Sam Bankman-Fried seriously planning to buy Tether?

    Cryptopolitan 19 Feb 2024
    Reportedly, this bank has ties to the entertainment world through its chairman, Jean Chalopin, known for creating Inspector Gadget.
    Edit

    Webb: Unmasking Farmington - FTX, Fluent Finance and the Coming Digital Dollar

    Bitcoin Magazine 03 Jan 2024
    Moonstone’s Chief Digital Officer, Jean Chalopin’s son Janvier, later stated that the funding from Alameda Research had been “seed funding to execute our new plan of being a tech-focused bank.”.
    Edit

    Binance’s Noah Perlman: Ties to FTX, Epstein and Gemini Earn

    Scheerpost 02 Dec 2023
    in SEC filings alongside Jean Chalopin, the executive chairman of Deltec, the Bahamian bank that had been deeply tied to FTX and continues to be deeply tied to the controversial stablecoin Tether.
    Edit

    More of a cool hand puke: SBF, vegans, and a failure to communicate

    Hot Air 23 Aug 2023
    How some fortunes change, seemingly overnight ... People are talking bad about you. Sam Bankman-Fried fits that description ... https.//t.co/araVgIsCG3 ... Jean Chalopin, Chairman of Deltec Bank in The Bahamas, says the most impressive CEO he’s met in crypto is….
    Edit

    Federal Reserve shuts down Farmington Bank over unapproved stablecoin project

    Cryptoslate 18 Aug 2023
    The U.S. government agency said that it approved Farmington’s application to become a bank holding company in 2020, at which time it imposed certain conditions on the bank and its main shareholder, Jean Chalopin ... Reports on Jan ... ....
    Edit

    Fed brings enforcement action against FTX-linked Farmington State Bank

    Financial Express 18 Aug 2023
    The Federal Reserve Board issued a cease-and-desist order against the firms. Follow Us ... MeitY collaborates with NCPEDP to develop an assistive technology hub ... The holding company’s president and chairman is Bahamas resident Jean Chalopin ... .
    Edit

    Federal Reserve takes enforcement action against FTX-linked Farmington State Bank over stablecoin dealings

    Cryptopolitan 17 Aug 2023
    Allegations of improper business plan changes ... The bank has direct ties to notable figures in the crypto industry, such as Sam Bankman-Fried and Jean Jacques Pierre Chalopin, the principal shareholder of FBH Corporation, the owner of Farmington ... ....

    Most Viewed

    ×