Deal Export [Legacy]
This
Deal Export
API endpoint is deprecated.11/2021 update:
While there are currently no plans to sunset this API endpoint, no new features will be added to this endpoint as of 11/2021. Please use our next-gen APIs at https://readme.vts.com/reference.
Introduction
This is the central repository for information on exporting data for your deal pipeline from VTS (i.e. deal terms and budgets). On this page, you will find a sample of our XML formatting; a list of elements with description; and tutorials to help you get started with an API integration.
To start using the VTS Deal Export API, the API consumer must have an API key and an API secret to authenticate requests. VTS will provide these credentials to authorized API consumers. If you would like to test whether your credentials are valid, please refer to the Authentication section.
Requests
To start the export of deals:
HTTP Request
POST https://sandbox.vts.com/api/deal/v1/deal_api_requests
curl -u <API Key>:<API Secret> -X POST https://api.vts.com/api/deal/v1/deal_api_requests
curl -u <API Key>:<API Secret> -X POST https://sandbox.vts.com/api/deal/v1/deal_api_requests
The above command returns XML structured like this:
<DealExport>
<status>submitted</status>
<jobid>12345</jobid>
</DealExport>
XML Response
Node | Description |
---|---|
status | Status of the deal export that was created: submitted - waiting to be processed processing - currently being processed completed - finished and successful failed - there was an error with the export |
jobid | unique identifier of the deal export, used to check the export’s status |
Request Parameters
The following parameters can be used to request smaller amounts of data
Parameter | Description |
---|---|
date | Returns only deals that were last modified after this date |
deal_id | Returns only the information related to this deal |
deal_stage | Returns only deals that are in this stage |
property_id | Returns only the information related to this property (VTS property ID) |
curl -u <API Key>:<API Secret> -X POST https://api.vts.com/api/deal/v1/deal_api_requests?date=<date>&deal_id=<dealid>&deal_stage=<dealstage>
curl -u <API Key>:<API Secret> -X POST https://sandbox.vts.com/api/deal/v1/deal_api_requests?date=<date>&deal_id=<dealid>&deal_stage=<dealstage>
Remember — Replace , , , , and with actual values.
The required date format is YYYY-MM-DD as per the ISO 8601 date standard.
Deal Export Status
To check on the status of a deal export:
HTTP Request
GET https://sandbox.vts.com/api/deal/v1/deal_api_requests/<jobid>
curl -u <API Key>:<API Secret> https://api.vts.com/api/deal/v1/deal_api_requests/<jobid>
curl -u <API Key>:<API Secret> https://sandbox.vts.com/api/deal/v1/deal_api_requests/<jobid>
Remember — Replace , and with actual values
The above command returns XML structured like this:
<DealExport>
<status>submitted</status>
<jobid>12345</jobid>
</DealExport>
XML Response
Node | Description |
---|---|
status | Status of the deal export that was created: submitted - waiting to be processed processing - currently being processed completed - finished and successful failed - there was an error with the export |
jobid | unique identifier of the deal export, used to check the export’s status and retrieve data |
Completed Deal Exports
You may only view the data of a deal export once the status = completed
To view the data of a completed deal export:
HTTP Request
GET https://sandbox.vts.com/api/deal/v1/deal_api_requests/<jobid>/data
curl -u <API Key>:<API Secret> https://api.vts.com/api/deal/v1/deal_api_requests/<jobid>/data
curl -u <API Key>:<API Secret> https://sandbox.vts.com/api/deal/v1/deal_api_requests/<jobid>/data
Remember — Replace , and with actual values
The above command returns XML structured like this:
<DealExport>
<jobid>12345</jobid>
<Deals>...</Deals>
</DealExport>
XML Response
Node | Description |
---|---|
jobid | unique identifier of the portfolio export, used to check the export’s status and retrieve data |
Deals | XML containing all deal data. Details found under Deal Elements below. |
Status Codes
The VTS API uses the following status and error codes:
Status | Description |
---|---|
200 | Success – The request was successful |
202 | Accepted – The request was accepted and will be processed |
401 | Unauthorized - incorrect credentials |
403 | Forbidden – API Key and/or API Secret is missing or incorrect |
404 | Not Found – The specified resource could not be found |
500 | Internal Server Error – We had a problem with our server. Try again later |
Deal Elements
Node | Type | Description |
---|---|---|
Properties | Array | XML of properties see below |
DealType | Enum | new renewal extension expansion termination modification sublease license agreement storage short term lease other relocation rent review break |
LastModified | DateTime | When the deal was last modified |
CreatedDate | DateTime | When the deal was created |
Stage | Enum | tenants_in_the_market lease_executed dead_deal idle initial_inquiry preview tour proposal loi lease_out legal |
Probablility | Integer | Probability of deal’s success |
CurrentLeaseExpirationDate | Date | When the current lease expires |
CompetitiveSet | Text | Comparable buildings |
MoveInDate | Date | The date that the tenant has specified to be their targeted lease commencement date. |
RequirementType | Text | Space type as required by deal |
TenantCurrentRentableArea | Integer | The given tenant's current rentable area measurement |
Tenant | XML | The deal’s tenant see below |
PreviousLease | XML | The deal’s previous lease comparison see below |
Brokers | Array | The brokers for the deal see below |
TenantContacts | Array | Contacts for the tenant see below |
DealStages | Array | Stages the deal has gone through see below |
DealComments | Array | Comments about the deal see below |
DealTerms | Array | Terms of the deal see below |
Budgets | Array | Budgets related to the deal see below |
Appraisals | Array | Appraisals related to the deal see below |
DealLeads | Array | Deal leads related to the deal see below |
Symbols
Node | Type | Description |
---|---|---|
Type | Enum | SourceID (This is the only value) |
Value | String | The value of the unique identifier |
Properties
Node | Type | Description |
---|---|---|
Name | String | The name of the property |
Address | XML | The property's address see below |
Spaces | Array | The spaces on the property see below |
Symbols | Array | The symbol on the property see above |
OfficeParkID | Integer | The VTS ID for an office park |
OfficeParkName | String | The name of the office park |
CreatedAt | DateTime | The date and time the property was created |
UpdatedAt | DateTime | The date and time the property was updated |
Deal Address
Node | Type | Description |
---|---|---|
City | String | The property's city |
State | String | The property's state |
Street | String | The property's street |
PostalCode | String | The property's postal code |
Country | String | The property's country |
Deal Space
Node | Type | Description |
---|---|---|
Suite | String | The suite associated with the space |
SpaceAvailable | Integer | The rentable area of the space |
FloorName | String | The name of the floor the space is on |
FloorPosition | Integer | The position of the floor on the property |
FloorRentableArea | Integer | The rentable area of the floor |
Symbols | Array | The symbol on the space on the property see above |
CreatedAt | DateTime | The date and time the space was created |
UpdatedAt | DateTime | The date and time the space was updated |
Deal Tenant
Node | Type | Description |
---|---|---|
Name | String | The name of the tenant |
Industry | String | The tenant's industry |
TenantWebsite | String | The tenant's website |
TenantCurrentLocation | String | The tenant's location |
TenantRSFFrom | Integer | The minimum RSF the tenant is looking for |
TenantRSFTo | Integer | The maximum RSF the tenant is looking for |
Affiliation | ||
TenantID | Integer | The VTS ID for the tenant |
Deal Previous Lease
Node | Type | Description |
---|---|---|
SourceID | String | The value of the previous lease's unique identifier |
CompanyName | String | The name of the previous lease's tenant |
LeaseTerm | Array | The details of the previous leaseterm associated to the deal |
Deal Previous Term
Node | Type | Description |
---|---|---|
SourceID | String | The value of the previous leaseterm's unique identifier |
RentableArea | Integer | The rentable area of the previous leaseterm |
ExecutionDate | Date | Execution date of the previous leaseterm |
CommencementDate | Date | Commencement date of the previous leaseterm |
ExpirationDate | Date | Expiration date of the previous leaseterm |
Brokers
Node | Type | Description |
---|---|---|
FirstName | String | The broker's first name |
LastName | String | The broker's last name |
String | The broker's email address | |
Phone | String | The broker's phone number |
PhoneExtension | String | The broker's extension |
Title | String | The broker's title |
BrokerLicenseNumber | String | The broker's license number |
UserID | Integer | The VTS ID of the broker |
CompanyName | String | The name of the company associated to the broker |
Tenant Contacts
Node | Type | Description |
---|---|---|
FirstName | String | The contact's first name |
LastName | String | The contact's last name |
String | The contact's email address | |
Phone | String | The contact's phone number |
PhoneExtension | String | The contact's extension |
Title | String | The contact's title |
CompanyName | String | The contact's company |
Deal Stages
Node | Type | Description |
---|---|---|
Stage | Enum | tenants_in_the_market lease_executed dead_deal idle initial_inquiry preview tour proposal loi lease_out |
CreatedDate | DateTime | When the deal stage was created |
LastModified | DateTime | When the deal stage was last modified |
StartDate | DateTime | When the deal stage began |
EndDate | DateTime | When the deal stage ended |
DurationInDays | Integer | How long the deal stage lasted in days |
User | XML | The user associated with the deal stage see below |
DeadDealReasons | String | Reasons the deal was moved to the dead deal stage |
Deal User
Node | Type | Description |
---|---|---|
FirstName | String | The user's first name |
LastName | String | The user's last name |
String | The user's email address | |
Phone | String | The user's phone number |
PhoneExtension | String | The user's extension |
Title | String | The user's title |
BrokerLicenseNumber | String | The user's broker license number |
UserID | Integer | The VTS ID of the user |
Deal Comments
Node | Type | Description |
---|---|---|
Comment | String | The content of the comment |
User | XML | The user asociated with that comment see above |
CreatedAt | DateTime | The date the deal comment was created |
UpdatedAt | DateTime | The date the deal comment was updated |
Deal Terms
Node | Type | Description |
---|---|---|
DealTermType | String | The type this deal term is |
ProposalType | String | The type of proposal the term is |
DiscountRate | Decimal | The rate at which the term is discounted |
RentableArea | Integer | The rentable area on the deal term |
LeaseType | Enum | triple net full service modified gross |
LeaseTerm | String | The term of the lease |
CommencementDate | Date | When the deal term begins |
TenantImprovements | Array | List of tenant improvements associated with the deal term see below |
BuildingImprovements | Array | List of building improvements associated with the deal term see below |
LeaseIncentives | Array | List of lease incentives associated with the deal term see below |
FreeRents | Array | List of free rents in the term see below |
CreatedDate | DateTime | When the deal term was created |
SecurityDeposit | Decimal | The value of the security deposit |
NER | Decimal | Net Effective Rent for the deal term |
NEROverride | Decimal | Override for the default NER calculation |
GAAP Rent | Decimal | GAAP Rent for the deal term |
DateEntered | DateTime | When the deal term was entered |
ExecutionDate | DateTime | When the deal term was executed |
Retail | Array | Retail estimates for given tenant |
OpEx | XML | Operating expenses asscoiated with the deal term see below |
RealEstateTaxes | XML | Taxes associated with the deal term see below |
NPVperSqFt | Decimal | Net Present Value per square foot |
TotalNPV | Decimal | Total net present value |
MiscDescription | String | Description of the deal term |
NetCashFlow | Decimal | Total net cash flow of the deal |
TotalIncome | Decimal | Total income of the deal |
TotalFreeRent | Decimal | Total free rent on the deal |
Concessions | Decimal | Total concessions on the deal |
Payback | Integer | Month number for the breakeven point |
IRR | Decimal | Internal Rate of Return |
Latest | String | 'True' if Deal Term applies to latest proposal, 'False' otherwise |
BaseRents | Array | List of base rents see below |
RentEscalations | Array | List of rent escalations see below |
OtherCredits | Array | List of other credits see below. Corresponds to "Other Fees" on the front end. |
Commissions | Array | List of commissions see below |
Rights | Array | List of rights see below |
TenantRisk | Array | List of tenant risk items in the term |
RentSchedule | Array | Full rent schedule calculated across all charges & fees |
ProposalID | Integer | ID of the proposal associated the a given deal |
ProposalEnteredDate | DateTime | When the proposal was entered |
RecoveryIncomes | Array | List of reimbursable expenses see below |
Spaces | Array | Details of the space associated to the deal |
LeaseInformationAttributes | Array | List of Leases associated with Deal Term see below |
Tenant Improvements
Node | Type | Description |
---|---|---|
Allowance | Decimal | The value of the allowance |
AllowanceUnit | String | The unit of the allowance |
OccurrenceMonth | Integer | The number of months into the lease that the improvement occurs |
Description | String | A description of the improvement |
Building Improvements
Node | Type | Description |
---|---|---|
Allowance | Decimal | The value of the allowance |
AllowanceUnit | String | The unit of the allowance |
OccurrenceMonth | Integer | The number of months into the lease that the improvement occurs |
Description | String | A description of the improvement |
Lease Incentives
Node | Type | Description |
---|---|---|
OccurrenceMonth | Integer | The number of months into the lease that the improvement occurs |
Amount | Integer | The value of the incentive |
Unit | String | The unit of the incentive |
Description | String | A description of the incentive |
Free Rents
Node | Type | Description |
---|---|---|
BeginIn | Integer | Number of months in the lease in which to begin the free rent period |
Duration | Integer | The duration of the free rent period |
Percentage | Decimal | |
Type | Enum | net gross |
OpEx (This field is deprecated and values will be returned under Recovery Income)
Node | Type | Description |
---|---|---|
BaseOpEx | Decimal | The base operating expenses |
YearType | String | The type of year the operating expenses apply to |
LeaseType | Enum | direct sublease renewal - default |
Description | String | Description of operating expenses |
Real Estate Taxes (This field is deprecated and values will be returned under Recovery Income)
Node | Type | Description |
---|---|---|
BaseRealEstateTaxes | Decimal | The base real estate taxes |
BaseYear | Integer | The base year for the real estate taxes |
YearType | String | The type of year the real estate taxes apply to |
LeaseType | Enum | direct sublease renewal - default |
Description | String | Description of real estate taxes |
Base Rents
Node | Type | Description |
---|---|---|
BeginIn | Integer | When the rent begins |
Rent | Decimal | Rent for the space |
Period | String | The period of the rent |
Duration | Integer | The number of months the rent lasts |
Rent Escalations
Node | Type | Description |
---|---|---|
BeginIn | Integer | Number of months in to begin rent escalations |
Escalation | Decimal | Value of the escalation |
RecurrenceInterval | Integer | How often escalations occur |
EscalationType | String | Type of rent escalation |
Other Credits
Corresponds to "Other Fees" on the front end.
Node | Type | Description |
---|---|---|
Name | String | The name of the credit |
Occurs | Integer | How often the credit occurs |
Amount | Decimal | The value of the credit |
Unit | String | The unit of the credit |
Commissions
Node | Type | Description |
---|---|---|
RepType | String | The type of representative |
Firm | String | The firm associated with the representative |
Amount | Decimal | The relative commission amount used in conjunction with Unit node |
Unit | String | The unit type of the commission value |
TotalAmount | Decimal | The total calculated commission amount |
Rights
Node | Type | Description |
---|---|---|
Name | Enum | audit rights break cap on rates contraction co-tenancy exclusive use expansion generator rights go dark kick out landlord & tenant act 1954 make good must lease other parking purchase radius relocation renewal rent review rights to terminate rofn rofo rofr signage special provisions storage sublease use |
Description | String | Describes the right |
NoticeStartDate | DateTime | Start date of the notice of the right |
NoticeDate | DateTime | End date of the notice of the right |
EffectiveDate | DateTime | When the right begins |
RoleType | Enum | tenant landlord |
Fee | Decimal | The termination fee associated with the right |
Term | Integer | The term of the right |
NumberOfOptions | Integer | The number of options the right has |
RateType | Enum | percentage_of_rate year |
RateNote | String | The note associated with the rate |
MinSqFt | Decimal | The minimum square feet associated with the right |
MaxSqFt | Decimal | The maximum square feet associated with the right |
TriggerDetails | String | Describes condition that triggers a right type |
RemedyDetails | String | Describes remedy for a right type |
TenantImprovements | Array | List of tenant improvements see above |
TenantRisk | Array | Security Type for tenant see below |
Target | XML | Rights target see below |
Targets
Target Property
Node | Type | Description |
---|---|---|
PropertyName | String | Name of the target property |
Address | XML | see above |
Target Floor
Node | Type | Description |
---|---|---|
FloorName | String | Targeted floor name |
Target Space
Node | Type | Description |
---|---|---|
Suite | String | Targeted suite name |
Target Industry
Node | Type | Description |
---|---|---|
IndustryName | String | Targeted industry |
Target Lease
Node | Type | Description |
---|---|---|
TenantName | String | Tenant name of the targeted lease |
Tenant Risk
Node | Type | Description |
---|---|---|
SecurityType | Enum | security deposit letter of credit guarantee |
Amount | Decimal | 10000.50 |
Description | String | Describes tenant risk attributes |
Rent Schedule
Node | Type | Description |
---|---|---|
Rent | XML | Individual rent step of a deal term's calculated schedule |
Rent
Node | Type | Description |
---|---|---|
StartMonth | Integer | Month that rent step goes into effect, relative to lease commencement date |
EndMonth | Integer | Final month that rent step is in effect, relative to lease commencement date |
AnnualRentPerArea | Decimal | Calculated rent amount for period, annualized per area |
Budgets
Node | Type | Description |
---|---|---|
ProposalType | String | The type of proposal the term is |
DiscountRate | Decimal | The rate at which the term is discounted |
RentableArea | Integer | Area of the space budgeted for lease |
LeaseType | Enum | direct sublease renewal - default |
LeaseTerm | String | The term of the lease |
CommencementDate | Date | When the deal term begins |
TenantImprovements | Array | List of tenant improvements see above |
BuildingImprovements | Array | List of building improvements see above |
FreeRents | Array | List of free rents associated with the space see above |
CreatedDate | DateTime | When the deal term was created |
SecurityDeposit | Decimal | The value of the security deposit |
NER | Decimal | Net Effective Rent for the deal term |
NEROverride | Decimal | Override for the default NER calculation |
DateEntered | DateTime | When the deal term was entered |
OpEx | XML | Operating expenses asscoiated with the deal term see above |
RealEstateTaxes | XML | Taxes associated with the deal term see above |
NPVperSqFt | Decimal | Net Present Value per square foot |
TotalNPV | Decimal | Total net present value |
MiscDescription | String | Description of the deal term |
NetCashFlow | Decimal | Total net cash flow of the deal |
TotalIncome | Decimal | Total income of the deal |
Concessions | Decimal | Total concessions on the deal |
Payback | Integer | Month number for the breakeven point |
IRR | Decimal | Internal Rate of Return |
BaseRents | Array | List of base rents see above |
RentEscalations | Array | List of rent escalations see above |
OtherCredits | Array | List of other credits see above |
Commissions | Array | List of commissions see above |
Rights | Array | List of rights see above |
SpaceID | Integer | ID of the space associated with the budget |
Appraisals
Node | Type | Description |
---|---|---|
ProposalType | String | The type of proposal the term is |
DiscountRate | Decimal | The rate at which the term is discounted |
RentableArea | Integer | Area of the space appraised for lease |
LeaseType | Enum | direct sublease renewal - default |
LeaseTerm | String | The term of the lease |
CommencementDate | Date | When the deal term begins |
TenantImprovements | Array | List of tenant improvements see above |
BuildingImprovements | Array | List of building improvements see above |
FreeRents | Array | List of free rents associated with the space see above |
CreatedDate | DateTime | When the deal term was created |
SecurityDeposit | Decimal | The value of the security deposit |
NER | Decimal | Net Effective Rent for the deal term |
NEROverride | Decimal | Override for the default NER calculation |
DateEntered | DateTime | When the deal term was entered |
OpEx | XML | Operating expenses asscoiated with the deal term see above |
RealEstateTaxes | XML | Taxes associated with the deal term see above |
NPVperSqFt | Decimal | Net Present Value per square foot |
TotalNPV | Decimal | Total net present value |
MiscDescription | String | Description of the deal term |
NetCashFlow | Decimal | Total net cash flow of the deal |
TotalIncome | Decimal | Total income of the deal |
Concessions | Decimal | Total concessions on the deal |
Payback | Integer | Month number for the breakeven point |
IRR | Decimal | Internal Rate of Return |
BaseRents | Array | List of base rents see above |
RentEscalations | Array | List of rent escalations see above |
OtherCredits | Array | List of other credits see above |
Commissions | Array | List of commissions see above |
Rights | Array | List of rights see above |
SpaceID | Integer | ID of the space associated with the appraisal |
Tours
Node | Type | Description |
---|---|---|
TourDate | Date | The date of the tour |
Comment | String | The comment ented by a broker in relation to the tour |
User | XML | The user associated with the deal stage see above |
Spaces | Array | List of spaces |
CreatedAt | DateTime | When the tour was created |
UpdatedAt | DateTime | When the tour was last updated |
Recovery Incomes
Node | Type | Description |
---|---|---|
RecoveryType | String | |
ExpenseAmount | Decimal | |
RecoveryMethod | Enum | gross net amount modified_gross |
RecoveryAmount | Decimal | |
Description | String |
Lease Information Attributes
Node | Type | Description |
---|---|---|
Name | Enum | guarantor tenant notice info lease drafter certificate of insurance other |
Description | String |
Deal Leads
Node | Type | Description |
---|---|---|
FirstName | String | The lead's first name |
LastName | String | The lead's last name |
Sample Response
<?xml version="1.0" encoding="UTF-8"?>
<DealExport>
<jobid>b5e3e66a2394a7c6</jobid>
<Deals>
<Deal DealID="2260397">
<Properties>
<Property ID="146675">
<Name>225 President Street TEST</Name>
<CreatedAt>2013-08-08T18:38:29Z</CreatedAt>
<UpdatedAt>2019-11-11T21:41:41Z</UpdatedAt>
<Address>
<City>Boston</City>
<State>MA</State>
<Street>225 President Street-2</Street>
<PostalCode>02110</PostalCode>
<Country>United States</Country>
</Address>
<Spaces>
<Space ID="1734064">
<Suite>1810</Suite>
<SpaceAvailable>9647</SpaceAvailable>
<FloorName>18</FloorName>
<FloorPosition>22</FloorPosition>
<FloorRentableArea>25240</FloorRentableArea>
<CreatedAt>2018-06-18T18:05:43Z</CreatedAt>
<UpdatedAt>2019-10-24T08:37:35Z</UpdatedAt>
</Space>
<Space ID="1734057">
<Suite>1735</Suite>
<SpaceAvailable>1555</SpaceAvailable>
<FloorName>17</FloorName>
<FloorPosition>21</FloorPosition>
<FloorRentableArea>22325</FloorRentableArea>
<CreatedAt>2013-09-09T17:39:26Z</CreatedAt>
<UpdatedAt>2019-10-24T08:37:34Z</UpdatedAt>
</Space>
</Spaces>
</Property>
</Properties>
<DealType>new</DealType>
<LastModified>2019-12-17T02:29:25Z</LastModified>
<CreatedDate>2019-12-17T00:14:15Z</CreatedDate>
<Stage>proposal</Stage>
<Probability>20</Probability>
<CurrentLeaseExpirationDate>2020-01-01</CurrentLeaseExpirationDate>
<CompetitiveSet>Competitive Set</CompetitiveSet>
<MoveInDate>2020-02-01</MoveInDate>
<RequirementType>Office</RequirementType>
<TenantCurrentRentableArea>7000</TenantCurrentRentableArea>
<Tenant>
<Name>TEST DEAL ALL FIELDS</Name>
<Industry>advertising</Industry>
<Affiliation/>
<TenantID>2899210</TenantID>
<TenantWebsite/>
<TenantCurrentLocation>310 East 11th</TenantCurrentLocation>
<TenantRSFFrom>15000</TenantRSFFrom>
<TenantRSFTo>20000</TenantRSFTo>
</Tenant>
<PreviousLease ID="3232340">
<SourceID>t0001234</SourceID>
<CompanyName>Amazon, Inc.</CompanyName>
<LeaseTerm ID="4561230">
<SourceID>t0001234~2</SourceID>
<RentableArea>12345</RentableArea>
<ExecutionDate/>
<CommencementDate>2020-02-01</CommencementDate>
<ExpirationDate>2020-02-01</ExpirationDate>
</LeaseTerm>
</PreviousLease>
<Brokers>
<Broker ID="1545130">
<FirstName>Ryan</FirstName>
<LastName>Masiello</LastName>
<Email>[email protected]</Email>
<Phone/>
<PhoneExtension/>
<Title/>
<CompanyName>Jones Lang LaSalle</CompanyName>
<BrokerLicenseNumber/>
<UserId>8739</UserId>
</Broker>
</Brokers>
<TenantContacts/>
<DealStages>
<DealStage ID="4781796">
<Stage>initial_inquiry</Stage>
<CreatedDate>2019-12-17T00:14:16Z</CreatedDate>
<LastModified>2019-12-17T00:11:02Z</LastModified>
<StartDate>2019-12-17T00:11:02Z</StartDate>
<EndDate>2019-12-17</EndDate>
<DurationInDays>0</DurationInDays>
<DeadDealReasons/>
<User>
<UserId>8739</UserId>
<FirstName>Michael</FirstName>
<LastName>mills</LastName>
<Email>[email protected]</Email>
<Phone>5136003026</Phone>
<PhoneExtension/>
<Title>Implementation Manager</Title>
<BrokerLicenseNumber/>
</User>
</DealStage>
<DealStage ID="4781836">
<Stage>proposal</Stage>
<CreatedDate>2019-12-17T00:24:37Z</CreatedDate>
<LastModified>2019-12-17T02:29:25Z</LastModified>
<StartDate>2019-12-17T00:24:37Z</StartDate>
<DurationInDays>0</DurationInDays>
<DeadDealReasons/>
<User>
<UserId>8739</UserId>
<FirstName>Michael</FirstName>
<LastName>mills</LastName>
<Email>[email protected]</Email>
<Phone>5136003026</Phone>
<PhoneExtension/>
<Title>Implementation Manager</Title>
<BrokerLicenseNumber/>
</User>
</DealStage>
</DealStages>
<DealComments>
<DealComment ID="7000073">
<Comment>Comment</Comment>
<CreatedAt>2019-12-17T00:14:16Z</CreatedAt>
<UpdatedAt>2019-12-17T00:14:16Z</UpdatedAt>
<User>
<UserId>8739</UserId>
<FirstName>Michael</FirstName>
<LastName>mills</LastName>
<Email>[email protected]</Email>
<Phone>5136003026</Phone>
<PhoneExtension/>
<Title>Implementation Manager</Title>
<BrokerLicenseNumber/>
</User>
</DealComment>
<DealComment ID="7000510">
<Comment>TESTING</Comment>
<CreatedAt>2019-12-17T02:29:25Z</CreatedAt>
<UpdatedAt>2019-12-17T02:29:25Z</UpdatedAt>
<User>
<UserId>12879</UserId>
<FirstName>VTS Admin</FirstName>
<LastName/>
<Email>[email protected]</Email>
<Phone/>
<PhoneExtension/>
<Title/>
<BrokerLicenseNumber/>
</User>
</DealComment>
<DealComment ID="7000172">
<Comment>Toured Spaces @Anna Michellenova</Comment>
<CreatedAt>2019-12-17T00:26:09Z</CreatedAt>
<UpdatedAt>2019-12-17T00:26:09Z</UpdatedAt>
<User>
<UserId>8739</UserId>
<FirstName>Michael</FirstName>
<LastName>mills</LastName>
<Email>[email protected]</Email>
<Phone>5136003026</Phone>
<PhoneExtension/>
<Title>Implementation Manager</Title>
<BrokerLicenseNumber/>
</User>
</DealComment>
<DealComment ID="7000165">
<Comment>Deal Comment</Comment>
<CreatedAt>2019-12-17T00:25:31Z</CreatedAt>
<UpdatedAt>2019-12-17T00:25:31Z</UpdatedAt>
<User>
<UserId>8739</UserId>
<FirstName>Michael</FirstName>
<LastName>mills</LastName>
<Email>[email protected]</Email>
<Phone>5136003026</Phone>
<PhoneExtension/>
<Title>Implementation Manager</Title>
<BrokerLicenseNumber/>
</User>
</DealComment>
</DealComments>
<DealTerms>
<DealTerm ID="6215933">
<DealTermType>expansion</DealTermType>
<ProposalType>tenant</ProposalType>
<DiscountRate>10.0</DiscountRate>
<RentableArea>11202</RentableArea>
<LeaseType>full service</LeaseType>
<LeaseTerm>120</LeaseTerm>
<CommencementDate>2020-02-01</CommencementDate>
<TenantImprovements>
<TenantImprovement ID="718085">
<Allowance>10.0</Allowance>
<AllowanceUnit>rsf</AllowanceUnit>
<OccurrenceMonth>1</OccurrenceMonth>
<Description>DESCRIPTION</Description>
</TenantImprovement>
</TenantImprovements
<BuildingImprovements>
<BuildingImprovement ID="718086">
<Allowance>12.0</Allowance>
<AllowanceUnit>rsf</AllowanceUnit>
<OccurrenceMonth>1</OccurrenceMonth>
<Description>DESCRIPTION</Description>
</BuildingImprovement>
</BuildingImprovements>
<LeaseIncentives>
<LeaseIncentive ID="957623">
<OccurrenceMonth>1</OccurrenceMonth>
<Amount>30.0</Amount>
<Unit>$/sf</Unit>
<Description>DESCRIPTION</Description>
</LeaseIncentive>
</LeaseIncentives>
<FreeRents>
<FreeRent ID="85736351">
<BeginIn>1</BeginIn>
<Duration>3</Duration>
<Percentage>100.0</Percentage>
<Type>gross</Type>
</FreeRent>
</FreeRents>
<CreatedDate>2019-12-17T02:36:59Z</CreatedDate>
<SecurityDeposit>50000.0</SecurityDeposit>
<NER>31.9464270024093</NER>
<NEROverride/>
<DateEntered>2019-12-16</DateEntered>
<ExecutionDate>2020-02-01</ExecutionDate>
<OpEx ID="924766153">
<BaseOpEx>5.0</BaseOpEx>
<YearType/>
<LeaseType/>
<Description>DESCRIPTION</Description>
</OpEx>
<RealEstateTaxes ID="924766152">
<BaseRealEstateTaxes>7.0</BaseRealEstateTaxes>
<YearType/>
<LeaseType/>
<Description>DESCRIPTION</Description>
</RealEstateTaxes>
<NPVperSqFt>203.130707576321</NPVperSqFt>
<TotalNPV>2275470.18626995</TotalNPV>
<MiscDescription>Proposal Notes</MiscDescription>
<NetCashFlow>4022133.22795209</NetCashFlow>
<TotalIncome>5379931.4936246442</TotalIncome>
<TotalFreeRent>3333.333333333</TotalFreeRent>
<Concessions>651341.709872493</Concessions>
<Payback>18</Payback>
<IRR>73.42</IRR>
<Latest>true</Latest>
<BaseRents>
<BaseRent ID="945692078">
<BeginIn>1</BeginIn>
<Rent>47.0</Rent>
<Period>rsf/year</Period>
<Duration>60</Duration>
</BaseRent>
</BaseRents>
<RentEscalations>
<RentEscalation ID="646578">
<BeginIn>61</BeginIn>
<Escalation>3.0</Escalation>
<RecurrenceInterval>12</RecurrenceInterval>
<EscalationType>percentage</EscalationType>
</RentEscalation>
</RentEscalations>
<OtherCredits>
<OtherCredit ID="53998">
<Name>DESCRIPTION</Name>
<Occurs>1</Occurs>
<Amount>5.0</Amount>
<Unit>rsf</Unit>
</OtherCredit>
</OtherCredits>
<Commissions>
<Commission ID="876935">
<RepType>landlord</RepType>
<Firm>crane Commission</Firm>
<Amount>2.0</Amount>
<Unit>%</Unit>
<Date>2020-02-01</Date>
</Commission>
</Commissions>
<Rights>
<Right ID="214685020">
<Name>co-tenancy</Name>
<Description>DESCRIPTION</Description>
<Targets>
<Target>
<Lease ID="9801611">
<TenantName>AVCAR</TenantName>
</Lease>
</Target>
</Targets>
<RoleType>tenant</RoleType>
</Right>
<Right ID="214685021">
<Name>signage</Name>
<Description>DESCRIPTION</Description>
<Targets/>
</Right>
<Right ID="214685022">
<Name>rofo</Name>
<Description>DESCRIPTION</Description>
<Targets>
<Target>
<Property ID="146675">
<PropertyName>225 President Street TEST</PropertyName>
<Address>
<City>Boston</City>
<State>MA</State>
<Street>225 President Street-2</Street>
<PostalCode>02110</PostalCode>
<Country>United States</Country>
</Address>
</Property>
<Floor ID="3113363">
<FloorName>1</FloorName>
</Floor>
</Target>
</Targets>
<NoticeStartDate>2021-07-01</NoticeStartDate>
<NoticeDate>2021-08-01</NoticeDate>
<NoticeEndDate>2021-08-01</NoticeEndDate>
<EffectiveDate>2020-09-01</EffectiveDate>
<RateType>variable</RateType>
<RateNote>3% FMV</RateNote>
<MinSqFt>10000</MinSqFt>
</Right>
<Right ID="214685023">
<Name>sublease</Name>
<Description>DESCRIPTION</Description>
<Targets/>
</Right>
<Right ID="214685024">
<Name>rofr</Name>
<Description>DESCRIPTION</Description>
<Targets/>
<NoticeStartDate>2021-02-01</NoticeStartDate>
<NoticeDate>2022-03-03</NoticeDate>
<NoticeEndDate>2022-03-03</NoticeEndDate>
<EffectiveDate>2022-03-03</EffectiveDate>
<RateType>fixed</RateType>
<RateNote>40.00</RateNote>
<MinSqFt>10000</MinSqFt>
</Right>
<Right ID="214685025">
<Name>renewal</Name>
<Description>DESCRIPTION</Description>
<Targets/>
<NoticeStartDate>2020-03-01</NoticeStartDate>
<NoticeDate>2020-03-31</NoticeDate>
<NoticeEndDate>2020-03-31</NoticeEndDate>
<EffectiveDate>2020-04-01</EffectiveDate>
<Term>300</Term>
<NumberOfOptions>1</NumberOfOptions>
<RateType>variable</RateType>
<RateNote>100</RateNote>
</Right>
</Rights>
<TenantRisk>
<SecurityType>security_deposit</SecurityType>
<Amount>50000.0</Amount>
<Description>DESCRIPTION</Description>
</TenantRisk>
<ProposalID>606321</ProposalID>
<ProposalEnteredDate>2019-12-16</ProposalEnteredDate>
<RecoveryIncomes>
<RecoveryIncome ID="924766141">
<RecoveryType>ReimbursableExpenseOther</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766142">
<RecoveryType>ReimbursableExpenseUtility</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766143">
<RecoveryType>ReimbursableExpenseSecurity</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766144">
<RecoveryType>ReimbursableExpenseRepairsAndMaintenance</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766145">
<RecoveryType>ReimbursableExpenseMarketing</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766146">
<RecoveryType>ReimbursableExpenseManagementFee</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766147">
<RecoveryType>ReimbursableExpenseLandscaping</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766148">
<RecoveryType>ReimbursableExpenseInsurance</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766149">
<RecoveryType>ReimbursableExpenseElectric</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766150">
<RecoveryType>ReimbursableExpenseCleaning</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766151">
<RecoveryType>ReimbursableExpenseCam</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766152">
<RecoveryType>RealEstateTax</RecoveryType>
<ExpenseAmount>7.0</ExpenseAmount>
<RecoveryMethod>gross</RecoveryMethod>
<RecoveryAmount>0.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924766153">
<RecoveryType>OperationalExpense</RecoveryType>
<ExpenseAmount>5.0</ExpenseAmount>
<RecoveryMethod>gross</RecoveryMethod>
<RecoveryAmount>0.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
</RecoveryIncomes>
<Spaces>
<ID>1734064</ID>
<ID>1734057</ID>
</Spaces>
<LeaseInformationAttributes>
<LeaseInformationAttribute>
<Name>guarantor</Name>
<Description>DESCRIPTION</Description>
</LeaseInformationAttribute>
</LeaseInformationAttributes>
</DealTerm>
<DealTerm ID="6215667">
<ProposalType>landlord</ProposalType>
<DiscountRate>10.0</DiscountRate>
<RentableArea>11202</RentableArea>
<LeaseType>full service</LeaseType>
<LeaseTerm>120</LeaseTerm>
<CommencementDate>2020-02-01</CommencementDate>
<TenantImprovements>
<TenantImprovement ID="717924">
<Allowance>10.0</Allowance>
<AllowanceUnit>rsf</AllowanceUnit>
<OccurrenceMonth>1</OccurrenceMonth>
<Description>DESCRIPTION</Description>
</TenantImprovement>
</TenantImprovements>
<BuildingImprovements>
<BuildingImprovement ID="717925">
<Allowance>12.0</Allowance>
<AllowanceUnit>rsf</AllowanceUnit>
<OccurrenceMonth>1</OccurrenceMonth>
<Description>DESCRIPTION</Description>
</BuildingImprovement>
</BuildingImprovements>
<FreeRents>
<FreeRent ID="85728034">
<BeginIn>1</BeginIn>
<Duration>3</Duration>
<Percentage>100.0</Percentage>
<Type>gross</Type>
</FreeRent>
</FreeRents>
<CreatedDate>2019-12-17T00:24:37Z</CreatedDate>
<SecurityDeposit>50000.0</SecurityDeposit>
<NER>31.9464270024093</NER>
<NEROverride/>
<DateEntered>2019-12-16</DateEntered>
<ExecutionDate>2020-01-01</ExecutionDate>
<OpEx ID="924677271">
<BaseOpEx>5.0</BaseOpEx>
<YearType/>
<LeaseType/>
<Description>DESCRIPTION</Description>
</OpEx>
<RealEstateTaxes ID="924677272">
<BaseRealEstateTaxes>7.0</BaseRealEstateTaxes>
<YearType/>
<LeaseType/>
<Description>DESCRIPTION</Description>
</RealEstateTaxes>
<NPVperSqFt>203.130707576321</NPVperSqFt>
<TotalNPV>2275470.18626995</TotalNPV>
<MiscDescription>Proposal Notes</MiscDescription>
<NetCashFlow>4022133.22795209</NetCashFlow>
<TotalIncome>5379931.4936246442</TotalIncome>
<TotalFreeRent>3333.333333333</TotalFreeRent>
<Concessions>651341.709872493</Concessions>
<Payback>18</Payback>
<IRR>73.42</IRR>
<Latest>false</Latest>
<BaseRents>
<BaseRent ID="945619669">
<BeginIn>1</BeginIn>
<Rent>47.0</Rent>
<Period>rsf/year</Period>
<Duration>60</Duration>
</BaseRent>
</BaseRents>
<RentEscalations>
<RentEscalation ID="646526">
<BeginIn>61</BeginIn>
<Escalation>3.0</Escalation>
<RecurrenceInterval>12</RecurrenceInterval>
<EscalationType>percentage</EscalationType>
</RentEscalation>
</RentEscalations>
<OtherCredits>
<OtherCredit ID="53995">
<Name>DESCRIPTION</Name>
<Occurs>1</Occurs>
<Amount>5.0</Amount>
<Unit>rsf</Unit>
</OtherCredit>
</OtherCredits>
<Commissions>
<Commission ID="876893">
<RepType>landlord</RepType>
<Firm>crane Commission</Firm>
<Amount>2.0</Amount>
<Unit>%</Unit>
<Date>2020-02-01</Date>
</Commission>
</Commissions>
<Rights>
<Right ID="214657904">
<Name>rofo</Name>
<Description>DESCRIPTION</Description>
<Targets>
<Target>
<Property ID="146675">
<PropertyName>225 President Street TEST</PropertyName>
<Address>
<City>Boston</City>
<State>MA</State>
<Street>225 President Street-2</Street>
<PostalCode>02110</PostalCode>
<Country>United States</Country>
</Address>
</Property>
<Floor ID="3113363">
<FloorName>1</FloorName>
</Floor>
</Target>
</Targets>
<NoticeStartDate>2021-07-01</NoticeStartDate>
<NoticeDate>2021-08-01</NoticeDate>
<NoticeEndDate>2021-08-01</NoticeEndDate>
<EffectiveDate>2020-09-01</EffectiveDate>
<RateType>variable</RateType>
<RateNote>3% FMV</RateNote>
<MinSqFt>10000</MinSqFt>
</Right>
<Right ID="214657907">
<Name>sublease</Name>
<Description>DESCRIPTION</Description>
<Targets/>
</Right>
<Right ID="214657905">
<Name>rofr</Name>
<Description>DESCRIPTION</Description>
<Targets/>
<NoticeStartDate>2021-02-01</NoticeStartDate>
<NoticeDate>2022-03-03</NoticeDate>
<NoticeEndDate>2022-03-03</NoticeEndDate>
<EffectiveDate>2022-03-03</EffectiveDate>
<RateType>fixed</RateType>
<RateNote>40.00</RateNote>
<MinSqFt>10000</MinSqFt>
</Right>
<Right ID="214657906">
<Name>renewal</Name>
<Description>DESCRIPTION</Description>
<Targets/>
<NoticeStartDate>2020-03-01</NoticeStartDate>
<NoticeDate>2020-03-31</NoticeDate>
<NoticeEndDate>2020-03-31</NoticeEndDate>
<EffectiveDate>2020-04-01</EffectiveDate>
<Term>300</Term>
<NumberOfOptions>1</NumberOfOptions>
<RateType>variable</RateType>
<RateNote>100</RateNote>
</Right>
<Right ID="214685018">
<Name>co-tenancy</Name>
<Description>DESCRIPTION</Description>
<Targets>
<Target>
<Lease ID="9801611">
<TenantName>AVCAR</TenantName>
</Lease>
</Target>
</Targets>
<RoleType>tenant</RoleType>
</Right>
<Right ID="214685019">
<Name>signage</Name>
<Description>DESCRIPTION</Description>
<Targets/>
</Right>
</Rights>
<TenantRisk>
<SecurityType>security_deposit</SecurityType>
<Amount>50000.0</Amount>
<Description>DESCRIPTION</Description>
</TenantRisk>
<ProposalID>606284</ProposalID>
<ProposalEnteredDate>2019-12-16</ProposalEnteredDate>
<RecoveryIncomes>
<RecoveryIncome ID="924677271">
<RecoveryType>OperationalExpense</RecoveryType>
<ExpenseAmount>5.0</ExpenseAmount>
<RecoveryMethod>gross</RecoveryMethod>
<RecoveryAmount>0.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677272">
<RecoveryType>RealEstateTax</RecoveryType>
<ExpenseAmount>7.0</ExpenseAmount>
<RecoveryMethod>gross</RecoveryMethod>
<RecoveryAmount>0.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677274">
<RecoveryType>ReimbursableExpenseCam</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677275">
<RecoveryType>ReimbursableExpenseCleaning</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677276">
<RecoveryType>ReimbursableExpenseElectric</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677277">
<RecoveryType>ReimbursableExpenseInsurance</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677278">
<RecoveryType>ReimbursableExpenseLandscaping</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677280">
<RecoveryType>ReimbursableExpenseManagementFee</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677281">
<RecoveryType>ReimbursableExpenseMarketing</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677282">
<RecoveryType>ReimbursableExpenseRepairsAndMaintenance</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677284">
<RecoveryType>ReimbursableExpenseSecurity</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677285">
<RecoveryType>ReimbursableExpenseUtility</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
<RecoveryIncome ID="924677287">
<RecoveryType>ReimbursableExpenseOther</RecoveryType>
<ExpenseAmount>2.0</ExpenseAmount>
<RecoveryMethod>net</RecoveryMethod>
<RecoveryAmount>2.0</RecoveryAmount>
<Description>DESCRIPTION</Description>
</RecoveryIncome>
</RecoveryIncomes>
<Spaces>
<ID>1734057</ID>
<ID>1734064</ID>
</Spaces>
<LeaseInformationAttributes>
<LeaseInformationAttribute>
<Name>guarantor</Name>
<Description>DESCRIPTION</Description>
</LeaseInformationAttribute>
</LeaseInformationAttributes>
</DealTerm>
<DealTerm ID="6215929">
<ProposalType>landlord</ProposalType>
<DiscountRate>10.0</DiscountRate>
<RentableArea>11202</RentableArea>
<LeaseType>full service</LeaseType>
<LeaseTerm>12</LeaseTerm>
<CommencementDate>2020-01-01</CommencementDate>
<TenantImprovements/>
<BuildingImprovements/>
<FreeRents/>
<CreatedDate>2019-12-17T02:26:58Z</CreatedDate>
<SecurityDeposit/>
<NER>10.0</NER>
<NEROverride/>
<DateEntered>2019-12-16</DateEntered>
<ExecutionDate>2020-01-01</ExecutionDate>
<OpEx ID="">
<BaseOpEx/>
<YearType/>
<LeaseType/>
<Description/>
</OpEx>
<RealEstateTaxes ID="">
<BaseRealEstateTaxes/>
<YearType/>
<LeaseType/>
<Description/>
</RealEstateTaxes>
<NPVperSqFt>9.55774666277785</NPVperSqFt>
<TotalNPV>107065.878116437</TotalNPV>
<MiscDescription>Proposal Notes</MiscDescription>
<NetCashFlow>112020.0</NetCashFlow>
<TotalIncome>112020.0</TotalIncome>
<TotalFreeRent/>
<Concessions>0.0</Concessions>
<Payback>1</Payback>
<IRR/>
<Latest>false</Latest>
<BaseRents>
<BaseRent ID="945692074">
<BeginIn>1</BeginIn>
<Rent>10.0</Rent>
<Period>rsf/year</Period>
<Duration>12</Duration>
</BaseRent>
</BaseRents>
<RentEscalations/>
<OtherCredits/>
<Commissions/>
<Rights>
<Right ID="214657904">
<Name>rofo</Name>
<Description>DESCRIPTION</Description>
<Targets>
<Target>
<Property ID="146675">
<PropertyName>225 President Street TEST</PropertyName>
<Address>
<City>Boston</City>
<State>MA</State>
<Street>225 President Street-2</Street>
<PostalCode>02110</PostalCode>
<Country>United States</Country>
</Address>
</Property>
<Floor ID="3113363">
<FloorName>1</FloorName>
</Floor>
</Target>
</Targets>
<NoticeStartDate>2021-07-01</NoticeStartDate>
<NoticeDate>2021-08-01</NoticeDate>
<NoticeEndDate>2021-08-01</NoticeEndDate>
<EffectiveDate>2020-09-01</EffectiveDate>
<RateType>variable</RateType>
<RateNote>3% FMV</RateNote>
<MinSqFt>10000</MinSqFt>
</Right>
<Right ID="214657907">
<Name>sublease</Name>
<Description>DESCRIPTION</Description>
<Targets/>
</Right>
<Right ID="214657905">
<Name>rofr</Name>
<Description>DESCRIPTION</Description>
<Targets/>
<NoticeStartDate>2021-02-01</NoticeStartDate>
<NoticeDate>2022-03-03</NoticeDate>
<NoticeEndDate>2022-03-03</NoticeEndDate>
<EffectiveDate>2022-03-03</EffectiveDate>
<RateType>fixed</RateType>
<RateNote>40.00</RateNote>
<MinSqFt>10000</MinSqFt>
</Right>
<Right ID="214657906">
<Name>renewal</Name>
<Description>DESCRIPTION</Description>
<Targets/>
<NoticeStartDate>2020-03-01</NoticeStartDate>
<NoticeDate>2020-03-31</NoticeDate>
<NoticeEndDate>2020-03-31</NoticeEndDate>
<EffectiveDate>2020-04-01</EffectiveDate>
<Term>300</Term>
<NumberOfOptions>1</NumberOfOptions>
<RateType>variable</RateType>
<RateNote>100</RateNote>
</Right>
<Right ID="214685018">
<Name>co-tenancy</Name>
<Description>DESCRIPTION</Description>
<Targets>
<Target>
<Lease ID="9801611">
<TenantName>AVCAR</TenantName>
</Lease>
</Target>
</Targets>
<RoleType>tenant</RoleType>
</Right>
<Right ID="214685019">
<Name>signage</Name>
<Description>DESCRIPTION</Description>
<Targets/>
</Right>
</Rights>
<TenantRisk>
<SecurityType/>
<Amount/>
<Description/>
</TenantRisk>
<ProposalID>606284</ProposalID>
<ProposalEnteredDate>2019-12-16</ProposalEnteredDate>
<RecoveryIncomes/>
<Spaces>
<ID>1734057</ID>
<ID>1734064</ID>
</Spaces>
<LeaseInformationAttributes>
<LeaseInformationAttribute>
<Name>guarantor</Name>
<Description>DESCRIPTION</Description>
</LeaseInformationAttribute>
</LeaseInformationAttributes>
</DealTerm>
</DealTerms>
<Budgets/>
<Appraisals/>
<Tours>
<Tour ID="79099">
<TourDate>12-17-2019</TourDate>
<Comment>Toured Spaces @Anna Michellenova</Comment>
<User>
<UserId>8739</UserId>
<FirstName>Michael</FirstName>
<LastName>mills</LastName>
<Email>[email protected]</Email>
<Phone>5136003026</Phone>
<PhoneExtension/>
<Title>Implementation Manager</Title>
<BrokerLicenseNumber/>
</User>
<Spaces>
<Space ID="1734057">
<Suite>1735</Suite>
<SpaceAvailable>1555</SpaceAvailable>
<FloorName>17</FloorName>
<FloorPosition>21</FloorPosition>
<FloorRentableArea>22325</FloorRentableArea>
<CreatedAt>2013-09-09T17:39:26Z</CreatedAt>
<UpdatedAt>2019-10-24T08:37:34Z</UpdatedAt>
</Space>
<Space ID="1734064">
<Suite>1810</Suite>
<SpaceAvailable>9647</SpaceAvailable>
<FloorName>18</FloorName>
<FloorPosition>22</FloorPosition>
<FloorRentableArea>25240</FloorRentableArea>
<CreatedAt>2018-06-18T18:05:43Z</CreatedAt>
<UpdatedAt>2019-10-24T08:37:35Z</UpdatedAt>
</Space>
</Spaces>
<CreatedAt>2019-12-17T00:26:09Z</CreatedAt>
<UpdatedAt>2019-12-17T00:26:09Z</UpdatedAt>
</Tour>
</Tours>
<DealLeads>
<DealLead ID="56171">
<FirstName>Anna</FirstName>
<LastName>Michellenova</LastName>
</DealLead>
</DealLeads>
</Deal>
</Deals>
</DealExport>
This document is proprietary and confidential. No part of this document may be disclosed in any manner to a third party without the prior written consent of View the Space Inc.
Updated almost 3 years ago