Loan Servicing Application

Listing sample xml inputs for different Processing Methods

Processing Methods XML
7a Guaranty -SBX Ver 8.1  Ver 8.0  Ver 7.5  Ver 7.4  Ver 7.2
504 - 504 Basic Ver 8.1  Ver 8.0  Ver 7.5  Ver 7.4  Ver 7.2

The following XML updates SBA loan application number 1430 to set the payment amount to $151.39. All other fields of the loan are unchanged.

<?xml version="1.0" ?> <SBA_ETran version="7.2"> <SBA_ETran version="7.2"> <SBALoan action="update"> <Loan action="update"> <LoanApplicNmb>1430</LoanApplicNmb> <PymtAmt>151.39</PymtAmt> </Loan> </SBALoan> </SBA_ETran>

Loans may also be identified by their SBA loan number. Suppose SBA loan application 1430 has SBA loan number 10621750-07. The following XML does the same thing as the previous example. (Note no hyphen in loan number.)

<?xml version="1.0" ?> <SBA_ETran version="7.2"> <SBA_ETran version="7.2"> <SBALoan action="update"> <Loan action="update"> <LoanNmb>1062175007</LoanNmb> <PymtAmt>151.39</PymtAmt> </Loan> </SBALoan> </SBA_ETran>

If both the SBA loan application number and the SBA loan number are given, they both must match the same loan. Lenders may do this as a safeguard to prevent accidentally updating the wrong loan. The following XML does the same thing as the previous 2 examples.

<?xml version="1.0" ?> <SBA_ETran version="7.2"> <SBA_ETran version="7.2"> <SBALoan action="update"> <Loan action="update"> <LoanApplicNmb>1430</LoanApplicNmb> <LoanNmb>1062175007</LoanNmb> <LoanNmb>1062175007</LoanNmb> <PymtAmt>151.39</PymtAmt> </Loan> </SBALoan> </SBA_ETran>

As shown above, if an element is not given, its contents on the SBA’s database are left unchanged. But if an element is given without any data, its contents are erased (made “null”) on the SBA’s database.

In the following example, SBA loan application 579210 used to be a franchise. But now the borrower has terminated its franchise agreement and is no longer a franchise. The franchise code is erased by having no data between start and end elements. The franchise name is erased by using the shortcut technique of using a trailing slash:

<?xml version="1.0" ?> <SBA_ETran version="7.2"> <SBALoan action="update"> <Loan action="update"> <LoanApplicNmb>579210</LoanApplicNmb> <FrnchiseCd></FrnchiseCd> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName /> </Loan> </SBALoan> </SBA_ETran>


Loan Servicing Application JSON

{ "SBA_ETran": { "SBALoan": { "Loan": { "LoanApplicNmb": "579210", "FrnchiseCd": "", "FrnchiseInd": "N", "FrnchiseName": "", "_action": "update" }, "_action": "update" }, "_version": "7.2" "_version": "7.2" } }

Note that, in all of the examples above, the SBA_ETran version is 7.2. In the current implementation of Servicing, the oldest supported version is 7.2

Not all table and column elements in Origination exist in Servicing, but where they do exist, they almost always have the same XML tag names. Two notable exceptions are seen in the examples above: The collection of all updates associated with a given loan is <SBALoan>, not <App>. And the main table of elements is <Loan>, not <LoanApplication>.

Example for Cancelling a loan

<SBA_ETran version="7.2" reason="manual extract"> <SBALoan action="cancel"> <Loan action="update"> <LoanApplicNmb>10785010</LoanApplicNmb> <LoanNmb>1002707001</LoanNmb> </Loan> </SBALoan> </SBA_ETran>

Example for Reinstating a loan

<SBA_ETran version="7.2" reason="manual extract"> <SBALoan action="reinstate"> <Loan action="update"> <LoanApplicNmb>10785010</LoanApplicNmb> <LoanNmb>1002707001</LoanNmb> </Loan> </SBALoan> </SBA_ETran>

Example for Updating the EIN certificate indicator

<SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10955807</LoanApplicNmb> <LoanNmb>1056967102</LoanNmb> </Loan> <Borrower action="update"> <TaxId>9999999999</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <TaxIdCertInd>N</TaxIdCertInd> </Borrower> <Principal action="update"> <BusinessTaxId>0975319761</BusinessTaxId> <TaxId>1123451302</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <TaxIdCertInd>Y</TaxIdCertInd> </Principal> </SBALoan> </SBA_ETran>

Example for Inserting a Disaster Disbursement

<SBA_ETran version='8.1'> <SBALoan action='update'> <Loan action='update'> <LoanApplicNmb>10961143</LoanApplicNmb> <LoanNmb>1068427101</LoanNmb> </Loan> <Disbursement action='insert'> <DisbSeqNmb>2</DisbSeqNmb> <DisbAmt>1500.00</DisbAmt> <DisbDt>10/09/2024</DisbDt> <DisbClosingCode>3</DisbClosingCode> <UndisbAmt>108600.00</UndisbAmt> </Disbursement> <DisbPayment action='insert'> <DisbSeqNmb>2</DisbSeqNmb> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBankName></ACHBankName> <ACHRoutingNmb></ACHRoutingNmb> <CheckMailedToPDC></CheckMailedToPDC> <FEMARegNmb></FEMARegNmb> <PayeeCityName>MIAMI</PayeeCityName> <PayeeCountryCd>US</PayeeCountryCd> <PayeeCountyCode></PayeeCountyCode> <PayeeName>JACQUELINE MONROE</PayeeName> <PayeePostalCd></PayeePostalCd> <PayeeStCd>FL</PayeeStCd> <PayeeStNm></PayeeStNm> <PayeeStrtName1>16480 SW 145TH CT abd</PayeeStrtName1> <PayeeStrtName2></PayeeStrtName2> <PayeeZip4Cd></PayeeZip4Cd> <PayeeZipCd>33177</PayeeZipCd> <PaymentAmt>1500.00</PaymentAmt> <PaymentDt>Oct 07 2024 12:00AM</PaymentDt> <PaymentType>C</PaymentType> </DisbPayment> </SBALoan> </SBA_ETran>

Example for Deleting a Disaster Disbursement

  1. First, call ExtractServicing to check if the disbursement is eligible for delete:
  2. (below from ExtractServicing Response)

    <Disbursement action='insert'> <DisbSeqNmb>1</DisbSeqNmb> <CancelAllowed>Y</CancelAllowed> <DisbAmt>1500.00</DisbAmt> <DisbClosingCode>2</DisbClosingCode> <DisbDt>Oct 08 2024 05:47PM</DisbDt> <UndisbAmt>108600.00</UndisbAmt> </Disbursement>

  3. If CancelAllowed is 'Y' on the disbursement record, the same disbursement may be deleted by using XML similar to below:
  4. <SBA_ETran version='7.3'> <SBALoan action='update'> <Loan action='update'> <LoanApplicNmb>10961143</LoanApplicNmb> <LoanNmb>1068427101</LoanNmb> </Loan> <Disbursement action='delete'> <DisbSeqNmb>1</DisbSeqNmb> <DisbAmt>1500.00</DisbAmt> </Disbursement> </SBALoan> </SBA_ETran>

Listing more sample xml inputs for different program codes across currently supported versions

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

7a Guaranty -SBX - Ver 7.2

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10955585</LoanApplicNmb> <LoanNmb>1056397108</LoanNmb> <BillingCityName>SECAUCUS</BillingCityName> <LoanApplicNmb>10955585</LoanApplicNmb> <LoanNmb>1056397108</LoanNmb> <BillingCityName>SECAUCUS</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>NJ</BillingStCd> <BillingStCd>NJ</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>100 GOLDEN AVE</BillingStrtName1> <BillingStrtName1>100 GOLDEN AVE</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>07094</BillingZipCd> <BorrowerContribAmt>0.00</BorrowerContribAmt> <BillingZipCd>07094</BillingZipCd> <BorrowerContribAmt>0.00</BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>0</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <BusinessAgeCd>0</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>5</CurrEmpQty> <EStmtInd>N</EStmtInd> <CollateralInd>N</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>5</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>4</JobsCreatdQty> <JobsRetaindQty>4</JobsRetaindQty> <JobsCreatdQty>4</JobsCreatdQty> <JobsRetaindQty>4</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt>2500.00</LimitCompensationAmt> <LimitCompensationInd>Y</LimitCompensationInd> <LimitCompensationAmt>2500.00</LimitCompensationAmt> <LimitCompensationInd>Y</LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>Y</LimitLocation> <LoanBusinessEstDt>2021-01-01 00:00:00.0</LoanBusinessEstDt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>Y</LimitLocation> <LoanBusinessEstDt>2021-01-01 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>JBorrower</LoanName> <LoanName>JBorrower</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>24</LoanTermMnths> <LoanTermMnths>24</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Feb 12 2023 12:00AM</MaturityDt> <MaturityDt>Feb 12 2023 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>24</MnthsIntrstOnlyQty> <NAICSCd>485310</NAICSCd> <MnthsIntrstOnlyQty>24</MnthsIntrstOnlyQty> <NAICSCd>485310</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt></NextInstlDt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>SECAUCUS</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 GOLDEN AVE</ProjectStrtName1> <ProjectCityName>SECAUCUS</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 GOLDEN AVE</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>07094</ProjectZipCd> <PymtAmt>500.00</PymtAmt> <ProjectZipCd>07094</ProjectZipCd> <PymtAmt>500.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd>Y</PymtEscrowInd> <PymtEscrowInd>Y</PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>M</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths>1</PymtPrinAndIntSkipMonths> <PymtPrinAndIntSkipMonths>1</PymtPrinAndIntSkipMonths> <PymtSchedule>010203040506070809101112</PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>10000.00</RequestedAmt> <RequestedAmt>10000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>25.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd>Y</StateLawComplianceForBulkInd> <SBAGntyPct>25.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd>Y</StateLawComplianceForBulkInd> </Loan> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>SECAUCUS</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>AgentFname</LoanAgentFirstName> <LoanAgentID>367</LoanAgentID> <LoanAgentLastName>AgentLname</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>AgentCompanyName</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>NJ</LoanAgentStateCD> <LoanAgentStreet1>100 GOLDEN AVE</LoanAgentStreet1> <LoanAgentStreet2></LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>6</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>3118</LoanAgentZip4CD> <LoanAgentZipCD>07094</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>100.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>SECAUCUS</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>AgentFname</LoanAgentFirstName> <LoanAgentID>367</LoanAgentID> <LoanAgentLastName>AgentLname</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>AgentCompanyName</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>NJ</LoanAgentStateCD> <LoanAgentStreet1>100 GOLDEN AVE</LoanAgentStreet1> <LoanAgentStreet2></LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>6</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>3118</LoanAgentZip4CD> <LoanAgentZipCD>07094</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>100.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Borrower action="update"> <TaxId>0349066375</TaxId> <TaxId>0349066375</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nelli Test2582</BusinessName> <ControlInterestType>2</ControlInterestType> <BusinessName>Nelli Test2582</BusinessName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GndrCd></GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PhysZipCd>07094</PhysZipCd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <Borrower action="update"> <TaxId>1741569632</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JBorrower</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>F</GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>9104441711</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <Borrower action="update"> <TaxId>1741569632</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JBorrower</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>F</GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>9104441711</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>7</RaceCd> <TaxId>1741569632</TaxId> <TaxId>1741569632</TaxId> </BorrowerRace> <Comments action="insert"> <CommntTxt>&lt;p&gt;This is additional Lender Comments&amp;nbsp;&lt;/p&gt;</CommntTxt> </Comments> <Comments action="insert"> <CommntTxt>&lt;p&gt;This is additional Lender Comments&amp;nbsp;&lt;/p&gt;</CommntTxt> </Comments> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2021-02-12 17:00:52.0</FundDt> <FundDt>2021-02-12 17:00:52.0</FundDt> <InstallmentFreqCd>M</InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>CHARLOTTE</LendrCtyNm> <LendrNm>Bank of America, National Association...</LendrNm> <LendrStr1Nm>100 N Tryon St</LendrStr1Nm> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>CHARLOTTE</LendrCtyNm> <LendrNm>Bank of America, National Association...</LendrNm> <LendrStr1Nm>100 N Tryon St</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>28255</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>7100</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>24</LoanTermMnths> <MaturityDt>2023-02-12 00:00:00.0</MaturityDt> <LendrZip5Cd>28255</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>7100</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>24</LoanTermMnths> <MaturityDt>2023-02-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>SBX</ProcessingMethodCd> <PymtAmt>500.00</PymtAmt> <SBAGntyPct>25.000</SBAGntyPct> <SBAInterestPct>0.10000</SBAInterestPct> <ProcessingMethodCd>SBX</ProcessingMethodCd> <PymtAmt>500.00</PymtAmt> <SBAGntyPct>25.000</SBAGntyPct> <SBAInterestPct>0.10000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>LNDR</UnderwritingBy> <UndisbAmt>10000.00</UndisbAmt> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>LNDR</UnderwritingBy> <UndisbAmt>10000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>1963857412</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <TaxId>1963857412</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb>4526</BusDUNSNmb> <BusinessName>JGuarantor</BusinessName> <BusDUNSNmb>4526</BusDUNSNmb> <BusinessName>JGuarantor</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>Y</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>3 Hope it works now, lets test again</InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>Y</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>3 Hope it works now, lets test again</InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>1601</MailZip4Cd> <MailZipCd>07094</MailZipCd> <MailZip4Cd>1601</MailZip4Cd> <MailZipCd>07094</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1601</PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PhysZip4Cd>1601</PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>5</VetCd> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>9.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>FBR</BaseRateSourcTypCd> <BorrIntrstRatePct>10.00000</BorrIntrstRatePct> <BaseIntrstRatePct>9.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>FBR</BaseRateSourcTypCd> <BorrIntrstRatePct>10.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>24</ShareOfTotalMnths> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>24</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JPrincipal</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>95.00</OwnrshpInBusinessPct> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryEmail>test@test.com</PrimaryEmail> <PrimaryPhone>1112234339</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>4900101255</TaxId> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JPrincipal</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>95.00</OwnrshpInBusinessPct> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryEmail>test@test.com</PrimaryEmail> <PrimaryPhone>1112234339</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName>UP</CitznShipCntryName> <CitznShipCntryName>UP</CitznShipCntryName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName>Roberto</FirstName> <GndrCd>M</GndrCd> <FirstName>Roberto</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LastName>Rogersy</LastName> <LastName>Rogersy</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial>D</MiddleInitial> <MiddleInitial>D</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>5.00</OwnrshpInBusinessPct> <PhysCityName>SEATTLE</PhysCityName> <OwnrshpInBusinessPct>5.00</OwnrshpInBusinessPct> <PhysCityName>SEATTLE</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>WA</PhysStCd> <PhysStCd>WA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>888 STEWART ST</PhysStrtName1> <PhysStrtName1>888 STEWART ST</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1113</PhysZip4Cd> <PhysZipCd>98101</PhysZipCd> <PrimaryEmail>Roberto@RogersyBranch.com</PrimaryEmail> <PrimaryPhone>2599522599</PrimaryPhone> <PhysZip4Cd>1113</PhysZip4Cd> <PhysZipCd>98101</PhysZipCd> <PrimaryEmail>Roberto@RogersyBranch.com</PrimaryEmail> <PrimaryPhone>2599522599</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Owner</Title> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Owner</Title> <TradeName></TradeName> <USCitznInd>UA</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> <USCitznInd>UA</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>4</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>4900101255</TaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>4</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> <RaceCd>7</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>DOAL</SpcPurpsLoanCd> <SpcPurpsLoanCd>DOAL</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>10000.00</ProceedAmt> <ProceedOthTypTxt>A01 Comments</ProceedOthTypTxt> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>10000.00</ProceedAmt> <ProceedOthTypTxt>A01 Comments</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt>Secacus, NJ - 07094</RefDescTxt> <RefDescTxt>Secacus, NJ - 07094</RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

504 - 504 Basic - Ver 7.2

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10956621</LoanApplicNmb> <LoanNmb>1057617104</LoanNmb> <BillingCityName>Walbridge</BillingCityName> <LoanApplicNmb>10956621</LoanApplicNmb> <LoanNmb>1057617104</LoanNmb> <BillingCityName>Walbridge</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>OH</BillingStCd> <BillingStCd>OH</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>4520 Moline-Martin Road</BillingStrtName1> <BillingStrtName1>4520 Moline-Martin Road</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd>9786</BillingZip4Cd> <BillingZipCd>43465</BillingZipCd> <BorrowerContribAmt>1230.00</BorrowerContribAmt> <BorrowerContribPct>19.74</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>200.00</ClosingCostAmt> <BillingZip4Cd>9786</BillingZip4Cd> <BillingZipCd>43465</BillingZipCd> <BorrowerContribAmt>1230.00</BorrowerContribAmt> <BorrowerContribPct>19.74</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>200.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>45</CurrEmpQty> <EStmtInd>N</EStmtInd> <CurrEmpQty>45</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>6</JobsCreatdQty> <JobsRetaindQty>35</JobsRetaindQty> <JobsRetaindQty>35</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt>2018-08-27 00:00:00.0</LoanBusinessEstDt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt>2018-08-27 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>Nagle Holdings, Ltd.</LoanName> <LoanName>Nagle Holdings, Ltd.</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>300</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <MailAddrsInvldInd>N</MailAddrsInvldInd> <MaturityDt>Sep 12 2047 12:00AM</MaturityDt> <MailAddrsInvldInd>N</MailAddrsInvldInd> <MaturityDt>Sep 12 2047 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd>484110</NAICSCd> <NetDebentrAmt>2000.00</NetDebentrAmt> <NAICSCd>484110</NAICSCd> <NetDebentrAmt>2000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt>0.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OtherClosingCostAmt>0.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0</OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProjectCityName>Walbridge</ProjectCityName> <ProjectStCd>OH</ProjectStCd> <ProjectStrtName1>4520 Moline-Martin Road</ProjectStrtName1> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProjectCityName>Walbridge</ProjectCityName> <ProjectStCd>OH</ProjectStCd> <ProjectStrtName1>4520 Moline-Martin Road</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>9786</ProjectZip4Cd> <ProjectZipCd>43465</ProjectZipCd> <PymtAmt>15.83</PymtAmt> <ProjectZip4Cd>9786</ProjectZip4Cd> <ProjectZipCd>43465</ProjectZipCd> <PymtAmt>15.83</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>3000.00</RequestedAmt> <RequestedAmt>3000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0341904717</TaxId> <TaxId>0341904717</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb>32165897</ACHAccountNmb> <ACHAccountType>C</ACHAccountType> <ACHBnkNm>Bank of America</ACHBnkNm> <ACHDepositorNm>jgao_test</ACHDepositorNm> <ACHRoutingNmb>051000017</ACHRoutingNmb> <AdverseChgInd>Y</AdverseChgInd> <ACHAccountNmb>32165897</ACHAccountNmb> <ACHAccountType>C</ACHAccountType> <ACHBnkNm>Bank of America</ACHBnkNm> <ACHDepositorNm>jgao_test</ACHDepositorNm> <ACHRoutingNmb>051000017</ACHRoutingNmb> <AdverseChgInd>Y</AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb>123654789</BusDUNSNmb> <BusinessName>Nagle Holdings, Ltd.</BusinessName> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb>123654789</BusDUNSNmb> <BusinessName>Nagle Holdings, Ltd.</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Other Insurance Description TextLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Other Insurance Description TextLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Walbridge</PhysCityName> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>test_jgao</TradeName> <VetCd>5</VetCd> <TradeName>test_jgao</TradeName> <VetCd>5</VetCd> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>500.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>700.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>3</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>10.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>4</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>20.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>4</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>500.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>700.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>3</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>10.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>4</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>20.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>4</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0341904717</TaxId> <TaxId>0341904717</TaxId> </BorrowerRace> <BusinessSpecialOwnership action="insert"> <TaxId>0341904717</TaxId> <SpecialOwnershipCd>5</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <BusinessSpecialOwnership action="insert"> <TaxId>0341904717</TaxId> <SpecialOwnershipCd>5</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode></ApprCode> <ApprOrderedDt>2022-04-22 00:00:00.0</ApprOrderedDt> <ApprOrderedDt>2022-04-22 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>Walbridge</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CityName>Walbridge</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CountyCode></CountyCode> <DescriptionTxt>4520 Moline-Martin Road, Walbridge, OH 43465-9786</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <DescriptionTxt>4520 Moline-Martin Road, Walbridge, OH 43465-9786</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd>Y</LandlordWaiverInd> <LandlordWaiverInd>Y</LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>9600000.00</MrktValuAmt> <MrktValuDt>Apr 22 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>6</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>9600000.00</MrktValuAmt> <MrktValuDt>Apr 22 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>6</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>3</OnLeasedPremCd> <OnLeasedPremExtraYrNmb>20</OnLeasedPremExtraYrNmb> <OnLeasedPremCd>3</OnLeasedPremCd> <OnLeasedPremExtraYrNmb>20</OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Nagle Holdings, Ltd.</OwnrRecrd> <OwnrRecrd>Nagle Holdings, Ltd.</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>Y</PropertyAcqWithLoanInd> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>Y</PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>OH</StCd> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>OH</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>4520 Moline-Martin Road</StrtName1> <StrtName1>4520 Moline-Martin Road</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>6</TypCd> <TypCd>6</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>9786</Zip4Cd> <ZipCd>43465</ZipCd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>9786</Zip4Cd> <ZipCd>43465</ZipCd> </Collateral> <Collateral action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-08-08 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>WHITTIER</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>037</CountyCode> <DescriptionTxt>Building in California</DescriptionTxt> <Endorsement>Monumental Life Endorsements</Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>Y</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>2</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1000000.00</MrktValuAmt> <MrktValuDt>Aug 16 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>John Harbaugh</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd>Y</PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd>Y</RentAsgnInd> <RequestForNoticeInd>Y</RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd>Y</SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt>Monumental Life Write Your Own Policy</SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>112 Main Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount>1000000.00</TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException>Y</WithoutStdException> <WithoutStdSurException>Y</WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>2001</Zip4Cd> <ZipCd>90610</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with the State of Ohio per the OH 166 Regional loan.</LienComment> <LienHldrName>Waterford Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>3</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>1000000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with Waterford Bank per the OH 166 Regional loan.</LienComment> <LienHldrName>Ohio Department of Development</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>2</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>Waterford Bank, N.A.</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <Collateral action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-08-08 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>WHITTIER</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>037</CountyCode> <DescriptionTxt>Building in California</DescriptionTxt> <Endorsement>Monumental Life Endorsements</Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>Y</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>2</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1000000.00</MrktValuAmt> <MrktValuDt>Aug 16 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>John Harbaugh</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd>Y</PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd>Y</RentAsgnInd> <RequestForNoticeInd>Y</RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd>Y</SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt>Monumental Life Write Your Own Policy</SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>112 Main Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount>1000000.00</TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException>Y</WithoutStdException> <WithoutStdSurException>Y</WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>2001</Zip4Cd> <ZipCd>90610</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with the State of Ohio per the OH 166 Regional loan.</LienComment> <LienHldrName>Waterford Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>3</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>1000000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with Waterford Bank per the OH 166 Regional loan.</LienComment> <LienHldrName>Ohio Department of Development</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>2</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>Waterford Bank, N.A.</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <EconDevObjective action="insert"> <EconDevObjctCd>B01</EconDevObjctCd> <EconDevObjctCd>B01</EconDevObjctCd> </EconDevObjective> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2022-09-12 10:18:52.0</FundDt> <FundDt>2022-09-12 10:18:52.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>San Diego</LendrCtyNm> <LendrNm>CDC Small Business Finance Corporation</LendrNm> <LendrStr1Nm>5353 Mission Center</LendrStr1Nm> <LendrCtyNm>San Diego</LendrCtyNm> <LendrNm>CDC Small Business Finance Corporation</LendrNm> <LendrStr1Nm>5353 Mission Center</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>92108</LendrZip5Cd> <LendrZip5Cd>92108</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>188309</LoanSrvsLocId> <LoanSrvsLocId>188309</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>300</LoanTermMnths> <MaturityDt>2047-09-12 00:00:00.0</MaturityDt> <MaturityDt>2047-09-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>504</ProcessingMethodCd> <PymtAmt>15.83</PymtAmt> <PymtAmt>15.83</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.01583</SBAInterestPct> <SBAInterestPct>0.01583</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>3000.00</UndisbAmt> <UndisbAmt>3000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>0341433811</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Equipment, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341609837</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Toledo, Inc.</BusinessName> <CreditScorSourcCd>4</CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt>May 23 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>96</ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341910547</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Leasing, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832473146</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Logistics Group Company</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832479342</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Ket Testver Corporation</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Nagle Companies</TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341433811</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Equipment, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341609837</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Toledo, Inc.</BusinessName> <CreditScorSourcCd>4</CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt>May 23 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>96</ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341910547</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Leasing, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832473146</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Logistics Group Company</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832479342</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Ket Testver Corporation</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Nagle Companies</TradeName> <VetCd></VetCd> </Guarantor> <Injection action="insert"> <InjctnAmt>30.00</InjctnAmt> <InjctnAmt>30.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>D</InjctnTypCd> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>D</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>45.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>G</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>80.00</InjctnAmt> <InjctnOthDescTxt>Test Paripassu Financing Description</InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>P</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>75.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>S</InjctnTypCd> <InjctnAmt>45.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>G</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>80.00</InjctnAmt> <InjctnOthDescTxt>Test Paripassu Financing Description</InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>P</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>75.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>S</InjctnTypCd> </Injection> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseRateSourcTypCd>NR3</BaseRateSourcTypCd> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <PartcipatLender action="update"> <SequenceNmb>1</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>Toledo</LendrCityName> <LastName>Kendzel</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>2</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>Glenn</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>VanValkenburgh</LastName> <LendrAmt>1000.00</LendrAmt> <LendrCityName>Columbus</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Ohio Department of Development</LendrName> <LendrPhnNmb>6144665102</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>77 South High Street</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>6108</LendrZip4Cd> <LendrZipCd>43215</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>3</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt></LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>2</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>Glenn</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>VanValkenburgh</LastName> <LendrAmt>1000.00</LendrAmt> <LendrCityName>Columbus</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Ohio Department of Development</LendrName> <LendrPhnNmb>6144665102</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>77 South High Street</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>6108</LendrZip4Cd> <LendrZipCd>43215</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>3</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt></LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>735</ExtrnlCreditScorNmb> <FirstName>Edwin</FirstName> <GndrCd>M</GndrCd> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>735</ExtrnlCreditScorNmb> <FirstName>Edwin</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LastName>Nagle III</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <LastName>Nagle III</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Walbridge</PhysCityName> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>enagle@naglecompanies.com</PrimaryEmail> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>enagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member/Manager</Title> <Title>Member/Manager</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>778</ExtrnlCreditScorNmb> <FirstName>Patrick</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LastName>Nagle</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Toledo</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>2977 115th Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2839</MailZip4Cd> <MailZipCd>43611</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Toledo</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>2977 115th Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2839</PhysZip4Cd> <PhysZipCd>43611</PhysZipCd> <PrimaryEmail>pnagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4194677202</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>778</ExtrnlCreditScorNmb> <FirstName>Patrick</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LastName>Nagle</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Toledo</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>2977 115th Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2839</MailZip4Cd> <MailZipCd>43611</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Toledo</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>2977 115th Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2839</PhysZip4Cd> <PhysZipCd>43611</PhysZipCd> <PrimaryEmail>pnagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4194677202</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>CONS</SpcPurpsLoanCd> <SpcPurpsLoanCd>CONS</SpcPurpsLoanCd> </SpecialPurpose> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>aaa</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>Y</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>10.00</RepayAmt> <RepayAPR>11.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>1</SequenceNmb> <TermsInYears>1</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>bbb</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>N</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>20.00</RepayAmt> <RepayAPR>21.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>2</SequenceNmb> <TermsInYears>2</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ddd</CreditorName> <InjectionTypeCode>G</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>45.00</RepayAmt> <RepayAPR></RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>3</SequenceNmb> <TermsInYears></TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>fff</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>65.00</RepayAmt> <RepayAPR>61.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>4</SequenceNmb> <TermsInYears>6</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ggg</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>15.00</RepayAmt> <RepayAPR>15.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>5</SequenceNmb> <TermsInYears>15</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>aaa</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>Y</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>10.00</RepayAmt> <RepayAPR>11.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>1</SequenceNmb> <TermsInYears>1</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>bbb</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>N</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>20.00</RepayAmt> <RepayAPR>21.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>2</SequenceNmb> <TermsInYears>2</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ddd</CreditorName> <InjectionTypeCode>G</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>45.00</RepayAmt> <RepayAPR></RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>3</SequenceNmb> <TermsInYears></TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>fff</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>65.00</RepayAmt> <RepayAPR>61.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>4</SequenceNmb> <TermsInYears>6</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ggg</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>15.00</RepayAmt> <RepayAPR>15.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>5</SequenceNmb> <TermsInYears>15</TermsInYears> </StandbyAgreement> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>3030.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>500.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>10</LoanProceedTypCd> <ProceedAmt>1700.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>978</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1000.00</ProceedAmt> <ProceedDesc>An abandoned warehouse</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>975</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>3000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>979</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>30.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>977</SubProceedId> <LoanProceedTypCd>04</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>500.00</ProceedAmt> <ProceedDesc>API-API-API</ProceedDesc> <SubProceedTypCd>3</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>976</SubProceedId> <LoanProceedTypCd>10</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1700.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>11</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>3030.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>500.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>10</LoanProceedTypCd> <ProceedAmt>1700.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>978</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1000.00</ProceedAmt> <ProceedDesc>An abandoned warehouse</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>975</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>3000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>979</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>30.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>977</SubProceedId> <LoanProceedTypCd>04</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>500.00</ProceedAmt> <ProceedDesc>API-API-API</ProceedDesc> <SubProceedTypCd>3</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>976</SubProceedId> <LoanProceedTypCd>10</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1700.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>11</SubProceedTypCd> </UseOfProceedsSub> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

502503 Development Company - 502 Local - 2043013

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>2043013</LoanApplicNmb> <LoanNmb>8684703004</LoanNmb> <BillingCityName>GRIFFIN</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>GA</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>839 EVEREE INN ROAD</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>30223</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>4</BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty>20</CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>V</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>40</JobsCreatdQty> <JobsRetaindQty>20</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>RAILRUNNER SYSTEMS, INC/GCDC</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>240</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Jan 31 2016 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt>2001-04-30 00:00:00.0</NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>GRIFFIN</ProjectCityName> <ProjectStCd>GA</ProjectStCd> <ProjectStrtName1>839 EVEREE INN ROAD</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>30223</ProjectZipCd> <PymtAmt>0.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>833000.00</RequestedAmt> <RuralUrbanInd>R</RuralUrbanInd> <SBAGntyPct>75.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0581987678</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>RAILRUNNER SYSTEMS, INC/GCDC</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>GRIFFIN</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>GA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>839 EVEREE INN ROAD</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>30223</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>7</RaceCd> <TaxId>0581987678</TaxId> </BorrowerRace> <FinancialInformation action="view"> <AccruedInterestAmt></AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt>1996-01-31 00:00:00.0</FirstDisbDt> <FundDt>1995-09-27 00:00:00.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt>2001-03-30 00:00:00.0</LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt>2001-04-30 00:00:00.0</LoanNextInstlmntDueDt> <LoanSrvsLocId>Enter you Locid</LoanSrvsLocId> <LoanStatusCd>5.0</LoanStatusCd> <LoanTermMnths>240</LoanTermMnths> <MaturityDt>2016-01-31 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt></OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>502</ProcessingMethodCd> <PymtAmt>0.00</PymtAmt> <SBAGntyPct>75.000</SBAGntyPct> <SBAInterestPct>0.10500</SBAInterestPct> <SoldSecMarketInd>Y</SoldSecMarketInd> <TotalPaymentAmt>25115.85</TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt></UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>7.75000</BaseIntrstRatePct> <BaseRateSourcTypCd>OTH</BaseRateSourcTypCd> <BorrIntrstRatePct>10.50000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>V</IntrstTypInd> <ShareOfTotalMnths>240</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>0581987678</BusinessTaxId> <TaxId>1257824866</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName></FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd></GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LastName>RAILRUNNER SYSTEMS, INC/GCDC</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>100.00</OwnrshpInBusinessPct> <PhysCityName>GRIFFIN</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>GA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>839 EVEREE INN ROAD</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>30223</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd></USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1257824866</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>N</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>833000.00</ProceedAmt> <ProceedOthTypTxt>Load from Elips</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

American Recovery and Reinvestment Act- 504 First Mortgage - 3557202

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <p><xmp> <?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>3557202</LoanApplicNmb> <LoanNmb>9999400803</LoanNmb> <BillingCityName>N/A</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd></BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>N/A</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>20024</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>6</BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty>0</CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>V</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>0</JobsCreatdQty> <JobsRetaindQty>0</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>504 DUMMY LOAN</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>0</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt></MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt>2013-06-01 00:00:00.0</NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>N/A</ProjectCityName> <ProjectStCd></ProjectStCd> <ProjectStrtName1>N/A</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>20024</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>0.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>0</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode></ApprCode> <ApprOrderedDt>2016-08-01 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>ASHBURN</CityName> <CommRealEnvInvMustBeApprInd></CommRealEnvInvMustBeApprInd> <CountyCode>107</CountyCode> <DescriptionTxt>dfsds</DescriptionTxt> <InsFloodInd></InsFloodInd> <InsMarineFullInd></InsMarineFullInd> <InsPerPropHazInd></InsPerPropHazInd> <InsRealEstHazInd></InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt></LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MrktValuAmt>444.00</MrktValuAmt> <MrktValuDt>Aug 02 2016 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>sdsds</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <SBALienPos>1</SBALienPos> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd></SharedPariPassuInd> <SharedPariPassuNonSBAInd></SharedPariPassuNonSBAInd> <StatusCd>4</StatusCd> <StCd>VA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>dsds</StrtName1> <StrtName2></StrtName2> <SubtypCd></SubtypCd> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt>Jan 01 2014 12:00AM</TitleReportOrderedDt> <TitleReportReceivedDt>Jan 01 2016 12:00AM</TitleReportReceivedDt> <TypCd>1</TypCd> <WaterRightsInd></WaterRightsInd> <Zip4Cd></Zip4Cd> <ZipCd>20148</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <LienBalanceAmt>343.00</LienBalanceAmt> <LienComment>fdf</LienComment> <LienHldrName>SBA</LienHldrName> <LienPosition>1</LienPosition> <LienStatus>D</LienStatus> </CollateralLiens> <FinancialInformation action="view"> <AccruedInterestAmt></AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2013-03-22 00:00:00.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt>2013-06-01 00:00:00.0</LoanNextInstlmntDueDt> <LoanSrvsLocId></LoanSrvsLocId> <LoanStatusCd>5.0</LoanStatusCd> <LoanTermMnths>0</LoanTermMnths> <MaturityDt></MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt></OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>SMP</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>0.000</SBAGntyPct> <SBAInterestPct>0.00000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt></UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>0.00000</BaseIntrstRatePct> <BaseRateSourcTypCd></BaseRateSourcTypCd> <BorrIntrstRatePct>0.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>V</IntrstTypInd> <ShareOfTotalMnths>0</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>P</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>0.00</ProceedAmt> <ProceedOthTypTxt>Load from Elips</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

American Rescue Plan Act - RRF - 10786066

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <p><xmp> <?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10786066</LoanApplicNmb> <LoanNmb>1005117007</LoanNmb> <BillingCityName>CHANTILLY</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>VA</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>43 123street terr</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd>5807</BillingZip4Cd> <BillingZipCd>20152</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd></BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty></CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd></FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd></InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>9</JobsCreatdQty> <JobsRetaindQty>9</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>BP_RRFtestLoan3</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>0</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>May 10 2021 11:41AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>45</MnthsIntrstOnlyQty> <NAICSCd>111331</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>CHANTILLY</ProjectCityName> <ProjectStCd>VA</ProjectStCd> <ProjectStrtName1>43 123street terr</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>5807</ProjectZip4Cd> <ProjectZipCd>20152</ProjectZipCd> <PymtAmt>6000.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>20001.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0678768787</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb>768687678</BusDUNSNmb> <BusinessName>BP_RRFtestLoan3</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>U</GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName>CHANTILLY</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>VA</MailStCd> <MailStNm></MailStNm> <MailStrtName1>437 123street terr</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>5807</MailZip4Cd> <MailZipCd>20152</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>CHANTILLY</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>VA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>437 123street terr</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>5807</PhysZip4Cd> <PhysZipCd>20152</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>7327890000</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd>5</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0678768787</TaxId> </BorrowerRace> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2021-05-10 11:41:02.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId></LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>0</LoanTermMnths> <MaturityDt>2021-05-10 11:41:02.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>RRF</ProcessingMethodCd> <PymtAmt>6000.00</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.00000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>20001.00</UndisbAmt> </FinancialInformation> <HoldStatus action="insert"/> <Principal action="update"> <BusinessTaxId>0678768787</BusinessTaxId> <TaxId>0469362043</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>b p</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HY</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>F</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd></GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LegalOrgnztnCd>8</LegalOrgnztnCd> <MailCityName>CHANTILLY</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>VA</MailStCd> <MailStNm></MailStNm> <MailStrtName1>397297 st SW 409 st</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>5807</MailZip4Cd> <MailZipCd>20152</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>90.00</OwnrshpInBusinessPct> <PhysCityName>CHANTILLY</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>VA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>37 st SW 409 st</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>5807</PhysZip4Cd> <PhysZipCd>20152</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName>new trade name</TradeName> <VetCd>1</VetCd> <VetCertInd>N</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>0469362043</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>G</ProceedTypCd> <LoanProceedTypCd>25</LoanProceedTypCd> <ProceedAmt>20001.00</ProceedAmt> <ProceedOthTypTxt>test</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

Disaster - DBP - 10784472

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <p><xmp> <?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10784472</LoanApplicNmb> <LoanNmb>1003847010</LoanNmb> <BillingCityName>DALLAS</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>TX</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>6036 RIDGECREST RD</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>75231</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd></BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty></CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd></FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty></JobsCreatdQty> <JobsRetaindQty></JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>MICHELE BOOTH</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>360</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Oct 02 2050 10:19AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause>N</NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>DALLAS</ProjectCityName> <ProjectStCd>TX</ProjectStCd> <ProjectStrtName1>6036 RIDGECREST RD</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>75231</ProjectZipCd> <PymtAmt>1461.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>310000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>1626292896</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName>MICHELE</FirstName> <GndrCd></GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LastName>BOOTH</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>DALLAS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>TX</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>6036 RIDGECREST RD</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>75231</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>2542350000</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd></VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>1626292896</TaxId> </BorrowerRace> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2020-10-02 10:19:39.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>CHARLOTTE</LendrCtyNm> <LendrNm>Haseefa Bank </LendrNm> <LendrStr1Nm>100 N Tryon St, Ste 170</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>28202</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>Enter your Locid</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>360</LoanTermMnths> <MaturityDt>2050-10-02 10:19:39.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>DPB</ProcessingMethodCd> <PymtAmt>1461.00</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.03740</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>310000.00</UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>3.74000</BaseIntrstRatePct> <BaseRateSourcTypCd>DSR</BaseRateSourcTypCd> <BorrIntrstRatePct>3.74000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>DNCE</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>D</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>15000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>D</ProceedTypCd> <LoanProceedTypCd>05</LoanProceedTypCd> <ProceedAmt>295000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

Economic Opportunity-EO Immediate Participation - 3532058

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <p><xmp> <?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>3532058</LoanApplicNmb> <LoanNmb>3372123005</LoanNmb> <BillingCityName>BAILEYS HARBOR</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>WI</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>8431 HWY 57</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>54202</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>4</BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty>36</CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>V</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>0</JobsCreatdQty> <JobsRetaindQty>0</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>JOSEPH H PARENT INC</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>94</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Apr 01 1997 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt>1995-06-15 00:00:00.0</NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>BAILEYS HARBOR</ProjectCityName> <ProjectStCd>WI</ProjectStCd> <ProjectStrtName1>8431 HWY 57</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>54202</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>M</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>575000.00</RequestedAmt> <RuralUrbanInd>R</RuralUrbanInd> <SBAGntyPct>60.800</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0391095080</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JOSEPH H PARENT INC</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>BAILEYS HARBOR</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>WI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>8431 HIGHWAY 57</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>54202</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>7</RaceCd> <TaxId>0391095080</TaxId> </BorrowerRace> <Disbursement action="insert"> <DisbSeqNmb>1</DisbSeqNmb> <DisbAmt>317103.56</DisbAmt> <DisbClosingCode></DisbClosingCode> <DisbDt>May 21 1990 12:00AM</DisbDt> <UndisbAmt></UndisbAmt> </Disbursement> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt>317103.56</disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>1989-01-23 00:00:00.0</FundDt> <InstallmentFreqCd>M</InstallmentFreqCd> <LastPaymentDt>1993-02-08 00:00:00.0</LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt>1995-06-15 00:00:00.0</LoanNextInstlmntDueDt> <LoanSrvsLocId></LoanSrvsLocId> <LoanStatusCd>5.0</LoanStatusCd> <LoanTermMnths>94</LoanTermMnths> <MaturityDt>1997-04-01 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt></OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>EOI</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>60.800</SBAGntyPct> <SBAInterestPct>0.12250</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt>387769.15</TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt></UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>12.25000</BaseIntrstRatePct> <BaseRateSourcTypCd></BaseRateSourcTypCd> <BorrIntrstRatePct>12.25000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>V</IntrstTypInd> <ShareOfTotalMnths>94</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>0391095080</BusinessTaxId> <TaxId>1390343943</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName></FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd></GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LastName>JOSEPH H PARENT INC</LastName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>100.00</OwnrshpInBusinessPct> <PhysCityName>BAILEYS HARBOR</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>WI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>8431 HIGHWAY 57</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>54202</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd></USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1390343943</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>575000.00</ProceedAmt> <ProceedOthTypTxt>Load from Elips</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

Foreign Trade - Foreign Trade - 2846115

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <p><xmp> <?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>2846115</LoanApplicNmb> <LoanNmb>8067470002</LoanNmb> <BillingCityName>CHICAGO</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>IL</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>3477 S MARTIN LUTHER KING DR</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>60616</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>4</BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty>1</CurrEmpQty> <FrnchiseCd>00000</FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>Y</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>0</JobsCreatdQty> <JobsRetaindQty>0</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>CELESTE CARD &amp; GIFTS</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>72</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Sep 25 1976 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt>1972-11-30 00:00:00.0</NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>CHICAGO</ProjectCityName> <ProjectStCd>IL</ProjectStCd> <ProjectStrtName1>3477 S MARTIN LUTHER KING DR</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>60616</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>15000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>90.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <FinancialInformation action="view"> <AccruedInterestAmt></AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt>1970-09-11 00:00:00.0</FirstDisbDt> <FundDt>1970-09-24 00:00:00.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt>1972-11-30 00:00:00.0</LoanNextInstlmntDueDt> <LoanSrvsLocId>Enter you Locid</LoanSrvsLocId> <LoanStatusCd>5.9</LoanStatusCd> <LoanTermMnths>72</LoanTermMnths> <MaturityDt>1976-09-25 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt></OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>FOR</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>90.000</SBAGntyPct> <SBAInterestPct>0.09750</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt></UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>9.75000</BaseIntrstRatePct> <BaseRateSourcTypCd></BaseRateSourcTypCd> <BorrIntrstRatePct>9.75000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>72</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>AGRI</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>15000.00</ProceedAmt> <ProceedOthTypTxt>Load from Elips</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

Jobs Act - Intermediary Lending Pilot Program - 10783942

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <p><xmp> <?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10783942</LoanApplicNmb> <LoanNmb>5373185201</LoanNmb> <BillingCityName>CAGUAS</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>PR</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>P.O. Box 1717</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>00725</BillingZipCd> <BorrowerContribAmt>0.00</BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd></BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty></CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty></JobsCreatdQty> <JobsRetaindQty></JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>FX Evolution Inc.</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>240</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Sep 19 2032 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt>2015-07-07 00:00:00.0</NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>CAGUAS</ProjectCityName> <ProjectStCd>PR</ProjectStCd> <ProjectStrtName1>Calle 1 A3 Condado Moderno</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>00725</ProjectZipCd> <PymtAmt>15649.33</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>Q</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule>01040710</PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>44.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0660737741</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>FX Evolution Inc.</BusinessName> <ControlInterestType></ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>CAGUAS</MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>PR</MailStCd> <MailStNm></MailStNm> <MailStrtName1>Calle 1 A3 Condado Moderno</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>00725</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName></PhysCityName> <PhysCountryCd></PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd></PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1></PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd></PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2012-08-22 13:07:24.0</FundDt> <InstallmentFreqCd>Q</InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt>2015-07-07 00:00:00.0</LoanNextInstlmntDueDt> <LoanSrvsLocId>Enter you Locid</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>240</LoanTermMnths> <MaturityDt>2032-09-19 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>ILP</ProcessingMethodCd> <PymtAmt>15649.33</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.01000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt>44.00</UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.00000</BaseIntrstRatePct> <BaseRateSourcTypCd>LDR</BaseRateSourcTypCd> <BorrIntrstRatePct>1.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>175</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>0660737741</BusinessTaxId> <TaxId>0660737741</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>FX Evolution Inc.</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType></ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd></GndrCd> <GntyInd>N</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd></GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>CAGUAS</MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>PR</MailStCd> <MailStNm></MailStNm> <MailStrtName1>Calle 1 A3 Condado Moderno</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>00725</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>100.00</OwnrshpInBusinessPct> <PhysCityName></PhysCityName> <PhysCountryCd></PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd></PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1></PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd></PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> <VetCertInd></VetCertInd> </Principal> <UseOfProceeds action="insert"> <ProceedTypCd>N</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>44.00</ProceedAmt> <ProceedOthTypTxt>Note Created on 01/30/2018</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

Microloan 7M - Microloan Direct - 10785266

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10785266</LoanApplicNmb> <LoanNmb>1003747004</LoanNmb> <BillingCityName>WASHINGTON</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>DC</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>234 Catweb Street</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd>2222</BillingZip4Cd> <BillingZipCd>20024</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd></BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty></CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd></FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd></InjectionInd> <InterestStructureCd>V</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty></JobsCreatdQty> <JobsRetaindQty></JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>CATWEB 2360 - Valid ML Partner</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>120</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Sep 22 2030 12:47PM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>WASHINGTON</ProjectCityName> <ProjectStCd>DC</ProjectStCd> <ProjectStrtName1>234 Catweb Street</ProjectStrtName1> <ProjectStrtName2>test</ProjectStrtName2> <ProjectZip4Cd>2222</ProjectZip4Cd> <ProjectZipCd>20024</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>50000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0349376341</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb>289572304</BusDUNSNmb> <BusinessName>CATWEB 2360 - Valid ML Partner</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>U</GndrCd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LegalOrgnztnCd>11</LegalOrgnztnCd> <MailCityName>WASHINGTON</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>DC</MailStCd> <MailStNm></MailStNm> <MailStrtName1>234 Catweb Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2222</MailZip4Cd> <MailZipCd>20024</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>WASHINGTON</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>DC</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>234 Catweb Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2222</PhysZip4Cd> <PhysZipCd>20024</PhysZipCd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>4446660000</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>5</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0349376341</TaxId> </BorrowerRace> <Comments action="insert"> <CommntTxt>Microloan</CommntTxt> </Comments> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2020-09-22 12:47:10.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId></LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>120</LoanTermMnths> <MaturityDt>2030-09-22 12:47:10.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>MLD</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.01375</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>50000.00</UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd>M</AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.37500</BaseIntrstRatePct> <BaseRateSourcTypCd>5TB</BaseRateSourcTypCd> <BorrIntrstRatePct>1.37500</BorrIntrstRatePct> <FirstRateAdjustDt>2020-09-01 00:00:00.0</FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>V</IntrstTypInd> <ShareOfTotalMnths>120</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>M</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>50000.00</ProceedAmt> <ProceedOthTypTxt>To make MLD Loans</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

RFC Business - RFC Business - 3455952

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>3455952</LoanApplicNmb> <LoanNmb>3600780008</LoanNmb> <BillingCityName>KANSAS CITY, MO</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd></BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>409 3rd st</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>20024</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>6</BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty>0</CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>0</JobsCreatdQty> <JobsRetaindQty>0</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>NORTHERN HANDLE MILLS INC</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>60</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt></MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>KANSAS CITY, MO</ProjectCityName> <ProjectStCd></ProjectStCd> <ProjectStrtName1>409 3rd st</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>20024</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>35000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>70.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Disbursement action="insert"> <DisbSeqNmb>1</DisbSeqNmb> <DisbAmt>24500.00</DisbAmt> <DisbClosingCode></DisbClosingCode> <DisbDt>Oct 04 1954 12:00AM</DisbDt> <UndisbAmt></UndisbAmt> </Disbursement> <FinancialInformation action="view"> <AccruedInterestAmt></AccruedInterestAmt> <disbAmt>24500.00</disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>1954-07-06 00:00:00.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId></LoanSrvsLocId> <LoanStatusCd>5.0</LoanStatusCd> <LoanTermMnths>60</LoanTermMnths> <MaturityDt></MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt></OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>RFB</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>70.000</SBAGntyPct> <SBAInterestPct>0.00000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt></UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>0.00000</BaseIntrstRatePct> <BaseRateSourcTypCd></BaseRateSourcTypCd> <BorrIntrstRatePct>0.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>60</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>35000.00</ProceedAmt> <ProceedOthTypTxt>Load from Elips</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they are identical to 7.2 below

RFC Disaster - RFC Disaster - 3463111

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>3463111</LoanApplicNmb> <LoanNmb>3807430005</LoanNmb> <BillingCityName>JUDSONIA ARK</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd></BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>NONE</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>72081</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>6</BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd></CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty>0</CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>0</JobsCreatdQty> <JobsRetaindQty>0</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>RED GOWER</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>0</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Oct 31 1972 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt>1972-03-28 00:00:00.0</NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>JUDSONIA ARK</ProjectCityName> <ProjectStCd></ProjectStCd> <ProjectStrtName1>NONE</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>72081</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>M</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>0.01</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>1959-07-31 00:00:00.0</FundDt> <InstallmentFreqCd>M</InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt>1972-03-28 00:00:00.0</LoanNextInstlmntDueDt> <LoanSrvsLocId></LoanSrvsLocId> <LoanStatusCd>5.0</LoanStatusCd> <LoanTermMnths>0</LoanTermMnths> <MaturityDt>1972-10-31 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt></OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>RFD</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.03000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt></UndisbAmt> </FinancialInformation> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>3.00000</BaseIntrstRatePct> <BaseRateSourcTypCd></BaseRateSourcTypCd> <BorrIntrstRatePct>3.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd></IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>0</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>0.01</ProceedAmt> <ProceedOthTypTxt>Load from Elips</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

There were no changes to servicing for 7.3-8.1, they areidentical to 7.2 below

SBIC - Public Sale GTY SBIC - 10759192

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.2" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10759192</LoanApplicNmb> <LoanNmb>7572145006</LoanNmb> <BillingCityName>LOS ANGELES</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>CA</BillingStCd> <BillingStNm>California</BillingStNm> <BillingStrtName1>11150 Santa Monica Blvd.</BillingStrtName1> <BillingStrtName2>Suite 1470</BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>90025</BillingZipCd> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd></BusinessAgeCd> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang></CorrespondingLang> <CurrEmpQty></CurrEmpQty> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd></FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd></InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty></JobsCreatdQty> <JobsRetaindQty></JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>Avante Mezzanine Partners SBIC II, LP</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>240</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt></MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd></NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName></ProjectCityName> <ProjectStCd></ProjectStCd> <ProjectStrtName1></ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd></ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>34000.00</RequestedAmt> <RuralUrbanInd></RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2015-07-17 12:53:20.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm></LendrCtyNm> <LendrNm></LendrNm> <LendrStr1Nm></LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd></LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>Enter you Locid</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>240</LoanTermMnths> <MaturityDt></MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>PSG</ProcessingMethodCd> <PymtAmt></PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.00000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy></UnderwritingBy> <UndisbAmt>34000.00</UndisbAmt> </FinancialInformation> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>S</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>34000.00</ProceedAmt> <ProceedOthTypTxt>SBIC</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

504 - 504 Basic Ver 7.3

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.3" reason="Reports menu request"> <App> <LoanApplication action="insert"> <!-- comment: dev app #10956668 --> <AgentInvolved>N</AgentInvolved> <BorrowerContribAmt>1230.00</BorrowerContribAmt> <BorrowerContribPct>2.74</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>200.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CurrEmpQty>45</CurrEmpQty> <EidlLoanNumber></EidlLoanNumber> <EligPassiveCompanyInd>Y</EligPassiveCompanyInd> <EWCPPostShipmntInd></EWCPPostShipmntInd> <EWCPSnglTransInd></EWCPSnglTransInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <FullAmortPymtInd></FullAmortPymtInd> <FundingFeeAmt>6.25</FundingFeeAmt> <GntyFeeAmt>12.50</GntyFeeAmt> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>6</JobsCreatdQty> <JobsRetaindQty>35</JobsRetaindQty> <LenderAltContactCellPhn></LenderAltContactCellPhn> <LenderAltContactEmail></LenderAltContactEmail> <LenderAltContactFax></LenderAltContactFax> <LenderAltContactFirstNm></LenderAltContactFirstNm> <LenderAltContactInitialNm></LenderAltContactInitialNm> <LenderAltContactLastNm></LenderAltContactLastNm> <LenderAltContactNameSuffix></LenderAltContactNameSuffix> <LenderAltContactPrimPhn></LenderAltContactPrimPhn> <LenderAltContactTitlTxt></LenderAltContactTitlTxt> <LenderAltContactTypCd></LenderAltContactTypCd> <LenderApplicNmb>2022051301</LenderApplicNmb> <LenderCntctEmail>jbartschy@toledoport.org</LenderCntctEmail> <LenderCntctFax></LenderCntctFax> <LenderCntctFirstName>Jason</LenderCntctFirstName> <LenderCntctLastName>Bartschy</LenderCntctLastName> <LenderCntctMiddleInitial></LenderCntctMiddleInitial> <LenderCntctNameSuffix></LenderCntctNameSuffix> <LenderCntctPhnNmb>4192144193</LenderCntctPhnNmb> <LenderCntctTitl>Manager</LenderCntctTitl> <LenderContactCellPhn>4192601277</LenderContactCellPhn> <LenderLoanNmb></LenderLoanNmb> <LifeInsurRqmtInd>N</LifeInsurRqmtInd> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitExemptionInd></LimitExemptionInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LiquidCreditScore></LiquidCreditScore> <LoanBusinessEstDt>2018-08-27 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanGrossIncomeAmt></LoanGrossIncomeAmt> <LoanName>Nagle Holdings, Ltd.</LoanName> <LoanPackagerCityName></LoanPackagerCityName> <LoanPackagerName></LoanPackagerName> <LoanPackagerStCd></LoanPackagerStCd> <LoanPackagerStrtName1></LoanPackagerStrtName1> <LoanPackagerStrtName2></LoanPackagerStrtName2> <LoanPackagerZip4Cd></LoanPackagerZip4Cd> <LoanPackagerZipCd></LoanPackagerZipCd> <LoanPackageSourcTypCd></LoanPackageSourcTypCd> <LoanProjDelinquentInd></LoanProjDelinquentInd> <LoanProjectSizeCd></LoanProjectSizeCd> <LoanProjGrossRcptRdcPrdAmt1></LoanProjGrossRcptRdcPrdAmt1> <LoanProjGrossRcptRdcPrdAmt2></LoanProjGrossRcptRdcPrdAmt2> <LoanScheduleCInd></LoanScheduleCInd> <LoanScheduleCYear></LoanScheduleCYear> <LoanTermAmortMnths>0</LoanTermAmortMnths> <LoanTermMnths>300</LoanTermMnths> <LoanTermRevlMnths>0</LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <LoanUsResidentInd></LoanUsResidentInd> <LowtoMediumIncomeInd>N</LowtoMediumIncomeInd> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd>484110</NAICSCd> <NetDebentrAmt>2500.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NoteDt></NoteDt> <OtherClosingCostAmt>0.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0</OverallPortfolioJobRatio> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <PPPLoanNumber></PPPLoanNumber> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProcessingMethodCd>504</ProcessingMethodCd> <ProjectCityName>Walbridge</ProjectCityName> <ProjectStCd>OH</ProjectStCd> <ProjectStrtName1>4520 Moline-Martin Road</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>9786</ProjectZip4Cd> <ProjectZipCd>43465</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <ReconsiderationInd>N</ReconsiderationInd> <RequestedAmt>3000.00</RequestedAmt> <RevolvingInd>N</RevolvingInd> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> <UnderwritingBy>SBA</UnderwritingBy> <UnderwrtrsFeeAmt>12.00</UnderwrtrsFeeAmt> </LoanApplication> <Borrower action="insert"> <TaxId>0341904717</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Holdings, Ltd.</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm>Edwin J. Nagle III</BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>9</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd>2</EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GamblingOrSexualNatureInd>N</GamblingOrSexualNatureInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Other Insurance Description TextLorem.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <NonFedEmpInd>N</NonFedEmpInd> <NonFmrSBAEmpInd>N</NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd>N</NonLegBrnchEmpInd> <NonSBACEmpInd>N</NonSBACEmpInd> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>500.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>700.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>3</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>10.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>4</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>20.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>4</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0341904717</TaxId> </BorrowerRace> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode></ApprCode> <ApprOrderedDt>2022-04-22 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>Walbridge</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CountyCode></CountyCode> <DescriptionTxt>4520 Moline-Martin Road, Walbridge, OH 43465-9786</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt></LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>9600000.00</MrktValuAmt> <MrktValuDt>Apr 22 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>6</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>3</OnLeasedPremCd> <OnLeasedPremExtraYrNmb>20</OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Nagle Holdings, Ltd.</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd></SharedPariPassuInd> <SharedPariPassuNonSBAInd></SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>OH</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>4520 Moline-Martin Road</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>6</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>9786</Zip4Cd> <ZipCd>43465</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with the State of Ohio per the OH 166 Regional loan.</LienComment> <LienHldrName>Waterford Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>3</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>Waterford Bank, N.A.</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>2</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>1000000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with Waterford Bank per the OH 166 Regional loan.</LienComment> <LienHldrName>Ohio Department of Development</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CreditUnavailReasons action="insert"> <CreditUnavailReasonCd>1</CreditUnavailReasonCd> <CreditUnavailReasonCommnt>The uniqueness of the collateral is unacceptable to the lender without SBA participation and the risk associated with the nature of the business exceeds the lender&apos;s normal credit policy.</CreditUnavailReasonCommnt> </CreditUnavailReasons> <EconDevObjective action="insert"> <EconDevObjctCd>B01</EconDevObjctCd> </EconDevObjective> <Guarantor action="insert"> <TaxId>0341433811</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Equipment, Inc.</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OperatingCompnyInd>Y</OperatingCompnyInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Guarantor> <Guarantor action="insert"> <TaxId>0341609837</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Toledo, Inc.</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd>4</CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt>May 23 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>96</ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OperatingCompnyInd>Y</OperatingCompnyInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Guarantor> <Guarantor action="insert"> <TaxId>0341910547</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Leasing, Inc.</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OperatingCompnyInd>Y</OperatingCompnyInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Guarantor> <Guarantor action="insert"> <TaxId>0832473146</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Logistics Group Company</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OperatingCompnyInd>Y</OperatingCompnyInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Guarantor> <Guarantor action="insert"> <TaxId>0832479342</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Ket Testver Corporation</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OperatingCompnyInd>Y</OperatingCompnyInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Nagle Companies</TradeName> </Guarantor> <Injection action="insert"> <InjctnAmt>30.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>D</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>35.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>F</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>30.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>G</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>60.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>P</InjctnTypCd> </Injection> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseRateSourcTypCd>NR3</BaseRateSourcTypCd> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <PartcipatLender action="insert"> <SequenceNmb>1</SequenceNmb> <FirstName>Glenn</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>VanValkenburgh</LastName> <LendrAmt>1000.00</LendrAmt> <LendrCityName>Columbus</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Ohio Department of Development</LendrName> <LendrPhnNmb>6144665102</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>77 South High Street</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>6108</LendrZip4Cd> <LendrZipCd>43215</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="insert"> <SequenceNmb>3</SequenceNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="insert"> <SequenceNmb>2</SequenceNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt></LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartnerInformation action="insert"> <LocationId>188309</LocationId> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <ACHTaxId></ACHTaxId> </PartnerInformation> <Principal action="insert"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName>Toledo</BirthCityName> <BirthCntryName>United States</BirthCntryName> <BirthDt>Jul 21 1962 12:00AM</BirthDt> <BirthStCd>OH</BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>4</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>11</CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>UN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>735</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Edwin</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>Nagle III</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd></LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>Perrysburg</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>16149 Normandy Road South</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9117</MailZip4Cd> <MailZipCd>43551</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Perrysburg</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>16149 Normandy Road South</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9117</PhysZip4Cd> <PhysZipCd>43551</PhysZipCd> <PrimaryEmail>enagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member/Manager</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName>Toledo</BirthCityName> <BirthCntryName>United States</BirthCntryName> <BirthDt>Feb 23 1965 12:00AM</BirthDt> <BirthStCd>OH</BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>4</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>11</CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>UN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>778</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Patrick</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>Nagle</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd></LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>Toledo</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>2977 115th Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2839</MailZip4Cd> <MailZipCd>43611</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Toledo</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>2977 115th Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2839</PhysZip4Cd> <PhysZipCd>43611</PhysZipCd> <PrimaryEmail>pnagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4194677202</PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>CONS</SpcPurpsLoanCd> </SpecialPurpose> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>aaa</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>Y</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>10.00</RepayAmt> <RepayAPR>11.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>1</SequenceNmb> <TermsInYears>1</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>bbb</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>N</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>20.00</RepayAmt> <RepayAPR>12.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>2</SequenceNmb> <TermsInYears>2</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>Subordinate Name</CreditorName> <InjectionTypeCode>F</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>35.00</RepayAmt> <RepayAPR>35.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>3</SequenceNmb> <TermsInYears>10</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ccc</CreditorName> <InjectionTypeCode>G</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>30.00</RepayAmt> <RepayAPR></RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>4</SequenceNmb> <TermsInYears></TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>fff</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>60.00</RepayAmt> <RepayAPR>16.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>5</SequenceNmb> <TermsInYears>6</TermsInYears> </StandbyAgreement> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>3030.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>500.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>10</LoanProceedTypCd> <ProceedAmt>1700.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1094</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1000.00</ProceedAmt> <ProceedDesc>An abandoned warehouse</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1095</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>3000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1096</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>30.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1097</SubProceedId> <LoanProceedTypCd>04</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>500.00</ProceedAmt> <ProceedDesc>API-API-API</ProceedDesc> <SubProceedTypCd>3</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1098</SubProceedId> <LoanProceedTypCd>10</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1700.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>11</SubProceedTypCd> </UseOfProceedsSub> </App> </SBA_ETran>

Express Loans (SBX/ EXP/ CMX)

Go Back

7a Guaranty -SBX Ver 7.3

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.3" reason="Reports menu request"> <App> <LoanApplication action="insert"> <!-- comment: dev app #10956695 --> <AgentInvolved>N</AgentInvolved> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CurrEmpQty>1</CurrEmpQty> <EidlLoanNumber></EidlLoanNumber> <EligPassiveCompanyInd>N</EligPassiveCompanyInd> <EWCPPostShipmntInd></EWCPPostShipmntInd> <EWCPSnglTransInd></EWCPSnglTransInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <FullAmortPymtInd>Y</FullAmortPymtInd> <FundingFeeAmt></FundingFeeAmt> <GntyFeeAmt></GntyFeeAmt> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>1</JobsCreatdQty> <JobsRetaindQty>1</JobsRetaindQty> <LenderAltContactCellPhn></LenderAltContactCellPhn> <LenderAltContactEmail></LenderAltContactEmail> <LenderAltContactFax></LenderAltContactFax> <LenderAltContactFirstNm></LenderAltContactFirstNm> <LenderAltContactInitialNm></LenderAltContactInitialNm> <LenderAltContactLastNm></LenderAltContactLastNm> <LenderAltContactNameSuffix></LenderAltContactNameSuffix> <LenderAltContactPrimPhn></LenderAltContactPrimPhn> <LenderAltContactTitlTxt></LenderAltContactTitlTxt> <LenderAltContactTypCd></LenderAltContactTypCd> <LenderApplicNmb></LenderApplicNmb> <LenderCntctEmail>surajkumar.shinde@citizensbank.com</LenderCntctEmail> <LenderCntctFax></LenderCntctFax> <LenderCntctFirstName>Surajkumar</LenderCntctFirstName> <LenderCntctLastName>Shinde</LenderCntctLastName> <LenderCntctMiddleInitial></LenderCntctMiddleInitial> <LenderCntctNameSuffix></LenderCntctNameSuffix> <LenderCntctPhnNmb>4013475481</LenderCntctPhnNmb> <LenderCntctTitl>Contact</LenderCntctTitl> <LenderContactCellPhn></LenderContactCellPhn> <LenderLoanNmb></LenderLoanNmb> <LifeInsurRqmtInd>N</LifeInsurRqmtInd> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitExemptionInd></LimitExemptionInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LiquidCreditScore></LiquidCreditScore> <LoanBusinessEstDt>2018-04-14 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanGrossIncomeAmt></LoanGrossIncomeAmt> <LoanName>Taken Tech</LoanName> <LoanPackagerCityName></LoanPackagerCityName> <LoanPackagerName></LoanPackagerName> <LoanPackagerStCd></LoanPackagerStCd> <LoanPackagerStrtName1></LoanPackagerStrtName1> <LoanPackagerStrtName2></LoanPackagerStrtName2> <LoanPackagerZip4Cd></LoanPackagerZip4Cd> <LoanPackagerZipCd></LoanPackagerZipCd> <LoanPackageSourcTypCd></LoanPackageSourcTypCd> <LoanProjDelinquentInd></LoanProjDelinquentInd> <LoanProjectSizeCd>1</LoanProjectSizeCd> <LoanProjGrossRcptRdcPrdAmt1></LoanProjGrossRcptRdcPrdAmt1> <LoanProjGrossRcptRdcPrdAmt2></LoanProjGrossRcptRdcPrdAmt2> <LoanScheduleCInd></LoanScheduleCInd> <LoanScheduleCYear></LoanScheduleCYear> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>60</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <LoanUsResidentInd></LoanUsResidentInd> <LowtoMediumIncomeInd></LowtoMediumIncomeInd> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd>519210</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd></OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <PPPLoanNumber></PPPLoanNumber> <ProcessingFeeAmt></ProcessingFeeAmt> <ProcessingMethodCd>SBX</ProcessingMethodCd> <ProjectCityName>WARWICK</ProjectCityName> <ProjectStCd>RI</ProjectStCd> <ProjectStrtName1>480 jefferson blvd</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>02886</ProjectZipCd> <PymtAmt>1000.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <ReconsiderationInd>N</ReconsiderationInd> <RequestedAmt>100000.00</RequestedAmt> <RevolvingInd></RevolvingInd> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>50.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> <UnderwritingBy>LNDR</UnderwritingBy> <UnderwrtrsFeeAmt></UnderwrtrsFeeAmt> </LoanApplication> <Borrower action="insert"> <TaxId>0038413641</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd></BnkrptcyInd> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Taken Tech</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm></BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>9</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd></EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GamblingOrSexualNatureInd>N</GamblingOrSexualNatureInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <NonFedEmpInd>N</NonFedEmpInd> <NonFmrSBAEmpInd>N</NonFmrSBAEmpInd> <NonGS13EmpInd>N</NonGS13EmpInd> <NonLegBrnchEmpInd>N</NonLegBrnchEmpInd> <NonSBACEmpInd>N</NonSBACEmpInd> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>4019869654</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Borrower> <Borrower action="insert"> <TaxId>0328547412</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd></BnkrptcyInd> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Silicon Valley</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm></BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>8</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd></EPCOperatingCompnyCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>4019875214</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0038413641</TaxId> </BorrowerRace> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0328547412</TaxId> </BorrowerRace> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>LA</ApprCode> <ApprOrderedDt>2022-11-01 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>MONROE TOWNSHIP</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>023</CountyCode> <DescriptionTxt>Multiverse of Madness</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>1</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>200.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>2000.00</MrktValuAmt> <MrktValuDt></MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>1</OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Dr. Strange</OwnrRecrd> <PariPassuAmt>500.00</PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>NJ</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>100 Morning Glory Dr</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd></Zip4Cd> <ZipCd>08831</ZipCd> </Collateral> <Collateral action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-11-01 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>SAN DIEGO</CityName> <CommRealEnvInvMustBeApprInd></CommRealEnvInvMustBeApprInd> <CountyCode>073</CountyCode> <DescriptionTxt>No Way Home</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd>Y</LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>150.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1000.00</MrktValuAmt> <MrktValuDt></MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Spiderman</OwnrRecrd> <PariPassuAmt>250.00</PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>N</PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>1545 River Park Drive</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>6</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd></Zip4Cd> <ZipCd>92101</ZipCd> </Collateral> <Collateral action="insert"> <CollateralSequenceNmb>3</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-11-01 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>MONTEREY</CityName> <CommRealEnvInvMustBeApprInd></CommRealEnvInvMustBeApprInd> <CountyCode>053</CountyCode> <DescriptionTxt>The Dark Knight Rises</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>125.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1500.00</MrktValuAmt> <MrktValuDt></MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Batman</OwnrRecrd> <PariPassuAmt>75.00</PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>Y</PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>5 Harris Ct, Bldg N, Ste 3</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>7</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd></Zip4Cd> <ZipCd>93940</ZipCd> </Collateral> <CollateralGuars action="insert"> <CollateralSequenceNmb>3</CollateralSequenceNmb> <TaxId>1035854125</TaxId> <BusinessPersonInd>P</BusinessPersonInd> </CollateralGuars> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>150.00</LienBalanceAmt> <LienComment>AAAA Comments</LienComment> <LienHldrName>AAAA</LienHldrName> <LienPosition>11</LienPosition> <LienStatus>C</LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>50.00</LienBalanceAmt> <LienComment>BBBB Comments</LienComment> <LienHldrName>BBBB</LienHldrName> <LienPosition>12</LienPosition> <LienStatus>C</LienStatus> </CollateralLiens> <Comments action="insert"> <CommntTxt>comments</CommntTxt> </Comments> <CreditUnavailReasons action="insert"> <CreditUnavailReasonCd>1</CreditUnavailReasonCd> <CreditUnavailReasonCommnt>sfgsdf</CreditUnavailReasonCommnt> </CreditUnavailReasons> <CreditUnavailReasons action="insert"> <CreditUnavailReasonCd>2</CreditUnavailReasonCd> <CreditUnavailReasonCommnt>dsfsdfdsf</CreditUnavailReasonCommnt> </CreditUnavailReasons> <Guarantor action="insert"> <TaxId>0457854125</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb>987456321</BusDUNSNmb> <BusinessName>Tony Stark</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>N</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <OperatingCompnyInd></OperatingCompnyInd> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Avengers</TradeName> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>3.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>WSJ</BaseRateSourcTypCd> <BorrIntrstRatePct>7.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>60</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <PartnerInformation action="insert"> <LocationId>9551</LocationId> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <ACHTaxId></ACHTaxId> </PartnerInformation> <Principal action="insert"> <BusinessTaxId>0038413641</BusinessTaxId> <TaxId>1035854125</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt></BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd></BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HY</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd></FedEmplyAffiltInd> <FirstName>Kane</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>2</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Williams</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0038413641</BusinessTaxId> <TaxId>1896543214</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt></BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd></BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HY</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd></FedEmplyAffiltInd> <FirstName>Thomas</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Kaplan</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0328547412</BusinessTaxId> <TaxId>1035854125</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt></BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd></BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType></ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HY</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd></FedEmplyAffiltInd> <FirstName>Kane</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>2</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Williams</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0328547412</BusinessTaxId> <TaxId>1896543214</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt></BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd></BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HY</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd></FedEmplyAffiltInd> <FirstName>Thomas</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Kaplan</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>WARWICK</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>RI</MailStCd> <MailStNm></MailStNm> <MailStrtName1>480 jefferson blvd</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>02886</MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>WARWICK</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>RI</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>480 jefferson blvd</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>02886</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1035854125</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>1896543214</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>100000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </App> </SBA_ETran>

7a General (7AG) Ver 7.3

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.3" reason="Reports menu request"> <App> <LoanApplication action="insert"> <!-- comment: dev app #10956694 --> <AgentInvolved>Y</AgentInvolved> <BorrowerContribAmt></BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>0</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CurrEmpQty>6</CurrEmpQty> <EidlLoanNumber></EidlLoanNumber> <EligPassiveCompanyInd>N</EligPassiveCompanyInd> <EWCPPostShipmntInd></EWCPPostShipmntInd> <EWCPSnglTransInd></EWCPSnglTransInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <FullAmortPymtInd>N</FullAmortPymtInd> <FundingFeeAmt></FundingFeeAmt> <GntyFeeAmt></GntyFeeAmt> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>6</JobsCreatdQty> <JobsRetaindQty>6</JobsRetaindQty> <LenderAltContactCellPhn></LenderAltContactCellPhn> <LenderAltContactEmail></LenderAltContactEmail> <LenderAltContactFax></LenderAltContactFax> <LenderAltContactFirstNm></LenderAltContactFirstNm> <LenderAltContactInitialNm></LenderAltContactInitialNm> <LenderAltContactLastNm></LenderAltContactLastNm> <LenderAltContactNameSuffix></LenderAltContactNameSuffix> <LenderAltContactPrimPhn></LenderAltContactPrimPhn> <LenderAltContactTitlTxt></LenderAltContactTitlTxt> <LenderAltContactTypCd></LenderAltContactTypCd> <LenderApplicNmb></LenderApplicNmb> <LenderCntctEmail>dan.du@sba.gov</LenderCntctEmail> <LenderCntctFax>7860989877</LenderCntctFax> <LenderCntctFirstName>Dan</LenderCntctFirstName> <LenderCntctLastName>Du</LenderCntctLastName> <LenderCntctMiddleInitial></LenderCntctMiddleInitial> <LenderCntctNameSuffix></LenderCntctNameSuffix> <LenderCntctPhnNmb>5712670596</LenderCntctPhnNmb> <LenderCntctTitl>title1</LenderCntctTitl> <LenderContactCellPhn></LenderContactCellPhn> <LenderLoanNmb></LenderLoanNmb> <LifeInsurRqmtInd></LifeInsurRqmtInd> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd>N</LimitCompensationInd> <LimitExemptionInd></LimitExemptionInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>N</LimitLocation> <LiquidCreditScore></LiquidCreditScore> <LoanBusinessEstDt>2021-03-01 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanGrossIncomeAmt></LoanGrossIncomeAmt> <LoanName>BPR</LoanName> <LoanPackagerCityName></LoanPackagerCityName> <LoanPackagerName></LoanPackagerName> <LoanPackagerStCd></LoanPackagerStCd> <LoanPackagerStrtName1></LoanPackagerStrtName1> <LoanPackagerStrtName2></LoanPackagerStrtName2> <LoanPackagerZip4Cd></LoanPackagerZip4Cd> <LoanPackagerZipCd></LoanPackagerZipCd> <LoanPackageSourcTypCd></LoanPackageSourcTypCd> <LoanProjDelinquentInd></LoanProjDelinquentInd> <LoanProjectSizeCd>1</LoanProjectSizeCd> <LoanProjGrossRcptRdcPrdAmt1></LoanProjGrossRcptRdcPrdAmt1> <LoanProjGrossRcptRdcPrdAmt2></LoanProjGrossRcptRdcPrdAmt2> <LoanScheduleCInd></LoanScheduleCInd> <LoanScheduleCYear></LoanScheduleCYear> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>120</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <LoanUsResidentInd></LoanUsResidentInd> <LowtoMediumIncomeInd>N</LowtoMediumIncomeInd> <MnthsIntrstOnlyQty>12</MnthsIntrstOnlyQty> <NAICSCd>111120</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd></OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <PPPLoanNumber></PPPLoanNumber> <ProcessingFeeAmt></ProcessingFeeAmt> <ProcessingMethodCd>7AG</ProcessingMethodCd> <ProjectCityName>CHANTILLY</ProjectCityName> <ProjectStCd>VA</ProjectStCd> <ProjectStrtName1>876 WHITE CAP TER</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>5807</ProjectZip4Cd> <ProjectZipCd>20152</ProjectZipCd> <PymtAmt>2547.66</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <ReconsiderationInd>N</ReconsiderationInd> <RequestedAmt>10000.00</RequestedAmt> <RevolvingInd></RevolvingInd> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>85.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd>N</StateLawComplianceForBulkInd> <UnderwritingBy>SBA</UnderwritingBy> <UnderwrtrsFeeAmt></UnderwrtrsFeeAmt> </LoanApplication> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>CHANTILLY</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>b p</LoanAgentFirstName> <LoanAgentID>436</LoanAgentID> <LoanAgentLastName>Pat</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>BPtest</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>VA</LoanAgentStateCD> <LoanAgentStreet1>40675</LoanAgentStreet1> <LoanAgentStreet2>HAZEL PL,ALDIE,VA</LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>4</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>5807</LoanAgentZip4CD> <LoanAgentZipCD>20152</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>3500.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Borrower action="insert"> <TaxId>0346414561</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd></BnkrptcyInd> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb>344351346</BusDUNSNmb> <BusinessName>Nelli 2969test</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm></BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>3</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd></EPCOperatingCompnyCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>8</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>CHANTILLY</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>VA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>876 WHITE CAP TER</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>5807</PhysZip4Cd> <PhysZipCd>20152</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> </Borrower> <Borrower action="insert"> <TaxId>0910283845</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>90</BooksToLenderWithinDays> <BusDUNSNmb>987987986</BusDUNSNmb> <BusinessName>BPR</BusinessName> <BusOutstandingDebtInd>N</BusOutstandingDebtInd> <BusPrimCntctNm></BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>9</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd></EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GamblingOrSexualNatureInd>N</GamblingOrSexualNatureInd> <InsurLiabInd>N</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NonFedEmpInd>N</NonFedEmpInd> <NonFmrSBAEmpInd>N</NonFmrSBAEmpInd> <NonGS13EmpInd>N</NonGS13EmpInd> <NonLegBrnchEmpInd>N</NonLegBrnchEmpInd> <NonSBACEmpInd>N</NonSBACEmpInd> <PaymentsLessThanCCInd>N</PaymentsLessThanCCInd> <PhysCityName>ALDIE</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>VA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>40675 Hazel Pl</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>5807</PhysZip4Cd> <PhysZipCd>20105</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>2347896789</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0910283845</TaxId> </BorrowerRace> <CreditUnavailReasons action="insert"> <CreditUnavailReasonCd>2</CreditUnavailReasonCd> <CreditUnavailReasonCommnt></CreditUnavailReasonCommnt> </CreditUnavailReasons> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>3.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>WSJ</BaseRateSourcTypCd> <BorrIntrstRatePct>3.25000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>120</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <PartnerInformation action="insert"> <LocationId>9551</LocationId> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <ACHTaxId></ACHTaxId> </PartnerInformation> <Principal action="insert"> <BusinessTaxId>0346414561</BusinessTaxId> <TaxId>1908995776</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt></BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd></BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType></ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd></CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd></EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FedEmplyAffiltInd></FedEmplyAffiltInd> <FirstName></FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd></GndrCd> <GntyInd></GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd></GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName></LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd></LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName></MailCityName> <MailCountryCd></MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OwnrshpInBusinessPct>0</OwnrshpInBusinessPct> <PhysCityName></PhysCityName> <PhysCountryCd></PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd></PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1></PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd></PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd></USCitznInd> <VetCd></VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0910283845</BusinessTaxId> <TaxId>1666239028</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt></BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>6</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HY</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd></FedEmplyAffiltInd> <FirstName>Principal1</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>F</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>3</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>pat</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>90.00</OwnrshpInBusinessPct> <PhysCityName>CHANTILLY</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>VA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>876 WHITE CAP TER</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>5807</PhysZip4Cd> <PhysZipCd>20152</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1666239028</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>4</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>DEBT</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>18</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt>yyy</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>21</LoanProceedTypCd> <ProceedAmt>9000.00</ProceedAmt> <ProceedOthTypTxt>test</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </App> </SBA_ETran>

Accredited Lenders Program(ALP) Ver 7.3

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.3" reason="Reports menu request"> <App> <LoanApplication action="insert"> <!-- comment: dev app #10956714 --> <AgentInvolved>N</AgentInvolved> <BorrowerContribAmt>132000.00</BorrowerContribAmt> <BorrowerContribPct>10.00</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>8000.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CurrEmpQty>12</CurrEmpQty> <EidlLoanNumber></EidlLoanNumber> <EligPassiveCompanyInd>N</EligPassiveCompanyInd> <EWCPPostShipmntInd></EWCPPostShipmntInd> <EWCPSnglTransInd></EWCPSnglTransInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <FullAmortPymtInd>Y</FullAmortPymtInd> <FundingFeeAmt>1320.00</FundingFeeAmt> <GntyFeeAmt>2640.00</GntyFeeAmt> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>10</JobsCreatdQty> <JobsRetaindQty>0</JobsRetaindQty> <LenderAltContactCellPhn></LenderAltContactCellPhn> <LenderAltContactEmail></LenderAltContactEmail> <LenderAltContactFax></LenderAltContactFax> <LenderAltContactFirstNm></LenderAltContactFirstNm> <LenderAltContactInitialNm></LenderAltContactInitialNm> <LenderAltContactLastNm></LenderAltContactLastNm> <LenderAltContactNameSuffix></LenderAltContactNameSuffix> <LenderAltContactPrimPhn></LenderAltContactPrimPhn> <LenderAltContactTitlTxt></LenderAltContactTitlTxt> <LenderAltContactTypCd></LenderAltContactTypCd> <LenderApplicNmb>2029991501</LenderApplicNmb> <LenderCntctEmail>jR@uta.com</LenderCntctEmail> <LenderCntctFax>8016276687</LenderCntctFax> <LenderCntctFirstName>Jon</LenderCntctFirstName> <LenderCntctLastName>RED</LenderCntctLastName> <LenderCntctMiddleInitial></LenderCntctMiddleInitial> <LenderCntctNameSuffix></LenderCntctNameSuffix> <LenderCntctPhnNmb>RED</LenderCntctPhnNmb> <LenderCntctTitl>Loan Processor</LenderCntctTitl> <LenderContactCellPhn>8019409755</LenderContactCellPhn> <LenderLoanNmb></LenderLoanNmb> <LifeInsurRqmtInd>Y</LifeInsurRqmtInd> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitExemptionInd></LimitExemptionInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LiquidCreditScore></LiquidCreditScore> <LoanBusinessEstDt>1994-10-21 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanGrossIncomeAmt></LoanGrossIncomeAmt> <LoanName>REDAD1, Inc.</LoanName> <LoanPackagerCityName></LoanPackagerCityName> <LoanPackagerName></LoanPackagerName> <LoanPackagerStCd></LoanPackagerStCd> <LoanPackagerStrtName1></LoanPackagerStrtName1> <LoanPackagerStrtName2></LoanPackagerStrtName2> <LoanPackagerZip4Cd></LoanPackagerZip4Cd> <LoanPackagerZipCd></LoanPackagerZipCd> <LoanPackageSourcTypCd></LoanPackageSourcTypCd> <LoanProjDelinquentInd></LoanProjDelinquentInd> <LoanProjectSizeCd></LoanProjectSizeCd> <LoanProjGrossRcptRdcPrdAmt1></LoanProjGrossRcptRdcPrdAmt1> <LoanProjGrossRcptRdcPrdAmt2></LoanProjGrossRcptRdcPrdAmt2> <LoanScheduleCInd></LoanScheduleCInd> <LoanScheduleCYear></LoanScheduleCYear> <LoanTermAmortMnths>0</LoanTermAmortMnths> <LoanTermMnths>300</LoanTermMnths> <LoanTermRevlMnths>0</LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <LoanUsResidentInd></LoanUsResidentInd> <LowtoMediumIncomeInd>N</LowtoMediumIncomeInd> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd>453998</NAICSCd> <NetDebentrAmt>528000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0.644</OverallPortfolioJobRatio> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <PPPLoanNumber></PPPLoanNumber> <ProcessingFeeAmt>0.00</ProcessingFeeAmt> <ProcessingMethodCd>ALP</ProcessingMethodCd> <ProjectCityName>Salt Lake City</ProjectCityName> <ProjectStCd>UT</ProjectStCd> <ProjectStrtName1>6100 South Stratler Street</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>6905</ProjectZip4Cd> <ProjectZipCd>84107</ProjectZipCd> <PymtAmt>2742.59</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <ReconsiderationInd>N</ReconsiderationInd> <RequestedAmt>543000.00</RequestedAmt> <RevolvingInd>N</RevolvingInd> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>N</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> <UnderwritingBy>SBA</UnderwritingBy> <UnderwrtrsFeeAmt></UnderwrtrsFeeAmt> </LoanApplication> <Borrower action="insert"> <TaxId>0454563242</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb>008273224</BusDUNSNmb> <BusinessName>REDAD1, Inc.</BusinessName> <BusOutstandingDebtInd>Y</BusOutstandingDebtInd> <BusPrimCntctNm>Rodney Dean REDACTED</BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>9</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>5</CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd></EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt>Jul 13 2021 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>66</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GamblingOrSexualNatureInd>N</GamblingOrSexualNatureInd> <InsurLiabInd>N</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>8</LegalOrgnztnCd> <MailCityName>Salt Lake City</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>UT</MailStCd> <MailStNm></MailStNm> <MailStrtName1>6100 South Stratler Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>6905</MailZip4Cd> <MailZipCd>84107</MailZipCd> <NonFedEmpInd>N</NonFedEmpInd> <NonFmrSBAEmpInd>N</NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd>N</NonLegBrnchEmpInd> <NonSBACEmpInd>N</NonSBACEmpInd> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Salt Lake City</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>UT</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>6100 South Stratler Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>6905</PhysZip4Cd> <PhysZipCd>84107</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>dREDAD@brites.com</PrimaryEmail> <PrimaryPhone>2402402400</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>132000.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>MS</ApprCode> <ApprOrderedDt>2021-06-30 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>Salt Lake City</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode></CountyCode> <DescriptionTxt>6100 South Stratler Street, Salt Lake City, UT 84107-6905</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>2</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt></LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1320000.00</MrktValuAmt> <MrktValuDt>Jun 30 2021 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>REDACTED, Inc.</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd>Y</PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt>This is secure prior assignment text</PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt>Interest 1: $5,000&lt;br&gt;Interest 2: $10,000</SellerIntDescTxt> <SellerIntTypInd>Y</SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd></SharedPariPassuInd> <SharedPariPassuNonSBAInd></SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>UT</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>6100 South Stratler Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>6905</Zip4Cd> <ZipCd>84107</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>660000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>ZB, N.A. dba Zions First National Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CreditUnavailReasons action="insert"> <CreditUnavailReasonCd>5</CreditUnavailReasonCd> <CreditUnavailReasonCommnt>The Applicant does not have the ability to obtain some or all of the requested loan funds on reasonable terms from non-Federal,non-State, or non-local government sources, including from the Third Party Lender, without SBA assistance. The business needs lo</CreditUnavailReasonCommnt> </CreditUnavailReasons> <Eligibility action="insert"> <EligibleCd>102</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Eligibility action="insert"> <EligibleCd>103</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Eligibility action="insert"> <EligibleCd>104</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseRateSourcTypCd>NR3</BaseRateSourcTypCd> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <PartcipatLender action="insert"> <SequenceNmb>2</SequenceNmb> <FirstName>David</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>REDACTED</LastName> <LendrAmt></LendrAmt> <LendrCityName>SALT LAKE CITY</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb>A460480</LendrFIRSNmb> <LendrLocId>72601</LendrLocId> <LendrName>Zions First National Bank</LendrName> <LendrPhnNmb>REDACTED</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>UT</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>1 S Main St</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd></LendrZip4Cd> <LendrZipCd>84133</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="insert"> <SequenceNmb>1</SequenceNmb> <FirstName>David</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>REDACTED</LastName> <LendrAmt>660000.00</LendrAmt> <LendrCityName>SALT LAKE CITY</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb>A460480</LendrFIRSNmb> <LendrLocId>72601</LendrLocId> <LendrName>Zions First National Bank</LendrName> <LendrPhnNmb>REDACTED</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>UT</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>1 S Main St</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd></LendrZip4Cd> <LendrZipCd>84133</LendrZipCd> <LienPosition>1</LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartnerInformation action="insert"> <LocationId>188216</LocationId> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <ACHTaxId></ACHTaxId> </PartnerInformation> <Principal action="insert"> <BusinessTaxId>0454563242</BusinessTaxId> <TaxId>1345230238</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName>Scottdale</BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt>Jun 21 1965 12:00AM</BirthDt> <BirthStCd>AZ</BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>13</CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>Jul 15 2021 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>754</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Valreia</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>F</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>REDACTED</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd></LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>Park City</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>UT</MailStCd> <MailStNm></MailStNm> <MailStrtName1>1969 Sun Peak Drive</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>84098</MailZipCd> <MiddleInitial>L</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Park City</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>UT</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>1969 Sun Peak Drive</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>84098</PhysZipCd> <PrimaryEmail>mtnlions@msn.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Secretary</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0454563242</BusinessTaxId> <TaxId>1345230327</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName>Calgary</BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt>Jun 24 1965 12:00AM</BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>1</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>13</CreditScorSourcCd> <CrmnlOffnsInd></CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>Jul 13 2021 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>771</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Rodney</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt>90000.00</InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>Y</InsuranceLifeInd> <InsureDisabNames>Rodney Dean REDACTED</InsureDisabNames> <InsureName>Rodney Dean REDACTED</InsureName> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>REDACTED</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd></LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>Park City</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>UT</MailStCd> <MailStNm></MailStNm> <MailStrtName1>1969 Sun Peak Drive</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>84098</MailZipCd> <MiddleInitial>D</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Park City</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>UT</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>1969 Sun Peak Drive</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>84098</PhysZipCd> <PrimaryEmail>dREDAD@briites.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <Title>President</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>1</VetCd> <VetCertInd>N</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1345230238</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>1345230327</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>1320000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt>334342 South Stratler Street, Salt Lake City, UT 84107-6905</RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </App> </SBA_ETran>

ALP Express Ver 7.3

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.3" reason="Reports menu request"> <App> <LoanApplication action="insert"> <!-- comment: dev app #10956698 --> <AgentInvolved>N</AgentInvolved> <BorrowerContribAmt>300.00</BorrowerContribAmt> <BorrowerContribPct>6.98</BorrowerContribPct> <BusinessAgeCd>0</BusinessAgeCd> <ClosingCostAmt>500.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CurrEmpQty>5</CurrEmpQty> <EidlLoanNumber></EidlLoanNumber> <EligPassiveCompanyInd>Y</EligPassiveCompanyInd> <EWCPPostShipmntInd></EWCPPostShipmntInd> <EWCPSnglTransInd></EWCPSnglTransInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <FullAmortPymtInd></FullAmortPymtInd> <FundingFeeAmt>5.00</FundingFeeAmt> <GntyFeeAmt>0.00</GntyFeeAmt> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>2</JobsCreatdQty> <JobsRetaindQty>3</JobsRetaindQty> <LenderAltContactCellPhn></LenderAltContactCellPhn> <LenderAltContactEmail></LenderAltContactEmail> <LenderAltContactFax></LenderAltContactFax> <LenderAltContactFirstNm></LenderAltContactFirstNm> <LenderAltContactInitialNm></LenderAltContactInitialNm> <LenderAltContactLastNm></LenderAltContactLastNm> <LenderAltContactNameSuffix></LenderAltContactNameSuffix> <LenderAltContactPrimPhn></LenderAltContactPrimPhn> <LenderAltContactTitlTxt></LenderAltContactTitlTxt> <LenderAltContactTypCd></LenderAltContactTypCd> <LenderApplicNmb></LenderApplicNmb> <LenderCntctEmail>dan.du@sba.gov</LenderCntctEmail> <LenderCntctFax></LenderCntctFax> <LenderCntctFirstName>Dan</LenderCntctFirstName> <LenderCntctLastName>Du</LenderCntctLastName> <LenderCntctMiddleInitial></LenderCntctMiddleInitial> <LenderCntctNameSuffix></LenderCntctNameSuffix> <LenderCntctPhnNmb>5712670596</LenderCntctPhnNmb> <LenderCntctTitl>Movie Watcher</LenderCntctTitl> <LenderContactCellPhn></LenderContactCellPhn> <LenderLoanNmb></LenderLoanNmb> <LifeInsurRqmtInd>N</LifeInsurRqmtInd> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitExemptionInd></LimitExemptionInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LiquidCreditScore></LiquidCreditScore> <LoanBusinessEstDt></LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanGrossIncomeAmt></LoanGrossIncomeAmt> <LoanName>Tony Stark</LoanName> <LoanPackagerCityName></LoanPackagerCityName> <LoanPackagerName></LoanPackagerName> <LoanPackagerStCd></LoanPackagerStCd> <LoanPackagerStrtName1></LoanPackagerStrtName1> <LoanPackagerStrtName2></LoanPackagerStrtName2> <LoanPackagerZip4Cd></LoanPackagerZip4Cd> <LoanPackagerZipCd></LoanPackagerZipCd> <LoanPackageSourcTypCd></LoanPackageSourcTypCd> <LoanProjDelinquentInd></LoanProjDelinquentInd> <LoanProjectSizeCd>1</LoanProjectSizeCd> <LoanProjGrossRcptRdcPrdAmt1></LoanProjGrossRcptRdcPrdAmt1> <LoanProjGrossRcptRdcPrdAmt2></LoanProjGrossRcptRdcPrdAmt2> <LoanScheduleCInd></LoanScheduleCInd> <LoanScheduleCYear></LoanScheduleCYear> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>240</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <LoanUsResidentInd></LoanUsResidentInd> <LowtoMediumIncomeInd></LowtoMediumIncomeInd> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd>327332</NAICSCd> <NetDebentrAmt>2000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NoteDt></NoteDt> <OtherClosingCostAmt>50.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0</OverallPortfolioJobRatio> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <PPPLoanNumber></PPPLoanNumber> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProcessingMethodCd>5EX</ProcessingMethodCd> <ProjectCityName>MONROE TOWNSHIP</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 Morning Glory Dr</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>08831</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <ReconsiderationInd>N</ReconsiderationInd> <RequestedAmt>3000.00</RequestedAmt> <RevolvingInd></RevolvingInd> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> <UnderwritingBy>SBA</UnderwritingBy> <UnderwrtrsFeeAmt>12.00</UnderwrtrsFeeAmt> </LoanApplication> <Borrower action="insert"> <TaxId>0457854125</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail>jignesh.solanki@sba.gov</AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb>987456321</BusDUNSNmb> <BusinessName>Tony Stark</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm></BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>9</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd>2</EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GamblingOrSexualNatureInd>N</GamblingOrSexualNatureInd> <InsurLiabInd>N</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName>MONROE TOWNSHIP</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>VINE ST</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>08831</MailZipCd> <NonFedEmpInd>N</NonFedEmpInd> <NonFmrSBAEmpInd>N</NonFmrSBAEmpInd> <NonGS13EmpInd>N</NonGS13EmpInd> <NonLegBrnchEmpInd>N</NonLegBrnchEmpInd> <NonSBACEmpInd>N</NonSBACEmpInd> <PaymentsLessThanCCInd>N</PaymentsLessThanCCInd> <PhysCityName>MONROE TOWNSHIP</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>VINE ST</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>08831</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>jignesh.solanki@sba.gov</PrimaryEmail> <PrimaryPhone>9104441711</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Avengers</TradeName> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>100.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>200.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>LA</ApprCode> <ApprOrderedDt>2022-11-03 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>MONROE TOWNSHIP</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>023</CountyCode> <DescriptionTxt>Multiverse of Madness</DescriptionTxt> <Endorsement>Jignesh Endorsement</Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>1</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>75.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>2000.00</MrktValuAmt> <MrktValuDt>Nov 03 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException>Y</NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>1</OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Dr. Strange</OwnrRecrd> <PariPassuAmt>55.00</PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>NJ</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>100 Morning Glory Dr</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount>75.00</TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException>Y</WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd></Zip4Cd> <ZipCd>08831</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount>50.0000</CollatLienLimitAmount> <CollatLienRevolvingInd>Y</CollatLienRevolvingInd> <LienBalanceAmt>150.00</LienBalanceAmt> <LienComment>AAAA Comments</LienComment> <LienHldrName>AAAA</LienHldrName> <LienPosition>11</LienPosition> <LienStatus>C</LienStatus> </CollateralLiens> <Eligibility action="insert"> <EligibleCd>102</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Eligibility action="insert"> <EligibleCd>103</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Eligibility action="insert"> <EligibleCd>104</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Guarantor action="insert"> <TaxId>0987456545</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb>785412457</BusDUNSNmb> <BusinessName>Nick Fury</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsurLiabInd>N</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName>MONROE TOWNSHIP</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>VINE ST</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>08831</MailZipCd> <OperatingCompnyInd>Y</OperatingCompnyInd> <PhysCityName>MONROE TOWNSHIP</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>VINE ST</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>08831</PhysZipCd> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Sheilds</TradeName> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>5.00000</BaseIntrstRatePct> <BaseRateSourcTypCd>NR2</BaseRateSourcTypCd> <BorrIntrstRatePct>5.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>240</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <PartcipatLender action="insert"> <SequenceNmb>1</SequenceNmb> <FirstName>Bruce</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>Wayne</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>San Diego</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb>C055736</LendrFIRSNmb> <LendrLocId>188309</LendrLocId> <LendrName>CDC Small Business Finance Corporation</LendrName> <LendrPhnNmb>9104441711</LendrPhnNmb> <LendrPostalCd>92108</LendrPostalCd> <LendrServFeePct>6.000</LendrServFeePct> <LendrStCd>CA</LendrStCd> <LendrStNm>CA</LendrStNm> <LendrStrtName1>5353 Mission Center</LendrStrtName1> <LendrStrtName2>Suite 218</LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd></LendrZip4Cd> <LendrZipCd>92108</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartnerInformation action="insert"> <LocationId>188309</LocationId> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <ACHTaxId></ACHTaxId> </PartnerInformation> <Principal action="insert"> <BusinessTaxId>0457854125</BusinessTaxId> <TaxId>0978545265</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb>784585478</BusDUNSNmb> <BusinessName>Sheldon Cooper</BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>3</ControlInterestType> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>HN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName>MONROE TOWNSHIP</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 Morning Glory Dr</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>08831</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OwnrshpInBusinessPct>100.00</OwnrshpInBusinessPct> <PhysCityName>MONROE TOWNSHIP</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 Morning Glory Dr</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>08831</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName>Big Bang Theory</TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>0978545265</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>4</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>NOSP</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>4000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>300.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1123</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>100 Morning Glory Dr</ProceedAddr> <ProceedAmt>4000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>1124</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>100 Morning Glory Dr, MONROE TOWNSHIP, NJ 08831</ProceedAddr> <ProceedAmt>300.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> </App> </SBA_ETran>

504 Refinancing Program Ver 7.3

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.3" reason="Reports menu request"> <App> <LoanApplication action="insert"> <!-- comment: dev app #10956106 --> <AgentInvolved>N</AgentInvolved> <BorrowerContribAmt>100000.00</BorrowerContribAmt> <BorrowerContribPct>10.00</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>2500.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CurrEmpQty>75</CurrEmpQty> <EidlLoanNumber></EidlLoanNumber> <EligPassiveCompanyInd>Y</EligPassiveCompanyInd> <EWCPPostShipmntInd></EWCPPostShipmntInd> <EWCPSnglTransInd></EWCPSnglTransInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <FullAmortPymtInd>Y</FullAmortPymtInd> <FundingFeeAmt>1000.00</FundingFeeAmt> <GntyFeeAmt>2000.00</GntyFeeAmt> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>10</JobsCreatdQty> <JobsRetaindQty>10</JobsRetaindQty> <LenderAltContactCellPhn></LenderAltContactCellPhn> <LenderAltContactEmail></LenderAltContactEmail> <LenderAltContactFax></LenderAltContactFax> <LenderAltContactFirstNm></LenderAltContactFirstNm> <LenderAltContactInitialNm></LenderAltContactInitialNm> <LenderAltContactLastNm></LenderAltContactLastNm> <LenderAltContactNameSuffix></LenderAltContactNameSuffix> <LenderAltContactPrimPhn></LenderAltContactPrimPhn> <LenderAltContactTitlTxt></LenderAltContactTitlTxt> <LenderAltContactTypCd></LenderAltContactTypCd> <LenderApplicNmb>123</LenderApplicNmb> <LenderCntctEmail>miriam.voigt@sba.gov</LenderCntctEmail> <LenderCntctFax></LenderCntctFax> <LenderCntctFirstName>Miriam</LenderCntctFirstName> <LenderCntctLastName>Voigt</LenderCntctLastName> <LenderCntctMiddleInitial></LenderCntctMiddleInitial> <LenderCntctNameSuffix></LenderCntctNameSuffix> <LenderCntctPhnNmb>6199482397</LenderCntctPhnNmb> <LenderCntctTitl>BDO</LenderCntctTitl> <LenderContactCellPhn></LenderContactCellPhn> <LenderLoanNmb></LenderLoanNmb> <LifeInsurRqmtInd>N</LifeInsurRqmtInd> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitExemptionInd>N</LimitExemptionInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LiquidCreditScore></LiquidCreditScore> <LoanBusinessEstDt>1980-01-01 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanGrossIncomeAmt></LoanGrossIncomeAmt> <LoanName>New Woodwork 1 by Groot, Inc.</LoanName> <LoanPackagerCityName></LoanPackagerCityName> <LoanPackagerName></LoanPackagerName> <LoanPackagerStCd></LoanPackagerStCd> <LoanPackagerStrtName1></LoanPackagerStrtName1> <LoanPackagerStrtName2></LoanPackagerStrtName2> <LoanPackagerZip4Cd></LoanPackagerZip4Cd> <LoanPackagerZipCd></LoanPackagerZipCd> <LoanPackageSourcTypCd></LoanPackageSourcTypCd> <LoanProjDelinquentInd></LoanProjDelinquentInd> <LoanProjectSizeCd>2</LoanProjectSizeCd> <LoanProjGrossRcptRdcPrdAmt1></LoanProjGrossRcptRdcPrdAmt1> <LoanProjGrossRcptRdcPrdAmt2></LoanProjGrossRcptRdcPrdAmt2> <LoanScheduleCInd></LoanScheduleCInd> <LoanScheduleCYear></LoanScheduleCYear> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>240</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <LoanUsResidentInd></LoanUsResidentInd> <LowtoMediumIncomeInd></LowtoMediumIncomeInd> <MnthsIntrstOnlyQty></MnthsIntrstOnlyQty> <NAICSCd>337212</NAICSCd> <NetDebentrAmt>400000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>Y</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>1.818</OverallPortfolioJobRatio> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <PPPLoanNumber></PPPLoanNumber> <ProcessingFeeAmt>0.00</ProcessingFeeAmt> <ProcessingMethodCd>5RE</ProcessingMethodCd> <ProjectCityName>GUILDERLAND</ProjectCityName> <ProjectStCd>NY</ProjectStCd> <ProjectStrtName1>123 Random Street</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>12084</ProjectZipCd> <PymtAmt></PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <ReconsiderationInd>N</ReconsiderationInd> <RequestedAmt>400000.00</RequestedAmt> <RevolvingInd></RevolvingInd> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> <UnderwritingBy>SBA</UnderwritingBy> <UnderwrtrsFeeAmt></UnderwrtrsFeeAmt> </LoanApplication> <Borrower action="insert"> <TaxId>0783654211</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>New Woodwork 1 by Groot, Inc.</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm></BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>9</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd>3</EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <GamblingOrSexualNatureInd>N</GamblingOrSexualNatureInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NonFedEmpInd>N</NonFedEmpInd> <NonFmrSBAEmpInd>N</NonFmrSBAEmpInd> <NonGS13EmpInd>N</NonGS13EmpInd> <NonLegBrnchEmpInd>N</NonLegBrnchEmpInd> <NonSBACEmpInd>N</NonSBACEmpInd> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>GUILDERLAND</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NY</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>123 Random Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>12084</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>6191234567</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> </Borrower> <Borrower action="insert"> <TaxId>0983265988</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BnkrptcyInd>N</BnkrptcyInd> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Groot Properties, LLC</BusinessName> <BusOutstandingDebtInd></BusOutstandingDebtInd> <BusPrimCntctNm>Groot Groot</BusPrimCntctNm> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <CrdScrFinAnnIntExp></CrdScrFinAnnIntExp> <CrdScrFinCashAndEquiv></CrdScrFinCashAndEquiv> <CrdScrFinDDABal></CrdScrFinDDABal> <CrdScrFinEarnBefIntTx></CrdScrFinEarnBefIntTx> <CrdScrFinNetWorth></CrdScrFinNetWorth> <CrdScrFinTotAsset></CrdScrFinTotAsset> <CrdScrFinTotLiab></CrdScrFinTotLiab> <CrdScrFinTotSales></CrdScrFinTotSales> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd></CreditScorSourcCd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EPCOperatingCompnyCd>2</EPCOperatingCompnyCd> <ExporterInd>N</ExporterInd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <InsurLiabInd>N</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>N</InsurWorkersCompInd> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <PaymentsLessThanCCInd>N</PaymentsLessThanCCInd> <PhysCityName>GUILDERLAND</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NY</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>123 Random Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>12084</PhysZipCd> <PrevGovFinInd>N</PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>6191234567</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>100000.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0983265988</TaxId> </BorrowerRace> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>MS</ApprCode> <ApprOrderedDt>2021-06-01 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>GUILDERLAND</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CountyCode>001</CountyCode> <DescriptionTxt>Land &amp; Bldg</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>Y</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InstrumentTypCd>1</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt></LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>3250000.00</MrktValuAmt> <MrktValuDt>Jun 15 2021 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Groot Properties, LLC</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd>Y</PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt>This is secure prior assignment text</PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd>Y</RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos></SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt>Interest 1: $5,000&lt;br&gt;Interest 2: $10,000</SellerIntDescTxt> <SellerIntTypInd>Y</SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd></SharedPariPassuInd> <SharedPariPassuNonSBAInd></SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>NY</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>123 Random Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd></Zip4Cd> <ZipCd>12084</ZipCd> </Collateral> <Comments action="insert"> <CommntTxt>xxx</CommntTxt> </Comments> <CreditUnavailReasons action="insert"> <CreditUnavailReasonCd>5</CreditUnavailReasonCd> <CreditUnavailReasonCommnt>xxx</CreditUnavailReasonCommnt> </CreditUnavailReasons> <EconDevObjective action="insert"> <EconDevObjctCd>C08</EconDevObjctCd> </EconDevObjective> <Eligibility action="insert"> <EligibleCd>102</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Eligibility action="insert"> <EligibleCd>104</EligibleCd> <EligibleInd>Y</EligibleInd> </Eligibility> <Guarantor action="insert"> <TaxId>1741859632</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <BirthCityName>San Diego</BirthCityName> <BirthCntryName>USA</BirthCntryName> <BirthDt>Feb 01 1950 12:00AM</BirthDt> <BirthStCd>CA</BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <ConvictdInd>N</ConvictdInd> <CreditScorSourcCd>14</CreditScorSourcCd> <CrmnlOffnsInd>N</CrmnlOffnsInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>Jul 01 2021 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>850</ExtrnlCreditScorNmb> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Groot</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd>N</IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>Groott</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <OperatingCompnyInd></OperatingCompnyInd> <PhysCityName>GUILDERLAND</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NY</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>123 Random Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>12084</PhysZipCd> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.40620</BaseIntrstRatePct> <BaseRateSourcTypCd>NR2</BaseRateSourcTypCd> <BorrIntrstRatePct>1.40620</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>240</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <PartcipatLender action="insert"> <SequenceNmb>2</SequenceNmb> <FirstName>Random</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>Banker</LastName> <LendrAmt>500000.00</LendrAmt> <LendrCityName>CHARLOTTE</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb>A055670</LendrFIRSNmb> <LendrLocId>9551</LendrLocId> <LendrName>Bank of America, National Association...</LendrName> <LendrPhnNmb>6199876543</LendrPhnNmb> <LendrPostalCd>28202</LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>NC</LendrStCd> <LendrStNm>NC</LendrStNm> <LendrStrtName1>100 N Tryon St</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId>0941687665</LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd></LendrZip4Cd> <LendrZipCd>28255</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title>BDO</Title> </PartcipatLender> <PartcipatLender action="insert"> <SequenceNmb>1</SequenceNmb> <FirstName>Random</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossInterestPct></GrossInterestPct> <LastName>Banker</LastName> <LendrAmt></LendrAmt> <LendrCityName>CHARLOTTE</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb>A055670</LendrFIRSNmb> <LendrLocId>9551</LendrLocId> <LendrName>Bank of America, National Association...</LendrName> <LendrPhnNmb>6199876543</LendrPhnNmb> <LendrPostalCd>28202</LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>NC</LendrStCd> <LendrStNm>NC</LendrStNm> <LendrStrtName1>100 N Tryon St</LendrStrtName1> <LendrStrtName2>NS test 1585</LendrStrtName2> <LendrTaxId>0941687665</LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd></LendrZip4Cd> <LendrZipCd>28255</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title>BDO</Title> </PartcipatLender> <PartnerInformation action="insert"> <LocationId>188129</LocationId> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <ACHTaxId></ACHTaxId> </PartnerInformation> <Principal action="insert"> <BusinessTaxId>0783654211</BusinessTaxId> <TaxId>1789451236</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt>Jan 01 1950 12:00AM</BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>14</CreditScorSourcCd> <CrmnlOffnsInd>N</CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>UN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>Jun 30 2021 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>850</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Groot</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd>N</IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>Groot</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>100.00</OwnrshpInBusinessPct> <PhysCityName>GUILDERLAND</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NY</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>123 Random Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>12084</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> </Principal> <Principal action="insert"> <BusinessTaxId>0983265988</BusinessTaxId> <TaxId>1789451236</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <AlienRgstrtnNmb></AlienRgstrtnNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BirthCityName></BirthCityName> <BirthCntryName></BirthCntryName> <BirthDt>Jan 01 1950 12:00AM</BirthDt> <BirthStCd></BirthStCd> <BnkrptcyInd>N</BnkrptcyInd> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <ChkngAcctBalanceAmt></ChkngAcctBalanceAmt> <CitznShipCntryName></CitznShipCntryName> <ControlInterestInd>Y</ControlInterestInd> <ControlInterestType>7</ControlInterestType> <ConvictdInd></ConvictdInd> <CreditReport></CreditReport> <CreditScore></CreditScore> <CreditScorSourcCd>14</CreditScorSourcCd> <CrmnlOffnsInd>N</CrmnlOffnsInd> <CSP60DayDelnqInd>N</CSP60DayDelnqInd> <CurrBankName></CurrBankName> <CurrOwnrshpEstblshDt></CurrOwnrshpEstblshDt> <EthnicCd>UN</EthnicCd> <ExporterInd></ExporterInd> <ExtrnlCreditScorDt>Jun 30 2021 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>850</ExtrnlCreditScorNmb> <FedDisqualifiedInd>N</FedDisqualifiedInd> <FedEmplyAffiltInd>N</FedEmplyAffiltInd> <FirstName>Groot</FirstName> <FngrprntWaivDt></FngrprntWaivDt> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd>N</IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd>N</IntrstOthBusinessInd> <LastName>Groot</LastName> <LawsuitInd>N</LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <LglActnInd>N</LglActnInd> <LiquidCreditScore></LiquidCreditScore> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OwnrshpInBusinessPct>100.00</OwnrshpInBusinessPct> <PhysCityName>GUILDERLAND</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NY</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>123 Random Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>12084</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PrimBusExprnceYrNmb></PrimBusExprnceYrNmb> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title></Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1789451236</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>WAIV</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>750000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>15</LoanProceedTypCd> <ProceedAmt>250000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </App> </SBA_ETran>

7a Guaranty -SBX - Ver 7.4

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.4" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10955585</LoanApplicNmb> <LoanNmb>1056397108</LoanNmb> <BillingCityName>SECAUCUS</BillingCityName> <LoanApplicNmb>10955585</LoanApplicNmb> <LoanNmb>1056397108</LoanNmb> <BillingCityName>SECAUCUS</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>NJ</BillingStCd> <BillingStCd>NJ</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>100 GOLDEN AVE</BillingStrtName1> <BillingStrtName1>100 GOLDEN AVE</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>07094</BillingZipCd> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>07094</BillingZipCd> <BorrowerContribAmt>0.00</BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>0</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <CalendarBasisCode>A</CalendarBasisCode> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>5</CurrEmpQty> <EStmtInd>N</EStmtInd> <CurrEmpQty>5</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>4</JobsCreatdQty> <JobsRetaindQty>4</JobsRetaindQty> <JobsRetaindQty>4</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt>2500.00</LimitCompensationAmt> <LimitCompensationInd>Y</LimitCompensationInd> <LimitCompensationAmt>2500.00</LimitCompensationAmt> <LimitCompensationInd>Y</LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>Y</LimitLocation> <LoanBusinessEstDt>2021-01-01 00:00:00.0</LoanBusinessEstDt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>Y</LimitLocation> <LoanBusinessEstDt>2021-01-01 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>JBorrower</LoanName> <LoanName>JBorrower</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>24</LoanTermMnths> <LoanTermMnths>24</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Feb 12 2023 12:00AM</MaturityDt> <MaturityDt>Feb 12 2023 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>24</MnthsIntrstOnlyQty> <NAICSCd>485310</NAICSCd> <MnthsIntrstOnlyQty>24</MnthsIntrstOnlyQty> <NAICSCd>485310</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>SECAUCUS</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 GOLDEN AVE</ProjectStrtName1> <ProjectCityName>SECAUCUS</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 GOLDEN AVE</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>07094</ProjectZipCd> <PymtAmt>500.00</PymtAmt> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>07094</ProjectZipCd> <PymtAmt>500.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd>Y</PymtEscrowInd> <PymtEscrowInd>Y</PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>M</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths>1</PymtPrinAndIntSkipMonths> <PymtPrinAndIntSkipMonths>1</PymtPrinAndIntSkipMonths> <PymtSchedule>010203040506070809101112</PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>10000.00</RequestedAmt> <RequestedAmt>10000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>25.000</SBAGntyPct> <SBAGntyPct>25.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd>Y</StateLawComplianceForBulkInd> <StateLawComplianceForBulkInd>Y</StateLawComplianceForBulkInd> </Loan> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>SECAUCUS</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>AgentFname</LoanAgentFirstName> <LoanAgentID>367</LoanAgentID> <LoanAgentLastName>AgentLname</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>AgentCompanyName</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>NJ</LoanAgentStateCD> <LoanAgentStreet1>100 GOLDEN AVE</LoanAgentStreet1> <LoanAgentStreet2></LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>6</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>3118</LoanAgentZip4CD> <LoanAgentZipCD>07094</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>100.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>SECAUCUS</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>AgentFname</LoanAgentFirstName> <LoanAgentID>367</LoanAgentID> <LoanAgentLastName>AgentLname</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>AgentCompanyName</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>NJ</LoanAgentStateCD> <LoanAgentStreet1>100 GOLDEN AVE</LoanAgentStreet1> <LoanAgentStreet2></LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>6</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>3118</LoanAgentZip4CD> <LoanAgentZipCD>07094</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>100.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Borrower action="update"> <TaxId>0349066375</TaxId> <TaxId>0349066375</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nelli Test2582</BusinessName> <ControlInterestType>2</ControlInterestType> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nelli Test2582</BusinessName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd></EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd></GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd></GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Borrower action="update"> <TaxId>1741569632</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JBorrower</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>F</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Borrower action="update"> <TaxId>1741569632</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JBorrower</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>F</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>9104441711</PrimaryPhone> <PrimaryPhone>9104441711</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <TradeName></TradeName> <VetCd>1</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>7</RaceCd> <TaxId>1741569632</TaxId> <TaxId>1741569632</TaxId> </BorrowerRace> <Comments action="insert"> <CommntTxt>&lt;p&gt;This is additional Lender Comments&amp;nbsp;&lt;/p&gt;</CommntTxt> </Comments> <Comments action="insert"> <CommntTxt>&lt;p&gt;This is additional Lender Comments&amp;nbsp;&lt;/p&gt;</CommntTxt> </Comments> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2021-02-12 17:00:52.0</FundDt> <FundDt>2021-02-12 17:00:52.0</FundDt> <InstallmentFreqCd>M</InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>CHARLOTTE</LendrCtyNm> <LendrNm>Bank of America, National Association...</LendrNm> <LendrStr1Nm>100 N Tryon St</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrNm>Bank of America, National Association...</LendrNm> <LendrStr1Nm>100 N Tryon St</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>28255</LendrZip5Cd> <LendrZip5Cd>28255</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>7100</LoanSrvsLocId> <LoanSrvsLocId>7100</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>24</LoanTermMnths> <MaturityDt>2023-02-12 00:00:00.0</MaturityDt> <LoanTermMnths>24</LoanTermMnths> <MaturityDt>2023-02-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>SBX</ProcessingMethodCd> <PymtAmt>500.00</PymtAmt> <SBAGntyPct>25.000</SBAGntyPct> <SBAInterestPct>0.10000</SBAInterestPct> <PymtAmt>500.00</PymtAmt> <SBAGntyPct>25.000</SBAGntyPct> <SBAInterestPct>0.10000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>LNDR</UnderwritingBy> <UndisbAmt>10000.00</UndisbAmt> <UndisbAmt>10000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>1963857412</TaxId> <TaxId>1963857412</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb>4526</BusDUNSNmb> <BusinessName>JGuarantor</BusinessName> <BusDUNSNmb>4526</BusDUNSNmb> <BusinessName>JGuarantor</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>Y</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>3 Hope it works now, lets test again</InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>Y</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>3 Hope it works now, lets test again</InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>1601</MailZip4Cd> <MailZipCd>07094</MailZipCd> <MailZip4Cd>1601</MailZip4Cd> <MailZipCd>07094</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>SECAUCUS</PhysCityName> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1601</PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PhysZip4Cd>1601</PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>5</VetCd> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>9.25000</BaseIntrstRatePct> <BaseIntrstRatePct>9.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>FBR</BaseRateSourcTypCd> <BorrIntrstRatePct>10.00000</BorrIntrstRatePct> <BorrIntrstRatePct>10.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>24</ShareOfTotalMnths> <ShareOfTotalMnths>24</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JPrincipal</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>95.00</OwnrshpInBusinessPct> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>test@test.com</PrimaryEmail> <PrimaryPhone>1112234339</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>4900101255</TaxId> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JPrincipal</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>95.00</OwnrshpInBusinessPct> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>test@test.com</PrimaryEmail> <PrimaryPhone>1112234339</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName>UP</CitznShipCntryName> <CitznShipCntryName>UP</CitznShipCntryName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName>Roberto</FirstName> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Roberto</FirstName> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Rogersy</LastName> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Rogersy</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial>D</MiddleInitial> <MiddleInitial>D</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>5.00</OwnrshpInBusinessPct> <PhysCityName>SEATTLE</PhysCityName> <OwnrshpInBusinessPct>5.00</OwnrshpInBusinessPct> <PhysCityName>SEATTLE</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>WA</PhysStCd> <PhysStCd>WA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>888 STEWART ST</PhysStrtName1> <PhysStrtName1>888 STEWART ST</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1113</PhysZip4Cd> <PhysZipCd>98101</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>Roberto@RogersyBranch.com</PrimaryEmail> <PrimaryPhone>2599522599</PrimaryPhone> <PhysZip4Cd>1113</PhysZip4Cd> <PhysZipCd>98101</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>Roberto@RogersyBranch.com</PrimaryEmail> <PrimaryPhone>2599522599</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Owner</Title> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Owner</Title> <TradeName></TradeName> <USCitznInd>UA</USCitznInd> <USCitznInd>UA</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> </Principal> <PrincipalRace action="insert"> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>4</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </PrincipalRace> <PrincipalRace action="insert"> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </PrincipalRace> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>DOAL</SpcPurpsLoanCd> <SpcPurpsLoanCd>DOAL</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>10000.00</ProceedAmt> <ProceedOthTypTxt>A01 Comments</ProceedOthTypTxt> <ProceedAmt>10000.00</ProceedAmt> <ProceedOthTypTxt>A01 Comments</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt>Secacus, NJ - 07094</RefDescTxt> <RefDescTxt>Secacus, NJ - 07094</RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

504 - 504 Basic - Ver 7.4

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.4" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10956621</LoanApplicNmb> <LoanNmb>1057617104</LoanNmb> <BillingCityName>Walbridge</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>OH</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>4520 Moline-Martin Road</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd>9786</BillingZip4Cd> <BillingZipCd>43465</BillingZipCd> <BorrowerContribAmt>1230.00</BorrowerContribAmt> <BorrowerContribPct>19.74</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>200.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>45</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>6</JobsCreatdQty> <JobsRetaindQty>35</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt>2018-08-27 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>Nagle Holdings, Ltd.</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>300</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <MailAddrsInvldInd>N</MailAddrsInvldInd> <MaturityDt>Sep 12 2047 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd>484110</NAICSCd> <NetDebentrAmt>2000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt>0.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0</OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProjectCityName>Walbridge</ProjectCityName> <ProjectStCd>OH</ProjectStCd> <ProjectStrtName1>4520 Moline-Martin Road</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>9786</ProjectZip4Cd> <ProjectZipCd>43465</ProjectZipCd> <PymtAmt>15.83</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>3000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0341904717</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb>32165897</ACHAccountNmb> <ACHAccountType>C</ACHAccountType> <ACHBnkNm>Bank of America</ACHBnkNm> <ACHDepositorNm>jgao_test</ACHDepositorNm> <ACHRoutingNmb>051000017</ACHRoutingNmb> <AdverseChgInd>Y</AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb>123654789</BusDUNSNmb> <BusinessName>Nagle Holdings, Ltd.</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>M</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Other Insurance Description TextLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>test_jgao</TradeName> <VetCd>5</VetCd> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>500.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>700.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>3</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>10.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>4</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>20.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>4</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0341904717</TaxId> </BorrowerRace> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode></ApprCode> <ApprOrderedDt>2022-04-22 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>Walbridge</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CountyCode></CountyCode> <DescriptionTxt>4520 Moline-Martin Road, Walbridge, OH 43465-9786</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd>Y</LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>9600000.00</MrktValuAmt> <MrktValuDt>Apr 22 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>6</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>3</OnLeasedPremCd> <OnLeasedPremExtraYrNmb>20</OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Nagle Holdings, Ltd.</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>Y</PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>OH</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>4520 Moline-Martin Road</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>6</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>9786</Zip4Cd> <ZipCd>43465</ZipCd> </Collateral> <Collateral action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-08-08 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>WHITTIER</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>037</CountyCode> <DescriptionTxt>Building in California</DescriptionTxt> <Endorsement>Monumental Life Endorsements</Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>Y</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>2</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1000000.00</MrktValuAmt> <MrktValuDt>Aug 16 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>John Harbaugh</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd>Y</PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd>Y</RentAsgnInd> <RequestForNoticeInd>Y</RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd>Y</SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt>Monumental Life Write Your Own Policy</SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>112 Main Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount>1000000.00</TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException>Y</WithoutStdException> <WithoutStdSurException>Y</WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>2001</Zip4Cd> <ZipCd>90610</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with the State of Ohio per the OH 166 Regional loan.</LienComment> <LienHldrName>Waterford Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>3</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>1000000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with Waterford Bank per the OH 166 Regional loan.</LienComment> <LienHldrName>Ohio Department of Development</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>2</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>Waterford Bank, N.A.</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <EconDevObjective action="insert"> <EconDevObjctCd>B01</EconDevObjctCd> </EconDevObjective> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2022-09-12 10:18:52.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>San Diego</LendrCtyNm> <LendrNm>CDC Small Business Finance Corporation</LendrNm> <LendrStr1Nm>5353 Mission Center</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>92108</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>188309</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>300</LoanTermMnths> <MaturityDt>2047-09-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>504</ProcessingMethodCd> <PymtAmt>15.83</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.01583</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>3000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>0341433811</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Equipment, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341609837</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Toledo, Inc.</BusinessName> <CreditScorSourcCd>4</CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt>May 23 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>96</ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341910547</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Leasing, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832473146</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Logistics Group Company</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832479342</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Ket Testver Corporation</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Nagle Companies</TradeName> <VetCd></VetCd> </Guarantor> <Injection action="insert"> <InjctnAmt>30.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>D</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>45.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>G</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>80.00</InjctnAmt> <InjctnOthDescTxt>Test Paripassu Financing Description</InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>P</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>75.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>S</InjctnTypCd> </Injection> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseRateSourcTypCd>NR3</BaseRateSourcTypCd> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <PartcipatLender action="update"> <SequenceNmb>1</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>2</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>Glenn</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>VanValkenburgh</LastName> <LendrAmt>1000.00</LendrAmt> <LendrCityName>Columbus</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Ohio Department of Development</LendrName> <LendrPhnNmb>6144665102</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>77 South High Street</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>6108</LendrZip4Cd> <LendrZipCd>43215</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>3</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt></LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>735</ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Edwin</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Nagle III</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>enagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member/Manager</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>778</ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Patrick</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Nagle</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Toledo</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>2977 115th Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2839</MailZip4Cd> <MailZipCd>43611</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Toledo</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>2977 115th Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2839</PhysZip4Cd> <PhysZipCd>43611</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>pnagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4194677202</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal_Race action="insert"> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </Principal_Race> <Principal_Race action="insert"> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </Principal_Race> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>CONS</SpcPurpsLoanCd> </SpecialPurpose> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>aaa</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>Y</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>10.00</RepayAmt> <RepayAPR>11.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>1</SequenceNmb> <TermsInYears>1</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>bbb</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>N</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>20.00</RepayAmt> <RepayAPR>21.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>2</SequenceNmb> <TermsInYears>2</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ddd</CreditorName> <InjectionTypeCode>G</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>45.00</RepayAmt> <RepayAPR></RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>3</SequenceNmb> <TermsInYears></TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>fff</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>65.00</RepayAmt> <RepayAPR>61.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>4</SequenceNmb> <TermsInYears>6</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ggg</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>15.00</RepayAmt> <RepayAPR>15.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>5</SequenceNmb> <TermsInYears>15</TermsInYears> </StandbyAgreement> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>3030.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>500.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>10</LoanProceedTypCd> <ProceedAmt>1700.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>978</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1000.00</ProceedAmt> <ProceedDesc>An abandoned warehouse</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>975</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>3000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>979</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>30.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>977</SubProceedId> <LoanProceedTypCd>04</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>500.00</ProceedAmt> <ProceedDesc>API-API-API</ProceedDesc> <SubProceedTypCd>3</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>976</SubProceedId> <LoanProceedTypCd>10</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1700.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>11</SubProceedTypCd> </UseOfProceedsSub> </SBALoan> </SBA_ETran>

7a Guaranty -SBX - Ver 7.5

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.5" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10955585</LoanApplicNmb> <LoanNmb>1056397108</LoanNmb> <BillingCityName>SECAUCUS</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>NJ</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>100 GOLDEN AVE</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>07094</BillingZipCd> <BorrowerContribAmt>0.00</BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>0</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>5</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>4</JobsCreatdQty> <JobsRetaindQty>4</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt>2500.00</LimitCompensationAmt> <LimitCompensationInd>Y</LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>Y</LimitLocation> <LoanBusinessEstDt>2021-01-01 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>JBorrower</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>24</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Feb 12 2023 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>24</MnthsIntrstOnlyQty> <NAICSCd>485310</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>SECAUCUS</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 GOLDEN AVE</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>07094</ProjectZipCd> <PymtAmt>500.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd>Y</PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>M</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths>1</PymtPrinAndIntSkipMonths> <PymtSchedule>010203040506070809101112</PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>10000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>25.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd>Y</StateLawComplianceForBulkInd> </Loan> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>SECAUCUS</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>AgentFname</LoanAgentFirstName> <LoanAgentID>367</LoanAgentID> <LoanAgentLastName>AgentLname</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>AgentCompanyName</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>NJ</LoanAgentStateCD> <LoanAgentStreet1>100 GOLDEN AVE</LoanAgentStreet1> <LoanAgentStreet2></LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>6</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>3118</LoanAgentZip4CD> <LoanAgentZipCD>07094</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>100.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Borrower action="update"> <TaxId>0349066375</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nelli Test2582</BusinessName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd></GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Borrower action="update"> <TaxId>1741569632</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JBorrower</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>F</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>9104441711</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>7</RaceCd> <TaxId>1741569632</TaxId> </BorrowerRace> <BusinessSpecialOwnership action="insert"> <TaxId>1741569632</TaxId> <SpecialOwnershipCd>31</SpecialOwnershipCd> <SpecialOwnershipOtherTxt>Detail text for Special Ownership (Other) (#31)</SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Comments action="insert"> <CommntTxt>&lt;p&gt;This is additional Lender Comments&amp;nbsp;&lt;/p&gt;</CommntTxt> </Comments> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2021-02-12 17:00:52.0</FundDt> <InstallmentFreqCd>M</InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>CHARLOTTE</LendrCtyNm> <LendrNm>Bank of America, National Association...</LendrNm> <LendrStr1Nm>100 N Tryon St</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>28255</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>7100</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>24</LoanTermMnths> <MaturityDt>2023-02-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>SBX</ProcessingMethodCd> <PymtAmt>500.00</PymtAmt> <SBAGntyPct>25.000</SBAGntyPct> <SBAInterestPct>0.10000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>LNDR</UnderwritingBy> <UndisbAmt>10000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>1963857412</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb>4526</BusDUNSNmb> <BusinessName>JGuarantor</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>Y</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>3 Hope it works now, lets test again</InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>1601</MailZip4Cd> <MailZipCd>07094</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1601</PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>5</VetCd> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>9.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>FBR</BaseRateSourcTypCd> <BorrIntrstRatePct>10.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>24</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JPrincipal</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>95.00</OwnrshpInBusinessPct> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>test@test.com</PrimaryEmail> <PrimaryPhone>1112234339</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName>UP</CitznShipCntryName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName>Roberto</FirstName> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent></IndirectOwnershipPercent> <IndirectOwnershipPercent></IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Rogersy</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial>D</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>5.00</OwnrshpInBusinessPct> <PhysCityName>SEATTLE</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>WA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>888 STEWART ST</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1113</PhysZip4Cd> <PhysZipCd>98101</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>Roberto@RogersyBranch.com</PrimaryEmail> <PrimaryPhone>2599522599</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Owner</Title> <TradeName></TradeName> <USCitznInd>UA</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> </Principal> <Principal_Race action="insert"> <Principal_Race action="insert"> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>4</RaceCd> </Principal_Race> <Principal_Race action="insert"> </Principal_Race> <Principal_Race action="insert"> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </Principal_Race> </Principal_Race> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>DOAL</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>10000.00</ProceedAmt> <ProceedOthTypTxt>A01 Comments</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt>Secacus, NJ - 07094</RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

504 - 504 Basic - Ver 7.5

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="7.5" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10956621</LoanApplicNmb> <LoanNmb>1057617104</LoanNmb> <BillingCityName>Walbridge</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>OH</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>4520 Moline-Martin Road</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd>9786</BillingZip4Cd> <BillingZipCd>43465</BillingZipCd> <BorrowerContribAmt>1230.00</BorrowerContribAmt> <BorrowerContribPct>19.74</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>200.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>45</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>6</JobsCreatdQty> <JobsRetaindQty>35</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt>2018-08-27 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>Nagle Holdings, Ltd.</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>300</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <MailAddrsInvldInd>N</MailAddrsInvldInd> <MaturityDt>Sep 12 2047 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd>484110</NAICSCd> <NetDebentrAmt>2000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt>0.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0</OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProjectCityName>Walbridge</ProjectCityName> <ProjectStCd>OH</ProjectStCd> <ProjectStrtName1>4520 Moline-Martin Road</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>9786</ProjectZip4Cd> <ProjectZipCd>43465</ProjectZipCd> <PymtAmt>15.83</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>3000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0341904717</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb>32165897</ACHAccountNmb> <ACHAccountType>C</ACHAccountType> <ACHBnkNm>Bank of America</ACHBnkNm> <ACHDepositorNm>jgao_test</ACHDepositorNm> <ACHRoutingNmb>051000017</ACHRoutingNmb> <AdverseChgInd>Y</AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb>123654789</BusDUNSNmb> <BusinessName>Nagle Holdings, Ltd.</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>M</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Other Insurance Description TextLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>test_jgao</TradeName> <VetCd>5</VetCd> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>500.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>700.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>3</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>10.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>4</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>20.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>4</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0341904717</TaxId> </BorrowerRace> <BusinessSpecialOwnership action="insert"> <TaxId>0341904717</TaxId> <SpecialOwnershipCd>5</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode></ApprCode> <ApprOrderedDt>2022-04-22 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>Walbridge</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CountyCode></CountyCode> <DescriptionTxt>4520 Moline-Martin Road, Walbridge, OH 43465-9786</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd>Y</LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>9600000.00</MrktValuAmt> <MrktValuDt>Apr 22 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>6</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>3</OnLeasedPremCd> <OnLeasedPremExtraYrNmb>20</OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Nagle Holdings, Ltd.</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>Y</PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>OH</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>4520 Moline-Martin Road</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>6</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>9786</Zip4Cd> <ZipCd>43465</ZipCd> </Collateral> <Collateral action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-08-08 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>WHITTIER</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>037</CountyCode> <DescriptionTxt>Building in California</DescriptionTxt> <Endorsement>Monumental Life Endorsements</Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>Y</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>2</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1000000.00</MrktValuAmt> <MrktValuDt>Aug 16 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>John Harbaugh</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd>Y</PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd>Y</RentAsgnInd> <RequestForNoticeInd>Y</RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd>Y</SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt>Monumental Life Write Your Own Policy</SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>112 Main Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount>1000000.00</TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException>Y</WithoutStdException> <WithoutStdSurException>Y</WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>2001</Zip4Cd> <ZipCd>90610</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with the State of Ohio per the OH 166 Regional loan.</LienComment> <LienHldrName>Waterford Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>3</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>1000000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with Waterford Bank per the OH 166 Regional loan.</LienComment> <LienHldrName>Ohio Department of Development</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>2</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>Waterford Bank, N.A.</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <EconDevObjective action="insert"> <EconDevObjctCd>B01</EconDevObjctCd> </EconDevObjective> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2022-09-12 10:18:52.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>San Diego</LendrCtyNm> <LendrNm>CDC Small Business Finance Corporation</LendrNm> <LendrStr1Nm>5353 Mission Center</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>92108</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>188309</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>300</LoanTermMnths> <MaturityDt>2047-09-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>504</ProcessingMethodCd> <PymtAmt>15.83</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.01583</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>3000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>0341433811</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Equipment, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341609837</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Toledo, Inc.</BusinessName> <CreditScorSourcCd>4</CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt>May 23 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>96</ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341910547</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Leasing, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832473146</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Logistics Group Company</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832479342</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Ket Testver Corporation</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Nagle Companies</TradeName> <VetCd></VetCd> </Guarantor> <Injection action="insert"> <InjctnAmt>30.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>D</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>45.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>G</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>80.00</InjctnAmt> <InjctnOthDescTxt>Test Paripassu Financing Description</InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>P</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>75.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>S</InjctnTypCd> </Injection> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseRateSourcTypCd>NR3</BaseRateSourcTypCd> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <PartcipatLender action="update"> <SequenceNmb>1</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>2</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>Glenn</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>VanValkenburgh</LastName> <LendrAmt>1000.00</LendrAmt> <LendrCityName>Columbus</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Ohio Department of Development</LendrName> <LendrPhnNmb>6144665102</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>77 South High Street</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>6108</LendrZip4Cd> <LendrZipCd>43215</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>3</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt></LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>735</ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Edwin</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Nagle III</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>enagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member/Manager</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>778</ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Patrick</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Nagle</LastName> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Toledo</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>2977 115th Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2839</MailZip4Cd> <MailZipCd>43611</MailZipCd> <MiddleInitial>J</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Toledo</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>2977 115th Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2839</PhysZip4Cd> <PhysZipCd>43611</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>pnagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4194677202</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal_Race action="insert"> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </Principal_Race> <Principal_Race action="insert"> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </Principal_Race> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>CONS</SpcPurpsLoanCd> </SpecialPurpose> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>aaa</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>Y</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>10.00</RepayAmt> <RepayAPR>11.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>1</SequenceNmb> <TermsInYears>1</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>bbb</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>N</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>20.00</RepayAmt> <RepayAPR>21.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>2</SequenceNmb> <TermsInYears>2</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ddd</CreditorName> <InjectionTypeCode>G</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>45.00</RepayAmt> <RepayAPR></RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>3</SequenceNmb> <TermsInYears></TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>fff</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>65.00</RepayAmt> <RepayAPR>61.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>4</SequenceNmb> <TermsInYears>6</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ggg</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>15.00</RepayAmt> <RepayAPR>15.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>5</SequenceNmb> <TermsInYears>15</TermsInYears> </StandbyAgreement> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>3030.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>500.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>10</LoanProceedTypCd> <ProceedAmt>1700.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>978</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1000.00</ProceedAmt> <ProceedDesc>An abandoned warehouse</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>975</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>3000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>979</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>30.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>977</SubProceedId> <LoanProceedTypCd>04</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>500.00</ProceedAmt> <ProceedDesc>API-API-API</ProceedDesc> <SubProceedTypCd>3</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>976</SubProceedId> <LoanProceedTypCd>10</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1700.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>11</SubProceedTypCd> </UseOfProceedsSub> </SBALoan> </SBA_ETran>

7a Guaranty -SBX - Ver 8.0

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="8.0" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10955585</LoanApplicNmb> <LoanNmb>1056397108</LoanNmb> <BillingCityName>SECAUCUS</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>NJ</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>100 GOLDEN AVE</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd></BillingZip4Cd> <BillingZipCd>07094</BillingZipCd> <BorrowerContribAmt>0.00</BorrowerContribAmt> <BorrowerContribPct></BorrowerContribPct> <BusinessAgeCd>0</BusinessAgeCd> <CalendarBasisCode>A</CalendarBasisCode> <ClosingCostAmt></ClosingCostAmt> <CollateralInd>N</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>5</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>N</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd></JobRqmtMetInd> <JobsCreatdQty>4</JobsCreatdQty> <JobsRetaindQty>4</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt>2500.00</LimitCompensationAmt> <LimitCompensationInd>Y</LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd>N</LimitFixedAssetInd> <LimitLocation>Y</LimitLocation> <LoanBusinessEstDt>2021-01-01 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>JBorrower</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>24</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd></LoanTermStartTypInd> <MailAddrsInvldInd></MailAddrsInvldInd> <MaturityDt>Feb 12 2023 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>24</MnthsIntrstOnlyQty> <NAICSCd>485310</NAICSCd> <NetDebentrAmt></NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt>0.00</NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt></OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio></OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt></ProcessingFeeAmt> <ProjectCityName>SECAUCUS</ProjectCityName> <ProjectStCd>NJ</ProjectStCd> <ProjectStrtName1>100 GOLDEN AVE</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd></ProjectZip4Cd> <ProjectZipCd>07094</ProjectZipCd> <PymtAmt>500.00</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd>Y</PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency>M</PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths>1</PymtPrinAndIntSkipMonths> <PymtSchedule>010203040506070809101112</PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>10000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>25.000</SBAGntyPct> <SeprateProcessFeeInd></SeprateProcessFeeInd> <StateLawComplianceForBulkInd>Y</StateLawComplianceForBulkInd> </Loan> <Agent action="insert"> <LoanAgentBusPerInd>B</LoanAgentBusPerInd> <LoanAgentCDCTPLFeeAmt></LoanAgentCDCTPLFeeAmt> <LoanAgentCDCTplFeeInd></LoanAgentCDCTplFeeInd> <LoanAgentCity>SECAUCUS</LoanAgentCity> <LoanAgentCntCd></LoanAgentCntCd> <LoanAgentFirstName>AgentFname</LoanAgentFirstName> <LoanAgentID>367</LoanAgentID> <LoanAgentLastName>AgentLname</LoanAgentLastName> <LoanAgentMI></LoanAgentMI> <LoanAgentName>AgentCompanyName</LoanAgentName> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentStateCD>NJ</LoanAgentStateCD> <LoanAgentStreet1>100 GOLDEN AVE</LoanAgentStreet1> <LoanAgentStreet2></LoanAgentStreet2> <LoanAgentSuffix></LoanAgentSuffix> <LoanAgentType>6</LoanAgentType> <LoanAgentTypeOther></LoanAgentTypeOther> <LoanAgentZip4CD>3118</LoanAgentZip4CD> <LoanAgentZipCD>07094</LoanAgentZipCD> </Agent> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt>100.00</LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>1</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>2</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>3</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>4</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <AgentFee action="insert"> <LoanAgentAppCNTPaidAmt></LoanAgentAppCNTPaidAmt> <LoanAgentSbaLenderPaidAmt></LoanAgentSbaLenderPaidAmt> <LoanAgentSeqNmb>1</LoanAgentSeqNmb> <LoanAgentServTypCd>5</LoanAgentServTypCd> <LoanAgntServOtherType></LoanAgntServOtherType> </AgentFee> <Borrower action="update"> <TaxId>0349066375</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nelli Test2582</BusinessName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd></GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>3</LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>N</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Borrower> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Borrower action="update"> <TaxId>1741569632</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHBnkNm></ACHBnkNm> <ACHDepositorNm></ACHDepositorNm> <ACHRoutingNmb></ACHRoutingNmb> <AdverseChgInd></AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType></BooksToLenderType> <BooksToLenderWithinDays></BooksToLenderWithinDays> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JBorrower</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>F</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd></InsurLiabInd> <InsurLiabProductInd></InsurLiabProductInd> <InsurLiquorInd></InsurLiquorInd> <InsurMalpracticeInd></InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd></InsurOtherInd> <InsurWorkersCompInd></InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd></PaymentsLessThanCCInd> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone>9104441711</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> </Borrower> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>7</RaceCd> <TaxId>1741569632</TaxId> </BorrowerRace> <BusinessSpecialOwnership action="insert"> <TaxId>1741569632</TaxId> <SpecialOwnershipCd>31</SpecialOwnershipCd> <SpecialOwnershipOtherTxt>Detail text for Special Ownership (Other) (#31)</SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <BusinessSpecialOwnership action="insert"> <TaxId>1741569632</TaxId> <SpecialOwnershipCd>31</SpecialOwnershipCd> <SpecialOwnershipOtherTxt>Detail text for Special Ownership (Other) (#31)</SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Comments action="insert"> <CommntTxt>&lt;p&gt;This is additional Lender Comments&amp;nbsp;&lt;/p&gt;</CommntTxt> </Comments> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2021-02-12 17:00:52.0</FundDt> <InstallmentFreqCd>M</InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>CHARLOTTE</LendrCtyNm> <LendrNm>Bank of America, National Association...</LendrNm> <LendrStr1Nm>100 N Tryon St</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>28255</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>7100</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>24</LoanTermMnths> <MaturityDt>2023-02-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>SBX</ProcessingMethodCd> <PymtAmt>500.00</PymtAmt> <SBAGntyPct>25.000</SBAGntyPct> <SBAInterestPct>0.10000</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>LNDR</UnderwritingBy> <UndisbAmt>10000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>1963857412</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb>4526</BusDUNSNmb> <BusinessName>JGuarantor</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>Y</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>3 Hope it works now, lets test again</InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>1601</MailZip4Cd> <MailZipCd>07094</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1601</PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrimaryEmail></PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>5</VetCd> </Guarantor> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>9.25000</BaseIntrstRatePct> <BaseRateSourcTypCd>FBR</BaseRateSourcTypCd> <BorrIntrstRatePct>10.00000</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>F</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths>24</ShareOfTotalMnths> <ShareOfTotalPct>100.000</ShareOfTotalPct> </Interest> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>JPrincipal</BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>SECAUCUS</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>NJ</MailStCd> <MailStNm></MailStNm> <MailStrtName1>100 GOLDEN AVE</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd>07094</MailZipCd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>95.00</OwnrshpInBusinessPct> <PhysCityName>SECAUCUS</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>NJ</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>100 GOLDEN AVE</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd></PhysZip4Cd> <PhysZipCd>07094</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>test@test.com</PrimaryEmail> <PrimaryPhone>1112234339</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd>1</VetCd> <VetCertInd></VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>1741569632</BusinessTaxId> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName>UP</CitznShipCntryName> <ControlInterestType>2</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd>HN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FirstName>Roberto</FirstName> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <FedDisqualifiedInd></FedDisqualifiedInd> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent></IndirectOwnershipPercent> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent></IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd></InsuranceDisabInd> <InsuranceLifeInd></InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Rogersy</LastName> <LawsuitInd></LawsuitInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName></MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd></MailStCd> <MailStNm></MailStNm> <MailStrtName1></MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd></MailZip4Cd> <MailZipCd></MailZipCd> <MiddleInitial>D</MiddleInitial> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd></NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>5.00</OwnrshpInBusinessPct> <PhysCityName>SEATTLE</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>WA</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>888 STEWART ST</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>1113</PhysZip4Cd> <PhysZipCd>98101</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>Roberto@RogersyBranch.com</PrimaryEmail> <PrimaryPhone>2599522599</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd>Y</TaxIdCertInd> <Title>Owner</Title> <TradeName></TradeName> <USCitznInd>UA</USCitznInd> <VetCd>6</VetCd> <VetCertInd>Y</VetCertInd> </Principal> <Principal_Race action="insert"> <Principal_Race action="insert"> <TaxId>1456988525</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>4</RaceCd> </Principal_Race> <Principal_Race action="insert"> </Principal_Race> <Principal_Race action="insert"> <TaxId>4900101255</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>7</RaceCd> </Principal_Race> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> </Principal_Race> <BusinessSpecialOwnership action="insert"> <TaxId>0349066375</TaxId> <SpecialOwnershipCd>8</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>DOAL</SpcPurpsLoanCd> </SpecialPurpose> <UseOfProceeds action="insert"> <ProceedTypCd>A</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>10000.00</ProceedAmt> <ProceedOthTypTxt>A01 Comments</ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt>Secacus, NJ - 07094</RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> </SBALoan> </SBA_ETran>

7a Guaranty (7A with WCP only) - Ver 8.1

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="8.1" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10788797</LoanApplicNmb> <LoanNmb>7582435003</LoanNmb> </Loan> <WorkingCapitalProgram action="update"> <DeliveryMethodAsset>Y</DeliveryMethodAsset> <DeliveryMethodTrans>Y</DeliveryMethodTrans> <DomesticAdvPct>22</DomesticAdvPct> <ForeignAdvPct>12</ForeignAdvPct> <InventoryAdvPct>44</InventoryAdvPct> <SBAExpRefiInd>N</SBAExpRefiInd> </WorkingCapitalProgram> </SBALoan> </SBA_ETran>

504 - 504 Basic - Ver 8.1

Go Back

There were no changes to 504 loans for 8.1, they are identical to 8.0 below.

504 - 504 Basic - Ver 8.0

Go Back

<?xml version="1.0" encoding="UTF-8"?> <SBA_ETran version="8.0" reason="manual extract"> <SBALoan> <Loan action="update"> <LoanApplicNmb>10956621</LoanApplicNmb> <LoanNmb>1057617104</LoanNmb> <BillingCityName>Walbridge</BillingCityName> <BillingCountryCd>US</BillingCountryCd> <BillingPostalCd></BillingPostalCd> <BillingStCd>OH</BillingStCd> <BillingStNm></BillingStNm> <BillingStrtName1>4520 Moline-Martin Road</BillingStrtName1> <BillingStrtName2></BillingStrtName2> <BillingZip4Cd>9786</BillingZip4Cd> <BillingZipCd>43465</BillingZipCd> <BorrowerContribAmt>1230.00</BorrowerContribAmt> <BorrowerContribPct>19.74</BorrowerContribPct> <BusinessAgeCd>8</BusinessAgeCd> <ClosingCostAmt>200.00</ClosingCostAmt> <CollateralInd>Y</CollateralInd> <CorrespondingLang>ENG</CorrespondingLang> <CurrEmpQty>45</CurrEmpQty> <EStmtInd>N</EStmtInd> <FrnchiseCd></FrnchiseCd> <FrnchiseDeferPymtInd></FrnchiseDeferPymtInd> <FrnchiseDeferPymtMonths></FrnchiseDeferPymtMonths> <FrnchiseInd>N</FrnchiseInd> <FrnchiseName></FrnchiseName> <FrnchiseOpporCureInd></FrnchiseOpporCureInd> <FrnchiserBooksInd></FrnchiserBooksInd> <FrnchiseWarnTermInd></FrnchiseWarnTermInd> <InjectionInd>Y</InjectionInd> <InterestStructureCd>F</InterestStructureCd> <JobRqmtMetInd>Y</JobRqmtMetInd> <JobsCreatdQty>6</JobsCreatdQty> <JobsRetaindQty>35</JobsRetaindQty> <LenderLoanNmb></LenderLoanNmb> <LimitCompensationAmt></LimitCompensationAmt> <LimitCompensationInd></LimitCompensationInd> <LimitFixedAssetAmt></LimitFixedAssetAmt> <LimitFixedAssetInd></LimitFixedAssetInd> <LimitLocation></LimitLocation> <LoanBusinessEstDt>2018-08-27 00:00:00.0</LoanBusinessEstDt> <LoanExtraordinaryServFeeAmt></LoanExtraordinaryServFeeAmt> <LoanExtraordinaryServFeeInd></LoanExtraordinaryServFeeInd> <LoanName>Nagle Holdings, Ltd.</LoanName> <LoanTermAmortMnths></LoanTermAmortMnths> <LoanTermMnths>300</LoanTermMnths> <LoanTermRevlMnths></LoanTermRevlMnths> <LoanTermStartTypInd>F</LoanTermStartTypInd> <MailAddrsInvldInd>N</MailAddrsInvldInd> <MaturityDt>Sep 12 2047 12:00AM</MaturityDt> <MaturityExtDt></MaturityExtDt> <MnthsIntrstOnlyQty>0</MnthsIntrstOnlyQty> <NAICSCd>484110</NAICSCd> <NetDebentrAmt>2000.00</NetDebentrAmt> <NetEarningsClause></NetEarningsClause> <NetExprtAmt></NetExprtAmt> <NextInstlDt></NextInstlDt> <NoteDt></NoteDt> <OtherClosingCostAmt>0.00</OtherClosingCostAmt> <OutPrgrmAreaOfOperInd>N</OutPrgrmAreaOfOperInd> <OverallPortfolioJobRatio>0</OverallPortfolioJobRatio> <PayrollChngCertifyInd></PayrollChngCertifyInd> <PayrollMnthlyAvgAmt></PayrollMnthlyAvgAmt> <ProcessingFeeAmt>30.00</ProcessingFeeAmt> <ProjectCityName>Walbridge</ProjectCityName> <ProjectStCd>OH</ProjectStCd> <ProjectStrtName1>4520 Moline-Martin Road</ProjectStrtName1> <ProjectStrtName2></ProjectStrtName2> <ProjectZip4Cd>9786</ProjectZip4Cd> <ProjectZipCd>43465</ProjectZipCd> <PymtAmt>15.83</PymtAmt> <PymtCeilingAndFloorCode></PymtCeilingAndFloorCode> <PymtCeilingMaxPct></PymtCeilingMaxPct> <PymtEscrowInd></PymtEscrowInd> <PymtFloorMinPct></PymtFloorMinPct> <PymtFrequency></PymtFrequency> <PymtIntOnlyDayOfMonth></PymtIntOnlyDayOfMonth> <PymtIntOnlyFreqCode></PymtIntOnlyFreqCode> <PymtIntOnlySkipMonths></PymtIntOnlySkipMonths> <PymtIntRateDeductionInd></PymtIntRateDeductionInd> <PymtIntRateProgramOther></PymtIntRateProgramOther> <PymtLateChargeDays></PymtLateChargeDays> <PymtLateChargeInd></PymtLateChargeInd> <PymtLateChargePct></PymtLateChargePct> <PymtNetEarnPrepayAmt></PymtNetEarnPrepayAmt> <PymtNetEarnPrepayPct></PymtNetEarnPrepayPct> <PymtNetEarnRecaptureInd></PymtNetEarnRecaptureInd> <PymtPrinAndIntDayOfMonth></PymtPrinAndIntDayOfMonth> <PymtPrinAndIntSkipMonths></PymtPrinAndIntSkipMonths> <PymtSchedule></PymtSchedule> <PymtTypeCode></PymtTypeCode> <RequestedAmt>3000.00</RequestedAmt> <RuralUrbanInd>U</RuralUrbanInd> <SBAGntyPct>100.000</SBAGntyPct> <SeprateProcessFeeInd>Y</SeprateProcessFeeInd> <StateLawComplianceForBulkInd></StateLawComplianceForBulkInd> </Loan> <Borrower action="update"> <TaxId>0341904717</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb>32165897</ACHAccountNmb> <ACHAccountType>C</ACHAccountType> <ACHBnkNm>Bank of America</ACHBnkNm> <ACHDepositorNm>jgao_test</ACHDepositorNm> <ACHRoutingNmb>051000017</ACHRoutingNmb> <AdverseChgInd>Y</AdverseChgInd> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <ApplicantPaidFee></ApplicantPaidFee> <ApplicantPaidFee></ApplicantPaidFee> <BooksToLenderType>11</BooksToLenderType> <BooksToLenderWithinDays>120</BooksToLenderWithinDays> <BusDUNSNmb>123654789</BusDUNSNmb> <BusinessName>Nagle Holdings, Ltd.</BusinessName> <ControlInterestType>9</ControlInterestType> <CreditScorSourcCd></CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <FedDisqualifiedInd></FedDisqualifiedInd> <GamblingOrSexualNatureInd></GamblingOrSexualNatureInd> <GndrCd>M</GndrCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Other Insurance Description TextLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>4</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NonFedEmpInd></NonFedEmpInd> <NonFmrSBAEmpInd></NonFmrSBAEmpInd> <NonGS13EmpInd></NonGS13EmpInd> <NonLegBrnchEmpInd></NonLegBrnchEmpInd> <NonSBACEmpInd></NonSBACEmpInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PaymentsLessThanCCInd>Y</PaymentsLessThanCCInd> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryBusinessInd>Y</PrimaryBusinessInd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>test_jgao</TradeName> <VetCd>5</VetCd> </Borrower> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>1</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>500.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>1</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>2</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>700.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>2</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>3</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>10.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>3</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerContrib action="insert"> <BorrowerContribtnSeqNmb>4</BorrowerContribtnSeqNmb> <BorrowerContribtnAmount>20.00</BorrowerContribtnAmount> <BorrowerContribtnTypCd>4</BorrowerContribtnTypCd> </BorrowerContrib> <BorrowerRace action="insert"> <BusinessPersonInd>B</BusinessPersonInd> <RaceCd>6</RaceCd> <TaxId>0341904717</TaxId> </BorrowerRace> <BusinessSpecialOwnership action="insert"> <TaxId>0341904717</TaxId> <SpecialOwnershipCd>5</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <BusinessSpecialOwnership action="insert"> <TaxId>0341904717</TaxId> <SpecialOwnershipCd>5</SpecialOwnershipCd> <SpecialOwnershipOtherTxt></SpecialOwnershipOtherTxt> </BusinessSpecialOwnership> <Collateral action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode></ApprCode> <ApprOrderedDt>2022-04-22 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>Walbridge</CityName> <CommRealEnvInvMustBeApprInd>Y</CommRealEnvInvMustBeApprInd> <CountyCode></CountyCode> <DescriptionTxt>4520 Moline-Martin Road, Walbridge, OH 43465-9786</DescriptionTxt> <Endorsement></Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>N</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>Y</InsRealEstHazInd> <InstrumentTypCd></InstrumentTypCd> <LandlordWaiverInd>Y</LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>9600000.00</MrktValuAmt> <MrktValuDt>Apr 22 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>6</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd>3</OnLeasedPremCd> <OnLeasedPremExtraYrNmb>20</OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>Nagle Holdings, Ltd.</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd></PriorOpenEndLienInd> <PropertyAcqWithLoanInd>Y</PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd></RentAsgnInd> <RequestForNoticeInd></RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd></SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt></SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd></SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>12</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>OH</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>4520 Moline-Martin Road</StrtName1> <StrtName2></StrtName2> <SubtypCd>15</SubtypCd> <TitleAmount></TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>6</TypCd> <WaterRightsInd></WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException></WithoutStdException> <WithoutStdSurException></WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>9786</Zip4Cd> <ZipCd>43465</ZipCd> </Collateral> <Collateral action="insert"> <CollateralSequenceNmb>2</CollateralSequenceNmb> <ALTATitleInsuredInd></ALTATitleInsuredInd> <ApprCode>BO</ApprCode> <ApprOrderedDt>2022-08-08 00:00:00.0</ApprOrderedDt> <CDCDeedInEscrowInd></CDCDeedInEscrowInd> <CityName>WHITTIER</CityName> <CommRealEnvInvMustBeApprInd>N</CommRealEnvInvMustBeApprInd> <CountyCode>037</CountyCode> <DescriptionTxt>Building in California</DescriptionTxt> <Endorsement>Monumental Life Endorsements</Endorsement> <FixtureEquipmentAppraisal></FixtureEquipmentAppraisal> <InsFloodInd>Y</InsFloodInd> <InsMarineFullInd>N</InsMarineFullInd> <InsPerPropHazInd>N</InsPerPropHazInd> <InsRealEstHazInd>N</InsRealEstHazInd> <InstrumentTypCd>2</InstrumentTypCd> <LandlordWaiverInd></LandlordWaiverInd> <LessorTermNoticeDaysNmb></LessorTermNoticeDaysNmb> <LienLimitedAmt>1500000.00</LienLimitedAmt> <LienOnLiqLicInd></LienOnLiqLicInd> <LocationTxt></LocationTxt> <MadeYr></MadeYr> <MakeName></MakeName> <MortgTaxesLiens></MortgTaxesLiens> <MrktValuAmt>1000000.00</MrktValuAmt> <MrktValuDt>Aug 16 2022 12:00AM</MrktValuDt> <MrktValuSourcCd>1</MrktValuSourcCd> <NoExceptionMechLiens></NoExceptionMechLiens> <NotContMGLSec21eException></NotContMGLSec21eException> <NoteSecuredInd></NoteSecuredInd> <OnLeasedPremCd></OnLeasedPremCd> <OnLeasedPremExtraYrNmb></OnLeasedPremExtraYrNmb> <OtherPropertyTxt></OtherPropertyTxt> <OwedToSellerAmt></OwedToSellerAmt> <OwnrRecrd>John Harbaugh</OwnrRecrd> <PariPassuAmt></PariPassuAmt> <PariPassuLenderName></PariPassuLenderName> <PriorAsgnInd></PriorAsgnInd> <PriorAsgnLimitAmt></PriorAsgnLimitAmt> <PriorAsgnTxt></PriorAsgnTxt> <PriorLienLimitAmt></PriorLienLimitAmt> <PriorLienTxt></PriorLienTxt> <PriorOpenEndLienInd>Y</PriorOpenEndLienInd> <PropertyAcqWithLoanInd></PropertyAcqWithLoanInd> <PropertyTypTxt></PropertyTypTxt> <PurchaserName></PurchaserName> <RentAsgnInd>Y</RentAsgnInd> <RequestForNoticeInd>Y</RequestForNoticeInd> <SBALienPos>1</SBALienPos> <SecureLienHolderVerifyInd>Y</SecureLienHolderVerifyInd> <SecurityAmt></SecurityAmt> <SecurityDescTxt></SecurityDescTxt> <SecurityDt></SecurityDt> <SecurityOwnrName></SecurityOwnrName> <SecurTitlVrfyOthTxt>Monumental Life Write Your Own Policy</SecurTitlVrfyOthTxt> <SecurTitlVrfyTypCd>01</SecurTitlVrfyTypCd> <SellerIntDescTxt></SellerIntDescTxt> <SellerIntTypInd></SellerIntTypInd> <SellerName></SellerName> <SharedPariPassuInd>Y</SharedPariPassuInd> <SharedPariPassuNonSBAInd>Y</SharedPariPassuNonSBAInd> <StatemntNonHomesteadInd></StatemntNonHomesteadInd> <StatusCd>1</StatusCd> <StatutoryCondPowerInd></StatutoryCondPowerInd> <StCd>CA</StCd> <StockSharesNmb></StockSharesNmb> <StrtName1>112 Main Street</StrtName1> <StrtName2></StrtName2> <SubtypCd>5</SubtypCd> <TitleAmount>1000000.00</TitleAmount> <TitlePriorLienInd></TitlePriorLienInd> <TitleReportOrderedDt></TitleReportOrderedDt> <TitleReportReceivedDt></TitleReportReceivedDt> <TypCd>2</TypCd> <WaterRightsInd>Y</WaterRightsInd> <WithoutExceptionToHomestead></WithoutExceptionToHomestead> <WithoutStdException>Y</WithoutStdException> <WithoutStdSurException>Y</WithoutStdSurException> <WritnAgrmtPriorLienHoldInd></WritnAgrmtPriorLienHoldInd> <WritnWaiverBusHomesteadInd></WritnWaiverBusHomesteadInd> <WritnWaiverHomesteadInd></WritnWaiverHomesteadInd> <WritnWaiverRedemptnRightInd></WritnWaiverRedemptnRightInd> <Zip4Cd>2001</Zip4Cd> <ZipCd>90610</ZipCd> </Collateral> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>1</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with the State of Ohio per the OH 166 Regional loan.</LienComment> <LienHldrName>Waterford Bank</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>3</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>1000000.00</LienBalanceAmt> <LienComment>This is a shared 1st mortgage lien position with Waterford Bank per the OH 166 Regional loan.</LienComment> <LienHldrName>Ohio Department of Development</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <CollateralLiens action="insert"> <CollateralSequenceNmb>1</CollateralSequenceNmb> <LienSequenceNmb>2</LienSequenceNmb> <CollatLienLimitAmount></CollatLienLimitAmount> <CollatLienRevolvingInd></CollatLienRevolvingInd> <LienBalanceAmt>3500000.00</LienBalanceAmt> <LienComment>New lien for project</LienComment> <LienHldrName>Waterford Bank, N.A.</LienHldrName> <LienPosition>1</LienPosition> <LienStatus></LienStatus> </CollateralLiens> <EconDevObjective action="insert"> <EconDevObjctCd>B01</EconDevObjctCd> </EconDevObjective> <FinancialInformation action="view"> <AccruedInterestAmt>0.00</AccruedInterestAmt> <disbAmt></disbAmt> <FirstDisbDt></FirstDisbDt> <FundDt>2022-09-12 10:18:52.0</FundDt> <InstallmentFreqCd></InstallmentFreqCd> <LastPaymentDt></LastPaymentDt> <LendrCtyNm>San Diego</LendrCtyNm> <LendrNm>CDC Small Business Finance Corporation</LendrNm> <LendrStr1Nm>5353 Mission Center</LendrStr1Nm> <LendrStr2Nm></LendrStr2Nm> <LendrZip4Cd></LendrZip4Cd> <LendrZip5Cd>92108</LendrZip5Cd> <LoanNextInstlmntDueDt></LoanNextInstlmntDueDt> <LoanSrvsLocId>188309</LoanSrvsLocId> <LoanStatusCd>1.0</LoanStatusCd> <LoanTermMnths>300</LoanTermMnths> <MaturityDt>2047-09-12 00:00:00.0</MaturityDt> <OutstandingBalanceAmt>0.00</OutstandingBalanceAmt> <OutstandingInterestAmt>0.00</OutstandingInterestAmt> <PrincipalBalanceAmt>0.00</PrincipalBalanceAmt> <ProcessingMethodCd>504</ProcessingMethodCd> <PymtAmt>15.83</PymtAmt> <SBAGntyPct>100.000</SBAGntyPct> <SBAInterestPct>0.01583</SBAInterestPct> <SoldSecMarketInd></SoldSecMarketInd> <TotalPaymentAmt></TotalPaymentAmt> <UnderwritingBy>SBA</UnderwritingBy> <UndisbAmt>3000.00</UndisbAmt> </FinancialInformation> <Guarantor action="update"> <TaxId>0341433811</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Equipment, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341609837</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Toledo, Inc.</BusinessName> <CreditScorSourcCd>4</CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt>May 23 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>96</ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0341910547</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Leasing, Inc.</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832473146</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Nagle Logistics Group Company</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd>N</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd></GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc></InsurOtherDesc> <InsurOtherInd>N</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4196612500</PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName></TradeName> <VetCd></VetCd> </Guarantor> <Guarantor action="update"> <TaxId>0832479342</TaxId> <BusinessPersonInd>B</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName>Ket Testver Corporation</BusinessName> <CreditScorSourcCd></CreditScorSourcCd> <EthnicCd></EthnicCd> <ExtrnlCreditScorDt></ExtrnlCreditScorDt> <ExtrnlCreditScorInd></ExtrnlCreditScorInd> <ExtrnlCreditScorNmb></ExtrnlCreditScorNmb> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <GndrCd>M</GndrCd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsurLiabInd>Y</InsurLiabInd> <InsurLiabProductInd>N</InsurLiabProductInd> <InsurLiquorInd>N</InsurLiquorInd> <InsurMalpracticeInd>N</InsurMalpracticeInd> <InsurOtherDesc>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum neque egestas congue quisque egestas diam in. Lobortis mattis aliquam faucibus purus in massa. Risus quis varius quam quisque id. Integer feugiat scelerisque varius morbi enim. Dolor purus non enim praesent elementum. Eget lorem dolor sed viverra ipsum nunc. At auctor urna nunc id cursus. Et egestas quis ipsum suspendisse ultrices gravida dictum fusce ut. Commodo viverra maecenas accumsan lacus vel facilisis. Sed tempus urna et pharetra pharetra massa massa ultricies mi. Est velit egestas dui id ornare arcu odio ut. Ultricies leo integer malesuada nunc vel risus commodo viverra. Odio aenean sed adipiscing diam donec adipiscing tristique. Nulla at volutpat diam ut venenatis tellus in. Blandit aliquam etiam erat velit scelerisque in.</InsurOtherDesc> <InsurOtherInd>Y</InsurOtherInd> <InsurWorkersCompInd>Y</InsurWorkersCompInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd>10</LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrimaryEmail>tblume@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd>N</PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <TradeName>Nagle Companies</TradeName> <VetCd></VetCd> </Guarantor> <Injection action="insert"> <InjctnAmt>30.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>D</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>45.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>G</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>80.00</InjctnAmt> <InjctnOthDescTxt>Test Paripassu Financing Description</InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>P</InjctnTypCd> </Injection> <Injection action="insert"> <InjctnAmt>75.00</InjctnAmt> <InjctnOthDescTxt></InjctnOthDescTxt> <InjctnTermNotLessThanYrNmb></InjctnTermNotLessThanYrNmb> <InjctnTypCd>S</InjctnTypCd> </Injection> <Interest action="insert"> <Phase>1</Phase> <AdjustPeriodCd></AdjustPeriodCd> <AdjustPeriodMnths></AdjustPeriodMnths> <BaseIntrstRatePct>1.58273</BaseIntrstRatePct> <BaseRateSourcTypCd>NR3</BaseRateSourcTypCd> <BorrIntrstRatePct>1.58273</BorrIntrstRatePct> <FirstRateAdjustDt></FirstRateAdjustDt> <IntrstGuaranteeInd>G</IntrstGuaranteeInd> <IntrstTypInd>F</IntrstTypInd> <ShareOfTotalMnths></ShareOfTotalMnths> <ShareOfTotalPct></ShareOfTotalPct> </Interest> <PartcipatLender action="update"> <SequenceNmb>1</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt>2000.00</LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>2</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>Glenn</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>VanValkenburgh</LastName> <LendrAmt>1000.00</LendrAmt> <LendrCityName>Columbus</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Ohio Department of Development</LendrName> <LendrPhnNmb>6144665102</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>77 South High Street</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>P</LendrTypCd> <LendrZip4Cd>6108</LendrZip4Cd> <LendrZipCd>43215</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <PartcipatLender action="update"> <SequenceNmb>3</SequenceNmb> <ACHAccountName></ACHAccountName> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHAttention></ACHAttention> <ACHRoutingNmb></ACHRoutingNmb> <FirstName>John</FirstName> <GrossBalanceAmt></GrossBalanceAmt> <GrossBalanceInitialAmt></GrossBalanceInitialAmt> <GrossInterestPct></GrossInterestPct> <LastName>Kendzel</LastName> <LendrAmt></LendrAmt> <LendrCityName>Toledo</LendrCityName> <LendrCountryCd>US</LendrCountryCd> <LendrFIRSNmb></LendrFIRSNmb> <LendrLocId></LendrLocId> <LendrName>Waterford Bank, N.A.</LendrName> <LendrPhnNmb>4197203926</LendrPhnNmb> <LendrPostalCd></LendrPostalCd> <LendrServFeePct></LendrServFeePct> <LendrStCd>OH</LendrStCd> <LendrStNm></LendrStNm> <LendrStrtName1>3900 North McCord Road</LendrStrtName1> <LendrStrtName2></LendrStrtName2> <LendrTaxId></LendrTaxId> <LendrTypCd>I</LendrTypCd> <LendrZip4Cd>1049</LendrZip4Cd> <LendrZipCd>43617</LendrZipCd> <LienPosition></LienPosition> <MiddleInitial></MiddleInitial> <NameSuffix></NameSuffix> <Title></Title> </PartcipatLender> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <EthnicCd>UN</EthnicCd> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>735</ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Edwin</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndirectOwnershipPercent>8.2</IndirectOwnershipPercent> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Nagle III</LastName> <LawsuitInd></LawsuitInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Walbridge</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>4520 Moline-Martin Road</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>9786</MailZip4Cd> <MailZipCd>43465</MailZipCd> <MiddleInitial>J</MiddleInitial> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Walbridge</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>4520 Moline-Martin Road</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>9786</PhysZip4Cd> <PhysZipCd>43465</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>enagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone></PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member/Manager</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal action="update"> <BusinessTaxId>0341904717</BusinessTaxId> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <ACHAccountNmb></ACHAccountNmb> <ACHAccountType></ACHAccountType> <ACHRoutingNmb></ACHRoutingNmb> <AlternateEmail></AlternateEmail> <AlternatePhone></AlternatePhone> <BusDUNSNmb></BusDUNSNmb> <BusinessName></BusinessName> <CitznShipCntryName></CitznShipCntryName> <ControlInterestType>4</ControlInterestType> <CreditScorSourcCd>11</CreditScorSourcCd> <EthnicCd>UN</EthnicCd> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExporterEstTotalSales></ExporterEstTotalSales> <ExporterInd></ExporterInd> <ExporterPrincipalCountriesList></ExporterPrincipalCountriesList> <ExtrnlCreditScorDt>May 24 2022 12:00AM</ExtrnlCreditScorDt> <ExtrnlCreditScorInd>Y</ExtrnlCreditScorInd> <ExtrnlCreditScorNmb>778</ExtrnlCreditScorNmb> <FedDisqualifiedInd></FedDisqualifiedInd> <FedDisqualifiedInd></FedDisqualifiedInd> <FirstName>Patrick</FirstName> <GndrCd>M</GndrCd> <GntyInd>Y</GntyInd> <GntyLimitAmt></GntyLimitAmt> <GntyLimitCd></GntyLimitCd> <GntyLimitCollatSeqNmb></GntyLimitCollatSeqNmb> <GntyLimitPct></GntyLimitPct> <GntyLimitYrNmb></GntyLimitYrNmb> <GntyTypCd>1</GntyTypCd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <IndctPrleProbatnInd></IndctPrleProbatnInd> <InsuranceAmt></InsuranceAmt> <InsuranceDisabInd>N</InsuranceDisabInd> <InsuranceLifeInd>N</InsuranceLifeInd> <InsureDisabNames></InsureDisabNames> <InsureName></InsureName> <IntrstOthBusinessInd></IntrstOthBusinessInd> <IntrstOthBusinessInd></IntrstOthBusinessInd> <LastName>Nagle</LastName> <LawsuitInd></LawsuitInd> <LawsuitInd></LawsuitInd> <LegalOrgnztnCd></LegalOrgnztnCd> <MailCityName>Toledo</MailCityName> <MailCountryCd>US</MailCountryCd> <MailPostalCd></MailPostalCd> <MailStCd>OH</MailStCd> <MailStNm></MailStNm> <MailStrtName1>2977 115th Street</MailStrtName1> <MailStrtName2></MailStrtName2> <MailZip4Cd>2839</MailZip4Cd> <MailZipCd>43611</MailZipCd> <MiddleInitial>J</MiddleInitial> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NAICSCd>11211</NAICSCd> <NAICSYear>2022</NAICSYear> <NameSuffix></NameSuffix> <NoNCACompetitorName></NoNCACompetitorName> <NoNCAInd>N</NoNCAInd> <OutlawCode></OutlawCode> <OutlawDesc></OutlawDesc> <OwnrshpInBusinessPct>50.00</OwnrshpInBusinessPct> <PhysCityName>Toledo</PhysCityName> <PhysCountryCd>US</PhysCountryCd> <PhysPostalCd></PhysPostalCd> <PhysStCd>OH</PhysStCd> <PhysStNm></PhysStNm> <PhysStrtName1>2977 115th Street</PhysStrtName1> <PhysStrtName2></PhysStrtName2> <PhysZip4Cd>2839</PhysZip4Cd> <PhysZipCd>43611</PhysZipCd> <PrevGovFinInd></PrevGovFinInd> <PrevGovFinInd></PrevGovFinInd> <PrimaryEmail>pnagle@naglecompanies.com</PrimaryEmail> <PrimaryPhone>4194677202</PrimaryPhone> <PriorSBALoanInd></PriorSBALoanInd> <TaxIdCertInd></TaxIdCertInd> <Title>Member</Title> <TradeName></TradeName> <USCitznInd>US</USCitznInd> <VetCd>5</VetCd> <VetCertInd>N</VetCertInd> </Principal> <Principal_Race action="insert"> <Principal_Race action="insert"> <TaxId>1293727942</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </Principal_Race> <Principal_Race action="insert"> </Principal_Race> <Principal_Race action="insert"> <TaxId>1293729580</TaxId> <BusinessPersonInd>P</BusinessPersonInd> <RaceCd>6</RaceCd> </Principal_Race> </Principal_Race> <SpecialPurpose action="insert"> <SpcPurpsLoanCd>CONS</SpcPurpsLoanCd> </SpecialPurpose> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>aaa</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>Y</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>10.00</RepayAmt> <RepayAPR>11.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>1</SequenceNmb> <TermsInYears>1</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>bbb</CreditorName> <InjectionTypeCode>D</InjectionTypeCode> <LineOfCreditIndicator>N</LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>20.00</RepayAmt> <RepayAPR>21.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>2</SequenceNmb> <TermsInYears>2</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ddd</CreditorName> <InjectionTypeCode>G</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>45.00</RepayAmt> <RepayAPR></RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>3</SequenceNmb> <TermsInYears></TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>fff</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>65.00</RepayAmt> <RepayAPR>61.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>4</SequenceNmb> <TermsInYears>6</TermsInYears> </StandbyAgreement> <StandbyAgreement action="insert"> <BeginDt></BeginDt> <CreditorName>ggg</CreditorName> <InjectionTypeCode>P</InjectionTypeCode> <LineOfCreditIndicator></LineOfCreditIndicator> <PymtAmt></PymtAmt> <RepayAmt>15.00</RepayAmt> <RepayAPR>15.000</RepayAPR> <RepayOtherDesc></RepayOtherDesc> <RepayTypeCd></RepayTypeCd> <SequenceNmb>5</SequenceNmb> <TermsInYears>15</TermsInYears> </StandbyAgreement> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>01</LoanProceedTypCd> <ProceedAmt>1000.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>02</LoanProceedTypCd> <ProceedAmt>3030.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>04</LoanProceedTypCd> <ProceedAmt>500.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceeds action="insert"> <ProceedTypCd>E</ProceedTypCd> <LoanProceedTypCd>10</LoanProceedTypCd> <ProceedAmt>1700.00</ProceedAmt> <ProceedOthTypTxt></ProceedOthTypTxt> <PurchaseAgrmtDt></PurchaseAgrmtDt> <PurchaseAgrmtNCAInd></PurchaseAgrmtNCAInd> <PurchaseIntngblAssetAmt></PurchaseIntngblAssetAmt> <PurchaseIntngblAssetDescTxt></PurchaseIntngblAssetDescTxt> <RefDescTxt></RefDescTxt> <StockholderName></StockholderName> </UseOfProceeds> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>978</SubProceedId> <LoanProceedTypCd>01</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1000.00</ProceedAmt> <ProceedDesc>An abandoned warehouse</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>975</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>3000.00</ProceedAmt> <ProceedDesc>New storage house</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>979</SubProceedId> <LoanProceedTypCd>02</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>30.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>0</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>977</SubProceedId> <LoanProceedTypCd>04</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>500.00</ProceedAmt> <ProceedDesc>API-API-API</ProceedDesc> <SubProceedTypCd>3</SubProceedTypCd> </UseOfProceedsSub> <UseOfProceedsSub action="insert"> <ProceedTypCd>E</ProceedTypCd> <SubProceedId>976</SubProceedId> <LoanProceedTypCd>10</LoanProceedTypCd> <LenderName></LenderName> <ProceedAddr>4520 Moline-Martin Road, Walbridge, OH 43465-9786</ProceedAddr> <ProceedAmt>1700.00</ProceedAmt> <ProceedDesc>Abondoned Avengers Tower</ProceedDesc> <SubProceedTypCd>11</SubProceedTypCd> </UseOfProceedsSub> </SBALoan> </SBA_ETran>