-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS3468.xsl
2120 lines (2117 loc) · 110 KB
/
IRS3468.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS3468Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- Defines the stage of the data, e.g. original or latest -->
<xsl:param name="Form3468Data" select="$RtnDoc/IRS3468"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form3468Data)"/>
</xsl:call-template>
</title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private"/>
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 3468"/>
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"/>
<xsl:call-template name="InitJS"/>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="IRS3468Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form3468">
<xsl:call-template name="DocumentHeader"/>
<!-- Begin Form Number and Name -->
<div class="styTBB" style="width:187mm;height:19mm;">
<div class="styFNBox" style="width:34mm;">
<div style="height:13.5mm;">
Form <span class="styFormNumber">3468</span>
<div style="height:0mm;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data"/>
</xsl:call-template>
</div>
</div>
<div style="height:9mm;font-family:arial;font-size:7pt; padding-top:2mm;">
<div class="styAgency">Department of the Treasury</div>
<span class="styAgency">Internal Revenue Service</span>
<span class="styAgency" style="padding-left:3mm;">(99)</span>
</div>
</div>
<div class="styFTBox" style="width:122mm;height:20mm;padding-top:1mm;">
<div class="styMainTitle" style="height:5mm;">Investment Credit</div>
<div class="styFBT" style="padding-top:0mm;">
<img src="{$ImagePath}/3468_Bullet.gif" alt="bullet image"/> See separate instructions.
</div>
<div class="styFBT" style="padding-top:0mm;">
<img src="{$ImagePath}/3468_Bullet.gif" alt="bullet image"/> Attach to your tax return.
</div>
<div class="styFBT" style="padding-top:0mm;">
<img src="{$ImagePath}/3468_Bullet.gif" alt="bullet image"/> Information on Form 3468 and its instructions is available at www.irs.gov/form3468.
</div>
</div>
<div class="styTYBox" style="width:30mm;height:22.5mm;line-height:110%;padding-top:0mm;">
<div class="styOMB" style="height:2mm;">OMB No. 1545-0155</div>
<div style="text-align:left;padding-left:3mm;">
<div class="styTY" style="height:9.5mm;">20<span class="styTYColor">12</span>
</div>
<div style="padding-top:0mm;">
Attachment
Sequence No.<span class="styBoldText">174</span>
</div>
</div>
</div>
</div>
<!-- End Form Number and Name section -->
<!-- Begin Names and Identifying number section -->
<div class="styBB" style="width:187mm;">
<div class="styNameBox" style="width:146mm;height:8mm;font-size:7pt;font-weight:normal;">
Name(s) shown on return<br/>
<span>
<xsl:choose>
<xsl:when test="$RtnHdrData/ReturnType='1040'">
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
<div class="styEINBox" style="width:30mm;height:4mm;font-size:7pt;font-weight:bold;padding-left:2mm;">
Identifying number<br/>
<br/>
<span style="width:25mm;text-align:left;font-size:7pt;font-weight:normal;">
<xsl:choose>
<xsl:when test="$RtnHdrData/ReturnType='1040'">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
</div>
<!-- Start of Part one -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="width:13mm;">Part I</div>
<span class="styPartDesc" style="font-weight:bold;font-size:7.5pt;">
Information Regarding the Election To Treat the Lessee as the Purchaser of Investment Credit Property
</span>
</div>
<div style="width:187mm;">
If you are claiming the investment credit as a lessee based on a section 48(d) (as in effect on November 4,
1990) election, provide the following information. If you acquired more than one property as a lessee,
attach a statement showing the information below.
</div>
<div class="styBB" style="width:187mm;">
<!-- Line 1 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4mm;">1</div>
<div class="styLNDesc" style="width:25mm;height:4mm;">
Name of lessor
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data/NameOfLessor"/>
</xsl:call-template>
</div>
<span class="styUnderlineAmount" style="float:left; width:154mm;border-bottom-width:1px;
text-align:left">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/NameOfLessor"/>
</xsl:call-template>
</span>
</div>
<!-- Line 2 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4mm;">2</div>
<div class="styLNDesc" style="width:25mm;height:4mm;">
Address of lessor
</div>
<span class="styUnderlineAmount" style="float:left; width:154mm;border-bottom-width:1px;
text-align:left;">
<!-- <xsl:call-template name="PopulateMonthDayYear"> -->
<xsl:choose>
<xsl:when test="$Form3468Data/USAddressOfLessor/AddressLine1">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/USAddressOfLessor/AddressLine1"/>
</xsl:call-template>
<span style="width:2mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/USAddressOfLessor/AddressLine2"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/USAddressOfLessor/City"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/USAddressOfLessor/State"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/USAddressOfLessor/ZIPCode"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/ForeignAddressOfLessor/AddressLine1"/>
</xsl:call-template>
<span style="width:2mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/ForeignAddressOfLessor/AddressLine2"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/ForeignAddressOfLessor/City"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/ForeignAddressOfLessor/ProvinceOrState"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/ForeignAddressOfLessor/Country"/>
</xsl:call-template>
<span style="width:1mm"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/ForeignAddressOfLessor/PostalCode"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
<!-- Line 3 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4mm;">3</div>
<div class="styLNDesc" style="width:31mm;height:4mm;">
Description of property
</div>
<span class="styUnderlineAmount" style="float:left; width:148mm;border-bottom-width:1px;
text-align:left;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form3468Data/DescriptionOfProperty"/>
</xsl:call-template>
</span>
</div>
<!-- Line 4 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4mm;">4</div>
<div class="styLNDesc" style="width:137mm;height:4mm;">
Amount for which you were treated as having acquired the property
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
<img src="{$ImagePath}/3468_Bullet.gif" width="7" alt="bullet image"/>
</div>
<span class="styUnderlineAmount" style="width:2mm;border-bottom-width:0px;">$</span>
<span style="float:left; width:32mm;padding-top:.5mm;padding-left:1mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/AmountTreatedAsAcquiredProp"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- Start of Part II -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styPartName" style="width:13mm;">Part II</div>
<div class="styPartDesc" style="font-weight:bold;font-size:7.5pt;">
Qualifying Advanced Coal Project Credit, Qualifying Gasification Project Credit, and Qualifying Advanced Energy Project Credit
</div>
</div>
<!-- Start of Line 5 -->
<div style="width:187mm; height:2.5mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:2mm;">5</div>
<div class="styLNDesc" style="padding-top:2mm;">
Qualifying advanced coal project credit (see instructions):</div>
<div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:6.5mm"/>
<div class="styLNAmountBox" style="border-bottom-width: 0px; height: 6.5mm"/>
</div>
<!-- Line 5a -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:106mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">a</div>
<div class="styLNDesc" style="width:95mm;font-size:7pt;">
Qualified investment in integrated gasification combined cycle
property placed in service during the tax year for projects described in
<span style="float:left;">section 48A(d)(3)(B)(i)</span>
<span style="float:right;">
<span style="width:2mm;border-botom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:33mm;height:3.5mm;padding-top:0px;padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/IntgrtGasCombCycPropInvstBasis"/>
</xsl:call-template>
</span>
<span style="width:25mm;padding-top:0mm;">x 20% (.20)</span>
</span>
</div>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:81mm;">
<div class="styLNRightNumBox" style="height:11mm;padding-top:7mm;">5a</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;width:32mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcGasCombinedCycPropInvstCr"/>
</xsl:call-template>
</div>
<div style="float:left;">
<div class="styLNRightNumBoxNBB" style="height:11mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:11mm"/>
</div>
</div>
</div>
</div>
<!-- End of 5a -->
<!-- Line 5b -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:106mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:98mm;">
Qualified investment in advanced coal-based generation technology
property placed in service during the tax year for projects
<span style="float:left;">described in section 48A(d)(3)(B)(ii)</span>
<span style="float:left">
<span style="width:2mm;border-bottom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:29mm;padding-top:0px;padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/AdvancedCoalBaseTechnologyAmt"/>
</xsl:call-template>
</span>
<span style="width:16mm;padding-top:0mm;font-size:6.3pt;">x 15% (.15)</span>
</span>
</div>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:81mm;">
<div class="styLNRightNumBox" style="height:11mm;padding-top:7mm;">5b</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;width:32mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcAdvancedCoalBaseTechAmt"/>
</xsl:call-template>
</div>
<div style="float:left;">
<div class="styLNRightNumBoxNBB" style="height:11mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:11mm"/>
</div>
</div>
</div>
</div>
<!-- End of 5b -->
<!-- Line 5c -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:106mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">c</div>
<div class="styLNDesc" style="width:98mm;">
Qualified investment in advanced coal-based generation technology
property placed in service during the tax year for projects
<span style="float:left;">described in section 48A(d)(3)(B)(iii)</span>
<span style="float:left;">
<span style="width:2mm;border-bottom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:29mm;padding-top:0px;padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyAdvCoalBasedTechAmt"/>
</xsl:call-template>
</span>
<span style="width:16mm;padding-top:0mm;font-size:6.3pt;">x 30% (.30)</span>
</span>
</div>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:81mm;">
<div class="styLNRightNumBox" style="height:11mm;padding-top:7mm;">5c</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;width:32mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcAdvCoalBasedTechAmt"/>
</xsl:call-template>
</div>
<div style="float:left;">
<div class="styLNRightNumBoxNBB" style="height:11mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:11mm"/>
</div>
</div>
</div>
</div>
<!-- End of line 5c -->
<!-- Line 5d -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">d</div>
<div class="styLNDesc" style="width:138mm;height:4.5mm;">
Total. Add lines 5a, 5b, and 5c
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:4px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</div>
<div class="styLNRightNumBox">5d</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/TotalQlfyAdvCoalProjectCrAmt"/>
</xsl:call-template>
</div>
</div>
<!-- End of Line 5d -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:1mm;">6</div>
<div class="styLNDesc" style="padding-top:1mm;width:138mm;">
Qualifying gasification project credit (see instructions):</div>
<div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:5.5mm"/>
<div class="styLNAmountBox" style="border-bottom-width: 0px; height: 5.5mm"/>
</div>
<!-- Line 6a -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:106mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">a</div>
<div class="styLNDesc" style="width:95mm;font-size:7pt;">
Qualified investment in qualified gasification property placed
in service during the tax year for which credits were allocated or
reallocated after October 3, 2008, and that include equipment that
separates and sequesters at least 75% of the project’s carbon dioxide
<span style="float:left;"> emissions
<!-- <span style="width:2mm"/> -->
</span>
<span style="float:left;">
<span class="styBoldText">
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
<span style="width:2mm;">$</span>
<span class="styUnderlineAmount" style="float:none;width:30mm;height:3.5mm;padding-top:0px;padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyGasificationPropertyBasis"/>
</xsl:call-template>
</span>
<span style="width:19mm;padding-top:0mm;padding-left:1mm;">x 30% (.30)</span>
</span>
</div>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:40mm;padding-top:13mm;">
<div class="styLNRightNumBox" style="height:3mm;padding-top:1.5mm;">6a</div>
<div class="styLNAmountBox" style="height:3mm;padding-top:1.5mm;width:32mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcQlfyGasificationBasis"/>
</xsl:call-template>
</div>
</div>
</div>
<div class="styLNRightNumBoxNBB" style="height:18.5mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:18.5mm"/>
<!--<div class="styLNAmountBoxNBB" style="height: 2mm;background-color:yellow;width:2mm;float:left;"/> -->
</div>
<!-- End of 6a -->
<!-- Line 6b -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:106mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:94mm;font-size:7pt;">
Qualified investment in property other than in <b>a</b> above placed
<span style="float:left;">in service during the tax year</span>
<span style="float:left;">
<span style="width:2mm;float:left;padding-left:2mm;">$</span>
<span class="styUnderlineAmount" style="width:30mm;padding-top:0px;
padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/OtherQlfyInvstPropertyBasis"/>
</xsl:call-template>
</span>
<span style="width:17mm;padding-top:0mm;">x 20% (.20)</span>
</span>
</div>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:81mm;">
<div class="styLNRightNumBox" style="height:8mm;padding-top:4mm;">6b</div>
<div class="styLNAmountBox" style="width:32mm;height:8mm;padding-top:4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcOtherQlfyInvstPropCredit"/>
</xsl:call-template>
</div>
<div style="float:left;">
<div class="styLNRightNumBoxNBB" style="height:8mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:8mm"/>
</div>
</div>
</div>
</div>
<!-- End of line 6b -->
<!-- Line 6c -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;padding-left:4mm;">c</div>
<div class="styLNDesc" style="width:138mm;">
Total. Add lines 6a and 6b
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:4px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:8mm;">6c</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/TotalQlfyGasificationProjCrdt"/>
</xsl:call-template>
</div>
</div>
<!-- End of Line 6c -->
<!--Line 7 -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146mm;">
<div class="styLNLeftNumBox" style="padding-left:2mm;">7</div>
<div class="styLNDesc" style="width:138mm;font-size:7pt;">
Qualifying advanced energy project credit (see instructions):
<span style="float:left;">Qualified investment in advanced energy project property placed in
<span style="float:left;">service during the tax year</span>
<span style="float:left;">
<span class="styBoldText">
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</span>
<span style="float:left;">
<span style="width:2mm;border-bottom-width:0px;float:left;padding-left:2mm;">$</span>
<span class="styUnderlineAmount" style="width:30mm;padding-top:0px;padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/BasisQlfyInvstAdvEnergy"/>
</xsl:call-template>
</span>
<span style="width:19mm;padding-top:0mm;padding-left:1mm;">x 30% (.30)</span>
</span>
<!-- <span style="float:left;">
<span class="styBoldText">
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</span> -->
</span>
</div>
</div>
</div>
<div class="styLNRightNumBox" style="height:11mm;padding-top:7mm;">7</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcBasisQlfyInvstAdvEnergy"/>
</xsl:call-template>
</div>
</div>
<!-- End of 7 -->
<!--Line 8 -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146mm;">
<div class="styLNLeftNumBox" style="padding-left:2mm;">8</div>
<div class="styLNDesc" style="width:138mm;font-size:7pt;">
Reserved for future use
<!-- Qualifying therapeutic discovery project credit (see instructions):
<span style="float:left;">Qualified investment in a qualifying therapeutic discovery project</span>
<span style="float:left;">
<span style="width:2mm;float:left;padding-left:2mm;">$</span>
<span class="styUnderlineAmount" style="width:28mm;padding-top:0px;
padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/TotalQlfyInvestmentCrAmt"/>
</xsl:call-template>
</span>
<span style="width:19mm;padding-top:0mm;padding-left:1mm;">x 50% (.50)</span>
</span> -->
</div>
</div>
</div>
<!-- <div class="styLNRightNumBox" style="height:8mm;padding-top:4mm;">8</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcTotalQlfyInvestmentCrAmt"/>
</xsl:call-template>
</div>
</div> -->
<div class="styLNRightNumBox" style="height:4mm;">8</div>
<div class="styLNAmountBox" style="height:4mm;background-color:lightgrey;"></div>
</div>
<!-- End of 8 -->
<!-- Line 9 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;padding-left:2mm;">9</div>
<div class="styLNDesc" style="width:138mm;">
Enter the applicable unused investment credit from cooperatives (see instructions)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:4px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:8mm;">9</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/UnusedCreditFromCoopAmt"/>
</xsl:call-template>
</div>
</div>
<!-- End of Line 9 -->
<!-- Line 10 -->
<div class="styBB" style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">10</div>
<div class="styLNDesc" style="width:138mm;height:4.5mm;">
Add lines 5d, 6c, 7, and 9. Report this amount on Form 3800, line 1a
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:4px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:8mm;border-bottom-width:0px;">10</div>
<div class="styLNAmountBox" style="border-bottom-width:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/TotalAdvCoalGasAndEnergyCrAmt"/>
</xsl:call-template>
</div>
</div>
<!-- End of Line 10 -->
<!-- Part III -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styPartName" style="width:13mm;">Part III</div>
<div class="styPartDesc" style="font-weight:bold;font-size:7.5pt;">
Rehabilitation Credit and Energy Credit</div>
</div>
<!-- Line 11 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox">11</div>
<div class="styLNDesc" style="width:139mm;padding-top:2mm;">
Rehabilitation credit (see instructions for requirements that must be met):</div>
<div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:6.5mm"/>
<div class="styLNAmountBox" style="border-bottom-width: 0px; height: 6.5mm"/>
</div>
<!-- End of line 11 -->
<!-- Line 11a -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">a</div>
<div class="styLNDesc" style="width:139mm;">
Check this box if you are electing under section 47(d)(5) to take your qualified rehabilitation
expenditures into account for the tax year in which paid (or, for self-rehabilitated property,
when capitalized). See instructions. <b>Note.</b> This election applies to the current tax year
and to all later tax years. You may not revoke this election without IRS consent
<span class="styBoldText">
<span style="width:4px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:4px;"/>
<img src="{$ImagePath}/3468_Bullet.gif" style="float" alt="right arrow"/>
<span style="width:2mm;"/>
<input type="checkbox" alt="alt" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form3468Data/RehbltExpendElectionInd"/>
<xsl:with-param name="BackupName">
IRS3468RehabilitationExpendituresUsed</xsl:with-param>
</xsl:call-template>
</input>
</span>
</div>
<div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:15mm"/>
<div class="styLNAmountBox" style="border-bottom-width: 0px; height: 15mm"/>
</div>
<!-- End of line 11a -->
<!-- Line 11b -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;padding-top:0mm;">b</div>
<div style="float:left;clear:none;">
<div style="width:139mm;">
<div class="styLNDesc" style="width:95mm;font-size:7pt;padding-top:0mm;">
Enter the date on which the 24- or 60-month measuring period begins
<!-- <span style="float:left;"></span>
<span style="float:left;">
<span style="width:2mm;border-botom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:32mm;height:3.5mm;padding-top:0px;
padding-bottom:0px;">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form3468Data/QualifiedFuelCellPropertyBasis"/>
</xsl:call-template>
</span>
<span style="width:17mm;padding-top:0mm;">x 20% (.20)</span>
</span> -->
</div>
<span class="styUnderlineAmount" style="float:none:;width:30mm;padding-top:0px;
padding-bottom:0px;text-align:center;">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form3468Data/RehbltPeriodBeginningDt"/>
</xsl:call-template>
</span>
</div>
<span class="styLNDesc" style="width:13mm;padding-top:0mm;;">and ends</span>
<span class="styUnderlineAmount" style="float:none:;width:30mm;padding-top:0px;
padding-bottom:0px;text-align:center;">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form3468Data/RehbltPeriodEndDt"/>
</xsl:call-template>
</span>
</div>
<div style="float:left;clear:none;">
<div class="styLNRightNumBoxNBB" style="height:8.5mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:8.5mm"/>
</div>
</div>
<!-- End of line 11b -->
<!-- Line 11c -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-top:0mm;padding-left:4mm;">c</div>
<div class="styLNDesc" style="width:139mm;padding-top:0mm;">
Enter the adjusted basis of the building as of the beginning date above
(or the first day of your holding period, if later)
<span class="styBoldText">
<span style="width:4px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
<span style="width:2mm;">$</span>
<span style="border-style: solid; border-color:black;border-bottom-width:1px;border-top-width:0px;border-right-width:0px;border-left-width:0px;width:29mm;height:3.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/AdjustedBasisOfBuildingAmt"/>
</xsl:call-template>
</span>
</div>
<div class="styLNRightNumBoxNBB" style="height:8mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:8mm"/>
</div>
<!-- End of line 11c -->
<!-- Line 11d -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-top:0mm;padding-left:4mm;">d</div>
<div class="styLNDesc" style="width:139mm;padding-top:0mm;">
Enter the amount of the qualified rehabilitation expenditures incurred, or
treated as incurred, during the period on line 11b above
<span class="styBoldText">
<span style="width:2px;"/>
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:14px;"/>.
</span>
<span style="width:2mm;">$</span>
<span style="border-style: solid; border-color:black;border-bottom-width:1px;border-top-width:0px;border-right-width:0px;border-left-width:0px;width:29mm;height:3.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyRehbltExpendIncurredAmt"/>
</xsl:call-template>
</span>
</div>
<div class="styLNRightNumBoxNBB" style="height:8mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:8mm"/>
</div>
<!-- End of line 11d -->
<div style="width:187mm; ">
<div class="styLNLeftNumBox" style=""/>
<div class="styLNDesc" style="width:139mm;">
Enter the amount of qualified rehabilitation expenditures and multiply by the percentage shown:</div>
<div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:6mm"/>
<div class="styLNAmountBox" style="border-bottom-width: 0px; height: 6mm"/>
</div>
<!-- Line 11e -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146.8mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">e</div>
<div class="styLNDesc" style="width:90mm;">
Pre-1936 buildings located in the Gulf Opportunity Zone
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcQlfyPre1936BldgGOZAmt"/>
</xsl:call-template>
</div>
<span style="float:left;">
<span style="width:2mm;border-botom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:29mm;padding-top:0px;
padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyPre1936BuildingsGOZAmt"/>
</xsl:call-template>
</span>
<span style="width:17mm;padding-top:0mm;">x 13% (.13)</span>
</span>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:40mm;">
<div class="styLNRightNumBox" style="width:8mm;height:3mm;padding-top:.5mm;">11e</div>
<div class="styLNAmountBox" style="width:31mm;height:3mm;padding-top:.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcQlfyPre1936BldgGOZAmt"/>
</xsl:call-template>
</div>
</div>
</div>
</div>
<!-- End of 11e -->
<!-- Line 11f -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146.8mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">f</div>
<div class="styLNDesc" style="width:90mm;font-size:7pt;">
Pre-1936 buildings affected by a Midwestern disaster
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyRehbltPre1936BldgMWDACrAmt"/>
</xsl:call-template>
</div>
<span style="float:left;">
<span style="width:2mm;border-botom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:29mm;padding-top:0px;
padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyRehbltPre1936BldgMWDAAmt"/>
</xsl:call-template>
</span>
<span style="width:17mm;padding-top:0mm;">x 13% (.13)</span>
</span>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:40mm;">
<div class="styLNRightNumBox" style="width:8mm;height:3mm;padding-top:.5mm;">11f</div>
<div class="styLNAmountBox" style="width:31mm;height:3mm;padding-top:.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyRehbltPre1936BldgMWDACrAmt"/>
</xsl:call-template>
</div>
</div>
</div>
</div>
<!-- End of Line 11f -->
<!-- Line 11g -->
<div class="styBB" style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146.8mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">g</div>
<div class="styLNDesc" style="width:90mm;font-size:7pt;">
Other pre-1936 buildings
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcRehbltOtherPre1936BldgAmt"/>
</xsl:call-template>
</div>
<span style="float:left;">
<span style="width:2mm;border-botom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:29mm;padding-top:0px;
padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/QlfyRehbltOtherPre1936BldgAmt"/>
</xsl:call-template>
</span>
<span style="width:17mm;padding-top:0mm;">x 10% (.10)</span>
</span>
</div>
</div>
<div style="float:left;clear:none;">
<div style="width:40mm;">
<div class="styLNRightNumBox" style="width:8mm;height:3mm;padding-top:.5mm;">11g</div>
<div class="styLNAmountBox" style="width:31mm;height:3mm;padding-top:.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcRehbltOtherPre1936BldgAmt"/>
</xsl:call-template>
</div>
</div>
</div>
</div>
<!-- End of Line 11g -->
<!-- Page Break and Footer-->
<div style="width:187mm;clear:both;padding-top:0.4mm;" class="pageend">
<div style="width:90mm;font-weight:bold;" class="styGenericDiv">For Paperwork Reduction Act Notice, see separate instructions.</div>
<div style="width:55mm;text-align:center;" class="styGenericDiv">Cat. No. 12276E</div>
<div style="float:right;" class="styGenericDiv">Form <span class="styBoldText">3468</span> (2012)</div>
</div>
<div style="width:187mm;padding-top:1mm;">
Form 3468 (2012)
<span style="width:150mm;"/>
<span style="width:10mm;">Page <span class="styBoldText" style="font-size:8pt;">2</span>
</span>
</div>
<!-- END Page Header -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styPartName" style="width:13mm;">Part III</div>
<div class="styPartDesc" style="font-weight:bold;font-size:7.5pt;">
Rehabilitation Credit and Energy Credit<span style="font-weight:normal">(continued)</span>
</div>
</div>
<!-- Line 11h -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">h</div>
<div class="styLNDesc" style="width:90mm;font-size:7pt;">
Certified historic structures located in the Gulf Opportunity Zone
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data/CertifiedHistStructGOZCrAmt"/>
</xsl:call-template>
</div>
<span style="float:left;">
<span style="width:2mm;border-botom-width:0px;float:left;">$</span>
<span class="styUnderlineAmount" style="width:29mm;padding-top:0px;padding-bottom:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CertifiedHistoricStructGOZAmt"/>
</xsl:call-template>
</span>
<span style="width:16mm;padding-top:0mm;font-size:6.3pt;">x 26% (.26)</span>
</span>
</div>
</div>
<div class="styLNRightNumBox" style="height:3mm;padding-top:.5mm;">11h</div>
<div class="styLNAmountBox" style="height:3mm;padding-top:.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form3468Data/CertifiedHistStructGOZCrAmt"/>
</xsl:call-template>
</div>
</div>
<!-- End of Line 11h -->
<!-- Line 11i -->
<div style="width:187mm;">
<div style="float:left;clear:none;">
<div style="width:146mm;">
<div class="styLNLeftNumBox" style="padding-left:4mm;">i</div>
<div class="styLNDesc" style="width:90mm;font-size:7pt;">
Certified historic structures affected by a Midwestern disaster
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form3468Data/CalcCertHistStrctrAffctMWDAAmt"/>