'+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; })); }); -->

Śāsana

Śāsana (Sanskrit), (Pali: sāsana) is a term used by Buddhists and Shaivites to refer to their religion or non-religion. It has a range of possible translations, including teaching, practice, doctrine and Buddha Śãsana, which means "the teaching of the Buddha" (of which there have been several). Since in Buddhism there is no divine god the term is considered more accurate than the word "religion" as it denotes an adaptable philosophy and practice rather than a non-changing divine call from an all knowing god.

Sasana may also refer to the 5000 year dispensation of a particular Buddha. That is, we are living in the sasana of the Śakyamuni Buddha.

References

Sana'a

Sana'a (also spelled Sanaa or Sana; Arabic: صنعاء Ṣan‘ā’ pronounced [sˤɑnʕaːʔ], Yemeni Arabic: [ˈsˤɑnʕɑ]) is the largest city in Yemen and the centre of Sana'a Governorate. The city is not part of the Governorate, but forms the separate administrative district of "Amanat Al-Asemah". Under the Yemeni constitution, Sana'a is the capital of the country, although the seat of the internationally recognised government moved to Aden in the aftermath of the 2014–15 Yemeni coup d'état. Aden was declared as the temporary capital by President Abd Rabbuh Mansur Hadi in March 2015.

Sana'a is one of the oldest continuously inhabited cities in the world. At an altitude of 2,300 metres (7,500 ft), it is also one of the highest capital cities in the world. Sana'a has a population of approximately 1,937,500 (2012), making it Yemen's largest city.

The old city of Sana'a, a UNESCO World Heritage Site, has a distinctive visual character due to its unique architectural characteristics, most notably expressed in its multi-storey buildings decorated with geometric patterns. In the conflict that raged in 2015, bombs hit UNESCO sites. Located here is the Great Mosque of Sana'a, the largest in the city.

Sana Nawaz

Sana Nawaz often credited as Sana (Urdu: ثناء), is a Pakistani film actress and model.

Nawaz was introduced to the Lollywood film industry by director Syed Noor in his film Sangam in 1997.

Filmography

Reality show

  • Madventures - Ary Digital - Winner
  • See also

  • List of Lollywood actors
  • References

    External links

  • Sana at the Internet Movie Database
  • Podcasts:

    さな

    Sana

    ALBUMS

    Sana

    ALBUMS

    • SANA - Sandak Wela (සඳක් වෙලා) | Official Music Video

      SANA - Sandak Wela (සඳක් වෙලා) Alawanthakama: https://youtu.be/vcUnlBxR5Rw Stream Now: https://sana.lnk.to/SandakWela Lyrics: This boy is just oh my my සඳක් වෙලා මනරම් පහන් කළ ඇළෙන් දොළෙන් මුතු මල් මදක් පමා නොවියන් පුදන්නකො වෙදැඟිල්ලේ මුදු රන්// දෙදරන්නට මා හද පතුලේ දිදුලන්නට මා නෙතු ගැඹුරේ ඔබේ චණ්ඩ රූපෙ වේවි සන්තාපයෙන් සුවේ// Move your body in time with my body ශුංගාරෙට ගී වැල් ගලාවී නුරාවෙන් වෙලී මා දෑසේ සුරා මත් වෙලා වගේ// Artiste: SANA Melody & Lyrics: Sankha B Music Production: Adeesha Beats & Sankha B Guitar: Nuwan Thenuwara Mixing & Mastering: Adeesha Beats Production Label: House of Max Music Investments Video Production: PAPA Films Script & Director: Sajith Akmeemana Director of Photography: Striner Macklain Adams Editor: Malindu Lakshan Colorist: Yashoda Dhanupama @ Co...

      published: 30 Aug 2024
    • SANA - Alawanthakama ( ආලවන්තකම )👏 | Official Music Video

      SANA - Alawanthakama ( ආලවන්තකම ) 👏 Stream Now: https://sana.lnk.to/Alawanthakama Lyrics: ආලවන්තකම කොල්ලකන්න මට දීලා යන්න හද ගැස්ම නීල අම්බරේ පාට සොරාගෙන සලන්න මට ඔය ඇස් දෙක// නාස්ති නෑ ඔබ ළයේ ගෙවන කල නිරන්තරේ පැය කෝටියක් ඔබේ නෙතින් මා දෙසට බලාලා මැවෙන්නෙ නව පෙම් හෝඩියක්// සීත පිණිපොදේ මාගේ උණුහුමයි මාගේ උණුහුමයි මාගේ උණුහුමයි.. සාත්තුවයි මගෙ කැඩුණු බිඳුණු හද ඔබෙන් හොරාගෙන හාදුවක් නුරා තටාකේ පාවී යන්නට ඉතින් හදමු අපි පාරුවක්// සීත පිණිපොදේ මාගේ උණුහුමයි මාගේ උණුහුමයි මාගේ උණුහුමයි.. Artiste | SANA Melody & Lyrics | Sankha B Music Production | Adeesha Beats & Sankha B Guitar & Bass | Nuwan Thenuwara Mixing & Mastering | Adeesha Beats Production Label | House of Max Music Investments Video Production | PAPA Films Script & Director | Sajith Akmeemana DOP | Nishan B Art Director | Sa...

      published: 31 Jan 2025
    • I Belong to the Zoo - Sana (Official Music Video)

      Directed by: Neil Lee Special thanks to: Steffi Hain, Carl Diego, Ferlyn Landoy, Nicholo Basa, Paolo Tabuena, 49-B Heirloom Kitchen, Paeng's, Satchmi, B Hotel, Yellow Room Music ---------------------------------- Download & stream I Belong to the Zoo's 'Sana' now: Spotify: https://spoti.fi/2reXIlg iTunes: https://apple.co/2FE51al Google Play: https://bit.ly/2rhZX7g Bandcamp: https://bit.ly/2JKauPl ---------------------------------- Watch 'Sana' (Official Lyric Video) here: https://www.youtube.com/watch?v=g7GcrQWEdok ---------------------------------- Follow I Belong to the Zoo: https://www.facebook.com/ibttz https://twitter.com/ibelongtothezoo https://www.instagram.com/ibelongtothezoo ---------------------------------- Lyrics Umuwi lang tila bang lahat nagbago na Nawalan na ng s...

      published: 22 Jun 2018
    • 🌟#TWICE #SANA makes it look EASY🎇 #LE_SSERAFIM #KIMCHAEWON#SAKURA #MakeItLookEasy #LE_SSERAFIM_Smart

      published: 02 Mar 2024
    • Dex won! #sana

      published: 31 May 2024
    • Twice imitating Sana PERFECTLY 😭

      #shorts #viral #kpopedit #sana #twice Please like and subscribe, thank you so much! I do not own any of the clips used, no copyright infringement is intended. All rights go to their respective owners. Clips taken from: Twice YouTube, Twitter Tags: TWICE, Twice, once, ONCE, OT9, Twice anniversary, Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, Tzuyu, Samo chaotic duo, Twice chaotic moments, IM NAYEON, The Feels, Twice ships, Twice Samo, Twice Michaeng, Twice 2yeon, Twice Saida, Twice Dahmo, Twice J line, Twice 3mix, Twice Dubchaeng, Twice schoolmealclub, Twice maknae line, Twice unnies, ramen sisters, Nayeon solo, twice clips, twice funny clips, twice funny moments compilation, twice on crack, twice moments, twice high tension moments, teudoongie, TTT, twice date, twice ...

      published: 08 Mar 2024
    • Omg?! Sana! The face card?🫶🏼 #sana #twice #kpop #shorts #beautiful #viral #트와이스 #사나

      Kpop group Twice Sana went viral for her visual during her departure to Milan fashion week

      published: 14 Jun 2024
    • I Belong to the Zoo - Sana / Lyrics

      #lyrics #sana #ibelongtothezoo 🎧 I Belong to the Zoo - Sana 🔴Subscribe for more videos! 🔔Turn on notifications to stay updated with new uploads! 🎤Lyrics: Umuwi nang tila bang lahat nagbago na Nawalan na ng sigla ang 'yong mga mata Ngayon ko lang naramdaman ang lamig ng gabi Kahit na magdamag na tayong magkatabi Bakit ka nag-iba? Mayro'n na bang iba? Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kitang sumaya't umalis Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kitang umalis Umalis Binibilang ang hakbang hanggang wala ka na Nagbabaka-sakaling lilingon ka pa Hindi na ba mababalik ang mga sandali Mga panahong may lalim pa ang iyong ngiti? Bakit ka nag-iba? Mayro'n na bang iba? Sana sinabi mo Para 'di n...

      published: 20 Feb 2023
    • Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong... | Saksi

      Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong DOTr Sec. Vince Dizon  Pinasususpinde ng bagong Transportation Secretary na si Vince Dizon ang cashless toll collection na ipapatupad na sana sa mga expressway simula March 15. Saksi is GMA Network's late-night newscast hosted by Arnold Clavio and Pia Arcangel. It airs Mondays to Fridays at 10:20 PM (PHL Time) on GMA-7. For more videos from Saksi, visit http://www.gmanews.tv/saksi. . #GMAIntegratedNews #KapusoStream Breaking news and stories from the Philippines and abroad: GMA Integrated News Portal: http://www.gmanews.tv Facebook: http://www.facebook.com/gmanews TikTok: https://www.tiktok.com/@gmanews Twitter: http://www.twitter.com/gmanews Instagram: http://www.instagram.com/gmanews GMA Network ...

      published: 21 Feb 2025
    • Sana I Belong to the Zoo Lyrics HD

      LIKE | COMMENT | SHARE ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ NO COPYRIGHT INFRINGEMENT .Credits to respected Artist and its Record Label.. Help us to promote this channel by LIKING and SHARING Don't Forget to Subscribe ======================

      published: 25 May 2018
    SANA - Sandak Wela (සඳක් වෙලා) | Official Music Video
    3:41

    SANA - Sandak Wela (සඳක් වෙලා) | Official Music Video

    • Order:
    • Duration: 3:41
    • Uploaded Date: 30 Aug 2024
    • views: 13656758
    SANA - Sandak Wela (සඳක් වෙලා) Alawanthakama: https://youtu.be/vcUnlBxR5Rw Stream Now: https://sana.lnk.to/SandakWela Lyrics: This boy is just oh my my සඳක් වෙලා මනරම් පහන් කළ ඇළෙන් දොළෙන් මුතු මල් මදක් පමා නොවියන් පුදන්නකො වෙදැඟිල්ලේ මුදු රන්// දෙදරන්නට මා හද පතුලේ දිදුලන්නට මා නෙතු ගැඹුරේ ඔබේ චණ්ඩ රූපෙ වේවි සන්තාපයෙන් සුවේ// Move your body in time with my body ශුංගාරෙට ගී වැල් ගලාවී නුරාවෙන් වෙලී මා දෑසේ සුරා මත් වෙලා වගේ// Artiste: SANA Melody & Lyrics: Sankha B Music Production: Adeesha Beats & Sankha B Guitar: Nuwan Thenuwara Mixing & Mastering: Adeesha Beats Production Label: House of Max Music Investments Video Production: PAPA Films Script & Director: Sajith Akmeemana Director of Photography: Striner Macklain Adams Editor: Malindu Lakshan Colorist: Yashoda Dhanupama @ Coloration VFX: Gaishu G, Niroshan Yowel Artworks: Nick Karunarathna, Kavindu Dilshan Assistant Director: Hashan De Alwis Production Manager: Hashan De Alwis Art Director: Sadun Madurapperuma Hair/Make-Up: Priyantha Dissanayake Costume Designer: Costumes by Kail Still Photography: Dilina Abeysekara Dancing Crew: Cool Steps Choreographer: Ramod Malaka Focus Puller: Tharindu Sandaruwan Gaffer: Maduranga Bandara Cast: Ishan Piyankara Dinith Damian Tinalee Nishadini Bandara Assistant Department: 2nd Assistant Director: Kosala D Maduraweera HMU Assistant: Avishka Chathuranga Production Assistant: Mithila Kumara Unit: Equipment: EPIC 84 Location | Better Butter Bakery Special Thanks: Sanjaya Padmaperuma Ammi and Appachchi Akki Senal Kapugeekiyana Umara Sinhawansa Team Better Butter Milo (The Dog) Nishadini Bandara Thanks to everyone who supported!
    https://wn.com/Sana_Sandak_Wela_(සඳක්_වෙලා)_|_Official_Music_Video
    SANA - Alawanthakama ( ආලවන්තකම )👏 | Official Music Video
    3:48

    SANA - Alawanthakama ( ආලවන්තකම )👏 | Official Music Video

    • Order:
    • Duration: 3:48
    • Uploaded Date: 31 Jan 2025
    • views: 259345
    SANA - Alawanthakama ( ආලවන්තකම ) 👏 Stream Now: https://sana.lnk.to/Alawanthakama Lyrics: ආලවන්තකම කොල්ලකන්න මට දීලා යන්න හද ගැස්ම නීල අම්බරේ පාට සොරාගෙන සලන්න මට ඔය ඇස් දෙක// නාස්ති නෑ ඔබ ළයේ ගෙවන කල නිරන්තරේ පැය කෝටියක් ඔබේ නෙතින් මා දෙසට බලාලා මැවෙන්නෙ නව පෙම් හෝඩියක්// සීත පිණිපොදේ මාගේ උණුහුමයි මාගේ උණුහුමයි මාගේ උණුහුමයි.. සාත්තුවයි මගෙ කැඩුණු බිඳුණු හද ඔබෙන් හොරාගෙන හාදුවක් නුරා තටාකේ පාවී යන්නට ඉතින් හදමු අපි පාරුවක්// සීත පිණිපොදේ මාගේ උණුහුමයි මාගේ උණුහුමයි මාගේ උණුහුමයි.. Artiste | SANA Melody & Lyrics | Sankha B Music Production | Adeesha Beats & Sankha B Guitar & Bass | Nuwan Thenuwara Mixing & Mastering | Adeesha Beats Production Label | House of Max Music Investments Video Production | PAPA Films Script & Director | Sajith Akmeemana DOP | Nishan B Art Director | Sadun Madurapperuma Editor | Malindu Lakshan Colorist | Yashoda Dhanupama AD and Production Manager | Hashan De Alwis Choreographer | Ramod Malaka MUA | Chalani Wijerathna Costume Designer | Shalini Abeysekara Dancing Crew | Cool Steps Still Photography | Nawan Perera Artworks | Kavindu Dilshan Gaffer | Maduranga Bandara Cast Ashika Mathasinghe Pasindu Vithanage Nadeeka Hewakandambi Samadhi Gamage Vidura Ekanayaka Art Department Ruwan Madurapperuma Mithila Kumara Sampath Kumara Special Thanks: Ammi and Appachchi Akki Senal Kapugeekiyana My Digital Team Thanks to everyone who supported!
    https://wn.com/Sana_Alawanthakama_(_ආලවන්තකම_)👏_|_Official_Music_Video
    I Belong to the Zoo - Sana (Official Music Video)
    4:46

    I Belong to the Zoo - Sana (Official Music Video)

    • Order:
    • Duration: 4:46
    • Uploaded Date: 22 Jun 2018
    • views: 224796326
    Directed by: Neil Lee Special thanks to: Steffi Hain, Carl Diego, Ferlyn Landoy, Nicholo Basa, Paolo Tabuena, 49-B Heirloom Kitchen, Paeng's, Satchmi, B Hotel, Yellow Room Music ---------------------------------- Download & stream I Belong to the Zoo's 'Sana' now: Spotify: https://spoti.fi/2reXIlg iTunes: https://apple.co/2FE51al Google Play: https://bit.ly/2rhZX7g Bandcamp: https://bit.ly/2JKauPl ---------------------------------- Watch 'Sana' (Official Lyric Video) here: https://www.youtube.com/watch?v=g7GcrQWEdok ---------------------------------- Follow I Belong to the Zoo: https://www.facebook.com/ibttz https://twitter.com/ibelongtothezoo https://www.instagram.com/ibelongtothezoo ---------------------------------- Lyrics Umuwi lang tila bang lahat nagbago na Nawalan na ng sigla ang iyong mga mata Ngayon ko lang naramdaman ang lamig ng gabi Kahit na magdamag na tayong magkatabi Bakit ka nag-iba Meron na bang iba Sana sinabi mo, para 'di na umasang may tayo pa sa huli Sana sinabi mo, hahayaan naman kitang sumaya't umalis Sana sinabi mo, para 'di na umasang may tayo pa sa huli Sana sinabi mo, hahayaan naman kitang umalis Binibilang ang hakbang hanggang wala ka na Nagbabakasakaling lilingon ka pa Hindi na ba mababalik ang mga sandali Mga panahong may lalim pa ang iyong ngiti Sana sinabi mo, para 'di na umasang may tayo pa sa huli Sana sinabi mo, hahayaan naman kitang sumaya't umalis Sana sinabi mo, para 'di na umasang may tayo pa sa huli Sana sinabi mo, hahayaan naman kita Sana sinabi mo, para ang mga ayaw mo'y aking iibahin Diba sinabi mo, basta't tayong dalwa'y sasaya ang mundong mapait Diba sinabi ko, gagawin kong lahat upang tayo parin sa huli Biglang nalaman ko, may hinihintay ka lang palang bumalik Sana sinabi mo, dahil 'di ko maisip, ano bang nagawa kong mali Sana sinabi mo, para 'di na umibig ang puso ko muli Sana sinabi mo, para 'di na umasang may tayo pa sa huli Sana sinabi mo, hahayaan naman kita Sana sinabi mo, para 'di na umasang may tayo pa sa huli Sana sinabi mo
    https://wn.com/I_Belong_To_The_Zoo_Sana_(Official_Music_Video)
    🌟#TWICE #SANA makes it look EASY🎇 #LE_SSERAFIM #KIMCHAEWON#SAKURA #MakeItLookEasy #LE_SSERAFIM_Smart
    0:15

    🌟#TWICE #SANA makes it look EASY🎇 #LE_SSERAFIM #KIMCHAEWON#SAKURA #MakeItLookEasy #LE_SSERAFIM_Smart

    • Order:
    • Duration: 0:15
    • Uploaded Date: 02 Mar 2024
    • views: 8710710
    https://wn.com/🌟_Twice_Sana_Makes_It_Look_Easy🎇_Le_Sserafim_Kimchaewon_Sakura_Makeitlookeasy_Le_Sserafim_Smart
    Dex won!  #sana
    0:16

    Dex won! #sana

    • Order:
    • Duration: 0:16
    • Uploaded Date: 31 May 2024
    • views: 381661
    https://wn.com/Dex_Won_Sana
    Twice imitating Sana PERFECTLY 😭
    0:33

    Twice imitating Sana PERFECTLY 😭

    • Order:
    • Duration: 0:33
    • Uploaded Date: 08 Mar 2024
    • views: 1296976
    #shorts #viral #kpopedit #sana #twice Please like and subscribe, thank you so much! I do not own any of the clips used, no copyright infringement is intended. All rights go to their respective owners. Clips taken from: Twice YouTube, Twitter Tags: TWICE, Twice, once, ONCE, OT9, Twice anniversary, Nayeon, Jeongyeon, Momo, Sana, Jihyo, Mina, Dahyun, Chaeyoung, Tzuyu, Samo chaotic duo, Twice chaotic moments, IM NAYEON, The Feels, Twice ships, Twice Samo, Twice Michaeng, Twice 2yeon, Twice Saida, Twice Dahmo, Twice J line, Twice 3mix, Twice Dubchaeng, Twice schoolmealclub, Twice maknae line, Twice unnies, ramen sisters, Nayeon solo, twice clips, twice funny clips, twice funny moments compilation, twice on crack, twice moments, twice high tension moments, teudoongie, TTT, twice date, twice spoilers, #twice, #once, #jihyo, #트와이스, #지효, #nayeon, #나연, #jeongyeon, #정연, #momo, #모모, #sana, #사나, #mina, #미나, #dahyun, #다현, #chaeyoung, #채영, #tzuyu, #쯔위, Kpop, vlive, Twice vlive, twice edits, kpop edits, kpop shorts, #kpop, #shorts, #vlive, #between1&2, #talkthattalk, #TZUYUWITHBANGS, #MOONLIGHTSUNRISE, TWICE WORLD TOUR, #viral, #fyp, #twicecomeback, twice english single, #SETMEFREE, set me free, 5th world tour, #5th_world_tour, #READYTOBE #readytobe #misamo #MISAMO #killingmegood, #donottouch, #igotyou , #withYOUth, #onespark, Nayeon IMITATING Sana PERFECTLY, twice imitating each other, twice copying each other
    https://wn.com/Twice_Imitating_Sana_Perfectly_😭
    Omg?! Sana! The face card?🫶🏼 #sana #twice #kpop #shorts #beautiful #viral #트와이스 #사나
    0:12

    Omg?! Sana! The face card?🫶🏼 #sana #twice #kpop #shorts #beautiful #viral #트와이스 #사나

    • Order:
    • Duration: 0:12
    • Uploaded Date: 14 Jun 2024
    • views: 95637
    Kpop group Twice Sana went viral for her visual during her departure to Milan fashion week
    https://wn.com/Omg_Sana_The_Face_Card_🫶🏼_Sana_Twice_Kpop_Shorts_Beautiful_Viral_트와이스_사나
    I Belong to the Zoo - Sana / Lyrics
    4:35

    I Belong to the Zoo - Sana / Lyrics

    • Order:
    • Duration: 4:35
    • Uploaded Date: 20 Feb 2023
    • views: 2553622
    #lyrics #sana #ibelongtothezoo 🎧 I Belong to the Zoo - Sana 🔴Subscribe for more videos! 🔔Turn on notifications to stay updated with new uploads! 🎤Lyrics: Umuwi nang tila bang lahat nagbago na Nawalan na ng sigla ang 'yong mga mata Ngayon ko lang naramdaman ang lamig ng gabi Kahit na magdamag na tayong magkatabi Bakit ka nag-iba? Mayro'n na bang iba? Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kitang sumaya't umalis Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kitang umalis Umalis Binibilang ang hakbang hanggang wala ka na Nagbabaka-sakaling lilingon ka pa Hindi na ba mababalik ang mga sandali Mga panahong may lalim pa ang iyong ngiti? Bakit ka nag-iba? Mayro'n na bang iba? Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kitang sumaya't umalis Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kita... Sana sinabi mo Para ang mga ayaw mo'y aking iibahin 'Di ba, sinabi mo Basta't tayong dalawa'y sasaya ang mundong mapait 'Di ba, sinabi ko Gagawin ko'ng lahat upang tayo pa rin sa huli Biglang nalaman ko May hinihintay ka lang palang bumalik Sana sinabi mo Dahil 'di ko maisip, ano ba'ng nagawa kong mali? Sana sinabi mo Para 'di na umibig ang puso kong muli Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi mo Hahayaan naman kita... Sana sinabi mo Para 'di na umasang may tayo pa sa huli Sana sinabi
    https://wn.com/I_Belong_To_The_Zoo_Sana_Lyrics
    Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong... | Saksi
    0:46

    Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong... | Saksi

    • Order:
    • Duration: 0:46
    • Uploaded Date: 21 Feb 2025
    • views: 257
    Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong DOTr Sec. Vince Dizon  Pinasususpinde ng bagong Transportation Secretary na si Vince Dizon ang cashless toll collection na ipapatupad na sana sa mga expressway simula March 15. Saksi is GMA Network's late-night newscast hosted by Arnold Clavio and Pia Arcangel. It airs Mondays to Fridays at 10:20 PM (PHL Time) on GMA-7. For more videos from Saksi, visit http://www.gmanews.tv/saksi. . #GMAIntegratedNews #KapusoStream Breaking news and stories from the Philippines and abroad: GMA Integrated News Portal: http://www.gmanews.tv Facebook: http://www.facebook.com/gmanews TikTok: https://www.tiktok.com/@gmanews Twitter: http://www.twitter.com/gmanews Instagram: http://www.instagram.com/gmanews GMA Network Kapuso programs on GMA Pinoy TV: https://gmapinoytv.com/subscribe
    https://wn.com/Cashless_Toll_Collection_Na_Ipapatupad_Na_Sana_Sa_March_15,_Ipinatigil_Muna_Ni_Bagong..._|_Saksi
    Sana   I Belong to the Zoo Lyrics HD
    4:42

    Sana I Belong to the Zoo Lyrics HD

    • Order:
    • Duration: 4:42
    • Uploaded Date: 25 May 2018
    • views: 75535650
    LIKE | COMMENT | SHARE ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ NO COPYRIGHT INFRINGEMENT .Credits to respected Artist and its Record Label.. Help us to promote this channel by LIKING and SHARING Don't Forget to Subscribe ======================
    https://wn.com/Sana_I_Belong_To_The_Zoo_Lyrics_Hd
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • SANA - Sandak Wela (සඳක් වෙලා) | Official Music Video
      3:41
      SANA - Sandak Wela (සඳක් වෙලා) | Official Music Videoremove from playlist
    • SANA - Alawanthakama ( ආලවන්තකම )👏 | Official Music Video
      3:48
      SANA - Alawanthakama ( ආලවන්තකම )👏 | Official Music Videoremove from playlist
    • I Belong to the Zoo - Sana (Official Music Video)
      4:46
      I Belong to the Zoo - Sana (Official Music Video)remove from playlist
    • Twice imitating Sana PERFECTLY 😭
      0:33
      Twice imitating Sana PERFECTLY 😭remove from playlist
    • I Belong to the Zoo - Sana / Lyrics
      4:35
      I Belong to the Zoo - Sana / Lyricsremove from playlist
    • Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong... | Saksi
      0:46
      Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong... | Saksiremove from playlist
    • Sana   I Belong to the Zoo Lyrics HD
      4:42
      Sana I Belong to the Zoo Lyrics HDremove from playlist
    PLAYLIST TIME: 0:00 / 23:34

    SANA - Sandak Wela (සඳක් වෙලා) | Official Music Video

    SANA - Sandak Wela (සඳක් වෙලා) Alawanthakama: https://youtu.be/vcUnlBxR5Rw Stream Now: https://sana.lnk.to/SandakWela Lyrics: This boy is just oh my my සඳක් වෙලා මනරම් පහන් කළ ඇළෙන් දොළෙන් මුතු මල් මදක් පමා නොවියන් පුදන්නකො වෙදැඟිල්ලේ මුදු රන්// දෙදරන්නට මා හද පතුලේ දිදුලන්නට මා නෙතු ගැඹුරේ ඔබේ චණ්ඩ රූපෙ වේවි සන්තාපයෙන් සුවේ// Move your body in time with my body ශුංගාරෙට ගී වැල් ගලාවී නුරාවෙන් වෙලී මා දෑසේ සුරා මත් වෙලා වගේ// Artiste: SANA Melody & Lyrics: Sankha B Music Production: Adeesha Beats & Sankha B Guitar: Nuwan Thenuwara Mixing & Mastering: Adeesha Beats Production Label: House of Max Music Investments Video Production: PAPA Films Script & Director: Sajith Akmeemana Director of Photography: Striner Macklain Adams Editor: Malindu Lakshan Colorist: Yashoda Dhanupama @ Coloration VFX: Gaishu G, Niroshan Yowel Artworks: Nick Karunarathna, Kavindu Dilshan Assistant Director: Hashan De Alwis Production Manager: Hashan De Alwis Art Director: Sadun Madurapperuma Hair/Make-Up: Priyantha Dissanayake Costume Designer: Costumes by Kail Still Photography: Dilina Abeysekara Dancing Crew: Cool Steps Choreographer: Ramod Malaka Focus Puller: Tharindu Sandaruwan Gaffer: Maduranga Bandara Cast: Ishan Piyankara Dinith Damian Tinalee Nishadini Bandara Assistant Department: 2nd Assistant Director: Kosala D Maduraweera HMU Assistant: Avishka Chathuranga Production Assistant: Mithila Kumara Unit: Equipment: EPIC 84 Location | Better Butter Bakery Special Thanks: Sanjaya Padmaperuma Ammi and Appachchi Akki Senal Kapugeekiyana Umara Sinhawansa Team Better Butter Milo (The Dog) Nishadini Bandara Thanks to everyone who supported!
    3:41
    SANA - Sandak Wela (සඳක් වෙලා) | Official Music Video
    SANA - Sandak Wela (සඳක් වෙලා) Alawanthakama: https://youtu.be/vcUnlBxR5Rw Stream Now: h...
    published: 30 Aug 2024
    Play in Full Screen
    3:48
    SANA - Alawanthakama ( ආලවන්තකම )👏 | Official Music Video
    SANA - Alawanthakama ( ආලවන්තකම ) 👏 Stream Now: https://sana.lnk.to/Alawanthakama Lyrics...
    published: 31 Jan 2025
    Play in Full Screen
    4:46
    I Belong to the Zoo - Sana (Official Music Video)
    Directed by: Neil Lee Special thanks to: Steffi Hain, Carl Diego, Ferlyn Landoy, Nicholo ...
    published: 22 Jun 2018
    Play in Full Screen
    0:15
    🌟#TWICE #SANA makes it look EASY🎇 #LE_SSERAFIM #KIMCHAEWON#SAKURA #MakeItLookEasy #LE_SSERAFIM_Smart
    published: 02 Mar 2024
    Play in Full Screen
    0:16
    Dex won! #sana
    published: 31 May 2024
    Play in Full Screen
    0:33
    Twice imitating Sana PERFECTLY 😭
    #shorts #viral #kpopedit #sana #twice Please like and subscribe, thank you so much! I do ...
    published: 08 Mar 2024
    Play in Full Screen
    0:12
    Omg?! Sana! The face card?🫶🏼 #sana #twice #kpop #shorts #beautiful #viral #트와이스 #사나
    Kpop group Twice Sana went viral for her visual during her departure to Milan fashion week...
    published: 14 Jun 2024
    Play in Full Screen
    4:35
    I Belong to the Zoo - Sana / Lyrics
    #lyrics #sana #ibelongtothezoo 🎧 I Belong to the Zoo - Sana 🔴Subscribe for more videos...
    published: 20 Feb 2023
    Play in Full Screen
    0:46
    Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong... | Saksi
    Cashless toll collection na ipapatupad na sana sa March 15, ipinatigil muna ni bagong DOTr...
    published: 21 Feb 2025
    Play in Full Screen
    4:42
    Sana I Belong to the Zoo Lyrics HD
    LIKE | COMMENT | SHARE ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═...
    published: 25 May 2018
    Play in Full Screen

    Śāsana

    Śāsana (Sanskrit), (Pali: sāsana) is a term used by Buddhists and Shaivites to refer to their religion or non-religion. It has a range of possible translations, including teaching, practice, doctrine and Buddha Śãsana, which means "the teaching of the Buddha" (of which there have been several). Since in Buddhism there is no divine god the term is considered more accurate than the word "religion" as it denotes an adaptable philosophy and practice rather than a non-changing divine call from an all knowing god.

    Sasana may also refer to the 5000 year dispensation of a particular Buddha. That is, we are living in the sasana of the Śakyamuni Buddha.

    References

    '); } 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: sana

    Edit

    Israel carries out strikes on two Syrian cities: SANA

    The New Arab 03 May 2025
    Israeli strikes targeted the vicinity of Syria's Damascus countryside and Hama late on Friday, Syrian state news agency SANA reported on Friday, without providing further details ... ....
    Edit

    US Enemy Targets Sana’a, Al-Jawf, & Amran With A Series Of Raids

    Al Thawra 03 May 2025
    A new US aggression targeted the governorates of Sana’a, Al-Jawf, and ...
    Edit

    JV Ejercito's advice to moto vlogger Yanna: 'Sana I-delete na lang niya yung video'

    Manila Bulletin 03 May 2025
    Sana matuto po siya sa insidente ito (I hope she learns from this incident),” Ejercito said in a radio interview over Usapang Senado on DWIZ ... “Sana po kahit na meron yun, panuorin nyo pa rin yung mga vlogs ng mga influencers… at sana puntahan nyo po.
    Edit

    Sana Biotechnology, Inc. Class Action: Levi & Korsinsky Reminds Sana Biotechnology, Inc. Investors of the ...

    Victoria Advocate 02 May 2025
    NEW YORK, May 2, 2025 /PRNewswire/ -- Levi & Korsinsky, LLP notifies investors in Sana Biotechnology, Inc. ("Sana Biotechnology, Inc." or the "Company") (NASDAQ. SANA) of a class action securities lawsuit ....
    Edit

    Shareholders that lost money on Sana Biotechnology, Inc. (SANA) should contact Levi & Korsinsky about ...

    Nasdaq Globe Newswire 02 May 2025
    NEW YORK, May 02, 2025 (GLOBE NEWSWIRE) -- Levi & Korsinsky, LLP notifies investors in Sana Biotechnology, Inc. ("Sana Biotechnology, Inc." or the "Company") (NASDAQ. SANA) of a class action securities lawsuit ... .
    Edit

    DEADLINE ALERT: Faruqi & Faruqi, LLP Investigates Claims on Behalf of Investors of Sana Biotechnology

    Victoria Advocate 02 May 2025
    Faruqi & Faruqi, LLP Securities Litigation Partner James (Josh) Wilson Encourages Investors Who Suffered Losses Exceeding $50,000 In Sana To Contact Him Directly To Discuss Their Options ....
    Edit

    WATCH: Bigg Boss OTT 3 winner Sana Makbul slams trolls for body-shaming: 'Iss baat ka farak...'

    Pinkvilla 02 May 2025
    After receiving too many comments on her weight, Bigg Boss OTT 3 winner Sana Makbul finally breaks silence and slams trolls for bodyshaming her.
    Edit

    Several US Airstrikes Hit Sana’a And Others Provinces

    Al Thawra 02 May 2025
    The United States has launched a new wave of airstrikes across multiple ...
    Edit

    Three Civilians Injured In US Airstrike On Sana’a

    Al Thawra 02 May 2025
    ... of a US aggressive airstrike targeting the capital, Sana’a.
    Edit

    Shareholders that lost money on Sana Biotechnology, Inc. (SANA) should contact The Gross Law Firm ...

    Nasdaq Globe Newswire 01 May 2025
    NEW YORK, May 01, 2025 (GLOBE NEWSWIRE) -- The Gross Law Firm issues the following notice to shareholders of Sana Biotechnology, Inc. (NASDAQ. SANA) ... .
    Edit

    Q.R.-(SANA)-2025-04-30 (Al Sanabel International for Islamic Investments (Holding) PSC)

    Public Technologies 30 Apr 2025
    ). The text version of this document is not available ... Attachments Original document Permalink.
    Edit

    Transmission of Quarterly Report for the period ended 31st March, 2025 (Sana Industries Ltd)

    Public Technologies 30 Apr 2025
    info@sana-industries.com ... snai@sana-industries.com ... Website for financial data - https.//http.//www.sana-industries.com/ ... Sana Industries Limited ... Sana Logistics (Private) Limited (70% holdings) ... Sana Distributors (Private) Limited (100% holdings).
    ×