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

Arul

Arul (English: Grace) is a 2004 Indian Tamil action film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Vadivelu, Sarath Babu, Vinu Chakravarthy and Vaiyapuri. The music is composed by Harris Jayaraj. The story tells how a man is rejected by his family but then finds his way back. The film opened to mixed reviews from both critics as well as audience.

The film was dubbed in Telugu as Akhandudu and in Hindi as Main Balwaan.

Plot

Arul (Vikram), who works in a mill, is the third son of four brothers in a family of goldsmiths. Once, Arul's brother steals a chain due to financial circumstances. As Arul had taken the blame for it, he was labelled as a "thief" and seen as a black sheep by his father. Thus, he vows never to make a gold ornament ever again, takes up a job and pays for his expenses. Kanmani (Jyothika), who moves into the opposite house, begins by playing tricks on him, but eventually falls for his character. Arul doesn't believe in love, and keeps his distance from her. One day, when Arul's father scolds him in the temple, Kanmani stands up for him. Arul's father insults her by telling her "Arul's siblings are keeping quiet. Why are you making noise as though you have slept with him?" In a fit of anger, Arul marries Kanmani. Arul then realizes his love for her. The setting up of the party office of the ruling party forces Arul to lock horns with Gajapathy (Pasupathy), the local MLA, and his brother Sethupathy (Kollam Thulasi), the party leader. How Arul defeats the bad guy forms the rest of the story.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Arul

Podcasts:

  • ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO)

    Jagakan Dia. Sebuah karya tentang cinta. Tentang seseorang yang mencuba untuk mendapatkan cintanya dengan pelbagai cara. Walaupun di tolak, tetap mencuba sepenuh hatinya semata-mata untuk mencuri hati si dia. Di akhirnya bahagia milik mereka. ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO) Lagu : Aiman Sidek (NAR Publishing Sdn Bhd) Lirik : Aiman Sidek (NAR Publishing Sdn Bhd) Mix Master : Wan Salleh Artwork : Naim Junaidi Music Video : RIO Production Please share, like, comment & subscribe! Follow NAR Records on: YouTube: https://www.youtube.com/@nartvnetwork Instagram: https://www.instagram.com/narrecords Facebook: https://www.facebook.com/NARREC ℗ & © 2023 NAR Records Sdn Bhd All rights reserved. Unauthorized reproduction is a violation of applicable laws. #arulrasheed #jagakandi...

    published: 14 Feb 2024
  • Arul | Tamil Full Movie | Vikram | Jyothika | Vadivelu

    Arul, the youngest of four brothers, faces the wrath of his father as he takes the blame for a mistake committed by one of his siblings. Their relationship worsens when Arul is forced into politics. Movie - Arul Starring - Vikram, Jyothika, Vadivelu Directed by Hari Produced by - Lakshmi Productions Released Year - 2004 Watch the full movie in ⬇️ ► YouTube: https://youtu.be/u55riK17_4I #UnitedIndiaExporters #TamilMovies #HitMovies Watch your favorite movies & scenes from our other handles ⬇️ ► UIE Telegu: http://bit.ly/UIEMoviesTelugu ► UIE Tamil Scenes: http://bit.ly/UIETamilScenes For more exclusive updates follow us on ⬇️ ► Twitter: http://bit.ly/UIETwitter ► Instagram: http://bit.ly/UIEInstagram ► Facebook: http://bit.ly/UIEFacebook ► Website: http://bit.ly/UIEWebsite In Assoc...

    published: 28 Mar 2022
  • Ottaiyanum Senja Thara Video Song - Arul | Vikram, Jyothika, Vadivelu | Harris Jayaraj

    We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best of 90 & 2000 's Music - Here is #OttaiyanumSenjaThara Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, and Vadivelu, and others. The music is composed by Harris Jayaraj #Vikram #Jyothika #Vadivelu #HarrisJayaraj Singers: Hariharan, Srimathumitha Lyrics: Vairamuthu Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions [P].LTD Release dat...

    published: 11 Aug 2022
  • Punnakunnu Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari

    We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best of 90 & 2000 's Music - Here is #Punnakunnu Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, and Vadivelu, and others. The music is composed by Harris Jayaraj. #Vikram #Jyothika #Vadivelu #HarrisJayaraj Song: Punnakunnu Singers: Tippu, Sriram Parthasarathy Lyrics: Na. Muthukumar Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions [P]...

    published: 12 Jun 2021
  • Pathu Viral Video Song - Arul | Vikram, Jyothika | Harris Jayaraj | S.P. Balasubrahmanyam | #HBDSPB

    We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the song of 90 & 2000 's Music - Here is #PathuViral Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, and Vadivelu, and others. The music is composed by Harris Jayaraj. #Vikram #Jyothika #Vadivelu #HarrisJayaraj Song: Pathu Viral Singers: S.P. Balasubrahmanyam, Swarnalatha Lyrics: Vairamuthu Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions...

    published: 04 Jun 2021
  • Ukkadathu Papadame Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari

    We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best of 90 & 2000 's Music - Here is #UkkadathuPapadame Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, Vadivelu, and others. The music is composed by Harris Jayaraj. #Vikram #Jyothika #Vadivelu #HarrisJayaraj Song: Ukkadathu Papadame Singers: Tippu, L. R. Eswari, Theni Kunjramma Lyrics: Na. Muthukumar Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lak...

    published: 26 Jul 2023
  • Arul pragasam | Cover Collection | JUKEBOX

    1. MAZHAI MAZHAI 00:00 Arrangements : Netharshan Vocals and Mix Mastered : Arul pragasam 2. POONGATRILE 01:20 Arrangements : Sam Jeba Jeeva Voilin : Shiyam Vocals and Mix Mastered : Arul pragasam 3. UN PERAI SOLLUM POOTHE 04:10 Arrangements : Netharshan Vocals and Mix Mastered : Arul pragasam 4. RAASAVE UNNA 05:03 Guitars,Vocals and Mix Mastered : Arul pragasam 5. MAALAI MANGUM NEERAM 06:35 Arrangements : Arul pragasam Vocals and Mix Mastered : Arul pragasam 6. NENJAI POO POL 08:15 Arrangements : Arul pragasam Vocals and Mix Mastered : Arul pragasam 7. YAARO MANATHILE 09:17 Arrangements : Arul pragasam Vocals and Mix Mastered : Arul pragasam 8. OORU SANAM 10:26 Guitars : Joel Vocals and Mix Mastered : Arul praga...

    published: 18 Nov 2022
  • Ukkadathu Papadame Video Song | Arul Tamil Movie Songs | Vikram | Chaya Singh | Harris Jayaraj

    Ukkadathu Papadame Video Song ft. Vikram and Chaya Singh from Arul Tamil movie on Pyramid Music. Arul movie stars Vikram, Jyothika and Pasupathy, music by Harris Jayaraj, directed by Hari and produced by Lakshmi Productions. Arul movie also stars K S Ravikumar, Vadivelu, Sathyan, Ponnambalam, Saranya Ponvannan and Rekha among others. #Arul #Vikram #Jyothika #HarrisJayaraj Click here to watch: Ey Nee Romba Azhaga Irukke Movie Songs : https://youtu.be/8KlKIfLHiLw Parthale Paravasam Video Song : https://youtu.be/uhhYXeRLkGg Moondram Pirai Movie Songs Jukebox : https://youtu.be/8jTOQbgGyD0 Enga Muthalali Tamil Movie Songs : https://youtu.be/58WGo4y8Kf0 En Bommukutty Ammavukku Video Songs Jukebox : https://youtu.be/utpfPJScWH8 Mannan Tamil Movie Songs : https://youtu.be/Jc9PxyeXvX8 Va...

    published: 11 Apr 2022
  • || 22-02-2024 || BIBLE STUDY || BRO.BARNABAS ARUL || BETHEL PRAYER HOUSE ||

    published: 23 Feb 2024
  • ARUL RASHEED - JAGAKAN DIA (LIRIK VIDEO)

    #malaysia #trending #liriklagu #roadto1ksubscriber #aiteam #teamA #teamB #alieffirfan #bellestrelle #ctdk #syafiqkyle #aiisya #aiaimannoah #aolaming #aimimi #aifatin #aielriss #aiatiqah #aianiq #aifiera #aiikaibrahim #aiicaa #aishahrulniezam #alamwakaka #alisyanajwa #ahlameidress #anggun #raisha #aydenmaleeq #aylamedina #aikanda #aiqyla #aihafiz #aiemny #aiaufar #aimadkhan #aiboyraa #aisulong #aylatiya #aylanisa #aisyahmie #aiyana #ainazrul #aifaridah #aipieya #aipaihgeram #ainadia #aiareesa #aisafwan #ainisa #ailokmanmusa #aiayrabatrisya #atul #arul #viral #suriamalaysia #lawakhambar #lawakhangit #andaiitutakdirnya #rindukamuseparuhnyawa #megadrama #samarinda #akasia #jrfamily #tiyalong #mafiq #aiafuqjefri #aimanis #nisaboy #fieniq https://s.lazada.com.my/s.6AhPh?cc

    published: 14 Feb 2024
ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO)
4:38

ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO)

  • Order:
  • Duration: 4:38
  • Uploaded Date: 14 Feb 2024
  • views: 1502359
Jagakan Dia. Sebuah karya tentang cinta. Tentang seseorang yang mencuba untuk mendapatkan cintanya dengan pelbagai cara. Walaupun di tolak, tetap mencuba sepenuh hatinya semata-mata untuk mencuri hati si dia. Di akhirnya bahagia milik mereka. ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO) Lagu : Aiman Sidek (NAR Publishing Sdn Bhd) Lirik : Aiman Sidek (NAR Publishing Sdn Bhd) Mix Master : Wan Salleh Artwork : Naim Junaidi Music Video : RIO Production Please share, like, comment & subscribe! Follow NAR Records on: YouTube: https://www.youtube.com/@nartvnetwork Instagram: https://www.instagram.com/narrecords Facebook: https://www.facebook.com/NARREC ℗ & © 2023 NAR Records Sdn Bhd All rights reserved. Unauthorized reproduction is a violation of applicable laws. #arulrasheed #jagakandia #narrecords
https://wn.com/Arul_Rasheed_Jagakan_Dia_(Official_Music_Video)
Arul | Tamil Full Movie | Vikram | Jyothika | Vadivelu
2:35:50

Arul | Tamil Full Movie | Vikram | Jyothika | Vadivelu

  • Order:
  • Duration: 2:35:50
  • Uploaded Date: 28 Mar 2022
  • views: 1423243
Arul, the youngest of four brothers, faces the wrath of his father as he takes the blame for a mistake committed by one of his siblings. Their relationship worsens when Arul is forced into politics. Movie - Arul Starring - Vikram, Jyothika, Vadivelu Directed by Hari Produced by - Lakshmi Productions Released Year - 2004 Watch the full movie in ⬇️ ► YouTube: https://youtu.be/u55riK17_4I #UnitedIndiaExporters #TamilMovies #HitMovies Watch your favorite movies & scenes from our other handles ⬇️ ► UIE Telegu: http://bit.ly/UIEMoviesTelugu ► UIE Tamil Scenes: http://bit.ly/UIETamilScenes For more exclusive updates follow us on ⬇️ ► Twitter: http://bit.ly/UIETwitter ► Instagram: http://bit.ly/UIEInstagram ► Facebook: http://bit.ly/UIEFacebook ► Website: http://bit.ly/UIEWebsite In Association with Divo ⬇️ ► Facebook: https://www.facebook.com/divomovies/ ► Twitter: https://www.twitter.com/divomovies/ ► Instagram: https://www.instagram.com/divomovies/
https://wn.com/Arul_|_Tamil_Full_Movie_|_Vikram_|_Jyothika_|_Vadivelu
Ottaiyanum Senja Thara Video Song - Arul | Vikram, Jyothika, Vadivelu | Harris Jayaraj
5:04

Ottaiyanum Senja Thara Video Song - Arul | Vikram, Jyothika, Vadivelu | Harris Jayaraj

  • Order:
  • Duration: 5:04
  • Uploaded Date: 11 Aug 2022
  • views: 15298171
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best of 90 & 2000 's Music - Here is #OttaiyanumSenjaThara Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, and Vadivelu, and others. The music is composed by Harris Jayaraj #Vikram #Jyothika #Vadivelu #HarrisJayaraj Singers: Hariharan, Srimathumitha Lyrics: Vairamuthu Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions [P].LTD Release date - 1 May 2004
https://wn.com/Ottaiyanum_Senja_Thara_Video_Song_Arul_|_Vikram,_Jyothika,_Vadivelu_|_Harris_Jayaraj
Punnakunnu Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari
4:46

Punnakunnu Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari

  • Order:
  • Duration: 4:46
  • Uploaded Date: 12 Jun 2021
  • views: 851045
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best of 90 & 2000 's Music - Here is #Punnakunnu Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, and Vadivelu, and others. The music is composed by Harris Jayaraj. #Vikram #Jyothika #Vadivelu #HarrisJayaraj Song: Punnakunnu Singers: Tippu, Sriram Parthasarathy Lyrics: Na. Muthukumar Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions [P].LTD Release date - 1 May 2004 Audio Label: Think Tapes For All Latest Updates: Website: https://thinkmusic.in/ Subscribe to us on: http://www.youtube.com/thinkmusicindia Follow us on: https://twitter.com/thinkmusicindia Like us on: https://www.facebook.com/Thinkmusicofficial Follow us on: https://www.instagram.com/thinkmusicofficial
https://wn.com/Punnakunnu_Video_Song_Arul_|_Vikram,_Jyothika,Vadivelu_|_Harris_Jayaraj_|_Hari
Pathu Viral Video Song - Arul | Vikram, Jyothika | Harris Jayaraj | S.P. Balasubrahmanyam | #HBDSPB
5:13

Pathu Viral Video Song - Arul | Vikram, Jyothika | Harris Jayaraj | S.P. Balasubrahmanyam | #HBDSPB

  • Order:
  • Duration: 5:13
  • Uploaded Date: 04 Jun 2021
  • views: 935465
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the song of 90 & 2000 's Music - Here is #PathuViral Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, and Vadivelu, and others. The music is composed by Harris Jayaraj. #Vikram #Jyothika #Vadivelu #HarrisJayaraj Song: Pathu Viral Singers: S.P. Balasubrahmanyam, Swarnalatha Lyrics: Vairamuthu Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions [P].LTD Release date - 1 May 2004 Audio Label: Think Tapes For All Latest Updates: Website: https://thinkmusic.in/ Subscribe to us on: http://www.youtube.com/thinkmusicindia Follow us on: https://twitter.com/thinkmusicindia Like us on: https://www.facebook.com/Thinkmusicofficial Follow us on: https://www.instagram.com/thinkmusicofficial
https://wn.com/Pathu_Viral_Video_Song_Arul_|_Vikram,_Jyothika_|_Harris_Jayaraj_|_S.P._Balasubrahmanyam_|_Hbdspb
Ukkadathu Papadame Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari
5:39

Ukkadathu Papadame Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari

  • Order:
  • Duration: 5:39
  • Uploaded Date: 26 Jul 2023
  • views: 1427876
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best of 90 & 2000 's Music - Here is #UkkadathuPapadame Video Song from #Arul - A Harris Jayaraj Musical! Arul is a 2004 Indian Tamil-language action drama film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Kollam Thulasi, Vadivelu, and others. The music is composed by Harris Jayaraj. #Vikram #Jyothika #Vadivelu #HarrisJayaraj Song: Ukkadathu Papadame Singers: Tippu, L. R. Eswari, Theni Kunjramma Lyrics: Na. Muthukumar Director - Hari Producer - T. Rama Rao (Presenter) and T. Ajay Kumar Starring Vikram, Jyothika, Vadivelu, Pasupathy, Kollam Thulasi and others Music Director - Harris Jayaraj Editor - V. T. Vijayan Production company - Lakshmi Productions [P].LTD Distributor - Lakshmi Productions [P].LTD Release date - 1 May 2004 Audio Label: Think Tapes
https://wn.com/Ukkadathu_Papadame_Video_Song_Arul_|_Vikram,_Jyothika,Vadivelu_|_Harris_Jayaraj_|_Hari
Arul pragasam | Cover Collection | JUKEBOX
10:47

Arul pragasam | Cover Collection | JUKEBOX

  • Order:
  • Duration: 10:47
  • Uploaded Date: 18 Nov 2022
  • views: 976968
1. MAZHAI MAZHAI 00:00 Arrangements : Netharshan Vocals and Mix Mastered : Arul pragasam 2. POONGATRILE 01:20 Arrangements : Sam Jeba Jeeva Voilin : Shiyam Vocals and Mix Mastered : Arul pragasam 3. UN PERAI SOLLUM POOTHE 04:10 Arrangements : Netharshan Vocals and Mix Mastered : Arul pragasam 4. RAASAVE UNNA 05:03 Guitars,Vocals and Mix Mastered : Arul pragasam 5. MAALAI MANGUM NEERAM 06:35 Arrangements : Arul pragasam Vocals and Mix Mastered : Arul pragasam 6. NENJAI POO POL 08:15 Arrangements : Arul pragasam Vocals and Mix Mastered : Arul pragasam 7. YAARO MANATHILE 09:17 Arrangements : Arul pragasam Vocals and Mix Mastered : Arul pragasam 8. OORU SANAM 10:26 Guitars : Joel Vocals and Mix Mastered : Arul pragasam Poster and Jukebox Design: Vijay Parivallal #arulpragasam #coversongs #jukebox #tamilcoversong #melody
https://wn.com/Arul_Pragasam_|_Cover_Collection_|_Jukebox
Ukkadathu Papadame Video Song | Arul Tamil Movie Songs | Vikram | Chaya Singh | Harris Jayaraj
5:25

Ukkadathu Papadame Video Song | Arul Tamil Movie Songs | Vikram | Chaya Singh | Harris Jayaraj

  • Order:
  • Duration: 5:25
  • Uploaded Date: 11 Apr 2022
  • views: 11758073
Ukkadathu Papadame Video Song ft. Vikram and Chaya Singh from Arul Tamil movie on Pyramid Music. Arul movie stars Vikram, Jyothika and Pasupathy, music by Harris Jayaraj, directed by Hari and produced by Lakshmi Productions. Arul movie also stars K S Ravikumar, Vadivelu, Sathyan, Ponnambalam, Saranya Ponvannan and Rekha among others. #Arul #Vikram #Jyothika #HarrisJayaraj Click here to watch: Ey Nee Romba Azhaga Irukke Movie Songs : https://youtu.be/8KlKIfLHiLw Parthale Paravasam Video Song : https://youtu.be/uhhYXeRLkGg Moondram Pirai Movie Songs Jukebox : https://youtu.be/8jTOQbgGyD0 Enga Muthalali Tamil Movie Songs : https://youtu.be/58WGo4y8Kf0 En Bommukutty Ammavukku Video Songs Jukebox : https://youtu.be/utpfPJScWH8 Mannan Tamil Movie Songs : https://youtu.be/Jc9PxyeXvX8 Vaidehi Kathirunthal Songs Jukebox : https://youtu.be/SgAFuLfxkYo Periya Manushan Movie Songs: https://youtu.be/GwetY5ytgYk Michael Madana Kamarajan Songs: https://youtu.be/EtEM1B4VqIg For more Evergreen songs, Subscribe to Pyramid Music: http://bit.ly/1QwK7aI​
https://wn.com/Ukkadathu_Papadame_Video_Song_|_Arul_Tamil_Movie_Songs_|_Vikram_|_Chaya_Singh_|_Harris_Jayaraj
|| 22-02-2024 || BIBLE STUDY ||  BRO.BARNABAS ARUL || BETHEL PRAYER HOUSE ||
1:12:48

|| 22-02-2024 || BIBLE STUDY || BRO.BARNABAS ARUL || BETHEL PRAYER HOUSE ||

  • Order:
  • Duration: 1:12:48
  • Uploaded Date: 23 Feb 2024
  • views: 138
https://wn.com/||_22_02_2024_||_Bible_Study_||_Bro.Barnabas_Arul_||_Bethel_Prayer_House_||
ARUL RASHEED - JAGAKAN DIA (LIRIK VIDEO)
3:50

ARUL RASHEED - JAGAKAN DIA (LIRIK VIDEO)

  • Order:
  • Duration: 3:50
  • Uploaded Date: 14 Feb 2024
  • views: 18720
#malaysia #trending #liriklagu #roadto1ksubscriber #aiteam #teamA #teamB #alieffirfan #bellestrelle #ctdk #syafiqkyle #aiisya #aiaimannoah #aolaming #aimimi #aifatin #aielriss #aiatiqah #aianiq #aifiera #aiikaibrahim #aiicaa #aishahrulniezam #alamwakaka #alisyanajwa #ahlameidress #anggun #raisha #aydenmaleeq #aylamedina #aikanda #aiqyla #aihafiz #aiemny #aiaufar #aimadkhan #aiboyraa #aisulong #aylatiya #aylanisa #aisyahmie #aiyana #ainazrul #aifaridah #aipieya #aipaihgeram #ainadia #aiareesa #aisafwan #ainisa #ailokmanmusa #aiayrabatrisya #atul #arul #viral #suriamalaysia #lawakhambar #lawakhangit #andaiitutakdirnya #rindukamuseparuhnyawa #megadrama #samarinda #akasia #jrfamily #tiyalong #mafiq #aiafuqjefri #aimanis #nisaboy #fieniq https://s.lazada.com.my/s.6AhPh?cc
https://wn.com/Arul_Rasheed_Jagakan_Dia_(Lirik_Video)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO)

Jagakan Dia. Sebuah karya tentang cinta. Tentang seseorang yang mencuba untuk mendapatkan cintanya dengan pelbagai cara. Walaupun di tolak, tetap mencuba sepenuh hatinya semata-mata untuk mencuri hati si dia. Di akhirnya bahagia milik mereka. ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO) Lagu : Aiman Sidek (NAR Publishing Sdn Bhd) Lirik : Aiman Sidek (NAR Publishing Sdn Bhd) Mix Master : Wan Salleh Artwork : Naim Junaidi Music Video : RIO Production Please share, like, comment & subscribe! Follow NAR Records on: YouTube: https://www.youtube.com/@nartvnetwork Instagram: https://www.instagram.com/narrecords Facebook: https://www.facebook.com/NARREC ℗ & © 2023 NAR Records Sdn Bhd All rights reserved. Unauthorized reproduction is a violation of applicable laws. #arulrasheed #jagakandia #narrecords
4:38
ARUL RASHEED - JAGAKAN DIA (OFFICIAL MUSIC VIDEO)
Jagakan Dia. Sebuah karya tentang cinta. Tentang seseorang yang mencuba untuk mendapatkan ...
published: 14 Feb 2024
Play in Full Screen
2:35:50
Arul | Tamil Full Movie | Vikram | Jyothika | Vadivelu
Arul, the youngest of four brothers, faces the wrath of his father as he takes the blame f...
published: 28 Mar 2022
Play in Full Screen
5:04
Ottaiyanum Senja Thara Video Song - Arul | Vikram, Jyothika, Vadivelu | Harris Jayaraj
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best ...
published: 11 Aug 2022
Play in Full Screen
4:46
Punnakunnu Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best ...
published: 12 Jun 2021
Play in Full Screen
5:13
Pathu Viral Video Song - Arul | Vikram, Jyothika | Harris Jayaraj | S.P. Balasubrahmanyam | #HBDSPB
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the song ...
published: 04 Jun 2021
Play in Full Screen
5:39
Ukkadathu Papadame Video Song - Arul | Vikram, Jyothika,Vadivelu | Harris Jayaraj | Hari
We all love a bit a throwback in life, Presenting #ThinkTapes ⏪ rewinding you to the best ...
published: 26 Jul 2023
Play in Full Screen
10:47
Arul pragasam | Cover Collection | JUKEBOX
1. MAZHAI MAZHAI 00:00 Arrangements : Netharshan Vocals and Mix Mastered : Arul ...
published: 18 Nov 2022
Play in Full Screen
5:25
Ukkadathu Papadame Video Song | Arul Tamil Movie Songs | Vikram | Chaya Singh | Harris Jayaraj
Ukkadathu Papadame Video Song ft. Vikram and Chaya Singh from Arul Tamil movie on Pyramid ...
published: 11 Apr 2022
Play in Full Screen
1:12:48
|| 22-02-2024 || BIBLE STUDY || BRO.BARNABAS ARUL || BETHEL PRAYER HOUSE ||
published: 23 Feb 2024
Play in Full Screen
3:50
ARUL RASHEED - JAGAKAN DIA (LIRIK VIDEO)
#malaysia #trending #liriklagu #roadto1ksubscriber #aiteam #teamA #teamB #alieffirfan #bel...
published: 14 Feb 2024
Play in Full Screen

Arul

Arul (English: Grace) is a 2004 Indian Tamil action film written and directed by Hari starring Vikram, Jyothika, Pasupathy, Vadivelu, Sarath Babu, Vinu Chakravarthy and Vaiyapuri. The music is composed by Harris Jayaraj. The story tells how a man is rejected by his family but then finds his way back. The film opened to mixed reviews from both critics as well as audience.

The film was dubbed in Telugu as Akhandudu and in Hindi as Main Balwaan.

Plot

Arul (Vikram), who works in a mill, is the third son of four brothers in a family of goldsmiths. Once, Arul's brother steals a chain due to financial circumstances. As Arul had taken the blame for it, he was labelled as a "thief" and seen as a black sheep by his father. Thus, he vows never to make a gold ornament ever again, takes up a job and pays for his expenses. Kanmani (Jyothika), who moves into the opposite house, begins by playing tricks on him, but eventually falls for his character. Arul doesn't believe in love, and keeps his distance from her. One day, when Arul's father scolds him in the temple, Kanmani stands up for him. Arul's father insults her by telling her "Arul's siblings are keeping quiet. Why are you making noise as though you have slept with him?" In a fit of anger, Arul marries Kanmani. Arul then realizes his love for her. The setting up of the party office of the ruling party forces Arul to lock horns with Gajapathy (Pasupathy), the local MLA, and his brother Sethupathy (Kollam Thulasi), the party leader. How Arul defeats the bad guy forms the rest of the story.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Arul
'); } 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: arul

Edit

Speakers Corner/Arul Tries To Talk To Ali Dawah/Smile2jannah/Mansur/Muslims/No Evidence For Islam

Bitchute 22 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Publication of Notification in the Extra Ordinary Gazette of India under the Petroleum and Minerals Pipelines (ARUL) Act, 1962 for North East Natural Gas Pipeline Grid Project of M/s. Indradhanush Gas Grid Limited (IGGL). (Ministry of Petroleum and Natural Gas of the Republic of India)

Public Technologies 21 Mar 2025
). रजिस्ट्री सं. डी.एल.- 33004/99. REGD. No. D. L.-33004/99. सी.जी.-डी.एल.-अ.-21032025-261834. xxxGIDHxxx. CG-DL-E-21032025-261834. xxxGIDExxx. असाधारण. EXTRAORDINARY. भाग II-खण्ड 3-उप-खण्ड (ii). PART II-Section 3-Sub-section (ii). प्राजधकार सेप्रकाजित ... सं. 1328] ... No.
Edit

How ‘Arul’, nominated for JUNO Awards, gives a new twist to Carnatic music

The Hindu 19 Mar 2025
Canadian songwriter Yanchan Produced and Chennai vocalist Sandeep Narayan have teamed up for an EP, ‘Arul’, which has been nominated for the 2025 JUNO Awards in Canada ....
Edit

Publication of Notification in the Extra Ordinary Gazette of India under the Petroleum and Minerals Pipelines (ARUL) Act, 1962 for Jagdishpur Haldia and Bokaro Dhamra Gas Pipeline (JHBDPL) and Spur Pipeline of GAIL (India) Limited. (Ministry of Petroleum and Natural Gas of the Republic of India)

Public Technologies 12 Mar 2025
). रजिस्ट्री सं. डी.एल.- 33004/99. REGD. No. D. L.-33004/99. सी.जी.-डी.एल.-अ.-12032025-261569. xxxGIDHxxx. CG-DL-E-12032025-261569. xxxGIDExxx. असाधारण. EXTRAORDINARY. भाग II-खण्ड 3-उप-खण्ड (ii). PART II-Section 3-Sub-section (ii). प्राजधकार सेप्रकाजित ... सं. 1118] ... No.
Edit

Publication of Notification in the Extra Ordinary Gazette of India under the Petroleum and Minerals Pipelines (ARUL) Act, 1962 for Barauni Guwahati Natural Gas Pipeline (BGPL) of GAIL (India) Limited. (Ministry of Petroleum and Natural Gas of the Republic of India)

Public Technologies 06 Mar 2025
). रजिस्ट्री सं. डी.एल.- 33004/99. REGD. No. D. L.-33004/99. सी.जी.-डी.एल.-अ.-06032025-261483. xxxGIDHxxx. CG-DL-E-06032025-261483. xxxGIDExxx. असाधारण. EXTRAORDINARY. भाग II-खण्ड 3-उप-खण्ड (ii). PART II-Section 3-Sub-section (ii). प्राजधकार सेप्रकाजित ... सं. 1079] ... No.
Edit

Publication of Notification in the Extra Ordinary Gazette of India under the Petroleum and Minerals Pipelines (ARUL) Act, 1962 for Hazira Dahej Pipeline of M/s. RIL. (Ministry of Petroleum and Natural Gas of the Republic of India)

Public Technologies 06 Mar 2025
). रजिस्ट्री सं. डी.एल.- 33004/99. REGD. No. D. L.-33004/99. सी.जी.-डी.एल.-अ.-06032025-261484. xxxGIDHxxx. CG-DL-E-06032025-261484. xxxGIDExxx. असाधारण. EXTRAORDINARY. भाग II-खण्ड 3-उप-खण्ड (ii). PART II-Section 3-Sub-section (ii). प्राजधकार सेप्रकाजित ... सं. 1078] ... No.
  • 1
×