<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: About</title>
	<atom:link href="http://peoplesoftsqr.com/index.php/about/feed/" rel="self" type="application/rss+xml" />
	<link>http://peoplesoftsqr.com</link>
	<description>When Peoplebooks Is Not Enough</description>
	<lastBuildDate>Mon, 23 Jan 2012 21:54:00 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: administrator</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-7178</link>
		<dc:creator>administrator</dc:creator>
		<pubDate>Sat, 15 Oct 2011 21:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-7178</guid>
		<description>I&#039;m sorry I didn&#039;t answer this.  I didn&#039;t understand your question and the program looked too long for a quick response.  I approved your comment and meant to get back to it - then I forgot.  

It looks like this program was using the write command to output multiple character values on a single line, then it was changed to concatenate those values into a single string and write it on a single line.  Either way can work, with a few caveats.

1. You haven&#039;t shown the command that opens the file.  It defines the maximum length of each line, and the write statements cannot exceed that length.
2. Writing individual values will truncate or pad those strings to make them the length you specify.  If you concatenate the variables into a single string you don&#039;t have that length control (unless you do it yourself with a rpad() and substr() function for each variable.
3. If you want to add fields to line, go ahead.  SQR only checks on the total length of the line.

Good luck!</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry I didn&#8217;t answer this.  I didn&#8217;t understand your question and the program looked too long for a quick response.  I approved your comment and meant to get back to it &#8211; then I forgot.  </p>
<p>It looks like this program was using the write command to output multiple character values on a single line, then it was changed to concatenate those values into a single string and write it on a single line.  Either way can work, with a few caveats.</p>
<p>1. You haven&#8217;t shown the command that opens the file.  It defines the maximum length of each line, and the write statements cannot exceed that length.<br />
2. Writing individual values will truncate or pad those strings to make them the length you specify.  If you concatenate the variables into a single string you don&#8217;t have that length control (unless you do it yourself with a rpad() and substr() function for each variable.<br />
3. If you want to add fields to line, go ahead.  SQR only checks on the total length of the line.</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: administrator</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-7177</link>
		<dc:creator>administrator</dc:creator>
		<pubDate>Sat, 15 Oct 2011 21:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-7177</guid>
		<description>You haven&#039;t explained your question very thoroughly, so I will answer what I think you&#039;ve asked.  If I&#039;ve missed your point, please ask again with more information.

Suppose you want today&#039;s date, but in 2010.  If the program runs on October 10, 2011, you want 10/10/10.  If it runs on February 1, 2012, you want 2/1/10.  Here is one way to do it:

let $wanted_date = strtodate(edit($current-date, &#039;mm/dd&#039;) &#124;&#124; &#039;/2010&#039;, &#039;mm/dd/yyyy&#039;)

We use the built-in variable $current-date to get the date the program is running.  We use the edit function to extract the month and day.  We concatenate the hardcoded year.  We convert the string to a date variable with the strtodate function.

Good luck!</description>
		<content:encoded><![CDATA[<p>You haven&#8217;t explained your question very thoroughly, so I will answer what I think you&#8217;ve asked.  If I&#8217;ve missed your point, please ask again with more information.</p>
<p>Suppose you want today&#8217;s date, but in 2010.  If the program runs on October 10, 2011, you want 10/10/10.  If it runs on February 1, 2012, you want 2/1/10.  Here is one way to do it:</p>
<p>let $wanted_date = strtodate(edit($current-date, &#8216;mm/dd&#8217;) || &#8216;/2010&#8242;, &#8216;mm/dd/yyyy&#8217;)</p>
<p>We use the built-in variable $current-date to get the date the program is running.  We use the edit function to extract the month and day.  We concatenate the hardcoded year.  We convert the string to a date variable with the strtodate function.</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guest</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-7160</link>
		<dc:creator>guest</dc:creator>
		<pubDate>Tue, 11 Oct 2011 06:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-7160</guid>
		<description>hi,

how to write code in sqr .(year)</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>how to write code in sqr .(year)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guest</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-7159</link>
		<dc:creator>guest</dc:creator>
		<pubDate>Tue, 11 Oct 2011 06:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-7159</guid>
		<description>hi,

how to  hardcode year in sqr program. but only year.</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>how to  hardcode year in sqr program. but only year.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaibhav</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-6976</link>
		<dc:creator>Vaibhav</dc:creator>
		<pubDate>Mon, 15 Aug 2011 06:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-6976</guid>
		<description>Hello I am new to SQR : wanted to know if we can add up new fields to be written as output in the bank file 
?  The SQR is somewhat as follows : 
!***********************************************************************
!print the output in report
!PRINT-HEADER
!***********************************************************************
BEGIN-PROCEDURE PRINT-HEADER
SHOW &#039;ENTER PRINT-HEADER&#039;

	LET #NO_OF_REC = &#039;&#039;
	LET #TOTAL_AMOUNT = &#039;&#039; 

	!Move #record_cnt TO $record_cnt 99999
	!Move #grand_total TO $grand_total 9999999.99

	if #length = 3.000000	
		show &#039;if_$total_amt1: &#039;$total_amt
		!Let $total_amt = ltrim($total_amt,&#039;0&#039;)  ! modify by retina on 23-March-09 to remove leading zero
		show &#039;if_$total_amt2: &#039;$total_amt
		LET $total_amt = EDIT($total_amt,&#039;9999999999.9&#039;)
		!Let $total_amt = rpad($total_amt,10,&#039;0&#039;)  ! modify by retina on 23-March-09 to add zero at behind	
		show &#039;if_$total_amt3: &#039; $total_amt
		let $total_amt = replace($total_amt, &#039;.&#039;, &#039;&#039;)
		show &#039;if_$total_amt4: &#039;$total_amt	
    else
       if #length = 4.000000
            let $total_amt = $total_amt
        	show &#039;else_if_$total_amt1: &#039;$total_amt
       else 
           show &#039;else_$total_amt1: &#039;$total_amt
		   !Let $total_amt = ltrim($total_amt,&#039;0&#039;)  ! modify by retina on 23-March-09 to remove leading zero
		   show &#039;else_$total_amt2: &#039;$total_amt
		   LET $total_amt = EDIT($total_amt,&#039;9999999999.00&#039;)
		   !Let $total_amt = rpad($total_amt,10,&#039;0&#039;)  ! modify by retina on 23-March-09 to add zero at behind	
		   show &#039;else_$total_amt3: &#039; $total_amt
		   let $total_amt = replace($total_amt, &#039;.&#039;, &#039;&#039;)
		   show &#039;else_$total_amt4: &#039;$total_amt   
	   end-if		   
	end-if   		
	
WRITE #file FROM
	      &#039;F&#039;:1
             &#039;110251352001&#039;:12      
             &#039;N01&#039;:3 !Modified by shivaram for January 2010 Bonus run.
             !&#039;N02&#039;:3 Modified by shivaram for January 2010 Regular run.            
             $pymt_date:12      
             $pay_date:6       
             &#039;K&#039;:1        
             !&#039;********&#039;:8          
             &#039;********&#039;:8 ! Low Tze Xiang 08 June 2009
             $record_cnt:5         
             !$total_amt:13  
             $total_amt:10 ! Low Tze Xiang 08 June 2009     
             &#039; &#039;:7       
             &#039; &#039;:12
             &#039; &#039;:2
	         &#039;1&#039;:1

	     
SHOW &#039;EXIT PRINT-HEADER&#039;
END-PROCEDURE PRINT-HEADER			 
			 
!***********************************************************************
!print the output in report
!
BEGIN-PROCEDURE WRITE-OUTPUT-RECORD
!***********************************************************************

   !LET #NETPAY = #NETPAY * 100
   !Move #NETPAY To $DisplayAmount 99999999

SHOW &#039;EMPLID&#039; &amp;EMPLID
SHOW &#039;$BANKID&#039; $BANKID
SHOW &#039;$BANK_BRANCH&#039; $BANK_BRANCH
SHOW &#039;$ACCOUNT_NO&#039; $ACCOUNT_NO
!WRITE #file FROM
!		&#039; &#039;:1
!		&amp;EMPLID:12
!		$ACCOUNT_NAME:20
!		$BANKID:3
!		$BANK_BRANCH:3
!		$ACCOUNT_NO:9
!		$netpay:10
!		&#039; &#039;:4
!		&#039; &#039;:6
!		$pymt_date:12

let $EMPLID = Rpad(&amp;EMPLID,12,&#039; &#039;)	
let $ACCOUNT_NAME_1 = Rpad($ACCOUNT_NAME,20,&#039; &#039;)	
let $BANKID_1 = Rpad($BANKID,3,&#039; &#039;)
let $BANK_BRANCH_1 = Rpad($BANK_BRANCH,3,&#039; &#039;)
let $ACCOUNT_NO_1 = Rpad($ACCOUNT_NO,9,&#039; &#039;)
let $netpay_1 = Rpad($netpay,10,&#039; &#039;)
!let $pymt_date_1 = Rpad($pymt_date,12,&#039; &#039;)
!let $pymt_date_1 = Rpad(&#039;            &#039;,12,&#039; &#039;) ! Low Tze Xiang 08 June 2009
let $pymt_date_1 = Rpad($pymt_date,12,&#039; &#039;) ! Low Tze Xiang 10 June 2009
!		$ACCOUNT_NAME:20
!		$BANKID:3
!		$BANK_BRANCH:3
!		$ACCOUNT_NO:9
!		$netpay:10
!		&#039; &#039;:4
!		&#039; &#039;:6
!		$pymt_date:12

             
  Let $String =  &#039; &#039; &#124;&#124; $EMPLID &#124;&#124; $ACCOUNT_NAME_1 &#124;&#124; $BANKID_1 &#124;&#124;$BANK_BRANCH_1 &#124;&#124; $ACCOUNT_NO_1 &#124;&#124; $netpay_1 &#124;&#124; &#039;    &#039; &#124;&#124; &#039;      &#039;&#124;&#124; $pymt_date_1
show $String

Write  #file FROM
	$String

 !  Add 1 to #Tot_Recs
   
END-PROCEDURE WRITE-OUTPUT-RECORD</description>
		<content:encoded><![CDATA[<p>Hello I am new to SQR : wanted to know if we can add up new fields to be written as output in the bank file<br />
?  The SQR is somewhat as follows :<br />
!***********************************************************************<br />
!print the output in report<br />
!PRINT-HEADER<br />
!***********************************************************************<br />
BEGIN-PROCEDURE PRINT-HEADER<br />
SHOW &#8216;ENTER PRINT-HEADER&#8217;</p>
<p>	LET #NO_OF_REC = &#8221;<br />
	LET #TOTAL_AMOUNT = &#8221; </p>
<p>	!Move #record_cnt TO $record_cnt 99999<br />
	!Move #grand_total TO $grand_total 9999999.99</p>
<p>	if #length = 3.000000<br />
		show &#8216;if_$total_amt1: &#8216;$total_amt<br />
		!Let $total_amt = ltrim($total_amt,&#8217;0&#8242;)  ! modify by retina on 23-March-09 to remove leading zero<br />
		show &#8216;if_$total_amt2: &#8216;$total_amt<br />
		LET $total_amt = EDIT($total_amt,&#8217;9999999999.9&#8242;)<br />
		!Let $total_amt = rpad($total_amt,10,&#8217;0&#8242;)  ! modify by retina on 23-March-09 to add zero at behind<br />
		show &#8216;if_$total_amt3: &#8216; $total_amt<br />
		let $total_amt = replace($total_amt, &#8216;.&#8217;, &#8221;)<br />
		show &#8216;if_$total_amt4: &#8216;$total_amt<br />
    else<br />
       if #length = 4.000000<br />
            let $total_amt = $total_amt<br />
        	show &#8216;else_if_$total_amt1: &#8216;$total_amt<br />
       else<br />
           show &#8216;else_$total_amt1: &#8216;$total_amt<br />
		   !Let $total_amt = ltrim($total_amt,&#8217;0&#8242;)  ! modify by retina on 23-March-09 to remove leading zero<br />
		   show &#8216;else_$total_amt2: &#8216;$total_amt<br />
		   LET $total_amt = EDIT($total_amt,&#8217;9999999999.00&#8242;)<br />
		   !Let $total_amt = rpad($total_amt,10,&#8217;0&#8242;)  ! modify by retina on 23-March-09 to add zero at behind<br />
		   show &#8216;else_$total_amt3: &#8216; $total_amt<br />
		   let $total_amt = replace($total_amt, &#8216;.&#8217;, &#8221;)<br />
		   show &#8216;else_$total_amt4: &#8216;$total_amt<br />
	   end-if<br />
	end-if   		</p>
<p>WRITE #file FROM<br />
	      &#8216;F&#8217;:1<br />
             &#8216;110251352001&#8242;:12<br />
             &#8216;N01&#8242;:3 !Modified by shivaram for January 2010 Bonus run.<br />
             !&#8217;N02&#8242;:3 Modified by shivaram for January 2010 Regular run.<br />
             $pymt_date:12<br />
             $pay_date:6<br />
             &#8216;K&#8217;:1<br />
             !&#8217;********&#8217;:8<br />
             &#8216;********&#8217;:8 ! Low Tze Xiang 08 June 2009<br />
             $record_cnt:5<br />
             !$total_amt:13<br />
             $total_amt:10 ! Low Tze Xiang 08 June 2009<br />
             &#8216; &#8216;:7<br />
             &#8216; &#8216;:12<br />
             &#8216; &#8216;:2<br />
	         &#8216;1&#8242;:1</p>
<p>SHOW &#8216;EXIT PRINT-HEADER&#8217;<br />
END-PROCEDURE PRINT-HEADER			 </p>
<p>!***********************************************************************<br />
!print the output in report<br />
!<br />
BEGIN-PROCEDURE WRITE-OUTPUT-RECORD<br />
!***********************************************************************</p>
<p>   !LET #NETPAY = #NETPAY * 100<br />
   !Move #NETPAY To $DisplayAmount 99999999</p>
<p>SHOW &#8216;EMPLID&#8217; &amp;EMPLID<br />
SHOW &#8216;$BANKID&#8217; $BANKID<br />
SHOW &#8216;$BANK_BRANCH&#8217; $BANK_BRANCH<br />
SHOW &#8216;$ACCOUNT_NO&#8217; $ACCOUNT_NO<br />
!WRITE #file FROM<br />
!		&#8216; &#8216;:1<br />
!		&amp;EMPLID:12<br />
!		$ACCOUNT_NAME:20<br />
!		$BANKID:3<br />
!		$BANK_BRANCH:3<br />
!		$ACCOUNT_NO:9<br />
!		$netpay:10<br />
!		&#8216; &#8216;:4<br />
!		&#8216; &#8216;:6<br />
!		$pymt_date:12</p>
<p>let $EMPLID = Rpad(&amp;EMPLID,12,&#8217; &#8216;)<br />
let $ACCOUNT_NAME_1 = Rpad($ACCOUNT_NAME,20,&#8217; &#8216;)<br />
let $BANKID_1 = Rpad($BANKID,3,&#8217; &#8216;)<br />
let $BANK_BRANCH_1 = Rpad($BANK_BRANCH,3,&#8217; &#8216;)<br />
let $ACCOUNT_NO_1 = Rpad($ACCOUNT_NO,9,&#8217; &#8216;)<br />
let $netpay_1 = Rpad($netpay,10,&#8217; &#8216;)<br />
!let $pymt_date_1 = Rpad($pymt_date,12,&#8217; &#8216;)<br />
!let $pymt_date_1 = Rpad(&#8217;            &#8216;,12,&#8217; &#8216;) ! Low Tze Xiang 08 June 2009<br />
let $pymt_date_1 = Rpad($pymt_date,12,&#8217; &#8216;) ! Low Tze Xiang 10 June 2009<br />
!		$ACCOUNT_NAME:20<br />
!		$BANKID:3<br />
!		$BANK_BRANCH:3<br />
!		$ACCOUNT_NO:9<br />
!		$netpay:10<br />
!		&#8216; &#8216;:4<br />
!		&#8216; &#8216;:6<br />
!		$pymt_date:12</p>
<p>  Let $String =  &#8216; &#8216; || $EMPLID || $ACCOUNT_NAME_1 || $BANKID_1 ||$BANK_BRANCH_1 || $ACCOUNT_NO_1 || $netpay_1 || &#8216;    &#8216; || &#8216;      &#8216;|| $pymt_date_1<br />
show $String</p>
<p>Write  #file FROM<br />
	$String</p>
<p> !  Add 1 to #Tot_Recs</p>
<p>END-PROCEDURE WRITE-OUTPUT-RECORD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: administrator</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-6327</link>
		<dc:creator>administrator</dc:creator>
		<pubDate>Tue, 04 Jan 2011 18:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-6327</guid>
		<description>Welcome, Aditya.  The term &quot;function&quot; usually refers to the functions built-in to the SQR language like edit(), datetostr().  The procedures (or subroutines) that Peoplesoft delivers are ordinary SQR like you would write for yourself.  I don&#039;t think Oracle documents them, and many of them are specific to a few SQRs.  The ones I use in every program are in stdenv.sqc, setup01.sqc (or setup02.sqc), datetime.sqc, and stdapi.sqc.</description>
		<content:encoded><![CDATA[<p>Welcome, Aditya.  The term &#8220;function&#8221; usually refers to the functions built-in to the SQR language like edit(), datetostr().  The procedures (or subroutines) that Peoplesoft delivers are ordinary SQR like you would write for yourself.  I don&#8217;t think Oracle documents them, and many of them are specific to a few SQRs.  The ones I use in every program are in stdenv.sqc, setup01.sqc (or setup02.sqc), datetime.sqc, and stdapi.sqc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aditya</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-6307</link>
		<dc:creator>Aditya</dc:creator>
		<pubDate>Tue, 28 Dec 2010 12:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-6307</guid>
		<description>Hi,
I am a beginner to Peoplesoft &amp; SQR, and have just started developing SQRs.
I heard from my colleagues that there is no readily available reference for functions in SQR. It would be very tedious if I have to look into every .sqc file just to find a function that serves my purpose. I would like to have a compilation of SQR functions for reference, along with the corresponding .sqc file that needs to be included.
Please let me know of any solution</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am a beginner to Peoplesoft &amp; SQR, and have just started developing SQRs.<br />
I heard from my colleagues that there is no readily available reference for functions in SQR. It would be very tedious if I have to look into every .sqc file just to find a function that serves my purpose. I would like to have a compilation of SQR functions for reference, along with the corresponding .sqc file that needs to be included.<br />
Please let me know of any solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepu R</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-6268</link>
		<dc:creator>Deepu R</dc:creator>
		<pubDate>Fri, 03 Dec 2010 06:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-6268</guid>
		<description>Hi

Very nice site. I m a beginner to SQR. Able to get so many useful information.
Thanks</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Very nice site. I m a beginner to SQR. Able to get so many useful information.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: administrator</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-6213</link>
		<dc:creator>administrator</dc:creator>
		<pubDate>Sat, 13 Nov 2010 22:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-6213</guid>
		<description>Ruth, my customers have usually been so grateful to get useful information that they&#039;ve never even asked about font changes.  I tried adding boldface and color to their reports and they didn&#039;t even notice.  So I don&#039;t have any experience with the advanced features you&#039;re already using.  I would have pointed you to pssqr.ini, but you&#039;re already there.  The DECLARE-PRINTER documentation talks about adding fonts to a POSTSCRI.STR file.  If that&#039;s too sketchy, you could join the discussion group on www.sqrug.org.  (SQR User Group)  Good luck.</description>
		<content:encoded><![CDATA[<p>Ruth, my customers have usually been so grateful to get useful information that they&#8217;ve never even asked about font changes.  I tried adding boldface and color to their reports and they didn&#8217;t even notice.  So I don&#8217;t have any experience with the advanced features you&#8217;re already using.  I would have pointed you to pssqr.ini, but you&#8217;re already there.  The DECLARE-PRINTER documentation talks about adding fonts to a POSTSCRI.STR file.  If that&#8217;s too sketchy, you could join the discussion group on <a href="http://www.sqrug.org" rel="nofollow">http://www.sqrug.org</a>.  (SQR User Group)  Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruth Wannek</title>
		<link>http://peoplesoftsqr.com/index.php/about/comment-page-1/#comment-6200</link>
		<dc:creator>Ruth Wannek</dc:creator>
		<pubDate>Thu, 11 Nov 2010 16:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/wordpress/?page_id=2#comment-6200</guid>
		<description>Hi there!

I&#039;ve been trying to add embedded fonts into the PDF output from an SQR process.  Have you ever seen this done?  I&#039;ve modivied the PSsqr.ini to include Embed All or Embed=5 (which is the font I want to embed) but I can&#039;t get it to work.  

Any thoughts?

Thanks,
Ruth</description>
		<content:encoded><![CDATA[<p>Hi there!</p>
<p>I&#8217;ve been trying to add embedded fonts into the PDF output from an SQR process.  Have you ever seen this done?  I&#8217;ve modivied the PSsqr.ini to include Embed All or Embed=5 (which is the font I want to embed) but I can&#8217;t get it to work.  </p>
<p>Any thoughts?</p>
<p>Thanks,<br />
Ruth</p>
]]></content:encoded>
	</item>
</channel>
</rss>

