xbrlware-ce 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. data/Copying.txt +13 -0
  2. data/License.txt +13 -0
  3. data/Rakefile.rb +124 -0
  4. data/Readme.txt +15 -0
  5. data/doc/classes/Edgar.html +144 -0
  6. data/doc/classes/Edgar/HTMLFeedDownloader.html +199 -0
  7. data/doc/classes/Edgar/RSSFeedDownloader.html +225 -0
  8. data/doc/classes/Xbrlware.html +350 -0
  9. data/doc/classes/Xbrlware/Context.html +429 -0
  10. data/doc/classes/Xbrlware/Entity.html +323 -0
  11. data/doc/classes/Xbrlware/Identifier.html +191 -0
  12. data/doc/classes/Xbrlware/Instance.html +742 -0
  13. data/doc/classes/Xbrlware/Item.html +278 -0
  14. data/doc/classes/Xbrlware/LBConstants.html +144 -0
  15. data/doc/classes/Xbrlware/Linkbase.html +131 -0
  16. data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase.html +212 -0
  17. data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase/Calculation.html +172 -0
  18. data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase/Calculation/CalculationArc.html +166 -0
  19. data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase.html +210 -0
  20. data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase/Definition.html +204 -0
  21. data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase/Definition/DefinitionArc.html +160 -0
  22. data/doc/classes/Xbrlware/Linkbase/LabelLinkbase.html +239 -0
  23. data/doc/classes/Xbrlware/Linkbase/LabelLinkbase/Label.html +189 -0
  24. data/doc/classes/Xbrlware/Linkbase/Linkbase.html +172 -0
  25. data/doc/classes/Xbrlware/Linkbase/Linkbase/Link.html +217 -0
  26. data/doc/classes/Xbrlware/Linkbase/Linkbase/Link/Arc.html +284 -0
  27. data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase.html +224 -0
  28. data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase/Presentation.html +222 -0
  29. data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase/Presentation/PresentationArc.html +160 -0
  30. data/doc/classes/Xbrlware/Taxonomy.html +369 -0
  31. data/doc/classes/Xbrlware/TaxonomyDefintion.html +177 -0
  32. data/doc/classes/Xbrlware/Unit.html +179 -0
  33. data/doc/classes/Xbrlware/Unit/Divide.html +165 -0
  34. data/doc/created.rid +1 -0
  35. data/doc/files/Readme_txt.html +124 -0
  36. data/doc/files/lib/edgar/edgar_data_downloader_rb.html +129 -0
  37. data/doc/files/lib/edgar/util_rb.html +129 -0
  38. data/doc/files/lib/edgar_rb.html +141 -0
  39. data/doc/files/lib/xbrlware/constants_rb.html +129 -0
  40. data/doc/files/lib/xbrlware/context_rb.html +129 -0
  41. data/doc/files/lib/xbrlware/date_util_rb.html +129 -0
  42. data/doc/files/lib/xbrlware/float_patch_rb.html +129 -0
  43. data/doc/files/lib/xbrlware/hash_util_rb.html +129 -0
  44. data/doc/files/lib/xbrlware/instance_rb.html +129 -0
  45. data/doc/files/lib/xbrlware/item_rb.html +129 -0
  46. data/doc/files/lib/xbrlware/linkbase/calculation_linkbase_rb.html +129 -0
  47. data/doc/files/lib/xbrlware/linkbase/definition_linkbase_rb.html +129 -0
  48. data/doc/files/lib/xbrlware/linkbase/label_linkbase_rb.html +129 -0
  49. data/doc/files/lib/xbrlware/linkbase/linkbase_rb.html +129 -0
  50. data/doc/files/lib/xbrlware/linkbase/presentation_linkbase_rb.html +129 -0
  51. data/doc/files/lib/xbrlware/meta_util_rb.html +129 -0
  52. data/doc/files/lib/xbrlware/taxonomy_rb.html +129 -0
  53. data/doc/files/lib/xbrlware/unit_rb.html +129 -0
  54. data/doc/files/lib/xbrlware/util_rb.html +129 -0
  55. data/doc/files/lib/xbrlware/xml_parser_rb.html +129 -0
  56. data/doc/files/lib/xbrlware_rb.html +163 -0
  57. data/doc/fr_class_index.html +55 -0
  58. data/doc/fr_file_index.html +48 -0
  59. data/doc/fr_method_index.html +104 -0
  60. data/doc/index.html +24 -0
  61. data/doc/rdoc-style.css +208 -0
  62. data/example/benchmark/instance_parser_benchmark.rb +25 -0
  63. data/example/case_study/buy_strategy.rb +34 -0
  64. data/example/case_study/c-20091230.xml +29 -0
  65. data/example/case_study/c_sell_strategy.rb +29 -0
  66. data/example/lang_integration/thrift/rating-client.py +21 -0
  67. data/example/lang_integration/thrift/rating-impl.rb +13 -0
  68. data/example/lang_integration/thrift/rating-server.rb +25 -0
  69. data/example/lang_integration/thrift/rating.thrift +52 -0
  70. data/example/quick_start/foo.rb +10 -0
  71. data/example/quick_start/foo.xml +29 -0
  72. data/example/quick_start/print_item.rb +27 -0
  73. data/lib/edgar.rb +30 -0
  74. data/lib/edgar/edgar_data_downloader.rb +126 -0
  75. data/lib/edgar/util.rb +30 -0
  76. data/lib/xbrlware.rb +65 -0
  77. data/lib/xbrlware/constants.rb +29 -0
  78. data/lib/xbrlware/context.rb +148 -0
  79. data/lib/xbrlware/date_util.rb +35 -0
  80. data/lib/xbrlware/float_patch.rb +26 -0
  81. data/lib/xbrlware/hash_util.rb +175 -0
  82. data/lib/xbrlware/instance.rb +406 -0
  83. data/lib/xbrlware/item.rb +115 -0
  84. data/lib/xbrlware/linkbase/calculation_linkbase.rb +137 -0
  85. data/lib/xbrlware/linkbase/definition_linkbase.rb +186 -0
  86. data/lib/xbrlware/linkbase/label_linkbase.rb +128 -0
  87. data/lib/xbrlware/linkbase/linkbase.rb +170 -0
  88. data/lib/xbrlware/linkbase/presentation_linkbase.rb +160 -0
  89. data/lib/xbrlware/meta_util.rb +45 -0
  90. data/lib/xbrlware/taxonomies/us_gaap_taxonomy_20090131.rb +40365 -0
  91. data/lib/xbrlware/taxonomy.rb +133 -0
  92. data/lib/xbrlware/unit.rb +42 -0
  93. data/lib/xbrlware/util.rb +83 -0
  94. data/lib/xbrlware/xml_parser.rb +122 -0
  95. data/setup.rb +1585 -0
  96. data/test/lib/edgar/edgar_data_downloader_test.rb +35 -0
  97. data/test/lib/edgar/resources/0000930413-09-005485-index.htm +331 -0
  98. data/test/lib/edgar/resources/usgaap.rss.xml +2861 -0
  99. data/test/lib/xbrlware/411_footnotes_test.rb +65 -0
  100. data/test/lib/xbrlware/42_schemaref_test.rb +20 -0
  101. data/test/lib/xbrlware/46_item_test.rb +253 -0
  102. data/test/lib/xbrlware/47_context_test.rb +129 -0
  103. data/test/lib/xbrlware/48_unit_test.rb +45 -0
  104. data/test/lib/xbrlware/49_tuple_test.rb +12 -0
  105. data/test/lib/xbrlware/date_util_test.rb +24 -0
  106. data/test/lib/xbrlware/dimension/context_explicit_dimension_test.rb +40 -0
  107. data/test/lib/xbrlware/dimension/resources/context_explicit_dimension.xml +84 -0
  108. data/test/lib/xbrlware/float_patch_test.rb +10 -0
  109. data/test/lib/xbrlware/hash_util_test.rb +29 -0
  110. data/test/lib/xbrlware/instance_test.rb +250 -0
  111. data/test/lib/xbrlware/linkbase/calculation_linkbase_test.rb +39 -0
  112. data/test/lib/xbrlware/linkbase/definition_linkbase_test.rb +35 -0
  113. data/test/lib/xbrlware/linkbase/label_linkbase_test.rb +22 -0
  114. data/test/lib/xbrlware/linkbase/linkbase_test.rb +36 -0
  115. data/test/lib/xbrlware/linkbase/linkbase_test_util.rb +98 -0
  116. data/test/lib/xbrlware/linkbase/presentation_linkbase_test.rb +33 -0
  117. data/test/lib/xbrlware/linkbase/report.html +62 -0
  118. data/test/lib/xbrlware/linkbase/resources/cal.xml +219 -0
  119. data/test/lib/xbrlware/linkbase/resources/def.xml +186 -0
  120. data/test/lib/xbrlware/linkbase/resources/def_with_multiple_dimension.xml +41 -0
  121. data/test/lib/xbrlware/linkbase/resources/instance.xml +5822 -0
  122. data/test/lib/xbrlware/linkbase/resources/lab.xml +782 -0
  123. data/test/lib/xbrlware/linkbase/resources/pre.xml +485 -0
  124. data/test/lib/xbrlware/linkbase/resources/report_10_q.htm +12327 -0
  125. data/test/lib/xbrlware/linkbase/resources/taxonomy.xsd +178 -0
  126. data/test/lib/xbrlware/linkbase/sample_html_report.html +40 -0
  127. data/test/lib/xbrlware/meta_util_test.rb +23 -0
  128. data/test/lib/xbrlware/resources/411/411_footnotes.xml +66 -0
  129. data/test/lib/xbrlware/resources/42/42_schema_ref_with_base.xml +7 -0
  130. data/test/lib/xbrlware/resources/42/42_schema_ref_without_base.xml +7 -0
  131. data/test/lib/xbrlware/resources/46/46_item_value.xml +61 -0
  132. data/test/lib/xbrlware/resources/47/472_period_forever.xml +29 -0
  133. data/test/lib/xbrlware/resources/47/472_period_instant.xml +24 -0
  134. data/test/lib/xbrlware/resources/47/472_period_start_dt_and_end_dt.xml +30 -0
  135. data/test/lib/xbrlware/resources/47/4731_entity_identifier.xml +29 -0
  136. data/test/lib/xbrlware/resources/47/4732_entity_segment_not_present.xml +24 -0
  137. data/test/lib/xbrlware/resources/47/4732_entity_segment_present.xml +30 -0
  138. data/test/lib/xbrlware/resources/47/474_scenario_not_present.xml +26 -0
  139. data/test/lib/xbrlware/resources/47/474_scenario_present.xml +30 -0
  140. data/test/lib/xbrlware/resources/47/47_multiple_contexts.xml +36 -0
  141. data/test/lib/xbrlware/resources/48/482_unit_measure.xml +32 -0
  142. data/test/lib/xbrlware/resources/48/483_unit_divide.xml +39 -0
  143. data/test/lib/xbrlware/resources/48/48_multiple_units.xml +43 -0
  144. data/test/lib/xbrlware/resources/49/49_tuple.xml +61 -0
  145. data/test/lib/xbrlware/resources/49_tuple.xsd +44 -0
  146. data/test/lib/xbrlware/resources/instance.xml +128 -0
  147. data/test/lib/xbrlware/resources/report_test_xbrl_files/cal.xml +219 -0
  148. data/test/lib/xbrlware/resources/report_test_xbrl_files/def.xml +186 -0
  149. data/test/lib/xbrlware/resources/report_test_xbrl_files/instance.xml +5822 -0
  150. data/test/lib/xbrlware/resources/report_test_xbrl_files/lab.xml +782 -0
  151. data/test/lib/xbrlware/resources/report_test_xbrl_files/pre.xml +485 -0
  152. data/test/lib/xbrlware/resources/report_test_xbrl_files/report/report_index.html +62 -0
  153. data/test/lib/xbrlware/resources/report_test_xbrl_files/taxonomy.xsd +178 -0
  154. data/test/lib/xbrlware/resources/taxonomy_test_files/1/cal.xml +223 -0
  155. data/test/lib/xbrlware/resources/taxonomy_test_files/1/def.xml +190 -0
  156. data/test/lib/xbrlware/resources/taxonomy_test_files/1/lab.xml +786 -0
  157. data/test/lib/xbrlware/resources/taxonomy_test_files/1/pre.xml +489 -0
  158. data/test/lib/xbrlware/resources/taxonomy_test_files/1/taxonomy.xsd +177 -0
  159. data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/cal.xml +223 -0
  160. data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/def.xml +190 -0
  161. data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/lab.xml +786 -0
  162. data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/pre.xml +489 -0
  163. data/test/lib/xbrlware/resources/taxonomy_test_files/2/taxonomy.xsd +175 -0
  164. data/test/lib/xbrlware/resources/taxonomy_test_files/3/taxonomy.xsd +175 -0
  165. data/test/lib/xbrlware/resources/us_gaap_schema.xsd +8 -0
  166. data/test/lib/xbrlware/resources/us_gaap_schema_local.xsd +10 -0
  167. data/test/lib/xbrlware/resources/util_test_xbrl_files/cal.xml +219 -0
  168. data/test/lib/xbrlware/resources/util_test_xbrl_files/def.xml +186 -0
  169. data/test/lib/xbrlware/resources/util_test_xbrl_files/instance.xml +5822 -0
  170. data/test/lib/xbrlware/resources/util_test_xbrl_files/lab.xml +782 -0
  171. data/test/lib/xbrlware/resources/util_test_xbrl_files/pre.xml +485 -0
  172. data/test/lib/xbrlware/resources/util_test_xbrl_files/taxonomy.xsd +178 -0
  173. data/test/lib/xbrlware/resources/xbrl_xsd/dei-2009-01-31.xsd +162 -0
  174. data/test/lib/xbrlware/resources/xbrl_xsd/dei-std-2009-01-31.xsd +23 -0
  175. data/test/lib/xbrlware/resources/xbrl_xsd/negated-2008-03-31.xsd +23 -0
  176. data/test/lib/xbrlware/resources/xbrl_xsd/ref-2006-02-27.xsd +121 -0
  177. data/test/lib/xbrlware/resources/xbrl_xsd/us-gaap-2009-01-31.xsd +13474 -0
  178. data/test/lib/xbrlware/resources/xbrl_xsd/us-roles-2009-01-31.xsd +2283 -0
  179. data/test/lib/xbrlware/resources/xbrl_xsd/us-types-2009-01-31.xsd +368 -0
  180. data/test/lib/xbrlware/resources/xbrl_xsd/xbrl-instance-2003-12-31.xsd +772 -0
  181. data/test/lib/xbrlware/resources/xbrl_xsd/xbrl-linkbase-2003-12-31.xsd +477 -0
  182. data/test/lib/xbrlware/resources/xbrl_xsd/xbrldi-2006.xsd +41 -0
  183. data/test/lib/xbrlware/resources/xbrl_xsd/xbrldt-2005.xsd +53 -0
  184. data/test/lib/xbrlware/resources/xbrl_xsd/xl-2003-12-31.xsd +246 -0
  185. data/test/lib/xbrlware/resources/xbrl_xsd/xlink-2003-12-31.xsd +117 -0
  186. data/test/lib/xbrlware/taxonomy_test.rb +124 -0
  187. data/test/lib/xbrlware/util_test.rb +18 -0
  188. data/test/lib/xbrlware/xml_parser_test.rb +142 -0
  189. data/test/schema_validator_jruby.rb +40 -0
  190. data/test/schema_validator_ruby.rb +7 -0
  191. data/test/scratchpad/block.rb +36 -0
  192. data/test/test_helper.rb +21 -0
  193. data/xbrlware.iml +30 -0
  194. metadata +261 -0
@@ -0,0 +1,2283 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!--Copyright (C) 2007-2009 XBRL US, Inc. All Rights Reserved.
3
+ Notice: Authorized Uses are Set Forth at http://xbrl.us/legal2009
4
+ -->
5
+ <xs:schema elementFormDefault="qualified" targetNamespace="http://xbrl.us/us-roles/2009-01-31" xmlns:link="http://www.xbrl.org/2003/linkbase" xmlns:us-roles="http://xbrl.us/us-roles/2009-01-31" xmlns:xbrli="http://www.xbrl.org/2003/instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">
6
+ <xs:annotation>
7
+ <xs:appinfo>
8
+ <link:roleType id="debt3" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtCalc3">
9
+ <link:definition>460200 - Disclosure - Debt (Long-term Debt by Maturity Alternative)</link:definition>
10
+ <link:usedOn>link:calculationLink</link:usedOn>
11
+ <link:usedOn>link:definitionLink</link:usedOn>
12
+ <link:usedOn>link:presentationLink</link:usedOn>
13
+ </link:roleType>
14
+ <link:roleType id="inctax2" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesCalc2">
15
+ <link:definition>770500 - Disclosure - Income Taxes (Current and Noncurrent Alternative)</link:definition>
16
+ <link:usedOn>link:calculationLink</link:usedOn>
17
+ <link:usedOn>link:definitionLink</link:usedOn>
18
+ <link:usedOn>link:presentationLink</link:usedOn>
19
+ </link:roleType>
20
+ <link:roleType id="com" roleURI="http://xbrl.us/us-gaap/role/statement/CommonDomainMembers">
21
+ <link:definition>190000 - Statement - Common Domain Members</link:definition>
22
+ <link:usedOn>link:definitionLink</link:usedOn>
23
+ <link:usedOn>link:presentationLink</link:usedOn>
24
+ </link:roleType>
25
+ <link:roleType id="disops2" roleURI="http://xbrl.us/us-gaap/role/disclosure/DiscontinuedOperationsCalc2">
26
+ <link:definition>775100 - Disclosure - Discontinued Operations and Disposal Groups (Alternative)</link:definition>
27
+ <link:usedOn>link:calculationLink</link:usedOn>
28
+ <link:usedOn>link:definitionLink</link:usedOn>
29
+ <link:usedOn>link:presentationLink</link:usedOn>
30
+ </link:roleType>
31
+ <link:roleType id="inctax3" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesCalc3">
32
+ <link:definition>770510 - Disclosure - Income Taxes (by Geographic Segment)</link:definition>
33
+ <link:usedOn>link:calculationLink</link:usedOn>
34
+ <link:usedOn>link:definitionLink</link:usedOn>
35
+ <link:usedOn>link:presentationLink</link:usedOn>
36
+ </link:roleType>
37
+ <link:roleType id="ts2" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingCalc2">
38
+ <link:definition>865500 - Disclosure - Transfers and Servicing - Pledged Securities Not Reported</link:definition>
39
+ <link:usedOn>link:calculationLink</link:usedOn>
40
+ <link:usedOn>link:definitionLink</link:usedOn>
41
+ <link:usedOn>link:presentationLink</link:usedOn>
42
+ </link:roleType>
43
+ <link:roleType id="soi-int2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInterestBasedRevenueCalc2">
44
+ <link:definition>132010 - Statement - Statement of Income, Interest Based Revenue</link:definition>
45
+ <link:usedOn>link:calculationLink</link:usedOn>
46
+ <link:usedOn>link:definitionLink</link:usedOn>
47
+ <link:usedOn>link:presentationLink</link:usedOn>
48
+ </link:roleType>
49
+ <link:roleType id="soi-int3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInterestBasedRevenueCalc3">
50
+ <link:definition>132020 - Statement - Statement of Income, Interest Based Revenue</link:definition>
51
+ <link:usedOn>link:calculationLink</link:usedOn>
52
+ <link:usedOn>link:definitionLink</link:usedOn>
53
+ <link:usedOn>link:presentationLink</link:usedOn>
54
+ </link:roleType>
55
+ <link:roleType id="fs-bt3" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftCalc3">
56
+ <link:definition>940100 - Disclosure - Financial Services, Banking and Thrift (Deposit Liabilities Alternative)</link:definition>
57
+ <link:usedOn>link:calculationLink</link:usedOn>
58
+ <link:usedOn>link:definitionLink</link:usedOn>
59
+ <link:usedOn>link:presentationLink</link:usedOn>
60
+ </link:roleType>
61
+ <link:roleType id="soi-int4" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInterestBasedRevenueCalc4">
62
+ <link:definition>132030 - Statement - Statement of Income, Interest Based Revenue (Discontinued Operations Alternative)</link:definition>
63
+ <link:usedOn>link:calculationLink</link:usedOn>
64
+ <link:usedOn>link:definitionLink</link:usedOn>
65
+ <link:usedOn>link:presentationLink</link:usedOn>
66
+ </link:roleType>
67
+ <link:roleType id="soi-ins2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInsuranceBasedRevenue2">
68
+ <link:definition>136001 - Statement - Statement of Income, Insurance Based Revenue (Discontinued Operations Alternative)</link:definition>
69
+ <link:usedOn>link:calculationLink</link:usedOn>
70
+ <link:usedOn>link:definitionLink</link:usedOn>
71
+ <link:usedOn>link:presentationLink</link:usedOn>
72
+ </link:roleType>
73
+ <link:roleType id="soi-sbi3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeSecuritiesBasedIncome3">
74
+ <link:definition>140410 - Statement - Statement of Income, Securities Based Income (Discontinued Operations Alternative)</link:definition>
75
+ <link:usedOn>link:calculationLink</link:usedOn>
76
+ <link:usedOn>link:definitionLink</link:usedOn>
77
+ <link:usedOn>link:presentationLink</link:usedOn>
78
+ </link:roleType>
79
+ <link:roleType id="sfp-sbo3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-SecuritiesBasedOperationsCalc2">
80
+ <link:definition>112201 - Statement - Statement of Financial Position, Unclassified - Securities Based Operations (Financial Instruments Alternative)</link:definition>
81
+ <link:usedOn>link:calculationLink</link:usedOn>
82
+ <link:usedOn>link:definitionLink</link:usedOn>
83
+ <link:usedOn>link:presentationLink</link:usedOn>
84
+ </link:roleType>
85
+ <link:roleType id="debt4" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtCalc4">
86
+ <link:definition>460300 - Disclosure - Debt (Long-term Debt, by Category, Current and Noncurrent Calc Alternative)</link:definition>
87
+ <link:usedOn>link:calculationLink</link:usedOn>
88
+ <link:usedOn>link:definitionLink</link:usedOn>
89
+ <link:usedOn>link:presentationLink</link:usedOn>
90
+ </link:roleType>
91
+ <link:roleType id="soc1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfOtherComprehensiveIncomeFirstAlternate">
92
+ <link:definition>148410 - Statement - Statement of Other Comprehensive Income (Alternative)</link:definition>
93
+ <link:usedOn>link:calculationLink</link:usedOn>
94
+ <link:usedOn>link:definitionLink</link:usedOn>
95
+ <link:usedOn>link:presentationLink</link:usedOn>
96
+ </link:roleType>
97
+ <link:roleType id="rlnro2" roleURI="http://xbrl.us/us-gaap/role/disclosure/ReceivablesLoansNotesReceivableAndOthersLoansAlternate">
98
+ <link:definition>320500 - Disclosure - Receivables, Loans, Notes Receivable, and Others (Loans Alternative)</link:definition>
99
+ <link:usedOn>link:calculationLink</link:usedOn>
100
+ <link:usedOn>link:definitionLink</link:usedOn>
101
+ <link:usedOn>link:presentationLink</link:usedOn>
102
+ </link:roleType>
103
+ <link:roleType id="soi1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeDiscontinuedOperationsAlternate">
104
+ <link:definition>124001 - Statement - Statement of Income (Discontinued Operations Alternative)</link:definition>
105
+ <link:usedOn>link:calculationLink</link:usedOn>
106
+ <link:usedOn>link:definitionLink</link:usedOn>
107
+ <link:usedOn>link:presentationLink</link:usedOn>
108
+ </link:roleType>
109
+ <link:roleType id="fs-interest" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftInterest">
110
+ <link:definition>940050 - Disclosure - Financial Services, Banking and Thrift, Interest</link:definition>
111
+ <link:usedOn>link:calculationLink</link:usedOn>
112
+ <link:usedOn>link:definitionLink</link:usedOn>
113
+ <link:usedOn>link:presentationLink</link:usedOn>
114
+ </link:roleType>
115
+ <link:roleType id="fs-interest2" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftInterestCalc2">
116
+ <link:definition>940051 - Disclosure - Financial Services, Banking and Thrift, Interest (Interest Income by Security Taxable Status Alternative)</link:definition>
117
+ <link:usedOn>link:calculationLink</link:usedOn>
118
+ <link:usedOn>link:definitionLink</link:usedOn>
119
+ <link:usedOn>link:presentationLink</link:usedOn>
120
+ </link:roleType>
121
+ <link:roleType id="fs-interest3" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftInterestCalc3">
122
+ <link:definition>940052 - Disclosure - Financial Services, Banking and Thrift, Interest (Interest Income by Security Type Alternative)</link:definition>
123
+ <link:usedOn>link:calculationLink</link:usedOn>
124
+ <link:usedOn>link:definitionLink</link:usedOn>
125
+ <link:usedOn>link:presentationLink</link:usedOn>
126
+ </link:roleType>
127
+ <link:roleType id="sec-re2" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-28RealEstateAndAccumulatedDepreciationCalc2">
128
+ <link:definition>993250 - Disclosure - SEC Schedule, Article 12-28, Real Estate and Accumulated Depreciation (Calc2)</link:definition>
129
+ <link:usedOn>link:calculationLink</link:usedOn>
130
+ <link:usedOn>link:definitionLink</link:usedOn>
131
+ <link:usedOn>link:presentationLink</link:usedOn>
132
+ </link:roleType>
133
+ <link:roleType id="sfp-ucreo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-RealEstateOperations">
134
+ <link:definition>110200 - Statement - Statement of Financial Position, Unclassified - Real Estate Operations</link:definition>
135
+ <link:usedOn>link:calculationLink</link:usedOn>
136
+ <link:usedOn>link:definitionLink</link:usedOn>
137
+ <link:usedOn>link:presentationLink</link:usedOn>
138
+ </link:roleType>
139
+ <link:roleType id="sfp-clreo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionClassified-RealEstateOperations">
140
+ <link:definition>110000 - Statement - Statement of Financial Position, Classified - Real Estate Operations</link:definition>
141
+ <link:usedOn>link:calculationLink</link:usedOn>
142
+ <link:usedOn>link:definitionLink</link:usedOn>
143
+ <link:usedOn>link:presentationLink</link:usedOn>
144
+ </link:roleType>
145
+ <link:roleType id="inv1" roleURI="http://xbrl.us/us-gaap/role/disclosure/InventoryNetOfReservesAlternative">
146
+ <link:definition>340010 - Disclosure - Inventory (Items Net of Reserve Alternative)</link:definition>
147
+ <link:usedOn>link:calculationLink</link:usedOn>
148
+ <link:usedOn>link:definitionLink</link:usedOn>
149
+ <link:usedOn>link:presentationLink</link:usedOn>
150
+ </link:roleType>
151
+ <link:roleType id="sec-cndfir" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-04CondensedFinancialInformation">
152
+ <link:definition>991000 - Disclosure - SEC Schedule, Article 12-04, Condensed Financial Information of Registrant</link:definition>
153
+ <link:usedOn>link:calculationLink</link:usedOn>
154
+ <link:usedOn>link:definitionLink</link:usedOn>
155
+ <link:usedOn>link:presentationLink</link:usedOn>
156
+ </link:roleType>
157
+ <link:roleType id="soi-egm" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeAlternative">
158
+ <link:definition>124100 - Statement - Statement of Income (Excluding Gross Margin Alternative)</link:definition>
159
+ <link:usedOn>link:calculationLink</link:usedOn>
160
+ <link:usedOn>link:definitionLink</link:usedOn>
161
+ <link:usedOn>link:presentationLink</link:usedOn>
162
+ </link:roleType>
163
+ <link:roleType id="othliab4" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesCalc4">
164
+ <link:definition>471010 - Disclosure - Other Liabilities (Shares Subject to Mandatory Redemption, Settlement Terms, Amount, Total)</link:definition>
165
+ <link:usedOn>link:calculationLink</link:usedOn>
166
+ <link:usedOn>link:definitionLink</link:usedOn>
167
+ <link:usedOn>link:presentationLink</link:usedOn>
168
+ </link:roleType>
169
+ <link:roleType id="soi-egm1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeAlternativeCalc2">
170
+ <link:definition>124101 - Statement - Statement of Income (Excluding Gross Margin and Discontinued Operations Alternative)</link:definition>
171
+ <link:usedOn>link:calculationLink</link:usedOn>
172
+ <link:usedOn>link:definitionLink</link:usedOn>
173
+ <link:usedOn>link:presentationLink</link:usedOn>
174
+ </link:roleType>
175
+ <link:roleType id="soi-re" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateExcludingREITs">
176
+ <link:definition>144000 - Statement - Statement of Income, Real Estate, Excluding REITs</link:definition>
177
+ <link:usedOn>link:calculationLink</link:usedOn>
178
+ <link:usedOn>link:definitionLink</link:usedOn>
179
+ <link:usedOn>link:presentationLink</link:usedOn>
180
+ </link:roleType>
181
+ <link:roleType id="soi-reit" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateInvestmentTrusts">
182
+ <link:definition>145000 - Statement - Statement of Income, Real Estate Investment Trusts</link:definition>
183
+ <link:usedOn>link:calculationLink</link:usedOn>
184
+ <link:usedOn>link:definitionLink</link:usedOn>
185
+ <link:usedOn>link:presentationLink</link:usedOn>
186
+ </link:roleType>
187
+ <link:roleType id="idesa" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecuritiesAlternative">
188
+ <link:definition>330500 - Disclosure - Investments, Debt and Equity Securities (Alternative Presentation)</link:definition>
189
+ <link:usedOn>link:calculationLink</link:usedOn>
190
+ <link:usedOn>link:definitionLink</link:usedOn>
191
+ <link:usedOn>link:presentationLink</link:usedOn>
192
+ </link:roleType>
193
+ <link:roleType id="scf-dbo4" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectDepositBasedOperationsFourthAlternate">
194
+ <link:definition>160800 - Statement - Statement of Cash Flows, Indirect, Deposit Based Operations (Net Change Investments and Debt Alternative)</link:definition>
195
+ <link:usedOn>link:calculationLink</link:usedOn>
196
+ <link:usedOn>link:definitionLink</link:usedOn>
197
+ <link:usedOn>link:presentationLink</link:usedOn>
198
+ </link:roleType>
199
+ <link:roleType id="soi-re2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateExcludingREITsCalc2">
200
+ <link:definition>144010 - Statement - Statement of Income, Real Estate, Excluding REITs (Discontinued Operations Alternative)</link:definition>
201
+ <link:usedOn>link:calculationLink</link:usedOn>
202
+ <link:usedOn>link:definitionLink</link:usedOn>
203
+ <link:usedOn>link:presentationLink</link:usedOn>
204
+ </link:roleType>
205
+ <link:roleType id="scf-inv4" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectInvestmentBasedOperationsFourthAlternate">
206
+ <link:definition>164600 - Statement - Statement of Cash Flows, Indirect, Insurance Based Operations (Net Change Investments and Debt Alternative)</link:definition>
207
+ <link:usedOn>link:calculationLink</link:usedOn>
208
+ <link:usedOn>link:definitionLink</link:usedOn>
209
+ <link:usedOn>link:presentationLink</link:usedOn>
210
+ </link:roleType>
211
+ <link:roleType id="scf-sbo4" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectSecuritiesBasedOperationsFourthAlternate">
212
+ <link:definition>168800 - Statement - Statement of Cash Flows, Indirect, Securities Based Operations (Net Change Investments and Debt Alternative)</link:definition>
213
+ <link:usedOn>link:calculationLink</link:usedOn>
214
+ <link:usedOn>link:definitionLink</link:usedOn>
215
+ <link:usedOn>link:presentationLink</link:usedOn>
216
+ </link:roleType>
217
+ <link:roleType id="scf-re1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectRealEstateFirstAlternate">
218
+ <link:definition>170800 - Statement - Statement of Cash Flows, Indirect, Real Estate, Including REITs (Net Change Investments and Debt Alternative)</link:definition>
219
+ <link:usedOn>link:calculationLink</link:usedOn>
220
+ <link:usedOn>link:definitionLink</link:usedOn>
221
+ <link:usedOn>link:presentationLink</link:usedOn>
222
+ </link:roleType>
223
+ <link:roleType id="fs-bt4" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftCalc4">
224
+ <link:definition>940200 - Disclosure - Financial Services, Banking and Thrift (Foreign Deposit Liabilities Alternative)</link:definition>
225
+ <link:usedOn>link:calculationLink</link:usedOn>
226
+ <link:usedOn>link:definitionLink</link:usedOn>
227
+ <link:usedOn>link:presentationLink</link:usedOn>
228
+ </link:roleType>
229
+ <link:roleType id="sfp-dbo2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-DepositBasedOperationsSecondAlternate">
230
+ <link:definition>108100 - Statement - Statement of Financial Position, Unclassified - Deposit Based Operations (Second Alternative)</link:definition>
231
+ <link:usedOn>link:calculationLink</link:usedOn>
232
+ <link:usedOn>link:definitionLink</link:usedOn>
233
+ <link:usedOn>link:presentationLink</link:usedOn>
234
+ </link:roleType>
235
+ <link:roleType id="fs-bt5" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftCalc5">
236
+ <link:definition>940300 - Disclosure - Financial Services, Banking and Thrift (Deposit Liabilities by Customer Alternative)</link:definition>
237
+ <link:usedOn>link:calculationLink</link:usedOn>
238
+ <link:usedOn>link:definitionLink</link:usedOn>
239
+ <link:usedOn>link:presentationLink</link:usedOn>
240
+ </link:roleType>
241
+ <link:roleType id="scf-re" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectRealEstate">
242
+ <link:definition>170000 - Statement - Statement of Cash Flows, Real Estate, Including REITs</link:definition>
243
+ <link:usedOn>link:calculationLink</link:usedOn>
244
+ <link:usedOn>link:definitionLink</link:usedOn>
245
+ <link:usedOn>link:presentationLink</link:usedOn>
246
+ </link:roleType>
247
+ <link:roleType id="scf-indir5" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectFifthAlternate">
248
+ <link:definition>152210 - Statement - Statement of Cash Flows (Net Change Investments and Debt Alternative)</link:definition>
249
+ <link:usedOn>link:calculationLink</link:usedOn>
250
+ <link:usedOn>link:definitionLink</link:usedOn>
251
+ <link:usedOn>link:presentationLink</link:usedOn>
252
+ </link:roleType>
253
+ <link:roleType id="country" roleURI="http://xbrl.us/us-gaap/role/document/Country">
254
+ <link:definition>995410 - Document - Country Code</link:definition>
255
+ <link:usedOn>link:calculationLink</link:usedOn>
256
+ <link:usedOn>link:definitionLink</link:usedOn>
257
+ <link:usedOn>link:presentationLink</link:usedOn>
258
+ </link:roleType>
259
+ <link:roleType id="stpr" roleURI="http://xbrl.us/us-gaap/role/document/StateOrProvince">
260
+ <link:definition>995420 - Document - State or Province</link:definition>
261
+ <link:usedOn>link:calculationLink</link:usedOn>
262
+ <link:usedOn>link:definitionLink</link:usedOn>
263
+ <link:usedOn>link:presentationLink</link:usedOn>
264
+ </link:roleType>
265
+ <link:roleType id="currency" roleURI="http://xbrl.us/us-gaap/role/document/Currency">
266
+ <link:definition>995430 - Document - Currency</link:definition>
267
+ <link:usedOn>link:calculationLink</link:usedOn>
268
+ <link:usedOn>link:definitionLink</link:usedOn>
269
+ <link:usedOn>link:presentationLink</link:usedOn>
270
+ </link:roleType>
271
+ <link:roleType id="exch" roleURI="http://xbrl.us/us-gaap/role/document/Exchange">
272
+ <link:definition>995440 - Document - Exchange</link:definition>
273
+ <link:usedOn>link:calculationLink</link:usedOn>
274
+ <link:usedOn>link:definitionLink</link:usedOn>
275
+ <link:usedOn>link:presentationLink</link:usedOn>
276
+ </link:roleType>
277
+ <link:roleType id="sic" roleURI="http://xbrl.us/us-gaap/role/document/SIC">
278
+ <link:definition>995450 - Document - SIC</link:definition>
279
+ <link:usedOn>link:calculationLink</link:usedOn>
280
+ <link:usedOn>link:definitionLink</link:usedOn>
281
+ <link:usedOn>link:presentationLink</link:usedOn>
282
+ </link:roleType>
283
+ <link:roleType id="naics" roleURI="http://xbrl.us/us-gaap/role/document/NAICS">
284
+ <link:definition>995460 - Document - NAICS</link:definition>
285
+ <link:usedOn>link:calculationLink</link:usedOn>
286
+ <link:usedOn>link:definitionLink</link:usedOn>
287
+ <link:usedOn>link:presentationLink</link:usedOn>
288
+ </link:roleType>
289
+ <link:roleType id="sheci" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfShareholdersEquityAndOtherComprehensiveIncome">
290
+ <link:definition>148600 - Statement - Statement of Shareholders' Equity and Other Comprehensive Income</link:definition>
291
+ <link:usedOn>link:calculationLink</link:usedOn>
292
+ <link:usedOn>link:definitionLink</link:usedOn>
293
+ <link:usedOn>link:presentationLink</link:usedOn>
294
+ </link:roleType>
295
+ <link:roleType id="sheci2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfShareholdersEquityAndOtherComprehensiveIncomeCalc2">
296
+ <link:definition>148610 - Statement - Statement of Shareholders' Equity and Other Comprehensive Income (Alternative)</link:definition>
297
+ <link:usedOn>link:calculationLink</link:usedOn>
298
+ <link:usedOn>link:definitionLink</link:usedOn>
299
+ <link:usedOn>link:presentationLink</link:usedOn>
300
+ </link:roleType>
301
+ <link:roleType id="soi-reit2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateInvestmentTrustsCalc2">
302
+ <link:definition>145010 - Statement - Statement of Income, Real Estate Investment Trusts</link:definition>
303
+ <link:usedOn>link:calculationLink</link:usedOn>
304
+ <link:usedOn>link:definitionLink</link:usedOn>
305
+ <link:usedOn>link:presentationLink</link:usedOn>
306
+ </link:roleType>
307
+ <link:roleType id="dep" roleURI="http://xbrl.us/us-gaap/role/deprecated/deprecated">
308
+ <link:definition>999000 - Deprecated - Deprecated Concepts</link:definition>
309
+ <link:usedOn>link:calculationLink</link:usedOn>
310
+ <link:usedOn>link:definitionLink</link:usedOn>
311
+ <link:usedOn>link:presentationLink</link:usedOn>
312
+ </link:roleType>
313
+ <link:roleType id="deprecatedLabel" roleURI="http://xbrl.us/us-gaap/role/label/deprecatedLabel">
314
+ <link:definition>Deprecated Label</link:definition>
315
+ <link:usedOn>link:label</link:usedOn>
316
+ </link:roleType>
317
+ <link:roleType id="sheci3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfShareholdersEquityAndOtherComprehensiveIncomeCalc3">
318
+ <link:definition>148620 - Statement - Statement of Shareholders' Equity and Other Comprehensive Income (Alternative)</link:definition>
319
+ <link:usedOn>link:calculationLink</link:usedOn>
320
+ <link:usedOn>link:definitionLink</link:usedOn>
321
+ <link:usedOn>link:presentationLink</link:usedOn>
322
+ </link:roleType>
323
+ <link:roleType id="spc1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfPartnersCapitalCalc2">
324
+ <link:definition>152010 - Statement - Statement of Partners' Capital (Alternative)</link:definition>
325
+ <link:usedOn>link:calculationLink</link:usedOn>
326
+ <link:usedOn>link:definitionLink</link:usedOn>
327
+ <link:usedOn>link:presentationLink</link:usedOn>
328
+ </link:roleType>
329
+ <link:roleType id="spc2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfPartnersCapitalCalc3">
330
+ <link:definition>152020 - Statement - Statement of Partners' Capital (Alternative)</link:definition>
331
+ <link:usedOn>link:calculationLink</link:usedOn>
332
+ <link:usedOn>link:definitionLink</link:usedOn>
333
+ <link:usedOn>link:presentationLink</link:usedOn>
334
+ </link:roleType>
335
+ <link:roleType id="ReleaseNotes2009" roleURI="http://xbrl.us/us-gaap/role/label/ReleaseNotes2009">
336
+ <link:definition>Release Notes 2009</link:definition>
337
+ <link:usedOn>link:label</link:usedOn>
338
+ </link:roleType>
339
+ <link:roleType id="lea" roleURI="http://xbrl.us/us-gaap/role/disclosure/Leases">
340
+ <link:definition>831000 - Disclosure - Leases</link:definition>
341
+ <link:usedOn>link:calculationLink</link:usedOn>
342
+ <link:usedOn>link:definitionLink</link:usedOn>
343
+ <link:usedOn>link:presentationLink</link:usedOn>
344
+ </link:roleType>
345
+ <link:roleType id="lea2" roleURI="http://xbrl.us/us-gaap/role/disclosure/LeasesCalc2">
346
+ <link:definition>831500 - Disclosure - Leases, Capital (Netting Alternative)</link:definition>
347
+ <link:usedOn>link:calculationLink</link:usedOn>
348
+ <link:usedOn>link:definitionLink</link:usedOn>
349
+ <link:usedOn>link:presentationLink</link:usedOn>
350
+ </link:roleType>
351
+ <link:roleType id="dep-dei" roleURI="http://xbrl.us/us-gaap/role/deprecated/dei">
352
+ <link:definition>999100 - Deprecated - Deprecated Document Entity Concepts</link:definition>
353
+ <link:usedOn>link:calculationLink</link:usedOn>
354
+ <link:usedOn>link:definitionLink</link:usedOn>
355
+ <link:usedOn>link:presentationLink</link:usedOn>
356
+ </link:roleType>
357
+ <link:roleType id="soi2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeCalc2">
358
+ <link:definition>124050 - Statement - Statement of Income (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
359
+ <link:usedOn>link:calculationLink</link:usedOn>
360
+ <link:usedOn>link:definitionLink</link:usedOn>
361
+ <link:usedOn>link:presentationLink</link:usedOn>
362
+ </link:roleType>
363
+ <link:roleType id="soi-egm3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeAlternativeCalc3">
364
+ <link:definition>124150 - Statement - Statement of Income (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
365
+ <link:usedOn>link:calculationLink</link:usedOn>
366
+ <link:usedOn>link:definitionLink</link:usedOn>
367
+ <link:usedOn>link:presentationLink</link:usedOn>
368
+ </link:roleType>
369
+ <link:roleType id="soi-int5" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInterestBasedRevenueCalc5">
370
+ <link:definition>132050 - Statement - Statement of Income, Interest Based Revenue (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
371
+ <link:usedOn>link:calculationLink</link:usedOn>
372
+ <link:usedOn>link:definitionLink</link:usedOn>
373
+ <link:usedOn>link:presentationLink</link:usedOn>
374
+ </link:roleType>
375
+ <link:roleType id="soi-sbi4" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeSecuritiesBasedIncomeCalc4">
376
+ <link:definition>140450 - Statement - Statement of Income, Securities Based Income (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
377
+ <link:usedOn>link:calculationLink</link:usedOn>
378
+ <link:usedOn>link:definitionLink</link:usedOn>
379
+ <link:usedOn>link:presentationLink</link:usedOn>
380
+ </link:roleType>
381
+ <link:roleType id="soi-re3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateExcludingREITsCalc3">
382
+ <link:definition>144050 - Statement - Statement of Income, Real Estate, Excluding REITs (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
383
+ <link:usedOn>link:calculationLink</link:usedOn>
384
+ <link:usedOn>link:definitionLink</link:usedOn>
385
+ <link:usedOn>link:presentationLink</link:usedOn>
386
+ </link:roleType>
387
+ <link:roleType id="soi-reit3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateInvestmentTrustsCalc3">
388
+ <link:definition>145050 - Statement - Statement of Income, Real Estate Investment Trusts (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
389
+ <link:usedOn>link:calculationLink</link:usedOn>
390
+ <link:usedOn>link:definitionLink</link:usedOn>
391
+ <link:usedOn>link:presentationLink</link:usedOn>
392
+ </link:roleType>
393
+ <link:roleType id="soi-ins4" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInsuranceBasedRevenueCalc4">
394
+ <link:definition>136050 - Statement - Statement of Income, Insurance Based Revenue (Summation of Net Income (Loss) By Component) (Alternative)</link:definition>
395
+ <link:usedOn>link:calculationLink</link:usedOn>
396
+ <link:usedOn>link:definitionLink</link:usedOn>
397
+ <link:usedOn>link:presentationLink</link:usedOn>
398
+ </link:roleType>
399
+ <link:roleType id="rlnro3" roleURI="http://xbrl.us/us-gaap/role/disclosure/ReceivablesLoansNotesReceivableAndOthersNetReportedAmountByCategoryAlternative">
400
+ <link:definition>320700 - Disclosure - Receivables, Loans, Notes Receivable, and Others (Net Reported Amount, by Category Alternative)</link:definition>
401
+ <link:usedOn>link:calculationLink</link:usedOn>
402
+ <link:usedOn>link:definitionLink</link:usedOn>
403
+ <link:usedOn>link:presentationLink</link:usedOn>
404
+ </link:roleType>
405
+ <link:roleType id="inv2" roleURI="http://xbrl.us/us-gaap/role/disclosure/InventoryClassificationByIndustryAlternative">
406
+ <link:definition>340005 - Disclosure - Inventory (Classification by Industry Alternative)</link:definition>
407
+ <link:usedOn>link:calculationLink</link:usedOn>
408
+ <link:usedOn>link:definitionLink</link:usedOn>
409
+ <link:usedOn>link:presentationLink</link:usedOn>
410
+ </link:roleType>
411
+ <link:roleType id="inv3" roleURI="http://xbrl.us/us-gaap/role/disclosure/InventoryCombiningWorkInProgressAndRawMaterialsAlternative">
412
+ <link:definition>340015 - Disclosure - Inventory (Combining Work in Progress and Raw Materials)</link:definition>
413
+ <link:usedOn>link:calculationLink</link:usedOn>
414
+ <link:usedOn>link:definitionLink</link:usedOn>
415
+ <link:usedOn>link:presentationLink</link:usedOn>
416
+ </link:roleType>
417
+ <link:roleType id="deprecatedDate" roleURI="http://xbrl.us/us-gaap/role/label/deprecatedDate">
418
+ <link:definition>Deprecated Date</link:definition>
419
+ <link:usedOn>link:label</link:usedOn>
420
+ </link:roleType>
421
+ <link:roleType id="scf-indir6" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectSixthAlternate">
422
+ <link:definition>152250 - Statement - Statement of Cash Flows (Discontinued Operations Alternative)</link:definition>
423
+ <link:usedOn>link:calculationLink</link:usedOn>
424
+ <link:usedOn>link:definitionLink</link:usedOn>
425
+ <link:usedOn>link:presentationLink</link:usedOn>
426
+ </link:roleType>
427
+ <link:roleType id="sfp-ucreo1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-RealEstateOperationsFirstAlternative">
428
+ <link:definition>110201 - Statement - Statement of Financial Position, Unclassified - Real Estate Operations (First Alternative)</link:definition>
429
+ <link:usedOn>link:calculationLink</link:usedOn>
430
+ <link:usedOn>link:definitionLink</link:usedOn>
431
+ <link:usedOn>link:presentationLink</link:usedOn>
432
+ </link:roleType>
433
+ <link:roleType id="scf-dbo5" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectDepositBasedOperationsFifthAlternate">
434
+ <link:definition>160250 - Statement - Statement of Cash Flows, Indirect, Deposit Based Operations (Discontinued Operations Alternative)</link:definition>
435
+ <link:usedOn>link:calculationLink</link:usedOn>
436
+ <link:usedOn>link:definitionLink</link:usedOn>
437
+ <link:usedOn>link:presentationLink</link:usedOn>
438
+ </link:roleType>
439
+ <link:roleType id="scf-inv5" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectInvestmentBasedOperationsFifthAlternate">
440
+ <link:definition>164250 - Statement - Statement of Cash Flows, Indirect, Insurance Based Operations (Discontinued Operations Alternative)</link:definition>
441
+ <link:usedOn>link:calculationLink</link:usedOn>
442
+ <link:usedOn>link:definitionLink</link:usedOn>
443
+ <link:usedOn>link:presentationLink</link:usedOn>
444
+ </link:roleType>
445
+ <link:roleType id="scf-sbo5" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectSecuritiesBasedOperationsFifthAlternate">
446
+ <link:definition>168650 - Statement - Statement of Cash Flows, Indirect, Securities Based Operations (Discontinued Operations Alternative)</link:definition>
447
+ <link:usedOn>link:calculationLink</link:usedOn>
448
+ <link:usedOn>link:definitionLink</link:usedOn>
449
+ <link:usedOn>link:presentationLink</link:usedOn>
450
+ </link:roleType>
451
+ <link:roleType id="scf-re2" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectRealEstateSecondAlternate">
452
+ <link:definition>170250 - Statement - Statement of Cash Flows, Indirect, Real Estate, Including REITs (Discontinued Operations Alternative)</link:definition>
453
+ <link:usedOn>link:calculationLink</link:usedOn>
454
+ <link:usedOn>link:definitionLink</link:usedOn>
455
+ <link:usedOn>link:presentationLink</link:usedOn>
456
+ </link:roleType>
457
+ <link:roleType id="sfp-clreo1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionClassified-RealEstateOperationsFirstAlternative">
458
+ <link:definition>110100 - Statement - Statement of Financial Position, Classified - Real Estate Operations (First Alternative)</link:definition>
459
+ <link:usedOn>link:calculationLink</link:usedOn>
460
+ <link:usedOn>link:definitionLink</link:usedOn>
461
+ <link:usedOn>link:presentationLink</link:usedOn>
462
+ </link:roleType>
463
+ <link:roleType id="dep-exch" roleURI="http://xbrl.us/us-gaap/role/deprecated/exch">
464
+ <link:definition>999020 - Deprecated - Deprecated Exchange Concepts</link:definition>
465
+ <link:usedOn>link:calculationLink</link:usedOn>
466
+ <link:usedOn>link:definitionLink</link:usedOn>
467
+ <link:usedOn>link:presentationLink</link:usedOn>
468
+ </link:roleType>
469
+ <link:roleType id="scf-dir1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsDirectFirstAlternate">
470
+ <link:definition>172850 - Statement - Statement of Cash Flows, Direct Method Operating Activities (Discontinued Operations Alternative)</link:definition>
471
+ <link:usedOn>link:calculationLink</link:usedOn>
472
+ <link:usedOn>link:definitionLink</link:usedOn>
473
+ <link:usedOn>link:presentationLink</link:usedOn>
474
+ </link:roleType>
475
+ <link:roleType id="debt5" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtCalc5">
476
+ <link:definition>460400 - Disclosure - Debt (Long-term Debt Less Current Maturities Calc Alternative)</link:definition>
477
+ <link:usedOn>link:calculationLink</link:usedOn>
478
+ <link:usedOn>link:definitionLink</link:usedOn>
479
+ <link:usedOn>link:presentationLink</link:usedOn>
480
+ </link:roleType>
481
+ <link:roleType id="axisDefault" roleURI="http://xbrl.us/us-gaap/role/label/axisDefault">
482
+ <link:definition>Axis Default</link:definition>
483
+ <link:usedOn>link:label</link:usedOn>
484
+ </link:roleType>
485
+ <link:roleType id="FutureDeprecate" roleURI="http://xbrl.us/us-gaap/role/label/FutureDeprecate">
486
+ <link:definition>FutureDeprecate</link:definition>
487
+ <link:usedOn>link:label</link:usedOn>
488
+ </link:roleType>
489
+ <link:roleType id="ru" roleURI="http://xbrl.us/us-gaap/role/disclosure/RisksAndUncertainties">
490
+ <link:definition>275000 - Disclosure - Risks and Uncertainties</link:definition>
491
+ <link:usedOn>link:calculationLink</link:usedOn>
492
+ <link:usedOn>link:definitionLink</link:usedOn>
493
+ <link:usedOn>link:presentationLink</link:usedOn>
494
+ </link:roleType>
495
+ <link:roleType id="cce" roleURI="http://xbrl.us/us-gaap/role/disclosure/CashAndCashEquivalents">
496
+ <link:definition>300000 - Disclosure - Cash and Cash Equivalents</link:definition>
497
+ <link:usedOn>link:calculationLink</link:usedOn>
498
+ <link:usedOn>link:definitionLink</link:usedOn>
499
+ <link:usedOn>link:presentationLink</link:usedOn>
500
+ </link:roleType>
501
+ <link:roleType id="inv" roleURI="http://xbrl.us/us-gaap/role/disclosure/Inventory">
502
+ <link:definition>340000 - Disclosure - Inventory</link:definition>
503
+ <link:usedOn>link:calculationLink</link:usedOn>
504
+ <link:usedOn>link:definitionLink</link:usedOn>
505
+ <link:usedOn>link:presentationLink</link:usedOn>
506
+ </link:roleType>
507
+ <link:roleType id="iago" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOther">
508
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other</link:definition>
509
+ <link:usedOn>link:calculationLink</link:usedOn>
510
+ <link:usedOn>link:definitionLink</link:usedOn>
511
+ <link:usedOn>link:presentationLink</link:usedOn>
512
+ </link:roleType>
513
+ <link:roleType id="pay" roleURI="http://xbrl.us/us-gaap/role/disclosure/PayablesAndAccruals">
514
+ <link:definition>400000 - Disclosure - Payables and Accruals</link:definition>
515
+ <link:usedOn>link:calculationLink</link:usedOn>
516
+ <link:usedOn>link:definitionLink</link:usedOn>
517
+ <link:usedOn>link:presentationLink</link:usedOn>
518
+ </link:roleType>
519
+ <link:roleType id="aro" roleURI="http://xbrl.us/us-gaap/role/disclosure/AssetRetirementObligations">
520
+ <link:definition>420000 - Disclosure - Asset Retirement Obligations</link:definition>
521
+ <link:usedOn>link:calculationLink</link:usedOn>
522
+ <link:usedOn>link:definitionLink</link:usedOn>
523
+ <link:usedOn>link:presentationLink</link:usedOn>
524
+ </link:roleType>
525
+ <link:roleType id="soi" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncome">
526
+ <link:definition>124000 - Statement - Statement of Income (Including Gross Margin)</link:definition>
527
+ <link:usedOn>link:presentationLink</link:usedOn>
528
+ <link:usedOn>link:calculationLink</link:usedOn>
529
+ <link:usedOn>link:definitionLink</link:usedOn>
530
+ </link:roleType>
531
+ <link:roleType id="sfp-cls" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionClassified">
532
+ <link:definition>104000 - Statement - Statement of Financial Position, Classified</link:definition>
533
+ <link:usedOn>link:presentationLink</link:usedOn>
534
+ <link:usedOn>link:calculationLink</link:usedOn>
535
+ <link:usedOn>link:definitionLink</link:usedOn>
536
+ </link:roleType>
537
+ <link:roleType id="scf-dir" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsDirect">
538
+ <link:definition>172600 - Statement - Statement of Cash Flows, Direct Method Operating Activities</link:definition>
539
+ <link:usedOn>link:presentationLink</link:usedOn>
540
+ <link:usedOn>link:calculationLink</link:usedOn>
541
+ <link:usedOn>link:definitionLink</link:usedOn>
542
+ </link:roleType>
543
+ <link:roleType id="scf-indir" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirect">
544
+ <link:definition>152200 - Statement - Statement of Cash Flows</link:definition>
545
+ <link:usedOn>link:presentationLink</link:usedOn>
546
+ <link:usedOn>link:calculationLink</link:usedOn>
547
+ <link:usedOn>link:definitionLink</link:usedOn>
548
+ </link:roleType>
549
+ <link:roleType id="spc" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfPartnersCapital">
550
+ <link:definition>152000 - Statement - Statement of Partners' Capital</link:definition>
551
+ <link:usedOn>link:presentationLink</link:usedOn>
552
+ <link:usedOn>link:calculationLink</link:usedOn>
553
+ <link:usedOn>link:definitionLink</link:usedOn>
554
+ </link:roleType>
555
+ <link:roleType id="soc" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfOtherComprehensiveIncome">
556
+ <link:definition>148400 - Statement - Statement of Other Comprehensive Income</link:definition>
557
+ <link:usedOn>link:calculationLink</link:usedOn>
558
+ <link:usedOn>link:definitionLink</link:usedOn>
559
+ <link:usedOn>link:presentationLink</link:usedOn>
560
+ </link:roleType>
561
+ <link:roleType id="soi-int" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInterestBasedRevenue">
562
+ <link:definition>132001 - Statement - Statement of Income, Interest Based Revenue</link:definition>
563
+ <link:usedOn>link:presentationLink</link:usedOn>
564
+ <link:usedOn>link:calculationLink</link:usedOn>
565
+ <link:usedOn>link:definitionLink</link:usedOn>
566
+ </link:roleType>
567
+ <link:roleType id="sfp-dbo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-DepositBasedOperations">
568
+ <link:definition>108000 - Statement - Statement of Financial Position, Unclassified - Deposit Based Operations</link:definition>
569
+ <link:usedOn>link:presentationLink</link:usedOn>
570
+ <link:usedOn>link:calculationLink</link:usedOn>
571
+ <link:usedOn>link:definitionLink</link:usedOn>
572
+ </link:roleType>
573
+ <link:roleType id="scf-dbo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectDepositBasedOperations">
574
+ <link:definition>160000 - Statement - Statement of Cash Flows, Deposit Based Operations</link:definition>
575
+ <link:usedOn>link:presentationLink</link:usedOn>
576
+ <link:usedOn>link:calculationLink</link:usedOn>
577
+ <link:usedOn>link:definitionLink</link:usedOn>
578
+ </link:roleType>
579
+ <link:roleType id="soi-ins" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInsuranceBasedRevenue">
580
+ <link:definition>136000 - Statement - Statement of Income, Insurance Based Revenue</link:definition>
581
+ <link:usedOn>link:presentationLink</link:usedOn>
582
+ <link:usedOn>link:calculationLink</link:usedOn>
583
+ <link:usedOn>link:definitionLink</link:usedOn>
584
+ </link:roleType>
585
+ <link:roleType id="sfp-ibo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-InvestmentBasedOperations">
586
+ <link:definition>108200 - Statement - Statement of Financial Position, Unclassified - Insurance Based Operations</link:definition>
587
+ <link:usedOn>link:presentationLink</link:usedOn>
588
+ <link:usedOn>link:calculationLink</link:usedOn>
589
+ <link:usedOn>link:definitionLink</link:usedOn>
590
+ </link:roleType>
591
+ <link:roleType id="scf-inv" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectInvestmentBasedOperations">
592
+ <link:definition>164000 - Statement - Statement of Cash Flows, Insurance Based Operations</link:definition>
593
+ <link:usedOn>link:presentationLink</link:usedOn>
594
+ <link:usedOn>link:calculationLink</link:usedOn>
595
+ <link:usedOn>link:definitionLink</link:usedOn>
596
+ </link:roleType>
597
+ <link:roleType id="soi-sbi" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeSecuritiesBasedIncome">
598
+ <link:definition>140400 - Statement - Statement of Income, Securities Based Income</link:definition>
599
+ <link:usedOn>link:presentationLink</link:usedOn>
600
+ <link:usedOn>link:calculationLink</link:usedOn>
601
+ <link:usedOn>link:definitionLink</link:usedOn>
602
+ </link:roleType>
603
+ <link:roleType id="sfp-sbo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-SecuritiesBasedOperations">
604
+ <link:definition>112000 - Statement - Statement of Financial Position, Unclassified - Securities Based Operations</link:definition>
605
+ <link:usedOn>link:presentationLink</link:usedOn>
606
+ <link:usedOn>link:calculationLink</link:usedOn>
607
+ <link:usedOn>link:definitionLink</link:usedOn>
608
+ </link:roleType>
609
+ <link:roleType id="scf-sbo" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectSecuritiesBasedOperations">
610
+ <link:definition>168400 - Statement - Statement of Cash Flows, Securities Based Operations</link:definition>
611
+ <link:usedOn>link:presentationLink</link:usedOn>
612
+ <link:usedOn>link:calculationLink</link:usedOn>
613
+ <link:usedOn>link:definitionLink</link:usedOn>
614
+ </link:roleType>
615
+ <link:roleType id="ocpfs" roleURI="http://xbrl.us/us-gaap/role/disclosure/OrganizationConsolidationAndPresentationOfFinancialStatements">
616
+ <link:definition>200000 - Disclosure - Organization, Consolidation and Presentation of Financial Statements</link:definition>
617
+ <link:usedOn>link:presentationLink</link:usedOn>
618
+ <link:usedOn>link:calculationLink</link:usedOn>
619
+ <link:usedOn>link:definitionLink</link:usedOn>
620
+ </link:roleType>
621
+ <link:roleType id="acec" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingChangesAndErrorCorrections">
622
+ <link:definition>250000 - Disclosure - Accounting Changes and Error Corrections</link:definition>
623
+ <link:usedOn>link:presentationLink</link:usedOn>
624
+ <link:usedOn>link:calculationLink</link:usedOn>
625
+ <link:usedOn>link:definitionLink</link:usedOn>
626
+ </link:roleType>
627
+ <link:roleType id="ir" roleURI="http://xbrl.us/us-gaap/role/disclosure/InterimReporting">
628
+ <link:definition>285000 - Disclosure - Interim Reporting</link:definition>
629
+ <link:usedOn>link:presentationLink</link:usedOn>
630
+ <link:usedOn>link:calculationLink</link:usedOn>
631
+ <link:usedOn>link:definitionLink</link:usedOn>
632
+ </link:roleType>
633
+ <link:roleType id="ap" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingPolicies">
634
+ <link:definition>290000 - Disclosure - Accounting Policies</link:definition>
635
+ <link:usedOn>link:presentationLink</link:usedOn>
636
+ <link:usedOn>link:calculationLink</link:usedOn>
637
+ <link:usedOn>link:definitionLink</link:usedOn>
638
+ </link:roleType>
639
+ <link:roleType id="rlnro" roleURI="http://xbrl.us/us-gaap/role/disclosure/ReceivablesLoansNotesReceivableAndOthers">
640
+ <link:definition>320000 - Disclosure - Receivables, Loans, Notes Receivable, and Others</link:definition>
641
+ <link:usedOn>link:presentationLink</link:usedOn>
642
+ <link:usedOn>link:calculationLink</link:usedOn>
643
+ <link:usedOn>link:definitionLink</link:usedOn>
644
+ </link:roleType>
645
+ <link:roleType id="ides" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecurities">
646
+ <link:definition>330000 - Disclosure - Investments, Debt and Equity Securities</link:definition>
647
+ <link:usedOn>link:presentationLink</link:usedOn>
648
+ <link:usedOn>link:calculationLink</link:usedOn>
649
+ <link:usedOn>link:definitionLink</link:usedOn>
650
+ </link:roleType>
651
+ <link:roleType id="emjv" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsEquityMethodAndJointVentures">
652
+ <link:definition>333000 - Disclosure - Investments, Equity Method and Joint Ventures</link:definition>
653
+ <link:usedOn>link:presentationLink</link:usedOn>
654
+ <link:usedOn>link:calculationLink</link:usedOn>
655
+ <link:usedOn>link:definitionLink</link:usedOn>
656
+ </link:roleType>
657
+ <link:roleType id="iaoi" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsAllOtherInvestments">
658
+ <link:definition>336000 - Disclosure - Investments, All Other Investments</link:definition>
659
+ <link:usedOn>link:presentationLink</link:usedOn>
660
+ <link:usedOn>link:calculationLink</link:usedOn>
661
+ <link:usedOn>link:definitionLink</link:usedOn>
662
+ </link:roleType>
663
+ <link:roleType id="dccpoa" roleURI="http://xbrl.us/us-gaap/role/disclosure/DeferredCostsCapitalizedPrepaidAndOtherAssets">
664
+ <link:definition>350000 - Disclosure - Deferred Costs, Capitalized, Prepaid, and Other Assets</link:definition>
665
+ <link:usedOn>link:presentationLink</link:usedOn>
666
+ <link:usedOn>link:calculationLink</link:usedOn>
667
+ <link:usedOn>link:definitionLink</link:usedOn>
668
+ </link:roleType>
669
+ <link:roleType id="ppe" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipment">
670
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment</link:definition>
671
+ <link:usedOn>link:presentationLink</link:usedOn>
672
+ <link:usedOn>link:calculationLink</link:usedOn>
673
+ <link:usedOn>link:definitionLink</link:usedOn>
674
+ </link:roleType>
675
+ <link:roleType id="ero" roleURI="http://xbrl.us/us-gaap/role/disclosure/EnvironmentalRemediationObligations">
676
+ <link:definition>425000 - Disclosure - Environmental Remediation Obligations</link:definition>
677
+ <link:usedOn>link:presentationLink</link:usedOn>
678
+ <link:usedOn>link:calculationLink</link:usedOn>
679
+ <link:usedOn>link:definitionLink</link:usedOn>
680
+ </link:roleType>
681
+ <link:roleType id="edco" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExitOrDisposalCostObligations">
682
+ <link:definition>430000 - Disclosure - Exit or Disposal Cost Obligations</link:definition>
683
+ <link:usedOn>link:presentationLink</link:usedOn>
684
+ <link:usedOn>link:calculationLink</link:usedOn>
685
+ <link:usedOn>link:definitionLink</link:usedOn>
686
+ </link:roleType>
687
+ <link:roleType id="dr" roleURI="http://xbrl.us/us-gaap/role/disclosure/DeferredRevenue">
688
+ <link:definition>440000 - Disclosure - Deferred Revenue</link:definition>
689
+ <link:usedOn>link:presentationLink</link:usedOn>
690
+ <link:usedOn>link:calculationLink</link:usedOn>
691
+ <link:usedOn>link:definitionLink</link:usedOn>
692
+ </link:roleType>
693
+ <link:roleType id="cc" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingencies">
694
+ <link:definition>450000 - Disclosure - Commitment and Contingencies</link:definition>
695
+ <link:usedOn>link:presentationLink</link:usedOn>
696
+ <link:usedOn>link:calculationLink</link:usedOn>
697
+ <link:usedOn>link:definitionLink</link:usedOn>
698
+ </link:roleType>
699
+ <link:roleType id="guarantees" roleURI="http://xbrl.us/us-gaap/role/disclosure/Guarantees">
700
+ <link:definition>456000 - Disclosure - Guarantees</link:definition>
701
+ <link:usedOn>link:presentationLink</link:usedOn>
702
+ <link:usedOn>link:calculationLink</link:usedOn>
703
+ <link:usedOn>link:definitionLink</link:usedOn>
704
+ </link:roleType>
705
+ <link:roleType id="debt" roleURI="http://xbrl.us/us-gaap/role/disclosure/Debt">
706
+ <link:definition>460000 - Disclosure - Debt</link:definition>
707
+ <link:usedOn>link:presentationLink</link:usedOn>
708
+ <link:usedOn>link:calculationLink</link:usedOn>
709
+ <link:usedOn>link:definitionLink</link:usedOn>
710
+ </link:roleType>
711
+ <link:roleType id="othliab" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilities">
712
+ <link:definition>470000 - Disclosure - Other Liabilities</link:definition>
713
+ <link:usedOn>link:presentationLink</link:usedOn>
714
+ <link:usedOn>link:calculationLink</link:usedOn>
715
+ <link:usedOn>link:definitionLink</link:usedOn>
716
+ </link:roleType>
717
+ <link:roleType id="ni" roleURI="http://xbrl.us/us-gaap/role/disclosure/MinorityInterest">
718
+ <link:definition>472000 - Disclosure - Noncontrolling Interest</link:definition>
719
+ <link:usedOn>link:presentationLink</link:usedOn>
720
+ <link:usedOn>link:calculationLink</link:usedOn>
721
+ <link:usedOn>link:definitionLink</link:usedOn>
722
+ </link:roleType>
723
+ <link:roleType id="te" roleURI="http://xbrl.us/us-gaap/role/disclosure/TemporaryEquity">
724
+ <link:definition>480000 - Disclosure - Temporary Equity</link:definition>
725
+ <link:usedOn>link:presentationLink</link:usedOn>
726
+ <link:usedOn>link:calculationLink</link:usedOn>
727
+ <link:usedOn>link:definitionLink</link:usedOn>
728
+ </link:roleType>
729
+ <link:roleType id="equity" roleURI="http://xbrl.us/us-gaap/role/disclosure/Equity">
730
+ <link:definition>500000 - Disclosure - Equity</link:definition>
731
+ <link:usedOn>link:presentationLink</link:usedOn>
732
+ <link:usedOn>link:calculationLink</link:usedOn>
733
+ <link:usedOn>link:definitionLink</link:usedOn>
734
+ </link:roleType>
735
+ <link:roleType id="crcgen" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsGeneral">
736
+ <link:definition>705000 - Disclosure - Compensation Related Costs, General</link:definition>
737
+ <link:usedOn>link:presentationLink</link:usedOn>
738
+ <link:usedOn>link:calculationLink</link:usedOn>
739
+ <link:usedOn>link:definitionLink</link:usedOn>
740
+ </link:roleType>
741
+ <link:roleType id="crcsbp" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensation">
742
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments</link:definition>
743
+ <link:usedOn>link:presentationLink</link:usedOn>
744
+ <link:usedOn>link:calculationLink</link:usedOn>
745
+ <link:usedOn>link:definitionLink</link:usedOn>
746
+ </link:roleType>
747
+ <link:roleType id="crcrb" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsRetirementBenefits">
748
+ <link:definition>730000 - Disclosure - Compensation Related Costs, Retirement Benefits</link:definition>
749
+ <link:usedOn>link:presentationLink</link:usedOn>
750
+ <link:usedOn>link:calculationLink</link:usedOn>
751
+ <link:usedOn>link:definitionLink</link:usedOn>
752
+ </link:roleType>
753
+ <link:roleType id="crcpb" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsPostemploymentBenefits">
754
+ <link:definition>740000 - Disclosure - Compensation Related Costs, Postemployment Benefits</link:definition>
755
+ <link:usedOn>link:presentationLink</link:usedOn>
756
+ <link:usedOn>link:calculationLink</link:usedOn>
757
+ <link:usedOn>link:definitionLink</link:usedOn>
758
+ </link:roleType>
759
+ <link:roleType id="otherexp" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherExpenses">
760
+ <link:definition>750000 - Disclosure - Other Income and Expenses</link:definition>
761
+ <link:usedOn>link:presentationLink</link:usedOn>
762
+ <link:usedOn>link:calculationLink</link:usedOn>
763
+ <link:usedOn>link:definitionLink</link:usedOn>
764
+ </link:roleType>
765
+ <link:roleType id="rd" roleURI="http://xbrl.us/us-gaap/role/disclosure/ResearchAndDevelopment">
766
+ <link:definition>760000 - Disclosure - Research and Development</link:definition>
767
+ <link:usedOn>link:presentationLink</link:usedOn>
768
+ <link:usedOn>link:calculationLink</link:usedOn>
769
+ <link:usedOn>link:definitionLink</link:usedOn>
770
+ </link:roleType>
771
+ <link:roleType id="inctax" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxes">
772
+ <link:definition>770000 - Disclosure - Income Taxes</link:definition>
773
+ <link:usedOn>link:presentationLink</link:usedOn>
774
+ <link:usedOn>link:calculationLink</link:usedOn>
775
+ <link:usedOn>link:definitionLink</link:usedOn>
776
+ </link:roleType>
777
+ <link:roleType id="disops" roleURI="http://xbrl.us/us-gaap/role/disclosure/DiscontinuedOperations">
778
+ <link:definition>775000 - Disclosure - Discontinued Operations and Disposal Groups</link:definition>
779
+ <link:usedOn>link:presentationLink</link:usedOn>
780
+ <link:usedOn>link:calculationLink</link:usedOn>
781
+ <link:usedOn>link:definitionLink</link:usedOn>
782
+ </link:roleType>
783
+ <link:roleType id="eui" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtraordinaryAndUnusualItems">
784
+ <link:definition>778000 - Disclosure - Extraordinary and Unusual Items</link:definition>
785
+ <link:usedOn>link:presentationLink</link:usedOn>
786
+ <link:usedOn>link:calculationLink</link:usedOn>
787
+ <link:usedOn>link:definitionLink</link:usedOn>
788
+ </link:roleType>
789
+ <link:roleType id="eps" roleURI="http://xbrl.us/us-gaap/role/disclosure/EarningsPerShare">
790
+ <link:definition>780000 - Disclosure - Earnings Per Share</link:definition>
791
+ <link:usedOn>link:presentationLink</link:usedOn>
792
+ <link:usedOn>link:calculationLink</link:usedOn>
793
+ <link:usedOn>link:definitionLink</link:usedOn>
794
+ </link:roleType>
795
+ <link:roleType id="sr" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReporting">
796
+ <link:definition>790000 - Disclosure - Segment Reporting</link:definition>
797
+ <link:usedOn>link:presentationLink</link:usedOn>
798
+ <link:usedOn>link:calculationLink</link:usedOn>
799
+ <link:usedOn>link:definitionLink</link:usedOn>
800
+ </link:roleType>
801
+ <link:roleType id="scfsup" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosures">
802
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures</link:definition>
803
+ <link:usedOn>link:presentationLink</link:usedOn>
804
+ <link:usedOn>link:calculationLink</link:usedOn>
805
+ <link:usedOn>link:definitionLink</link:usedOn>
806
+ </link:roleType>
807
+ <link:roleType id="bc" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinations">
808
+ <link:definition>800000 - Disclosure - Business Combinations</link:definition>
809
+ <link:usedOn>link:presentationLink</link:usedOn>
810
+ <link:usedOn>link:calculationLink</link:usedOn>
811
+ <link:usedOn>link:definitionLink</link:usedOn>
812
+ </link:roleType>
813
+ <link:roleType id="reorg" roleURI="http://xbrl.us/us-gaap/role/disclosure/Reorganizations">
814
+ <link:definition>802000 - Disclosure - Reorganizations</link:definition>
815
+ <link:usedOn>link:presentationLink</link:usedOn>
816
+ <link:usedOn>link:calculationLink</link:usedOn>
817
+ <link:usedOn>link:definitionLink</link:usedOn>
818
+ </link:roleType>
819
+ <link:roleType id="diha" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivities">
820
+ <link:definition>805000 - Disclosure - Derivative Instruments and Hedging Activities</link:definition>
821
+ <link:usedOn>link:presentationLink</link:usedOn>
822
+ <link:usedOn>link:calculationLink</link:usedOn>
823
+ <link:usedOn>link:definitionLink</link:usedOn>
824
+ </link:roleType>
825
+ <link:roleType id="fifvd" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosures">
826
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures</link:definition>
827
+ <link:usedOn>link:presentationLink</link:usedOn>
828
+ <link:usedOn>link:calculationLink</link:usedOn>
829
+ <link:usedOn>link:definitionLink</link:usedOn>
830
+ </link:roleType>
831
+ <link:roleType id="foct" roleURI="http://xbrl.us/us-gaap/role/disclosure/ForeignOperationsAndCurrencyTranslation">
832
+ <link:definition>820000 - Disclosure - Foreign Operations and Currency Translation</link:definition>
833
+ <link:usedOn>link:presentationLink</link:usedOn>
834
+ <link:usedOn>link:calculationLink</link:usedOn>
835
+ <link:usedOn>link:definitionLink</link:usedOn>
836
+ </link:roleType>
837
+ <link:roleType id="nt" roleURI="http://xbrl.us/us-gaap/role/disclosure/NonmonetaryTransactions">
838
+ <link:definition>840000 - Disclosure - Nonmonetary Transactions</link:definition>
839
+ <link:usedOn>link:presentationLink</link:usedOn>
840
+ <link:usedOn>link:calculationLink</link:usedOn>
841
+ <link:usedOn>link:definitionLink</link:usedOn>
842
+ </link:roleType>
843
+ <link:roleType id="rpd" roleURI="http://xbrl.us/us-gaap/role/disclosure/RelatedPartyDisclosures">
844
+ <link:definition>845000 - Disclosure - Related Party Disclosures</link:definition>
845
+ <link:usedOn>link:presentationLink</link:usedOn>
846
+ <link:usedOn>link:calculationLink</link:usedOn>
847
+ <link:usedOn>link:definitionLink</link:usedOn>
848
+ </link:roleType>
849
+ <link:roleType id="ts" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicing">
850
+ <link:definition>865000 - Disclosure - Transfers and Servicing</link:definition>
851
+ <link:usedOn>link:presentationLink</link:usedOn>
852
+ <link:usedOn>link:calculationLink</link:usedOn>
853
+ <link:usedOn>link:definitionLink</link:usedOn>
854
+ </link:roleType>
855
+ <link:roleType id="se" roleURI="http://xbrl.us/us-gaap/role/disclosure/SubsequentEvents">
856
+ <link:definition>870000 - Disclosure - Subsequent Events</link:definition>
857
+ <link:usedOn>link:presentationLink</link:usedOn>
858
+ <link:usedOn>link:calculationLink</link:usedOn>
859
+ <link:usedOn>link:definitionLink</link:usedOn>
860
+ </link:roleType>
861
+ <link:roleType id="con" roleURI="http://xbrl.us/us-gaap/role/disclosure/Contractors">
862
+ <link:definition>910000 - Disclosure - Contractors</link:definition>
863
+ <link:usedOn>link:presentationLink</link:usedOn>
864
+ <link:usedOn>link:calculationLink</link:usedOn>
865
+ <link:usedOn>link:definitionLink</link:usedOn>
866
+ </link:roleType>
867
+ <link:roleType id="dse" roleURI="http://xbrl.us/us-gaap/role/disclosure/DevelopingStageEnterprises">
868
+ <link:definition>915000 - Disclosure - Development Stage Enterprises</link:definition>
869
+ <link:usedOn>link:presentationLink</link:usedOn>
870
+ <link:usedOn>link:calculationLink</link:usedOn>
871
+ <link:usedOn>link:definitionLink</link:usedOn>
872
+ </link:roleType>
873
+ <link:roleType id="fs-bt" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThrift">
874
+ <link:definition>940000 - Disclosure - Financial Services, Banking and Thrift</link:definition>
875
+ <link:usedOn>link:presentationLink</link:usedOn>
876
+ <link:usedOn>link:calculationLink</link:usedOn>
877
+ <link:usedOn>link:definitionLink</link:usedOn>
878
+ </link:roleType>
879
+ <link:roleType id="fs-bd" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealers">
880
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers</link:definition>
881
+ <link:usedOn>link:presentationLink</link:usedOn>
882
+ <link:usedOn>link:calculationLink</link:usedOn>
883
+ <link:usedOn>link:definitionLink</link:usedOn>
884
+ </link:roleType>
885
+ <link:roleType id="fs-ins" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsurance">
886
+ <link:definition>944000 - Disclosure - Financial Services, Insurance</link:definition>
887
+ <link:usedOn>link:presentationLink</link:usedOn>
888
+ <link:usedOn>link:calculationLink</link:usedOn>
889
+ <link:usedOn>link:definitionLink</link:usedOn>
890
+ </link:roleType>
891
+ <link:roleType id="fs-mort" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesMortgageBanking">
892
+ <link:definition>948000 - Disclosure - Financial Services, Mortgage Banking</link:definition>
893
+ <link:usedOn>link:presentationLink</link:usedOn>
894
+ <link:usedOn>link:calculationLink</link:usedOn>
895
+ <link:usedOn>link:definitionLink</link:usedOn>
896
+ </link:roleType>
897
+ <link:roleType id="hco" roleURI="http://xbrl.us/us-gaap/role/disclosure/HealthCareOrganizations">
898
+ <link:definition>955000 - Disclosure - Health Care Organizations</link:definition>
899
+ <link:usedOn>link:presentationLink</link:usedOn>
900
+ <link:usedOn>link:calculationLink</link:usedOn>
901
+ <link:usedOn>link:definitionLink</link:usedOn>
902
+ </link:roleType>
903
+ <link:roleType id="ei" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustries">
904
+ <link:definition>965000 - Disclosure - Extractive Industries</link:definition>
905
+ <link:usedOn>link:presentationLink</link:usedOn>
906
+ <link:usedOn>link:calculationLink</link:usedOn>
907
+ <link:usedOn>link:definitionLink</link:usedOn>
908
+ </link:roleType>
909
+ <link:roleType id="re" roleURI="http://xbrl.us/us-gaap/role/disclosure/RealEstate">
910
+ <link:definition>975000 - Disclosure - Real Estate</link:definition>
911
+ <link:usedOn>link:presentationLink</link:usedOn>
912
+ <link:usedOn>link:calculationLink</link:usedOn>
913
+ <link:usedOn>link:definitionLink</link:usedOn>
914
+ </link:roleType>
915
+ <link:roleType id="regop" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperations">
916
+ <link:definition>980000 - Disclosure - Regulated Operations</link:definition>
917
+ <link:usedOn>link:presentationLink</link:usedOn>
918
+ <link:usedOn>link:calculationLink</link:usedOn>
919
+ <link:usedOn>link:definitionLink</link:usedOn>
920
+ </link:roleType>
921
+ <link:roleType id="sec-vq" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-09ValuationAndQualifyingAccounts">
922
+ <link:definition>993000 - Disclosure - SEC Schedule, Article 12-09, Valuation and Qualifying Accounts</link:definition>
923
+ <link:usedOn>link:presentationLink</link:usedOn>
924
+ <link:usedOn>link:calculationLink</link:usedOn>
925
+ <link:usedOn>link:definitionLink</link:usedOn>
926
+ </link:roleType>
927
+ <link:roleType id="sec-re" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-28RealEstateAndAccumulatedDepreciation">
928
+ <link:definition>993200 - Disclosure - SEC Schedule, Article 12-28, Real Estate and Accumulated Depreciation</link:definition>
929
+ <link:usedOn>link:presentationLink</link:usedOn>
930
+ <link:usedOn>link:calculationLink</link:usedOn>
931
+ <link:usedOn>link:definitionLink</link:usedOn>
932
+ </link:roleType>
933
+ <link:roleType id="sec-mort" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-29MortgageLoansOnRealEstate">
934
+ <link:definition>993400 - Disclosure - SEC Schedule, Article 12-29, Mortgage Loans on Real Estate</link:definition>
935
+ <link:usedOn>link:presentationLink</link:usedOn>
936
+ <link:usedOn>link:calculationLink</link:usedOn>
937
+ <link:usedOn>link:definitionLink</link:usedOn>
938
+ </link:roleType>
939
+ <link:roleType id="sec-sum" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-15SummaryOfInvestments-OtherThanInvestmentsInRelatedParties">
940
+ <link:definition>993600 - Disclosure - SEC Schedule, Article 12-15, Summary of Investments - Other than Investments in Related Parties</link:definition>
941
+ <link:usedOn>link:presentationLink</link:usedOn>
942
+ <link:usedOn>link:calculationLink</link:usedOn>
943
+ <link:usedOn>link:definitionLink</link:usedOn>
944
+ </link:roleType>
945
+ <link:roleType id="sec-supins" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-16SupplementaryInsuranceInformation">
946
+ <link:definition>993800 - Disclosure - SEC Schedule, Article 12-16, Supplementary Insurance Information</link:definition>
947
+ <link:usedOn>link:presentationLink</link:usedOn>
948
+ <link:usedOn>link:calculationLink</link:usedOn>
949
+ <link:usedOn>link:definitionLink</link:usedOn>
950
+ </link:roleType>
951
+ <link:roleType id="sec-reins" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-17Reinsurance">
952
+ <link:definition>994000 - Disclosure - SEC Schedule, Article 12-17, Reinsurance</link:definition>
953
+ <link:usedOn>link:presentationLink</link:usedOn>
954
+ <link:usedOn>link:calculationLink</link:usedOn>
955
+ <link:usedOn>link:definitionLink</link:usedOn>
956
+ </link:roleType>
957
+ <link:roleType id="sec-suppc" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-18SupplementalInformationForProperty-CasualtyInsuranceUnderwriters">
958
+ <link:definition>994200 - Disclosure - SEC Schedule, Article 12-18, Supplemental Information (for Property-Casualty Insurance Underwriters)</link:definition>
959
+ <link:usedOn>link:presentationLink</link:usedOn>
960
+ <link:usedOn>link:calculationLink</link:usedOn>
961
+ <link:usedOn>link:definitionLink</link:usedOn>
962
+ </link:roleType>
963
+ <link:roleType id="sec-cert" roleURI="http://xbrl.us/us-gaap/role/document/SECCertification">
964
+ <link:definition>994400 - Document - SEC Certification</link:definition>
965
+ <link:usedOn>link:presentationLink</link:usedOn>
966
+ <link:usedOn>link:calculationLink</link:usedOn>
967
+ <link:usedOn>link:definitionLink</link:usedOn>
968
+ </link:roleType>
969
+ <link:roleType id="mr" roleURI="http://xbrl.us/us-gaap/role/document/ManagementReport">
970
+ <link:definition>994600 - Document - Management Report</link:definition>
971
+ <link:usedOn>link:presentationLink</link:usedOn>
972
+ <link:usedOn>link:calculationLink</link:usedOn>
973
+ <link:usedOn>link:definitionLink</link:usedOn>
974
+ </link:roleType>
975
+ <link:roleType id="mda" roleURI="http://xbrl.us/us-gaap/role/document/ManagementDiscussionAndAnalysis">
976
+ <link:definition>994800 - Document - Management Discussion and Analysis</link:definition>
977
+ <link:usedOn>link:presentationLink</link:usedOn>
978
+ <link:usedOn>link:calculationLink</link:usedOn>
979
+ <link:usedOn>link:definitionLink</link:usedOn>
980
+ </link:roleType>
981
+ <link:roleType id="ar" roleURI="http://xbrl.us/us-gaap/role/document/AccountantsReport">
982
+ <link:definition>995000 - Document - Accountants Report</link:definition>
983
+ <link:usedOn>link:presentationLink</link:usedOn>
984
+ <link:usedOn>link:calculationLink</link:usedOn>
985
+ <link:usedOn>link:definitionLink</link:usedOn>
986
+ </link:roleType>
987
+ <link:roleType id="di" roleURI="http://xbrl.us/us-gaap/role/document/DocumentInformation">
988
+ <link:definition>995200 - Document - Document Information</link:definition>
989
+ <link:usedOn>link:presentationLink</link:usedOn>
990
+ <link:usedOn>link:calculationLink</link:usedOn>
991
+ <link:usedOn>link:definitionLink</link:usedOn>
992
+ </link:roleType>
993
+ <link:roleType id="ent" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformation">
994
+ <link:definition>995400 - Document - Entity Information</link:definition>
995
+ <link:usedOn>link:presentationLink</link:usedOn>
996
+ <link:usedOn>link:calculationLink</link:usedOn>
997
+ <link:usedOn>link:definitionLink</link:usedOn>
998
+ </link:roleType>
999
+ <link:roleType id="diha2" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesCalc2">
1000
+ <link:definition>805500 - Disclosure - Derivative Instruments and Hedging Activities (Reclassification to Earnings Alternative)</link:definition>
1001
+ <link:usedOn>link:calculationLink</link:usedOn>
1002
+ <link:usedOn>link:definitionLink</link:usedOn>
1003
+ <link:usedOn>link:presentationLink</link:usedOn>
1004
+ </link:roleType>
1005
+ <link:roleType id="sfp-dbo1" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-DepositBasedOperationsFirstAlternate">
1006
+ <link:definition>108050 - Statement - Statement of Financial Position, Unclassified - Deposit Based Operations (First Alternative)</link:definition>
1007
+ <link:usedOn>link:calculationLink</link:usedOn>
1008
+ <link:usedOn>link:definitionLink</link:usedOn>
1009
+ <link:usedOn>link:presentationLink</link:usedOn>
1010
+ </link:roleType>
1011
+ <link:roleType id="soi-ins3" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInsuranceBasedRevenueBreakdownByBusiness">
1012
+ <link:definition>140000 - Statement - Statement of Income, Insurance Based Revenue (By Business Alternative)</link:definition>
1013
+ <link:usedOn>link:calculationLink</link:usedOn>
1014
+ <link:usedOn>link:definitionLink</link:usedOn>
1015
+ <link:usedOn>link:presentationLink</link:usedOn>
1016
+ </link:roleType>
1017
+ <link:roleType id="fs-bt2" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftCalc2">
1018
+ <link:definition>940500 - Disclosure - Financial Services, Banking and Thrift (FHLB Advances by Interest Rate Type Alternative)</link:definition>
1019
+ <link:usedOn>link:calculationLink</link:usedOn>
1020
+ <link:usedOn>link:definitionLink</link:usedOn>
1021
+ <link:usedOn>link:presentationLink</link:usedOn>
1022
+ </link:roleType>
1023
+ <link:roleType id="fs-bd2" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersCalc2">
1024
+ <link:definition>942500 - Disclosure - Financial Services, Brokers and Dealers (Fair Value Alternative)</link:definition>
1025
+ <link:usedOn>link:calculationLink</link:usedOn>
1026
+ <link:usedOn>link:definitionLink</link:usedOn>
1027
+ <link:usedOn>link:presentationLink</link:usedOn>
1028
+ </link:roleType>
1029
+ <link:roleType id="fs-bd3" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersCalc3">
1030
+ <link:definition>943000 - Disclosure - Financial Services, Brokers and Dealers (Excess Net Capital Alternative)</link:definition>
1031
+ <link:usedOn>link:calculationLink</link:usedOn>
1032
+ <link:usedOn>link:definitionLink</link:usedOn>
1033
+ <link:usedOn>link:presentationLink</link:usedOn>
1034
+ </link:roleType>
1035
+ <link:roleType id="fs-ins2" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceCalc2">
1036
+ <link:definition>944500 - Disclosure - Financial Services, Insurance (By Type Alternative)</link:definition>
1037
+ <link:usedOn>link:calculationLink</link:usedOn>
1038
+ <link:usedOn>link:definitionLink</link:usedOn>
1039
+ <link:usedOn>link:presentationLink</link:usedOn>
1040
+ </link:roleType>
1041
+ <link:roleType id="bc2" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinationsAndReorganizationsCalc2">
1042
+ <link:definition>800500 - Disclosure - Business Combinations (Netting Alternative)</link:definition>
1043
+ <link:usedOn>link:calculationLink</link:usedOn>
1044
+ <link:usedOn>link:definitionLink</link:usedOn>
1045
+ <link:usedOn>link:presentationLink</link:usedOn>
1046
+ </link:roleType>
1047
+ <link:roleType id="debt2" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtCalc2">
1048
+ <link:definition>460100 - Disclosure - Debt (Long-term Debt, by Type, Current and Noncurrent Alternative)</link:definition>
1049
+ <link:usedOn>link:calculationLink</link:usedOn>
1050
+ <link:usedOn>link:definitionLink</link:usedOn>
1051
+ <link:usedOn>link:presentationLink</link:usedOn>
1052
+ </link:roleType>
1053
+ <link:roleType id="othliab2" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesCalc2">
1054
+ <link:definition>470500 - Disclosure - Other Liabilities (Warranty Accrual by Standard or Extended Alternative)</link:definition>
1055
+ <link:usedOn>link:calculationLink</link:usedOn>
1056
+ <link:usedOn>link:definitionLink</link:usedOn>
1057
+ <link:usedOn>link:presentationLink</link:usedOn>
1058
+ </link:roleType>
1059
+ <link:roleType id="othliab3" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesCalc3">
1060
+ <link:definition>471000 - Disclosure - Other Liabilities (Warranty Accrual by Current or Noncurrent Alternative)</link:definition>
1061
+ <link:usedOn>link:calculationLink</link:usedOn>
1062
+ <link:usedOn>link:definitionLink</link:usedOn>
1063
+ <link:usedOn>link:presentationLink</link:usedOn>
1064
+ </link:roleType>
1065
+ <link:roleType id="invest" roleURI="http://xbrl.us/us-gaap/role/document/Investment">
1066
+ <link:definition>995470 - Document - Investment</link:definition>
1067
+ <link:usedOn>link:calculationLink</link:usedOn>
1068
+ <link:usedOn>link:definitionLink</link:usedOn>
1069
+ <link:usedOn>link:presentationLink</link:usedOn>
1070
+ </link:roleType>
1071
+ <link:roleType id="schedoi-hold" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentHoldings">
1072
+ <link:definition>993500 - Disclosure - Investment Holdings</link:definition>
1073
+ <link:usedOn>link:calculationLink</link:usedOn>
1074
+ <link:usedOn>link:definitionLink</link:usedOn>
1075
+ <link:usedOn>link:presentationLink</link:usedOn>
1076
+ </link:roleType>
1077
+ <link:roleType id="schedoi-shorthold" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsSoldNotYetPurchased">
1078
+ <link:definition>993540 - Disclosure - Investments Sold Not yet Purchased</link:definition>
1079
+ <link:usedOn>link:calculationLink</link:usedOn>
1080
+ <link:usedOn>link:definitionLink</link:usedOn>
1081
+ <link:usedOn>link:presentationLink</link:usedOn>
1082
+ </link:roleType>
1083
+ <link:roleType id="schedoi-sumhold" roleURI="http://xbrl.us/us-gaap/role/disclosure/SummaryOfInvestmentHoldings">
1084
+ <link:definition>993520 - Disclosure - Summary of Investment Holdings</link:definition>
1085
+ <link:usedOn>link:calculationLink</link:usedOn>
1086
+ <link:usedOn>link:definitionLink</link:usedOn>
1087
+ <link:usedOn>link:presentationLink</link:usedOn>
1088
+ </link:roleType>
1089
+ <link:roleType id="schedoi-oocw" roleURI="http://xbrl.us/us-gaap/role/disclosure/OpenOptionContractsWritten">
1090
+ <link:definition>993560 - Disclosure - Open Option Contracts Written</link:definition>
1091
+ <link:usedOn>link:calculationLink</link:usedOn>
1092
+ <link:usedOn>link:definitionLink</link:usedOn>
1093
+ <link:usedOn>link:presentationLink</link:usedOn>
1094
+ </link:roleType>
1095
+ <link:roleType id="schedoi-iiaa" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsInAndAdvancesToAffiliates">
1096
+ <link:definition>993570 - Disclosure - Investments in and Advances to Affiliates</link:definition>
1097
+ <link:usedOn>link:calculationLink</link:usedOn>
1098
+ <link:usedOn>link:definitionLink</link:usedOn>
1099
+ <link:usedOn>link:presentationLink</link:usedOn>
1100
+ </link:roleType>
1101
+ <link:roleType id="schedoi-shortsh" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsSoldNotYetPurchasedFormSH">
1102
+ <link:definition>993550 - Disclosure - Investments Sold Not yet Purchased, Form SH</link:definition>
1103
+ <link:usedOn>link:calculationLink</link:usedOn>
1104
+ <link:usedOn>link:definitionLink</link:usedOn>
1105
+ <link:usedOn>link:presentationLink</link:usedOn>
1106
+ </link:roleType>
1107
+ <link:roleType id="schedoi-otsh" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherThanSecuritiesInvestmentHoldings">
1108
+ <link:definition>993510 - Disclosure - Other than Securities Investment Holdings</link:definition>
1109
+ <link:usedOn>link:calculationLink</link:usedOn>
1110
+ <link:usedOn>link:definitionLink</link:usedOn>
1111
+ <link:usedOn>link:presentationLink</link:usedOn>
1112
+ </link:roleType>
1113
+ <link:roleType id="schedoi-fednote" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsFederalTaxNote">
1114
+ <link:definition>993530 - Disclosure - Investments Federal Income Tax Note</link:definition>
1115
+ <link:usedOn>link:calculationLink</link:usedOn>
1116
+ <link:usedOn>link:definitionLink</link:usedOn>
1117
+ <link:usedOn>link:presentationLink</link:usedOn>
1118
+ </link:roleType>
1119
+ <link:roleType id="diha1" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesCalc1">
1120
+ <link:definition>805050 - Disclosure - Derivative Instruments and Hedging Activities</link:definition>
1121
+ <link:usedOn>link:calculationLink</link:usedOn>
1122
+ <link:usedOn>link:definitionLink</link:usedOn>
1123
+ <link:usedOn>link:presentationLink</link:usedOn>
1124
+ </link:roleType>
1125
+ <link:roleType id="AccountantsReportAuditorsReportTable" roleURI="http://xbrl.us/us-gaap/role/document/AccountantsReportAuditorsReportTable">
1126
+ <link:definition>995000 - Document - Accountants Report, Auditors Report [Table]</link:definition>
1127
+ <link:usedOn>link:definitionLink</link:usedOn>
1128
+ </link:roleType>
1129
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfAcquiredFiniteLivedIntangibleAssetByMajorClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfAcquiredFiniteLivedIntangibleAssetByMajorClassTable">
1130
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Acquired Finite-Lived Intangible Asset by Major Class [Table]</link:definition>
1131
+ <link:usedOn>link:definitionLink</link:usedOn>
1132
+ </link:roleType>
1133
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfAcquiredIndefiniteLivedIntangibleAssetsByMajorClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfAcquiredIndefiniteLivedIntangibleAssetsByMajorClassTable">
1134
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Acquired Indefinite-lived Intangible Assets by Major Class [Table]</link:definition>
1135
+ <link:usedOn>link:definitionLink</link:usedOn>
1136
+ </link:roleType>
1137
+ <link:roleType id="StatementOfCashFlowsSupplementalDisclosuresNoncashOrPartNoncashAcquisitionsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosuresNoncashOrPartNoncashAcquisitionsTable">
1138
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures, Noncash or Part Noncash Acquisitions [Table]</link:definition>
1139
+ <link:usedOn>link:definitionLink</link:usedOn>
1140
+ </link:roleType>
1141
+ <link:roleType id="TransfersAndServicingAssetsOrLiabilitiesFromTransfersOfFinancialAssetsHavingNoReasonableEstimateOfFairValueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingAssetsOrLiabilitiesFromTransfersOfFinancialAssetsHavingNoReasonableEstimateOfFairValueTable">
1142
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Assets or Liabilities from Transfers of Financial Assets Having No Reasonable Estimate of Fair Value [Table]</link:definition>
1143
+ <link:usedOn>link:definitionLink</link:usedOn>
1144
+ </link:roleType>
1145
+ <link:roleType id="FinancialServicesBrokersAndDealersScheduleOfAssetsSoldUnderAgreementsToRepurchaseTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersScheduleOfAssetsSoldUnderAgreementsToRepurchaseTable">
1146
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Schedule of Assets Sold under Agreements to Repurchase [Table]</link:definition>
1147
+ <link:usedOn>link:definitionLink</link:usedOn>
1148
+ </link:roleType>
1149
+ <link:roleType id="FinancialServicesBankingAndThriftScheduleOfAssetsSoldUnderAgreementsToRepurchaseTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftScheduleOfAssetsSoldUnderAgreementsToRepurchaseTable">
1150
+ <link:definition>940000 - Disclosure - Financial Services, Banking and Thrift, Schedule of Assets Sold under Agreements to Repurchase [Table]</link:definition>
1151
+ <link:usedOn>link:definitionLink</link:usedOn>
1152
+ </link:roleType>
1153
+ <link:roleType id="TransfersAndServicingAssumptionForFairValueAsOfBalanceSheetDateOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingAssumptionForFairValueAsOfBalanceSheetDateOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTable">
1154
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Assumptions for Fair Value as of Balance Sheet Date of Assets or Liabilities that relate to Transferor's Continuing Involvement [Table]</link:definition>
1155
+ <link:usedOn>link:definitionLink</link:usedOn>
1156
+ </link:roleType>
1157
+ <link:roleType id="TransfersAndServicingAssumptionForFairValueOnSecuritizationDateOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingAssumptionForFairValueOnSecuritizationDateOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTable">
1158
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Fair Value Assumption, Date of Securitization or Asset-backed Financing Arrangement, Transferor's Continuing Involvement, Servicing Assets or Liabilities [Table]</link:definition>
1159
+ <link:usedOn>link:definitionLink</link:usedOn>
1160
+ </link:roleType>
1161
+ <link:roleType id="EquityAuctionMarketPreferredSecuritiesStockSeriesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityAuctionMarketPreferredSecuritiesStockSeriesTable">
1162
+ <link:definition>500000 - Disclosure - Equity, Auction Market Preferred Securities, Stock Series [Table]</link:definition>
1163
+ <link:usedOn>link:definitionLink</link:usedOn>
1164
+ </link:roleType>
1165
+ <link:roleType id="BusinessCombinationsScheduleOfBusinessAcquisitionsByAcquisitionContingentConsiderationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinationsScheduleOfBusinessAcquisitionsByAcquisitionContingentConsiderationTable">
1166
+ <link:definition>800000 - Disclosure - Business Combinations, Schedule of Business Acquisitions by Acquisition, Contingent Consideration [Table]</link:definition>
1167
+ <link:usedOn>link:definitionLink</link:usedOn>
1168
+ </link:roleType>
1169
+ <link:roleType id="BusinessCombinationsScheduleOfBusinessAcquisitionsByAcquisitionEquityInterestIssuedOrIssuableTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinationsScheduleOfBusinessAcquisitionsByAcquisitionEquityInterestIssuedOrIssuableTable">
1170
+ <link:definition>800000 - Disclosure - Business Combinations, Schedule of Business Acquisitions by Acquisition, Equity Interest Issued or Issuable [Table]</link:definition>
1171
+ <link:usedOn>link:definitionLink</link:usedOn>
1172
+ </link:roleType>
1173
+ <link:roleType id="BusinessCombinationsScheduleOfBusinessAcquisitionsByAcquisitionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinationsScheduleOfBusinessAcquisitionsByAcquisitionTable">
1174
+ <link:definition>800000 - Disclosure - Business Combinations, Schedule of Business Acquisitions, by Acquisition [Table]</link:definition>
1175
+ <link:usedOn>link:definitionLink</link:usedOn>
1176
+ </link:roleType>
1177
+ <link:roleType id="EquityScheduleOfCapitalUnitsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfCapitalUnitsTable">
1178
+ <link:definition>500000 - Disclosure - Equity, Schedule of Capital Units [Table]</link:definition>
1179
+ <link:usedOn>link:definitionLink</link:usedOn>
1180
+ </link:roleType>
1181
+ <link:roleType id="ExtractiveIndustriesCapitalizedCostsRelatingToOilAndGasProducingActivitiesByGeographicAreaTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesCapitalizedCostsRelatingToOilAndGasProducingActivitiesByGeographicAreaTable">
1182
+ <link:definition>965000 - Disclosure - Extractive Industries, Capitalized Costs Relating to Oil and Gas Producing Activities, by Geographic Area [Table]</link:definition>
1183
+ <link:usedOn>link:definitionLink</link:usedOn>
1184
+ </link:roleType>
1185
+ <link:roleType id="FinancialServicesInsuranceLiabilityForCatastropheClaimsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceLiabilityForCatastropheClaimsTable">
1186
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Liability for Catastrophe Claims [Table]</link:definition>
1187
+ <link:usedOn>link:definitionLink</link:usedOn>
1188
+ </link:roleType>
1189
+ <link:roleType id="FinancialServicesInsuranceCausesOfIncreaseDecreaseInLiabilityForUnpaidClaimsAndClaimsAdjustmentExpenseTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceCausesOfIncreaseDecreaseInLiabilityForUnpaidClaimsAndClaimsAdjustmentExpenseTable">
1190
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Causes of Increase (Decrease) in Liability for Unpaid Claims and Claims Adjustment Expense [Table]</link:definition>
1191
+ <link:usedOn>link:definitionLink</link:usedOn>
1192
+ </link:roleType>
1193
+ <link:roleType id="FinancialServicesInsuranceCededCreditRiskTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceCededCreditRiskTable">
1194
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Ceded Credit Risk [Table]</link:definition>
1195
+ <link:usedOn>link:definitionLink</link:usedOn>
1196
+ </link:roleType>
1197
+ <link:roleType id="AccountingChangesAndErrorCorrectionsScheduleOfChangeInAccountingEstimateTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingChangesAndErrorCorrectionsScheduleOfChangeInAccountingEstimateTable">
1198
+ <link:definition>250000 - Disclosure - Accounting Changes and Error Corrections, Schedule of Change in Accounting Estimate [Table]</link:definition>
1199
+ <link:usedOn>link:definitionLink</link:usedOn>
1200
+ </link:roleType>
1201
+ <link:roleType id="CashAndCashEquivalentsScheduleOfCompensatingBalancesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CashAndCashEquivalentsScheduleOfCompensatingBalancesTable">
1202
+ <link:definition>300000 - Disclosure - Cash and Cash Equivalents, Schedule of Compensating Balances [Table]</link:definition>
1203
+ <link:usedOn>link:definitionLink</link:usedOn>
1204
+ </link:roleType>
1205
+ <link:roleType id="RisksAndUncertaintiesConcentrationRiskTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RisksAndUncertaintiesConcentrationRiskTable">
1206
+ <link:definition>275000 - Disclosure - Risks and Uncertainties, Concentration Risk [Table]</link:definition>
1207
+ <link:usedOn>link:definitionLink</link:usedOn>
1208
+ </link:roleType>
1209
+ <link:roleType id="StatementOfCashFlowsSupplementalDisclosuresConversionOfStockTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosuresConversionOfStockTable">
1210
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures, Conversion of Stock [Table]</link:definition>
1211
+ <link:usedOn>link:definitionLink</link:usedOn>
1212
+ </link:roleType>
1213
+ <link:roleType id="ExtractiveIndustriesCostsIncurredInOilAndGasPropertyAcquisitionExplorationAndDevelopmentActivitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesCostsIncurredInOilAndGasPropertyAcquisitionExplorationAndDevelopmentActivitiesTable">
1214
+ <link:definition>965000 - Disclosure - Extractive Industries, Costs Incurred in Oil and Gas Property Acquisition, Exploration, and Development Activities [Table]</link:definition>
1215
+ <link:usedOn>link:definitionLink</link:usedOn>
1216
+ </link:roleType>
1217
+ <link:roleType id="FinancialServicesBrokersAndDealersCustomerSecuritiesForWhichEntityHasRightToSellOrRepledgeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersCustomerSecuritiesForWhichEntityHasRightToSellOrRepledgeTable">
1218
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Customer Securities for which Entity has Right to Sell or Repledge [Table]</link:definition>
1219
+ <link:usedOn>link:definitionLink</link:usedOn>
1220
+ </link:roleType>
1221
+ <link:roleType id="TransfersAndServicingCustomerSecuritiesForWhichEntityHasRightToSellOrRepledgeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingCustomerSecuritiesForWhichEntityHasRightToSellOrRepledgeTable">
1222
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Customer Securities for which Entity has Right to Sell or Repledge [Table]</link:definition>
1223
+ <link:usedOn>link:definitionLink</link:usedOn>
1224
+ </link:roleType>
1225
+ <link:roleType id="StatementOfCashFlowsSupplementalDisclosuresDebtConversionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosuresDebtConversionTable">
1226
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures, Debt Conversion [Table]</link:definition>
1227
+ <link:usedOn>link:definitionLink</link:usedOn>
1228
+ </link:roleType>
1229
+ <link:roleType id="DebtDebtInstrumentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtDebtInstrumentTable">
1230
+ <link:definition>460000 - Disclosure - Debt, Schedule of Long-term Debt Instruments [Table]</link:definition>
1231
+ <link:usedOn>link:definitionLink</link:usedOn>
1232
+ </link:roleType>
1233
+ <link:roleType id="DeferredRevenueDeferredRevenueArrangementByTypeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DeferredRevenueDeferredRevenueArrangementByTypeTable">
1234
+ <link:definition>440000 - Disclosure - Deferred Revenue, Deferred Revenue Arrangement, by Type [Table]</link:definition>
1235
+ <link:usedOn>link:definitionLink</link:usedOn>
1236
+ </link:roleType>
1237
+ <link:roleType id="IncomeTaxesDeferredTaxLiabilityNotRecognizedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesDeferredTaxLiabilityNotRecognizedTable">
1238
+ <link:definition>770000 - Disclosure - Income Taxes, Deferred Tax Liability Not Recognized [Table]</link:definition>
1239
+ <link:usedOn>link:definitionLink</link:usedOn>
1240
+ </link:roleType>
1241
+ <link:roleType id="DerivativeInstrumentsAndHedgingActivitiesDerivativeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesDerivativeTable">
1242
+ <link:definition>805000 - Disclosure - Derivative Instruments and Hedging Activities, Derivative [Table]</link:definition>
1243
+ <link:usedOn>link:definitionLink</link:usedOn>
1244
+ </link:roleType>
1245
+ <link:roleType id="GuaranteesScheduleOfGuaranteeObligationsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/GuaranteesScheduleOfGuaranteeObligationsTable">
1246
+ <link:definition>456000 - Disclosure - Guarantees, Schedule of Guarantor Obligations [Table]</link:definition>
1247
+ <link:usedOn>link:definitionLink</link:usedOn>
1248
+ </link:roleType>
1249
+ <link:roleType id="ExtractiveIndustriesDevelopmentWellsDrilledTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesDevelopmentWellsDrilledTable">
1250
+ <link:definition>965000 - Disclosure - Extractive Industries, Development Wells Drilled [Table]</link:definition>
1251
+ <link:usedOn>link:definitionLink</link:usedOn>
1252
+ </link:roleType>
1253
+ <link:roleType id="DiscontinuedOperationsIncomeStatementBalanceSheetAndAdditionalDisclosuresByDisposalGroupsIncludingDiscontinuedOperationsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DiscontinuedOperationsIncomeStatementBalanceSheetAndAdditionalDisclosuresByDisposalGroupsIncludingDiscontinuedOperationsTable">
1254
+ <link:definition>775000 - Disclosure - Discontinued Operations and Disposal Groups, Income Statement, Balance Sheet and Additional Disclosures by Disposal Groups, Including Discontinued Operations [Table]</link:definition>
1255
+ <link:usedOn>link:definitionLink</link:usedOn>
1256
+ </link:roleType>
1257
+ <link:roleType id="ExtractiveIndustriesDiscountedFutureNetCashFlowsRelatingToProvedOilAndGasReservesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesDiscountedFutureNetCashFlowsRelatingToProvedOilAndGasReservesTable">
1258
+ <link:definition>965000 - Disclosure - Extractive Industries, Discounted Future Net Cash Flows Relating to Proved Oil and Gas Reserves [Table]</link:definition>
1259
+ <link:usedOn>link:definitionLink</link:usedOn>
1260
+ </link:roleType>
1261
+ <link:roleType id="EquityScheduleOfDistributionsMadeToMemberOrLimitedPartnerTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfDistributionsMadeToMemberOrLimitedPartnerTable">
1262
+ <link:definition>500000 - Disclosure - Equity, Schedule of Distributions Made to Member or Limited Partner [Table]</link:definition>
1263
+ <link:usedOn>link:definitionLink</link:usedOn>
1264
+ </link:roleType>
1265
+ <link:roleType id="StatementOfCashFlowsSupplementalDisclosuresNoncashOrPartNoncashDivestituresTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosuresNoncashOrPartNoncashDivestituresTable">
1266
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures, Noncash or Part Noncash Divestitures [Table]</link:definition>
1267
+ <link:usedOn>link:definitionLink</link:usedOn>
1268
+ </link:roleType>
1269
+ <link:roleType id="StatementOfCashFlowsSupplementalDisclosuresDividendsPayableTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosuresDividendsPayableTable">
1270
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures, Dividends Payable [Table]</link:definition>
1271
+ <link:usedOn>link:definitionLink</link:usedOn>
1272
+ </link:roleType>
1273
+ <link:roleType id="CompensationRelatedCostsStockCompensationScheduleOfEmployeeStockOwnershipPlanESOPDisclosuresTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensationScheduleOfEmployeeStockOwnershipPlanESOPDisclosuresTable">
1274
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments, Schedule of Employee Stock Ownership Plan (ESOP) Disclosures [Table]</link:definition>
1275
+ <link:usedOn>link:definitionLink</link:usedOn>
1276
+ </link:roleType>
1277
+ <link:roleType id="EntityInformationEntitiesTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntitiesTable">
1278
+ <link:definition>995400 - Document - Entity Information, Entities [Table]</link:definition>
1279
+ <link:usedOn>link:definitionLink</link:usedOn>
1280
+ </link:roleType>
1281
+ <link:roleType id="SegmentReportingScheduleOfEntityWideDisclosureOnGeographicAreasLongLivedAssetsInIndividualForeignCountriesByCountryTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingScheduleOfEntityWideDisclosureOnGeographicAreasLongLivedAssetsInIndividualForeignCountriesByCountryTable">
1282
+ <link:definition>790000 - Disclosure - Segment Reporting, Schedule of Entity-Wide Disclosure on Geographic Areas, Long-Lived Assets in Individual Foreign Countries by Country [Table]</link:definition>
1283
+ <link:usedOn>link:definitionLink</link:usedOn>
1284
+ </link:roleType>
1285
+ <link:roleType id="SegmentReportingEntityWideDisclosureOnGeographicAreasRevenueFromExternalCustomersAttributedToIndividualForeignCountriesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingEntityWideDisclosureOnGeographicAreasRevenueFromExternalCustomersAttributedToIndividualForeignCountriesTable">
1286
+ <link:definition>790000 - Disclosure - Segment Reporting, Entity-Wide Disclosure on Geographic Areas, Revenue from External Customers Attributed to Individual Foreign Countries [Table]</link:definition>
1287
+ <link:usedOn>link:definitionLink</link:usedOn>
1288
+ </link:roleType>
1289
+ <link:roleType id="SegmentReportingScheduleOfEntityWideRevenueByMajorCustomersByReportingSegmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingScheduleOfEntityWideRevenueByMajorCustomersByReportingSegmentsTable">
1290
+ <link:definition>790000 - Disclosure - Segment Reporting, Schedule of Entity-Wide Revenue by Major Customers, by Reporting Segments [Table]</link:definition>
1291
+ <link:usedOn>link:definitionLink</link:usedOn>
1292
+ </link:roleType>
1293
+ <link:roleType id="SegmentReportingScheduleOfEntityWideInformationRevenueFromExternalCustomersByProductsAndServicesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingScheduleOfEntityWideInformationRevenueFromExternalCustomersByProductsAndServicesTable">
1294
+ <link:definition>790000 - Disclosure - Segment Reporting, Schedule of Entity-Wide Information, Revenue from External Customers by Products and Services [Table]</link:definition>
1295
+ <link:usedOn>link:definitionLink</link:usedOn>
1296
+ </link:roleType>
1297
+ <link:roleType id="EntityInformationEntityAddressesTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntityAddressesTable">
1298
+ <link:definition>995400 - Document - Entity Information, Entity Addresses [Table]</link:definition>
1299
+ <link:usedOn>link:definitionLink</link:usedOn>
1300
+ </link:roleType>
1301
+ <link:roleType id="EntityInformationEntityContactPersonnelTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntityContactPersonnelTable">
1302
+ <link:definition>995400 - Document - Entity Information, Entity Contact Personnel [Table]</link:definition>
1303
+ <link:usedOn>link:definitionLink</link:usedOn>
1304
+ </link:roleType>
1305
+ <link:roleType id="EntityInformationEntityListingsTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntityListingsTable">
1306
+ <link:definition>995400 - Document - Entity Information, Entity Listings [Table]</link:definition>
1307
+ <link:usedOn>link:definitionLink</link:usedOn>
1308
+ </link:roleType>
1309
+ <link:roleType id="EntityInformationEntityPhoneFaxNumbersTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntityPhoneFaxNumbersTable">
1310
+ <link:definition>995400 - Document - Entity Information, Entity Phone Fax Numbers [Table]</link:definition>
1311
+ <link:usedOn>link:definitionLink</link:usedOn>
1312
+ </link:roleType>
1313
+ <link:roleType id="EntityInformationEntitySectorIndustryClassificationsTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntitySectorIndustryClassificationsTable">
1314
+ <link:definition>995400 - Document - Entity Information, Entity Sector Industry Classifications [Table]</link:definition>
1315
+ <link:usedOn>link:definitionLink</link:usedOn>
1316
+ </link:roleType>
1317
+ <link:roleType id="EnvironmentalRemediationObligationsScheduleOfEnvironmentalExitCostTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EnvironmentalRemediationObligationsScheduleOfEnvironmentalExitCostTable">
1318
+ <link:definition>425000 - Disclosure - Environmental Remediation Obligations, Schedule of Environmental Exit Cost [Table]</link:definition>
1319
+ <link:usedOn>link:definitionLink</link:usedOn>
1320
+ </link:roleType>
1321
+ <link:roleType id="AccountingChangesAndErrorCorrectionsScheduleOfErrorCorrectionsAndPriorPeriodAdjustmentRestatementTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingChangesAndErrorCorrectionsScheduleOfErrorCorrectionsAndPriorPeriodAdjustmentRestatementTable">
1322
+ <link:definition>250000 - Disclosure - Accounting Changes and Error Corrections, Schedule of Error Corrections and Prior Period Adjustment Restatement [Table]</link:definition>
1323
+ <link:usedOn>link:definitionLink</link:usedOn>
1324
+ </link:roleType>
1325
+ <link:roleType id="ExtractiveIndustriesExploratoryWellsDrilledTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesExploratoryWellsDrilledTable">
1326
+ <link:definition>965000 - Disclosure - Extractive Industries, Exploratory Wells Drilled [Table]</link:definition>
1327
+ <link:usedOn>link:definitionLink</link:usedOn>
1328
+ </link:roleType>
1329
+ <link:roleType id="DebtScheduleOfExtinguishmentOfDebtTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtScheduleOfExtinguishmentOfDebtTable">
1330
+ <link:definition>460000 - Disclosure - Debt, Schedule of Extinguishment of Debt [Table]</link:definition>
1331
+ <link:usedOn>link:definitionLink</link:usedOn>
1332
+ </link:roleType>
1333
+ <link:roleType id="ExtraordinaryAndUnusualItemsExtraordinaryItemsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtraordinaryAndUnusualItemsExtraordinaryItemsTable">
1334
+ <link:definition>778000 - Disclosure - Extraordinary and Unusual Items, Extraordinary Items [Table]</link:definition>
1335
+ <link:usedOn>link:definitionLink</link:usedOn>
1336
+ </link:roleType>
1337
+ <link:roleType id="FinancialServicesBankingAndThriftScheduleOfFederalHomeLoanBankAdvancesByBranchOfFHLBBankTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftScheduleOfFederalHomeLoanBankAdvancesByBranchOfFHLBBankTable">
1338
+ <link:definition>940000 - Disclosure - Financial Services, Banking and Thrift, Schedule of Federal Home Loan Bank Advances, by Branch of FHLB Bank [Table]</link:definition>
1339
+ <link:usedOn>link:definitionLink</link:usedOn>
1340
+ </link:roleType>
1341
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfFiniteLivedIntangibleAssetsByMajorClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfFiniteLivedIntangibleAssetsByMajorClassTable">
1342
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Finite-Lived Intangible Assets by Major Class [Table]</link:definition>
1343
+ <link:usedOn>link:definitionLink</link:usedOn>
1344
+ </link:roleType>
1345
+ <link:roleType id="OtherLiabilitiesForwardContractIndexedToIssuersEquityTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesForwardContractIndexedToIssuersEquityTable">
1346
+ <link:definition>470000 - Disclosure - Other Liabilities, Forward Contract Indexed to Issuer's Equity [Table]</link:definition>
1347
+ <link:usedOn>link:definitionLink</link:usedOn>
1348
+ </link:roleType>
1349
+ <link:roleType id="ReorganizationsFreshStartAdjustmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ReorganizationsFreshStartAdjustmentsTable">
1350
+ <link:definition>802000 - Disclosure - Reorganizations, Fresh-Start Adjustments [Table]</link:definition>
1351
+ <link:usedOn>link:definitionLink</link:usedOn>
1352
+ </link:roleType>
1353
+ <link:roleType id="CommitmentAndContingenciesGainContingenciesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesGainContingenciesTable">
1354
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Gain Contingencies [Table]</link:definition>
1355
+ <link:usedOn>link:definitionLink</link:usedOn>
1356
+ </link:roleType>
1357
+ <link:roleType id="ExtractiveIndustriesGasAndOilAcreageTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesGasAndOilAcreageTable">
1358
+ <link:definition>965000 - Disclosure - Extractive Industries, Gas and Oil Acreage [Table]</link:definition>
1359
+ <link:usedOn>link:definitionLink</link:usedOn>
1360
+ </link:roleType>
1361
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfGoodwillTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfGoodwillTable">
1362
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Goodwill [Table]</link:definition>
1363
+ <link:usedOn>link:definitionLink</link:usedOn>
1364
+ </link:roleType>
1365
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfImpairedIntangibleAssetsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfImpairedIntangibleAssetsTable">
1366
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Impaired Intangible Assets [Table]</link:definition>
1367
+ <link:usedOn>link:definitionLink</link:usedOn>
1368
+ </link:roleType>
1369
+ <link:roleType id="EquityScheduleOfIncentiveDistributionMadeToManagingMemberOrGeneralPartnerTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfIncentiveDistributionMadeToManagingMemberOrGeneralPartnerTable">
1370
+ <link:definition>500000 - Disclosure - Equity, Schedule of Incentive Distribution Made to Managing Member or General Partner [Table]</link:definition>
1371
+ <link:usedOn>link:definitionLink</link:usedOn>
1372
+ </link:roleType>
1373
+ <link:roleType id="IncomeTaxesIncomeTaxContingencyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesIncomeTaxContingencyTable">
1374
+ <link:definition>770000 - Disclosure - Income Taxes, Income Tax Contingency [Table]</link:definition>
1375
+ <link:usedOn>link:definitionLink</link:usedOn>
1376
+ </link:roleType>
1377
+ <link:roleType id="IncomeTaxesIncomeTaxExaminationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesIncomeTaxExaminationTable">
1378
+ <link:definition>770000 - Disclosure - Income Taxes, Income Tax Examination [Table]</link:definition>
1379
+ <link:usedOn>link:definitionLink</link:usedOn>
1380
+ </link:roleType>
1381
+ <link:roleType id="IncomeTaxesIncomeTaxHolidayTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesIncomeTaxHolidayTable">
1382
+ <link:definition>770000 - Disclosure - Income Taxes, Income Tax Holiday [Table]</link:definition>
1383
+ <link:usedOn>link:definitionLink</link:usedOn>
1384
+ </link:roleType>
1385
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfIndefiniteLivedIntangibleAssetsByMajorClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfIndefiniteLivedIntangibleAssetsByMajorClassTable">
1386
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Indefinite-lived Intangible Assets by Major Class [Table]</link:definition>
1387
+ <link:usedOn>link:definitionLink</link:usedOn>
1388
+ </link:roleType>
1389
+ <link:roleType id="ForeignOperationsAndCurrencyTranslationScheduleOfIntercompanyForeignCurrencyBalanceTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ForeignOperationsAndCurrencyTranslationScheduleOfIntercompanyForeignCurrencyBalanceTable">
1390
+ <link:definition>820000 - Disclosure - Foreign Operations and Currency Translation, Schedule of Intercompany Foreign Currency Balance [Table]</link:definition>
1391
+ <link:usedOn>link:definitionLink</link:usedOn>
1392
+ </link:roleType>
1393
+ <link:roleType id="RegulatedOperationsJointlyOwnedUtilityPlantInterestsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsJointlyOwnedUtilityPlantInterestsTable">
1394
+ <link:definition>980000 - Disclosure - Regulated Operations, Jointly Owned Utility Plant Interests [Table]</link:definition>
1395
+ <link:usedOn>link:definitionLink</link:usedOn>
1396
+ </link:roleType>
1397
+ <link:roleType id="FinancialServicesInsuranceLiabilitiesForGuaranteesOnLongDurationContractsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceLiabilitiesForGuaranteesOnLongDurationContractsTable">
1398
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Liabilities for Guarantees on Long-Duration Contracts [Table]</link:definition>
1399
+ <link:usedOn>link:definitionLink</link:usedOn>
1400
+ </link:roleType>
1401
+ <link:roleType id="FinancialServicesInsuranceLiabilityForFuturePolicyBenefitByProductSegmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceLiabilityForFuturePolicyBenefitByProductSegmentTable">
1402
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Liability for Future Policy Benefit, by Product Segment [Table]</link:definition>
1403
+ <link:usedOn>link:definitionLink</link:usedOn>
1404
+ </link:roleType>
1405
+ <link:roleType id="DebtLineOfCreditFacilityTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtLineOfCreditFacilityTable">
1406
+ <link:definition>460000 - Disclosure - Debt, Line of Credit Facility [Table]</link:definition>
1407
+ <link:usedOn>link:definitionLink</link:usedOn>
1408
+ </link:roleType>
1409
+ <link:roleType id="FinancialServicesInsuranceLongDurationContractsAssumptionsByProductAndGuaranteeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceLongDurationContractsAssumptionsByProductAndGuaranteeTable">
1410
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Long-Duration Contracts, Assumptions, by Product and Guarantee [Table]</link:definition>
1411
+ <link:usedOn>link:definitionLink</link:usedOn>
1412
+ </link:roleType>
1413
+ <link:roleType id="CommitmentAndContingenciesRecordedUnconditionalPurchaseObligationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesRecordedUnconditionalPurchaseObligationTable">
1414
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Recorded Unconditional Purchase Obligation [Table]</link:definition>
1415
+ <link:usedOn>link:definitionLink</link:usedOn>
1416
+ </link:roleType>
1417
+ <link:roleType id="CommitmentAndContingenciesLossContingenciesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesLossContingenciesTable">
1418
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Loss Contingencies [Table]</link:definition>
1419
+ <link:usedOn>link:definitionLink</link:usedOn>
1420
+ </link:roleType>
1421
+ <link:roleType id="HealthCareOrganizationsScheduleOfMalpracticeInsuranceTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/HealthCareOrganizationsScheduleOfMalpracticeInsuranceTable">
1422
+ <link:definition>955000 - Disclosure - Health Care Organizations, Schedule of Malpractice Insurance [Table]</link:definition>
1423
+ <link:usedOn>link:definitionLink</link:usedOn>
1424
+ </link:roleType>
1425
+ <link:roleType id="IncomeTaxesSignificantChangeInUnrecognizedTaxBenefitsIsReasonablyPossibleTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesSignificantChangeInUnrecognizedTaxBenefitsIsReasonablyPossibleTable">
1426
+ <link:definition>770000 - Disclosure - Income Taxes, Significant Change in Unrecognized Tax Benefits is Reasonably Possible [Table]</link:definition>
1427
+ <link:usedOn>link:definitionLink</link:usedOn>
1428
+ </link:roleType>
1429
+ <link:roleType id="FinancialServicesInsuranceNetAmountAtRiskByProductAndGuaranteeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceNetAmountAtRiskByProductAndGuaranteeTable">
1430
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Net Amount at Risk, by Product and Guarantee [Table]</link:definition>
1431
+ <link:usedOn>link:definitionLink</link:usedOn>
1432
+ </link:roleType>
1433
+ <link:roleType id="AccountingChangesAndErrorCorrectionsNewAccountingPronouncementsOrChangeInAccountingPrincipleTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingChangesAndErrorCorrectionsNewAccountingPronouncementsOrChangeInAccountingPrincipleTable">
1434
+ <link:definition>250000 - Disclosure - Accounting Changes and Error Corrections, New Accounting Pronouncements or Change in Accounting Principle [Table]</link:definition>
1435
+ <link:usedOn>link:definitionLink</link:usedOn>
1436
+ </link:roleType>
1437
+ <link:roleType id="NonmonetaryTransactionsNonmonetaryTransactionByTypeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/NonmonetaryTransactionsNonmonetaryTransactionByTypeTable">
1438
+ <link:definition>840000 - Disclosure - Nonmonetary Transactions, Nonmonetary Transaction, by Type [Table]</link:definition>
1439
+ <link:usedOn>link:definitionLink</link:usedOn>
1440
+ </link:roleType>
1441
+ <link:roleType id="ExtractiveIndustriesOilAndGasDeliveryCommitmentsAndContractsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesOilAndGasDeliveryCommitmentsAndContractsTable">
1442
+ <link:definition>965000 - Disclosure - Extractive Industries, Oil and Gas Delivery Commitments and Contracts [Table]</link:definition>
1443
+ <link:usedOn>link:definitionLink</link:usedOn>
1444
+ </link:roleType>
1445
+ <link:roleType id="ExtractiveIndustriesProvedDevelopedAndUndevelopedOilAndGasReserveQuantitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesProvedDevelopedAndUndevelopedOilAndGasReserveQuantitiesTable">
1446
+ <link:definition>965000 - Disclosure - Extractive Industries, Proved Developed and Undeveloped Oil and Gas Reserve Quantities [Table]</link:definition>
1447
+ <link:usedOn>link:definitionLink</link:usedOn>
1448
+ </link:roleType>
1449
+ <link:roleType id="ExtractiveIndustriesAverageSalesPriceAndProductionCostsPerUnitOfProductionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesAverageSalesPriceAndProductionCostsPerUnitOfProductionTable">
1450
+ <link:definition>965000 - Disclosure - Extractive Industries, Average Sales Price and Production Costs Per Unit of Production [Table]</link:definition>
1451
+ <link:usedOn>link:definitionLink</link:usedOn>
1452
+ </link:roleType>
1453
+ <link:roleType id="OtherLiabilitiesOptionIndexedToIssuersEquityTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesOptionIndexedToIssuersEquityTable">
1454
+ <link:definition>470000 - Disclosure - Other Liabilities, Option Indexed to Issuer's Equity [Table]</link:definition>
1455
+ <link:usedOn>link:definitionLink</link:usedOn>
1456
+ </link:roleType>
1457
+ <link:roleType id="OtherExpensesComponentOfOtherOperatingCostAndExpenseTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherExpensesComponentOfOtherOperatingCostAndExpenseTable">
1458
+ <link:definition>750000 - Disclosure - Other Income and Expenses, Component of Other Operating Cost and Expense [Table]</link:definition>
1459
+ <link:usedOn>link:definitionLink</link:usedOn>
1460
+ </link:roleType>
1461
+ <link:roleType id="OtherExpensesComponentOfOtherExpenseNonoperatingTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherExpensesComponentOfOtherExpenseNonoperatingTable">
1462
+ <link:definition>750000 - Disclosure - Other Income and Expenses, Component of Other Expense, Nonoperating [Table]</link:definition>
1463
+ <link:usedOn>link:definitionLink</link:usedOn>
1464
+ </link:roleType>
1465
+ <link:roleType id="OtherExpensesComponentOfOtherIncomeNonoperatingTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherExpensesComponentOfOtherIncomeNonoperatingTable">
1466
+ <link:definition>750000 - Disclosure - Other Income and Expenses, Component of Other Income, Nonoperating [Table]</link:definition>
1467
+ <link:usedOn>link:definitionLink</link:usedOn>
1468
+ </link:roleType>
1469
+ <link:roleType id="FinancialServicesBrokersAndDealersOtherInvestmentNotReadilyMarketableTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersOtherInvestmentNotReadilyMarketableTable">
1470
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Other Investment Not Readily Marketable [Table]</link:definition>
1471
+ <link:usedOn>link:definitionLink</link:usedOn>
1472
+ </link:roleType>
1473
+ <link:roleType id="EquityScheduleOfOtherOwnershipInterestsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfOtherOwnershipInterestsTable">
1474
+ <link:definition>500000 - Disclosure - Equity, Schedule of Other Ownership Interests [Table]</link:definition>
1475
+ <link:usedOn>link:definitionLink</link:usedOn>
1476
+ </link:roleType>
1477
+ <link:roleType id="StatementOfCashFlowsSupplementalDisclosuresOtherSignificantNoncashTransactionsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/StatementOfCashFlowsSupplementalDisclosuresOtherSignificantNoncashTransactionsTable">
1478
+ <link:definition>795000 - Disclosure - Statement of Cash Flows, Supplemental Disclosures, Other Significant Noncash Transactions [Table]</link:definition>
1479
+ <link:usedOn>link:definitionLink</link:usedOn>
1480
+ </link:roleType>
1481
+ <link:roleType id="IncomeTaxesOtherTaxCarryforwardTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesOtherTaxCarryforwardTable">
1482
+ <link:definition>770000 - Disclosure - Income Taxes, Other Tax Carryforward [Table]</link:definition>
1483
+ <link:usedOn>link:definitionLink</link:usedOn>
1484
+ </link:roleType>
1485
+ <link:roleType id="DebtParticipatingMortgageLoansTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtParticipatingMortgageLoansTable">
1486
+ <link:definition>460000 - Disclosure - Debt, Participating Mortgage Loans [Table]</link:definition>
1487
+ <link:usedOn>link:definitionLink</link:usedOn>
1488
+ </link:roleType>
1489
+ <link:roleType id="CompensationRelatedCostsRetirementBenefitsScheduleOfDefinedBenefitPlansDisclosuresTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsRetirementBenefitsScheduleOfDefinedBenefitPlansDisclosuresTable">
1490
+ <link:definition>730000 - Disclosure - Compensation Related Costs, Retirement Benefits, Schedule of Defined Benefit Plans Disclosures [Table]</link:definition>
1491
+ <link:usedOn>link:definitionLink</link:usedOn>
1492
+ </link:roleType>
1493
+ <link:roleType id="EquityScheduleOfPreferredUnitsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfPreferredUnitsTable">
1494
+ <link:definition>500000 - Disclosure - Equity, Schedule of Preferred Units [Table]</link:definition>
1495
+ <link:usedOn>link:definitionLink</link:usedOn>
1496
+ </link:roleType>
1497
+ <link:roleType id="FinancialServicesBrokersAndDealersPrincipleTransactionRevenueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersPrincipleTransactionRevenueTable">
1498
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Principal Transaction Revenue [Table]</link:definition>
1499
+ <link:usedOn>link:definitionLink</link:usedOn>
1500
+ </link:roleType>
1501
+ <link:roleType id="ExtractiveIndustriesProductiveWellsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesProductiveWellsTable">
1502
+ <link:definition>965000 - Disclosure - Extractive Industries, Productive Wells [Table]</link:definition>
1503
+ <link:usedOn>link:definitionLink</link:usedOn>
1504
+ </link:roleType>
1505
+ <link:roleType id="RegulatedOperationsLongTermContractsForPurchaseOfElectricPowerTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsLongTermContractsForPurchaseOfElectricPowerTable">
1506
+ <link:definition>980000 - Disclosure - Regulated Operations, Long-term Contracts for Purchase of Electric Power [Table]</link:definition>
1507
+ <link:usedOn>link:definitionLink</link:usedOn>
1508
+ </link:roleType>
1509
+ <link:roleType id="AccountingChangesAndErrorCorrectionsScheduleOfQuantifyingPriorYearMisstatementCorrectedInCurrentYearFinancialStatementsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingChangesAndErrorCorrectionsScheduleOfQuantifyingPriorYearMisstatementCorrectedInCurrentYearFinancialStatementsTable">
1510
+ <link:definition>250000 - Disclosure - Accounting Changes and Error Corrections, Schedule of Quantifying Prior Year Misstatement Corrected in Current Year Financial Statements [Table]</link:definition>
1511
+ <link:usedOn>link:definitionLink</link:usedOn>
1512
+ </link:roleType>
1513
+ <link:roleType id="TransfersAndServicingSecuritizedAssetsAndAnyOtherFinancialAssetsManagedTogetherTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingSecuritizedAssetsAndAnyOtherFinancialAssetsManagedTogetherTable">
1514
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Assets that Continue to be Recognized, Securitized or Asset-backed Financing Arrangement Assets and any Other Financial Assets Managed Together [Table]</link:definition>
1515
+ <link:usedOn>link:definitionLink</link:usedOn>
1516
+ </link:roleType>
1517
+ <link:roleType id="SECScheduleArticle12-28RealEstateAndAccumulatedDepreciationRealEstateAndAccumulatedDepreciationByPropertyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-28RealEstateAndAccumulatedDepreciationRealEstateAndAccumulatedDepreciationByPropertyTable">
1518
+ <link:definition>993200 - Disclosure - SEC Schedule, Article 12-28, Real Estate and Accumulated Depreciation, Real Estate and Accumulated Depreciation, by Property [Table]</link:definition>
1519
+ <link:usedOn>link:definitionLink</link:usedOn>
1520
+ </link:roleType>
1521
+ <link:roleType id="ReceivablesLoansNotesReceivableAndOthersScheduleOfReceivablesWithImputedInterestTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ReceivablesLoansNotesReceivableAndOthersScheduleOfReceivablesWithImputedInterestTable">
1522
+ <link:definition>320000 - Disclosure - Receivables, Loans, Notes Receivable, and Others, Schedule of Receivables with Imputed Interest [Table]</link:definition>
1523
+ <link:usedOn>link:definitionLink</link:usedOn>
1524
+ </link:roleType>
1525
+ <link:roleType id="TemporaryEquityRedeemableConvertiblePreferredStockTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TemporaryEquityRedeemableConvertiblePreferredStockTable">
1526
+ <link:definition>480000 - Disclosure - Temporary Equity, Redeemable Convertible Preferred Stock [Table]</link:definition>
1527
+ <link:usedOn>link:definitionLink</link:usedOn>
1528
+ </link:roleType>
1529
+ <link:roleType id="TemporaryEquityRedeemablePreferredStockTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TemporaryEquityRedeemablePreferredStockTable">
1530
+ <link:definition>480000 - Disclosure - Temporary Equity, Redeemable Preferred Stock [Table]</link:definition>
1531
+ <link:usedOn>link:definitionLink</link:usedOn>
1532
+ </link:roleType>
1533
+ <link:roleType id="CommitmentAndContingenciesRegistrationPaymentArrangementTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesRegistrationPaymentArrangementTable">
1534
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Registration Payment Arrangement [Table]</link:definition>
1535
+ <link:usedOn>link:definitionLink</link:usedOn>
1536
+ </link:roleType>
1537
+ <link:roleType id="SECScheduleArticle12-17ReinsuranceReinsurancePremiumsForInsuranceCompaniesByProductSegmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-17ReinsuranceReinsurancePremiumsForInsuranceCompaniesByProductSegmentTable">
1538
+ <link:definition>994000 - Disclosure - SEC Schedule, Article 12-17, Reinsurance, Reinsurance Premiums for Insurance Companies, by Product Segment [Table]</link:definition>
1539
+ <link:usedOn>link:definitionLink</link:usedOn>
1540
+ </link:roleType>
1541
+ <link:roleType id="RelatedPartyDisclosuresScheduleOfRelatedPartyTransactionsByRelatedPartyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RelatedPartyDisclosuresScheduleOfRelatedPartyTransactionsByRelatedPartyTable">
1542
+ <link:definition>845000 - Disclosure - Related Party Disclosures, Schedule of Related Party Transactions, by Related Party [Table]</link:definition>
1543
+ <link:usedOn>link:definitionLink</link:usedOn>
1544
+ </link:roleType>
1545
+ <link:roleType id="FinancialServicesBrokersAndDealersScheduleOfRepurchaseAgreementCounterpartyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersScheduleOfRepurchaseAgreementCounterpartyTable">
1546
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Schedule of Repurchase Agreement Counterparty [Table]</link:definition>
1547
+ <link:usedOn>link:definitionLink</link:usedOn>
1548
+ </link:roleType>
1549
+ <link:roleType id="FinancialServicesBankingAndThriftScheduleOfRepurchaseAgreementCounterpartyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftScheduleOfRepurchaseAgreementCounterpartyTable">
1550
+ <link:definition>940000 - Disclosure - Financial Services, Banking and Thrift, Schedule of Repurchase Agreement Counterparty [Table]</link:definition>
1551
+ <link:usedOn>link:definitionLink</link:usedOn>
1552
+ </link:roleType>
1553
+ <link:roleType id="FinancialServicesBrokersAndDealersScheduleOfResaleAgreementCounterpartyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersScheduleOfResaleAgreementCounterpartyTable">
1554
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Schedule of Resale Agreement Counterparty [Table]</link:definition>
1555
+ <link:usedOn>link:definitionLink</link:usedOn>
1556
+ </link:roleType>
1557
+ <link:roleType id="FinancialServicesBankingAndThriftScheduleOfResaleAgreementCounterpartyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftScheduleOfResaleAgreementCounterpartyTable">
1558
+ <link:definition>940000 - Disclosure - Financial Services, Banking and Thrift, Schedule of Resale Agreement Counterparty [Table]</link:definition>
1559
+ <link:usedOn>link:definitionLink</link:usedOn>
1560
+ </link:roleType>
1561
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfResearchAndDevelopmentAssetsAcquiredOtherThanThroughBusinessCombinationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfResearchAndDevelopmentAssetsAcquiredOtherThanThroughBusinessCombinationTable">
1562
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Research and Development Assets Acquired Other than Through Business Combination [Table]</link:definition>
1563
+ <link:usedOn>link:definitionLink</link:usedOn>
1564
+ </link:roleType>
1565
+ <link:roleType id="FinancialServicesInsuranceLiabilityForUnpaidClaimsAndClaimsAdjustmentExpenseAdjustmentOfOpeningBalanceTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceLiabilityForUnpaidClaimsAndClaimsAdjustmentExpenseAdjustmentOfOpeningBalanceTable">
1566
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Liability for Unpaid Claims and Claims Adjustment Expense, Adjustment of Opening Balance [Table]</link:definition>
1567
+ <link:usedOn>link:definitionLink</link:usedOn>
1568
+ </link:roleType>
1569
+ <link:roleType id="CashAndCashEquivalentsScheduleOfRestrictedCashAndCashEquivalentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CashAndCashEquivalentsScheduleOfRestrictedCashAndCashEquivalentsTable">
1570
+ <link:definition>300000 - Disclosure - Cash and Cash Equivalents, Schedule of Restricted Cash and Cash Equivalents [Table]</link:definition>
1571
+ <link:usedOn>link:definitionLink</link:usedOn>
1572
+ </link:roleType>
1573
+ <link:roleType id="ExtractiveIndustriesResultsOfOperationsForOilAndGasProducingActivitiesByGeographicAreaTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesResultsOfOperationsForOilAndGasProducingActivitiesByGeographicAreaTable">
1574
+ <link:definition>965000 - Disclosure - Extractive Industries, Results of Operations for Oil and Gas Producing Activities, by Geographic Area [Table]</link:definition>
1575
+ <link:usedOn>link:definitionLink</link:usedOn>
1576
+ </link:roleType>
1577
+ <link:roleType id="TransfersAndServicingManagingOfRisksInherentInServicingAssetsAndServicingLiabilitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingManagingOfRisksInherentInServicingAssetsAndServicingLiabilitiesTable">
1578
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Managing of Risks Inherent in Servicing Assets and Servicing Liabilities [Table]</link:definition>
1579
+ <link:usedOn>link:definitionLink</link:usedOn>
1580
+ </link:roleType>
1581
+ <link:roleType id="LeasesSaleLeasebackTransactionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/LeasesSaleLeasebackTransactionTable">
1582
+ <link:definition>831000 - Disclosure - Leases, Sale Leaseback Transaction [Table]</link:definition>
1583
+ <link:usedOn>link:definitionLink</link:usedOn>
1584
+ </link:roleType>
1585
+ <link:roleType id="InvestmentsAllOtherInvestmentsScheduleOfLifeSettlementContractsFairValueMethodTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsAllOtherInvestmentsScheduleOfLifeSettlementContractsFairValueMethodTable">
1586
+ <link:definition>336000 - Disclosure - Investments, All Other Investments, Schedule of Life Settlement Contracts, Fair Value Method [Table]</link:definition>
1587
+ <link:usedOn>link:definitionLink</link:usedOn>
1588
+ </link:roleType>
1589
+ <link:roleType id="FinancialServicesInsuranceScheduleOfFairValueOfSeparateAccountsByMajorCategoryOfInvestmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceScheduleOfFairValueOfSeparateAccountsByMajorCategoryOfInvestmentTable">
1590
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Schedule of Fair Value of Separate Accounts by Major Category of Investment [Table]</link:definition>
1591
+ <link:usedOn>link:definitionLink</link:usedOn>
1592
+ </link:roleType>
1593
+ <link:roleType id="SECScheduleArticle12-29MortgageLoansOnRealEstateMortgageLoansOnRealEstateScheduleTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-29MortgageLoansOnRealEstateMortgageLoansOnRealEstateScheduleTable">
1594
+ <link:definition>993400 - Disclosure - SEC Schedule, Article 12-29, Mortgage Loans on Real Estate, Mortgage Loans on Real Estate Schedule [Table]</link:definition>
1595
+ <link:usedOn>link:definitionLink</link:usedOn>
1596
+ </link:roleType>
1597
+ <link:roleType id="SECScheduleArticle12-18SupplementalInformationForProperty-CasualtyInsuranceUnderwritersSupplementalInformationForPropertyCasualtyInsuranceUnderwritersTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-18SupplementalInformationForProperty-CasualtyInsuranceUnderwritersSupplementalInformationForPropertyCasualtyInsuranceUnderwritersTable">
1598
+ <link:definition>994200 - Disclosure - SEC Schedule, Article 12-18, Supplemental Information (for Property-Casualty Insurance Underwriters), Supplemental Information for Property, Casualty Insurance Underwriters [Table]</link:definition>
1599
+ <link:usedOn>link:definitionLink</link:usedOn>
1600
+ </link:roleType>
1601
+ <link:roleType id="FinancialServicesBrokersAndDealersSecuritiesFinancingTransactionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersSecuritiesFinancingTransactionTable">
1602
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Securities Financing Transaction [Table]</link:definition>
1603
+ <link:usedOn>link:definitionLink</link:usedOn>
1604
+ </link:roleType>
1605
+ <link:roleType id="FinancialServicesBrokersAndDealersSecurityOwnedNotReadilyMarketableTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersSecurityOwnedNotReadilyMarketableTable">
1606
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Security Owned Not Readily Marketable [Table]</link:definition>
1607
+ <link:usedOn>link:definitionLink</link:usedOn>
1608
+ </link:roleType>
1609
+ <link:roleType id="TransfersAndServicingSecuritizationFinancialAssetForWhichTransferIsAccountedAsSaleTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingSecuritizationFinancialAssetForWhichTransferIsAccountedAsSaleTable">
1610
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Securitization or Asset-backed Financing Arrangements, Financial Asset for which Transfer is Accounted as Sale [Table]</link:definition>
1611
+ <link:usedOn>link:definitionLink</link:usedOn>
1612
+ </link:roleType>
1613
+ <link:roleType id="FinancialServicesBrokersAndDealersFinancialInstrumentsOwnedAndPledgedAsCollateralTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersFinancialInstrumentsOwnedAndPledgedAsCollateralTable">
1614
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Financial Instruments Owned and Pledged as Collateral [Table]</link:definition>
1615
+ <link:usedOn>link:definitionLink</link:usedOn>
1616
+ </link:roleType>
1617
+ <link:roleType id="TransfersAndServicingFinancialInstrumentsOwnedAndPledgedAsCollateralTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingFinancialInstrumentsOwnedAndPledgedAsCollateralTable">
1618
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Financial Instruments Owned and Pledged as Collateral [Table]</link:definition>
1619
+ <link:usedOn>link:definitionLink</link:usedOn>
1620
+ </link:roleType>
1621
+ <link:roleType id="FinancialServicesBrokersAndDealersSecurityOwnedAndSoldNotYetPurchasedAtFairValueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersSecurityOwnedAndSoldNotYetPurchasedAtFairValueTable">
1622
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Security Owned and Sold, Not yet Purchased, at Fair Value [Table]</link:definition>
1623
+ <link:usedOn>link:definitionLink</link:usedOn>
1624
+ </link:roleType>
1625
+ <link:roleType id="SegmentReportingReconciliationOfAssetsFromSegmentToConsolidatedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingReconciliationOfAssetsFromSegmentToConsolidatedTable">
1626
+ <link:definition>790000 - Disclosure - Segment Reporting, Reconciliation of Assets from Segment to Consolidated [Table]</link:definition>
1627
+ <link:usedOn>link:definitionLink</link:usedOn>
1628
+ </link:roleType>
1629
+ <link:roleType id="SegmentReportingScheduleOfSegmentReportingInformationBySegmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingScheduleOfSegmentReportingInformationBySegmentTable">
1630
+ <link:definition>790000 - Disclosure - Segment Reporting, Schedule of Segment Reporting Information, by Segment [Table]</link:definition>
1631
+ <link:usedOn>link:definitionLink</link:usedOn>
1632
+ </link:roleType>
1633
+ <link:roleType id="SegmentReportingReconciliationOfOtherSignificantReconcilingItemsFromSegmentsToConsolidatedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingReconciliationOfOtherSignificantReconcilingItemsFromSegmentsToConsolidatedTable">
1634
+ <link:definition>790000 - Disclosure - Segment Reporting, Reconciliation of Other Significant Reconciling Items from Segments to Consolidated [Table]</link:definition>
1635
+ <link:usedOn>link:definitionLink</link:usedOn>
1636
+ </link:roleType>
1637
+ <link:roleType id="SegmentReportingReconciliationOfOperatingProfitLossFromSegmentsToConsolidatedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingReconciliationOfOperatingProfitLossFromSegmentsToConsolidatedTable">
1638
+ <link:definition>790000 - Disclosure - Segment Reporting, Reconciliation of Operating Profit (Loss) from Segments to Consolidated [Table]</link:definition>
1639
+ <link:usedOn>link:definitionLink</link:usedOn>
1640
+ </link:roleType>
1641
+ <link:roleType id="SegmentReportingReconciliationOfRevenueFromSegmentsToConsolidatedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SegmentReportingReconciliationOfRevenueFromSegmentsToConsolidatedTable">
1642
+ <link:definition>790000 - Disclosure - Segment Reporting, Reconciliation of Revenue from Segments to Consolidated [Table]</link:definition>
1643
+ <link:usedOn>link:definitionLink</link:usedOn>
1644
+ </link:roleType>
1645
+ <link:roleType id="TransfersAndServicingSensitivityAnalysisOfFairValueOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingSensitivityAnalysisOfFairValueOfInterestsContinuedToBeHeldByTransferorServicingAssetsOrLiabilitiesTable">
1646
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Sensitivity Analysis of Fair Value of Interests Continued to be Held by Transferor, Servicing Assets or Liabilities [Table]</link:definition>
1647
+ <link:usedOn>link:definitionLink</link:usedOn>
1648
+ </link:roleType>
1649
+ <link:roleType id="TransfersAndServicingServicingAssetsAtAmortizedValueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingServicingAssetsAtAmortizedValueTable">
1650
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Servicing Assets at Amortized Value [Table]</link:definition>
1651
+ <link:usedOn>link:definitionLink</link:usedOn>
1652
+ </link:roleType>
1653
+ <link:roleType id="TransfersAndServicingServicingAssetsAtFairValueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingServicingAssetsAtFairValueTable">
1654
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Servicing Assets at Fair Value [Table]</link:definition>
1655
+ <link:usedOn>link:definitionLink</link:usedOn>
1656
+ </link:roleType>
1657
+ <link:roleType id="TransfersAndServicingServicingLiabilitiesAtFairValueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingServicingLiabilitiesAtFairValueTable">
1658
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Servicing Liabilities at Fair Value [Table]</link:definition>
1659
+ <link:usedOn>link:definitionLink</link:usedOn>
1660
+ </link:roleType>
1661
+ <link:roleType id="TransfersAndServicingServicingLiabilityAtAmortizedValueTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingServicingLiabilityAtAmortizedValueTable">
1662
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Servicing Liability at Amortized Value [Table]</link:definition>
1663
+ <link:usedOn>link:definitionLink</link:usedOn>
1664
+ </link:roleType>
1665
+ <link:roleType id="CompensationRelatedCostsStockCompensationScheduleOfShareBasedCompensationSharesAuthorizedUnderStockOptionPlansByExercisePriceRangeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensationScheduleOfShareBasedCompensationSharesAuthorizedUnderStockOptionPlansByExercisePriceRangeTable">
1666
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments, Schedule of Share-based Compensation, Shares Authorized under Stock Option Plans, by Exercise Price Range [Table]</link:definition>
1667
+ <link:usedOn>link:definitionLink</link:usedOn>
1668
+ </link:roleType>
1669
+ <link:roleType id="CompensationRelatedCostsStockCompensationScheduleOfShareBasedCompensationArrangementsByShareBasedPaymentAwardTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensationScheduleOfShareBasedCompensationArrangementsByShareBasedPaymentAwardTable">
1670
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments, Schedule of Share-based Compensation Arrangements by Share-based Payment Award [Table]</link:definition>
1671
+ <link:usedOn>link:definitionLink</link:usedOn>
1672
+ </link:roleType>
1673
+ <link:roleType id="CompensationRelatedCostsStockCompensationScheduleOfShareBasedGoodsAndNonemployeeServicesTransactionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensationScheduleOfShareBasedGoodsAndNonemployeeServicesTransactionTable">
1674
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments, Schedule of Share-based Goods and Nonemployee Services Transaction [Table]</link:definition>
1675
+ <link:usedOn>link:definitionLink</link:usedOn>
1676
+ </link:roleType>
1677
+ <link:roleType id="DebtScheduleOfShortTermDebtTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtScheduleOfShortTermDebtTable">
1678
+ <link:definition>460000 - Disclosure - Debt, Schedule of Short-term Debt [Table]</link:definition>
1679
+ <link:usedOn>link:definitionLink</link:usedOn>
1680
+ </link:roleType>
1681
+ <link:roleType id="EnvironmentalRemediationObligationsSiteContingencyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EnvironmentalRemediationObligationsSiteContingencyTable">
1682
+ <link:definition>425000 - Disclosure - Environmental Remediation Obligations, Site Contingency [Table]</link:definition>
1683
+ <link:usedOn>link:definitionLink</link:usedOn>
1684
+ </link:roleType>
1685
+ <link:roleType id="FinancialServicesInsuranceStatutoryAccountingPracticesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceStatutoryAccountingPracticesTable">
1686
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Statutory Accounting Practices [Table]</link:definition>
1687
+ <link:usedOn>link:definitionLink</link:usedOn>
1688
+ </link:roleType>
1689
+ <link:roleType id="FinancialServicesBrokersAndDealersSubordinatedBorrowingTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBrokersAndDealersSubordinatedBorrowingTable">
1690
+ <link:definition>942000 - Disclosure - Financial Services, Brokers and Dealers, Subordinated Borrowing [Table]</link:definition>
1691
+ <link:usedOn>link:definitionLink</link:usedOn>
1692
+ </link:roleType>
1693
+ <link:roleType id="SubsequentEventsSubsequentEventTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SubsequentEventsSubsequentEventTable">
1694
+ <link:definition>870000 - Disclosure - Subsequent Events, Subsequent Event [Table]</link:definition>
1695
+ <link:usedOn>link:definitionLink</link:usedOn>
1696
+ </link:roleType>
1697
+ <link:roleType id="OrganizationConsolidationAndPresentationOfFinancialStatementsScheduleOfSubsidiaryOfLimitedLiabilityCompanyOrLimitedPartnershipTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OrganizationConsolidationAndPresentationOfFinancialStatementsScheduleOfSubsidiaryOfLimitedLiabilityCompanyOrLimitedPartnershipTable">
1698
+ <link:definition>200000 - Disclosure - Organization, Consolidation and Presentation of Financial Statements, Schedule of Subsidiary of Limited Liability Company or Limited Partnership [Table]</link:definition>
1699
+ <link:usedOn>link:definitionLink</link:usedOn>
1700
+ </link:roleType>
1701
+ <link:roleType id="EquityScheduleOfSubsidiaryOrEquityMethodInvesteeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfSubsidiaryOrEquityMethodInvesteeTable">
1702
+ <link:definition>500000 - Disclosure - Equity, Schedule of Subsidiary or Equity Method Investee [Table]</link:definition>
1703
+ <link:usedOn>link:definitionLink</link:usedOn>
1704
+ </link:roleType>
1705
+ <link:roleType id="SECScheduleArticle12-16SupplementaryInsuranceInformationSupplementaryInsuranceInformationBySegmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-16SupplementaryInsuranceInformationSupplementaryInsuranceInformationBySegmentTable">
1706
+ <link:definition>993800 - Disclosure - SEC Schedule, Article 12-16, Supplementary Insurance Information, Supplementary Insurance Information, by Segment [Table]</link:definition>
1707
+ <link:usedOn>link:definitionLink</link:usedOn>
1708
+ </link:roleType>
1709
+ <link:roleType id="IncomeTaxesTaxCreditCarryforwardTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesTaxCreditCarryforwardTable">
1710
+ <link:definition>770000 - Disclosure - Income Taxes, Tax Credit Carryforward [Table]</link:definition>
1711
+ <link:usedOn>link:definitionLink</link:usedOn>
1712
+ </link:roleType>
1713
+ <link:roleType id="DebtTroubledDebtRestructuringDebtorCurrentPeriodTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtTroubledDebtRestructuringDebtorCurrentPeriodTable">
1714
+ <link:definition>460000 - Disclosure - Debt, Troubled Debt Restructuring, Debtor, Current Period [Table]</link:definition>
1715
+ <link:usedOn>link:definitionLink</link:usedOn>
1716
+ </link:roleType>
1717
+ <link:roleType id="DebtTroubledDebtRestructuringDebtorSubsequentPeriodsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DebtTroubledDebtRestructuringDebtorSubsequentPeriodsTable">
1718
+ <link:definition>460000 - Disclosure - Debt, Troubled Debt Restructuring, Debtor, Subsequent Periods [Table]</link:definition>
1719
+ <link:usedOn>link:definitionLink</link:usedOn>
1720
+ </link:roleType>
1721
+ <link:roleType id="CommitmentAndContingenciesUnrecordedUnconditionalPurchaseObligationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesUnrecordedUnconditionalPurchaseObligationTable">
1722
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Unrecorded Unconditional Purchase Obligation [Table]</link:definition>
1723
+ <link:usedOn>link:definitionLink</link:usedOn>
1724
+ </link:roleType>
1725
+ <link:roleType id="ExtraordinaryAndUnusualItemsUnusualOrInfrequentItemTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtraordinaryAndUnusualItemsUnusualOrInfrequentItemTable">
1726
+ <link:definition>778000 - Disclosure - Extraordinary and Unusual Items, Unusual or Infrequent Item [Table]</link:definition>
1727
+ <link:usedOn>link:definitionLink</link:usedOn>
1728
+ </link:roleType>
1729
+ <link:roleType id="RisksAndUncertaintiesUnusualRiskOrUncertaintyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RisksAndUncertaintiesUnusualRiskOrUncertaintyTable">
1730
+ <link:definition>275000 - Disclosure - Risks and Uncertainties, Unusual Risk or Uncertainty [Table]</link:definition>
1731
+ <link:usedOn>link:definitionLink</link:usedOn>
1732
+ </link:roleType>
1733
+ <link:roleType id="RegulatedOperationsPublicUtilitiesInventoryTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsPublicUtilitiesInventoryTable">
1734
+ <link:definition>980000 - Disclosure - Regulated Operations, Public Utilities, Inventory [Table]</link:definition>
1735
+ <link:usedOn>link:definitionLink</link:usedOn>
1736
+ </link:roleType>
1737
+ <link:roleType id="TransfersAndServicingValuationAllowanceForImpairmentOfRecognizedServicingAssetsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingValuationAllowanceForImpairmentOfRecognizedServicingAssetsTable">
1738
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Valuation Allowance for Impairment of Recognized Servicing Assets [Table]</link:definition>
1739
+ <link:usedOn>link:definitionLink</link:usedOn>
1740
+ </link:roleType>
1741
+ <link:roleType id="IncomeTaxesValuationAllowanceTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesValuationAllowanceTable">
1742
+ <link:definition>770000 - Disclosure - Income Taxes, Valuation Allowance [Table]</link:definition>
1743
+ <link:usedOn>link:definitionLink</link:usedOn>
1744
+ </link:roleType>
1745
+ <link:roleType id="SECScheduleArticle12-09ValuationAndQualifyingAccountsValuationAndQualifyingAccountsDisclosureTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-09ValuationAndQualifyingAccountsValuationAndQualifyingAccountsDisclosureTable">
1746
+ <link:definition>993000 - Disclosure - SEC Schedule, Article 12-09, Valuation and Qualifying Accounts, Valuation and Qualifying Accounts Disclosure [Table]</link:definition>
1747
+ <link:usedOn>link:definitionLink</link:usedOn>
1748
+ </link:roleType>
1749
+ <link:roleType id="AccountingPoliciesScheduleOfVariableInterestEntitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingPoliciesScheduleOfVariableInterestEntitiesTable">
1750
+ <link:definition>290000 - Disclosure - Accounting Policies, Schedule of Variable Interest Entities [Table]</link:definition>
1751
+ <link:usedOn>link:definitionLink</link:usedOn>
1752
+ </link:roleType>
1753
+ <link:roleType id="OrganizationConsolidationAndPresentationOfFinancialStatementsScheduleOfVariableInterestEntitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OrganizationConsolidationAndPresentationOfFinancialStatementsScheduleOfVariableInterestEntitiesTable">
1754
+ <link:definition>200000 - Disclosure - Organization, Consolidation and Presentation of Financial Statements, Schedule of Variable Interest Entities [Table]</link:definition>
1755
+ <link:usedOn>link:definitionLink</link:usedOn>
1756
+ </link:roleType>
1757
+ <link:roleType id="FinancialServicesInsuranceWeightedAverageDiscountRateTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceWeightedAverageDiscountRateTable">
1758
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Weighted Average Discount Rate [Table]</link:definition>
1759
+ <link:usedOn>link:definitionLink</link:usedOn>
1760
+ </link:roleType>
1761
+ <link:roleType id="SECScheduleArticle12-28RealEstateAndAccumulatedDepreciationRealEstateWriteDownOrReserveTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-28RealEstateAndAccumulatedDepreciationRealEstateWriteDownOrReserveTable">
1762
+ <link:definition>993200 - Disclosure - SEC Schedule, Article 12-28, Real Estate and Accumulated Depreciation, Real Estate, Write-down or Reserve [Table]</link:definition>
1763
+ <link:usedOn>link:definitionLink</link:usedOn>
1764
+ </link:roleType>
1765
+ <link:roleType id="InvestmentsDebtAndEquitySecuritiesScheduleOfAvailableForSaleSecuritiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecuritiesScheduleOfAvailableForSaleSecuritiesTable">
1766
+ <link:definition>330000 - Disclosure - Investments, Debt and Equity Securities, Schedule of Available-for-sale Securities [Table]</link:definition>
1767
+ <link:usedOn>link:definitionLink</link:usedOn>
1768
+ </link:roleType>
1769
+ <link:roleType id="InvestmentsDebtAndEquitySecuritiesScheduleOfHeldToMaturitySecuritiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecuritiesScheduleOfHeldToMaturitySecuritiesTable">
1770
+ <link:definition>330000 - Disclosure - Investments, Debt and Equity Securities, Schedule of Held-to-maturity Securities [Table]</link:definition>
1771
+ <link:usedOn>link:definitionLink</link:usedOn>
1772
+ </link:roleType>
1773
+ <link:roleType id="EquityScheduleOfLimitedPartnersCapitalAccountByClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfLimitedPartnersCapitalAccountByClassTable">
1774
+ <link:definition>500000 - Disclosure - Equity, Schedule of Limited Partners' Capital Account by Class [Table]</link:definition>
1775
+ <link:usedOn>link:definitionLink</link:usedOn>
1776
+ </link:roleType>
1777
+ <link:roleType id="InvestmentsDebtAndEquitySecuritiesScheduleOfTradingSecuritiesAndOtherTradingAssetsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecuritiesScheduleOfTradingSecuritiesAndOtherTradingAssetsTable">
1778
+ <link:definition>330000 - Disclosure - Investments, Debt and Equity Securities, Schedule of Trading Securities and Other Trading Assets [Table]</link:definition>
1779
+ <link:usedOn>link:definitionLink</link:usedOn>
1780
+ </link:roleType>
1781
+ <link:roleType id="InvestmentsDebtAndEquitySecuritiesScheduleOfInvestmentIncomeReportedAmountsByCategoryTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecuritiesScheduleOfInvestmentIncomeReportedAmountsByCategoryTable">
1782
+ <link:definition>330000 - Disclosure - Investments, Debt and Equity Securities, Schedule of Investment Income, Reported Amounts, by Category [Table]</link:definition>
1783
+ <link:usedOn>link:definitionLink</link:usedOn>
1784
+ </link:roleType>
1785
+ <link:roleType id="DevelopingStageEnterprisesScheduleOfEquityIssuedSinceInceptionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DevelopingStageEnterprisesScheduleOfEquityIssuedSinceInceptionTable">
1786
+ <link:definition>915000 - Disclosure - Development Stage Enterprises, Schedule of Equity Issued Since Inception [Table]</link:definition>
1787
+ <link:usedOn>link:definitionLink</link:usedOn>
1788
+ </link:roleType>
1789
+ <link:roleType id="InvestmentsAllOtherInvestmentsScheduleOfLifeSettlementContractsInvestmentMethodTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsAllOtherInvestmentsScheduleOfLifeSettlementContractsInvestmentMethodTable">
1790
+ <link:definition>336000 - Disclosure - Investments, All Other Investments, Schedule of Life Settlement Contracts, Investment Method [Table]</link:definition>
1791
+ <link:usedOn>link:definitionLink</link:usedOn>
1792
+ </link:roleType>
1793
+ <link:roleType id="EquityTargetedOrTrackingStockStockTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityTargetedOrTrackingStockStockTable">
1794
+ <link:definition>500000 - Disclosure - Equity, Targeted or Tracking Stock, Stock [Table]</link:definition>
1795
+ <link:usedOn>link:definitionLink</link:usedOn>
1796
+ </link:roleType>
1797
+ <link:roleType id="ExitOrDisposalCostObligationsScheduleOfRestructuringAndRelatedCostsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExitOrDisposalCostObligationsScheduleOfRestructuringAndRelatedCostsTable">
1798
+ <link:definition>430000 - Disclosure - Exit or Disposal Cost Obligations, Schedule of Restructuring and Related Costs [Table]</link:definition>
1799
+ <link:usedOn>link:definitionLink</link:usedOn>
1800
+ </link:roleType>
1801
+ <link:roleType id="LeasesPropertySubjectToOrAvailableForOperatingLeaseByMajorPropertyClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/LeasesPropertySubjectToOrAvailableForOperatingLeaseByMajorPropertyClassTable">
1802
+ <link:definition>831000 - Disclosure - Leases, Property Subject to or Available for Operating Lease, by Major Property Class [Table]</link:definition>
1803
+ <link:usedOn>link:definitionLink</link:usedOn>
1804
+ </link:roleType>
1805
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueByBalanceSheetGroupingTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueByBalanceSheetGroupingTable">
1806
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, by Balance Sheet Grouping [Table]</link:definition>
1807
+ <link:usedOn>link:definitionLink</link:usedOn>
1808
+ </link:roleType>
1809
+ <link:roleType id="StatementOfOtherComprehensiveIncomeStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfOtherComprehensiveIncomeStatementTable">
1810
+ <link:definition>148400 - Statement - Statement of Other Comprehensive Income, Statement [Table]</link:definition>
1811
+ <link:usedOn>link:definitionLink</link:usedOn>
1812
+ </link:roleType>
1813
+ <link:roleType id="StatementOfFinancialPositionClassifiedStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionClassifiedStatementTable">
1814
+ <link:definition>104000 - Statement - Statement of Financial Position, Classified, Statement [Table]</link:definition>
1815
+ <link:usedOn>link:definitionLink</link:usedOn>
1816
+ </link:roleType>
1817
+ <link:roleType id="StatementOfFinancialPositionUnclassified-DepositBasedOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-DepositBasedOperationsStatementTable">
1818
+ <link:definition>108000 - Statement - Statement of Financial Position, Unclassified - Deposit Based Operations, Statement [Table]</link:definition>
1819
+ <link:usedOn>link:definitionLink</link:usedOn>
1820
+ </link:roleType>
1821
+ <link:roleType id="StatementOfFinancialPositionUnclassified-InvestmentBasedOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-InvestmentBasedOperationsStatementTable">
1822
+ <link:definition>108200 - Statement - Statement of Financial Position, Unclassified - Insurance Based Operations, Statement [Table]</link:definition>
1823
+ <link:usedOn>link:definitionLink</link:usedOn>
1824
+ </link:roleType>
1825
+ <link:roleType id="StatementOfFinancialPositionUnclassified-SecuritiesBasedOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-SecuritiesBasedOperationsStatementTable">
1826
+ <link:definition>112000 - Statement - Statement of Financial Position, Unclassified - Securities Based Operations, Statement [Table]</link:definition>
1827
+ <link:usedOn>link:definitionLink</link:usedOn>
1828
+ </link:roleType>
1829
+ <link:roleType id="StatementOfIncomeStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeStatementTable">
1830
+ <link:definition>124000 - Statement - Statement of Income (Including Gross Margin), Statement [Table]</link:definition>
1831
+ <link:usedOn>link:definitionLink</link:usedOn>
1832
+ </link:roleType>
1833
+ <link:roleType id="StatementOfIncomeInterestBasedRevenueStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInterestBasedRevenueStatementTable">
1834
+ <link:definition>132001 - Statement - Statement of Income, Interest Based Revenue, Statement [Table]</link:definition>
1835
+ <link:usedOn>link:definitionLink</link:usedOn>
1836
+ </link:roleType>
1837
+ <link:roleType id="StatementOfIncomeInsuranceBasedRevenueStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeInsuranceBasedRevenueStatementTable">
1838
+ <link:definition>136000 - Statement - Statement of Income, Insurance Based Revenue, Statement [Table]</link:definition>
1839
+ <link:usedOn>link:definitionLink</link:usedOn>
1840
+ </link:roleType>
1841
+ <link:roleType id="StatementOfIncomeSecuritiesBasedIncomeStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeSecuritiesBasedIncomeStatementTable">
1842
+ <link:definition>140400 - Statement - Statement of Income, Securities Based Income, Statement [Table]</link:definition>
1843
+ <link:usedOn>link:definitionLink</link:usedOn>
1844
+ </link:roleType>
1845
+ <link:roleType id="StatementOfCashFlowsIndirectStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectStatementTable">
1846
+ <link:definition>152200 - Statement - Statement of Cash Flows, Statement [Table]</link:definition>
1847
+ <link:usedOn>link:definitionLink</link:usedOn>
1848
+ </link:roleType>
1849
+ <link:roleType id="StatementOfCashFlowsIndirectDepositBasedOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectDepositBasedOperationsStatementTable">
1850
+ <link:definition>160000 - Statement - Statement of Cash Flows, Deposit Based Operations, Statement [Table]</link:definition>
1851
+ <link:usedOn>link:definitionLink</link:usedOn>
1852
+ </link:roleType>
1853
+ <link:roleType id="StatementOfCashFlowsIndirectInvestmentBasedOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectInvestmentBasedOperationsStatementTable">
1854
+ <link:definition>164000 - Statement - Statement of Cash Flows, Insurance Based Operations, Statement [Table]</link:definition>
1855
+ <link:usedOn>link:definitionLink</link:usedOn>
1856
+ </link:roleType>
1857
+ <link:roleType id="StatementOfCashFlowsIndirectSecuritiesBasedOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectSecuritiesBasedOperationsStatementTable">
1858
+ <link:definition>168400 - Statement - Statement of Cash Flows, Securities Based Operations, Statement [Table]</link:definition>
1859
+ <link:usedOn>link:definitionLink</link:usedOn>
1860
+ </link:roleType>
1861
+ <link:roleType id="StatementOfCashFlowsDirectStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsDirectStatementTable">
1862
+ <link:definition>172600 - Statement - Statement of Cash Flows, Direct Method Operating Activities, Statement [Table]</link:definition>
1863
+ <link:usedOn>link:definitionLink</link:usedOn>
1864
+ </link:roleType>
1865
+ <link:roleType id="StatementOfPartnersCapitalStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfPartnersCapitalStatementTable">
1866
+ <link:definition>152000 - Statement - Statement of Partners' Capital, Statement [Table]</link:definition>
1867
+ <link:usedOn>link:definitionLink</link:usedOn>
1868
+ </link:roleType>
1869
+ <link:roleType id="CommonDomainMembersStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/CommonDomainMembersStatementTable">
1870
+ <link:definition>190000 - Statement - Common Domain Members, Statement [Table]</link:definition>
1871
+ <link:usedOn>link:definitionLink</link:usedOn>
1872
+ </link:roleType>
1873
+ <link:roleType id="StatementOfFinancialPositionUnclassified-RealEstateOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionUnclassified-RealEstateOperationsStatementTable">
1874
+ <link:definition>110200 - Statement - Statement of Financial Position, Unclassified - Real Estate Operations, Statement [Table]</link:definition>
1875
+ <link:usedOn>link:definitionLink</link:usedOn>
1876
+ </link:roleType>
1877
+ <link:roleType id="StatementOfFinancialPositionClassified-RealEstateOperationsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfFinancialPositionClassified-RealEstateOperationsStatementTable">
1878
+ <link:definition>110000 - Statement - Statement of Financial Position, Classified - Real Estate Operations, Statement [Table]</link:definition>
1879
+ <link:usedOn>link:definitionLink</link:usedOn>
1880
+ </link:roleType>
1881
+ <link:roleType id="StatementOfIncomeAlternativeStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeAlternativeStatementTable">
1882
+ <link:definition>124100 - Statement - Statement of Income (Excluding Gross Margin Alternative), Statement [Table]</link:definition>
1883
+ <link:usedOn>link:definitionLink</link:usedOn>
1884
+ </link:roleType>
1885
+ <link:roleType id="StatementOfIncomeRealEstateExcludingREITsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateExcludingREITsStatementTable">
1886
+ <link:definition>144000 - Statement - Statement of Income, Real Estate, Excluding REITs, Statement [Table]</link:definition>
1887
+ <link:usedOn>link:definitionLink</link:usedOn>
1888
+ </link:roleType>
1889
+ <link:roleType id="StatementOfIncomeRealEstateInvestmentTrustsStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfIncomeRealEstateInvestmentTrustsStatementTable">
1890
+ <link:definition>145000 - Statement - Statement of Income, Real Estate Investment Trusts, Statement [Table]</link:definition>
1891
+ <link:usedOn>link:definitionLink</link:usedOn>
1892
+ </link:roleType>
1893
+ <link:roleType id="StatementOfCashFlowsIndirectRealEstateStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfCashFlowsIndirectRealEstateStatementTable">
1894
+ <link:definition>170000 - Statement - Statement of Cash Flows, Real Estate, Including REITs, Statement [Table]</link:definition>
1895
+ <link:usedOn>link:definitionLink</link:usedOn>
1896
+ </link:roleType>
1897
+ <link:roleType id="StatementOfShareholdersEquityAndOtherComprehensiveIncomeStatementTable" roleURI="http://xbrl.us/us-gaap/role/statement/StatementOfShareholdersEquityAndOtherComprehensiveIncomeStatementTable">
1898
+ <link:definition>148600 - Statement - Statement of Shareholders' Equity and Other Comprehensive Income, Statement [Table]</link:definition>
1899
+ <link:usedOn>link:definitionLink</link:usedOn>
1900
+ </link:roleType>
1901
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueEstimateNotPracticableTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueEstimateNotPracticableTable">
1902
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Estimate Not Practicable [Table]</link:definition>
1903
+ <link:usedOn>link:definitionLink</link:usedOn>
1904
+ </link:roleType>
1905
+ <link:roleType id="EquityOptionIndexedToIssuersEquityEquityTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityOptionIndexedToIssuersEquityEquityTable">
1906
+ <link:definition>500000 - Disclosure - Equity, Option Indexed to Issuer's Equity, Equity [Table]</link:definition>
1907
+ <link:usedOn>link:definitionLink</link:usedOn>
1908
+ </link:roleType>
1909
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueConcentrationOfRiskTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueConcentrationOfRiskTable">
1910
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Concentration of Risk [Table]</link:definition>
1911
+ <link:usedOn>link:definitionLink</link:usedOn>
1912
+ </link:roleType>
1913
+ <link:roleType id="CompensationRelatedCostsRetirementBenefitsScheduleOfIncrementalEffectsOnBalanceSheetApplicationOfSFAS158RecognitionProvisionsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsRetirementBenefitsScheduleOfIncrementalEffectsOnBalanceSheetApplicationOfSFAS158RecognitionProvisionsTable">
1914
+ <link:definition>730000 - Disclosure - Compensation Related Costs, Retirement Benefits, Schedule of Incremental Effects on Balance Sheet, Application of FAS 158 Recognition Provisions [Table]</link:definition>
1915
+ <link:usedOn>link:definitionLink</link:usedOn>
1916
+ </link:roleType>
1917
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueAssetsMeasuredOnRecurringBasisTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueAssetsMeasuredOnRecurringBasisTable">
1918
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Assets Measured on Recurring Basis [Table]</link:definition>
1919
+ <link:usedOn>link:definitionLink</link:usedOn>
1920
+ </link:roleType>
1921
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueLiabilitiesMeasuredOnRecurringBasisTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueLiabilitiesMeasuredOnRecurringBasisTable">
1922
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Liabilities Measured on Recurring Basis [Table]</link:definition>
1923
+ <link:usedOn>link:definitionLink</link:usedOn>
1924
+ </link:roleType>
1925
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueAssetsMeasuredOnRecurringBasisUnobservableInputReconciliationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueAssetsMeasuredOnRecurringBasisUnobservableInputReconciliationTable">
1926
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Assets Measured on Recurring Basis, Unobservable Input Reconciliation [Table]</link:definition>
1927
+ <link:usedOn>link:definitionLink</link:usedOn>
1928
+ </link:roleType>
1929
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueLiabilitiesMeasuredOnRecurringBasisUnobservableInputReconciliationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueLiabilitiesMeasuredOnRecurringBasisUnobservableInputReconciliationTable">
1930
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Liabilities Measured on Recurring Basis, Unobservable Input Reconciliation [Table]</link:definition>
1931
+ <link:usedOn>link:definitionLink</link:usedOn>
1932
+ </link:roleType>
1933
+ <link:roleType id="EquityClassOfWarrantOrRightTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityClassOfWarrantOrRightTable">
1934
+ <link:definition>500000 - Disclosure - Equity, Class of Warrant or Right [Table]</link:definition>
1935
+ <link:usedOn>link:definitionLink</link:usedOn>
1936
+ </link:roleType>
1937
+ <link:roleType id="OtherLiabilitiesClassOfWarrantOrRightTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesClassOfWarrantOrRightTable">
1938
+ <link:definition>470000 - Disclosure - Other Liabilities, Class of Warrant or Right [Table]</link:definition>
1939
+ <link:usedOn>link:definitionLink</link:usedOn>
1940
+ </link:roleType>
1941
+ <link:roleType id="IncomeTaxesOperatingLossCarryforwardsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IncomeTaxesOperatingLossCarryforwardsTable">
1942
+ <link:definition>770000 - Disclosure - Income Taxes, Operating Loss Carryforwards [Table]</link:definition>
1943
+ <link:usedOn>link:definitionLink</link:usedOn>
1944
+ </link:roleType>
1945
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueAssetsMeasuredOnNonrecurringBasisTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueAssetsMeasuredOnNonrecurringBasisTable">
1946
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Assets and Liabilities Measured on Nonrecurring Basis [Table]</link:definition>
1947
+ <link:usedOn>link:definitionLink</link:usedOn>
1948
+ </link:roleType>
1949
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueOptionQualitativeDisclosuresRelatedToElectionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueOptionQualitativeDisclosuresRelatedToElectionTable">
1950
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Option, Qualitative Disclosures Related to Election [Table]</link:definition>
1951
+ <link:usedOn>link:definitionLink</link:usedOn>
1952
+ </link:roleType>
1953
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueOptionQuantitativeDisclosuresTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueOptionQuantitativeDisclosuresTable">
1954
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Option, Quantitative Disclosures [Table]</link:definition>
1955
+ <link:usedOn>link:definitionLink</link:usedOn>
1956
+ </link:roleType>
1957
+ <link:roleType id="EquitySubsidiaryOrEquityMethodInvesteeSaleOfStockBySubsidiaryOrEquityInvesteeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquitySubsidiaryOrEquityMethodInvesteeSaleOfStockBySubsidiaryOrEquityInvesteeTable">
1958
+ <link:definition>500000 - Disclosure - Equity, Subsidiary or Equity Method Investee, Sale of Stock by Subsidiary or Equity Investee [Table]</link:definition>
1959
+ <link:usedOn>link:definitionLink</link:usedOn>
1960
+ </link:roleType>
1961
+ <link:roleType id="HealthCareOrganizationsHealthCareTrustFundTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/HealthCareOrganizationsHealthCareTrustFundTable">
1962
+ <link:definition>955000 - Disclosure - Health Care Organizations, Health Care Trust Fund [Table]</link:definition>
1963
+ <link:usedOn>link:definitionLink</link:usedOn>
1964
+ </link:roleType>
1965
+ <link:roleType id="SECScheduleArticle12-15SummaryOfInvestments-OtherThanInvestmentsInRelatedPartiesSummaryOfInvestmentsOtherThanInvestmentsInRelatedPartiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-15SummaryOfInvestments-OtherThanInvestmentsInRelatedPartiesSummaryOfInvestmentsOtherThanInvestmentsInRelatedPartiesTable">
1966
+ <link:definition>993600 - Disclosure - SEC Schedule, Article 12-15, Summary of Investments - Other than Investments in Related Parties, Summary of Investments, Other than Investments in Related Parties [Table]</link:definition>
1967
+ <link:usedOn>link:definitionLink</link:usedOn>
1968
+ </link:roleType>
1969
+ <link:roleType id="CommitmentAndContingenciesLongTermPurchaseCommitmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesLongTermPurchaseCommitmentTable">
1970
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Long-term Purchase Commitment [Table]</link:definition>
1971
+ <link:usedOn>link:definitionLink</link:usedOn>
1972
+ </link:roleType>
1973
+ <link:roleType id="SECScheduleArticle12-29MortgageLoansOnRealEstateMortgageLoansOnRealEstateWriteDownOrReserveTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-29MortgageLoansOnRealEstateMortgageLoansOnRealEstateWriteDownOrReserveTable">
1974
+ <link:definition>993400 - Disclosure - SEC Schedule, Article 12-29, Mortgage Loans on Real Estate, Mortgage Loans on Real Estate, Write-down or Reserve [Table]</link:definition>
1975
+ <link:usedOn>link:definitionLink</link:usedOn>
1976
+ </link:roleType>
1977
+ <link:roleType id="EquityClassOfTreasuryStockTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityClassOfTreasuryStockTable">
1978
+ <link:definition>500000 - Disclosure - Equity, Class of Treasury Stock [Table]</link:definition>
1979
+ <link:usedOn>link:definitionLink</link:usedOn>
1980
+ </link:roleType>
1981
+ <link:roleType id="EarningsPerShareScheduleOfEarningsPerShareDilutedByCommonClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EarningsPerShareScheduleOfEarningsPerShareDilutedByCommonClassTable">
1982
+ <link:definition>780000 - Disclosure - Earnings Per Share, Schedule of Earnings Per Share, Diluted, by Common Class [Table]</link:definition>
1983
+ <link:usedOn>link:definitionLink</link:usedOn>
1984
+ </link:roleType>
1985
+ <link:roleType id="EarningsPerShareScheduleOfEarningsPerShareBasicByCommonClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EarningsPerShareScheduleOfEarningsPerShareBasicByCommonClassTable">
1986
+ <link:definition>780000 - Disclosure - Earnings Per Share, Schedule of Earnings Per Share, Basic, by Common Class [Table]</link:definition>
1987
+ <link:usedOn>link:definitionLink</link:usedOn>
1988
+ </link:roleType>
1989
+ <link:roleType id="EarningsPerShareScheduleOfAntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EarningsPerShareScheduleOfAntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareTable">
1990
+ <link:definition>780000 - Disclosure - Earnings Per Share, Schedule of Antidilutive Securities Excluded from Computation of Earnings Per Share [Table]</link:definition>
1991
+ <link:usedOn>link:definitionLink</link:usedOn>
1992
+ </link:roleType>
1993
+ <link:roleType id="ExitOrDisposalCostObligationsScheduleOfEffectsOnFutureEarningsAndCashFlowsResultingFromExitPlanTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExitOrDisposalCostObligationsScheduleOfEffectsOnFutureEarningsAndCashFlowsResultingFromExitPlanTable">
1994
+ <link:definition>430000 - Disclosure - Exit or Disposal Cost Obligations, Schedule of Effects on Future Earnings and Cash Flows Resulting from Exit Plan [Table]</link:definition>
1995
+ <link:usedOn>link:definitionLink</link:usedOn>
1996
+ </link:roleType>
1997
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresFairValueOptionDisclosuresRelatedToElectionItemsExistingAtEffectiveDateTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresFairValueOptionDisclosuresRelatedToElectionItemsExistingAtEffectiveDateTable">
1998
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Fair Value, Option, Disclosures Related to Election, Items Existing at Effective Date [Table]</link:definition>
1999
+ <link:usedOn>link:definitionLink</link:usedOn>
2000
+ </link:roleType>
2001
+ <link:roleType id="ExitOrDisposalCostObligationsScheduleOfRestructuringReserveByTypeOfRestructuringTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExitOrDisposalCostObligationsScheduleOfRestructuringReserveByTypeOfRestructuringTable">
2002
+ <link:definition>430000 - Disclosure - Exit or Disposal Cost Obligations, Schedule of Restructuring Reserve by Type of Restructuring [Table]</link:definition>
2003
+ <link:usedOn>link:definitionLink</link:usedOn>
2004
+ </link:roleType>
2005
+ <link:roleType id="InvestmentsEquityMethodAndJointVenturesScheduleOfEquityMethodInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsEquityMethodAndJointVenturesScheduleOfEquityMethodInvestmentsTable">
2006
+ <link:definition>333000 - Disclosure - Investments, Equity Method and Joint Ventures, Schedule of Equity Method Investments [Table]</link:definition>
2007
+ <link:usedOn>link:definitionLink</link:usedOn>
2008
+ </link:roleType>
2009
+ <link:roleType id="ManagementReportOfficersTable" roleURI="http://xbrl.us/us-gaap/role/document/ManagementReportOfficersTable">
2010
+ <link:definition>994600 - Document - Management Report, Officers [Table]</link:definition>
2011
+ <link:usedOn>link:definitionLink</link:usedOn>
2012
+ </link:roleType>
2013
+ <link:roleType id="SECCertificationPrincipalOfficersTable" roleURI="http://xbrl.us/us-gaap/role/document/SECCertificationPrincipalOfficersTable">
2014
+ <link:definition>994400 - Document - SEC Certification, Principal Officers [Table]</link:definition>
2015
+ <link:usedOn>link:definitionLink</link:usedOn>
2016
+ </link:roleType>
2017
+ <link:roleType id="CompensationRelatedCostsStockCompensationScheduleOfEmployeeServiceShareBasedCompensationAllocationOfRecognizedPeriodCostsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensationScheduleOfEmployeeServiceShareBasedCompensationAllocationOfRecognizedPeriodCostsTable">
2018
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments, Schedule of Employee Service Share-based Compensation, Allocation of Recognized Period Costs [Table]</link:definition>
2019
+ <link:usedOn>link:definitionLink</link:usedOn>
2020
+ </link:roleType>
2021
+ <link:roleType id="PropertyPlantAndEquipmentScheduleOfPropertyPlantAndEquipmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentScheduleOfPropertyPlantAndEquipmentTable">
2022
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Schedule of Property, Plant and Equipment [Table]</link:definition>
2023
+ <link:usedOn>link:definitionLink</link:usedOn>
2024
+ </link:roleType>
2025
+ <link:roleType id="PropertyPlantAndEquipmentScheduleOfSignificantAcquisitionsAndDisposalsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentScheduleOfSignificantAcquisitionsAndDisposalsTable">
2026
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Schedule of Significant Acquisitions and Disposals [Table]</link:definition>
2027
+ <link:usedOn>link:definitionLink</link:usedOn>
2028
+ </link:roleType>
2029
+ <link:roleType id="PropertyPlantAndEquipmentScheduleOfImpairedLongLivedAssetsHeldAndUsedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentScheduleOfImpairedLongLivedAssetsHeldAndUsedTable">
2030
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Schedule of Impaired Long-Lived Assets Held and Used [Table]</link:definition>
2031
+ <link:usedOn>link:definitionLink</link:usedOn>
2032
+ </link:roleType>
2033
+ <link:roleType id="PropertyPlantAndEquipmentImpairedAssetsToBeDisposedOfByMethodOtherThanSaleTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentImpairedAssetsToBeDisposedOfByMethodOtherThanSaleTable">
2034
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Impaired Assets to be Disposed of by Method Other than Sale [Table]</link:definition>
2035
+ <link:usedOn>link:definitionLink</link:usedOn>
2036
+ </link:roleType>
2037
+ <link:roleType id="PropertyPlantAndEquipmentScheduleOfLongLivedAssetsToBeAbandonedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentScheduleOfLongLivedAssetsToBeAbandonedTable">
2038
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Schedule of Long-Lived Assets to be Abandoned [Table]</link:definition>
2039
+ <link:usedOn>link:definitionLink</link:usedOn>
2040
+ </link:roleType>
2041
+ <link:roleType id="PropertyPlantAndEquipmentScheduleOfAssetsDisposedOfByMethodOtherThanSaleInPeriodOfDispositionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentScheduleOfAssetsDisposedOfByMethodOtherThanSaleInPeriodOfDispositionTable">
2042
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Schedule of Assets Disposed of by Method Other than Sale, in Period of Disposition [Table]</link:definition>
2043
+ <link:usedOn>link:definitionLink</link:usedOn>
2044
+ </link:roleType>
2045
+ <link:roleType id="PropertyPlantAndEquipmentScheduleOfLongLivedAssetsHeldForSaleTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/PropertyPlantAndEquipmentScheduleOfLongLivedAssetsHeldForSaleTable">
2046
+ <link:definition>360000 - Disclosure - Property, Plant, and Equipment, Schedule of Long Lived Assets Held-for-sale [Table]</link:definition>
2047
+ <link:usedOn>link:definitionLink</link:usedOn>
2048
+ </link:roleType>
2049
+ <link:roleType id="CompensationRelatedCostsStockCompensationScheduleOfDeferredCompensationArrangementWithIndividualShareBasedPaymentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsStockCompensationScheduleOfDeferredCompensationArrangementWithIndividualShareBasedPaymentsTable">
2050
+ <link:definition>710000 - Disclosure - Compensation Related Costs, Share Based Payments, Schedule of Deferred Compensation Arrangement with Individual, Share-based Payments [Table]</link:definition>
2051
+ <link:usedOn>link:definitionLink</link:usedOn>
2052
+ </link:roleType>
2053
+ <link:roleType id="TransfersAndServicingEffectsOfChangesInPrepaymentEstimateAssumptionsForCMOsAndREMICsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingEffectsOfChangesInPrepaymentEstimateAssumptionsForCMOsAndREMICsTable">
2054
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Effects of Changes in Prepayment Estimate Assumptions for CMOs and REMICs [Table]</link:definition>
2055
+ <link:usedOn>link:definitionLink</link:usedOn>
2056
+ </link:roleType>
2057
+ <link:roleType id="OtherLiabilitiesScheduleOfSharesSubjectToMandatoryRedemptionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesScheduleOfSharesSubjectToMandatoryRedemptionTable">
2058
+ <link:definition>470000 - Disclosure - Other Liabilities, Schedule of Shares Subject to Mandatory Redemption [Table]</link:definition>
2059
+ <link:usedOn>link:definitionLink</link:usedOn>
2060
+ </link:roleType>
2061
+ <link:roleType id="RegulatedOperationsPublicUtilityPropertyPlantAndEquipmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsPublicUtilityPropertyPlantAndEquipmentTable">
2062
+ <link:definition>980000 - Disclosure - Regulated Operations, Public Utility, Property, Plant and Equipment [Table]</link:definition>
2063
+ <link:usedOn>link:definitionLink</link:usedOn>
2064
+ </link:roleType>
2065
+ <link:roleType id="ExtractiveIndustriesProjectsWithExploratoryWellCostsCapitalizedForMoreThanOneYearTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesProjectsWithExploratoryWellCostsCapitalizedForMoreThanOneYearTable">
2066
+ <link:definition>965000 - Disclosure - Extractive Industries, Projects with Exploratory Well Costs Capitalized for More than One Year [Table]</link:definition>
2067
+ <link:usedOn>link:definitionLink</link:usedOn>
2068
+ </link:roleType>
2069
+ <link:roleType id="FinancialServicesBankingAndThriftScheduleOfComplianceWithRegulatoryCapitalRequirementsUnderBankingRegulationsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesBankingAndThriftScheduleOfComplianceWithRegulatoryCapitalRequirementsUnderBankingRegulationsTable">
2070
+ <link:definition>940000 - Disclosure - Financial Services, Banking and Thrift, Schedule of Compliance with Regulatory Capital Requirements under Banking Regulations [Table]</link:definition>
2071
+ <link:usedOn>link:definitionLink</link:usedOn>
2072
+ </link:roleType>
2073
+ <link:roleType id="ExtractiveIndustriesOilAndGasInProcessActivitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesOilAndGasInProcessActivitiesTable">
2074
+ <link:definition>965000 - Disclosure - Extractive Industries, Oil and Gas In Process Activities [Table]</link:definition>
2075
+ <link:usedOn>link:definitionLink</link:usedOn>
2076
+ </link:roleType>
2077
+ <link:roleType id="ExtractiveIndustriesAmortizationExpensePerUnitOfProductionTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesAmortizationExpensePerUnitOfProductionTable">
2078
+ <link:definition>965000 - Disclosure - Extractive Industries, Amortization Expense Per Unit of Production [Table]</link:definition>
2079
+ <link:usedOn>link:definitionLink</link:usedOn>
2080
+ </link:roleType>
2081
+ <link:roleType id="ExtractiveIndustriesCapitalizedCostsOfUnprovedPropertiesExcludedFromAmortizationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ExtractiveIndustriesCapitalizedCostsOfUnprovedPropertiesExcludedFromAmortizationTable">
2082
+ <link:definition>965000 - Disclosure - Extractive Industries, Capitalized Costs of Unproved Properties Excluded from Amortization [Table]</link:definition>
2083
+ <link:usedOn>link:definitionLink</link:usedOn>
2084
+ </link:roleType>
2085
+ <link:roleType id="BusinessCombinationsFiniteLivedIntangibleAssetsAcquiredAsPartOfBusinessCombinationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinationsFiniteLivedIntangibleAssetsAcquiredAsPartOfBusinessCombinationTable">
2086
+ <link:definition>800000 - Disclosure - Business Combinations, Finite-Lived Intangible Assets Acquired as Part of Business Combination [Table]</link:definition>
2087
+ <link:usedOn>link:definitionLink</link:usedOn>
2088
+ </link:roleType>
2089
+ <link:roleType id="BusinessCombinationsIndefiniteLivedIntangibleAssetsAcquiredAsPartOfBusinessCombinationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/BusinessCombinationsIndefiniteLivedIntangibleAssetsAcquiredAsPartOfBusinessCombinationTable">
2090
+ <link:definition>800000 - Disclosure - Business Combinations, Indefinite-lived Intangible Assets Acquired as Part of Business Combination [Table]</link:definition>
2091
+ <link:usedOn>link:definitionLink</link:usedOn>
2092
+ </link:roleType>
2093
+ <link:roleType id="FinancialInstrumentsFairValueDisclosuresScheduleOfFairValueOffBalanceSheetRisksTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialInstrumentsFairValueDisclosuresScheduleOfFairValueOffBalanceSheetRisksTable">
2094
+ <link:definition>815000 - Disclosure - Fair Value Measures and Disclosures, Schedule of Fair Value, Off-balance Sheet Risks [Table]</link:definition>
2095
+ <link:usedOn>link:definitionLink</link:usedOn>
2096
+ </link:roleType>
2097
+ <link:roleType id="EntityInformationEntityNorthAmericanIndustryClassificationsTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntityNorthAmericanIndustryClassificationsTable">
2098
+ <link:definition>995400 - Document - Entity Information, Entity North American Industry Classifications [Table]</link:definition>
2099
+ <link:usedOn>link:definitionLink</link:usedOn>
2100
+ </link:roleType>
2101
+ <link:roleType id="FinancialServicesMortgageBankingScheduleOfComplianceWithRegulatoryCapitalRequirementsForMortgageCompaniesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesMortgageBankingScheduleOfComplianceWithRegulatoryCapitalRequirementsForMortgageCompaniesTable">
2102
+ <link:definition>948000 - Disclosure - Financial Services, Mortgage Banking, Schedule of Compliance with Regulatory Capital Requirements for Mortgage Companies [Table]</link:definition>
2103
+ <link:usedOn>link:definitionLink</link:usedOn>
2104
+ </link:roleType>
2105
+ <link:roleType id="InvestmentsDebtAndEquitySecuritiesScheduleOfGainLossOnInvestmentsIncludingMarketableSecuritiesAndInvestmentsHeldAtCostIncomeStatementReportedAmountsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsDebtAndEquitySecuritiesScheduleOfGainLossOnInvestmentsIncludingMarketableSecuritiesAndInvestmentsHeldAtCostIncomeStatementReportedAmountsTable">
2106
+ <link:definition>330000 - Disclosure - Investments, Debt and Equity Securities, Schedule of Gain (Loss) on Investments, Including Marketable Securities and Investments Held at Cost, Income Statement, Reported Amounts [Table]</link:definition>
2107
+ <link:usedOn>link:definitionLink</link:usedOn>
2108
+ </link:roleType>
2109
+ <link:roleType id="CompensationRelatedCostsGeneralScheduleOfDeferredCompensationArrangementWithIndividualExcludingShareBasedPaymentsAndPostretirementBenefitsByTitleOfIndividualAndByTypeOfDeferredCompensationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsGeneralScheduleOfDeferredCompensationArrangementWithIndividualExcludingShareBasedPaymentsAndPostretirementBenefitsByTitleOfIndividualAndByTypeOfDeferredCompensationTable">
2110
+ <link:definition>705000 - Disclosure - Compensation Related Costs, General, Schedule of Deferred Compensation Arrangement with Individual, Excluding Share-based Payments and Postretirement Benefits, by Title of Individual and by Type of Deferred Compensation [Table]</link:definition>
2111
+ <link:usedOn>link:definitionLink</link:usedOn>
2112
+ </link:roleType>
2113
+ <link:roleType id="CompensationRelatedCostsRetirementBenefitsScheduleOfDeferredCompensationArrangementWithIndividualPostretirementBenefitsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CompensationRelatedCostsRetirementBenefitsScheduleOfDeferredCompensationArrangementWithIndividualPostretirementBenefitsTable">
2114
+ <link:definition>730000 - Disclosure - Compensation Related Costs, Retirement Benefits, Schedule of Deferred Compensation Arrangement with Individual, Postretirement Benefits [Table]</link:definition>
2115
+ <link:usedOn>link:definitionLink</link:usedOn>
2116
+ </link:roleType>
2117
+ <link:roleType id="CommitmentAndContingenciesProductLiabilityContingencyTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesProductLiabilityContingencyTable">
2118
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Product Liability Contingency [Table]</link:definition>
2119
+ <link:usedOn>link:definitionLink</link:usedOn>
2120
+ </link:roleType>
2121
+ <link:roleType id="IntangibleAssetsGoodwillAndOtherScheduleOfIndefiniteLivedIntangibleAssetsBySegmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/IntangibleAssetsGoodwillAndOtherScheduleOfIndefiniteLivedIntangibleAssetsBySegmentTable">
2122
+ <link:definition>370000 - Disclosure - Intangible Assets, Goodwill and Other, Schedule of Indefinite-lived Intangible Assets by Segment [Table]</link:definition>
2123
+ <link:usedOn>link:definitionLink</link:usedOn>
2124
+ </link:roleType>
2125
+ <link:roleType id="SECScheduleArticle12-04CondensedFinancialInformationScheduleOfCondensedFinancialStatementsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SECScheduleArticle12-04CondensedFinancialInformationScheduleOfCondensedFinancialStatementsTable">
2126
+ <link:definition>991000 - Disclosure - SEC Schedule, Article 12-04, Condensed Financial Information of Registrant, Schedule of Condensed Financial Statements [Table]</link:definition>
2127
+ <link:usedOn>link:definitionLink</link:usedOn>
2128
+ </link:roleType>
2129
+ <link:roleType id="EntityInformationEntityLocationTable" roleURI="http://xbrl.us/us-gaap/role/document/EntityInformationEntityLocationTable">
2130
+ <link:definition>995400 - Document - Entity Information, Entity Location [Table]</link:definition>
2131
+ <link:usedOn>link:definitionLink</link:usedOn>
2132
+ </link:roleType>
2133
+ <link:roleType id="FinancialServicesInsuranceScheduleOfInsuredFinancialObligationsWithCreditDeteriorationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/FinancialServicesInsuranceScheduleOfInsuredFinancialObligationsWithCreditDeteriorationTable">
2134
+ <link:definition>944000 - Disclosure - Financial Services, Insurance, Schedule of Insured Financial Obligations with Credit Deterioration [Table]</link:definition>
2135
+ <link:usedOn>link:definitionLink</link:usedOn>
2136
+ </link:roleType>
2137
+ <link:roleType id="InterimReportingScheduleOfEffectOfFourthQuarterEventsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InterimReportingScheduleOfEffectOfFourthQuarterEventsTable">
2138
+ <link:definition>285000 - Disclosure - Interim Reporting, Schedule of Effect of Fourth Quarter Events [Table]</link:definition>
2139
+ <link:usedOn>link:definitionLink</link:usedOn>
2140
+ </link:roleType>
2141
+ <link:roleType id="ResearchAndDevelopmentScheduleOfResearchAndDevelopmentArrangementContractToPerformForOthersTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ResearchAndDevelopmentScheduleOfResearchAndDevelopmentArrangementContractToPerformForOthersTable">
2142
+ <link:definition>760000 - Disclosure - Research and Development, Schedule of Research and Development Arrangement, Contract to Perform for Others [Table]</link:definition>
2143
+ <link:usedOn>link:definitionLink</link:usedOn>
2144
+ </link:roleType>
2145
+ <link:roleType id="OtherLiabilitiesAcceleratedShareRepurchasesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherLiabilitiesAcceleratedShareRepurchasesTable">
2146
+ <link:definition>470000 - Disclosure - Other Liabilities, Accelerated Share Repurchases [Table]</link:definition>
2147
+ <link:usedOn>link:definitionLink</link:usedOn>
2148
+ </link:roleType>
2149
+ <link:roleType id="ReceivablesLoansNotesReceivableAndOthersScheduleOfAccountsNotesLoansAndFinancingReceivableTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/ReceivablesLoansNotesReceivableAndOthersScheduleOfAccountsNotesLoansAndFinancingReceivableTable">
2150
+ <link:definition>320000 - Disclosure - Receivables, Loans, Notes Receivable, and Others, Schedule of Accounts, Notes, Loans and Financing Receivable [Table]</link:definition>
2151
+ <link:usedOn>link:definitionLink</link:usedOn>
2152
+ </link:roleType>
2153
+ <link:roleType id="EquityScheduleOfStockByClassTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/EquityScheduleOfStockByClassTable">
2154
+ <link:definition>500000 - Disclosure - Equity, Schedule of Stock by Class [Table]</link:definition>
2155
+ <link:usedOn>link:definitionLink</link:usedOn>
2156
+ </link:roleType>
2157
+ <link:roleType id="OrganizationConsolidationAndPresentationOfFinancialStatementsConsolidationLessThanWhollyOwnedSubsidiaryParentOwnershipInterestEffectsOfChangesNetTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OrganizationConsolidationAndPresentationOfFinancialStatementsConsolidationLessThanWhollyOwnedSubsidiaryParentOwnershipInterestEffectsOfChangesNetTable">
2158
+ <link:definition>200000 - Disclosure - Organization, Consolidation and Presentation of Financial Statements, Consolidation, Less than Wholly Owned Subsidiary, Parent Ownership Interest, Effects of Changes, Net [Table]</link:definition>
2159
+ <link:usedOn>link:definitionLink</link:usedOn>
2160
+ </link:roleType>
2161
+ <link:roleType id="MinorityInterestConsolidationLessThanWhollyOwnedSubsidiaryParentOwnershipInterestEffectsOfChangesNetTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/MinorityInterestConsolidationLessThanWhollyOwnedSubsidiaryParentOwnershipInterestEffectsOfChangesNetTable">
2162
+ <link:definition>472000 - Disclosure - Noncontrolling Interest, Consolidation, Less than Wholly Owned Subsidiary, Parent Ownership Interest, Effects of Changes, Net [Table]</link:definition>
2163
+ <link:usedOn>link:definitionLink</link:usedOn>
2164
+ </link:roleType>
2165
+ <link:roleType id="DerivativeInstrumentsAndHedgingActivitiesScheduleOfCreditDerivativesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesScheduleOfCreditDerivativesTable">
2166
+ <link:definition>805000 - Disclosure - Derivative Instruments and Hedging Activities, Schedule of Credit Derivatives [Table]</link:definition>
2167
+ <link:usedOn>link:definitionLink</link:usedOn>
2168
+ </link:roleType>
2169
+ <link:roleType id="RegulatedOperationsScheduleOfRegulatoryAssets" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsScheduleOfRegulatoryAssets">
2170
+ <link:definition>980000 - Disclosure - Regulated Operations, Schedule of Regulatory Assets [Table]</link:definition>
2171
+ <link:usedOn>link:definitionLink</link:usedOn>
2172
+ </link:roleType>
2173
+ <link:roleType id="RegulatedOperationsScheduleOfRegulatoryLiabilities" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsScheduleOfRegulatoryLiabilities">
2174
+ <link:definition>980000 - Disclosure - Regulated Operations, Schedule of Regulatory Liabilities [Table]</link:definition>
2175
+ <link:usedOn>link:definitionLink</link:usedOn>
2176
+ </link:roleType>
2177
+ <link:roleType id="CommitmentAndContingenciesSignificantPurchaseAndSupplyCommitmentExcludingLongtermCommitmentTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/CommitmentAndContingenciesSignificantPurchaseAndSupplyCommitmentExcludingLongtermCommitmentTable">
2178
+ <link:definition>450000 - Disclosure - Commitment and Contingencies, Significant Purchase and Supply Commitment, Excluding Long-term Commitment [Table]</link:definition>
2179
+ <link:usedOn>link:definitionLink</link:usedOn>
2180
+ </link:roleType>
2181
+ <link:roleType id="RegulatedOperationsScheduleOfCapitalizationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsScheduleOfCapitalizationTable">
2182
+ <link:definition>980000 - Disclosure - Regulated Operations, Schedule of Capitalization [Table]</link:definition>
2183
+ <link:usedOn>link:definitionLink</link:usedOn>
2184
+ </link:roleType>
2185
+ <link:roleType id="AccountingPoliciesVariableInterestCarryingAmountOfLiabilitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingPoliciesVariableInterestCarryingAmountOfLiabilitiesTable">
2186
+ <link:definition>290000 - Disclosure - Accounting Policies, Variable Interest, Carrying Amount of Liabilities [Table]</link:definition>
2187
+ <link:usedOn>link:definitionLink</link:usedOn>
2188
+ </link:roleType>
2189
+ <link:roleType id="OrganizationConsolidationAndPresentationOfFinancialStatementsVariableInterestCarryingAmountOfLiabilitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OrganizationConsolidationAndPresentationOfFinancialStatementsVariableInterestCarryingAmountOfLiabilitiesTable">
2190
+ <link:definition>200000 - Disclosure - Organization, Consolidation and Presentation of Financial Statements, Variable Interest, Carrying Amount of Liabilities [Table]</link:definition>
2191
+ <link:usedOn>link:definitionLink</link:usedOn>
2192
+ </link:roleType>
2193
+ <link:roleType id="AccountingPoliciesScheduleOfQualifiedSpecialPurposeEntitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/AccountingPoliciesScheduleOfQualifiedSpecialPurposeEntitiesTable">
2194
+ <link:definition>290000 - Disclosure - Accounting Policies, Schedule of Qualified Special Purpose Entities [Table]</link:definition>
2195
+ <link:usedOn>link:definitionLink</link:usedOn>
2196
+ </link:roleType>
2197
+ <link:roleType id="OrganizationConsolidationAndPresentationOfFinancialStatementsScheduleOfQualifiedSpecialPurposeEntitiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OrganizationConsolidationAndPresentationOfFinancialStatementsScheduleOfQualifiedSpecialPurposeEntitiesTable">
2198
+ <link:definition>200000 - Disclosure - Organization, Consolidation and Presentation of Financial Statements, Schedule of Qualified Special Purpose Entities [Table]</link:definition>
2199
+ <link:usedOn>link:definitionLink</link:usedOn>
2200
+ </link:roleType>
2201
+ <link:roleType id="TransfersAndServicingScheduleOfDerecognizedAssetsSecuritizedOrAssetbackedFinancingArrangementAssetsAndAnyOtherFinancialAssetsManagedTogetherTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingScheduleOfDerecognizedAssetsSecuritizedOrAssetbackedFinancingArrangementAssetsAndAnyOtherFinancialAssetsManagedTogetherTable">
2202
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Derecognized Assets, Securitized or Asset-backed Financing Arrangement Assets and any Other Financial Assets Managed Together [Table]</link:definition>
2203
+ <link:usedOn>link:definitionLink</link:usedOn>
2204
+ </link:roleType>
2205
+ <link:roleType id="TransfersAndServicingScheduleOfAssetsAndAssociatedLiabilitiesAccountedForAsSecuredBorrowingsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/TransfersAndServicingScheduleOfAssetsAndAssociatedLiabilitiesAccountedForAsSecuredBorrowingsTable">
2206
+ <link:definition>865000 - Disclosure - Transfers and Servicing, Schedule of Assets and Associated Liabilities Accounted for as Secured Borrowings [Table]</link:definition>
2207
+ <link:usedOn>link:definitionLink</link:usedOn>
2208
+ </link:roleType>
2209
+ <link:roleType id="RegulatedOperationsScheduleOfCapitalizationLongtermDebtTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsScheduleOfCapitalizationLongtermDebtTable">
2210
+ <link:definition>980000 - Disclosure - Regulated Operations, Schedule of Capitalization, Long-term Debt [Table]</link:definition>
2211
+ <link:usedOn>link:definitionLink</link:usedOn>
2212
+ </link:roleType>
2213
+ <link:roleType id="RegulatedOperationsScheduleOfCapitalizationEquityTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/RegulatedOperationsScheduleOfCapitalizationEquityTable">
2214
+ <link:definition>980000 - Disclosure - Regulated Operations, Schedule of Capitalization, Equity [Table]</link:definition>
2215
+ <link:usedOn>link:definitionLink</link:usedOn>
2216
+ </link:roleType>
2217
+ <link:roleType id="InvestmentInvestmentIdentifierTable" roleURI="http://xbrl.us/us-gaap/role/document/InvestmentInvestmentIdentifierTable">
2218
+ <link:definition>995470 - Document - Investment, Investment Identifier [Table]</link:definition>
2219
+ <link:usedOn>link:definitionLink</link:usedOn>
2220
+ </link:roleType>
2221
+ <link:roleType id="InvestmentsSoldNotYetPurchasedInvestmentsSoldNotYetPurchasedTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsSoldNotYetPurchasedInvestmentsSoldNotYetPurchasedTable">
2222
+ <link:definition>993540 - Disclosure - Investments Sold Not yet Purchased, Investments Sold, Not yet Purchased [Table]</link:definition>
2223
+ <link:usedOn>link:definitionLink</link:usedOn>
2224
+ </link:roleType>
2225
+ <link:roleType id="OtherThanSecuritiesInvestmentHoldingsInvestmentHoldingsOtherThanSecuritiesTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherThanSecuritiesInvestmentHoldingsInvestmentHoldingsOtherThanSecuritiesTable">
2226
+ <link:definition>993510 - Disclosure - Other than Securities Investment Holdings, Investment Holdings, Other than Securities [Table]</link:definition>
2227
+ <link:usedOn>link:definitionLink</link:usedOn>
2228
+ </link:roleType>
2229
+ <link:roleType id="InvestmentsFederalTaxNoteFederalIncomeTaxNoteTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsFederalTaxNoteFederalIncomeTaxNoteTable">
2230
+ <link:definition>993530 - Disclosure - Investments Federal Income Tax Note, Federal Income Tax Note [Table]</link:definition>
2231
+ <link:usedOn>link:definitionLink</link:usedOn>
2232
+ </link:roleType>
2233
+ <link:roleType id="InvestmentsSoldNotYetPurchasedFormSHInvestmentsSoldNotYetPurchasedFormSHTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsSoldNotYetPurchasedFormSHInvestmentsSoldNotYetPurchasedFormSHTable">
2234
+ <link:definition>993550 - Disclosure - Investments Sold Not yet Purchased, Form SH, Investments Sold, Not yet Purchased, Form SH [Table]</link:definition>
2235
+ <link:usedOn>link:definitionLink</link:usedOn>
2236
+ </link:roleType>
2237
+ <link:roleType id="InvestmentHoldingsScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentHoldingsScheduleOfInvestmentsTable">
2238
+ <link:definition>993500 - Disclosure - Investment Holdings, Schedule of Investments [Table]</link:definition>
2239
+ <link:usedOn>link:definitionLink</link:usedOn>
2240
+ </link:roleType>
2241
+ <link:roleType id="SummaryOfInvestmentHoldingsScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/SummaryOfInvestmentHoldingsScheduleOfInvestmentsTable">
2242
+ <link:definition>993520 - Disclosure - Summary of Investment Holdings, Schedule of Investments [Table]</link:definition>
2243
+ <link:usedOn>link:definitionLink</link:usedOn>
2244
+ </link:roleType>
2245
+ <link:roleType id="InvestmentsSoldNotYetPurchasedScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsSoldNotYetPurchasedScheduleOfInvestmentsTable">
2246
+ <link:definition>993540 - Disclosure - Investments Sold Not yet Purchased, Schedule of Investments [Table]</link:definition>
2247
+ <link:usedOn>link:definitionLink</link:usedOn>
2248
+ </link:roleType>
2249
+ <link:roleType id="OpenOptionContractsWrittenScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OpenOptionContractsWrittenScheduleOfInvestmentsTable">
2250
+ <link:definition>993560 - Disclosure - Open Option Contracts Written, Schedule of Investments [Table]</link:definition>
2251
+ <link:usedOn>link:definitionLink</link:usedOn>
2252
+ </link:roleType>
2253
+ <link:roleType id="InvestmentsInAndAdvancesToAffiliatesScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsInAndAdvancesToAffiliatesScheduleOfInvestmentsTable">
2254
+ <link:definition>993570 - Disclosure - Investments in and Advances to Affiliates, Schedule of Investments [Table]</link:definition>
2255
+ <link:usedOn>link:definitionLink</link:usedOn>
2256
+ </link:roleType>
2257
+ <link:roleType id="InvestmentsSoldNotYetPurchasedFormSHScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsSoldNotYetPurchasedFormSHScheduleOfInvestmentsTable">
2258
+ <link:definition>993550 - Disclosure - Investments Sold Not yet Purchased, Form SH, Schedule of Investments [Table]</link:definition>
2259
+ <link:usedOn>link:definitionLink</link:usedOn>
2260
+ </link:roleType>
2261
+ <link:roleType id="OtherThanSecuritiesInvestmentHoldingsScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/OtherThanSecuritiesInvestmentHoldingsScheduleOfInvestmentsTable">
2262
+ <link:definition>993510 - Disclosure - Other than Securities Investment Holdings, Schedule of Investments [Table]</link:definition>
2263
+ <link:usedOn>link:definitionLink</link:usedOn>
2264
+ </link:roleType>
2265
+ <link:roleType id="InvestmentsFederalTaxNoteScheduleOfInvestmentsTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/InvestmentsFederalTaxNoteScheduleOfInvestmentsTable">
2266
+ <link:definition>993530 - Disclosure - Investments Federal Income Tax Note, Schedule of Investments [Table]</link:definition>
2267
+ <link:usedOn>link:definitionLink</link:usedOn>
2268
+ </link:roleType>
2269
+ <link:roleType id="DerivativeInstrumentsAndHedgingActivitiesTradingActivitiesGainLossByTypeTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesTradingActivitiesGainLossByTypeTable">
2270
+ <link:definition>805000 - Disclosure - Derivative Instruments and Hedging Activities, Trading Activities, Gain and Losses, by Type, by Income Statement Location [Table]</link:definition>
2271
+ <link:usedOn>link:definitionLink</link:usedOn>
2272
+ </link:roleType>
2273
+ <link:roleType id="DerivativeInstrumentsAndHedgingActivitiesDerivativeInstrumentsGainLossByHedgingRelationshipByIncomeStatementLocationByDerivativeInstrumentRiskTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesDerivativeInstrumentsGainLossByHedgingRelationshipByIncomeStatementLocationByDerivativeInstrumentRiskTable">
2274
+ <link:definition>805000 - Disclosure - Derivative Instruments and Hedging Activities, Derivative Instruments, Gain (Loss) by Hedging Relationship, by Income Statement Location, by Derivative Instrument Risk [Table]</link:definition>
2275
+ <link:usedOn>link:definitionLink</link:usedOn>
2276
+ </link:roleType>
2277
+ <link:roleType id="DerivativeInstrumentsAndHedgingActivitiesFairValuesDerivativesBalanceSheetLocationByDerivativeContractTypeByHedgingDesignationTable" roleURI="http://xbrl.us/us-gaap/role/disclosure/DerivativeInstrumentsAndHedgingActivitiesFairValuesDerivativesBalanceSheetLocationByDerivativeContractTypeByHedgingDesignationTable">
2278
+ <link:definition>805000 - Disclosure - Derivative Instruments and Hedging Activities, Fair Values Derivatives, Balance Sheet Location, by Derivative Contract Type [Table]</link:definition>
2279
+ <link:usedOn>link:definitionLink</link:usedOn>
2280
+ </link:roleType>
2281
+ </xs:appinfo>
2282
+ </xs:annotation>
2283
+ </xs:schema>