<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>raMEsh shRESTha</title>
	<atom:link href="http://ramesh-shrestha.com.np/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ramesh-shrestha.com.np</link>
	<description>pasa ForEver</description>
	<lastBuildDate>Fri, 05 Apr 2013 11:00:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>Moves files found in CSV using batch file</title>
		<link>http://ramesh-shrestha.com.np/?p=94</link>
		<comments>http://ramesh-shrestha.com.np/?p=94#comments</comments>
		<pubDate>Fri, 05 Apr 2013 10:46:27 +0000</pubDate>
		<dc:creator><![CDATA[rameshpasa]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[read csv file]]></category>

		<guid isPermaLink="false">http://ramesh-shrestha.com.np/?p=94</guid>
		<description><![CDATA[If you have a CSV file (say, &#8216;filename.csv&#8217;) which has the list of the files location in any column(say, 2) and want to move those files in to folder (say, &#8216;DestinationFolder&#8217;) then you can achieve it by creating a batch file (say, &#8216;MoveFile.bat&#8217;) to do it. Using any text editor type following DOS commands: rem [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you have a CSV file (say, &#8216;filename.csv&#8217;) which has the list of the files location in any column(say, 2) and want to move those files in to folder (say, &#8216;DestinationFolder&#8217;) then you can achieve it by creating a batch file (say, &#8216;MoveFile.bat&#8217;) to do it.</p>
<p>Using any text editor type following DOS commands:<em><strong></strong></em></p>
<blockquote><p><em><strong>rem </strong></em>Moves files into Destination Folder<br />
<em><strong>for </strong></em>/f &#8220;tokens=2 delims=,&#8221; %%a in (D:\filename.csv) do (<br />
<em><strong>move </strong></em>%%~a  D:\DestinationFolder<br />
)</p></blockquote>
<p>When you run the batch file</p>
<blockquote><p>D:\&gt;MoveFile.bat</p></blockquote>
<p>Then it will iterate through the file location found in CSV file and move the file(s) to destination folder.</p>
<p>If you want to <strong>copy </strong>the file then use <strong>copy </strong>command.</p>
]]></content:encoded>
			<wfw:commentRss>http://ramesh-shrestha.com.np/?feed=rss2&#038;p=94</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set class active of nav bar of Bootstrap twitter using jQuery?</title>
		<link>http://ramesh-shrestha.com.np/?p=86</link>
		<comments>http://ramesh-shrestha.com.np/?p=86#comments</comments>
		<pubDate>Fri, 28 Dec 2012 08:06:50 +0000</pubDate>
		<dc:creator><![CDATA[rameshpasa]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[active]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[navbar]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://ramesh-shrestha.com.np/?p=86</guid>
		<description><![CDATA[I am trying to set the class of the &#8216;li&#8217; tag to &#8216;active&#8217; whenever the user click on any link place inside &#8216;li&#8217; tag. Code snippet of navbar of bootstrap is show below: &#60;div&#62; &#60;div&#62; &#60;a href=&#8221;#&#8221;&#62;Title&#60;/a&#62; &#60;ul&#62; &#60;li&#62;&#60;a href=&#8221;Home.aspx&#8221;&#62;Home&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href=&#8221;Page1.aspx&#8221;&#62;Page1&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href=&#8221;About.aspx&#8221;&#62;About Us&#60;/a&#62;&#60;/li&#62; &#60;/ul&#62; &#60;/div&#62; &#60;/div&#62; Now when user click on &#8216;Page1&#8242;, class [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I am trying to set the class of the &#8216;li&#8217; tag to &#8216;active&#8217; whenever the user click on any link place inside &#8216;li&#8217; tag.</p>
<p>Code snippet of navbar of bootstrap is show below:</p>
<blockquote><p><em>&lt;div&gt;</em><br />
<em> &lt;div&gt;</em><br />
<em> &lt;a href=&#8221;#&#8221;&gt;Title&lt;/a&gt;</em><br />
<em> &lt;ul&gt;</em><br />
<em> &lt;li&gt;&lt;a href=&#8221;Home.aspx&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;</em><br />
<em> &lt;li&gt;&lt;a href=&#8221;Page1.aspx&#8221;&gt;Page1&lt;/a&gt;&lt;/li&gt;</em><br />
<em> &lt;li&gt;&lt;a href=&#8221;About.aspx&#8221;&gt;About Us&lt;/a&gt;&lt;/li&gt;</em><br />
<em> &lt;/ul&gt;</em><br />
<em> &lt;/div&gt;</em><br />
<em>&lt;/div&gt;</em></p></blockquote>
<p>Now when user click on &#8216;Page1&#8242;, class of li associated with it is set to &#8216;active&#8217;.<br />
jQuery to obtaing that behaviour is shown below:</p>
<blockquote><p><em>&lt;script type=&#8221;text/javascript&#8221;&gt;</em><br />
<em> $(document).ready(function () {</em><br />
<em> var url = window.location;</em><br />
<em> // Will only work if string in href matches with location</em><br />
<em> $(&#8216;ul.nav a[href=&#8221;&#8216; + url + &#8216;&#8221;]&#8217;).parent().addClass(&#8216;active&#8217;);</em></p>
<p><em> // Will also work for relative and absolute hrefs</em><br />
<em> $(&#8216;ul.nav a&#8217;).filter(function () {</em><br />
<em> return this.href == url;</em><br />
<em> }).parent().addClass(&#8216;active&#8217;);</em><br />
<em> });</em><br />
<em>&lt;/script&gt;</em></p></blockquote>
<p><strong>References</strong>:<br />
1. <a href="http://twitter.github.com/bootstrap/components.html#navbar">http://twitter.github.com/bootstrap/components.html#navbar<br />
</a> 2. <a href="http://stackoverflow.com/questions/11533542/twitter-bootstrap-add-active-class-to-li">http://stackoverflow.com/questions/11533542/twitter-bootstrap-add-active-class-to-li</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ramesh-shrestha.com.np/?feed=rss2&#038;p=86</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change address bar search provider in firefox?</title>
		<link>http://ramesh-shrestha.com.np/?p=62</link>
		<comments>http://ramesh-shrestha.com.np/?p=62#comments</comments>
		<pubDate>Mon, 23 Jan 2012 05:57:51 +0000</pubDate>
		<dc:creator><![CDATA[rameshpasa]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[address bar]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search provider]]></category>

		<guid isPermaLink="false">http://ramesh-shrestha.com.np/?p=62</guid>
		<description><![CDATA[In order to change the search provider of address bar in firefox, perform following steps: 1. In address bar type about:config and press enter. 2. Then you will receive following warning message. Accept it to see the configuration option. 3. Enter keyword.url in the filter and locate the parameter keyword.url.(Here default search provider is yahoo) [&#8230;]]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">In order to change the search provider of address bar in firefox, perform following steps:</p>
<p style="text-align: left;">1. In address bar type <strong>about:config</strong> and press enter.<img src="https://lh4.googleusercontent.com/0VJZYuK0ZtW9UABpZZpeJTQQ6wT2u0fyvV_MNfYpsqxfXADOR2q8KE2SN83Cd7ZpS3varHoIq1kZGTU3l01QoF1NorODUehwPS7Kz_Hbj63G4Oc-F-w" alt="" width="360px;" height="61px;" /></p>
<p style="text-align: left;">2. Then you will receive following warning message. Accept it to see the configuration option.<img src="https://lh5.googleusercontent.com/tUjPXkzMFPOux9he6wJEzF0jl_RYdFHUEoXRWafIKv4gTH0kAkNDIlrZMHX0jWrLcyLC9LgpVKmnMtCCpfVaKSiIzkbo3cyZC52WDnDYMqcOBmcSAM8" alt="" width="544" height="160" /></p>
<p style="text-align: left;">3. Enter keyword.url in the filter and locate the parameter <strong>keyword.url</strong>.(Here default search provider is yahoo)<img src="https://lh4.googleusercontent.com/snKnAkz7M_CxLkej4raYUjJTDXN0FYR0u-E-J1NOVKkdKLHNRstBpxMIPPSkp8omFj7CXS5i4qqzOExWQ73rKXxvZWffUCT-duUvhAJaQp6yjANs7jM" alt="" width="541" height="114" /></p>
<p style="text-align: left;">4.To change the default search provider from yahoo to google right click keyword.url and select “Modify”.<img src="https://lh3.googleusercontent.com/rIeCosdvzkuCvvZ0j2P2aBhGptlDv4J67n6O97bM60xzFm5p_cf1Vbkwtz6atLNUOaAHjz9iesrxh60CG5FEOkLG_6FxwvGZ3YpacqHtyR9-aKPdlg0" alt="" width="542" height="191" /></p>
<p style="text-align: left;">5. Following window appears showing default yahoo search provider.<img src="https://lh5.googleusercontent.com/pqVRpYNSEtACZ9tCWoj2Wd_cOEBNIlDephyCUy6jnzVBSENZHDvWaroBsaOvQppfYiLEKcKRNsoOi9gLLyd4gGqfdKSNE2XZ1VOhQivsHiEmeboGMiE" alt="" width="355px;" height="143px;" /></p>
<p style="text-align: left;">6. Replace it with google search provider as shown in fig. and click OK. (No need to restart firefox)<img src="https://lh5.googleusercontent.com/80Dnr2i8eakydCPZpqq6GRLWIBJt9LG7YX7Woe0PgmuSz7UcfEEz33lDOfbWkeIs4_r9O-1cOknLlpyjsjgwPj50AtktylqMaigIphhP2NDQ40V0R6Y" alt="" width="355px;" height="143px;" /></p>
<p style="text-align: left;">For other search provider replace it with following string value:</p>
<p style="text-align: left;"><strong> </strong></p>
<p style="text-align: left;"><strong>Google Browse By Name</strong>:  http://www.google.com/search?ie=UTF-8&amp;sourceid=navclient&amp;gfns=1&amp;q=</p>
<p style="text-align: left;"><strong>Google I’m Feeling Lucky</strong>: http://www.google.com/search?ie=UTF-8&amp;btnI=&amp;q=</p>
<p style="text-align: left;"><strong>Google Default</strong>: http://www.google.com/search?&amp;q=</p>
<p style="text-align: left;"><strong>Yahoo Search</strong>: http://search.yahoo.com/search?p=</p>
<p style="text-align: left;"><strong>Bing Search</strong>: http://www.bing.com/search?q=</p>
<p style="text-align: left;"><strong>Ask</strong>:http://www.ask.com/web?q=</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;"><strong>References</strong></p>
<p style="text-align: left;"><a href="http://www.ghacks.net/2011/04/20/how-to-change-the-default-firefox-4-address-bar-search-engine/">http://www.technipages.com/firefox-change-address-bar-search-provider.html</a><br />
<a href="http://www.ghacks.net/2011/04/20/how-to-change-the-default-firefox-4-address-bar-search-engine/">http://www.ghacks.net/2011/04/20/how-to-change-the-default-firefox-4-address-bar-search-engine/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ramesh-shrestha.com.np/?feed=rss2&#038;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to show label with two decimal places in MSChart?</title>
		<link>http://ramesh-shrestha.com.np/?p=25</link>
		<comments>http://ramesh-shrestha.com.np/?p=25#comments</comments>
		<pubDate>Fri, 22 Jul 2011 09:58:36 +0000</pubDate>
		<dc:creator><![CDATA[rameshpasa]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ramesh-shrestha.com.np/?p=25</guid>
		<description><![CDATA[If you are using MSChart to display your data in chart and want some numerical value to display in the label or tooltip with two decimal places then set them as shown below (c# code snippet): // Set tooltip with value from x axis &#38; y axis this.Chart1.Series[&#8220;Series1&#8243;].ToolTip = &#8220;#VALX&#8221; + &#8220;(&#8221; + &#8220;#VALY{0.##}&#8221; + [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If  you are using MSChart to display your data in chart and want some  numerical value to display in the label or tooltip with two decimal  places then set them as shown below (c# code snippet):</p>
<p>// Set tooltip with value from x axis &amp; y axis<br />
<em>this.Chart1.Series[&#8220;Series1&#8243;].ToolTip = &#8220;#VALX&#8221; + &#8220;(&#8221; + &#8220;#VALY{0.##}&#8221; + &#8221; GB )&#8221;;</em></p>
<p>// Set Label value with value from x axis &amp; y axis<br />
<em>this.Chart1.Series[&#8220;Series1&#8243;].Label = &#8220;#VALX&#8221; + &#8220;(&#8221; + &#8220;#VALY{0.##}&#8221; + &#8221; GB )&#8221;;</em></p>
<p>And the diagram will be as shown below</p>
<p><img src="https://lh6.googleusercontent.com/9GHmpg0k0O9AG_-W6-C43AaSZTJ45nuIrujKM8YATkqZ-q_1NT9N0HntqdVQOytUX1oq9WNIgptJ_cM24HKfUO2ltu3oSk1vQCVEyIajGyF3reUWtE0" alt="" width="240px;" height="233px;" /><img src="https://lh3.googleusercontent.com/3ZEcVpPmrt-T_RfK-KaeWMwhfejtTONFVMfr3vFLWqG0KL4Dcci3OMilK3XO2oD_JiTmvW96FqiYro7KgxWAUQgy606PAheR9dYGwiNTyxuWKYDqJ5E" alt="" width="119px;" height="134px;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ramesh-shrestha.com.np/?feed=rss2&#038;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shahid Smarak ‘A’ Division League Football 2011</title>
		<link>http://ramesh-shrestha.com.np/?p=12</link>
		<comments>http://ramesh-shrestha.com.np/?p=12#comments</comments>
		<pubDate>Sun, 17 Jul 2011 16:03:15 +0000</pubDate>
		<dc:creator><![CDATA[rameshpasa]]></dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[Martyrs Memorial A Division League Football]]></category>
		<category><![CDATA[Shahid Smarak A division league]]></category>

		<guid isPermaLink="false">http://ramesh-shrestha.com.np/?p=12</guid>
		<description><![CDATA[Nepal Police Club successfully defended the Shahid Smarak A division league (Red Bull Martyrs’ Memorial ‘A’ Division League) trophy and won  the league trophy for the third time even though they lost their last match to MMC (Manang Maryshyngdi Club). With that defeat Nepal Police Club’s 49-match unbeaten run also come to an end. Red [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://ramesh-shrestha.com.np/wp-content/uploads/2011/07/nepal_league.jpg"><img class="alignleft size-full wp-image-35" title="nepal_league" src="http://ramesh-shrestha.com.np/wp-content/uploads/2011/07/nepal_league.jpg" alt="Martyr's Memorial Red Bull 'A' Division League" width="142" height="123" /></a></p>
<p>Nepal Police Club successfully defended the Shahid Smarak A division league (Red Bull Martyrs’ Memorial ‘A’ Division League) trophy and won  the league trophy for the third time even though they lost their last match to MMC (Manang Maryshyngdi Club). With that defeat Nepal Police Club’s 49-match unbeaten run also come to an end.</p>
<p><strong>Red Bull Martyrs Memorial A Division League Football Table &#8211; 2011</strong></p>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>NE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> <w:UseFELayout /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><! /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; mso-bidi-font-size:10.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Mangal; mso-bidi-theme-font:minor-bidi;} --> <!--[endif] --></p>
<table class="MsoNormalTable" style="width: 431.25pt; margin-left: 6.75pt; margin-right: 6.75pt;" border="1" cellpadding="0" width="575" align="left">
<tbody>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Pos.</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">A   Division Clubs</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">M</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">W</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">D</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">L</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">GF</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">GA</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">+/-</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% #9999bb; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Points</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">1</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Nepal   Police Club (Winner)</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">14</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">2</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">1</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">54</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">7</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">47</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">44</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">2</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Manang   Marshyangdi Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">14</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">2</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">1</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">42</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">7</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">35</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">44</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Jawalakhel   Youth Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">11</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">35</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">15</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">20</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">36</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">7</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Three   Star Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">11</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">1</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5<br />
</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">31</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">12</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">19</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">34</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">4</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Himalayan   Sherpa Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">6</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">2</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">45</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">16</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">29</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">33</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Ranipokhari   Corner Team (RCT)</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">10</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">4</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">40</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">23</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">33</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">6</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">New   Road Team (NRT)</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">27</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">15</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">12</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">32</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">8</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Nepal   Army Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">8</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">4</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">35</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">18</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">29</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Friends   Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">7</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">7</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">27</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">22</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">24</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">10</span></p>
</td>
<td style="width: 29.92%; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Bansbari   Football Club</span></p>
</td>
<td style="width: 6.94%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">6</span></p>
</td>
<td style="width: 8%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">8</span></p>
</td>
<td style="width: 5.88%; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">20</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">28</span></p>
</td>
<td style="width: 6.92%; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-8</span></p>
</td>
<td style="width: 8.88%; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">21</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">11</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Boudha   Football Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">7</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">18</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">27</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-9</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">20</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">12</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Armed   Police Force</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">30<br />
</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">26</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">4</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">18</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">13</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Saraswati   Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">4</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">10</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">26</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">40</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-14</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">15</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">14</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Machhindra   Football Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">20</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">28</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-8</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% white; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">14</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">15</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Swoyambhu   Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">2</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">5</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">10</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9<br />
</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">27</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-18</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">11</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">16</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Brigade   Boys Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">2</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">4</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">11</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">9</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">41</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-32</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">10</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">United   Youth Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">1</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">13</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">10</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">61<br />
</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-51</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">6</span></p>
</td>
</tr>
<tr>
<td style="width: 5.56%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">18</span></p>
</td>
<td style="width: 29.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="29%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Koilapani   Polestar Club</span></p>
</td>
<td style="width: 6.94%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">17</span></p>
</td>
<td style="width: 9.16%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="9%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">0</span></p>
</td>
<td style="width: 8%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
<td style="width: 7.98%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="7%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">14</span></p>
</td>
<td style="width: 5.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="5%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">12</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">78</span></p>
</td>
<td style="width: 6.92%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="6%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">-66</span></p>
</td>
<td style="width: 8.88%; background: none repeat scroll 0% 0% #efefef; padding: 1.5pt;" width="8%">
<p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">3</span></p>
</td>
</tr>
</tbody>
</table>
<p><span> </span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>NE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> <w:UseFELayout /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]>
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	mso-bidi-font-size:10.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Mangal; 	mso-bidi-theme-font:minor-bidi;} --><br />
<!--[endif] --></p>
<table class="MsoNormalTable" style="width: 283.4pt; border-collapse: collapse;" border="0" cellspacing="0" cellpadding="0" width="378">
<tbody>
<tr style="height: 8.95pt;">
<td style="width: 77.65pt; border: 1pt dotted #aaaaaa; padding: 4.4pt; height: 8.95pt;" width="104" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Best Manager</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 97.75pt; padding: 4.4pt; height: 8.95pt; border: 1pt 1pt 1pt medium dotted dotted dotted none #aaaaaa #aaaaaa #aaaaaa -moz-use-text-color;" width="130" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Birat Krishna Shrestha</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 1.5in; padding: 4.4pt; height: 8.95pt; border: 1pt 1pt 1pt medium dotted dotted dotted none #aaaaaa #aaaaaa #aaaaaa -moz-use-text-color;" width="144" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Nepal Police Club</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
</tr>
<tr style="height: 9.6pt;">
<td style="width: 77.65pt; border-right: 1pt dotted #aaaaaa; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt none dotted dotted -moz-use-text-color #aaaaaa #aaaaaa;" width="104" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Best Keeper</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 97.75pt; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="130" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Ritesh Thapa</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 1.5in; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="144" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Nepal Police Club</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
</tr>
<tr style="height: 9.6pt;">
<td style="width: 77.65pt; border-right: 1pt dotted #aaaaaa; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt none dotted dotted -moz-use-text-color #aaaaaa #aaaaaa;" width="104" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Best Defender</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 97.75pt; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="130" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Sandip Rai</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 1.5in; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="144" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Manang Marsyngdi Club</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
</tr>
<tr style="height: 9.6pt;">
<td style="width: 77.65pt; border-right: 1pt dotted #aaaaaa; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt none dotted dotted -moz-use-text-color #aaaaaa #aaaaaa;" width="104" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Best Midfielder</span><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
</td>
<td style="width: 97.75pt; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="130" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Jagjit Shrestha</span></p>
</td>
<td style="width: 1.5in; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="144" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Himalayan Sherpa Club</span></p>
</td>
</tr>
<tr style="height: 9.5pt;">
<td style="width: 77.65pt; border-right: 1pt dotted #aaaaaa; padding: 4.4pt; height: 9.5pt; border: medium 1pt 1pt none dotted dotted -moz-use-text-color #aaaaaa #aaaaaa;" width="104" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Best Forward</span></p>
</td>
<td style="width: 97.75pt; padding: 4.4pt; height: 9.5pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="130" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Jumanu Rai</span></p>
</td>
<td style="width: 1.5in; padding: 4.4pt; height: 9.5pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="144" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Nepal Police Club</span></p>
</td>
</tr>
<tr style="height: 9.6pt;">
<td style="width: 77.65pt; border-right: 1pt dotted #aaaaaa; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt none dotted dotted -moz-use-text-color #aaaaaa #aaaaaa;" width="104" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Fair Play Team</span></p>
</td>
<td style="width: 97.75pt; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="130" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;">Jawalakhel<span> </span>Youth Club</span></p>
</td>
<td style="width: 1.5in; padding: 4.4pt; height: 9.6pt; border: medium 1pt 1pt medium none dotted dotted none -moz-use-text-color #aaaaaa #aaaaaa -moz-use-text-color;" width="144" valign="top">
<p class="MsoNormal" style="margin-bottom: 0.0001pt;"><span style="font-size: 8pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: black;"> </span></p>
</td>
</tr>
</tbody>
</table>
<p>For details on Shahid Smarak A division league :<br />
<a href="http://en.wikipedia.org/wiki/Martyr%27s_Memorial_A-Division_League">http://en.wikipedia.org/wiki/Martyr%27s_Memorial_A-Division_League</a></p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;"><strong><a href="http://ramesh-shrestha.com.np/wp-content/uploads/2011/07/nepal_league.jpg"><img class="alignleft size-thumbnail wp-image-35" title="nepal_league" src="http://ramesh-shrestha.com.np/wp-content/uploads/2011/07/nepal_league-150x150.jpg" alt="Martyr's Memorial Red Bull 'A' Division League" width="150" height="150" /></a></strong></div>
]]></content:encoded>
			<wfw:commentRss>http://ramesh-shrestha.com.np/?feed=rss2&#038;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slack File and Orphan File</title>
		<link>http://ramesh-shrestha.com.np/?p=5</link>
		<comments>http://ramesh-shrestha.com.np/?p=5#comments</comments>
		<pubDate>Sat, 09 Jul 2011 09:09:02 +0000</pubDate>
		<dc:creator><![CDATA[rameshpasa]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ramesh-shrestha.com.np/?p=5</guid>
		<description><![CDATA[What is File Slack? For example, if the cluster size is 4KB and the file size is 5KB then to save the file it will require 2 cluster i.e. 8KB. Now, the File Slack will be (8-5)=3KB. Hence, File Slack is the difference between the physical file size and the logical file size. In above [&#8230;]]]></description>
				<content:encoded><![CDATA[<h3 id="internal-source-marker_0.797192844357628" dir="ltr">What is File Slack?</h3>
<p>For  example, if the cluster size is 4KB and the file size is 5KB then to  save the file it will require 2 cluster i.e. 8KB. Now, the File Slack  will be (8-5)=3KB.</p>
<p>Hence, File Slack is the difference between the physical file size and the logical file size.</p>
<p>In above example, the physical file size is 8KB i.e. the size given to the file on the hard drive and the logical file size is 5KB i.e. the actual size of the file.</p>
<p>The physical file size is size on disk in file properties and the logical file size is size of the file in the file properties.</p>
<h3 dir="ltr">What is Orphan file?</h3>
<p>For example, when application is uninstall or removed, some files related to that application (either needed for the application or were generated by the application) may remain on the hard disk. These are orphan files since they serve no purpose without the application.</p>
<p>In general, orphan files can be deleted, but should make sure that they truly are orphans because some files, especially<a href="http://www.webopedia.com/TERM/D/DLL.html"> </a>DLLs, may be used by more than one application.</p>
]]></content:encoded>
			<wfw:commentRss>http://ramesh-shrestha.com.np/?feed=rss2&#038;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
