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.
- data/Copying.txt +13 -0
- data/License.txt +13 -0
- data/Rakefile.rb +124 -0
- data/Readme.txt +15 -0
- data/doc/classes/Edgar.html +144 -0
- data/doc/classes/Edgar/HTMLFeedDownloader.html +199 -0
- data/doc/classes/Edgar/RSSFeedDownloader.html +225 -0
- data/doc/classes/Xbrlware.html +350 -0
- data/doc/classes/Xbrlware/Context.html +429 -0
- data/doc/classes/Xbrlware/Entity.html +323 -0
- data/doc/classes/Xbrlware/Identifier.html +191 -0
- data/doc/classes/Xbrlware/Instance.html +742 -0
- data/doc/classes/Xbrlware/Item.html +278 -0
- data/doc/classes/Xbrlware/LBConstants.html +144 -0
- data/doc/classes/Xbrlware/Linkbase.html +131 -0
- data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase.html +212 -0
- data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase/Calculation.html +172 -0
- data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase/Calculation/CalculationArc.html +166 -0
- data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase.html +210 -0
- data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase/Definition.html +204 -0
- data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase/Definition/DefinitionArc.html +160 -0
- data/doc/classes/Xbrlware/Linkbase/LabelLinkbase.html +239 -0
- data/doc/classes/Xbrlware/Linkbase/LabelLinkbase/Label.html +189 -0
- data/doc/classes/Xbrlware/Linkbase/Linkbase.html +172 -0
- data/doc/classes/Xbrlware/Linkbase/Linkbase/Link.html +217 -0
- data/doc/classes/Xbrlware/Linkbase/Linkbase/Link/Arc.html +284 -0
- data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase.html +224 -0
- data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase/Presentation.html +222 -0
- data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase/Presentation/PresentationArc.html +160 -0
- data/doc/classes/Xbrlware/Taxonomy.html +369 -0
- data/doc/classes/Xbrlware/TaxonomyDefintion.html +177 -0
- data/doc/classes/Xbrlware/Unit.html +179 -0
- data/doc/classes/Xbrlware/Unit/Divide.html +165 -0
- data/doc/created.rid +1 -0
- data/doc/files/Readme_txt.html +124 -0
- data/doc/files/lib/edgar/edgar_data_downloader_rb.html +129 -0
- data/doc/files/lib/edgar/util_rb.html +129 -0
- data/doc/files/lib/edgar_rb.html +141 -0
- data/doc/files/lib/xbrlware/constants_rb.html +129 -0
- data/doc/files/lib/xbrlware/context_rb.html +129 -0
- data/doc/files/lib/xbrlware/date_util_rb.html +129 -0
- data/doc/files/lib/xbrlware/float_patch_rb.html +129 -0
- data/doc/files/lib/xbrlware/hash_util_rb.html +129 -0
- data/doc/files/lib/xbrlware/instance_rb.html +129 -0
- data/doc/files/lib/xbrlware/item_rb.html +129 -0
- data/doc/files/lib/xbrlware/linkbase/calculation_linkbase_rb.html +129 -0
- data/doc/files/lib/xbrlware/linkbase/definition_linkbase_rb.html +129 -0
- data/doc/files/lib/xbrlware/linkbase/label_linkbase_rb.html +129 -0
- data/doc/files/lib/xbrlware/linkbase/linkbase_rb.html +129 -0
- data/doc/files/lib/xbrlware/linkbase/presentation_linkbase_rb.html +129 -0
- data/doc/files/lib/xbrlware/meta_util_rb.html +129 -0
- data/doc/files/lib/xbrlware/taxonomy_rb.html +129 -0
- data/doc/files/lib/xbrlware/unit_rb.html +129 -0
- data/doc/files/lib/xbrlware/util_rb.html +129 -0
- data/doc/files/lib/xbrlware/xml_parser_rb.html +129 -0
- data/doc/files/lib/xbrlware_rb.html +163 -0
- data/doc/fr_class_index.html +55 -0
- data/doc/fr_file_index.html +48 -0
- data/doc/fr_method_index.html +104 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/example/benchmark/instance_parser_benchmark.rb +25 -0
- data/example/case_study/buy_strategy.rb +34 -0
- data/example/case_study/c-20091230.xml +29 -0
- data/example/case_study/c_sell_strategy.rb +29 -0
- data/example/lang_integration/thrift/rating-client.py +21 -0
- data/example/lang_integration/thrift/rating-impl.rb +13 -0
- data/example/lang_integration/thrift/rating-server.rb +25 -0
- data/example/lang_integration/thrift/rating.thrift +52 -0
- data/example/quick_start/foo.rb +10 -0
- data/example/quick_start/foo.xml +29 -0
- data/example/quick_start/print_item.rb +27 -0
- data/lib/edgar.rb +30 -0
- data/lib/edgar/edgar_data_downloader.rb +126 -0
- data/lib/edgar/util.rb +30 -0
- data/lib/xbrlware.rb +65 -0
- data/lib/xbrlware/constants.rb +29 -0
- data/lib/xbrlware/context.rb +148 -0
- data/lib/xbrlware/date_util.rb +35 -0
- data/lib/xbrlware/float_patch.rb +26 -0
- data/lib/xbrlware/hash_util.rb +175 -0
- data/lib/xbrlware/instance.rb +406 -0
- data/lib/xbrlware/item.rb +115 -0
- data/lib/xbrlware/linkbase/calculation_linkbase.rb +137 -0
- data/lib/xbrlware/linkbase/definition_linkbase.rb +186 -0
- data/lib/xbrlware/linkbase/label_linkbase.rb +128 -0
- data/lib/xbrlware/linkbase/linkbase.rb +170 -0
- data/lib/xbrlware/linkbase/presentation_linkbase.rb +160 -0
- data/lib/xbrlware/meta_util.rb +45 -0
- data/lib/xbrlware/taxonomies/us_gaap_taxonomy_20090131.rb +40365 -0
- data/lib/xbrlware/taxonomy.rb +133 -0
- data/lib/xbrlware/unit.rb +42 -0
- data/lib/xbrlware/util.rb +83 -0
- data/lib/xbrlware/xml_parser.rb +122 -0
- data/setup.rb +1585 -0
- data/test/lib/edgar/edgar_data_downloader_test.rb +35 -0
- data/test/lib/edgar/resources/0000930413-09-005485-index.htm +331 -0
- data/test/lib/edgar/resources/usgaap.rss.xml +2861 -0
- data/test/lib/xbrlware/411_footnotes_test.rb +65 -0
- data/test/lib/xbrlware/42_schemaref_test.rb +20 -0
- data/test/lib/xbrlware/46_item_test.rb +253 -0
- data/test/lib/xbrlware/47_context_test.rb +129 -0
- data/test/lib/xbrlware/48_unit_test.rb +45 -0
- data/test/lib/xbrlware/49_tuple_test.rb +12 -0
- data/test/lib/xbrlware/date_util_test.rb +24 -0
- data/test/lib/xbrlware/dimension/context_explicit_dimension_test.rb +40 -0
- data/test/lib/xbrlware/dimension/resources/context_explicit_dimension.xml +84 -0
- data/test/lib/xbrlware/float_patch_test.rb +10 -0
- data/test/lib/xbrlware/hash_util_test.rb +29 -0
- data/test/lib/xbrlware/instance_test.rb +250 -0
- data/test/lib/xbrlware/linkbase/calculation_linkbase_test.rb +39 -0
- data/test/lib/xbrlware/linkbase/definition_linkbase_test.rb +35 -0
- data/test/lib/xbrlware/linkbase/label_linkbase_test.rb +22 -0
- data/test/lib/xbrlware/linkbase/linkbase_test.rb +36 -0
- data/test/lib/xbrlware/linkbase/linkbase_test_util.rb +98 -0
- data/test/lib/xbrlware/linkbase/presentation_linkbase_test.rb +33 -0
- data/test/lib/xbrlware/linkbase/report.html +62 -0
- data/test/lib/xbrlware/linkbase/resources/cal.xml +219 -0
- data/test/lib/xbrlware/linkbase/resources/def.xml +186 -0
- data/test/lib/xbrlware/linkbase/resources/def_with_multiple_dimension.xml +41 -0
- data/test/lib/xbrlware/linkbase/resources/instance.xml +5822 -0
- data/test/lib/xbrlware/linkbase/resources/lab.xml +782 -0
- data/test/lib/xbrlware/linkbase/resources/pre.xml +485 -0
- data/test/lib/xbrlware/linkbase/resources/report_10_q.htm +12327 -0
- data/test/lib/xbrlware/linkbase/resources/taxonomy.xsd +178 -0
- data/test/lib/xbrlware/linkbase/sample_html_report.html +40 -0
- data/test/lib/xbrlware/meta_util_test.rb +23 -0
- data/test/lib/xbrlware/resources/411/411_footnotes.xml +66 -0
- data/test/lib/xbrlware/resources/42/42_schema_ref_with_base.xml +7 -0
- data/test/lib/xbrlware/resources/42/42_schema_ref_without_base.xml +7 -0
- data/test/lib/xbrlware/resources/46/46_item_value.xml +61 -0
- data/test/lib/xbrlware/resources/47/472_period_forever.xml +29 -0
- data/test/lib/xbrlware/resources/47/472_period_instant.xml +24 -0
- data/test/lib/xbrlware/resources/47/472_period_start_dt_and_end_dt.xml +30 -0
- data/test/lib/xbrlware/resources/47/4731_entity_identifier.xml +29 -0
- data/test/lib/xbrlware/resources/47/4732_entity_segment_not_present.xml +24 -0
- data/test/lib/xbrlware/resources/47/4732_entity_segment_present.xml +30 -0
- data/test/lib/xbrlware/resources/47/474_scenario_not_present.xml +26 -0
- data/test/lib/xbrlware/resources/47/474_scenario_present.xml +30 -0
- data/test/lib/xbrlware/resources/47/47_multiple_contexts.xml +36 -0
- data/test/lib/xbrlware/resources/48/482_unit_measure.xml +32 -0
- data/test/lib/xbrlware/resources/48/483_unit_divide.xml +39 -0
- data/test/lib/xbrlware/resources/48/48_multiple_units.xml +43 -0
- data/test/lib/xbrlware/resources/49/49_tuple.xml +61 -0
- data/test/lib/xbrlware/resources/49_tuple.xsd +44 -0
- data/test/lib/xbrlware/resources/instance.xml +128 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/cal.xml +219 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/def.xml +186 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/instance.xml +5822 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/lab.xml +782 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/pre.xml +485 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/report/report_index.html +62 -0
- data/test/lib/xbrlware/resources/report_test_xbrl_files/taxonomy.xsd +178 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/1/cal.xml +223 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/1/def.xml +190 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/1/lab.xml +786 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/1/pre.xml +489 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/1/taxonomy.xsd +177 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/cal.xml +223 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/def.xml +190 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/lab.xml +786 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/2/linkbases/pre.xml +489 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/2/taxonomy.xsd +175 -0
- data/test/lib/xbrlware/resources/taxonomy_test_files/3/taxonomy.xsd +175 -0
- data/test/lib/xbrlware/resources/us_gaap_schema.xsd +8 -0
- data/test/lib/xbrlware/resources/us_gaap_schema_local.xsd +10 -0
- data/test/lib/xbrlware/resources/util_test_xbrl_files/cal.xml +219 -0
- data/test/lib/xbrlware/resources/util_test_xbrl_files/def.xml +186 -0
- data/test/lib/xbrlware/resources/util_test_xbrl_files/instance.xml +5822 -0
- data/test/lib/xbrlware/resources/util_test_xbrl_files/lab.xml +782 -0
- data/test/lib/xbrlware/resources/util_test_xbrl_files/pre.xml +485 -0
- data/test/lib/xbrlware/resources/util_test_xbrl_files/taxonomy.xsd +178 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/dei-2009-01-31.xsd +162 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/dei-std-2009-01-31.xsd +23 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/negated-2008-03-31.xsd +23 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/ref-2006-02-27.xsd +121 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/us-gaap-2009-01-31.xsd +13474 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/us-roles-2009-01-31.xsd +2283 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/us-types-2009-01-31.xsd +368 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/xbrl-instance-2003-12-31.xsd +772 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/xbrl-linkbase-2003-12-31.xsd +477 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/xbrldi-2006.xsd +41 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/xbrldt-2005.xsd +53 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/xl-2003-12-31.xsd +246 -0
- data/test/lib/xbrlware/resources/xbrl_xsd/xlink-2003-12-31.xsd +117 -0
- data/test/lib/xbrlware/taxonomy_test.rb +124 -0
- data/test/lib/xbrlware/util_test.rb +18 -0
- data/test/lib/xbrlware/xml_parser_test.rb +142 -0
- data/test/schema_validator_jruby.rb +40 -0
- data/test/schema_validator_ruby.rb +7 -0
- data/test/scratchpad/block.rb +36 -0
- data/test/test_helper.rb +21 -0
- data/xbrlware.iml +30 -0
- metadata +261 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper.rb'
|
|
2
|
+
|
|
3
|
+
class TestRSSFeedDownloader < Test::Unit::TestCase
|
|
4
|
+
def test_get_xbrl_files
|
|
5
|
+
rss_file=File.dirname(__FILE__) + '/resources/usgaap.rss.xml'
|
|
6
|
+
downloader = Edgar::RSSFeedDownloader.new(rss_file)
|
|
7
|
+
item = downloader.content["channel"][0]["item"][0]
|
|
8
|
+
class << downloader
|
|
9
|
+
public :get_xbrl_files
|
|
10
|
+
end
|
|
11
|
+
list_files = downloader.get_xbrl_files(item)
|
|
12
|
+
assert_equal("http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930.xml",list_files[0]["url"])
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class TestHTMLFeedDownloader < Test::Unit::TestCase
|
|
17
|
+
|
|
18
|
+
def test_get_xbrl_files
|
|
19
|
+
html_file=File.dirname(__FILE__) + '/resources/0000930413-09-005485-index.htm'
|
|
20
|
+
|
|
21
|
+
downloader = Edgar::HTMLFeedDownloader.new()
|
|
22
|
+
files=downloader.download(html_file, "/tmp/")
|
|
23
|
+
expected=%w{/Archives/edgar/data/81033/000093041309005485/peg-20090930.xml
|
|
24
|
+
/Archives/edgar/data/81033/000093041309005485/peg-20090930.xsd
|
|
25
|
+
/Archives/edgar/data/81033/000093041309005485/peg-20090930_cal.xml
|
|
26
|
+
/Archives/edgar/data/81033/000093041309005485/peg-20090930_def.xml
|
|
27
|
+
/Archives/edgar/data/81033/000093041309005485/peg-20090930_lab.xml
|
|
28
|
+
/Archives/edgar/data/81033/000093041309005485/peg-20090930_pre.xml
|
|
29
|
+
}
|
|
30
|
+
assert_equal(expected.sort, downloader.links.to_a.sort)
|
|
31
|
+
files.each do |file|
|
|
32
|
+
File.delete(file) if File.exist?(file)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,331 @@
|
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
|
+
<title>EDGAR Filing Documents for 0000930413-09-005485</title>
|
|
6
|
+
<link rel="stylesheet" type="text/css" href="/include/interactive.css" />
|
|
7
|
+
</head>
|
|
8
|
+
<body style="margin: 0">
|
|
9
|
+
<noscript><div style="color:red; font-weight:bold; text-align:center;">This page uses Javascript. Your browser either doesn't support Javascript or you have it turned off. To see this page as it is meant to appear please use a Javascript enabled browser.</div></noscript>
|
|
10
|
+
<!-- BEGIN BANNER -->
|
|
11
|
+
<div id="headerTop">
|
|
12
|
+
<div id="Nav"><a href="http://www.sec.gov/index.htm">Home</a> | <a href="/cgi-bin/browse-edgar?action=getcurrent">Latest Filings</a> | <a href="javascript:history.back()">Previous Page</a></div>
|
|
13
|
+
<div id="seal"><a href="http://www.sec.gov/index.htm"><img src="/images/sealTop.gif" alt="SEC Seal" border="0" /></a></div>
|
|
14
|
+
<div id="secWordGraphic"><img src="/images/bannerTitle.gif" alt="SEC Banner" /></div>
|
|
15
|
+
</div>
|
|
16
|
+
<div id="headerBottom">
|
|
17
|
+
<div id="searchHome"><a href="/edgar/searchedgar/webusers.htm">Search the Next-Generation EDGAR System</a></div>
|
|
18
|
+
<div id="PageTitle">Filing Detail</div>
|
|
19
|
+
</div>
|
|
20
|
+
<!-- END BANNER -->
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
<!-- BEGIN BREADCRUMBS -->
|
|
24
|
+
<div id="breadCrumbs">
|
|
25
|
+
<ul>
|
|
26
|
+
<li><a href="http://www.sec.gov/">SEC Home</a> »</li>
|
|
27
|
+
<li><a href="/edgar/searchedgar/webusers.htm">Search the Next-Generation EDGAR System</a> »</li>
|
|
28
|
+
<li><a href="/edgar/searchedgar/companysearch.html">Company Search</a> »</li>
|
|
29
|
+
<li class="last">Current Page</li>
|
|
30
|
+
</ul>
|
|
31
|
+
</div>
|
|
32
|
+
<!-- END BREADCRUMBS -->
|
|
33
|
+
|
|
34
|
+
<div id="contentDiv">
|
|
35
|
+
<!-- START FILING DIV -->
|
|
36
|
+
<div id="formDiv">
|
|
37
|
+
<div id="formHeader">
|
|
38
|
+
<div id="formName">
|
|
39
|
+
<strong>Form 10-Q</strong> - Quarterly report [Sections 13 or 15(d)]
|
|
40
|
+
</div>
|
|
41
|
+
<div id="secNum">
|
|
42
|
+
<strong><acronym title="Securities and Exchange Commission">SEC</acronym> Accession <acronym title="Number">No.</acronym></strong> 0000930413-09-005485
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="formContent">
|
|
46
|
+
<div class="formGrouping">
|
|
47
|
+
<div class="infoHead">Filing Date</div>
|
|
48
|
+
<div class="info">2009-10-30</div>
|
|
49
|
+
<div class="infoHead">Accepted</div>
|
|
50
|
+
<div class="info">2009-10-30 17:24:17</div>
|
|
51
|
+
<div class="infoHead">Documents</div>
|
|
52
|
+
<div class="info">48</div>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="formGrouping">
|
|
55
|
+
<div class="infoHead">Period of Report</div>
|
|
56
|
+
<div class="info">2009-09-30</div>
|
|
57
|
+
<div class="infoHead">Filing Date Changed</div>
|
|
58
|
+
<div class="info">2009-10-30</div>
|
|
59
|
+
</div>
|
|
60
|
+
<div style="clear:both"></div>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
<!-- END FILING DIV -->
|
|
64
|
+
<!-- START DOCUMENT DIV -->
|
|
65
|
+
<div style="margin: 10px 0px 10px 0px; border: solid 1px #3F509D; background-color: #F5F5EB;">
|
|
66
|
+
<div style="padding: 4px 0px 4px 0px; font-size: 12px; margin: 0px 2px 0px 5px; width: 100%; overflow:hidden" id="seriesDiv">
|
|
67
|
+
<a href="/cgi-bin/viewer?action=view&cik=81033&accession_number=0000930413-09-005485" id="interactiveDataBtn"> Interactive Data</a>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
<div id="formDiv">
|
|
71
|
+
<div style="padding: 0px 0px 4px 0px; font-size: 12px; margin: 0px 2px 0px 5px; width: 100%; overflow:hidden">
|
|
72
|
+
<p>Document Format Files</p>
|
|
73
|
+
<table class="tableFile" summary="Document Format Files">
|
|
74
|
+
<tr>
|
|
75
|
+
<th scope="col" style="width: 5%;"><acronym title="Sequence Number">Seq</acronym></th>
|
|
76
|
+
<th scope="col" style="width: 40%;">Description</th>
|
|
77
|
+
<th scope="col" style="width: 20%;">Document</th>
|
|
78
|
+
<th scope="col" style="width: 10%;">Type</th>
|
|
79
|
+
<th scope="col">Size</th>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr>
|
|
82
|
+
<td scope="row">1</td>
|
|
83
|
+
<td scope="row"></td>
|
|
84
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_10q.htm">c58983_10q.htm</a></td>
|
|
85
|
+
<td scope="row">10-Q</td>
|
|
86
|
+
<td scope="row">2409942</td>
|
|
87
|
+
</tr>
|
|
88
|
+
<tr class="blueRow">
|
|
89
|
+
<td scope="row">2</td>
|
|
90
|
+
<td scope="row"></td>
|
|
91
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex12.htm">c58983_ex12.htm</a></td>
|
|
92
|
+
<td scope="row">EX-12</td>
|
|
93
|
+
<td scope="row">38161</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td scope="row">3</td>
|
|
97
|
+
<td scope="row"></td>
|
|
98
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex12-1.htm">c58983_ex12-1.htm</a></td>
|
|
99
|
+
<td scope="row">EX-12.1</td>
|
|
100
|
+
<td scope="row">35295</td>
|
|
101
|
+
</tr>
|
|
102
|
+
<tr class="blueRow">
|
|
103
|
+
<td scope="row">4</td>
|
|
104
|
+
<td scope="row"></td>
|
|
105
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex12-2.htm">c58983_ex12-2.htm</a></td>
|
|
106
|
+
<td scope="row">EX-12.2</td>
|
|
107
|
+
<td scope="row">29491</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td scope="row">5</td>
|
|
111
|
+
<td scope="row"></td>
|
|
112
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex12-3.htm">c58983_ex12-3.htm</a></td>
|
|
113
|
+
<td scope="row">EX-12.3</td>
|
|
114
|
+
<td scope="row">36401</td>
|
|
115
|
+
</tr>
|
|
116
|
+
<tr class="blueRow">
|
|
117
|
+
<td scope="row">6</td>
|
|
118
|
+
<td scope="row"></td>
|
|
119
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex31.htm">c58983_ex31.htm</a></td>
|
|
120
|
+
<td scope="row">EX-31</td>
|
|
121
|
+
<td scope="row">12342</td>
|
|
122
|
+
</tr>
|
|
123
|
+
<tr>
|
|
124
|
+
<td scope="row">7</td>
|
|
125
|
+
<td scope="row"></td>
|
|
126
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex31-1.htm">c58983_ex31-1.htm</a></td>
|
|
127
|
+
<td scope="row">EX-31.1</td>
|
|
128
|
+
<td scope="row">11599</td>
|
|
129
|
+
</tr>
|
|
130
|
+
<tr class="blueRow">
|
|
131
|
+
<td scope="row">8</td>
|
|
132
|
+
<td scope="row"></td>
|
|
133
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex31-2.htm">c58983_ex31-2.htm</a></td>
|
|
134
|
+
<td scope="row">EX-31.2</td>
|
|
135
|
+
<td scope="row">9884</td>
|
|
136
|
+
</tr>
|
|
137
|
+
<tr>
|
|
138
|
+
<td scope="row">9</td>
|
|
139
|
+
<td scope="row"></td>
|
|
140
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex31-3.htm">c58983_ex31-3.htm</a></td>
|
|
141
|
+
<td scope="row">EX-31.3</td>
|
|
142
|
+
<td scope="row">9835</td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr class="blueRow">
|
|
145
|
+
<td scope="row">10</td>
|
|
146
|
+
<td scope="row"></td>
|
|
147
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex31-4.htm">c58983_ex31-4.htm</a></td>
|
|
148
|
+
<td scope="row">EX-31.4</td>
|
|
149
|
+
<td scope="row">9994</td>
|
|
150
|
+
</tr>
|
|
151
|
+
<tr>
|
|
152
|
+
<td scope="row">11</td>
|
|
153
|
+
<td scope="row"></td>
|
|
154
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex31-5.htm">c58983_ex31-5.htm</a></td>
|
|
155
|
+
<td scope="row">EX-31.5</td>
|
|
156
|
+
<td scope="row">10028</td>
|
|
157
|
+
</tr>
|
|
158
|
+
<tr class="blueRow">
|
|
159
|
+
<td scope="row">12</td>
|
|
160
|
+
<td scope="row"></td>
|
|
161
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex32.htm">c58983_ex32.htm</a></td>
|
|
162
|
+
<td scope="row">EX-32</td>
|
|
163
|
+
<td scope="row">2794</td>
|
|
164
|
+
</tr>
|
|
165
|
+
<tr>
|
|
166
|
+
<td scope="row">13</td>
|
|
167
|
+
<td scope="row"></td>
|
|
168
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex32-1.htm">c58983_ex32-1.htm</a></td>
|
|
169
|
+
<td scope="row">EX-32.1</td>
|
|
170
|
+
<td scope="row">2814</td>
|
|
171
|
+
</tr>
|
|
172
|
+
<tr class="blueRow">
|
|
173
|
+
<td scope="row">14</td>
|
|
174
|
+
<td scope="row"></td>
|
|
175
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex32-2.htm">c58983_ex32-2.htm</a></td>
|
|
176
|
+
<td scope="row">EX-32.2</td>
|
|
177
|
+
<td scope="row">2186</td>
|
|
178
|
+
</tr>
|
|
179
|
+
<tr>
|
|
180
|
+
<td scope="row">15</td>
|
|
181
|
+
<td scope="row"></td>
|
|
182
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex32-3.htm">c58983_ex32-3.htm</a></td>
|
|
183
|
+
<td scope="row">EX-32.3</td>
|
|
184
|
+
<td scope="row">2192</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr class="blueRow">
|
|
187
|
+
<td scope="row">16</td>
|
|
188
|
+
<td scope="row"></td>
|
|
189
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex32-4.htm">c58983_ex32-4.htm</a></td>
|
|
190
|
+
<td scope="row">EX-32.4</td>
|
|
191
|
+
<td scope="row">2280</td>
|
|
192
|
+
</tr>
|
|
193
|
+
<tr>
|
|
194
|
+
<td scope="row">17</td>
|
|
195
|
+
<td scope="row"></td>
|
|
196
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/c58983_ex32-5.htm">c58983_ex32-5.htm</a></td>
|
|
197
|
+
<td scope="row">EX-32.5</td>
|
|
198
|
+
<td scope="row">2291</td>
|
|
199
|
+
</tr>
|
|
200
|
+
<tr class="blueRow">
|
|
201
|
+
<td scope="row"> </td>
|
|
202
|
+
<td scope="row"><span class="blue">Complete submission text file</span></td>
|
|
203
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/0000930413-09-005485.txt">0000930413-09-005485.txt</a></td>
|
|
204
|
+
<td scope="row"> </td>
|
|
205
|
+
<td scope="row">14077898</td>
|
|
206
|
+
</tr>
|
|
207
|
+
</table>
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
210
|
+
<div id="formDiv">
|
|
211
|
+
<div style="padding: 0px 0px 4px 0px; font-size: 12px; margin: 0px 2px 0px 5px; width: 100%; overflow:hidden">
|
|
212
|
+
<p>Data Files</p>
|
|
213
|
+
<table class="tableFile" summary="Data Files">
|
|
214
|
+
<tr>
|
|
215
|
+
<th scope="col" style="width: 5%;"><acronym title="Sequence Number">Seq</acronym></th>
|
|
216
|
+
<th scope="col" style="width: 40%;">Description</th>
|
|
217
|
+
<th scope="col" style="width: 20%;">Document</th>
|
|
218
|
+
<th scope="col" style="width: 10%;">Type</th>
|
|
219
|
+
<th scope="col">Size</th>
|
|
220
|
+
</tr>
|
|
221
|
+
<tr>
|
|
222
|
+
<td scope="row">18</td>
|
|
223
|
+
<td scope="row"></td>
|
|
224
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/peg-20090930.xml">peg-20090930.xml</a></td>
|
|
225
|
+
<td scope="row">EX-101.INS</td>
|
|
226
|
+
<td scope="row">3456259</td>
|
|
227
|
+
</tr>
|
|
228
|
+
<tr class="blueRow">
|
|
229
|
+
<td scope="row">19</td>
|
|
230
|
+
<td scope="row"></td>
|
|
231
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/peg-20090930.xsd">peg-20090930.xsd</a></td>
|
|
232
|
+
<td scope="row">EX-101.SCH</td>
|
|
233
|
+
<td scope="row">22703</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td scope="row">20</td>
|
|
237
|
+
<td scope="row"></td>
|
|
238
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/peg-20090930_cal.xml">peg-20090930_cal.xml</a></td>
|
|
239
|
+
<td scope="row">EX-101.CAL</td>
|
|
240
|
+
<td scope="row">664983</td>
|
|
241
|
+
</tr>
|
|
242
|
+
<tr class="blueRow">
|
|
243
|
+
<td scope="row">21</td>
|
|
244
|
+
<td scope="row"></td>
|
|
245
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/peg-20090930_def.xml">peg-20090930_def.xml</a></td>
|
|
246
|
+
<td scope="row">EX-101.DEF</td>
|
|
247
|
+
<td scope="row">914095</td>
|
|
248
|
+
</tr>
|
|
249
|
+
<tr>
|
|
250
|
+
<td scope="row">22</td>
|
|
251
|
+
<td scope="row"></td>
|
|
252
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/peg-20090930_lab.xml">peg-20090930_lab.xml</a></td>
|
|
253
|
+
<td scope="row">EX-101.LAB</td>
|
|
254
|
+
<td scope="row">1360866</td>
|
|
255
|
+
</tr>
|
|
256
|
+
<tr class="blueRow">
|
|
257
|
+
<td scope="row">23</td>
|
|
258
|
+
<td scope="row"></td>
|
|
259
|
+
<td scope="row"><a href="/Archives/edgar/data/81033/000093041309005485/peg-20090930_pre.xml">peg-20090930_pre.xml</a></td>
|
|
260
|
+
<td scope="row">EX-101.PRE</td>
|
|
261
|
+
<td scope="row">934783</td>
|
|
262
|
+
</tr>
|
|
263
|
+
</table>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
<!-- END DOCUMENT DIV -->
|
|
267
|
+
<!-- START FILER DIV -->
|
|
268
|
+
<div id="filerDiv">
|
|
269
|
+
<div class="mailer">Mailing Address
|
|
270
|
+
<span class="mailerAddress">CORPORATE ACCOUTNING SERVICES</span>
|
|
271
|
+
<span class="mailerAddress">80 PARK PLAZA, 9TH FLOOR</span>
|
|
272
|
+
<span class="mailerAddress">
|
|
273
|
+
NEWARK NJ 07102-4194 </span>
|
|
274
|
+
</div>
|
|
275
|
+
<div class="mailer">Business Address
|
|
276
|
+
<span class="mailerAddress">CORPORATE ACCOUNTING SERVICES</span>
|
|
277
|
+
<span class="mailerAddress">80 PARK PLAZA, 9TH FLOOR</span>
|
|
278
|
+
<span class="mailerAddress">
|
|
279
|
+
NEWARK NJ 07102-4194 </span>
|
|
280
|
+
<span class="mailerAddress">973-430-7000</span>
|
|
281
|
+
</div>
|
|
282
|
+
<div class="companyInfo">
|
|
283
|
+
<span class="companyName">PUBLIC SERVICE ELECTRIC & GAS CO (Filer)
|
|
284
|
+
<acronym title="Central Index Key">CIK</acronym>: <a href="/cgi-bin/browse-edgar?CIK=0000081033&action=getcompany">0000081033 (see all company filings)</a></span>
|
|
285
|
+
<p class="identInfo"><acronym title="Internal Revenue Service Number">IRS No.</acronym>: <strong>221212800</strong> | State of Incorp.: <strong>NJ</strong> | Fiscal Year End: <strong>0717</strong><br />Type: <strong>10-Q</strong> | Act: <strong>34</strong> | File No.: <a href="/cgi-bin/browse-edgar?filenum=001-00973&action=getcompany"><strong>001-00973</strong></a> | Film No.: <strong>091149049</strong><br /><acronym title="Standard Industrial Code">SIC</acronym>: <b><a href="/cgi-bin/browse-edgar?action=getcompany&SIC=4931&owner=include">4931</a></b> Electric & Other Services Combined<br />Assistant Director 2</p>
|
|
286
|
+
</div>
|
|
287
|
+
<div class="clear"></div>
|
|
288
|
+
</div>
|
|
289
|
+
<div id="filerDiv">
|
|
290
|
+
<div class="mailer">Mailing Address
|
|
291
|
+
<span class="mailerAddress">CORPORATE ACCOUNTING SERVICES</span>
|
|
292
|
+
<span class="mailerAddress">80 PARK PLAZA, 9TH FLOOR</span>
|
|
293
|
+
<span class="mailerAddress">
|
|
294
|
+
NEWARK NJ 07102-4194 </span>
|
|
295
|
+
</div>
|
|
296
|
+
<div class="mailer">Business Address
|
|
297
|
+
<span class="mailerAddress">CORPORATE ACCOUNTING SERVICES</span>
|
|
298
|
+
<span class="mailerAddress">80 PARK PLAZA, 9TH FLOOR</span>
|
|
299
|
+
<span class="mailerAddress">
|
|
300
|
+
NEWARK NJ 07102-4194 </span>
|
|
301
|
+
<span class="mailerAddress">973-430-7000</span>
|
|
302
|
+
</div>
|
|
303
|
+
<div class="companyInfo">
|
|
304
|
+
<span class="companyName">PUBLIC SERVICE ENTERPRISE GROUP INC (Filer)
|
|
305
|
+
<acronym title="Central Index Key">CIK</acronym>: <a href="/cgi-bin/browse-edgar?CIK=0000788784&action=getcompany">0000788784 (see all company filings)</a></span>
|
|
306
|
+
<p class="identInfo"><acronym title="Internal Revenue Service Number">IRS No.</acronym>: <strong>222625848</strong> | State of Incorp.: <strong>NJ</strong> | Fiscal Year End: <strong>1231</strong><br />Type: <strong>10-Q</strong> | Act: <strong>34</strong> | File No.: <a href="/cgi-bin/browse-edgar?filenum=001-09120&action=getcompany"><strong>001-09120</strong></a> | Film No.: <strong>091149048</strong><br /><acronym title="Standard Industrial Code">SIC</acronym>: <b><a href="/cgi-bin/browse-edgar?action=getcompany&SIC=4931&owner=include">4931</a></b> Electric & Other Services Combined<br />Assistant Director 2</p>
|
|
307
|
+
</div>
|
|
308
|
+
<div class="clear"></div>
|
|
309
|
+
</div>
|
|
310
|
+
<div id="filerDiv">
|
|
311
|
+
<div class="mailer">Mailing Address
|
|
312
|
+
<span class="mailerAddress">80 PARK PLAZA T-6</span>
|
|
313
|
+
<span class="mailerAddress">
|
|
314
|
+
NEWARK NJ 07111 </span>
|
|
315
|
+
</div>
|
|
316
|
+
<div class="mailer">Business Address
|
|
317
|
+
<span class="mailerAddress">80 PARK PLAZA T-6</span>
|
|
318
|
+
<span class="mailerAddress">`</span>
|
|
319
|
+
<span class="mailerAddress">
|
|
320
|
+
NEWARK NJ 07111 </span>
|
|
321
|
+
<span class="mailerAddress">9734307000</span>
|
|
322
|
+
</div>
|
|
323
|
+
<div class="companyInfo">
|
|
324
|
+
<span class="companyName">PSEG POWER LLC (Filer)
|
|
325
|
+
<acronym title="Central Index Key">CIK</acronym>: <a href="/cgi-bin/browse-edgar?CIK=0001158659&action=getcompany">0001158659 (see all company filings)</a></span>
|
|
326
|
+
<p class="identInfo"><acronym title="Internal Revenue Service Number">IRS No.</acronym>: <strong>223663480</strong> | State of Incorp.: <strong>DE</strong> | Fiscal Year End: <strong>1231</strong><br />Type: <strong>10-Q</strong> | Act: <strong>34</strong> | File No.: <a href="/cgi-bin/browse-edgar?filenum=001-34232&action=getcompany"><strong>001-34232</strong></a> | Film No.: <strong>091149050</strong><br /><acronym title="Standard Industrial Code">SIC</acronym>: <b><a href="/cgi-bin/browse-edgar?action=getcompany&SIC=4911&owner=include">4911</a></b> Electric Services<br />Assistant Director 2</p>
|
|
327
|
+
</div>
|
|
328
|
+
<div class="clear"></div>
|
|
329
|
+
</div>
|
|
330
|
+
<!-- END FILER DIV -->
|
|
331
|
+
</div>
|
|
@@ -0,0 +1,2861 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="windows-1252"?>
|
|
2
|
+
<?xml-stylesheet type="text/xsl" href="/rss/styles/shared_xsl_stylesheet_v2.xml"?>
|
|
3
|
+
<rss version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rss="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
4
|
+
<channel rdf:about="http://www.sec.gov/Archives/edgar/xbrl.html">
|
|
5
|
+
<title>Interactive Data Filings on EDGAR using US GAAP Taxonomies</title>
|
|
6
|
+
<link>http://www.sec.gov/Archives/edgar/xbrl.html</link>
|
|
7
|
+
<description>This is a list of the latest 100 filings containing XBRL, updated every 10 minutes.</description>
|
|
8
|
+
<language>en-us</language>
|
|
9
|
+
<pubDate>Fri, 30 Oct 2009 00:00:00 EDT</pubDate>
|
|
10
|
+
<lastBuildDate>Fri, 30 Oct 2009 00:00:00 EDT</lastBuildDate>
|
|
11
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/0000930413-09-005485-index.htm">
|
|
12
|
+
<title>PUBLIC SERVICE ELECTRIC & GAS CO (0000081033) (Filer)</title>
|
|
13
|
+
<link>http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/0000930413-09-005485-index.htm</link>
|
|
14
|
+
<description>10-Q</description>
|
|
15
|
+
<pubDate>Fri, 30 Oct 2009 17:24:17 EDT</pubDate>
|
|
16
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
17
|
+
<edgar:companyName>PUBLIC SERVICE ELECTRIC & GAS CO</edgar:companyName>
|
|
18
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
19
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
20
|
+
<edgar:cikNumber>0000081033</edgar:cikNumber>
|
|
21
|
+
<edgar:accessionNumber>0000930413-09-005485</edgar:accessionNumber>
|
|
22
|
+
<edgar:fileNumber>001-00973</edgar:fileNumber>
|
|
23
|
+
<edgar:xbrlFiles>
|
|
24
|
+
<edgar:xbrlFile sequence="1" file="c58983_10q.htm" type="10-Q" size="2409942" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_10q.htm" />
|
|
25
|
+
<edgar:xbrlFile sequence="2" file="c58983_ex12.htm" type="EX-12" size="38161" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex12.htm" />
|
|
26
|
+
<edgar:xbrlFile sequence="3" file="c58983_ex12-1.htm" type="EX-12.1" size="35295" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex12-1.htm" />
|
|
27
|
+
<edgar:xbrlFile sequence="4" file="c58983_ex12-2.htm" type="EX-12.2" size="29491" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex12-2.htm" />
|
|
28
|
+
<edgar:xbrlFile sequence="5" file="c58983_ex12-3.htm" type="EX-12.3" size="36401" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex12-3.htm" />
|
|
29
|
+
<edgar:xbrlFile sequence="6" file="c58983_ex31.htm" type="EX-31" size="12342" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex31.htm" />
|
|
30
|
+
<edgar:xbrlFile sequence="7" file="c58983_ex31-1.htm" type="EX-31.1" size="11599" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex31-1.htm" />
|
|
31
|
+
<edgar:xbrlFile sequence="8" file="c58983_ex31-2.htm" type="EX-31.2" size="9884" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex31-2.htm" />
|
|
32
|
+
<edgar:xbrlFile sequence="9" file="c58983_ex31-3.htm" type="EX-31.3" size="9835" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex31-3.htm" />
|
|
33
|
+
<edgar:xbrlFile sequence="10" file="c58983_ex31-4.htm" type="EX-31.4" size="9994" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex31-4.htm" />
|
|
34
|
+
<edgar:xbrlFile sequence="11" file="c58983_ex31-5.htm" type="EX-31.5" size="10028" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex31-5.htm" />
|
|
35
|
+
<edgar:xbrlFile sequence="12" file="c58983_ex32.htm" type="EX-32" size="2794" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex32.htm" />
|
|
36
|
+
<edgar:xbrlFile sequence="13" file="c58983_ex32-1.htm" type="EX-32.1" size="2814" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex32-1.htm" />
|
|
37
|
+
<edgar:xbrlFile sequence="14" file="c58983_ex32-2.htm" type="EX-32.2" size="2186" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex32-2.htm" />
|
|
38
|
+
<edgar:xbrlFile sequence="15" file="c58983_ex32-3.htm" type="EX-32.3" size="2192" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex32-3.htm" />
|
|
39
|
+
<edgar:xbrlFile sequence="16" file="c58983_ex32-4.htm" type="EX-32.4" size="2280" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex32-4.htm" />
|
|
40
|
+
<edgar:xbrlFile sequence="17" file="c58983_ex32-5.htm" type="EX-32.5" size="2291" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/c58983_ex32-5.htm" />
|
|
41
|
+
<edgar:xbrlFile sequence="18" file="peg-20090930.xml" type="EX-101.INS" size="3456259" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930.xml" />
|
|
42
|
+
<edgar:xbrlFile sequence="19" file="peg-20090930.xsd" type="EX-101.SCH" size="22703" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930.xsd" />
|
|
43
|
+
<edgar:xbrlFile sequence="20" file="peg-20090930_cal.xml" type="EX-101.CAL" size="664983" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930_cal.xml" />
|
|
44
|
+
<edgar:xbrlFile sequence="21" file="peg-20090930_def.xml" type="EX-101.DEF" size="914095" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930_def.xml" />
|
|
45
|
+
<edgar:xbrlFile sequence="22" file="peg-20090930_lab.xml" type="EX-101.LAB" size="1360866" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930_lab.xml" />
|
|
46
|
+
<edgar:xbrlFile sequence="23" file="peg-20090930_pre.xml" type="EX-101.PRE" size="934783" description="" url="http://www.sec.gov/Archives/edgar/data/81033/000093041309005485/peg-20090930_pre.xml" />
|
|
47
|
+
</edgar:xbrlFiles>
|
|
48
|
+
</edgar:xbrlFiling>
|
|
49
|
+
</item>
|
|
50
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/0000097476-09-000041-index.htm">
|
|
51
|
+
<title>TEXAS INSTRUMENTS INC (0000097476) (Filer)</title>
|
|
52
|
+
<link>http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/0000097476-09-000041-index.htm</link>
|
|
53
|
+
<description>10-Q</description>
|
|
54
|
+
<pubDate>Fri, 30 Oct 2009 17:21:15 EDT</pubDate>
|
|
55
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
56
|
+
<edgar:companyName>TEXAS INSTRUMENTS INC</edgar:companyName>
|
|
57
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
58
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
59
|
+
<edgar:cikNumber>0000097476</edgar:cikNumber>
|
|
60
|
+
<edgar:accessionNumber>0000097476-09-000041</edgar:accessionNumber>
|
|
61
|
+
<edgar:fileNumber>001-03761</edgar:fileNumber>
|
|
62
|
+
<edgar:xbrlFiles>
|
|
63
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1306460" description="FROM 10-Q FOR THIRD QUARTER 2009" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/d10q.htm" />
|
|
64
|
+
<edgar:xbrlFile sequence="2" file="ex101.htm" type="EX-10.1" size="122869" description="TEXAS INSTRUMENTS 2009 LONG-TERM INCENTIVE PLAN" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/ex101.htm" />
|
|
65
|
+
<edgar:xbrlFile sequence="3" file="ex102.htm" type="EX-10.2" size="15579" description="TEXAS INSTRUMENTS EXECUTIVE OFFICER PERFORMANCE PLAN" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/ex102.htm" />
|
|
66
|
+
<edgar:xbrlFile sequence="4" file="ex311.htm" type="EX-31.1" size="10937" description="CERTIFICATION OF CHIEF EXECUTIVE OFFICER OF PERIODIC REPORT PURSUANT TO RULE 13A" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/ex311.htm" />
|
|
67
|
+
<edgar:xbrlFile sequence="5" file="ex312.htm" type="EX-31.2" size="11063" description="CERTIFICATION OF CHIEF FINANCIAL OFFICER OF PERIODIC REPORT PURSUANT TO RULE 13A" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/ex312.htm" />
|
|
68
|
+
<edgar:xbrlFile sequence="6" file="ex321.htm" type="EX-32.1" size="5490" description="CERTIFICATION BY CHIEF EXECUTIVE OFFICER OF PERIODIC REPORT PURSUANT TO 18 U.S.C" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/ex321.htm" />
|
|
69
|
+
<edgar:xbrlFile sequence="7" file="ex322.htm" type="EX-32.2" size="5426" description="CERTIFICATION BY CHIEF FINANCIAL OFFICER OF PERIODIC REPORT PURSUANT TO 18 U.S.C" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/ex322.htm" />
|
|
70
|
+
<edgar:xbrlFile sequence="8" file="txn-20090930.xml" type="EX-101.INS" size="604042" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/txn-20090930.xml" />
|
|
71
|
+
<edgar:xbrlFile sequence="9" file="txn-20090930.xsd" type="EX-101.SCH" size="12085" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/txn-20090930.xsd" />
|
|
72
|
+
<edgar:xbrlFile sequence="10" file="txn-20090930_cal.xml" type="EX-101.CAL" size="730336" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/txn-20090930_cal.xml" />
|
|
73
|
+
<edgar:xbrlFile sequence="11" file="txn-20090930_lab.xml" type="EX-101.LAB" size="1537419" description="XBRL TAXONOMY EXTENSION LABELS LINKBASE" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/txn-20090930_lab.xml" />
|
|
74
|
+
<edgar:xbrlFile sequence="12" file="txn-20090930_pre.xml" type="EX-101.PRE" size="1072095" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/txn-20090930_pre.xml" />
|
|
75
|
+
<edgar:xbrlFile sequence="13" file="txn-20090930_def.xml" type="EX-101.DEF" size="1035884" description="XBRL TAXONOMY EXTENSION DEFINITION DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97476/000009747609000041/txn-20090930_def.xml" />
|
|
76
|
+
</edgar:xbrlFiles>
|
|
77
|
+
</edgar:xbrlFiling>
|
|
78
|
+
</item>
|
|
79
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/0001193125-09-219057-index.htm">
|
|
80
|
+
<title>SIGMA ALDRICH CORP (0000090185) (Filer)</title>
|
|
81
|
+
<link>http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/0001193125-09-219057-index.htm</link>
|
|
82
|
+
<description>10-Q</description>
|
|
83
|
+
<pubDate>Fri, 30 Oct 2009 17:08:34 EDT</pubDate>
|
|
84
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
85
|
+
<edgar:companyName>SIGMA ALDRICH CORP</edgar:companyName>
|
|
86
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
87
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
88
|
+
<edgar:cikNumber>0000090185</edgar:cikNumber>
|
|
89
|
+
<edgar:accessionNumber>0001193125-09-219057</edgar:accessionNumber>
|
|
90
|
+
<edgar:fileNumber>000-08135</edgar:fileNumber>
|
|
91
|
+
<edgar:xbrlFiles>
|
|
92
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="412121" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/d10q.htm" />
|
|
93
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="6130" description="CEO CERTIFICATION PURSUANT TO EXCHANGE ACT RULE 13A-14(A)." url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/dex311.htm" />
|
|
94
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="6321" description="CFO CERTIFICATION PURSUANT TO EXCHANGE ACT RULE 13A-14(A)." url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/dex312.htm" />
|
|
95
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="3734" description="CEO CERTIFICATION PURSUANT TO 18 U.S.C. SECTION 1350" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/dex321.htm" />
|
|
96
|
+
<edgar:xbrlFile sequence="5" file="dex322.htm" type="EX-32.2" size="3743" description="CFO CERTIFICATION PURSUANT TO 18 U.S.C. SECTION 1350" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/dex322.htm" />
|
|
97
|
+
<edgar:xbrlFile sequence="6" file="sial-20090930.xml" type="EX-101.INS" size="235373" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/sial-20090930.xml" />
|
|
98
|
+
<edgar:xbrlFile sequence="7" file="sial-20090930.xsd" type="EX-101.SCH" size="12247" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/sial-20090930.xsd" />
|
|
99
|
+
<edgar:xbrlFile sequence="8" file="sial-20090930_cal.xml" type="EX-101.CAL" size="30976" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/sial-20090930_cal.xml" />
|
|
100
|
+
<edgar:xbrlFile sequence="9" file="sial-20090930_lab.xml" type="EX-101.LAB" size="79468" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/sial-20090930_lab.xml" />
|
|
101
|
+
<edgar:xbrlFile sequence="10" file="sial-20090930_pre.xml" type="EX-101.PRE" size="69490" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/90185/000119312509219057/sial-20090930_pre.xml" />
|
|
102
|
+
</edgar:xbrlFiles>
|
|
103
|
+
</edgar:xbrlFiling>
|
|
104
|
+
</item>
|
|
105
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/0001193125-09-219024-index.htm">
|
|
106
|
+
<title>Western Union CO (0001365135) (Filer)</title>
|
|
107
|
+
<link>http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/0001193125-09-219024-index.htm</link>
|
|
108
|
+
<description>10-Q</description>
|
|
109
|
+
<pubDate>Fri, 30 Oct 2009 16:52:05 EDT</pubDate>
|
|
110
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
111
|
+
<edgar:companyName>Western Union CO</edgar:companyName>
|
|
112
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
113
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
114
|
+
<edgar:cikNumber>0001365135</edgar:cikNumber>
|
|
115
|
+
<edgar:accessionNumber>0001193125-09-219024</edgar:accessionNumber>
|
|
116
|
+
<edgar:fileNumber>001-32903</edgar:fileNumber>
|
|
117
|
+
<edgar:xbrlFiles>
|
|
118
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="855231" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/d10q.htm" />
|
|
119
|
+
<edgar:xbrlFile sequence="2" file="dex10.htm" type="EX-10" size="113594" description="THE WESTERN UNION COMPANY SEVERANCE/CHANGE IN CONTROL POLICY" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/dex10.htm" />
|
|
120
|
+
<edgar:xbrlFile sequence="3" file="dex12.htm" type="EX-12" size="20113" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/dex12.htm" />
|
|
121
|
+
<edgar:xbrlFile sequence="4" file="dex15.htm" type="EX-15" size="3073" description="LETTER FROM ERNST & YOUNG LLP REGARDING UNAUDITED INTERIM FINANCIAL INFORMATION" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/dex15.htm" />
|
|
122
|
+
<edgar:xbrlFile sequence="5" file="dex311.htm" type="EX-31.1" size="6656" description="CERTIFICATION OF PRINCIPAL EXECUTIVE OFFICER OF THE WESTERN UNION COMPANY" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/dex311.htm" />
|
|
123
|
+
<edgar:xbrlFile sequence="6" file="dex312.htm" type="EX-31.2" size="6675" description="CERTIFICATION OF PRINCIPAL FINANCIAL OFFICER OF THE WESTERN UNION COMPANY" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/dex312.htm" />
|
|
124
|
+
<edgar:xbrlFile sequence="7" file="dex32.htm" type="EX-32" size="5022" description="CERTIFICATION OF PRINCIPAL EXECUTIVE OFFICER AND PRINCIPAL FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/dex32.htm" />
|
|
125
|
+
<edgar:xbrlFile sequence="8" file="wu-20090930.xml" type="EX-101.INS" size="595790" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/wu-20090930.xml" />
|
|
126
|
+
<edgar:xbrlFile sequence="9" file="wu-20090930.xsd" type="EX-101.SCH" size="15809" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/wu-20090930.xsd" />
|
|
127
|
+
<edgar:xbrlFile sequence="10" file="wu-20090930_cal.xml" type="EX-101.CAL" size="30192" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/wu-20090930_cal.xml" />
|
|
128
|
+
<edgar:xbrlFile sequence="11" file="wu-20090930_lab.xml" type="EX-101.LAB" size="87518" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/wu-20090930_lab.xml" />
|
|
129
|
+
<edgar:xbrlFile sequence="12" file="wu-20090930_pre.xml" type="EX-101.PRE" size="75101" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1365135/000119312509219024/wu-20090930_pre.xml" />
|
|
130
|
+
</edgar:xbrlFiles>
|
|
131
|
+
</edgar:xbrlFiling>
|
|
132
|
+
</item>
|
|
133
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/0000950123-09-055676-index.htm">
|
|
134
|
+
<title>DTE ENERGY CO (0000936340) (Filer)</title>
|
|
135
|
+
<link>http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/0000950123-09-055676-index.htm</link>
|
|
136
|
+
<description>10-Q</description>
|
|
137
|
+
<pubDate>Fri, 30 Oct 2009 16:33:10 EDT</pubDate>
|
|
138
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
139
|
+
<edgar:companyName>DTE ENERGY CO</edgar:companyName>
|
|
140
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
141
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
142
|
+
<edgar:cikNumber>0000936340</edgar:cikNumber>
|
|
143
|
+
<edgar:accessionNumber>0000950123-09-055676</edgar:accessionNumber>
|
|
144
|
+
<edgar:fileNumber>001-11607</edgar:fileNumber>
|
|
145
|
+
<edgar:xbrlFiles>
|
|
146
|
+
<edgar:xbrlFile sequence="1" file="k48430e10vq.htm" type="10-Q" size="843277" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/k48430e10vq.htm" />
|
|
147
|
+
<edgar:xbrlFile sequence="2" file="k48430exv12w44.htm" type="EX-12.44" size="16266" description="EX-12.44" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/k48430exv12w44.htm" />
|
|
148
|
+
<edgar:xbrlFile sequence="3" file="k48430exv31w53.htm" type="EX-31.53" size="8699" description="EX-31.53" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/k48430exv31w53.htm" />
|
|
149
|
+
<edgar:xbrlFile sequence="4" file="k48430exv31w54.htm" type="EX-31.54" size="8674" description="EX-31.54" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/k48430exv31w54.htm" />
|
|
150
|
+
<edgar:xbrlFile sequence="5" file="k48430exv32w53.htm" type="EX-32.53" size="3664" description="EX-32.53" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/k48430exv32w53.htm" />
|
|
151
|
+
<edgar:xbrlFile sequence="6" file="k48430exv32w54.htm" type="EX-32.54" size="3651" description="EX-32.54" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/k48430exv32w54.htm" />
|
|
152
|
+
<edgar:xbrlFile sequence="7" file="dte-20090930.xml" type="EX-101.INS" size="581676" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/dte-20090930.xml" />
|
|
153
|
+
<edgar:xbrlFile sequence="8" file="dte-20090930.xsd" type="EX-101.SCH" size="13468" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/dte-20090930.xsd" />
|
|
154
|
+
<edgar:xbrlFile sequence="9" file="dte-20090930_cal.xml" type="EX-101.CAL" size="65012" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/dte-20090930_cal.xml" />
|
|
155
|
+
<edgar:xbrlFile sequence="10" file="dte-20090930_lab.xml" type="EX-101.LAB" size="213168" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/dte-20090930_lab.xml" />
|
|
156
|
+
<edgar:xbrlFile sequence="11" file="dte-20090930_pre.xml" type="EX-101.PRE" size="131382" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/dte-20090930_pre.xml" />
|
|
157
|
+
<edgar:xbrlFile sequence="12" file="dte-20090930_def.xml" type="EX-101.DEF" size="18436" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/936340/000095012309055676/dte-20090930_def.xml" />
|
|
158
|
+
</edgar:xbrlFiles>
|
|
159
|
+
</edgar:xbrlFiling>
|
|
160
|
+
</item>
|
|
161
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/0001104659-09-061541-index.htm">
|
|
162
|
+
<title>XCEL ENERGY INC (0000072903) (Filer)</title>
|
|
163
|
+
<link>http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/0001104659-09-061541-index.htm</link>
|
|
164
|
+
<description>10-Q</description>
|
|
165
|
+
<pubDate>Fri, 30 Oct 2009 16:27:16 EDT</pubDate>
|
|
166
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
167
|
+
<edgar:companyName>XCEL ENERGY INC</edgar:companyName>
|
|
168
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
169
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
170
|
+
<edgar:cikNumber>0000072903</edgar:cikNumber>
|
|
171
|
+
<edgar:accessionNumber>0001104659-09-061541</edgar:accessionNumber>
|
|
172
|
+
<edgar:fileNumber>001-03034</edgar:fileNumber>
|
|
173
|
+
<edgar:xbrlFiles>
|
|
174
|
+
<edgar:xbrlFile sequence="1" file="a09-30440_110q.htm" type="10-Q" size="2358413" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_110q.htm" />
|
|
175
|
+
<edgar:xbrlFile sequence="2" file="a09-30440_1ex10d01.htm" type="EX-10.01" size="568964" description="EX-10.01" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d01.htm" />
|
|
176
|
+
<edgar:xbrlFile sequence="3" file="a09-30440_1ex10d02.htm" type="EX-10.02" size="565709" description="EX-10.02" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d02.htm" />
|
|
177
|
+
<edgar:xbrlFile sequence="4" file="a09-30440_1ex10d03.htm" type="EX-10.03" size="568844" description="EX-10.03" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d03.htm" />
|
|
178
|
+
<edgar:xbrlFile sequence="5" file="a09-30440_1ex10d04.htm" type="EX-10.04" size="551430" description="EX-10.04" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d04.htm" />
|
|
179
|
+
<edgar:xbrlFile sequence="6" file="a09-30440_1ex10d05.htm" type="EX-10.05" size="5726" description="EX-10.05" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d05.htm" />
|
|
180
|
+
<edgar:xbrlFile sequence="7" file="a09-30440_1ex10d06.htm" type="EX-10.06" size="20266" description="EX-10.06" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d06.htm" />
|
|
181
|
+
<edgar:xbrlFile sequence="8" file="a09-30440_1ex10d07.htm" type="EX-10.07" size="6997" description="EX-10.07" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d07.htm" />
|
|
182
|
+
<edgar:xbrlFile sequence="9" file="a09-30440_1ex10d08.htm" type="EX-10.08" size="28256" description="EX-10.08" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex10d08.htm" />
|
|
183
|
+
<edgar:xbrlFile sequence="10" file="a09-30440_1ex31d01.htm" type="EX-31.01" size="24339" description="EX-31.01" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex31d01.htm" />
|
|
184
|
+
<edgar:xbrlFile sequence="11" file="a09-30440_1ex32d01.htm" type="EX-32.01" size="9368" description="EX-32.01" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex32d01.htm" />
|
|
185
|
+
<edgar:xbrlFile sequence="12" file="a09-30440_1ex99d01.htm" type="EX-99.01" size="12099" description="EX-99.01" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/a09-30440_1ex99d01.htm" />
|
|
186
|
+
<edgar:xbrlFile sequence="13" file="xel-20090930.xml" type="EX-101.INS" size="1418089" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/xel-20090930.xml" />
|
|
187
|
+
<edgar:xbrlFile sequence="14" file="xel-20090930.xsd" type="EX-101.SCH" size="17761" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/xel-20090930.xsd" />
|
|
188
|
+
<edgar:xbrlFile sequence="15" file="xel-20090930_cal.xml" type="EX-101.CAL" size="66106" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/xel-20090930_cal.xml" />
|
|
189
|
+
<edgar:xbrlFile sequence="16" file="xel-20090930_def.xml" type="EX-101.DEF" size="25184" description="EX-101.DEF" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/xel-20090930_def.xml" />
|
|
190
|
+
<edgar:xbrlFile sequence="17" file="xel-20090930_lab.xml" type="EX-101.LAB" size="324623" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/xel-20090930_lab.xml" />
|
|
191
|
+
<edgar:xbrlFile sequence="18" file="xel-20090930_pre.xml" type="EX-101.PRE" size="150191" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/72903/000110465909061541/xel-20090930_pre.xml" />
|
|
192
|
+
</edgar:xbrlFiles>
|
|
193
|
+
</edgar:xbrlFiling>
|
|
194
|
+
</item>
|
|
195
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/0001193125-09-218953-index.htm">
|
|
196
|
+
<title>AMERICAN EXPRESS CO (0000004962) (Filer)</title>
|
|
197
|
+
<link>http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/0001193125-09-218953-index.htm</link>
|
|
198
|
+
<description>10-Q</description>
|
|
199
|
+
<pubDate>Fri, 30 Oct 2009 16:27:04 EDT</pubDate>
|
|
200
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
201
|
+
<edgar:companyName>AMERICAN EXPRESS CO</edgar:companyName>
|
|
202
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
203
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
204
|
+
<edgar:cikNumber>0000004962</edgar:cikNumber>
|
|
205
|
+
<edgar:accessionNumber>0001193125-09-218953</edgar:accessionNumber>
|
|
206
|
+
<edgar:fileNumber>001-07657</edgar:fileNumber>
|
|
207
|
+
<edgar:xbrlFiles>
|
|
208
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1634133" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/d10q.htm" />
|
|
209
|
+
<edgar:xbrlFile sequence="2" file="dex101.htm" type="EX-10.1" size="104700" description="LETTER AGREEMENT, DATED OCTOBER 2,2009" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/dex101.htm" />
|
|
210
|
+
<edgar:xbrlFile sequence="3" file="dex12.htm" type="EX-12" size="21444" description="COMPUTATION IN SUPPORT OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/dex12.htm" />
|
|
211
|
+
<edgar:xbrlFile sequence="4" file="dex311.htm" type="EX-31.1" size="9203" description="CERTIFICATION OF KENNETH I. CHENAULT PURSUANT TO RULE 13A-14(A)" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/dex311.htm" />
|
|
212
|
+
<edgar:xbrlFile sequence="5" file="dex312.htm" type="EX-31.2" size="9185" description="CERTIFICATION OF DANIEL T. HENRY PURSUANT TO RULE 13A-14(A)" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/dex312.htm" />
|
|
213
|
+
<edgar:xbrlFile sequence="6" file="dex321.htm" type="EX-32.1" size="6214" description="CERTIFICATION OF KENNETH I. CHENAULT AND DANIEL T. HENRY PURSUANT TO 18 U.S.C." url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/dex321.htm" />
|
|
214
|
+
<edgar:xbrlFile sequence="7" file="axp-20090930.xml" type="EX-101.INS" size="932921" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/axp-20090930.xml" />
|
|
215
|
+
<edgar:xbrlFile sequence="8" file="axp-20090930.xsd" type="EX-101.SCH" size="22830" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/axp-20090930.xsd" />
|
|
216
|
+
<edgar:xbrlFile sequence="9" file="axp-20090930_cal.xml" type="EX-101.CAL" size="50411" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/axp-20090930_cal.xml" />
|
|
217
|
+
<edgar:xbrlFile sequence="10" file="axp-20090930_lab.xml" type="EX-101.LAB" size="136710" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/axp-20090930_lab.xml" />
|
|
218
|
+
<edgar:xbrlFile sequence="11" file="axp-20090930_pre.xml" type="EX-101.PRE" size="105434" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4962/000119312509218953/axp-20090930_pre.xml" />
|
|
219
|
+
</edgar:xbrlFiles>
|
|
220
|
+
</edgar:xbrlFiling>
|
|
221
|
+
</item>
|
|
222
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/0001104659-09-061539-index.htm">
|
|
223
|
+
<title>SOUTHERN COPPER CORP/ (0001001838) (Filer)</title>
|
|
224
|
+
<link>http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/0001104659-09-061539-index.htm</link>
|
|
225
|
+
<description>10-Q</description>
|
|
226
|
+
<pubDate>Fri, 30 Oct 2009 16:19:00 EDT</pubDate>
|
|
227
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
228
|
+
<edgar:companyName>SOUTHERN COPPER CORP/</edgar:companyName>
|
|
229
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
230
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
231
|
+
<edgar:cikNumber>0001001838</edgar:cikNumber>
|
|
232
|
+
<edgar:accessionNumber>0001104659-09-061539</edgar:accessionNumber>
|
|
233
|
+
<edgar:fileNumber>001-14066</edgar:fileNumber>
|
|
234
|
+
<edgar:xbrlFiles>
|
|
235
|
+
<edgar:xbrlFile sequence="1" file="a09-26004_110q.htm" type="10-Q" size="1898345" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/a09-26004_110q.htm" />
|
|
236
|
+
<edgar:xbrlFile sequence="2" file="a09-26004_1ex15.htm" type="EX-15" size="4578" description="EX-15" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/a09-26004_1ex15.htm" />
|
|
237
|
+
<edgar:xbrlFile sequence="3" file="a09-26004_1ex31d1.htm" type="EX-31.1" size="12692" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/a09-26004_1ex31d1.htm" />
|
|
238
|
+
<edgar:xbrlFile sequence="4" file="a09-26004_1ex31d2.htm" type="EX-31.2" size="12468" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/a09-26004_1ex31d2.htm" />
|
|
239
|
+
<edgar:xbrlFile sequence="5" file="a09-26004_1ex32d1.htm" type="EX-32.1" size="6433" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/a09-26004_1ex32d1.htm" />
|
|
240
|
+
<edgar:xbrlFile sequence="6" file="a09-26004_1ex32d2.htm" type="EX-32.2" size="6410" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/a09-26004_1ex32d2.htm" />
|
|
241
|
+
<edgar:xbrlFile sequence="7" file="pcu-20090930.xml" type="EX-101.INS" size="1189050" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/pcu-20090930.xml" />
|
|
242
|
+
<edgar:xbrlFile sequence="8" file="pcu-20090930.xsd" type="EX-101.SCH" size="14302" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/pcu-20090930.xsd" />
|
|
243
|
+
<edgar:xbrlFile sequence="9" file="pcu-20090930_cal.xml" type="EX-101.CAL" size="46140" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/pcu-20090930_cal.xml" />
|
|
244
|
+
<edgar:xbrlFile sequence="10" file="pcu-20090930_lab.xml" type="EX-101.LAB" size="177608" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/pcu-20090930_lab.xml" />
|
|
245
|
+
<edgar:xbrlFile sequence="11" file="pcu-20090930_pre.xml" type="EX-101.PRE" size="98472" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/1001838/000110465909061539/pcu-20090930_pre.xml" />
|
|
246
|
+
</edgar:xbrlFiles>
|
|
247
|
+
</edgar:xbrlFiling>
|
|
248
|
+
</item>
|
|
249
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/0000753308-09-000122-index.htm">
|
|
250
|
+
<title>FLORIDA POWER & LIGHT CO (0000037634) (Filer)</title>
|
|
251
|
+
<link>http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/0000753308-09-000122-index.htm</link>
|
|
252
|
+
<description>10-Q</description>
|
|
253
|
+
<pubDate>Fri, 30 Oct 2009 16:11:20 EDT</pubDate>
|
|
254
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
255
|
+
<edgar:companyName>FLORIDA POWER & LIGHT CO</edgar:companyName>
|
|
256
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
257
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
258
|
+
<edgar:cikNumber>0000037634</edgar:cikNumber>
|
|
259
|
+
<edgar:accessionNumber>0000753308-09-000122</edgar:accessionNumber>
|
|
260
|
+
<edgar:fileNumber>002-27612</edgar:fileNumber>
|
|
261
|
+
<edgar:xbrlFiles>
|
|
262
|
+
<edgar:xbrlFile sequence="1" file="form10q093009.htm" type="10-Q" size="3404731" description="FORM 10-Q SEPTEMBER 30, 2009" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/form10q093009.htm" />
|
|
263
|
+
<edgar:xbrlFile sequence="2" file="exhibit3a.htm" type="EX-3.A" size="99234" description="EXHIBIT 3(A)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit3a.htm" />
|
|
264
|
+
<edgar:xbrlFile sequence="3" file="exhibit10a.htm" type="EX-10.A" size="19250" description="EXHIBIT 10(A)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit10a.htm" />
|
|
265
|
+
<edgar:xbrlFile sequence="4" file="exhibit10b.htm" type="EX-10.B" size="180182" description="EXHIBIT 10(B)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit10b.htm" />
|
|
266
|
+
<edgar:xbrlFile sequence="5" file="exhibit10c.htm" type="EX-10.C" size="67876" description="EXHIBIT 10(C)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit10c.htm" />
|
|
267
|
+
<edgar:xbrlFile sequence="6" file="exhibit12a.htm" type="EX-12.A" size="27053" description="EXHIBIT 12(A)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit12a.htm" />
|
|
268
|
+
<edgar:xbrlFile sequence="7" file="exhibit12b.htm" type="EX-12.B" size="24241" description="EXHIBIT 12(B)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit12b.htm" />
|
|
269
|
+
<edgar:xbrlFile sequence="8" file="exhibit31a.htm" type="EX-31.A" size="16658" description="EXHIBIT 31(A)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit31a.htm" />
|
|
270
|
+
<edgar:xbrlFile sequence="9" file="exhibit31b.htm" type="EX-31.B" size="16619" description="EXHIBIT 31(B)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit31b.htm" />
|
|
271
|
+
<edgar:xbrlFile sequence="10" file="exhibit31c.htm" type="EX-31.C" size="16412" description="EXHIBIT 31(C)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit31c.htm" />
|
|
272
|
+
<edgar:xbrlFile sequence="11" file="exhibit31d.htm" type="EX-31.D" size="16655" description="EXHIBIT 31(D)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit31d.htm" />
|
|
273
|
+
<edgar:xbrlFile sequence="12" file="exhibit32a.htm" type="EX-32.A" size="10227" description="EXHIBIT 32(A)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit32a.htm" />
|
|
274
|
+
<edgar:xbrlFile sequence="13" file="exhibit32b.htm" type="EX-32.B" size="10411" description="EXHIBIT 32(B)" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/exhibit32b.htm" />
|
|
275
|
+
<edgar:xbrlFile sequence="14" file="fpl-20090930.xml" type="EX-101.INS" size="1870559" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/fpl-20090930.xml" />
|
|
276
|
+
<edgar:xbrlFile sequence="15" file="fpl-20090930.xsd" type="EX-101.SCH" size="30780" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/fpl-20090930.xsd" />
|
|
277
|
+
<edgar:xbrlFile sequence="16" file="fpl-20090930_cal.xml" type="EX-101.CAL" size="70175" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/fpl-20090930_cal.xml" />
|
|
278
|
+
<edgar:xbrlFile sequence="17" file="fpl-20090930_lab.xml" type="EX-101.LAB" size="276195" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/fpl-20090930_lab.xml" />
|
|
279
|
+
<edgar:xbrlFile sequence="18" file="fpl-20090930_pre.xml" type="EX-101.PRE" size="122376" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/fpl-20090930_pre.xml" />
|
|
280
|
+
<edgar:xbrlFile sequence="19" file="group.jpg" type="GRAPHIC" size="4300" description="FPL GROUP, INC. LOGO" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/group.jpg" />
|
|
281
|
+
<edgar:xbrlFile sequence="20" file="fpl.jpg" type="GRAPHIC" size="2754" description="FPL LOGO" url="http://www.sec.gov/Archives/edgar/data/37634/000075330809000122/fpl.jpg" />
|
|
282
|
+
</edgar:xbrlFiles>
|
|
283
|
+
</edgar:xbrlFiling>
|
|
284
|
+
</item>
|
|
285
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/0000950123-09-055625-index.htm">
|
|
286
|
+
<title>CELGENE CORP /DE/ (0000816284) (Filer)</title>
|
|
287
|
+
<link>http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/0000950123-09-055625-index.htm</link>
|
|
288
|
+
<description>10-Q</description>
|
|
289
|
+
<pubDate>Fri, 30 Oct 2009 16:08:08 EDT</pubDate>
|
|
290
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
291
|
+
<edgar:companyName>CELGENE CORP /DE/</edgar:companyName>
|
|
292
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
293
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
294
|
+
<edgar:cikNumber>0000816284</edgar:cikNumber>
|
|
295
|
+
<edgar:accessionNumber>0000950123-09-055625</edgar:accessionNumber>
|
|
296
|
+
<edgar:fileNumber>000-16132</edgar:fileNumber>
|
|
297
|
+
<edgar:xbrlFiles>
|
|
298
|
+
<edgar:xbrlFile sequence="1" file="c91609e10vq.htm" type="10-Q" size="568636" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/c91609e10vq.htm" />
|
|
299
|
+
<edgar:xbrlFile sequence="2" file="c91609exv31w1.htm" type="EX-31.1" size="5901" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/c91609exv31w1.htm" />
|
|
300
|
+
<edgar:xbrlFile sequence="3" file="c91609exv31w2.htm" type="EX-31.2" size="5923" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/c91609exv31w2.htm" />
|
|
301
|
+
<edgar:xbrlFile sequence="4" file="c91609exv32w1.htm" type="EX-32.1" size="3087" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/c91609exv32w1.htm" />
|
|
302
|
+
<edgar:xbrlFile sequence="5" file="c91609exv32w2.htm" type="EX-32.2" size="3411" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/c91609exv32w2.htm" />
|
|
303
|
+
<edgar:xbrlFile sequence="6" file="celg-20090930.xml" type="EX-101.INS" size="412426" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/celg-20090930.xml" />
|
|
304
|
+
<edgar:xbrlFile sequence="7" file="celg-20090930.xsd" type="EX-101.SCH" size="14978" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/celg-20090930.xsd" />
|
|
305
|
+
<edgar:xbrlFile sequence="8" file="celg-20090930_cal.xml" type="EX-101.CAL" size="43278" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/celg-20090930_cal.xml" />
|
|
306
|
+
<edgar:xbrlFile sequence="9" file="celg-20090930_lab.xml" type="EX-101.LAB" size="157743" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/celg-20090930_lab.xml" />
|
|
307
|
+
<edgar:xbrlFile sequence="10" file="celg-20090930_pre.xml" type="EX-101.PRE" size="91007" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/celg-20090930_pre.xml" />
|
|
308
|
+
<edgar:xbrlFile sequence="11" file="celg-20090930_def.xml" type="EX-101.DEF" size="10655" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/816284/000095012309055625/celg-20090930_def.xml" />
|
|
309
|
+
</edgar:xbrlFiles>
|
|
310
|
+
</edgar:xbrlFiling>
|
|
311
|
+
</item>
|
|
312
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/0000950123-09-055534-index.htm">
|
|
313
|
+
<title>NABORS INDUSTRIES LTD (0001163739) (Filer)</title>
|
|
314
|
+
<link>http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/0000950123-09-055534-index.htm</link>
|
|
315
|
+
<description>10-Q</description>
|
|
316
|
+
<pubDate>Fri, 30 Oct 2009 15:48:39 EDT</pubDate>
|
|
317
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
318
|
+
<edgar:companyName>NABORS INDUSTRIES LTD</edgar:companyName>
|
|
319
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
320
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
321
|
+
<edgar:cikNumber>0001163739</edgar:cikNumber>
|
|
322
|
+
<edgar:accessionNumber>0000950123-09-055534</edgar:accessionNumber>
|
|
323
|
+
<edgar:fileNumber>001-32657</edgar:fileNumber>
|
|
324
|
+
<edgar:xbrlFiles>
|
|
325
|
+
<edgar:xbrlFile sequence="1" file="h67775e10vq.htm" type="10-Q" size="919434" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/h67775e10vq.htm" />
|
|
326
|
+
<edgar:xbrlFile sequence="2" file="h67775exv15.htm" type="EX-15" size="1740" description="EX-15" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/h67775exv15.htm" />
|
|
327
|
+
<edgar:xbrlFile sequence="3" file="h67775exv31w1.htm" type="EX-31.1" size="8359" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/h67775exv31w1.htm" />
|
|
328
|
+
<edgar:xbrlFile sequence="4" file="h67775exv31w2.htm" type="EX-31.2" size="8636" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/h67775exv31w2.htm" />
|
|
329
|
+
<edgar:xbrlFile sequence="5" file="h67775exv32w1.htm" type="EX-32.1" size="4139" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/h67775exv32w1.htm" />
|
|
330
|
+
<edgar:xbrlFile sequence="6" file="nbr-20090930.xml" type="EX-101.INS" size="831423" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/nbr-20090930.xml" />
|
|
331
|
+
<edgar:xbrlFile sequence="7" file="nbr-20090930.xsd" type="EX-101.SCH" size="20774" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/nbr-20090930.xsd" />
|
|
332
|
+
<edgar:xbrlFile sequence="8" file="nbr-20090930_cal.xml" type="EX-101.CAL" size="58681" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/nbr-20090930_cal.xml" />
|
|
333
|
+
<edgar:xbrlFile sequence="9" file="nbr-20090930_lab.xml" type="EX-101.LAB" size="196115" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/nbr-20090930_lab.xml" />
|
|
334
|
+
<edgar:xbrlFile sequence="10" file="nbr-20090930_pre.xml" type="EX-101.PRE" size="116990" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/nbr-20090930_pre.xml" />
|
|
335
|
+
<edgar:xbrlFile sequence="11" file="nbr-20090930_def.xml" type="EX-101.DEF" size="22297" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163739/000095012309055534/nbr-20090930_def.xml" />
|
|
336
|
+
</edgar:xbrlFiles>
|
|
337
|
+
</edgar:xbrlFiling>
|
|
338
|
+
</item>
|
|
339
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/0001104659-09-061503-index.htm">
|
|
340
|
+
<title>3M CO (0000066740) (Filer)</title>
|
|
341
|
+
<link>http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/0001104659-09-061503-index.htm</link>
|
|
342
|
+
<description>10-Q</description>
|
|
343
|
+
<pubDate>Fri, 30 Oct 2009 15:12:41 EDT</pubDate>
|
|
344
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
345
|
+
<edgar:companyName>3M CO</edgar:companyName>
|
|
346
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
347
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
348
|
+
<edgar:cikNumber>0000066740</edgar:cikNumber>
|
|
349
|
+
<edgar:accessionNumber>0001104659-09-061503</edgar:accessionNumber>
|
|
350
|
+
<edgar:fileNumber>001-03285</edgar:fileNumber>
|
|
351
|
+
<edgar:xbrlFiles>
|
|
352
|
+
<edgar:xbrlFile sequence="1" file="a09-31102_110q.htm" type="10-Q" size="2728717" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_110q.htm" />
|
|
353
|
+
<edgar:xbrlFile sequence="2" file="a09-31102_1ex12.htm" type="EX-12" size="120953" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_1ex12.htm" />
|
|
354
|
+
<edgar:xbrlFile sequence="3" file="a09-31102_1ex15.htm" type="EX-15" size="3508" description="EX-15" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_1ex15.htm" />
|
|
355
|
+
<edgar:xbrlFile sequence="4" file="a09-31102_1ex31d1.htm" type="EX-31.1" size="13076" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_1ex31d1.htm" />
|
|
356
|
+
<edgar:xbrlFile sequence="5" file="a09-31102_1ex31d2.htm" type="EX-31.2" size="13084" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_1ex31d2.htm" />
|
|
357
|
+
<edgar:xbrlFile sequence="6" file="a09-31102_1ex32d1.htm" type="EX-32.1" size="5753" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_1ex32d1.htm" />
|
|
358
|
+
<edgar:xbrlFile sequence="7" file="a09-31102_1ex32d2.htm" type="EX-32.2" size="5641" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/a09-31102_1ex32d2.htm" />
|
|
359
|
+
<edgar:xbrlFile sequence="8" file="mmm-20090930.xml" type="EX-101.INS" size="2079330" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/mmm-20090930.xml" />
|
|
360
|
+
<edgar:xbrlFile sequence="9" file="mmm-20090930.xsd" type="EX-101.SCH" size="11099" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/mmm-20090930.xsd" />
|
|
361
|
+
<edgar:xbrlFile sequence="10" file="mmm-20090930_cal.xml" type="EX-101.CAL" size="53967" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/mmm-20090930_cal.xml" />
|
|
362
|
+
<edgar:xbrlFile sequence="11" file="mmm-20090930_lab.xml" type="EX-101.LAB" size="194257" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/mmm-20090930_lab.xml" />
|
|
363
|
+
<edgar:xbrlFile sequence="12" file="mmm-20090930_pre.xml" type="EX-101.PRE" size="98808" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/66740/000110465909061503/mmm-20090930_pre.xml" />
|
|
364
|
+
</edgar:xbrlFiles>
|
|
365
|
+
</edgar:xbrlFiling>
|
|
366
|
+
</item>
|
|
367
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/0001140361-09-024152-index.htm">
|
|
368
|
+
<title>KINDER MORGAN ENERGY PARTNERS L P (0000888228) (Filer)</title>
|
|
369
|
+
<link>http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/0001140361-09-024152-index.htm</link>
|
|
370
|
+
<description>10-Q</description>
|
|
371
|
+
<pubDate>Fri, 30 Oct 2009 14:56:19 EDT</pubDate>
|
|
372
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
373
|
+
<edgar:companyName>KINDER MORGAN ENERGY PARTNERS L P</edgar:companyName>
|
|
374
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
375
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
376
|
+
<edgar:cikNumber>0000888228</edgar:cikNumber>
|
|
377
|
+
<edgar:accessionNumber>0001140361-09-024152</edgar:accessionNumber>
|
|
378
|
+
<edgar:fileNumber>001-11234</edgar:fileNumber>
|
|
379
|
+
<edgar:xbrlFiles>
|
|
380
|
+
<edgar:xbrlFile sequence="1" file="form10q.htm" type="10-Q" size="2254643" description="KINDER MORGAN ENERGY PARTNERS 10-Q 9-30-2009" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/form10q.htm" />
|
|
381
|
+
<edgar:xbrlFile sequence="2" file="ex4_2.htm" type="EX-4.2" size="29314" description="EXHIBIT 4.2" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex4_2.htm" />
|
|
382
|
+
<edgar:xbrlFile sequence="3" file="ex11.htm" type="EX-11" size="57930" description="EXHIBIT 11" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex11.htm" />
|
|
383
|
+
<edgar:xbrlFile sequence="4" file="ex12.htm" type="EX-12" size="37761" description="EXHIBIT 12" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex12.htm" />
|
|
384
|
+
<edgar:xbrlFile sequence="5" file="ex31_1.htm" type="EX-31.1" size="16348" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex31_1.htm" />
|
|
385
|
+
<edgar:xbrlFile sequence="6" file="ex31_2.htm" type="EX-31.2" size="16672" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex31_2.htm" />
|
|
386
|
+
<edgar:xbrlFile sequence="7" file="ex32_1.htm" type="EX-32.1" size="6381" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex32_1.htm" />
|
|
387
|
+
<edgar:xbrlFile sequence="8" file="ex32_2.htm" type="EX-32.2" size="6688" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/ex32_2.htm" />
|
|
388
|
+
<edgar:xbrlFile sequence="9" file="kmp-20090930.xml" type="EX-101.INS" size="1185167" description="INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/kmp-20090930.xml" />
|
|
389
|
+
<edgar:xbrlFile sequence="10" file="kmp-20090930.xsd" type="EX-101.SCH" size="20296" description="SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/kmp-20090930.xsd" />
|
|
390
|
+
<edgar:xbrlFile sequence="11" file="kmp-20090930_cal.xml" type="EX-101.CAL" size="67440" description="CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/kmp-20090930_cal.xml" />
|
|
391
|
+
<edgar:xbrlFile sequence="12" file="kmp-20090930_lab.xml" type="EX-101.LAB" size="235025" description="LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/kmp-20090930_lab.xml" />
|
|
392
|
+
<edgar:xbrlFile sequence="13" file="kmp-20090930_pre.xml" type="EX-101.PRE" size="120198" description="PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/888228/000114036109024152/kmp-20090930_pre.xml" />
|
|
393
|
+
</edgar:xbrlFiles>
|
|
394
|
+
</edgar:xbrlFiling>
|
|
395
|
+
</item>
|
|
396
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/0001193125-09-218667-index.htm">
|
|
397
|
+
<title>NORTHERN TRUST CORP (0000073124) (Filer)</title>
|
|
398
|
+
<link>http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/0001193125-09-218667-index.htm</link>
|
|
399
|
+
<description>10-Q</description>
|
|
400
|
+
<pubDate>Fri, 30 Oct 2009 14:25:10 EDT</pubDate>
|
|
401
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
402
|
+
<edgar:companyName>NORTHERN TRUST CORP</edgar:companyName>
|
|
403
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
404
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
405
|
+
<edgar:cikNumber>0000073124</edgar:cikNumber>
|
|
406
|
+
<edgar:accessionNumber>0001193125-09-218667</edgar:accessionNumber>
|
|
407
|
+
<edgar:fileNumber>000-05965</edgar:fileNumber>
|
|
408
|
+
<edgar:xbrlFiles>
|
|
409
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1612253" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/d10q.htm" />
|
|
410
|
+
<edgar:xbrlFile sequence="2" file="dex10i.htm" type="EX-10.(I)" size="60830" description="NORTHERN PARTNERS INCENTIVE PLAN - NORTH AMERICAN PLAN" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/dex10i.htm" />
|
|
411
|
+
<edgar:xbrlFile sequence="3" file="dex10ii.htm" type="EX-10.(II)" size="58182" description="NORTHERN PARTNERS INCENTIVE PLAN - EMEA PLAN" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/dex10ii.htm" />
|
|
412
|
+
<edgar:xbrlFile sequence="4" file="dex10iii.htm" type="EX-10.(III)" size="58003" description="NORTHERN PARTNERS INCENTIVE PLAN - APAC PLAN" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/dex10iii.htm" />
|
|
413
|
+
<edgar:xbrlFile sequence="5" file="dex31i.htm" type="EX-31.(I)" size="9541" description="CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/dex31i.htm" />
|
|
414
|
+
<edgar:xbrlFile sequence="6" file="dex31ii.htm" type="EX-31.(II)" size="9541" description="CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/dex31ii.htm" />
|
|
415
|
+
<edgar:xbrlFile sequence="7" file="dex32i.htm" type="EX-32.(I)" size="3697" description="CERTIFICATIONS" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/dex32i.htm" />
|
|
416
|
+
<edgar:xbrlFile sequence="8" file="ntrs-20090930.xml" type="EX-101.INS" size="1132367" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/ntrs-20090930.xml" />
|
|
417
|
+
<edgar:xbrlFile sequence="9" file="ntrs-20090930.xsd" type="EX-101.SCH" size="24662" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/ntrs-20090930.xsd" />
|
|
418
|
+
<edgar:xbrlFile sequence="10" file="ntrs-20090930_cal.xml" type="EX-101.CAL" size="61152" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/ntrs-20090930_cal.xml" />
|
|
419
|
+
<edgar:xbrlFile sequence="11" file="ntrs-20090930_def.xml" type="EX-101.DEF" size="24093" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/ntrs-20090930_def.xml" />
|
|
420
|
+
<edgar:xbrlFile sequence="12" file="ntrs-20090930_lab.xml" type="EX-101.LAB" size="155343" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/ntrs-20090930_lab.xml" />
|
|
421
|
+
<edgar:xbrlFile sequence="13" file="ntrs-20090930_pre.xml" type="EX-101.PRE" size="122914" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/73124/000119312509218667/ntrs-20090930_pre.xml" />
|
|
422
|
+
</edgar:xbrlFiles>
|
|
423
|
+
</edgar:xbrlFiling>
|
|
424
|
+
</item>
|
|
425
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/0000217346-09-000156-index.htm">
|
|
426
|
+
<title>TEXTRON INC (0000217346) (Filer)</title>
|
|
427
|
+
<link>http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/0000217346-09-000156-index.htm</link>
|
|
428
|
+
<description>10-Q</description>
|
|
429
|
+
<pubDate>Fri, 30 Oct 2009 14:16:27 EDT</pubDate>
|
|
430
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
431
|
+
<edgar:companyName>TEXTRON INC</edgar:companyName>
|
|
432
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
433
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
434
|
+
<edgar:cikNumber>0000217346</edgar:cikNumber>
|
|
435
|
+
<edgar:accessionNumber>0000217346-09-000156</edgar:accessionNumber>
|
|
436
|
+
<edgar:fileNumber>001-05480</edgar:fileNumber>
|
|
437
|
+
<edgar:xbrlFiles>
|
|
438
|
+
<edgar:xbrlFile sequence="1" file="tenq.htm" type="10-Q" size="2028715" description="10Q" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/tenq.htm" />
|
|
439
|
+
<edgar:xbrlFile sequence="2" file="exhibittwelveone.htm" type="EX-12.1" size="15950" description="EXHIBIT 12.1" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/exhibittwelveone.htm" />
|
|
440
|
+
<edgar:xbrlFile sequence="3" file="exhibittwelvetwo.htm" type="EX-12.2" size="14792" description="EXHIBIT 12.2" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/exhibittwelvetwo.htm" />
|
|
441
|
+
<edgar:xbrlFile sequence="4" file="exhibitthirtyoneone.htm" type="EX-31.1" size="19795" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/exhibitthirtyoneone.htm" />
|
|
442
|
+
<edgar:xbrlFile sequence="5" file="exhibitthirtyonetwo.htm" type="EX-31.2" size="20066" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/exhibitthirtyonetwo.htm" />
|
|
443
|
+
<edgar:xbrlFile sequence="6" file="exhibitthirtytwoone.htm" type="EX-32.1" size="7546" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/exhibitthirtytwoone.htm" />
|
|
444
|
+
<edgar:xbrlFile sequence="7" file="exhibitthirtytwotwo.htm" type="EX-32.2" size="7509" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/exhibitthirtytwotwo.htm" />
|
|
445
|
+
<edgar:xbrlFile sequence="8" file="indemnityagmtdirector.htm" type="EX-10.1" size="60336" description="INDEMNITY AGREEMENT - DIRECTOR" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/indemnityagmtdirector.htm" />
|
|
446
|
+
<edgar:xbrlFile sequence="9" file="frankconnoragreement.htm" type="EX-10.2" size="34581" description="FRANK CONNOR AGREEMENT" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/frankconnoragreement.htm" />
|
|
447
|
+
<edgar:xbrlFile sequence="10" file="lbcretirementltr.htm" type="EX-10.3" size="31746" description="LEWIS B. CAMPBELL RETIREMENT LETTER" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/lbcretirementltr.htm" />
|
|
448
|
+
<edgar:xbrlFile sequence="11" file="lbcretirementltrrevised.htm" type="EX-10.3" size="14520" description="LEWIS B. CAMPBELL CLARIFICATION RETIREMENT LETTER" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/lbcretirementltrrevised.htm" />
|
|
449
|
+
<edgar:xbrlFile sequence="12" file="txt-20091003.xml" type="EX-101.INS" size="506786" description="EXHIBIT 101 INS" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/txt-20091003.xml" />
|
|
450
|
+
<edgar:xbrlFile sequence="13" file="txt-20091003.xsd" type="EX-101.SCH" size="15504" description="EXHIBIT 101 SCH" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/txt-20091003.xsd" />
|
|
451
|
+
<edgar:xbrlFile sequence="14" file="txt-20091003_cal.xml" type="EX-101.CAL" size="56694" description="EXHIBIT 101 CAL" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/txt-20091003_cal.xml" />
|
|
452
|
+
<edgar:xbrlFile sequence="15" file="txt-20091003_lab.xml" type="EX-101.LAB" size="169137" description="EXHIBIT 101 LAB" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/txt-20091003_lab.xml" />
|
|
453
|
+
<edgar:xbrlFile sequence="16" file="txt-20091003_pre.xml" type="EX-101.PRE" size="106065" description="EXHIBIT 101 PRE" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/txt-20091003_pre.xml" />
|
|
454
|
+
<edgar:xbrlFile sequence="17" file="txt-20091003_def.xml" type="EX-101.DEF" size="24960" description="EXHIBIT 101 DEF" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/txt-20091003_def.xml" />
|
|
455
|
+
<edgar:xbrlFile sequence="18" file="frankconnoragreement0.jpg" type="GRAPHIC" size="2196" description="" url="http://www.sec.gov/Archives/edgar/data/217346/000021734609000156/frankconnoragreement0.jpg" />
|
|
456
|
+
</edgar:xbrlFiles>
|
|
457
|
+
</edgar:xbrlFiling>
|
|
458
|
+
</item>
|
|
459
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/0001104659-09-061460-index.htm">
|
|
460
|
+
<title>CUMMINS INC (0000026172) (Filer)</title>
|
|
461
|
+
<link>http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/0001104659-09-061460-index.htm</link>
|
|
462
|
+
<description>10-Q</description>
|
|
463
|
+
<pubDate>Fri, 30 Oct 2009 14:09:17 EDT</pubDate>
|
|
464
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
465
|
+
<edgar:companyName>CUMMINS INC</edgar:companyName>
|
|
466
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
467
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
468
|
+
<edgar:cikNumber>0000026172</edgar:cikNumber>
|
|
469
|
+
<edgar:accessionNumber>0001104659-09-061460</edgar:accessionNumber>
|
|
470
|
+
<edgar:fileNumber>001-04949</edgar:fileNumber>
|
|
471
|
+
<edgar:xbrlFiles>
|
|
472
|
+
<edgar:xbrlFile sequence="1" file="a09-27584_110q.htm" type="10-Q" size="2343992" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/a09-27584_110q.htm" />
|
|
473
|
+
<edgar:xbrlFile sequence="2" file="a09-27584_1ex12.htm" type="EX-12" size="39029" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/a09-27584_1ex12.htm" />
|
|
474
|
+
<edgar:xbrlFile sequence="3" file="a09-27584_1ex31da.htm" type="EX-31.(A)" size="10800" description="EX-31.(A)" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/a09-27584_1ex31da.htm" />
|
|
475
|
+
<edgar:xbrlFile sequence="4" file="a09-27584_1ex31db.htm" type="EX-31.(B)" size="10827" description="EX-31.(B)" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/a09-27584_1ex31db.htm" />
|
|
476
|
+
<edgar:xbrlFile sequence="5" file="a09-27584_1ex32.htm" type="EX-32" size="7166" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/a09-27584_1ex32.htm" />
|
|
477
|
+
<edgar:xbrlFile sequence="6" file="cmi-20090927.xml" type="EX-101.INS" size="1135962" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/cmi-20090927.xml" />
|
|
478
|
+
<edgar:xbrlFile sequence="7" file="cmi-20090927.xsd" type="EX-101.SCH" size="18499" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/cmi-20090927.xsd" />
|
|
479
|
+
<edgar:xbrlFile sequence="8" file="cmi-20090927_cal.xml" type="EX-101.CAL" size="51733" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/cmi-20090927_cal.xml" />
|
|
480
|
+
<edgar:xbrlFile sequence="9" file="cmi-20090927_def.xml" type="EX-101.DEF" size="17543" description="EX-101.DEF" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/cmi-20090927_def.xml" />
|
|
481
|
+
<edgar:xbrlFile sequence="10" file="cmi-20090927_lab.xml" type="EX-101.LAB" size="309636" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/cmi-20090927_lab.xml" />
|
|
482
|
+
<edgar:xbrlFile sequence="11" file="cmi-20090927_pre.xml" type="EX-101.PRE" size="129248" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/26172/000110465909061460/cmi-20090927_pre.xml" />
|
|
483
|
+
</edgar:xbrlFiles>
|
|
484
|
+
</edgar:xbrlFiling>
|
|
485
|
+
</item>
|
|
486
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/0001193125-09-218615-index.htm">
|
|
487
|
+
<title>HARLEY DAVIDSON INC (0000793952) (Filer)</title>
|
|
488
|
+
<link>http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/0001193125-09-218615-index.htm</link>
|
|
489
|
+
<description>10-Q</description>
|
|
490
|
+
<pubDate>Fri, 30 Oct 2009 13:45:14 EDT</pubDate>
|
|
491
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
492
|
+
<edgar:companyName>HARLEY DAVIDSON INC</edgar:companyName>
|
|
493
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
494
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
495
|
+
<edgar:cikNumber>0000793952</edgar:cikNumber>
|
|
496
|
+
<edgar:accessionNumber>0001193125-09-218615</edgar:accessionNumber>
|
|
497
|
+
<edgar:fileNumber>001-09183</edgar:fileNumber>
|
|
498
|
+
<edgar:xbrlFiles>
|
|
499
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="991310" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/d10q.htm" />
|
|
500
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="9788" description="CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/dex311.htm" />
|
|
501
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="9788" description="CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/dex312.htm" />
|
|
502
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="3933" description="SECTION 906 CERTIFICATION OF CEO & CFO" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/dex321.htm" />
|
|
503
|
+
<edgar:xbrlFile sequence="5" file="hog-20090927.xml" type="EX-101.INS" size="622099" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/hog-20090927.xml" />
|
|
504
|
+
<edgar:xbrlFile sequence="6" file="hog-20090927.xsd" type="EX-101.SCH" size="16041" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/hog-20090927.xsd" />
|
|
505
|
+
<edgar:xbrlFile sequence="7" file="hog-20090927_cal.xml" type="EX-101.CAL" size="31038" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/hog-20090927_cal.xml" />
|
|
506
|
+
<edgar:xbrlFile sequence="8" file="hog-20090927_lab.xml" type="EX-101.LAB" size="76559" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/hog-20090927_lab.xml" />
|
|
507
|
+
<edgar:xbrlFile sequence="9" file="hog-20090927_pre.xml" type="EX-101.PRE" size="67261" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/793952/000119312509218615/hog-20090927_pre.xml" />
|
|
508
|
+
</edgar:xbrlFiles>
|
|
509
|
+
</edgar:xbrlFiling>
|
|
510
|
+
</item>
|
|
511
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/0001193125-09-218579-index.htm">
|
|
512
|
+
<title>BMC SOFTWARE INC (0000835729) (Filer)</title>
|
|
513
|
+
<link>http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/0001193125-09-218579-index.htm</link>
|
|
514
|
+
<description>10-Q</description>
|
|
515
|
+
<pubDate>Fri, 30 Oct 2009 13:20:42 EDT</pubDate>
|
|
516
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
517
|
+
<edgar:companyName>BMC SOFTWARE INC</edgar:companyName>
|
|
518
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
519
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
520
|
+
<edgar:cikNumber>0000835729</edgar:cikNumber>
|
|
521
|
+
<edgar:accessionNumber>0001193125-09-218579</edgar:accessionNumber>
|
|
522
|
+
<edgar:fileNumber>001-16393</edgar:fileNumber>
|
|
523
|
+
<edgar:xbrlFiles>
|
|
524
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="696653" description="FORM 10-Q FOR QUARTERLY PERIOD ENDED SEPTEMBER 30, 2009" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/d10q.htm" />
|
|
525
|
+
<edgar:xbrlFile sequence="2" file="dex1010.htm" type="EX-10.10" size="47229" description="AMENDED AND RESTATED SHORT-TERM INCENTIVE PERFORMACE AWARD PROGRAM" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex1010.htm" />
|
|
526
|
+
<edgar:xbrlFile sequence="3" file="dex1011.htm" type="EX-10.11" size="53661" description="AMENDED AND RESTATED LONG-TERM INCENTIVE PERFORMANCE AWARD PROGRAM" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex1011.htm" />
|
|
527
|
+
<edgar:xbrlFile sequence="4" file="dex1017.htm" type="EX-10.17" size="115174" description="EXECUTIVE EMPLOYMENT AGREEMENT - HOLLIE S. CASTRO" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex1017.htm" />
|
|
528
|
+
<edgar:xbrlFile sequence="5" file="dex311.htm" type="EX-31.1" size="10036" description="SECTION 302 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex311.htm" />
|
|
529
|
+
<edgar:xbrlFile sequence="6" file="dex312.htm" type="EX-31.2" size="10038" description="SECTION 302 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex312.htm" />
|
|
530
|
+
<edgar:xbrlFile sequence="7" file="dex321.htm" type="EX-32.1" size="2662" description="SECTION 906 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex321.htm" />
|
|
531
|
+
<edgar:xbrlFile sequence="8" file="dex322.htm" type="EX-32.2" size="2659" description="SECTION 906 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/dex322.htm" />
|
|
532
|
+
<edgar:xbrlFile sequence="9" file="bmc-20090930.xml" type="EX-101.INS" size="408914" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/bmc-20090930.xml" />
|
|
533
|
+
<edgar:xbrlFile sequence="10" file="bmc-20090930.xsd" type="EX-101.SCH" size="12223" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/bmc-20090930.xsd" />
|
|
534
|
+
<edgar:xbrlFile sequence="11" file="bmc-20090930_cal.xml" type="EX-101.CAL" size="40308" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/bmc-20090930_cal.xml" />
|
|
535
|
+
<edgar:xbrlFile sequence="12" file="bmc-20090930_lab.xml" type="EX-101.LAB" size="97715" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/bmc-20090930_lab.xml" />
|
|
536
|
+
<edgar:xbrlFile sequence="13" file="bmc-20090930_pre.xml" type="EX-101.PRE" size="78522" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/835729/000119312509218579/bmc-20090930_pre.xml" />
|
|
537
|
+
</edgar:xbrlFiles>
|
|
538
|
+
</edgar:xbrlFiling>
|
|
539
|
+
</item>
|
|
540
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/0000950123-09-055409-index.htm">
|
|
541
|
+
<title>LILLY ELI & CO (0000059478) (Filer)</title>
|
|
542
|
+
<link>http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/0000950123-09-055409-index.htm</link>
|
|
543
|
+
<description>10-Q</description>
|
|
544
|
+
<pubDate>Fri, 30 Oct 2009 13:15:47 EDT</pubDate>
|
|
545
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
546
|
+
<edgar:companyName>LILLY ELI & CO</edgar:companyName>
|
|
547
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
548
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
549
|
+
<edgar:cikNumber>0000059478</edgar:cikNumber>
|
|
550
|
+
<edgar:accessionNumber>0000950123-09-055409</edgar:accessionNumber>
|
|
551
|
+
<edgar:fileNumber>001-06351</edgar:fileNumber>
|
|
552
|
+
<edgar:xbrlFiles>
|
|
553
|
+
<edgar:xbrlFile sequence="1" file="c54269e10vq.htm" type="10-Q" size="396715" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269e10vq.htm" />
|
|
554
|
+
<edgar:xbrlFile sequence="2" file="c54269exv10.htm" type="EX-10" size="80328" description="EX-10" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269exv10.htm" />
|
|
555
|
+
<edgar:xbrlFile sequence="3" file="c54269exv11.htm" type="EX-11" size="10794" description="EX-11" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269exv11.htm" />
|
|
556
|
+
<edgar:xbrlFile sequence="4" file="c54269exv12.htm" type="EX-12" size="10044" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269exv12.htm" />
|
|
557
|
+
<edgar:xbrlFile sequence="5" file="c54269exv31w1.htm" type="EX-31.1" size="8613" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269exv31w1.htm" />
|
|
558
|
+
<edgar:xbrlFile sequence="6" file="c54269exv31w2.htm" type="EX-31.2" size="8579" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269exv31w2.htm" />
|
|
559
|
+
<edgar:xbrlFile sequence="7" file="c54269exv32.htm" type="EX-32" size="3658" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/c54269exv32.htm" />
|
|
560
|
+
<edgar:xbrlFile sequence="8" file="lly-20090930.xml" type="EX-101.INS" size="562886" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/lly-20090930.xml" />
|
|
561
|
+
<edgar:xbrlFile sequence="9" file="lly-20090930.xsd" type="EX-101.SCH" size="16131" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/lly-20090930.xsd" />
|
|
562
|
+
<edgar:xbrlFile sequence="10" file="lly-20090930_cal.xml" type="EX-101.CAL" size="41567" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/lly-20090930_cal.xml" />
|
|
563
|
+
<edgar:xbrlFile sequence="11" file="lly-20090930_lab.xml" type="EX-101.LAB" size="149712" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/lly-20090930_lab.xml" />
|
|
564
|
+
<edgar:xbrlFile sequence="12" file="lly-20090930_pre.xml" type="EX-101.PRE" size="101899" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/59478/000095012309055409/lly-20090930_pre.xml" />
|
|
565
|
+
</edgar:xbrlFiles>
|
|
566
|
+
</edgar:xbrlFiling>
|
|
567
|
+
</item>
|
|
568
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/0000049826-09-000091-index.htm">
|
|
569
|
+
<title>ILLINOIS TOOL WORKS INC (0000049826) (Filer)</title>
|
|
570
|
+
<link>http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/0000049826-09-000091-index.htm</link>
|
|
571
|
+
<description>10-Q</description>
|
|
572
|
+
<pubDate>Fri, 30 Oct 2009 13:08:42 EDT</pubDate>
|
|
573
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
574
|
+
<edgar:companyName>ILLINOIS TOOL WORKS INC</edgar:companyName>
|
|
575
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
576
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
577
|
+
<edgar:cikNumber>0000049826</edgar:cikNumber>
|
|
578
|
+
<edgar:accessionNumber>0000049826-09-000091</edgar:accessionNumber>
|
|
579
|
+
<edgar:fileNumber>001-04797</edgar:fileNumber>
|
|
580
|
+
<edgar:xbrlFiles>
|
|
581
|
+
<edgar:xbrlFile sequence="1" file="itw10q3q09.htm" type="10-Q" size="1586340" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw10q3q09.htm" />
|
|
582
|
+
<edgar:xbrlFile sequence="2" file="exhibit18.htm" type="EX-18" size="4787" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/exhibit18.htm" />
|
|
583
|
+
<edgar:xbrlFile sequence="3" file="exhibit31.htm" type="EX-31" size="35657" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/exhibit31.htm" />
|
|
584
|
+
<edgar:xbrlFile sequence="4" file="exhibit32.htm" type="EX-32" size="7571" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/exhibit32.htm" />
|
|
585
|
+
<edgar:xbrlFile sequence="5" file="itw10q3q09.pdf" type="10-Q" size="155123" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw10q3q09.pdf" />
|
|
586
|
+
<edgar:xbrlFile sequence="6" file="exhibit18.pdf" type="EX-18" size="8102" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/exhibit18.pdf" />
|
|
587
|
+
<edgar:xbrlFile sequence="7" file="exhibit31.pdf" type="EX-31" size="17197" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/exhibit31.pdf" />
|
|
588
|
+
<edgar:xbrlFile sequence="8" file="exhibit32.pdf" type="EX-32" size="7502" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/exhibit32.pdf" />
|
|
589
|
+
<edgar:xbrlFile sequence="9" file="itw-20090930.xml" type="EX-101.INS" size="344948" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw-20090930.xml" />
|
|
590
|
+
<edgar:xbrlFile sequence="10" file="itw-20090930.xsd" type="EX-101.SCH" size="12628" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw-20090930.xsd" />
|
|
591
|
+
<edgar:xbrlFile sequence="11" file="itw-20090930_cal.xml" type="EX-101.CAL" size="36336" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw-20090930_cal.xml" />
|
|
592
|
+
<edgar:xbrlFile sequence="12" file="itw-20090930_def.xml" type="EX-101.DEF" size="861962" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw-20090930_def.xml" />
|
|
593
|
+
<edgar:xbrlFile sequence="13" file="itw-20090930_lab.xml" type="EX-101.LAB" size="136788" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw-20090930_lab.xml" />
|
|
594
|
+
<edgar:xbrlFile sequence="14" file="itw-20090930_pre.xml" type="EX-101.PRE" size="93599" description="" url="http://www.sec.gov/Archives/edgar/data/49826/000004982609000091/itw-20090930_pre.xml" />
|
|
595
|
+
</edgar:xbrlFiles>
|
|
596
|
+
</edgar:xbrlFiling>
|
|
597
|
+
</item>
|
|
598
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/0000018230-09-000466-index.htm">
|
|
599
|
+
<title>CATERPILLAR INC (0000018230) (Filer)</title>
|
|
600
|
+
<link>http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/0000018230-09-000466-index.htm</link>
|
|
601
|
+
<description>10-Q</description>
|
|
602
|
+
<pubDate>Fri, 30 Oct 2009 13:01:01 EDT</pubDate>
|
|
603
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
604
|
+
<edgar:companyName>CATERPILLAR INC</edgar:companyName>
|
|
605
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
606
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
607
|
+
<edgar:cikNumber>0000018230</edgar:cikNumber>
|
|
608
|
+
<edgar:accessionNumber>0000018230-09-000466</edgar:accessionNumber>
|
|
609
|
+
<edgar:fileNumber>001-00768</edgar:fileNumber>
|
|
610
|
+
<edgar:xbrlFiles>
|
|
611
|
+
<edgar:xbrlFile sequence="1" file="form10q_3q09.htm" type="10-Q" size="5435110" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/form10q_3q09.htm" />
|
|
612
|
+
<edgar:xbrlFile sequence="2" file="cat_logo.jpg" type="GRAPHIC" size="9648" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat_logo.jpg" />
|
|
613
|
+
<edgar:xbrlFile sequence="3" file="ex_31-1.htm" type="EX-31.1" size="16173" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/ex_31-1.htm" />
|
|
614
|
+
<edgar:xbrlFile sequence="4" file="ex_31-2.htm" type="EX-31.2" size="16283" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/ex_31-2.htm" />
|
|
615
|
+
<edgar:xbrlFile sequence="5" file="ex_32.htm" type="EX-32" size="12962" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/ex_32.htm" />
|
|
616
|
+
<edgar:xbrlFile sequence="6" file="image_1.jpg" type="GRAPHIC" size="58743" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/image_1.jpg" />
|
|
617
|
+
<edgar:xbrlFile sequence="7" file="image_2.jpg" type="GRAPHIC" size="75933" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/image_2.jpg" />
|
|
618
|
+
<edgar:xbrlFile sequence="8" file="image_3.jpg" type="GRAPHIC" size="70094" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/image_3.jpg" />
|
|
619
|
+
<edgar:xbrlFile sequence="9" file="image_4.jpg" type="GRAPHIC" size="102277" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/image_4.jpg" />
|
|
620
|
+
<edgar:xbrlFile sequence="10" file="cat-20090930_cal.xml" type="EX-101.CAL" size="54223" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat-20090930_cal.xml" />
|
|
621
|
+
<edgar:xbrlFile sequence="11" file="cat-20090930_def.xml" type="EX-101.DEF" size="31619" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat-20090930_def.xml" />
|
|
622
|
+
<edgar:xbrlFile sequence="12" file="cat-20090930_lab.xml" type="EX-101.LAB" size="322645" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat-20090930_lab.xml" />
|
|
623
|
+
<edgar:xbrlFile sequence="13" file="cat-20090930_pre.xml" type="EX-101.PRE" size="161614" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat-20090930_pre.xml" />
|
|
624
|
+
<edgar:xbrlFile sequence="14" file="cat-20090930.xml" type="EX-101.INS" size="2582822" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat-20090930.xml" />
|
|
625
|
+
<edgar:xbrlFile sequence="15" file="cat-20090930.xsd" type="EX-101.SCH" size="29628" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/cat-20090930.xsd" />
|
|
626
|
+
<edgar:xbrlFile sequence="16" file="form10q_3q09.pdf" type="10-Q" size="659855" description="" url="http://www.sec.gov/Archives/edgar/data/18230/000001823009000466/form10q_3q09.pdf" />
|
|
627
|
+
</edgar:xbrlFiles>
|
|
628
|
+
</edgar:xbrlFiling>
|
|
629
|
+
</item>
|
|
630
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/0000950123-09-055399-index.htm">
|
|
631
|
+
<title>Invesco Ltd. (0000914208) (Filer)</title>
|
|
632
|
+
<link>http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/0000950123-09-055399-index.htm</link>
|
|
633
|
+
<description>10-Q</description>
|
|
634
|
+
<pubDate>Fri, 30 Oct 2009 13:00:19 EDT</pubDate>
|
|
635
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
636
|
+
<edgar:companyName>Invesco Ltd.</edgar:companyName>
|
|
637
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
638
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
639
|
+
<edgar:cikNumber>0000914208</edgar:cikNumber>
|
|
640
|
+
<edgar:accessionNumber>0000950123-09-055399</edgar:accessionNumber>
|
|
641
|
+
<edgar:fileNumber>001-13908</edgar:fileNumber>
|
|
642
|
+
<edgar:xbrlFiles>
|
|
643
|
+
<edgar:xbrlFile sequence="1" file="g20661e10vq.htm" type="10-Q" size="1079796" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661e10vq.htm" />
|
|
644
|
+
<edgar:xbrlFile sequence="2" file="g20661exv10w1.htm" type="EX-10.1" size="672145" description="EX-10.1" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661exv10w1.htm" />
|
|
645
|
+
<edgar:xbrlFile sequence="3" file="g20661exv31w1.htm" type="EX-31.1" size="8424" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661exv31w1.htm" />
|
|
646
|
+
<edgar:xbrlFile sequence="4" file="g20661exv31w2.htm" type="EX-31.2" size="8427" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661exv31w2.htm" />
|
|
647
|
+
<edgar:xbrlFile sequence="5" file="g20661exv32w1.htm" type="EX-32.1" size="3310" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661exv32w1.htm" />
|
|
648
|
+
<edgar:xbrlFile sequence="6" file="g20661exv32w2.htm" type="EX-32.2" size="3304" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661exv32w2.htm" />
|
|
649
|
+
<edgar:xbrlFile sequence="7" file="ivz-20090930.xml" type="EX-101.INS" size="882454" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/ivz-20090930.xml" />
|
|
650
|
+
<edgar:xbrlFile sequence="8" file="ivz-20090930.xsd" type="EX-101.SCH" size="18492" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/ivz-20090930.xsd" />
|
|
651
|
+
<edgar:xbrlFile sequence="9" file="ivz-20090930_cal.xml" type="EX-101.CAL" size="59694" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/ivz-20090930_cal.xml" />
|
|
652
|
+
<edgar:xbrlFile sequence="10" file="ivz-20090930_lab.xml" type="EX-101.LAB" size="206962" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/ivz-20090930_lab.xml" />
|
|
653
|
+
<edgar:xbrlFile sequence="11" file="ivz-20090930_pre.xml" type="EX-101.PRE" size="110866" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/ivz-20090930_pre.xml" />
|
|
654
|
+
<edgar:xbrlFile sequence="12" file="ivz-20090930_def.xml" type="EX-101.DEF" size="15543" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/ivz-20090930_def.xml" />
|
|
655
|
+
<edgar:xbrlFile sequence="13" file="g20661g2066100.gif" type="GRAPHIC" size="7542" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/914208/000095012309055399/g20661g2066100.gif" />
|
|
656
|
+
</edgar:xbrlFiles>
|
|
657
|
+
</edgar:xbrlFiling>
|
|
658
|
+
</item>
|
|
659
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/0000004904-09-000174-index.htm">
|
|
660
|
+
<title>AMERICAN ELECTRIC POWER CO INC (0000004904) (Filer)</title>
|
|
661
|
+
<link>http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/0000004904-09-000174-index.htm</link>
|
|
662
|
+
<description>10-Q</description>
|
|
663
|
+
<pubDate>Fri, 30 Oct 2009 12:45:35 EDT</pubDate>
|
|
664
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
665
|
+
<edgar:companyName>AMERICAN ELECTRIC POWER CO INC</edgar:companyName>
|
|
666
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
667
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
668
|
+
<edgar:cikNumber>0000004904</edgar:cikNumber>
|
|
669
|
+
<edgar:accessionNumber>0000004904-09-000174</edgar:accessionNumber>
|
|
670
|
+
<edgar:fileNumber>001-03525</edgar:fileNumber>
|
|
671
|
+
<edgar:xbrlFiles>
|
|
672
|
+
<edgar:xbrlFile sequence="1" file="q309aep10q.htm" type="10-Q" size="10601058" description="AMERICAN ELECTRIC POWER 3Q2009 10-Q" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/q309aep10q.htm" />
|
|
673
|
+
<edgar:xbrlFile sequence="2" file="q309aep10qpdf.pdf" type="10-Q" size="1173751" description="AMERICAN ELECTRIC POWER 3Q2009 10-Q" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/q309aep10qpdf.pdf" />
|
|
674
|
+
<edgar:xbrlFile sequence="3" file="ex12aep3q.htm" type="EX-12" size="85816" description="COMPUTATION OF RATIOS" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/ex12aep3q.htm" />
|
|
675
|
+
<edgar:xbrlFile sequence="4" file="ex31aaep.htm" type="EX-31.A" size="14527" description="302 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/ex31aaep.htm" />
|
|
676
|
+
<edgar:xbrlFile sequence="5" file="ex31baep.htm" type="EX-31.B" size="13911" description="302 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/ex31baep.htm" />
|
|
677
|
+
<edgar:xbrlFile sequence="6" file="ex32aaep.htm" type="EX-32.A" size="4992" description="1350 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/ex32aaep.htm" />
|
|
678
|
+
<edgar:xbrlFile sequence="7" file="ex32baep.htm" type="EX-32.B" size="4965" description="1350 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/ex32baep.htm" />
|
|
679
|
+
<edgar:xbrlFile sequence="8" file="aep-20090930.xml" type="EX-101.INS" size="1985418" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/aep-20090930.xml" />
|
|
680
|
+
<edgar:xbrlFile sequence="9" file="aep-20090930.xsd" type="EX-101.SCH" size="27867" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/aep-20090930.xsd" />
|
|
681
|
+
<edgar:xbrlFile sequence="10" file="aep-20090930_cal.xml" type="EX-101.CAL" size="87948" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/aep-20090930_cal.xml" />
|
|
682
|
+
<edgar:xbrlFile sequence="11" file="aep-20090930_def.xml" type="EX-101.DEF" size="21039" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/aep-20090930_def.xml" />
|
|
683
|
+
<edgar:xbrlFile sequence="12" file="aep-20090930_lab.xml" type="EX-101.LAB" size="356166" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/aep-20090930_lab.xml" />
|
|
684
|
+
<edgar:xbrlFile sequence="13" file="aep-20090930_pre.xml" type="EX-101.PRE" size="180040" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/4904/000000490409000174/aep-20090930_pre.xml" />
|
|
685
|
+
</edgar:xbrlFiles>
|
|
686
|
+
</edgar:xbrlFiling>
|
|
687
|
+
</item>
|
|
688
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/0000818479-09-000152-index.htm">
|
|
689
|
+
<title>DENTSPLY INTERNATIONAL INC /DE/ (0000818479) (Filer)</title>
|
|
690
|
+
<link>http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/0000818479-09-000152-index.htm</link>
|
|
691
|
+
<description>10-Q/A</description>
|
|
692
|
+
<pubDate>Fri, 30 Oct 2009 12:15:48 EDT</pubDate>
|
|
693
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
694
|
+
<edgar:companyName>DENTSPLY INTERNATIONAL INC /DE/</edgar:companyName>
|
|
695
|
+
<edgar:formType>10-Q/A</edgar:formType>
|
|
696
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
697
|
+
<edgar:cikNumber>0000818479</edgar:cikNumber>
|
|
698
|
+
<edgar:accessionNumber>0000818479-09-000152</edgar:accessionNumber>
|
|
699
|
+
<edgar:fileNumber>000-16211</edgar:fileNumber>
|
|
700
|
+
<edgar:xbrlFiles>
|
|
701
|
+
<edgar:xbrlFile sequence="1" file="q310qa09.htm" type="10-Q/A" size="46943" description="10Q/A" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/q310qa09.htm" />
|
|
702
|
+
<edgar:xbrlFile sequence="2" file="xray-20090930.xml" type="EX-101.INS" size="1432467" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/xray-20090930.xml" />
|
|
703
|
+
<edgar:xbrlFile sequence="3" file="xray-20090930.xsd" type="EX-101.SCH" size="13576" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/xray-20090930.xsd" />
|
|
704
|
+
<edgar:xbrlFile sequence="4" file="xray-20090930_cal.xml" type="EX-101.CAL" size="46156" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/xray-20090930_cal.xml" />
|
|
705
|
+
<edgar:xbrlFile sequence="5" file="xray-20090930_def.xml" type="EX-101.DEF" size="20376" description="EX-101.DEF" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/xray-20090930_def.xml" />
|
|
706
|
+
<edgar:xbrlFile sequence="6" file="xray-20090930_lab.xml" type="EX-101.LAB" size="192776" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/xray-20090930_lab.xml" />
|
|
707
|
+
<edgar:xbrlFile sequence="7" file="xray-20090930_pre.xml" type="EX-101.PRE" size="118429" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/818479/000081847909000152/xray-20090930_pre.xml" />
|
|
708
|
+
</edgar:xbrlFiles>
|
|
709
|
+
</edgar:xbrlFiling>
|
|
710
|
+
</item>
|
|
711
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/0001193125-09-218498-index.htm">
|
|
712
|
+
<title>CLIFFS NATURAL RESOURCES INC. (0000764065) (Filer)</title>
|
|
713
|
+
<link>http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/0001193125-09-218498-index.htm</link>
|
|
714
|
+
<description>10-Q</description>
|
|
715
|
+
<pubDate>Fri, 30 Oct 2009 12:08:47 EDT</pubDate>
|
|
716
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
717
|
+
<edgar:companyName>CLIFFS NATURAL RESOURCES INC.</edgar:companyName>
|
|
718
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
719
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
720
|
+
<edgar:cikNumber>0000764065</edgar:cikNumber>
|
|
721
|
+
<edgar:accessionNumber>0001193125-09-218498</edgar:accessionNumber>
|
|
722
|
+
<edgar:fileNumber>001-08944</edgar:fileNumber>
|
|
723
|
+
<edgar:xbrlFiles>
|
|
724
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1095147" description="QUARTERLY REPORT" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/d10q.htm" />
|
|
725
|
+
<edgar:xbrlFile sequence="2" file="dex3a.htm" type="EX-3.(A)" size="66145" description="AMENDMENT NO. 5 TO AMENDED ARTICLES OF INCORPORATION" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/dex3a.htm" />
|
|
726
|
+
<edgar:xbrlFile sequence="3" file="dex10a.htm" type="EX-10.(A)" size="10786" description="FIRST AMENDMENT TO CNRI 2005 VOLUNTARY NON-QUALIFIED DEFERRED COMPENSATION PLAN" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/dex10a.htm" />
|
|
727
|
+
<edgar:xbrlFile sequence="4" file="dex31a.htm" type="EX-31.(A)" size="11682" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/dex31a.htm" />
|
|
728
|
+
<edgar:xbrlFile sequence="5" file="dex31b.htm" type="EX-31.(B)" size="11650" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/dex31b.htm" />
|
|
729
|
+
<edgar:xbrlFile sequence="6" file="dex32a.htm" type="EX-32.(A)" size="4200" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/dex32a.htm" />
|
|
730
|
+
<edgar:xbrlFile sequence="7" file="dex32b.htm" type="EX-32.(B)" size="4192" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/dex32b.htm" />
|
|
731
|
+
<edgar:xbrlFile sequence="8" file="clf-20090930.xml" type="EX-101.INS" size="814706" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/clf-20090930.xml" />
|
|
732
|
+
<edgar:xbrlFile sequence="9" file="clf-20090930.xsd" type="EX-101.SCH" size="18176" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/clf-20090930.xsd" />
|
|
733
|
+
<edgar:xbrlFile sequence="10" file="clf-20090930_cal.xml" type="EX-101.CAL" size="43597" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/clf-20090930_cal.xml" />
|
|
734
|
+
<edgar:xbrlFile sequence="11" file="clf-20090930_lab.xml" type="EX-101.LAB" size="108252" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/clf-20090930_lab.xml" />
|
|
735
|
+
<edgar:xbrlFile sequence="12" file="clf-20090930_pre.xml" type="EX-101.PRE" size="91467" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/clf-20090930_pre.xml" />
|
|
736
|
+
<edgar:xbrlFile sequence="13" file="g50886ex3a_p001.jpg" type="GRAPHIC" size="2977" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/g50886ex3a_p001.jpg" />
|
|
737
|
+
<edgar:xbrlFile sequence="14" file="g50886ex3a_p2bnew.jpg" type="GRAPHIC" size="3719" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/g50886ex3a_p2bnew.jpg" />
|
|
738
|
+
<edgar:xbrlFile sequence="15" file="g50886ex3a_page1.jpg" type="GRAPHIC" size="4336" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/g50886ex3a_page1.jpg" />
|
|
739
|
+
<edgar:xbrlFile sequence="16" file="g50886exap2a.jpg" type="GRAPHIC" size="380" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/g50886exap2a.jpg" />
|
|
740
|
+
<edgar:xbrlFile sequence="17" file="g50886exap2b.jpg" type="GRAPHIC" size="368" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/g50886exap2b.jpg" />
|
|
741
|
+
<edgar:xbrlFile sequence="18" file="g50886fs_pg001.jpg" type="GRAPHIC" size="10372" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/764065/000119312509218498/g50886fs_pg001.jpg" />
|
|
742
|
+
</edgar:xbrlFiles>
|
|
743
|
+
</edgar:xbrlFiling>
|
|
744
|
+
</item>
|
|
745
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/0000950123-09-055354-index.htm">
|
|
746
|
+
<title>ULTRA PETROLEUM CORP (0001022646) (Filer)</title>
|
|
747
|
+
<link>http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/0000950123-09-055354-index.htm</link>
|
|
748
|
+
<description>10-Q</description>
|
|
749
|
+
<pubDate>Fri, 30 Oct 2009 11:55:55 EDT</pubDate>
|
|
750
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
751
|
+
<edgar:companyName>ULTRA PETROLEUM CORP</edgar:companyName>
|
|
752
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
753
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
754
|
+
<edgar:cikNumber>0001022646</edgar:cikNumber>
|
|
755
|
+
<edgar:accessionNumber>0000950123-09-055354</edgar:accessionNumber>
|
|
756
|
+
<edgar:fileNumber>001-33614</edgar:fileNumber>
|
|
757
|
+
<edgar:xbrlFiles>
|
|
758
|
+
<edgar:xbrlFile sequence="1" file="h67780e10vq.htm" type="10-Q" size="419760" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/h67780e10vq.htm" />
|
|
759
|
+
<edgar:xbrlFile sequence="2" file="h67780exv31w1.htm" type="EX-31.1" size="9118" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/h67780exv31w1.htm" />
|
|
760
|
+
<edgar:xbrlFile sequence="3" file="h67780exv31w2.htm" type="EX-31.2" size="9091" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/h67780exv31w2.htm" />
|
|
761
|
+
<edgar:xbrlFile sequence="4" file="h67780exv32w1.htm" type="EX-32.1" size="5253" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/h67780exv32w1.htm" />
|
|
762
|
+
<edgar:xbrlFile sequence="5" file="h67780exv32w2.htm" type="EX-32.2" size="5212" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/h67780exv32w2.htm" />
|
|
763
|
+
<edgar:xbrlFile sequence="6" file="upl-20090930.xml" type="EX-101.INS" size="173399" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/upl-20090930.xml" />
|
|
764
|
+
<edgar:xbrlFile sequence="7" file="upl-20090930.xsd" type="EX-101.SCH" size="15605" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/upl-20090930.xsd" />
|
|
765
|
+
<edgar:xbrlFile sequence="8" file="upl-20090930_cal.xml" type="EX-101.CAL" size="39882" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/upl-20090930_cal.xml" />
|
|
766
|
+
<edgar:xbrlFile sequence="9" file="upl-20090930_lab.xml" type="EX-101.LAB" size="169298" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/upl-20090930_lab.xml" />
|
|
767
|
+
<edgar:xbrlFile sequence="10" file="upl-20090930_pre.xml" type="EX-101.PRE" size="71611" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1022646/000095012309055354/upl-20090930_pre.xml" />
|
|
768
|
+
</edgar:xbrlFiles>
|
|
769
|
+
</edgar:xbrlFiling>
|
|
770
|
+
</item>
|
|
771
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/0000922224-09-000114-index.htm">
|
|
772
|
+
<title>PPL CORP (0000922224) (Filer)</title>
|
|
773
|
+
<link>http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/0000922224-09-000114-index.htm</link>
|
|
774
|
+
<description>10-Q</description>
|
|
775
|
+
<pubDate>Fri, 30 Oct 2009 11:48:28 EDT</pubDate>
|
|
776
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
777
|
+
<edgar:companyName>PPL CORP</edgar:companyName>
|
|
778
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
779
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
780
|
+
<edgar:cikNumber>0000922224</edgar:cikNumber>
|
|
781
|
+
<edgar:accessionNumber>0000922224-09-000114</edgar:accessionNumber>
|
|
782
|
+
<edgar:fileNumber>001-11459</edgar:fileNumber>
|
|
783
|
+
<edgar:xbrlFiles>
|
|
784
|
+
<edgar:xbrlFile sequence="1" file="form10q.htm" type="10-Q" size="7080703" description="FORM 10Q" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/form10q.htm" />
|
|
785
|
+
<edgar:xbrlFile sequence="2" file="exhibit4a.htm" type="EX-4.A" size="12534" description="EXHIBIT 4(A)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit4a.htm" />
|
|
786
|
+
<edgar:xbrlFile sequence="3" file="exhibit10a.htm" type="EX-10.A" size="28021" description="EXHIBIT 10(A)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit10a.htm" />
|
|
787
|
+
<edgar:xbrlFile sequence="4" file="exhibit10b.htm" type="EX-10.B" size="20347" description="EXHIBIT 10(B)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit10b.htm" />
|
|
788
|
+
<edgar:xbrlFile sequence="5" file="exhibit12a.htm" type="EX-12.A" size="138648" description="EXHIBIT 12(A)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit12a.htm" />
|
|
789
|
+
<edgar:xbrlFile sequence="6" file="exhibit12b.htm" type="EX-12.B" size="122826" description="EXHIBIT 12(B)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit12b.htm" />
|
|
790
|
+
<edgar:xbrlFile sequence="7" file="exhibit12c.htm" type="EX-12.C" size="122298" description="EXHIBIT 12(C)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit12c.htm" />
|
|
791
|
+
<edgar:xbrlFile sequence="8" file="exhibit31a.htm" type="EX-31.A" size="19071" description="EXHIBIT31(A)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit31a.htm" />
|
|
792
|
+
<edgar:xbrlFile sequence="9" file="exhibit31b.htm" type="EX-31.B" size="19067" description="EXHIBIT31(B)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit31b.htm" />
|
|
793
|
+
<edgar:xbrlFile sequence="10" file="exhibit31c.htm" type="EX-31.C" size="19191" description="EXHIBIT31(C)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit31c.htm" />
|
|
794
|
+
<edgar:xbrlFile sequence="11" file="exhibit31d.htm" type="EX-31.D" size="19197" description="EXHIBIT31(D)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit31d.htm" />
|
|
795
|
+
<edgar:xbrlFile sequence="12" file="exhibit31e.htm" type="EX-31.E" size="19215" description="EXHIBIT31(E)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit31e.htm" />
|
|
796
|
+
<edgar:xbrlFile sequence="13" file="exhibit31f.htm" type="EX-31.F" size="19426" description="EXHIBIT31(F)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit31f.htm" />
|
|
797
|
+
<edgar:xbrlFile sequence="14" file="exhibit32a.htm" type="EX-32.A" size="7098" description="EXHIBIT32(A)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit32a.htm" />
|
|
798
|
+
<edgar:xbrlFile sequence="15" file="exhibit32b.htm" type="EX-32.B" size="7097" description="EXHIBIT32(B)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit32b.htm" />
|
|
799
|
+
<edgar:xbrlFile sequence="16" file="exhibit32c.htm" type="EX-32.C" size="7075" description="EXHIBIT32(C)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit32c.htm" />
|
|
800
|
+
<edgar:xbrlFile sequence="17" file="exhibit32d.htm" type="EX-32.D" size="7151" description="EXHIBIT32(D)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit32d.htm" />
|
|
801
|
+
<edgar:xbrlFile sequence="18" file="exhibit32e.htm" type="EX-32.E" size="7182" description="EXHIBIT32(E)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit32e.htm" />
|
|
802
|
+
<edgar:xbrlFile sequence="19" file="exhibit32f.htm" type="EX-32.F" size="7086" description="EXHIBIT32(F)" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/exhibit32f.htm" />
|
|
803
|
+
<edgar:xbrlFile sequence="20" file="ppl-20090930.xml" type="EX-101.INS" size="3635262" description="XBRL INSTANCE DOCUMENT FOR PPL CORPORATION" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/ppl-20090930.xml" />
|
|
804
|
+
<edgar:xbrlFile sequence="21" file="ppl-20090930.xsd" type="EX-101.SCH" size="21955" description="XBRLTAXONOMY EXTENSION SCHEMA FOR PPL CORPORATION" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/ppl-20090930.xsd" />
|
|
805
|
+
<edgar:xbrlFile sequence="22" file="ppl-20090930_cal.xml" type="EX-101.CAL" size="97702" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE FOR PPL CORPORATION" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/ppl-20090930_cal.xml" />
|
|
806
|
+
<edgar:xbrlFile sequence="23" file="ppl-20090930_def.xml" type="EX-101.DEF" size="13211" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE FOR PPL CORPORATION" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/ppl-20090930_def.xml" />
|
|
807
|
+
<edgar:xbrlFile sequence="24" file="ppl-20090930_lab.xml" type="EX-101.LAB" size="368537" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE FOR PPL CORPORATION" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/ppl-20090930_lab.xml" />
|
|
808
|
+
<edgar:xbrlFile sequence="25" file="ppl-20090930_pre.xml" type="EX-101.PRE" size="202486" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE FOR PPL CORPORATION" url="http://www.sec.gov/Archives/edgar/data/922224/000092222409000114/ppl-20090930_pre.xml" />
|
|
809
|
+
</edgar:xbrlFiles>
|
|
810
|
+
</edgar:xbrlFiling>
|
|
811
|
+
</item>
|
|
812
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/0000702165-09-000170-index.htm">
|
|
813
|
+
<title>NORFOLK SOUTHERN CORP (0000702165) (Filer)</title>
|
|
814
|
+
<link>http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/0000702165-09-000170-index.htm</link>
|
|
815
|
+
<description>10-Q</description>
|
|
816
|
+
<pubDate>Fri, 30 Oct 2009 11:37:44 EDT</pubDate>
|
|
817
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
818
|
+
<edgar:companyName>NORFOLK SOUTHERN CORP</edgar:companyName>
|
|
819
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
820
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
821
|
+
<edgar:cikNumber>0000702165</edgar:cikNumber>
|
|
822
|
+
<edgar:accessionNumber>0000702165-09-000170</edgar:accessionNumber>
|
|
823
|
+
<edgar:fileNumber>001-08339</edgar:fileNumber>
|
|
824
|
+
<edgar:xbrlFiles>
|
|
825
|
+
<edgar:xbrlFile sequence="1" file="nsc3q09s.htm" type="10-Q" size="441484" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc3q09s.htm" />
|
|
826
|
+
<edgar:xbrlFile sequence="2" file="logo_new.jpg" type="GRAPHIC" size="17226" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/logo_new.jpg" />
|
|
827
|
+
<edgar:xbrlFile sequence="3" file="nsc3q09.pdf" type="10-Q" size="130128" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc3q09.pdf" />
|
|
828
|
+
<edgar:xbrlFile sequence="4" file="nscex10-1s.htm" type="EX-1" size="17083" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nscex10-1s.htm" />
|
|
829
|
+
<edgar:xbrlFile sequence="5" file="nscex15s.htm" type="EX-2" size="2082" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nscex15s.htm" />
|
|
830
|
+
<edgar:xbrlFile sequence="6" file="nscex31s.htm" type="EX-3" size="23215" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nscex31s.htm" />
|
|
831
|
+
<edgar:xbrlFile sequence="7" file="nscex32s.htm" type="EX-4" size="5751" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nscex32s.htm" />
|
|
832
|
+
<edgar:xbrlFile sequence="8" file="nsc-20090930.xml" type="EX-101.INS" size="299029" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc-20090930.xml" />
|
|
833
|
+
<edgar:xbrlFile sequence="9" file="nsc-20090930.xsd" type="EX-101.SCH" size="13197" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc-20090930.xsd" />
|
|
834
|
+
<edgar:xbrlFile sequence="10" file="nsc-20090930_cal.xml" type="EX-101.CAL" size="34724" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc-20090930_cal.xml" />
|
|
835
|
+
<edgar:xbrlFile sequence="11" file="nsc-20090930_lab.xml" type="EX-101.LAB" size="113014" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc-20090930_lab.xml" />
|
|
836
|
+
<edgar:xbrlFile sequence="12" file="nsc-20090930_pre.xml" type="EX-101.PRE" size="76485" description="" url="http://www.sec.gov/Archives/edgar/data/702165/000070216509000170/nsc-20090930_pre.xml" />
|
|
837
|
+
</edgar:xbrlFiles>
|
|
838
|
+
</edgar:xbrlFiling>
|
|
839
|
+
</item>
|
|
840
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/0000029915-09-000074-index.htm">
|
|
841
|
+
<title>DOW CHEMICAL CO /DE/ (0000029915) (Filer)</title>
|
|
842
|
+
<link>http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/0000029915-09-000074-index.htm</link>
|
|
843
|
+
<description>10-Q</description>
|
|
844
|
+
<pubDate>Fri, 30 Oct 2009 11:10:10 EDT</pubDate>
|
|
845
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
846
|
+
<edgar:companyName>DOW CHEMICAL CO /DE/</edgar:companyName>
|
|
847
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
848
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
849
|
+
<edgar:cikNumber>0000029915</edgar:cikNumber>
|
|
850
|
+
<edgar:accessionNumber>0000029915-09-000074</edgar:accessionNumber>
|
|
851
|
+
<edgar:fileNumber>001-03433</edgar:fileNumber>
|
|
852
|
+
<edgar:xbrlFiles>
|
|
853
|
+
<edgar:xbrlFile sequence="1" file="tdcc3q0910q.htm" type="10-Q" size="2881217" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q0910q.htm" />
|
|
854
|
+
<edgar:xbrlFile sequence="2" file="tdcc3q09ex2di.htm" type="EX-2.(D)(I)" size="72032" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex2di.htm" />
|
|
855
|
+
<edgar:xbrlFile sequence="3" file="tdcc3q09ex12.htm" type="EX-12.1" size="149818" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex12.htm" />
|
|
856
|
+
<edgar:xbrlFile sequence="4" file="tdcc3q09ex23.htm" type="EX-23" size="19977" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex23.htm" />
|
|
857
|
+
<edgar:xbrlFile sequence="5" file="tdcc3q09ex31a.htm" type="EX-31.A" size="17955" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex31a.htm" />
|
|
858
|
+
<edgar:xbrlFile sequence="6" file="tdcc3q09ex31b.htm" type="EX-31.B" size="17061" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex31b.htm" />
|
|
859
|
+
<edgar:xbrlFile sequence="7" file="tdcc3q09ex32a.htm" type="EX-32.A" size="7003" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex32a.htm" />
|
|
860
|
+
<edgar:xbrlFile sequence="8" file="tdcc3q09ex32b.htm" type="EX-32.B" size="6811" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/tdcc3q09ex32b.htm" />
|
|
861
|
+
<edgar:xbrlFile sequence="9" file="dow-20090930.xml" type="EX-101.INS" size="1807746" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/dow-20090930.xml" />
|
|
862
|
+
<edgar:xbrlFile sequence="10" file="dow-20090930.xsd" type="EX-101.SCH" size="22168" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/dow-20090930.xsd" />
|
|
863
|
+
<edgar:xbrlFile sequence="11" file="dow-20090930_pre.xml" type="EX-101.PRE" size="181002" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/dow-20090930_pre.xml" />
|
|
864
|
+
<edgar:xbrlFile sequence="12" file="dow-20090930_lab.xml" type="EX-101.LAB" size="298853" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/dow-20090930_lab.xml" />
|
|
865
|
+
<edgar:xbrlFile sequence="13" file="dow-20090930_cal.xml" type="EX-101.CAL" size="77557" description="" url="http://www.sec.gov/Archives/edgar/data/29915/000002991509000074/dow-20090930_cal.xml" />
|
|
866
|
+
</edgar:xbrlFiles>
|
|
867
|
+
</edgar:xbrlFiling>
|
|
868
|
+
</item>
|
|
869
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/0000097745-09-000050-index.htm">
|
|
870
|
+
<title>THERMO FISHER SCIENTIFIC INC. (0000097745) (Filer)</title>
|
|
871
|
+
<link>http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/0000097745-09-000050-index.htm</link>
|
|
872
|
+
<description>10-Q</description>
|
|
873
|
+
<pubDate>Fri, 30 Oct 2009 10:26:23 EDT</pubDate>
|
|
874
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
875
|
+
<edgar:companyName>THERMO FISHER SCIENTIFIC INC.</edgar:companyName>
|
|
876
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
877
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
878
|
+
<edgar:cikNumber>0000097745</edgar:cikNumber>
|
|
879
|
+
<edgar:accessionNumber>0000097745-09-000050</edgar:accessionNumber>
|
|
880
|
+
<edgar:fileNumber>001-08002</edgar:fileNumber>
|
|
881
|
+
<edgar:xbrlFiles>
|
|
882
|
+
<edgar:xbrlFile sequence="1" file="tmoq309.htm" type="10-Q" size="1618080" description="THERMO FISHER SCIENTIFIC INC. FORM 10-Q Q3 2009" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmoq309.htm" />
|
|
883
|
+
<edgar:xbrlFile sequence="2" file="tmoq309.pdf" type="10-Q" size="494444" description="PDF VERSION" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmoq309.pdf" />
|
|
884
|
+
<edgar:xbrlFile sequence="3" file="tmoq309ex31_1.htm" type="EX-31.1" size="16403" description="EXHIBIT 31.1 (CERTIFICATION)" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmoq309ex31_1.htm" />
|
|
885
|
+
<edgar:xbrlFile sequence="4" file="tmoq309ex31_2.htm" type="EX-31.2" size="16369" description="EXHIBIT 31.2 (CERTIFICATION)" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmoq309ex31_2.htm" />
|
|
886
|
+
<edgar:xbrlFile sequence="5" file="tmoq309ex32_1.htm" type="EX-32.1" size="6393" description="EXHIBIT 32.1 (CERTIFICATION)" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmoq309ex32_1.htm" />
|
|
887
|
+
<edgar:xbrlFile sequence="6" file="tmoq309ex32_2.htm" type="EX-32.2" size="6626" description="EXHIBIT 32.2 (CERTIFICATION)" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmoq309ex32_2.htm" />
|
|
888
|
+
<edgar:xbrlFile sequence="7" file="tmo-20090926.xml" type="EX-101.INS" size="426579" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmo-20090926.xml" />
|
|
889
|
+
<edgar:xbrlFile sequence="8" file="tmo-20090926.xsd" type="EX-101.SCH" size="13131" description="XBRL TAXONOMY EXTENSION SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmo-20090926.xsd" />
|
|
890
|
+
<edgar:xbrlFile sequence="9" file="tmo-20090926_cal.xml" type="EX-101.CAL" size="48989" description="XBRL TAXONOMY CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmo-20090926_cal.xml" />
|
|
891
|
+
<edgar:xbrlFile sequence="10" file="tmo-20090926_lab.xml" type="EX-101.LAB" size="174129" description="XBRL TAXONOMY LABEL LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmo-20090926_lab.xml" />
|
|
892
|
+
<edgar:xbrlFile sequence="11" file="tmo-20090926_pre.xml" type="EX-101.PRE" size="101711" description="XBRL TAXONOMY PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/97745/000009774509000050/tmo-20090926_pre.xml" />
|
|
893
|
+
</edgar:xbrlFiles>
|
|
894
|
+
</edgar:xbrlFiling>
|
|
895
|
+
</item>
|
|
896
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/0000950123-09-055233-index.htm">
|
|
897
|
+
<title>STARWOOD HOTEL & RESORTS WORLDWIDE INC (0000316206) (Filer)</title>
|
|
898
|
+
<link>http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/0000950123-09-055233-index.htm</link>
|
|
899
|
+
<description>10-Q/A</description>
|
|
900
|
+
<pubDate>Fri, 30 Oct 2009 08:03:48 EDT</pubDate>
|
|
901
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
902
|
+
<edgar:companyName>STARWOOD HOTEL & RESORTS WORLDWIDE INC</edgar:companyName>
|
|
903
|
+
<edgar:formType>10-Q/A</edgar:formType>
|
|
904
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
905
|
+
<edgar:cikNumber>0000316206</edgar:cikNumber>
|
|
906
|
+
<edgar:accessionNumber>0000950123-09-055233</edgar:accessionNumber>
|
|
907
|
+
<edgar:fileNumber>001-07959</edgar:fileNumber>
|
|
908
|
+
<edgar:xbrlFiles>
|
|
909
|
+
<edgar:xbrlFile sequence="1" file="p15700ae10vqza.htm" type="10-Q/A" size="20176" description="AMENDMENT TO FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/p15700ae10vqza.htm" />
|
|
910
|
+
<edgar:xbrlFile sequence="2" file="hot-20090930.xml" type="EX-101.INS" size="406678" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/hot-20090930.xml" />
|
|
911
|
+
<edgar:xbrlFile sequence="3" file="hot-20090930.xsd" type="EX-101.SCH" size="25246" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/hot-20090930.xsd" />
|
|
912
|
+
<edgar:xbrlFile sequence="4" file="hot-20090930_cal.xml" type="EX-101.CAL" size="56687" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/hot-20090930_cal.xml" />
|
|
913
|
+
<edgar:xbrlFile sequence="5" file="hot-20090930_lab.xml" type="EX-101.LAB" size="211631" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/hot-20090930_lab.xml" />
|
|
914
|
+
<edgar:xbrlFile sequence="6" file="hot-20090930_pre.xml" type="EX-101.PRE" size="137770" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/316206/000095012309055233/hot-20090930_pre.xml" />
|
|
915
|
+
</edgar:xbrlFiles>
|
|
916
|
+
</edgar:xbrlFiling>
|
|
917
|
+
</item>
|
|
918
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/0001274494-09-000032-index.htm">
|
|
919
|
+
<title>FIRST SOLAR, INC. (0001274494) (Filer)</title>
|
|
920
|
+
<link>http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/0001274494-09-000032-index.htm</link>
|
|
921
|
+
<description>10-Q</description>
|
|
922
|
+
<pubDate>Thu, 29 Oct 2009 19:28:34 EDT</pubDate>
|
|
923
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
924
|
+
<edgar:companyName>FIRST SOLAR, INC.</edgar:companyName>
|
|
925
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
926
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
927
|
+
<edgar:cikNumber>0001274494</edgar:cikNumber>
|
|
928
|
+
<edgar:accessionNumber>0001274494-09-000032</edgar:accessionNumber>
|
|
929
|
+
<edgar:fileNumber>001-33156</edgar:fileNumber>
|
|
930
|
+
<edgar:xbrlFiles>
|
|
931
|
+
<edgar:xbrlFile sequence="1" file="form10-q.htm" type="10-Q" size="1797583" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/form10-q.htm" />
|
|
932
|
+
<edgar:xbrlFile sequence="2" file="cert31-01.htm" type="EX-31.01" size="16270" description="302 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/cert31-01.htm" />
|
|
933
|
+
<edgar:xbrlFile sequence="3" file="cert31-02.htm" type="EX-31.02" size="16465" description="302 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/cert31-02.htm" />
|
|
934
|
+
<edgar:xbrlFile sequence="4" file="cert32-01.htm" type="EX-32.01" size="8302" description="906 CERTIFICATION OF CEO AND CFO" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/cert32-01.htm" />
|
|
935
|
+
<edgar:xbrlFile sequence="5" file="fslr-20090926.xml" type="EX-101.INS" size="544229" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/fslr-20090926.xml" />
|
|
936
|
+
<edgar:xbrlFile sequence="6" file="fslr-20090926_def.xml" type="EX-101.DEF" size="11901" description="XBRL DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/fslr-20090926_def.xml" />
|
|
937
|
+
<edgar:xbrlFile sequence="7" file="fslr-20090926_cal.xml" type="EX-101.CAL" size="42857" description="XBRL CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/fslr-20090926_cal.xml" />
|
|
938
|
+
<edgar:xbrlFile sequence="8" file="fslr-20090926_lab.xml" type="EX-101.LAB" size="144782" description="XBRL LABEL LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/fslr-20090926_lab.xml" />
|
|
939
|
+
<edgar:xbrlFile sequence="9" file="fslr-20090926_pre.xml" type="EX-101.PRE" size="83938" description="XBRL EXTENSION PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/fslr-20090926_pre.xml" />
|
|
940
|
+
<edgar:xbrlFile sequence="10" file="fslr-20090926.xsd" type="EX-101.SCH" size="17497" description="XBRL SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1274494/000127449409000032/fslr-20090926.xsd" />
|
|
941
|
+
</edgar:xbrlFiles>
|
|
942
|
+
</edgar:xbrlFiling>
|
|
943
|
+
</item>
|
|
944
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/0000007332-09-000034-index.htm">
|
|
945
|
+
<title>SOUTHWESTERN ENERGY CO (0000007332) (Filer)</title>
|
|
946
|
+
<link>http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/0000007332-09-000034-index.htm</link>
|
|
947
|
+
<description>10-Q</description>
|
|
948
|
+
<pubDate>Thu, 29 Oct 2009 18:04:57 EDT</pubDate>
|
|
949
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
950
|
+
<edgar:companyName>SOUTHWESTERN ENERGY CO</edgar:companyName>
|
|
951
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
952
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
953
|
+
<edgar:cikNumber>0000007332</edgar:cikNumber>
|
|
954
|
+
<edgar:accessionNumber>0000007332-09-000034</edgar:accessionNumber>
|
|
955
|
+
<edgar:fileNumber>001-08246</edgar:fileNumber>
|
|
956
|
+
<edgar:xbrlFiles>
|
|
957
|
+
<edgar:xbrlFile sequence="1" file="swn093009form10q.htm" type="10-Q" size="810195" description="SWN Q3 2009 FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn093009form10q.htm" />
|
|
958
|
+
<edgar:xbrlFile sequence="2" file="exhibit311.htm" type="EX-31" size="9767" description="CEO CERTIFICATION - SECTION 302" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/exhibit311.htm" />
|
|
959
|
+
<edgar:xbrlFile sequence="3" file="exhibit312.htm" type="EX-31" size="9708" description="CFO CERTIFICATION - SECTION 302" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/exhibit312.htm" />
|
|
960
|
+
<edgar:xbrlFile sequence="4" file="exhibit32.htm" type="EX-32" size="4025" description="CEO & CFO CERTIFICATION - SECTION 906" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/exhibit32.htm" />
|
|
961
|
+
<edgar:xbrlFile sequence="5" file="swn-20090930.xml" type="EX-101.INS" size="2059915" description="INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn-20090930.xml" />
|
|
962
|
+
<edgar:xbrlFile sequence="6" file="swn-20090930.xsd" type="EX-101.SCH" size="20979" description="SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn-20090930.xsd" />
|
|
963
|
+
<edgar:xbrlFile sequence="7" file="swn-20090930_cal.xml" type="EX-101.CAL" size="64979" description="CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn-20090930_cal.xml" />
|
|
964
|
+
<edgar:xbrlFile sequence="8" file="swn-20090930_def.xml" type="EX-101.DEF" size="350300" description="DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn-20090930_def.xml" />
|
|
965
|
+
<edgar:xbrlFile sequence="9" file="swn-20090930_lab.xml" type="EX-101.LAB" size="205329" description="LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn-20090930_lab.xml" />
|
|
966
|
+
<edgar:xbrlFile sequence="10" file="swn-20090930_pre.xml" type="EX-101.PRE" size="143216" description="PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn-20090930_pre.xml" />
|
|
967
|
+
<edgar:xbrlFile sequence="12" file="swn093009form10q.pdf" type="10-Q" size="297666" description="SWN Q3 2009 FORM 10-Q PDF" url="http://www.sec.gov/Archives/edgar/data/7332/000000733209000034/swn093009form10q.pdf" />
|
|
968
|
+
</edgar:xbrlFiles>
|
|
969
|
+
</edgar:xbrlFiling>
|
|
970
|
+
</item>
|
|
971
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/0000107815-09-000062-index.htm">
|
|
972
|
+
<title>WISCONSIN ENERGY CORP (0000783325) (Filer)</title>
|
|
973
|
+
<link>http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/0000107815-09-000062-index.htm</link>
|
|
974
|
+
<description>10-Q</description>
|
|
975
|
+
<pubDate>Thu, 29 Oct 2009 17:39:04 EDT</pubDate>
|
|
976
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
977
|
+
<edgar:companyName>WISCONSIN ENERGY CORP</edgar:companyName>
|
|
978
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
979
|
+
<edgar:filingDate>10/30/2009</edgar:filingDate>
|
|
980
|
+
<edgar:cikNumber>0000783325</edgar:cikNumber>
|
|
981
|
+
<edgar:accessionNumber>0000107815-09-000062</edgar:accessionNumber>
|
|
982
|
+
<edgar:fileNumber>001-09057</edgar:fileNumber>
|
|
983
|
+
<edgar:xbrlFiles>
|
|
984
|
+
<edgar:xbrlFile sequence="1" file="wec10q93009.htm" type="10-Q" size="703416" description="WEC THIRD QUARTER 2009 FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec10q93009.htm" />
|
|
985
|
+
<edgar:xbrlFile sequence="2" file="wecex31-1.htm" type="EX-31" size="4669" description="WEC EXHIBIT 31-1" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wecex31-1.htm" />
|
|
986
|
+
<edgar:xbrlFile sequence="3" file="wecex31-2.htm" type="EX-31" size="4651" description="WEC EXHIBIT 31-2" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wecex31-2.htm" />
|
|
987
|
+
<edgar:xbrlFile sequence="4" file="wecex32-1.htm" type="EX-32" size="1585" description="WEC EXHIBIT 32-1" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wecex32-1.htm" />
|
|
988
|
+
<edgar:xbrlFile sequence="5" file="wecex32-2.htm" type="EX-32" size="1591" description="WEC EXHIBIT 32-2" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wecex32-2.htm" />
|
|
989
|
+
<edgar:xbrlFile sequence="6" file="wec-20090930.xml" type="EX-101.INS" size="373408" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec-20090930.xml" />
|
|
990
|
+
<edgar:xbrlFile sequence="7" file="wec-20090930.xsd" type="EX-101.SCH" size="15471" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec-20090930.xsd" />
|
|
991
|
+
<edgar:xbrlFile sequence="8" file="wec-20090930_cal.xml" type="EX-101.CAL" size="49786" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec-20090930_cal.xml" />
|
|
992
|
+
<edgar:xbrlFile sequence="9" file="wec-20090930_def.xml" type="EX-101.DEF" size="9293" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec-20090930_def.xml" />
|
|
993
|
+
<edgar:xbrlFile sequence="10" file="wec-20090930_lab.xml" type="EX-101.LAB" size="138357" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec-20090930_lab.xml" />
|
|
994
|
+
<edgar:xbrlFile sequence="11" file="wec-20090930_pre.xml" type="EX-101.PRE" size="85073" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/783325/000010781509000062/wec-20090930_pre.xml" />
|
|
995
|
+
</edgar:xbrlFiles>
|
|
996
|
+
</edgar:xbrlFiling>
|
|
997
|
+
</item>
|
|
998
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/0001047469-09-009321-index.htm">
|
|
999
|
+
<title>COCA COLA CO (0000021344) (Filer)</title>
|
|
1000
|
+
<link>http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/0001047469-09-009321-index.htm</link>
|
|
1001
|
+
<description>10-Q/A</description>
|
|
1002
|
+
<pubDate>Thu, 29 Oct 2009 17:25:18 EDT</pubDate>
|
|
1003
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1004
|
+
<edgar:companyName>COCA COLA CO</edgar:companyName>
|
|
1005
|
+
<edgar:formType>10-Q/A</edgar:formType>
|
|
1006
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1007
|
+
<edgar:cikNumber>0000021344</edgar:cikNumber>
|
|
1008
|
+
<edgar:accessionNumber>0001047469-09-009321</edgar:accessionNumber>
|
|
1009
|
+
<edgar:fileNumber>001-02217</edgar:fileNumber>
|
|
1010
|
+
<edgar:xbrlFiles>
|
|
1011
|
+
<edgar:xbrlFile sequence="1" file="a2195172z10-qa.htm" type="10-Q/A" size="39991" description="10-Q/A" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/a2195172z10-qa.htm" />
|
|
1012
|
+
<edgar:xbrlFile sequence="2" file="ko-20091002.xml" type="EX-101.INS" size="605669" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/ko-20091002.xml" />
|
|
1013
|
+
<edgar:xbrlFile sequence="3" file="ko-20091002.xsd" type="EX-101.SCH" size="16172" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/ko-20091002.xsd" />
|
|
1014
|
+
<edgar:xbrlFile sequence="4" file="ko-20091002_cal.xml" type="EX-101.CAL" size="42435" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/ko-20091002_cal.xml" />
|
|
1015
|
+
<edgar:xbrlFile sequence="5" file="ko-20091002_lab.xml" type="EX-101.LAB" size="183388" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/ko-20091002_lab.xml" />
|
|
1016
|
+
<edgar:xbrlFile sequence="6" file="ko-20091002_pre.xml" type="EX-101.PRE" size="92069" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/ko-20091002_pre.xml" />
|
|
1017
|
+
<edgar:xbrlFile sequence="7" file="g1013977.jpg" type="GRAPHIC" size="20342" description="G1013977.JPG" url="http://www.sec.gov/Archives/edgar/data/21344/000104746909009321/g1013977.jpg" />
|
|
1018
|
+
</edgar:xbrlFiles>
|
|
1019
|
+
</edgar:xbrlFiling>
|
|
1020
|
+
</item>
|
|
1021
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/0000950123-09-054957-index.htm">
|
|
1022
|
+
<title>BAXTER INTERNATIONAL INC (0000010456) (Filer)</title>
|
|
1023
|
+
<link>http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/0000950123-09-054957-index.htm</link>
|
|
1024
|
+
<description>10-Q</description>
|
|
1025
|
+
<pubDate>Thu, 29 Oct 2009 17:20:48 EDT</pubDate>
|
|
1026
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1027
|
+
<edgar:companyName>BAXTER INTERNATIONAL INC</edgar:companyName>
|
|
1028
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1029
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1030
|
+
<edgar:cikNumber>0000010456</edgar:cikNumber>
|
|
1031
|
+
<edgar:accessionNumber>0000950123-09-054957</edgar:accessionNumber>
|
|
1032
|
+
<edgar:fileNumber>001-04448</edgar:fileNumber>
|
|
1033
|
+
<edgar:xbrlFiles>
|
|
1034
|
+
<edgar:xbrlFile sequence="1" file="c53977e10vq.htm" type="10-Q" size="390971" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977e10vq.htm" />
|
|
1035
|
+
<edgar:xbrlFile sequence="2" file="c53977exv10w1.htm" type="EX-10.1" size="30900" description="AMENDMENT NO. 1 TO BAXTER INTERNATIONAL INC. NON-EMPLOYEE DIRECTOR COMPENSATION " url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977exv10w1.htm" />
|
|
1036
|
+
<edgar:xbrlFile sequence="3" file="c53977exv15.htm" type="EX-15" size="1907" description="LETTER RE UNAUDITED INTERIM FINANCIAL INFORMATION" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977exv15.htm" />
|
|
1037
|
+
<edgar:xbrlFile sequence="4" file="c53977exv31w1.htm" type="EX-31.1" size="8519" description="CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977exv31w1.htm" />
|
|
1038
|
+
<edgar:xbrlFile sequence="5" file="c53977exv31w2.htm" type="EX-31.2" size="8765" description="CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977exv31w2.htm" />
|
|
1039
|
+
<edgar:xbrlFile sequence="6" file="c53977exv32w1.htm" type="EX-32.1" size="2349" description="SECTION 1350 CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977exv32w1.htm" />
|
|
1040
|
+
<edgar:xbrlFile sequence="7" file="c53977exv32w2.htm" type="EX-32.2" size="2330" description="SECTION 1350 CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/c53977exv32w2.htm" />
|
|
1041
|
+
<edgar:xbrlFile sequence="8" file="bax-20090930.xml" type="EX-101.INS" size="506333" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/bax-20090930.xml" />
|
|
1042
|
+
<edgar:xbrlFile sequence="9" file="bax-20090930.xsd" type="EX-101.SCH" size="13681" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/bax-20090930.xsd" />
|
|
1043
|
+
<edgar:xbrlFile sequence="10" file="bax-20090930_cal.xml" type="EX-101.CAL" size="35261" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/bax-20090930_cal.xml" />
|
|
1044
|
+
<edgar:xbrlFile sequence="11" file="bax-20090930_lab.xml" type="EX-101.LAB" size="132761" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/bax-20090930_lab.xml" />
|
|
1045
|
+
<edgar:xbrlFile sequence="12" file="bax-20090930_pre.xml" type="EX-101.PRE" size="78186" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/bax-20090930_pre.xml" />
|
|
1046
|
+
<edgar:xbrlFile sequence="13" file="bax-20090930_def.xml" type="EX-101.DEF" size="9210" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/10456/000095012309054957/bax-20090930_def.xml" />
|
|
1047
|
+
</edgar:xbrlFiles>
|
|
1048
|
+
</edgar:xbrlFiling>
|
|
1049
|
+
</item>
|
|
1050
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/0000950123-09-054928-index.htm">
|
|
1051
|
+
<title>KANSAS CITY SOUTHERN (0000054480) (Filer)</title>
|
|
1052
|
+
<link>http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/0000950123-09-054928-index.htm</link>
|
|
1053
|
+
<description>10-Q</description>
|
|
1054
|
+
<pubDate>Thu, 29 Oct 2009 17:09:40 EDT</pubDate>
|
|
1055
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1056
|
+
<edgar:companyName>KANSAS CITY SOUTHERN</edgar:companyName>
|
|
1057
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1058
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1059
|
+
<edgar:cikNumber>0000054480</edgar:cikNumber>
|
|
1060
|
+
<edgar:accessionNumber>0000950123-09-054928</edgar:accessionNumber>
|
|
1061
|
+
<edgar:fileNumber>001-04717</edgar:fileNumber>
|
|
1062
|
+
<edgar:xbrlFiles>
|
|
1063
|
+
<edgar:xbrlFile sequence="1" file="c52999e10vq.htm" type="10-Q" size="861200" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999e10vq.htm" />
|
|
1064
|
+
<edgar:xbrlFile sequence="2" file="c52999exv15w1.htm" type="EX-15.1" size="1822" description="EX-15.1" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999exv15w1.htm" />
|
|
1065
|
+
<edgar:xbrlFile sequence="3" file="c52999exv18w1.htm" type="EX-18.1" size="3170" description="EX-18.1" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999exv18w1.htm" />
|
|
1066
|
+
<edgar:xbrlFile sequence="4" file="c52999exv31w1.htm" type="EX-31.1" size="9040" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999exv31w1.htm" />
|
|
1067
|
+
<edgar:xbrlFile sequence="5" file="c52999exv31w2.htm" type="EX-31.2" size="9059" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999exv31w2.htm" />
|
|
1068
|
+
<edgar:xbrlFile sequence="6" file="c52999exv32w1.htm" type="EX-32.1" size="4402" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999exv32w1.htm" />
|
|
1069
|
+
<edgar:xbrlFile sequence="7" file="c52999exv32w2.htm" type="EX-32.2" size="4426" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999exv32w2.htm" />
|
|
1070
|
+
<edgar:xbrlFile sequence="8" file="ksu-20090930.xml" type="EX-101.INS" size="815779" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/ksu-20090930.xml" />
|
|
1071
|
+
<edgar:xbrlFile sequence="9" file="ksu-20090930.xsd" type="EX-101.SCH" size="13417" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/ksu-20090930.xsd" />
|
|
1072
|
+
<edgar:xbrlFile sequence="10" file="ksu-20090930_cal.xml" type="EX-101.CAL" size="41971" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/ksu-20090930_cal.xml" />
|
|
1073
|
+
<edgar:xbrlFile sequence="11" file="ksu-20090930_lab.xml" type="EX-101.LAB" size="166675" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/ksu-20090930_lab.xml" />
|
|
1074
|
+
<edgar:xbrlFile sequence="12" file="ksu-20090930_pre.xml" type="EX-101.PRE" size="86517" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/ksu-20090930_pre.xml" />
|
|
1075
|
+
<edgar:xbrlFile sequence="13" file="ksu-20090930_def.xml" type="EX-101.DEF" size="13007" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/ksu-20090930_def.xml" />
|
|
1076
|
+
<edgar:xbrlFile sequence="14" file="c52999c5299900.gif" type="GRAPHIC" size="1656" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999c5299900.gif" />
|
|
1077
|
+
<edgar:xbrlFile sequence="15" file="c52999c5299905.gif" type="GRAPHIC" size="3455" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999c5299905.gif" />
|
|
1078
|
+
<edgar:xbrlFile sequence="16" file="c52999c5299906.gif" type="GRAPHIC" size="2955" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999c5299906.gif" />
|
|
1079
|
+
<edgar:xbrlFile sequence="17" file="c52999c5299907.gif" type="GRAPHIC" size="3540" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/54480/000095012309054928/c52999c5299907.gif" />
|
|
1080
|
+
</edgar:xbrlFiles>
|
|
1081
|
+
</edgar:xbrlFiling>
|
|
1082
|
+
</item>
|
|
1083
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/0001193125-09-217539-index.htm">
|
|
1084
|
+
<title>COCA COLA ENTERPRISES INC (0000804055) (Filer)</title>
|
|
1085
|
+
<link>http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/0001193125-09-217539-index.htm</link>
|
|
1086
|
+
<description>10-Q</description>
|
|
1087
|
+
<pubDate>Thu, 29 Oct 2009 17:01:31 EDT</pubDate>
|
|
1088
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1089
|
+
<edgar:companyName>COCA COLA ENTERPRISES INC</edgar:companyName>
|
|
1090
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1091
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1092
|
+
<edgar:cikNumber>0000804055</edgar:cikNumber>
|
|
1093
|
+
<edgar:accessionNumber>0001193125-09-217539</edgar:accessionNumber>
|
|
1094
|
+
<edgar:fileNumber>001-09300</edgar:fileNumber>
|
|
1095
|
+
<edgar:xbrlFiles>
|
|
1096
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="889290" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/d10q.htm" />
|
|
1097
|
+
<edgar:xbrlFile sequence="2" file="dex12.htm" type="EX-12" size="26464" description="RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/dex12.htm" />
|
|
1098
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="9776" description="SECTION 302 CERTIFICATION, CEO" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/dex311.htm" />
|
|
1099
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="9803" description="SECTION 302 CERTIFICATION, CFO" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/dex312.htm" />
|
|
1100
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3469" description="SECTION 906 CERTIFICATION, CEO" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/dex321.htm" />
|
|
1101
|
+
<edgar:xbrlFile sequence="6" file="dex322.htm" type="EX-32.2" size="3496" description="SECTION 906 CERTIFICATION, CFO" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/dex322.htm" />
|
|
1102
|
+
<edgar:xbrlFile sequence="7" file="cce-20091002.xml" type="EX-101.INS" size="532638" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/cce-20091002.xml" />
|
|
1103
|
+
<edgar:xbrlFile sequence="8" file="cce-20091002.xsd" type="EX-101.SCH" size="14500" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/cce-20091002.xsd" />
|
|
1104
|
+
<edgar:xbrlFile sequence="9" file="cce-20091002_cal.xml" type="EX-101.CAL" size="31326" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/cce-20091002_cal.xml" />
|
|
1105
|
+
<edgar:xbrlFile sequence="10" file="cce-20091002_lab.xml" type="EX-101.LAB" size="81682" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/cce-20091002_lab.xml" />
|
|
1106
|
+
<edgar:xbrlFile sequence="11" file="cce-20091002_pre.xml" type="EX-101.PRE" size="71098" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/cce-20091002_pre.xml" />
|
|
1107
|
+
<edgar:xbrlFile sequence="12" file="g41137fs.jpg" type="GRAPHIC" size="5368" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/804055/000119312509217539/g41137fs.jpg" />
|
|
1108
|
+
</edgar:xbrlFiles>
|
|
1109
|
+
</edgar:xbrlFiling>
|
|
1110
|
+
</item>
|
|
1111
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/0000950123-09-054900-index.htm">
|
|
1112
|
+
<title>WESTERN DIGITAL CORP (0000106040) (Filer)</title>
|
|
1113
|
+
<link>http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/0000950123-09-054900-index.htm</link>
|
|
1114
|
+
<description>10-Q</description>
|
|
1115
|
+
<pubDate>Thu, 29 Oct 2009 16:55:54 EDT</pubDate>
|
|
1116
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1117
|
+
<edgar:companyName>WESTERN DIGITAL CORP</edgar:companyName>
|
|
1118
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1119
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1120
|
+
<edgar:cikNumber>0000106040</edgar:cikNumber>
|
|
1121
|
+
<edgar:accessionNumber>0000950123-09-054900</edgar:accessionNumber>
|
|
1122
|
+
<edgar:fileNumber>001-08703</edgar:fileNumber>
|
|
1123
|
+
<edgar:xbrlFiles>
|
|
1124
|
+
<edgar:xbrlFile sequence="1" file="a53884e10vq.htm" type="10-Q" size="394156" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884e10vq.htm" />
|
|
1125
|
+
<edgar:xbrlFile sequence="2" file="a53884exv10w1w9.htm" type="EX-10.1.9" size="40388" description="EX-10.1.9" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv10w1w9.htm" />
|
|
1126
|
+
<edgar:xbrlFile sequence="3" file="a53884exv10w1w10.htm" type="EX-10.1.10" size="23832" description="EX-10.1.10" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv10w1w10.htm" />
|
|
1127
|
+
<edgar:xbrlFile sequence="4" file="a53884exv10w7.htm" type="EX-10.7" size="11125" description="EX-10.7" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv10w7.htm" />
|
|
1128
|
+
<edgar:xbrlFile sequence="5" file="a53884exv31w1.htm" type="EX-31.1" size="8958" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv31w1.htm" />
|
|
1129
|
+
<edgar:xbrlFile sequence="6" file="a53884exv31w2.htm" type="EX-31.2" size="8993" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv31w2.htm" />
|
|
1130
|
+
<edgar:xbrlFile sequence="7" file="a53884exv32w1.htm" type="EX-32.1" size="4009" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv32w1.htm" />
|
|
1131
|
+
<edgar:xbrlFile sequence="8" file="a53884exv32w2.htm" type="EX-32.2" size="4042" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884exv32w2.htm" />
|
|
1132
|
+
<edgar:xbrlFile sequence="9" file="wdc-20091002.xml" type="EX-101.INS" size="135097" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/wdc-20091002.xml" />
|
|
1133
|
+
<edgar:xbrlFile sequence="10" file="wdc-20091002.xsd" type="EX-101.SCH" size="11749" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/wdc-20091002.xsd" />
|
|
1134
|
+
<edgar:xbrlFile sequence="11" file="wdc-20091002_cal.xml" type="EX-101.CAL" size="29613" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/wdc-20091002_cal.xml" />
|
|
1135
|
+
<edgar:xbrlFile sequence="12" file="wdc-20091002_lab.xml" type="EX-101.LAB" size="107847" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/wdc-20091002_lab.xml" />
|
|
1136
|
+
<edgar:xbrlFile sequence="13" file="wdc-20091002_pre.xml" type="EX-101.PRE" size="64809" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/wdc-20091002_pre.xml" />
|
|
1137
|
+
<edgar:xbrlFile sequence="14" file="wdc-20091002_def.xml" type="EX-101.DEF" size="8526" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/wdc-20091002_def.xml" />
|
|
1138
|
+
<edgar:xbrlFile sequence="15" file="a53884a5388401.gif" type="GRAPHIC" size="2230" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884a5388401.gif" />
|
|
1139
|
+
<edgar:xbrlFile sequence="16" file="a53884a5388400.gif" type="GRAPHIC" size="2788" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/106040/000095012309054900/a53884a5388400.gif" />
|
|
1140
|
+
</edgar:xbrlFiles>
|
|
1141
|
+
</edgar:xbrlFiling>
|
|
1142
|
+
</item>
|
|
1143
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/0001193125-09-217506-index.htm">
|
|
1144
|
+
<title>VERIZON COMMUNICATIONS INC (0000732712) (Filer)</title>
|
|
1145
|
+
<link>http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/0001193125-09-217506-index.htm</link>
|
|
1146
|
+
<description>10-Q</description>
|
|
1147
|
+
<pubDate>Thu, 29 Oct 2009 16:44:39 EDT</pubDate>
|
|
1148
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1149
|
+
<edgar:companyName>VERIZON COMMUNICATIONS INC</edgar:companyName>
|
|
1150
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1151
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1152
|
+
<edgar:cikNumber>0000732712</edgar:cikNumber>
|
|
1153
|
+
<edgar:accessionNumber>0001193125-09-217506</edgar:accessionNumber>
|
|
1154
|
+
<edgar:fileNumber>001-08606</edgar:fileNumber>
|
|
1155
|
+
<edgar:xbrlFiles>
|
|
1156
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="800598" description="VERIZON COMMUNICATIONS INC. -- FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/d10q.htm" />
|
|
1157
|
+
<edgar:xbrlFile sequence="2" file="dex12.htm" type="EX-12" size="8698" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/dex12.htm" />
|
|
1158
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="9536" description="302 CERTIFICATION - CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/dex311.htm" />
|
|
1159
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="9543" description="302 CERTIFICATION - CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/dex312.htm" />
|
|
1160
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3947" description="906 CERTIFICATION - CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/dex321.htm" />
|
|
1161
|
+
<edgar:xbrlFile sequence="6" file="dex322.htm" type="EX-32.2" size="3970" description="906 CERTIFICATION - CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/dex322.htm" />
|
|
1162
|
+
<edgar:xbrlFile sequence="7" file="vz-20090930.xml" type="EX-101.INS" size="457916" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/vz-20090930.xml" />
|
|
1163
|
+
<edgar:xbrlFile sequence="8" file="vz-20090930.xsd" type="EX-101.SCH" size="11827" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/vz-20090930.xsd" />
|
|
1164
|
+
<edgar:xbrlFile sequence="9" file="vz-20090930_cal.xml" type="EX-101.CAL" size="34504" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/vz-20090930_cal.xml" />
|
|
1165
|
+
<edgar:xbrlFile sequence="10" file="vz-20090930_lab.xml" type="EX-101.LAB" size="83223" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/vz-20090930_lab.xml" />
|
|
1166
|
+
<edgar:xbrlFile sequence="11" file="vz-20090930_pre.xml" type="EX-101.PRE" size="68992" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/732712/000119312509217506/vz-20090930_pre.xml" />
|
|
1167
|
+
</edgar:xbrlFiles>
|
|
1168
|
+
</edgar:xbrlFiling>
|
|
1169
|
+
</item>
|
|
1170
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/0001104659-09-061200-index.htm">
|
|
1171
|
+
<title>OWENS ILLINOIS INC /DE/ (0000812074) (Filer)</title>
|
|
1172
|
+
<link>http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/0001104659-09-061200-index.htm</link>
|
|
1173
|
+
<description>10-Q</description>
|
|
1174
|
+
<pubDate>Thu, 29 Oct 2009 16:38:18 EDT</pubDate>
|
|
1175
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1176
|
+
<edgar:companyName>OWENS ILLINOIS INC /DE/</edgar:companyName>
|
|
1177
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1178
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1179
|
+
<edgar:cikNumber>0000812074</edgar:cikNumber>
|
|
1180
|
+
<edgar:accessionNumber>0001104659-09-061200</edgar:accessionNumber>
|
|
1181
|
+
<edgar:fileNumber>001-09576</edgar:fileNumber>
|
|
1182
|
+
<edgar:xbrlFiles>
|
|
1183
|
+
<edgar:xbrlFile sequence="1" file="a09-24240_110q.htm" type="10-Q" size="2391591" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/a09-24240_110q.htm" />
|
|
1184
|
+
<edgar:xbrlFile sequence="2" file="a09-24240_1ex12.htm" type="EX-12" size="45163" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/a09-24240_1ex12.htm" />
|
|
1185
|
+
<edgar:xbrlFile sequence="3" file="a09-24240_1ex31d1.htm" type="EX-31.1" size="10576" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/a09-24240_1ex31d1.htm" />
|
|
1186
|
+
<edgar:xbrlFile sequence="4" file="a09-24240_1ex31d2.htm" type="EX-31.2" size="11553" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/a09-24240_1ex31d2.htm" />
|
|
1187
|
+
<edgar:xbrlFile sequence="5" file="a09-24240_1ex32d1.htm" type="EX-32.1" size="5875" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/a09-24240_1ex32d1.htm" />
|
|
1188
|
+
<edgar:xbrlFile sequence="6" file="a09-24240_1ex32d2.htm" type="EX-32.2" size="5832" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/a09-24240_1ex32d2.htm" />
|
|
1189
|
+
<edgar:xbrlFile sequence="7" file="oi-20090930.xml" type="EX-101.INS" size="2163036" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/oi-20090930.xml" />
|
|
1190
|
+
<edgar:xbrlFile sequence="8" file="oi-20090930.xsd" type="EX-101.SCH" size="13763" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/oi-20090930.xsd" />
|
|
1191
|
+
<edgar:xbrlFile sequence="9" file="oi-20090930_cal.xml" type="EX-101.CAL" size="37563" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/oi-20090930_cal.xml" />
|
|
1192
|
+
<edgar:xbrlFile sequence="10" file="oi-20090930_lab.xml" type="EX-101.LAB" size="221200" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/oi-20090930_lab.xml" />
|
|
1193
|
+
<edgar:xbrlFile sequence="11" file="oi-20090930_pre.xml" type="EX-101.PRE" size="95551" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/812074/000110465909061200/oi-20090930_pre.xml" />
|
|
1194
|
+
</edgar:xbrlFiles>
|
|
1195
|
+
</edgar:xbrlFiling>
|
|
1196
|
+
</item>
|
|
1197
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/0001104659-09-061197-index.htm">
|
|
1198
|
+
<title>EQT Corp (0000033213) (Filer)</title>
|
|
1199
|
+
<link>http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/0001104659-09-061197-index.htm</link>
|
|
1200
|
+
<description>10-Q</description>
|
|
1201
|
+
<pubDate>Thu, 29 Oct 2009 16:33:26 EDT</pubDate>
|
|
1202
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1203
|
+
<edgar:companyName>EQT Corp</edgar:companyName>
|
|
1204
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1205
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1206
|
+
<edgar:cikNumber>0000033213</edgar:cikNumber>
|
|
1207
|
+
<edgar:accessionNumber>0001104659-09-061197</edgar:accessionNumber>
|
|
1208
|
+
<edgar:fileNumber>001-03551</edgar:fileNumber>
|
|
1209
|
+
<edgar:xbrlFiles>
|
|
1210
|
+
<edgar:xbrlFile sequence="1" file="a09-30755_110q.htm" type="10-Q" size="1501625" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/a09-30755_110q.htm" />
|
|
1211
|
+
<edgar:xbrlFile sequence="2" file="a09-30755_1ex10d1.htm" type="EX-10.1" size="6773" description="EX-10.1" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/a09-30755_1ex10d1.htm" />
|
|
1212
|
+
<edgar:xbrlFile sequence="3" file="a09-30755_1ex31d1.htm" type="EX-31.1" size="11465" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/a09-30755_1ex31d1.htm" />
|
|
1213
|
+
<edgar:xbrlFile sequence="4" file="a09-30755_1ex31d2.htm" type="EX-31.2" size="11874" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/a09-30755_1ex31d2.htm" />
|
|
1214
|
+
<edgar:xbrlFile sequence="5" file="a09-30755_1ex32.htm" type="EX-32" size="9751" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/a09-30755_1ex32.htm" />
|
|
1215
|
+
<edgar:xbrlFile sequence="6" file="eqt-20090930.xml" type="EX-101.INS" size="744150" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/eqt-20090930.xml" />
|
|
1216
|
+
<edgar:xbrlFile sequence="7" file="eqt-20090930.xsd" type="EX-101.SCH" size="25640" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/eqt-20090930.xsd" />
|
|
1217
|
+
<edgar:xbrlFile sequence="8" file="eqt-20090930_cal.xml" type="EX-101.CAL" size="37619" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/eqt-20090930_cal.xml" />
|
|
1218
|
+
<edgar:xbrlFile sequence="9" file="eqt-20090930_lab.xml" type="EX-101.LAB" size="362316" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/eqt-20090930_lab.xml" />
|
|
1219
|
+
<edgar:xbrlFile sequence="10" file="eqt-20090930_pre.xml" type="EX-101.PRE" size="151579" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/33213/000110465909061197/eqt-20090930_pre.xml" />
|
|
1220
|
+
</edgar:xbrlFiles>
|
|
1221
|
+
</edgar:xbrlFiling>
|
|
1222
|
+
</item>
|
|
1223
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/0000950123-09-054872-index.htm">
|
|
1224
|
+
<title>SCHERING PLOUGH CORP (0000310158) (Filer)</title>
|
|
1225
|
+
<link>http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/0000950123-09-054872-index.htm</link>
|
|
1226
|
+
<description>10-Q</description>
|
|
1227
|
+
<pubDate>Thu, 29 Oct 2009 16:33:24 EDT</pubDate>
|
|
1228
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1229
|
+
<edgar:companyName>SCHERING PLOUGH CORP</edgar:companyName>
|
|
1230
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1231
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1232
|
+
<edgar:cikNumber>0000310158</edgar:cikNumber>
|
|
1233
|
+
<edgar:accessionNumber>0000950123-09-054872</edgar:accessionNumber>
|
|
1234
|
+
<edgar:fileNumber>001-06571</edgar:fileNumber>
|
|
1235
|
+
<edgar:xbrlFiles>
|
|
1236
|
+
<edgar:xbrlFile sequence="1" file="y79731e10vq.htm" type="10-Q" size="828136" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731e10vq.htm" />
|
|
1237
|
+
<edgar:xbrlFile sequence="2" file="y79731exv12.htm" type="EX-12" size="33246" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731exv12.htm" />
|
|
1238
|
+
<edgar:xbrlFile sequence="3" file="y79731exv15.htm" type="EX-15" size="5533" description="EX-15" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731exv15.htm" />
|
|
1239
|
+
<edgar:xbrlFile sequence="4" file="y79731exv31w1.htm" type="EX-31.1" size="8737" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731exv31w1.htm" />
|
|
1240
|
+
<edgar:xbrlFile sequence="5" file="y79731exv31w2.htm" type="EX-31.2" size="8769" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731exv31w2.htm" />
|
|
1241
|
+
<edgar:xbrlFile sequence="6" file="y79731exv32w1.htm" type="EX-32.1" size="3523" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731exv32w1.htm" />
|
|
1242
|
+
<edgar:xbrlFile sequence="7" file="y79731exv32w2.htm" type="EX-32.2" size="3557" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/y79731exv32w2.htm" />
|
|
1243
|
+
<edgar:xbrlFile sequence="8" file="sgp-20090930.xml" type="EX-101.INS" size="555695" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/sgp-20090930.xml" />
|
|
1244
|
+
<edgar:xbrlFile sequence="9" file="sgp-20090930.xsd" type="EX-101.SCH" size="16254" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/sgp-20090930.xsd" />
|
|
1245
|
+
<edgar:xbrlFile sequence="10" file="sgp-20090930_cal.xml" type="EX-101.CAL" size="40423" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/sgp-20090930_cal.xml" />
|
|
1246
|
+
<edgar:xbrlFile sequence="11" file="sgp-20090930_lab.xml" type="EX-101.LAB" size="141026" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/sgp-20090930_lab.xml" />
|
|
1247
|
+
<edgar:xbrlFile sequence="12" file="sgp-20090930_pre.xml" type="EX-101.PRE" size="78146" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/sgp-20090930_pre.xml" />
|
|
1248
|
+
<edgar:xbrlFile sequence="13" file="sgp-20090930_def.xml" type="EX-101.DEF" size="11035" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/310158/000095012309054872/sgp-20090930_def.xml" />
|
|
1249
|
+
</edgar:xbrlFiles>
|
|
1250
|
+
</edgar:xbrlFiling>
|
|
1251
|
+
</item>
|
|
1252
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/0000920148-09-000075-index.htm">
|
|
1253
|
+
<title>LABORATORY CORP OF AMERICA HOLDINGS (0000920148) (Filer)</title>
|
|
1254
|
+
<link>http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/0000920148-09-000075-index.htm</link>
|
|
1255
|
+
<description>10-Q</description>
|
|
1256
|
+
<pubDate>Thu, 29 Oct 2009 16:24:08 EDT</pubDate>
|
|
1257
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1258
|
+
<edgar:companyName>LABORATORY CORP OF AMERICA HOLDINGS</edgar:companyName>
|
|
1259
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1260
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1261
|
+
<edgar:cikNumber>0000920148</edgar:cikNumber>
|
|
1262
|
+
<edgar:accessionNumber>0000920148-09-000075</edgar:accessionNumber>
|
|
1263
|
+
<edgar:fileNumber>001-11353</edgar:fileNumber>
|
|
1264
|
+
<edgar:xbrlFiles>
|
|
1265
|
+
<edgar:xbrlFile sequence="1" file="labcorp10q.htm" type="10-Q" size="1170890" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/labcorp10q.htm" />
|
|
1266
|
+
<edgar:xbrlFile sequence="2" file="ex12_1.htm" type="EX-12.1" size="116219" description="EXHIBIT 12.1" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/ex12_1.htm" />
|
|
1267
|
+
<edgar:xbrlFile sequence="3" file="ex31_1.htm" type="EX-31.1" size="10217" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/ex31_1.htm" />
|
|
1268
|
+
<edgar:xbrlFile sequence="4" file="ex31_2.htm" type="EX-31.2" size="10163" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/ex31_2.htm" />
|
|
1269
|
+
<edgar:xbrlFile sequence="5" file="ex32.htm" type="EX-32" size="8070" description="EXHIBIT 32" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/ex32.htm" />
|
|
1270
|
+
<edgar:xbrlFile sequence="6" file="lh-20090930.xml" type="EX-101.INS" size="648279" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/lh-20090930.xml" />
|
|
1271
|
+
<edgar:xbrlFile sequence="7" file="lh-20090930.xsd" type="EX-101.SCH" size="18299" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/lh-20090930.xsd" />
|
|
1272
|
+
<edgar:xbrlFile sequence="8" file="lh-20090930_cal.xml" type="EX-101.CAL" size="54811" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/lh-20090930_cal.xml" />
|
|
1273
|
+
<edgar:xbrlFile sequence="9" file="lh-20090930_def.xml" type="EX-101.DEF" size="14427" description="EX-101.DEF" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/lh-20090930_def.xml" />
|
|
1274
|
+
<edgar:xbrlFile sequence="10" file="lh-20090930_lab.xml" type="EX-101.LAB" size="176103" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/lh-20090930_lab.xml" />
|
|
1275
|
+
<edgar:xbrlFile sequence="11" file="lh-20090930_pre.xml" type="EX-101.PRE" size="107920" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/920148/000092014809000075/lh-20090930_pre.xml" />
|
|
1276
|
+
</edgar:xbrlFiles>
|
|
1277
|
+
</edgar:xbrlFiling>
|
|
1278
|
+
</item>
|
|
1279
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/0001193125-09-217463-index.htm">
|
|
1280
|
+
<title>GRAFTECH INTERNATIONAL LTD (0000931148) (Filer)</title>
|
|
1281
|
+
<link>http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/0001193125-09-217463-index.htm</link>
|
|
1282
|
+
<description>10-Q</description>
|
|
1283
|
+
<pubDate>Thu, 29 Oct 2009 16:20:20 EDT</pubDate>
|
|
1284
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1285
|
+
<edgar:companyName>GRAFTECH INTERNATIONAL LTD</edgar:companyName>
|
|
1286
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1287
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1288
|
+
<edgar:cikNumber>0000931148</edgar:cikNumber>
|
|
1289
|
+
<edgar:accessionNumber>0001193125-09-217463</edgar:accessionNumber>
|
|
1290
|
+
<edgar:fileNumber>001-13888</edgar:fileNumber>
|
|
1291
|
+
<edgar:xbrlFiles>
|
|
1292
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="631153" description="QUARTERLY REPORT" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/d10q.htm" />
|
|
1293
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="6591" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/dex311.htm" />
|
|
1294
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="6553" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/dex312.htm" />
|
|
1295
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="4480" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/dex321.htm" />
|
|
1296
|
+
<edgar:xbrlFile sequence="5" file="dex322.htm" type="EX-32.2" size="4591" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/dex322.htm" />
|
|
1297
|
+
<edgar:xbrlFile sequence="6" file="gti-20090930.xml" type="EX-101.INS" size="373740" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/gti-20090930.xml" />
|
|
1298
|
+
<edgar:xbrlFile sequence="7" file="gti-20090930.xsd" type="EX-101.SCH" size="13940" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/gti-20090930.xsd" />
|
|
1299
|
+
<edgar:xbrlFile sequence="8" file="gti-20090930_cal.xml" type="EX-101.CAL" size="39115" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/gti-20090930_cal.xml" />
|
|
1300
|
+
<edgar:xbrlFile sequence="9" file="gti-20090930_lab.xml" type="EX-101.LAB" size="95864" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/gti-20090930_lab.xml" />
|
|
1301
|
+
<edgar:xbrlFile sequence="10" file="gti-20090930_pre.xml" type="EX-101.PRE" size="81356" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/gti-20090930_pre.xml" />
|
|
1302
|
+
<edgar:xbrlFile sequence="11" file="g88943img001.jpg" type="GRAPHIC" size="12947" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/931148/000119312509217463/g88943img001.jpg" />
|
|
1303
|
+
</edgar:xbrlFiles>
|
|
1304
|
+
</edgar:xbrlFiling>
|
|
1305
|
+
</item>
|
|
1306
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/0001193125-09-217450-index.htm">
|
|
1307
|
+
<title>CABOT OIL & GAS CORP (0000858470) (Filer)</title>
|
|
1308
|
+
<link>http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/0001193125-09-217450-index.htm</link>
|
|
1309
|
+
<description>10-Q</description>
|
|
1310
|
+
<pubDate>Thu, 29 Oct 2009 16:15:32 EDT</pubDate>
|
|
1311
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1312
|
+
<edgar:companyName>CABOT OIL & GAS CORP</edgar:companyName>
|
|
1313
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1314
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1315
|
+
<edgar:cikNumber>0000858470</edgar:cikNumber>
|
|
1316
|
+
<edgar:accessionNumber>0001193125-09-217450</edgar:accessionNumber>
|
|
1317
|
+
<edgar:fileNumber>001-10447</edgar:fileNumber>
|
|
1318
|
+
<edgar:xbrlFiles>
|
|
1319
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="820065" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/d10q.htm" />
|
|
1320
|
+
<edgar:xbrlFile sequence="2" file="dex151.htm" type="EX-15.1" size="2004" description="AWARENESS LETTER OF PRICEWATERHOUSECOOPERS LLP" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/dex151.htm" />
|
|
1321
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="5983" description="302 CERTIFICATION - CHAIRMAN, PRESIDENT AND CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/dex311.htm" />
|
|
1322
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="5745" description="302 CERTIFICATION - VICE PRESIDENT AND CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/dex312.htm" />
|
|
1323
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3317" description="906 CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/dex321.htm" />
|
|
1324
|
+
<edgar:xbrlFile sequence="6" file="cog-20090930.xml" type="EX-101.INS" size="361247" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/cog-20090930.xml" />
|
|
1325
|
+
<edgar:xbrlFile sequence="7" file="cog-20090930.xsd" type="EX-101.SCH" size="10838" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/cog-20090930.xsd" />
|
|
1326
|
+
<edgar:xbrlFile sequence="8" file="cog-20090930_cal.xml" type="EX-101.CAL" size="40686" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/cog-20090930_cal.xml" />
|
|
1327
|
+
<edgar:xbrlFile sequence="9" file="cog-20090930_def.xml" type="EX-101.DEF" size="8851" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/cog-20090930_def.xml" />
|
|
1328
|
+
<edgar:xbrlFile sequence="10" file="cog-20090930_lab.xml" type="EX-101.LAB" size="126915" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/cog-20090930_lab.xml" />
|
|
1329
|
+
<edgar:xbrlFile sequence="11" file="cog-20090930_pre.xml" type="EX-101.PRE" size="74743" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/858470/000119312509217450/cog-20090930_pre.xml" />
|
|
1330
|
+
</edgar:xbrlFiles>
|
|
1331
|
+
</edgar:xbrlFiling>
|
|
1332
|
+
</item>
|
|
1333
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/0001122304-09-000105-index.htm">
|
|
1334
|
+
<title>AETNA INC /PA/ (0001122304) (Filer)</title>
|
|
1335
|
+
<link>http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/0001122304-09-000105-index.htm</link>
|
|
1336
|
+
<description>10-Q</description>
|
|
1337
|
+
<pubDate>Thu, 29 Oct 2009 16:05:31 EDT</pubDate>
|
|
1338
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1339
|
+
<edgar:companyName>AETNA INC /PA/</edgar:companyName>
|
|
1340
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1341
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1342
|
+
<edgar:cikNumber>0001122304</edgar:cikNumber>
|
|
1343
|
+
<edgar:accessionNumber>0001122304-09-000105</edgar:accessionNumber>
|
|
1344
|
+
<edgar:fileNumber>001-16095</edgar:fileNumber>
|
|
1345
|
+
<edgar:xbrlFiles>
|
|
1346
|
+
<edgar:xbrlFile sequence="1" file="form10q.htm" type="10-Q" size="2235790" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/form10q.htm" />
|
|
1347
|
+
<edgar:xbrlFile sequence="2" file="exhibit12-1.htm" type="EX-12.1" size="37090" description="EXHIBIT 12.1" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/exhibit12-1.htm" />
|
|
1348
|
+
<edgar:xbrlFile sequence="3" file="exhibit15-1.htm" type="EX-15.1" size="6006" description="EXHIBIT 15.1" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/exhibit15-1.htm" />
|
|
1349
|
+
<edgar:xbrlFile sequence="4" file="exhibit31-1.htm" type="EX-31.1" size="15731" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/exhibit31-1.htm" />
|
|
1350
|
+
<edgar:xbrlFile sequence="5" file="exhibit31-2.htm" type="EX-31.2" size="15855" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/exhibit31-2.htm" />
|
|
1351
|
+
<edgar:xbrlFile sequence="6" file="exhibit32-1.htm" type="EX-32.1" size="7444" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/exhibit32-1.htm" />
|
|
1352
|
+
<edgar:xbrlFile sequence="7" file="exhibit32-2.htm" type="EX-32.2" size="7608" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/exhibit32-2.htm" />
|
|
1353
|
+
<edgar:xbrlFile sequence="8" file="aetnalogo1.jpg" type="GRAPHIC" size="5147" description="LOGO" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aetnalogo1.jpg" />
|
|
1354
|
+
<edgar:xbrlFile sequence="9" file="aet-20090930.xml" type="EX-101.INS" size="1284577" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aet-20090930.xml" />
|
|
1355
|
+
<edgar:xbrlFile sequence="10" file="aet-20090930.xsd" type="EX-101.SCH" size="18425" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aet-20090930.xsd" />
|
|
1356
|
+
<edgar:xbrlFile sequence="11" file="aet-20090930_cal.xml" type="EX-101.CAL" size="58654" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aet-20090930_cal.xml" />
|
|
1357
|
+
<edgar:xbrlFile sequence="12" file="aet-20090930_def.xml" type="EX-101.DEF" size="17671" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aet-20090930_def.xml" />
|
|
1358
|
+
<edgar:xbrlFile sequence="13" file="aet-20090930_lab.xml" type="EX-101.LAB" size="229868" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aet-20090930_lab.xml" />
|
|
1359
|
+
<edgar:xbrlFile sequence="14" file="aet-20090930_pre.xml" type="EX-101.PRE" size="129724" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1122304/000112230409000105/aet-20090930_pre.xml" />
|
|
1360
|
+
</edgar:xbrlFiles>
|
|
1361
|
+
</edgar:xbrlFiling>
|
|
1362
|
+
</item>
|
|
1363
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/0000097216-09-000219-index.htm">
|
|
1364
|
+
<title>TEREX CORP (0000097216) (Filer)</title>
|
|
1365
|
+
<link>http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/0000097216-09-000219-index.htm</link>
|
|
1366
|
+
<description>10-Q</description>
|
|
1367
|
+
<pubDate>Thu, 29 Oct 2009 16:05:22 EDT</pubDate>
|
|
1368
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1369
|
+
<edgar:companyName>TEREX CORP</edgar:companyName>
|
|
1370
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1371
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1372
|
+
<edgar:cikNumber>0000097216</edgar:cikNumber>
|
|
1373
|
+
<edgar:accessionNumber>0000097216-09-000219</edgar:accessionNumber>
|
|
1374
|
+
<edgar:fileNumber>001-10702</edgar:fileNumber>
|
|
1375
|
+
<edgar:xbrlFiles>
|
|
1376
|
+
<edgar:xbrlFile sequence="1" file="f10q093009.htm" type="10-Q" size="2296895" description="TEREX CORPORATION 10Q - 09-30-2009" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/f10q093009.htm" />
|
|
1377
|
+
<edgar:xbrlFile sequence="2" file="exh12.htm" type="EX-12" size="77045" description="EXHIBIT 12 - CALC. OF RATION EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/exh12.htm" />
|
|
1378
|
+
<edgar:xbrlFile sequence="3" file="exh31-1.htm" type="EX-31" size="6286" description="EXHIBIT 31.1 CERTIFICATION CEO" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/exh31-1.htm" />
|
|
1379
|
+
<edgar:xbrlFile sequence="4" file="exh31-2.htm" type="EX-31" size="6698" description="EXHIBIT 31.2 CERTIFICATION CFO" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/exh31-2.htm" />
|
|
1380
|
+
<edgar:xbrlFile sequence="5" file="exh32.htm" type="EX-32" size="8382" description="EXHIBIT 32 CERTIFICATION CEO & CFO" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/exh32.htm" />
|
|
1381
|
+
<edgar:xbrlFile sequence="6" file="tex-20090930.xml" type="EX-101.INS" size="1079202" description="EXH-101 INST DOC" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/tex-20090930.xml" />
|
|
1382
|
+
<edgar:xbrlFile sequence="7" file="tex-20090930_cal.xml" type="EX-101.CAL" size="49166" description="EXH-101 CAL" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/tex-20090930_cal.xml" />
|
|
1383
|
+
<edgar:xbrlFile sequence="8" file="tex-20090930_def.xml" type="EX-101.DEF" size="19565" description="EXH-101 DEF" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/tex-20090930_def.xml" />
|
|
1384
|
+
<edgar:xbrlFile sequence="9" file="tex-20090930_lab.xml" type="EX-101.LAB" size="211014" description="EXH-101 LAB" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/tex-20090930_lab.xml" />
|
|
1385
|
+
<edgar:xbrlFile sequence="10" file="tex-20090930_pre.xml" type="EX-101.PRE" size="114915" description="EXH-101 PRE" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/tex-20090930_pre.xml" />
|
|
1386
|
+
<edgar:xbrlFile sequence="11" file="tex-20090930.xsd" type="EX-101.SCH" size="14329" description="EXH-101 SCH" url="http://www.sec.gov/Archives/edgar/data/97216/000009721609000219/tex-20090930.xsd" />
|
|
1387
|
+
</edgar:xbrlFiles>
|
|
1388
|
+
</edgar:xbrlFiling>
|
|
1389
|
+
</item>
|
|
1390
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/0001193125-09-217423-index.htm">
|
|
1391
|
+
<title>ATLANTIC CITY ELECTRIC CO (0000008192) (Filer)</title>
|
|
1392
|
+
<link>http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/0001193125-09-217423-index.htm</link>
|
|
1393
|
+
<description>10-Q</description>
|
|
1394
|
+
<pubDate>Thu, 29 Oct 2009 16:04:54 EDT</pubDate>
|
|
1395
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1396
|
+
<edgar:companyName>ATLANTIC CITY ELECTRIC CO</edgar:companyName>
|
|
1397
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1398
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1399
|
+
<edgar:cikNumber>0000008192</edgar:cikNumber>
|
|
1400
|
+
<edgar:accessionNumber>0001193125-09-217423</edgar:accessionNumber>
|
|
1401
|
+
<edgar:fileNumber>001-03559</edgar:fileNumber>
|
|
1402
|
+
<edgar:xbrlFiles>
|
|
1403
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="2923997" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/d10q.htm" />
|
|
1404
|
+
<edgar:xbrlFile sequence="2" file="dex121.htm" type="EX-12.1" size="43716" description="EXHIBIT 12.1" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex121.htm" />
|
|
1405
|
+
<edgar:xbrlFile sequence="3" file="dex122.htm" type="EX-12.2" size="34677" description="EXHIBIT 12.2" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex122.htm" />
|
|
1406
|
+
<edgar:xbrlFile sequence="4" file="dex123.htm" type="EX-12.3" size="34906" description="EXHIBIT 12.3" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex123.htm" />
|
|
1407
|
+
<edgar:xbrlFile sequence="5" file="dex124.htm" type="EX-12.4" size="34924" description="EXHIBIT 12.4" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex124.htm" />
|
|
1408
|
+
<edgar:xbrlFile sequence="6" file="dex311.htm" type="EX-31.1" size="9436" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex311.htm" />
|
|
1409
|
+
<edgar:xbrlFile sequence="7" file="dex312.htm" type="EX-31.2" size="9431" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex312.htm" />
|
|
1410
|
+
<edgar:xbrlFile sequence="8" file="dex313.htm" type="EX-31.3" size="9432" description="EXHIBIT 31.3" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex313.htm" />
|
|
1411
|
+
<edgar:xbrlFile sequence="9" file="dex314.htm" type="EX-31.4" size="9441" description="EXHIBIT 31.4" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex314.htm" />
|
|
1412
|
+
<edgar:xbrlFile sequence="10" file="dex315.htm" type="EX-31.5" size="9442" description="EXHIBIT 31.5" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex315.htm" />
|
|
1413
|
+
<edgar:xbrlFile sequence="11" file="dex316.htm" type="EX-31.6" size="9451" description="EXHIBIT 31.6" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex316.htm" />
|
|
1414
|
+
<edgar:xbrlFile sequence="12" file="dex317.htm" type="EX-31.7" size="9433" description="EXHIBIT 31.7" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex317.htm" />
|
|
1415
|
+
<edgar:xbrlFile sequence="13" file="dex318.htm" type="EX-31.8" size="9416" description="EXHIBIT 31.8" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex318.htm" />
|
|
1416
|
+
<edgar:xbrlFile sequence="14" file="dex321.htm" type="EX-32.1" size="4243" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex321.htm" />
|
|
1417
|
+
<edgar:xbrlFile sequence="15" file="dex322.htm" type="EX-32.2" size="4280" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex322.htm" />
|
|
1418
|
+
<edgar:xbrlFile sequence="16" file="dex323.htm" type="EX-32.3" size="4325" description="EXHIBIT 32.3" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex323.htm" />
|
|
1419
|
+
<edgar:xbrlFile sequence="17" file="dex324.htm" type="EX-32.4" size="4254" description="EXHIBIT 32.4" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/dex324.htm" />
|
|
1420
|
+
<edgar:xbrlFile sequence="18" file="pom-20090930.xml" type="EX-101.INS" size="1566569" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/pom-20090930.xml" />
|
|
1421
|
+
<edgar:xbrlFile sequence="19" file="pom-20090930.xsd" type="EX-101.SCH" size="19912" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/pom-20090930.xsd" />
|
|
1422
|
+
<edgar:xbrlFile sequence="20" file="pom-20090930_cal.xml" type="EX-101.CAL" size="66743" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/pom-20090930_cal.xml" />
|
|
1423
|
+
<edgar:xbrlFile sequence="21" file="pom-20090930_def.xml" type="EX-101.DEF" size="124751" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/pom-20090930_def.xml" />
|
|
1424
|
+
<edgar:xbrlFile sequence="22" file="pom-20090930_lab.xml" type="EX-101.LAB" size="153678" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/pom-20090930_lab.xml" />
|
|
1425
|
+
<edgar:xbrlFile sequence="23" file="pom-20090930_pre.xml" type="EX-101.PRE" size="164407" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/pom-20090930_pre.xml" />
|
|
1426
|
+
<edgar:xbrlFile sequence="24" file="d10q1.pdf" type="10-Q" size="1425079" description="COURTESY COPY OF QUARTERLY REPORT ON FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/8192/000119312509217423/d10q1.pdf" />
|
|
1427
|
+
</edgar:xbrlFiles>
|
|
1428
|
+
</edgar:xbrlFiling>
|
|
1429
|
+
</item>
|
|
1430
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/0000874016-09-000059-index.htm">
|
|
1431
|
+
<title>JONES APPAREL GROUP INC (0000874016) (Filer)</title>
|
|
1432
|
+
<link>http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/0000874016-09-000059-index.htm</link>
|
|
1433
|
+
<description>10-Q</description>
|
|
1434
|
+
<pubDate>Thu, 29 Oct 2009 16:04:20 EDT</pubDate>
|
|
1435
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1436
|
+
<edgar:companyName>JONES APPAREL GROUP INC</edgar:companyName>
|
|
1437
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1438
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1439
|
+
<edgar:cikNumber>0000874016</edgar:cikNumber>
|
|
1440
|
+
<edgar:accessionNumber>0000874016-09-000059</edgar:accessionNumber>
|
|
1441
|
+
<edgar:fileNumber>001-10746</edgar:fileNumber>
|
|
1442
|
+
<edgar:xbrlFiles>
|
|
1443
|
+
<edgar:xbrlFile sequence="1" file="tenq09_3q.htm" type="10-Q" size="1041196" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/tenq09_3q.htm" />
|
|
1444
|
+
<edgar:xbrlFile sequence="2" file="exhibit31.htm" type="EX-31" size="11582" description="EXHIBIT 31" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/exhibit31.htm" />
|
|
1445
|
+
<edgar:xbrlFile sequence="3" file="exhibit32.htm" type="EX-32" size="2417" description="EXHIBIT 32" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/exhibit32.htm" />
|
|
1446
|
+
<edgar:xbrlFile sequence="4" file="jny-20091003.xml" type="EX-101.INS" size="1569303" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/jny-20091003.xml" />
|
|
1447
|
+
<edgar:xbrlFile sequence="5" file="jny-20091003.xsd" type="EX-101.SCH" size="16330" description="XBRL SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/jny-20091003.xsd" />
|
|
1448
|
+
<edgar:xbrlFile sequence="6" file="jny-20091003_cal.xml" type="EX-101.CAL" size="68675" description="XBRL CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/jny-20091003_cal.xml" />
|
|
1449
|
+
<edgar:xbrlFile sequence="7" file="jny-20091003_def.xml" type="EX-101.DEF" size="19294" description="XBRL DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/jny-20091003_def.xml" />
|
|
1450
|
+
<edgar:xbrlFile sequence="8" file="jny-20091003_lab.xml" type="EX-101.LAB" size="251456" description="XBRL LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/jny-20091003_lab.xml" />
|
|
1451
|
+
<edgar:xbrlFile sequence="9" file="jny-20091003_pre.xml" type="EX-101.PRE" size="140983" description="XBRL PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/874016/000087401609000059/jny-20091003_pre.xml" />
|
|
1452
|
+
</edgar:xbrlFiles>
|
|
1453
|
+
</edgar:xbrlFiling>
|
|
1454
|
+
</item>
|
|
1455
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/0001140361-09-024040-index.htm">
|
|
1456
|
+
<title>COLGATE PALMOLIVE CO (0000021665) (Filer)</title>
|
|
1457
|
+
<link>http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/0001140361-09-024040-index.htm</link>
|
|
1458
|
+
<description>10-Q</description>
|
|
1459
|
+
<pubDate>Thu, 29 Oct 2009 15:06:51 EDT</pubDate>
|
|
1460
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1461
|
+
<edgar:companyName>COLGATE PALMOLIVE CO</edgar:companyName>
|
|
1462
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1463
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1464
|
+
<edgar:cikNumber>0000021665</edgar:cikNumber>
|
|
1465
|
+
<edgar:accessionNumber>0001140361-09-024040</edgar:accessionNumber>
|
|
1466
|
+
<edgar:fileNumber>001-00644</edgar:fileNumber>
|
|
1467
|
+
<edgar:xbrlFiles>
|
|
1468
|
+
<edgar:xbrlFile sequence="1" file="form10-q.htm" type="10-Q" size="896981" description="COLGATE-PALMOLIVE CO 10-Q 9-30-2009" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/form10-q.htm" />
|
|
1469
|
+
<edgar:xbrlFile sequence="2" file="ex12.htm" type="EX-12" size="27403" description="EXHIBIT 12" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/ex12.htm" />
|
|
1470
|
+
<edgar:xbrlFile sequence="3" file="ex31_a.htm" type="EX-31.A" size="16935" description="EXHIBIT 31-A" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/ex31_a.htm" />
|
|
1471
|
+
<edgar:xbrlFile sequence="4" file="ex31_b.htm" type="EX-31.B" size="15470" description="EXHIBIT 31-B" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/ex31_b.htm" />
|
|
1472
|
+
<edgar:xbrlFile sequence="5" file="ex32.htm" type="EX-32" size="9561" description="EXHIBIT 32" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/ex32.htm" />
|
|
1473
|
+
<edgar:xbrlFile sequence="6" file="cl-20090930.xml" type="EX-101.INS" size="605341" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/cl-20090930.xml" />
|
|
1474
|
+
<edgar:xbrlFile sequence="7" file="cl-20090930.xsd" type="EX-101.SCH" size="12901" description="XBRL TAXONOMY EXTENSION SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/cl-20090930.xsd" />
|
|
1475
|
+
<edgar:xbrlFile sequence="8" file="cl-20090930_cal.xml" type="EX-101.CAL" size="36589" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/cl-20090930_cal.xml" />
|
|
1476
|
+
<edgar:xbrlFile sequence="9" file="cl-20090930_lab.xml" type="EX-101.LAB" size="137748" description="XBRL TAXONOMY EXTENSION LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/cl-20090930_lab.xml" />
|
|
1477
|
+
<edgar:xbrlFile sequence="10" file="cl-20090930_pre.xml" type="EX-101.PRE" size="76556" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/21665/000114036109024040/cl-20090930_pre.xml" />
|
|
1478
|
+
</edgar:xbrlFiles>
|
|
1479
|
+
</edgar:xbrlFiling>
|
|
1480
|
+
</item>
|
|
1481
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/0000950123-09-054773-index.htm">
|
|
1482
|
+
<title>MASCO CORP /DE/ (0000062996) (Filer)</title>
|
|
1483
|
+
<link>http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/0000950123-09-054773-index.htm</link>
|
|
1484
|
+
<description>10-Q</description>
|
|
1485
|
+
<pubDate>Thu, 29 Oct 2009 14:41:39 EDT</pubDate>
|
|
1486
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1487
|
+
<edgar:companyName>MASCO CORP /DE/</edgar:companyName>
|
|
1488
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1489
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1490
|
+
<edgar:cikNumber>0000062996</edgar:cikNumber>
|
|
1491
|
+
<edgar:accessionNumber>0000950123-09-054773</edgar:accessionNumber>
|
|
1492
|
+
<edgar:fileNumber>001-05794</edgar:fileNumber>
|
|
1493
|
+
<edgar:xbrlFiles>
|
|
1494
|
+
<edgar:xbrlFile sequence="1" file="k48417e10vq.htm" type="10-Q" size="437438" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/k48417e10vq.htm" />
|
|
1495
|
+
<edgar:xbrlFile sequence="2" file="k48417exv12.htm" type="EX-12" size="33435" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/k48417exv12.htm" />
|
|
1496
|
+
<edgar:xbrlFile sequence="3" file="k48417exv31wa.htm" type="EX-31.A" size="8140" description="EX-31.A" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/k48417exv31wa.htm" />
|
|
1497
|
+
<edgar:xbrlFile sequence="4" file="k48417exv31wb.htm" type="EX-31.B" size="8409" description="EX-31.B" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/k48417exv31wb.htm" />
|
|
1498
|
+
<edgar:xbrlFile sequence="5" file="k48417exv32.htm" type="EX-32" size="4727" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/k48417exv32.htm" />
|
|
1499
|
+
<edgar:xbrlFile sequence="6" file="mas-20090930.xml" type="EX-101.INS" size="462039" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/mas-20090930.xml" />
|
|
1500
|
+
<edgar:xbrlFile sequence="7" file="mas-20090930.xsd" type="EX-101.SCH" size="13527" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/mas-20090930.xsd" />
|
|
1501
|
+
<edgar:xbrlFile sequence="8" file="mas-20090930_cal.xml" type="EX-101.CAL" size="38877" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/mas-20090930_cal.xml" />
|
|
1502
|
+
<edgar:xbrlFile sequence="9" file="mas-20090930_lab.xml" type="EX-101.LAB" size="139649" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/mas-20090930_lab.xml" />
|
|
1503
|
+
<edgar:xbrlFile sequence="10" file="mas-20090930_pre.xml" type="EX-101.PRE" size="80358" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/mas-20090930_pre.xml" />
|
|
1504
|
+
<edgar:xbrlFile sequence="11" file="mas-20090930_def.xml" type="EX-101.DEF" size="9889" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/62996/000095012309054773/mas-20090930_def.xml" />
|
|
1505
|
+
</edgar:xbrlFiles>
|
|
1506
|
+
</edgar:xbrlFiling>
|
|
1507
|
+
</item>
|
|
1508
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/0000277135-09-000043-index.htm">
|
|
1509
|
+
<title>GRAINGER W W INC (0000277135) (Filer)</title>
|
|
1510
|
+
<link>http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/0000277135-09-000043-index.htm</link>
|
|
1511
|
+
<description>10-Q</description>
|
|
1512
|
+
<pubDate>Thu, 29 Oct 2009 14:19:44 EDT</pubDate>
|
|
1513
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1514
|
+
<edgar:companyName>GRAINGER W W INC</edgar:companyName>
|
|
1515
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1516
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1517
|
+
<edgar:cikNumber>0000277135</edgar:cikNumber>
|
|
1518
|
+
<edgar:accessionNumber>0000277135-09-000043</edgar:accessionNumber>
|
|
1519
|
+
<edgar:fileNumber>001-05684</edgar:fileNumber>
|
|
1520
|
+
<edgar:xbrlFiles>
|
|
1521
|
+
<edgar:xbrlFile sequence="1" file="form10qq32009.htm" type="10-Q" size="823845" description="FORM 10Q Q3 2009" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/form10qq32009.htm" />
|
|
1522
|
+
<edgar:xbrlFile sequence="2" file="exhibit31a.htm" type="EX-31.A" size="15926" description="EXHIBIT 31A" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/exhibit31a.htm" />
|
|
1523
|
+
<edgar:xbrlFile sequence="3" file="exhibit31b.htm" type="EX-31.B" size="15175" description="EXHIBIT 31B" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/exhibit31b.htm" />
|
|
1524
|
+
<edgar:xbrlFile sequence="4" file="exhibit32a.htm" type="EX-32.A" size="6783" description="EXHIBIT 32A" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/exhibit32a.htm" />
|
|
1525
|
+
<edgar:xbrlFile sequence="5" file="exhibit32b.htm" type="EX-32.B" size="7289" description="EXHIBIT 32B" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/exhibit32b.htm" />
|
|
1526
|
+
<edgar:xbrlFile sequence="6" file="gww-20090930.xml" type="EX-101.INS" size="368119" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/gww-20090930.xml" />
|
|
1527
|
+
<edgar:xbrlFile sequence="7" file="gww-20090930.xsd" type="EX-101.SCH" size="10440" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/gww-20090930.xsd" />
|
|
1528
|
+
<edgar:xbrlFile sequence="8" file="gww-20090930_cal.xml" type="EX-101.CAL" size="53149" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/gww-20090930_cal.xml" />
|
|
1529
|
+
<edgar:xbrlFile sequence="9" file="gww-20090930_lab.xml" type="EX-101.LAB" size="157655" description="XBRL TAXONOMY EXTENSIONS LABELS LINKBASE" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/gww-20090930_lab.xml" />
|
|
1530
|
+
<edgar:xbrlFile sequence="10" file="gww-20090930_pre.xml" type="EX-101.PRE" size="103132" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/277135/000027713509000043/gww-20090930_pre.xml" />
|
|
1531
|
+
</edgar:xbrlFiles>
|
|
1532
|
+
</edgar:xbrlFiling>
|
|
1533
|
+
</item>
|
|
1534
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/0000950123-09-054738-index.htm">
|
|
1535
|
+
<title>LORILLARD, INC. (0001424847) (Filer)</title>
|
|
1536
|
+
<link>http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/0000950123-09-054738-index.htm</link>
|
|
1537
|
+
<description>10-Q</description>
|
|
1538
|
+
<pubDate>Thu, 29 Oct 2009 13:45:21 EDT</pubDate>
|
|
1539
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1540
|
+
<edgar:companyName>LORILLARD, INC.</edgar:companyName>
|
|
1541
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1542
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1543
|
+
<edgar:cikNumber>0001424847</edgar:cikNumber>
|
|
1544
|
+
<edgar:accessionNumber>0000950123-09-054738</edgar:accessionNumber>
|
|
1545
|
+
<edgar:fileNumber>001-34097</edgar:fileNumber>
|
|
1546
|
+
<edgar:xbrlFiles>
|
|
1547
|
+
<edgar:xbrlFile sequence="1" file="g20014e10vq.htm" type="10-Q" size="532585" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/g20014e10vq.htm" />
|
|
1548
|
+
<edgar:xbrlFile sequence="2" file="g20014exv31w1.htm" type="EX-31.1" size="8396" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/g20014exv31w1.htm" />
|
|
1549
|
+
<edgar:xbrlFile sequence="3" file="g20014exv31w2.htm" type="EX-31.2" size="8300" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/g20014exv31w2.htm" />
|
|
1550
|
+
<edgar:xbrlFile sequence="4" file="g20014exv32w1.htm" type="EX-32.1" size="4947" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/g20014exv32w1.htm" />
|
|
1551
|
+
<edgar:xbrlFile sequence="5" file="lo-20090930.xml" type="EX-101.INS" size="518463" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/lo-20090930.xml" />
|
|
1552
|
+
<edgar:xbrlFile sequence="6" file="lo-20090930.xsd" type="EX-101.SCH" size="11842" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/lo-20090930.xsd" />
|
|
1553
|
+
<edgar:xbrlFile sequence="7" file="lo-20090930_cal.xml" type="EX-101.CAL" size="37726" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/lo-20090930_cal.xml" />
|
|
1554
|
+
<edgar:xbrlFile sequence="8" file="lo-20090930_lab.xml" type="EX-101.LAB" size="152621" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/lo-20090930_lab.xml" />
|
|
1555
|
+
<edgar:xbrlFile sequence="9" file="lo-20090930_pre.xml" type="EX-101.PRE" size="86032" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/lo-20090930_pre.xml" />
|
|
1556
|
+
<edgar:xbrlFile sequence="10" file="lo-20090930_def.xml" type="EX-101.DEF" size="15473" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1424847/000095012309054738/lo-20090930_def.xml" />
|
|
1557
|
+
</edgar:xbrlFiles>
|
|
1558
|
+
</edgar:xbrlFiling>
|
|
1559
|
+
</item>
|
|
1560
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/0001004980-09-000102-index.htm">
|
|
1561
|
+
<title>PG&E CORP (0001004980) (Filer)</title>
|
|
1562
|
+
<link>http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/0001004980-09-000102-index.htm</link>
|
|
1563
|
+
<description>10-Q</description>
|
|
1564
|
+
<pubDate>Thu, 29 Oct 2009 13:25:32 EDT</pubDate>
|
|
1565
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1566
|
+
<edgar:companyName>PG&E CORP</edgar:companyName>
|
|
1567
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1568
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1569
|
+
<edgar:cikNumber>0001004980</edgar:cikNumber>
|
|
1570
|
+
<edgar:accessionNumber>0001004980-09-000102</edgar:accessionNumber>
|
|
1571
|
+
<edgar:fileNumber>001-12609</edgar:fileNumber>
|
|
1572
|
+
<edgar:xbrlFiles>
|
|
1573
|
+
<edgar:xbrlFile sequence="1" file="form10q.htm" type="10-Q" size="2241585" description="Q3'09 FORM 10Q" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/form10q.htm" />
|
|
1574
|
+
<edgar:xbrlFile sequence="2" file="ex0301.htm" type="EX-3.01" size="66042" description="EXHIBIT 3.1" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex0301.htm" />
|
|
1575
|
+
<edgar:xbrlFile sequence="3" file="ex0302.htm" type="EX-3.02" size="55035" description="EXHIBIT 3.2" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex0302.htm" />
|
|
1576
|
+
<edgar:xbrlFile sequence="4" file="ex1201.htm" type="EX-12.01" size="66826" description="EXHIBIT 12.1" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex1201.htm" />
|
|
1577
|
+
<edgar:xbrlFile sequence="5" file="ex1202.htm" type="EX-12.02" size="109013" description="EXHIBIT 12.2" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex1202.htm" />
|
|
1578
|
+
<edgar:xbrlFile sequence="6" file="ex1203.htm" type="EX-12.03" size="78296" description="EXHIBIT 12.3" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex1203.htm" />
|
|
1579
|
+
<edgar:xbrlFile sequence="7" file="ex3101.htm" type="EX-31.01" size="32250" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex3101.htm" />
|
|
1580
|
+
<edgar:xbrlFile sequence="8" file="ex3102.htm" type="EX-31.02" size="32991" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex3102.htm" />
|
|
1581
|
+
<edgar:xbrlFile sequence="9" file="ex3201.htm" type="EX-32.01" size="17441" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex3201.htm" />
|
|
1582
|
+
<edgar:xbrlFile sequence="10" file="ex3202.htm" type="EX-32.02" size="16255" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/ex3202.htm" />
|
|
1583
|
+
<edgar:xbrlFile sequence="11" file="pcg-20090930_cal.xml" type="EX-101.CAL" size="64634" description="XBRL TAXONOMY EXTENSION CALCULATION DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/pcg-20090930_cal.xml" />
|
|
1584
|
+
<edgar:xbrlFile sequence="12" file="pcg-20090930.xsd" type="EX-101.SCH" size="16815" description="XBRL TAXONOMY EXTENSION SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/pcg-20090930.xsd" />
|
|
1585
|
+
<edgar:xbrlFile sequence="13" file="pcg-20090930.xml" type="EX-101.INS" size="1157475" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/pcg-20090930.xml" />
|
|
1586
|
+
<edgar:xbrlFile sequence="14" file="pcg-20090930_lab.xml" type="EX-101.LAB" size="255130" description="XBRL TAXONOMY EXTENSION LABELS DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/pcg-20090930_lab.xml" />
|
|
1587
|
+
<edgar:xbrlFile sequence="15" file="pcg-20090930_pre.xml" type="EX-101.PRE" size="128946" description="XBRL TAXONOMY EXTENSION PRESENTATION DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1004980/000100498009000102/pcg-20090930_pre.xml" />
|
|
1588
|
+
</edgar:xbrlFiles>
|
|
1589
|
+
</edgar:xbrlFiling>
|
|
1590
|
+
</item>
|
|
1591
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/0001193125-09-217203-index.htm">
|
|
1592
|
+
<title>ALTRIA GROUP, INC. (0000764180) (Filer)</title>
|
|
1593
|
+
<link>http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/0001193125-09-217203-index.htm</link>
|
|
1594
|
+
<description>10-Q</description>
|
|
1595
|
+
<pubDate>Thu, 29 Oct 2009 12:39:21 EDT</pubDate>
|
|
1596
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1597
|
+
<edgar:companyName>ALTRIA GROUP, INC.</edgar:companyName>
|
|
1598
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1599
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1600
|
+
<edgar:cikNumber>0000764180</edgar:cikNumber>
|
|
1601
|
+
<edgar:accessionNumber>0001193125-09-217203</edgar:accessionNumber>
|
|
1602
|
+
<edgar:fileNumber>001-08940</edgar:fileNumber>
|
|
1603
|
+
<edgar:xbrlFiles>
|
|
1604
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1734205" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/d10q.htm" />
|
|
1605
|
+
<edgar:xbrlFile sequence="2" file="dex12.htm" type="EX-12" size="56318" description="STATEMENT REGARDING COMPUTATION OF RATIOS OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex12.htm" />
|
|
1606
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="9730" description="CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex311.htm" />
|
|
1607
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="9898" description="CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex312.htm" />
|
|
1608
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3836" description="CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex321.htm" />
|
|
1609
|
+
<edgar:xbrlFile sequence="6" file="dex322.htm" type="EX-32.2" size="3589" description="CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex322.htm" />
|
|
1610
|
+
<edgar:xbrlFile sequence="7" file="dex991.htm" type="EX-99.1" size="56302" description="CERTAIN LITIGATION MATTERS AND RECENT DEVELOPMENTS" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex991.htm" />
|
|
1611
|
+
<edgar:xbrlFile sequence="8" file="dex992.htm" type="EX-99.2" size="2419" description="TRIAL SCHEDULE FOR CERTAIN CASES" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/dex992.htm" />
|
|
1612
|
+
<edgar:xbrlFile sequence="9" file="mo-20090930.xml" type="EX-101.INS" size="1359899" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/mo-20090930.xml" />
|
|
1613
|
+
<edgar:xbrlFile sequence="10" file="mo-20090930.xsd" type="EX-101.SCH" size="23671" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/mo-20090930.xsd" />
|
|
1614
|
+
<edgar:xbrlFile sequence="11" file="mo-20090930_cal.xml" type="EX-101.CAL" size="63614" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/mo-20090930_cal.xml" />
|
|
1615
|
+
<edgar:xbrlFile sequence="12" file="mo-20090930_def.xml" type="EX-101.DEF" size="29371" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/mo-20090930_def.xml" />
|
|
1616
|
+
<edgar:xbrlFile sequence="13" file="mo-20090930_lab.xml" type="EX-101.LAB" size="165629" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/mo-20090930_lab.xml" />
|
|
1617
|
+
<edgar:xbrlFile sequence="14" file="mo-20090930_pre.xml" type="EX-101.PRE" size="130747" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/764180/000119312509217203/mo-20090930_pre.xml" />
|
|
1618
|
+
</edgar:xbrlFiles>
|
|
1619
|
+
</edgar:xbrlFiling>
|
|
1620
|
+
</item>
|
|
1621
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/0000950123-09-054673-index.htm">
|
|
1622
|
+
<title>WASTE MANAGEMENT INC (0000823768) (Filer)</title>
|
|
1623
|
+
<link>http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/0000950123-09-054673-index.htm</link>
|
|
1624
|
+
<description>10-Q</description>
|
|
1625
|
+
<pubDate>Thu, 29 Oct 2009 12:21:59 EDT</pubDate>
|
|
1626
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1627
|
+
<edgar:companyName>WASTE MANAGEMENT INC</edgar:companyName>
|
|
1628
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1629
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1630
|
+
<edgar:cikNumber>0000823768</edgar:cikNumber>
|
|
1631
|
+
<edgar:accessionNumber>0000950123-09-054673</edgar:accessionNumber>
|
|
1632
|
+
<edgar:fileNumber>001-12154</edgar:fileNumber>
|
|
1633
|
+
<edgar:xbrlFiles>
|
|
1634
|
+
<edgar:xbrlFile sequence="1" file="h67781e10vq.htm" type="10-Q" size="1058948" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/h67781e10vq.htm" />
|
|
1635
|
+
<edgar:xbrlFile sequence="2" file="h67781exv12.htm" type="EX-12" size="14031" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/h67781exv12.htm" />
|
|
1636
|
+
<edgar:xbrlFile sequence="3" file="h67781exv31w1.htm" type="EX-31.1" size="9116" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/h67781exv31w1.htm" />
|
|
1637
|
+
<edgar:xbrlFile sequence="4" file="h67781exv31w2.htm" type="EX-31.2" size="8963" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/h67781exv31w2.htm" />
|
|
1638
|
+
<edgar:xbrlFile sequence="5" file="h67781exv32w1.htm" type="EX-32.1" size="4149" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/h67781exv32w1.htm" />
|
|
1639
|
+
<edgar:xbrlFile sequence="6" file="h67781exv32w2.htm" type="EX-32.2" size="4178" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/h67781exv32w2.htm" />
|
|
1640
|
+
<edgar:xbrlFile sequence="7" file="wm-20090930.xml" type="EX-101.INS" size="825878" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/wm-20090930.xml" />
|
|
1641
|
+
<edgar:xbrlFile sequence="8" file="wm-20090930.xsd" type="EX-101.SCH" size="17939" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/wm-20090930.xsd" />
|
|
1642
|
+
<edgar:xbrlFile sequence="9" file="wm-20090930_cal.xml" type="EX-101.CAL" size="48077" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/wm-20090930_cal.xml" />
|
|
1643
|
+
<edgar:xbrlFile sequence="10" file="wm-20090930_lab.xml" type="EX-101.LAB" size="174885" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/wm-20090930_lab.xml" />
|
|
1644
|
+
<edgar:xbrlFile sequence="11" file="wm-20090930_pre.xml" type="EX-101.PRE" size="104351" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/wm-20090930_pre.xml" />
|
|
1645
|
+
<edgar:xbrlFile sequence="12" file="wm-20090930_def.xml" type="EX-101.DEF" size="18685" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/823768/000095012309054673/wm-20090930_def.xml" />
|
|
1646
|
+
</edgar:xbrlFiles>
|
|
1647
|
+
</edgar:xbrlFiling>
|
|
1648
|
+
</item>
|
|
1649
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/0000072207-09-000038-index.htm">
|
|
1650
|
+
<title>NOBLE ENERGY INC (0000072207) (Filer)</title>
|
|
1651
|
+
<link>http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/0000072207-09-000038-index.htm</link>
|
|
1652
|
+
<description>10-Q</description>
|
|
1653
|
+
<pubDate>Thu, 29 Oct 2009 12:08:39 EDT</pubDate>
|
|
1654
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1655
|
+
<edgar:companyName>NOBLE ENERGY INC</edgar:companyName>
|
|
1656
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1657
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1658
|
+
<edgar:cikNumber>0000072207</edgar:cikNumber>
|
|
1659
|
+
<edgar:accessionNumber>0000072207-09-000038</edgar:accessionNumber>
|
|
1660
|
+
<edgar:fileNumber>001-07964</edgar:fileNumber>
|
|
1661
|
+
<edgar:xbrlFiles>
|
|
1662
|
+
<edgar:xbrlFile sequence="1" file="form10-q.htm" type="10-Q" size="2374676" description="10-Q 09-30-2009" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/form10-q.htm" />
|
|
1663
|
+
<edgar:xbrlFile sequence="2" file="ex31-1.htm" type="EX-31.1" size="17359" description="CERTIFICATION OF CEO TO SECTION 302" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/ex31-1.htm" />
|
|
1664
|
+
<edgar:xbrlFile sequence="3" file="ex31-2.htm" type="EX-31.2" size="17187" description="CERTIFICATION OF CAO TO SECTION 302" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/ex31-2.htm" />
|
|
1665
|
+
<edgar:xbrlFile sequence="4" file="ex32-1.htm" type="EX-32.1" size="9094" description="CERTIFICATION OF CEO TO SECTION 906" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/ex32-1.htm" />
|
|
1666
|
+
<edgar:xbrlFile sequence="5" file="ex32-2.htm" type="EX-32.2" size="8896" description="CERTIFICATION OF CAO TO SECTION 906" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/ex32-2.htm" />
|
|
1667
|
+
<edgar:xbrlFile sequence="6" file="nbllogo.gif" type="GRAPHIC" size="2433" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbllogo.gif" />
|
|
1668
|
+
<edgar:xbrlFile sequence="7" file="nbl-20090930.xml" type="EX-101.INS" size="1137264" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbl-20090930.xml" />
|
|
1669
|
+
<edgar:xbrlFile sequence="8" file="nbl-20090930.xsd" type="EX-101.SCH" size="11409" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbl-20090930.xsd" />
|
|
1670
|
+
<edgar:xbrlFile sequence="9" file="nbl-20090930_cal.xml" type="EX-101.CAL" size="54507" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbl-20090930_cal.xml" />
|
|
1671
|
+
<edgar:xbrlFile sequence="10" file="nbl-20090930_lab.xml" type="EX-101.LAB" size="188928" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbl-20090930_lab.xml" />
|
|
1672
|
+
<edgar:xbrlFile sequence="11" file="nbl-20090930_pre.xml" type="EX-101.PRE" size="120380" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbl-20090930_pre.xml" />
|
|
1673
|
+
<edgar:xbrlFile sequence="12" file="nbl-20090930_def.xml" type="EX-101.DEF" size="13617" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/72207/000007220709000038/nbl-20090930_def.xml" />
|
|
1674
|
+
</edgar:xbrlFiles>
|
|
1675
|
+
</edgar:xbrlFiling>
|
|
1676
|
+
</item>
|
|
1677
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/0001193125-09-217067-index.htm">
|
|
1678
|
+
<title>PROCTER & GAMBLE CO (0000080424) (Filer)</title>
|
|
1679
|
+
<link>http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/0001193125-09-217067-index.htm</link>
|
|
1680
|
+
<description>10-Q</description>
|
|
1681
|
+
<pubDate>Thu, 29 Oct 2009 10:30:53 EDT</pubDate>
|
|
1682
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1683
|
+
<edgar:companyName>PROCTER & GAMBLE CO</edgar:companyName>
|
|
1684
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1685
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1686
|
+
<edgar:cikNumber>0000080424</edgar:cikNumber>
|
|
1687
|
+
<edgar:accessionNumber>0001193125-09-217067</edgar:accessionNumber>
|
|
1688
|
+
<edgar:fileNumber>001-00434</edgar:fileNumber>
|
|
1689
|
+
<edgar:xbrlFiles>
|
|
1690
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="550249" description="QUARTERLY REPORT" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/d10q.htm" />
|
|
1691
|
+
<edgar:xbrlFile sequence="2" file="dex32.htm" type="EX-3.2" size="42073" description="REGULATIONS" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex32.htm" />
|
|
1692
|
+
<edgar:xbrlFile sequence="3" file="dex11.htm" type="EX-11" size="21327" description="COMPUTATION OF EARNINGS PER SHARE" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex11.htm" />
|
|
1693
|
+
<edgar:xbrlFile sequence="4" file="dex12.htm" type="EX-12" size="27015" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex12.htm" />
|
|
1694
|
+
<edgar:xbrlFile sequence="5" file="dex311.htm" type="EX-31.1" size="9588" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex311.htm" />
|
|
1695
|
+
<edgar:xbrlFile sequence="6" file="dex312.htm" type="EX-31.2" size="9562" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex312.htm" />
|
|
1696
|
+
<edgar:xbrlFile sequence="7" file="dex321.htm" type="EX-32.1" size="3442" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex321.htm" />
|
|
1697
|
+
<edgar:xbrlFile sequence="8" file="dex322.htm" type="EX-32.2" size="3420" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/dex322.htm" />
|
|
1698
|
+
<edgar:xbrlFile sequence="9" file="pg-20090930.xml" type="EX-101.INS" size="342914" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/pg-20090930.xml" />
|
|
1699
|
+
<edgar:xbrlFile sequence="10" file="pg-20090930.xsd" type="EX-101.SCH" size="13068" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/pg-20090930.xsd" />
|
|
1700
|
+
<edgar:xbrlFile sequence="11" file="pg-20090930_cal.xml" type="EX-101.CAL" size="38700" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/pg-20090930_cal.xml" />
|
|
1701
|
+
<edgar:xbrlFile sequence="12" file="pg-20090930_lab.xml" type="EX-101.LAB" size="87333" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/pg-20090930_lab.xml" />
|
|
1702
|
+
<edgar:xbrlFile sequence="13" file="pg-20090930_pre.xml" type="EX-101.PRE" size="70161" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/pg-20090930_pre.xml" />
|
|
1703
|
+
<edgar:xbrlFile sequence="14" file="g60929ex32pa1_2.jpg" type="GRAPHIC" size="1894" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/g60929ex32pa1_2.jpg" />
|
|
1704
|
+
<edgar:xbrlFile sequence="15" file="g60929fs.jpg" type="GRAPHIC" size="2246" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/80424/000119312509217067/g60929fs.jpg" />
|
|
1705
|
+
</edgar:xbrlFiles>
|
|
1706
|
+
</edgar:xbrlFiling>
|
|
1707
|
+
</item>
|
|
1708
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/0001004155-09-000088-index.htm">
|
|
1709
|
+
<title>AGL RESOURCES INC (0001004155) (Filer)</title>
|
|
1710
|
+
<link>http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/0001004155-09-000088-index.htm</link>
|
|
1711
|
+
<description>10-Q</description>
|
|
1712
|
+
<pubDate>Thu, 29 Oct 2009 08:03:31 EDT</pubDate>
|
|
1713
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1714
|
+
<edgar:companyName>AGL RESOURCES INC</edgar:companyName>
|
|
1715
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1716
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1717
|
+
<edgar:cikNumber>0001004155</edgar:cikNumber>
|
|
1718
|
+
<edgar:accessionNumber>0001004155-09-000088</edgar:accessionNumber>
|
|
1719
|
+
<edgar:fileNumber>001-14174</edgar:fileNumber>
|
|
1720
|
+
<edgar:xbrlFiles>
|
|
1721
|
+
<edgar:xbrlFile sequence="1" file="form_10-q.htm" type="10-Q" size="2377425" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/form_10-q.htm" />
|
|
1722
|
+
<edgar:xbrlFile sequence="2" file="form10q.pdf" type="10-Q" size="284789" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/form10q.pdf" />
|
|
1723
|
+
<edgar:xbrlFile sequence="3" file="exhibit_10-2.htm" type="EX-10.2" size="142109" description="EXHIBIT 10.2" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/exhibit_10-2.htm" />
|
|
1724
|
+
<edgar:xbrlFile sequence="4" file="exhibit_12.htm" type="EX-12" size="82739" description="EXHIBIT 12" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/exhibit_12.htm" />
|
|
1725
|
+
<edgar:xbrlFile sequence="5" file="exhibit_31-1.htm" type="EX-31.1" size="16558" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/exhibit_31-1.htm" />
|
|
1726
|
+
<edgar:xbrlFile sequence="6" file="exhibit_31-2.htm" type="EX-31.2" size="16439" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/exhibit_31-2.htm" />
|
|
1727
|
+
<edgar:xbrlFile sequence="7" file="exhibit_32-1.htm" type="EX-32.1" size="8324" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/exhibit_32-1.htm" />
|
|
1728
|
+
<edgar:xbrlFile sequence="8" file="exhibit_32-2.htm" type="EX-32.2" size="8328" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/exhibit_32-2.htm" />
|
|
1729
|
+
<edgar:xbrlFile sequence="9" file="agl-20090930_cal.xml" type="EX-101.CAL" size="68612" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/agl-20090930_cal.xml" />
|
|
1730
|
+
<edgar:xbrlFile sequence="10" file="agl-20090930_def.xml" type="EX-101.DEF" size="13531" description="XBRL TAXONOMY DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/agl-20090930_def.xml" />
|
|
1731
|
+
<edgar:xbrlFile sequence="11" file="agl-20090930.xml" type="EX-101.INS" size="1108451" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/agl-20090930.xml" />
|
|
1732
|
+
<edgar:xbrlFile sequence="12" file="agl-20090930_lab.xml" type="EX-101.LAB" size="219249" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/agl-20090930_lab.xml" />
|
|
1733
|
+
<edgar:xbrlFile sequence="13" file="agl-20090930_pre.xml" type="EX-101.PRE" size="131275" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/agl-20090930_pre.xml" />
|
|
1734
|
+
<edgar:xbrlFile sequence="14" file="agl-20090930.xsd" type="EX-101.SCH" size="14093" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/agl-20090930.xsd" />
|
|
1735
|
+
<edgar:xbrlFile sequence="15" file="nymexcurve.jpg" type="GRAPHIC" size="19259" description="NYMEX CURVE" url="http://www.sec.gov/Archives/edgar/data/1004155/000100415509000088/nymexcurve.jpg" />
|
|
1736
|
+
</edgar:xbrlFiles>
|
|
1737
|
+
</edgar:xbrlFiling>
|
|
1738
|
+
</item>
|
|
1739
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/0000950123-09-054484-index.htm">
|
|
1740
|
+
<title>WILLIAMS COMPANIES INC (0000107263) (Filer)</title>
|
|
1741
|
+
<link>http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/0000950123-09-054484-index.htm</link>
|
|
1742
|
+
<description>10-Q</description>
|
|
1743
|
+
<pubDate>Thu, 29 Oct 2009 07:29:34 EDT</pubDate>
|
|
1744
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1745
|
+
<edgar:companyName>WILLIAMS COMPANIES INC</edgar:companyName>
|
|
1746
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1747
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1748
|
+
<edgar:cikNumber>0000107263</edgar:cikNumber>
|
|
1749
|
+
<edgar:accessionNumber>0000950123-09-054484</edgar:accessionNumber>
|
|
1750
|
+
<edgar:fileNumber>001-04174</edgar:fileNumber>
|
|
1751
|
+
<edgar:xbrlFiles>
|
|
1752
|
+
<edgar:xbrlFile sequence="1" file="c54210e10vq.htm" type="10-Q" size="739847" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/c54210e10vq.htm" />
|
|
1753
|
+
<edgar:xbrlFile sequence="2" file="c54210exv12.htm" type="EX-12" size="8631" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/c54210exv12.htm" />
|
|
1754
|
+
<edgar:xbrlFile sequence="3" file="c54210exv31w1.htm" type="EX-31.1" size="7078" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/c54210exv31w1.htm" />
|
|
1755
|
+
<edgar:xbrlFile sequence="4" file="c54210exv31w2.htm" type="EX-31.2" size="7363" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/c54210exv31w2.htm" />
|
|
1756
|
+
<edgar:xbrlFile sequence="5" file="c54210exv32.htm" type="EX-32" size="3006" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/c54210exv32.htm" />
|
|
1757
|
+
<edgar:xbrlFile sequence="6" file="wmb-20090930.xml" type="EX-101.INS" size="603368" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/wmb-20090930.xml" />
|
|
1758
|
+
<edgar:xbrlFile sequence="7" file="wmb-20090930.xsd" type="EX-101.SCH" size="22916" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/wmb-20090930.xsd" />
|
|
1759
|
+
<edgar:xbrlFile sequence="8" file="wmb-20090930_cal.xml" type="EX-101.CAL" size="71176" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/wmb-20090930_cal.xml" />
|
|
1760
|
+
<edgar:xbrlFile sequence="9" file="wmb-20090930_lab.xml" type="EX-101.LAB" size="240388" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/wmb-20090930_lab.xml" />
|
|
1761
|
+
<edgar:xbrlFile sequence="10" file="wmb-20090930_pre.xml" type="EX-101.PRE" size="156916" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/wmb-20090930_pre.xml" />
|
|
1762
|
+
<edgar:xbrlFile sequence="11" file="wmb-20090930_def.xml" type="EX-101.DEF" size="122447" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/wmb-20090930_def.xml" />
|
|
1763
|
+
<edgar:xbrlFile sequence="12" file="c54210c5421001.gif" type="GRAPHIC" size="20338" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/107263/000095012309054484/c54210c5421001.gif" />
|
|
1764
|
+
</edgar:xbrlFiles>
|
|
1765
|
+
</edgar:xbrlFiling>
|
|
1766
|
+
</item>
|
|
1767
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/0001193125-09-216813-index.htm">
|
|
1768
|
+
<title>AVON PRODUCTS INC (0000008868) (Filer)</title>
|
|
1769
|
+
<link>http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/0001193125-09-216813-index.htm</link>
|
|
1770
|
+
<description>10-Q</description>
|
|
1771
|
+
<pubDate>Thu, 29 Oct 2009 07:04:33 EDT</pubDate>
|
|
1772
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1773
|
+
<edgar:companyName>AVON PRODUCTS INC</edgar:companyName>
|
|
1774
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1775
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1776
|
+
<edgar:cikNumber>0000008868</edgar:cikNumber>
|
|
1777
|
+
<edgar:accessionNumber>0001193125-09-216813</edgar:accessionNumber>
|
|
1778
|
+
<edgar:fileNumber>001-04881</edgar:fileNumber>
|
|
1779
|
+
<edgar:xbrlFiles>
|
|
1780
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="776863" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/d10q.htm" />
|
|
1781
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="5685" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/dex311.htm" />
|
|
1782
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="5726" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/dex312.htm" />
|
|
1783
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="2869" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/dex321.htm" />
|
|
1784
|
+
<edgar:xbrlFile sequence="5" file="dex322.htm" type="EX-32.2" size="2935" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/dex322.htm" />
|
|
1785
|
+
<edgar:xbrlFile sequence="6" file="avp-20090930.xml" type="EX-101.INS" size="535236" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/avp-20090930.xml" />
|
|
1786
|
+
<edgar:xbrlFile sequence="7" file="avp-20090930.xsd" type="EX-101.SCH" size="12445" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/avp-20090930.xsd" />
|
|
1787
|
+
<edgar:xbrlFile sequence="8" file="avp-20090930_cal.xml" type="EX-101.CAL" size="36162" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/avp-20090930_cal.xml" />
|
|
1788
|
+
<edgar:xbrlFile sequence="9" file="avp-20090930_lab.xml" type="EX-101.LAB" size="83263" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/avp-20090930_lab.xml" />
|
|
1789
|
+
<edgar:xbrlFile sequence="10" file="avp-20090930_pre.xml" type="EX-101.PRE" size="68935" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/8868/000119312509216813/avp-20090930_pre.xml" />
|
|
1790
|
+
</edgar:xbrlFiles>
|
|
1791
|
+
</edgar:xbrlFiling>
|
|
1792
|
+
</item>
|
|
1793
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/0001140361-09-024015-index.htm">
|
|
1794
|
+
<title>KBR, INC. (0001357615) (Filer)</title>
|
|
1795
|
+
<link>http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/0001140361-09-024015-index.htm</link>
|
|
1796
|
+
<description>10-Q</description>
|
|
1797
|
+
<pubDate>Thu, 29 Oct 2009 06:17:25 EDT</pubDate>
|
|
1798
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1799
|
+
<edgar:companyName>KBR, INC.</edgar:companyName>
|
|
1800
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1801
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1802
|
+
<edgar:cikNumber>0001357615</edgar:cikNumber>
|
|
1803
|
+
<edgar:accessionNumber>0001140361-09-024015</edgar:accessionNumber>
|
|
1804
|
+
<edgar:fileNumber>001-33146</edgar:fileNumber>
|
|
1805
|
+
<edgar:xbrlFiles>
|
|
1806
|
+
<edgar:xbrlFile sequence="1" file="form10_q.htm" type="10-Q" size="1671186" description="KBR INC 10-Q 9-30-2009" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/form10_q.htm" />
|
|
1807
|
+
<edgar:xbrlFile sequence="2" file="ex31_1.htm" type="EX-31.1" size="10168" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/ex31_1.htm" />
|
|
1808
|
+
<edgar:xbrlFile sequence="3" file="ex31_2.htm" type="EX-31.2" size="9863" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/ex31_2.htm" />
|
|
1809
|
+
<edgar:xbrlFile sequence="4" file="ex32_1.htm" type="EX-32.1" size="5058" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/ex32_1.htm" />
|
|
1810
|
+
<edgar:xbrlFile sequence="5" file="ex32_2.htm" type="EX-32.2" size="5136" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/ex32_2.htm" />
|
|
1811
|
+
<edgar:xbrlFile sequence="6" file="kbr-20090930.xml" type="EX-101.INS" size="768829" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/kbr-20090930.xml" />
|
|
1812
|
+
<edgar:xbrlFile sequence="7" file="kbr-20090930.xsd" type="EX-101.SCH" size="23239" description="XBRL TAXONOMY EXTENSION SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/kbr-20090930.xsd" />
|
|
1813
|
+
<edgar:xbrlFile sequence="8" file="kbr-20090930_cal.xml" type="EX-101.CAL" size="65302" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/kbr-20090930_cal.xml" />
|
|
1814
|
+
<edgar:xbrlFile sequence="9" file="kbr-20090930_lab.xml" type="EX-101.LAB" size="317691" description="XBRL TAXONOMY EXTENSION LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/kbr-20090930_lab.xml" />
|
|
1815
|
+
<edgar:xbrlFile sequence="10" file="kbr-20090930_pre.xml" type="EX-101.PRE" size="142829" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1357615/000114036109024015/kbr-20090930_pre.xml" />
|
|
1816
|
+
</edgar:xbrlFiles>
|
|
1817
|
+
</edgar:xbrlFiling>
|
|
1818
|
+
</item>
|
|
1819
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/0000950123-09-054293-index.htm">
|
|
1820
|
+
<title>NEWMONT MINING CORP /DE/ (0001164727) (Filer)</title>
|
|
1821
|
+
<link>http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/0000950123-09-054293-index.htm</link>
|
|
1822
|
+
<description>10-Q</description>
|
|
1823
|
+
<pubDate>Wed, 28 Oct 2009 17:51:58 EDT</pubDate>
|
|
1824
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1825
|
+
<edgar:companyName>NEWMONT MINING CORP /DE/</edgar:companyName>
|
|
1826
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1827
|
+
<edgar:filingDate>10/29/2009</edgar:filingDate>
|
|
1828
|
+
<edgar:cikNumber>0001164727</edgar:cikNumber>
|
|
1829
|
+
<edgar:accessionNumber>0000950123-09-054293</edgar:accessionNumber>
|
|
1830
|
+
<edgar:fileNumber>001-31240</edgar:fileNumber>
|
|
1831
|
+
<edgar:xbrlFiles>
|
|
1832
|
+
<edgar:xbrlFile sequence="1" file="c91265e10vq.htm" type="10-Q" size="1370489" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265e10vq.htm" />
|
|
1833
|
+
<edgar:xbrlFile sequence="2" file="c91265exv3w1.htm" type="EX-3.1" size="59520" description="EXHIBIT 3.1" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv3w1.htm" />
|
|
1834
|
+
<edgar:xbrlFile sequence="3" file="c91265exv3w5.htm" type="EX-3.5" size="63123" description="EXHIBIT 3.5" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv3w5.htm" />
|
|
1835
|
+
<edgar:xbrlFile sequence="4" file="c91265exv12w1.htm" type="EX-12.1" size="7378" description="EXHIBIT 12.1" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv12w1.htm" />
|
|
1836
|
+
<edgar:xbrlFile sequence="5" file="c91265exv31w1.htm" type="EX-31.1" size="6231" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv31w1.htm" />
|
|
1837
|
+
<edgar:xbrlFile sequence="6" file="c91265exv31w2.htm" type="EX-31.2" size="6198" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv31w2.htm" />
|
|
1838
|
+
<edgar:xbrlFile sequence="7" file="c91265exv32w1.htm" type="EX-32.1" size="3248" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv32w1.htm" />
|
|
1839
|
+
<edgar:xbrlFile sequence="8" file="c91265exv32w2.htm" type="EX-32.2" size="3217" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/c91265exv32w2.htm" />
|
|
1840
|
+
<edgar:xbrlFile sequence="9" file="nem-20090930.xml" type="EX-101.INS" size="1355442" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/nem-20090930.xml" />
|
|
1841
|
+
<edgar:xbrlFile sequence="10" file="nem-20090930.xsd" type="EX-101.SCH" size="19616" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/nem-20090930.xsd" />
|
|
1842
|
+
<edgar:xbrlFile sequence="11" file="nem-20090930_cal.xml" type="EX-101.CAL" size="58059" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/nem-20090930_cal.xml" />
|
|
1843
|
+
<edgar:xbrlFile sequence="12" file="nem-20090930_lab.xml" type="EX-101.LAB" size="185141" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/nem-20090930_lab.xml" />
|
|
1844
|
+
<edgar:xbrlFile sequence="13" file="nem-20090930_pre.xml" type="EX-101.PRE" size="103898" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/nem-20090930_pre.xml" />
|
|
1845
|
+
<edgar:xbrlFile sequence="14" file="nem-20090930_def.xml" type="EX-101.DEF" size="12849" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1164727/000095012309054293/nem-20090930_def.xml" />
|
|
1846
|
+
</edgar:xbrlFiles>
|
|
1847
|
+
</edgar:xbrlFiling>
|
|
1848
|
+
</item>
|
|
1849
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/0001047469-09-009249-index.htm">
|
|
1850
|
+
<title>QWEST COMMUNICATIONS INTERNATIONAL INC (0001037949) (Filer)</title>
|
|
1851
|
+
<link>http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/0001047469-09-009249-index.htm</link>
|
|
1852
|
+
<description>10-Q</description>
|
|
1853
|
+
<pubDate>Wed, 28 Oct 2009 17:24:57 EDT</pubDate>
|
|
1854
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1855
|
+
<edgar:companyName>QWEST COMMUNICATIONS INTERNATIONAL INC</edgar:companyName>
|
|
1856
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1857
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
1858
|
+
<edgar:cikNumber>0001037949</edgar:cikNumber>
|
|
1859
|
+
<edgar:accessionNumber>0001047469-09-009249</edgar:accessionNumber>
|
|
1860
|
+
<edgar:fileNumber>001-15577</edgar:fileNumber>
|
|
1861
|
+
<edgar:xbrlFiles>
|
|
1862
|
+
<edgar:xbrlFile sequence="1" file="a2195061z10-q.htm" type="10-Q" size="1425322" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061z10-q.htm" />
|
|
1863
|
+
<edgar:xbrlFile sequence="2" file="a2195061zex-10_25.htm" type="EX-10.25" size="71947" description="EX 10.25" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-10_25.htm" />
|
|
1864
|
+
<edgar:xbrlFile sequence="3" file="a2195061zex-10_26.htm" type="EX-10.26" size="9701" description="EX 10.26" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-10_26.htm" />
|
|
1865
|
+
<edgar:xbrlFile sequence="4" file="a2195061zex-12.htm" type="EX-12" size="30364" description="EXHIBIT 12" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-12.htm" />
|
|
1866
|
+
<edgar:xbrlFile sequence="5" file="a2195061zex-31_1.htm" type="EX-31.1" size="8061" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-31_1.htm" />
|
|
1867
|
+
<edgar:xbrlFile sequence="6" file="a2195061zex-31_2.htm" type="EX-31.2" size="8083" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-31_2.htm" />
|
|
1868
|
+
<edgar:xbrlFile sequence="7" file="a2195061zex-32.htm" type="EX-32" size="5948" description="EXHIBIT 32" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-32.htm" />
|
|
1869
|
+
<edgar:xbrlFile sequence="8" file="a2195061zex-99_1.htm" type="EX-99.1" size="186948" description="EXHIBIT 99.1" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-99_1.htm" />
|
|
1870
|
+
<edgar:xbrlFile sequence="9" file="a2195061zex-99_2.htm" type="EX-99.2" size="109449" description="EXHIBIT 99.2" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/a2195061zex-99_2.htm" />
|
|
1871
|
+
<edgar:xbrlFile sequence="10" file="q-20090930.xml" type="EX-101.INS" size="941435" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/q-20090930.xml" />
|
|
1872
|
+
<edgar:xbrlFile sequence="11" file="q-20090930.xsd" type="EX-101.SCH" size="13560" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/q-20090930.xsd" />
|
|
1873
|
+
<edgar:xbrlFile sequence="12" file="q-20090930_cal.xml" type="EX-101.CAL" size="37819" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/q-20090930_cal.xml" />
|
|
1874
|
+
<edgar:xbrlFile sequence="13" file="q-20090930_lab.xml" type="EX-101.LAB" size="206351" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/q-20090930_lab.xml" />
|
|
1875
|
+
<edgar:xbrlFile sequence="14" file="q-20090930_pre.xml" type="EX-101.PRE" size="90599" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/1037949/000104746909009249/q-20090930_pre.xml" />
|
|
1876
|
+
</edgar:xbrlFiles>
|
|
1877
|
+
</edgar:xbrlFiling>
|
|
1878
|
+
</item>
|
|
1879
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/0000950123-09-054254-index.htm">
|
|
1880
|
+
<title>HARRIS CORP /DE/ (0000202058) (Filer)</title>
|
|
1881
|
+
<link>http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/0000950123-09-054254-index.htm</link>
|
|
1882
|
+
<description>10-Q</description>
|
|
1883
|
+
<pubDate>Wed, 28 Oct 2009 17:18:24 EDT</pubDate>
|
|
1884
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1885
|
+
<edgar:companyName>HARRIS CORP /DE/</edgar:companyName>
|
|
1886
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1887
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
1888
|
+
<edgar:cikNumber>0000202058</edgar:cikNumber>
|
|
1889
|
+
<edgar:accessionNumber>0000950123-09-054254</edgar:accessionNumber>
|
|
1890
|
+
<edgar:fileNumber>001-03863</edgar:fileNumber>
|
|
1891
|
+
<edgar:xbrlFiles>
|
|
1892
|
+
<edgar:xbrlFile sequence="1" file="g20630e10vq.htm" type="10-Q" size="358241" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630e10vq.htm" />
|
|
1893
|
+
<edgar:xbrlFile sequence="2" file="g20630exv10wxby.htm" type="EX-10.(B)" size="21626" description="EX-10.(B)" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv10wxby.htm" />
|
|
1894
|
+
<edgar:xbrlFile sequence="3" file="g20630exv10wxcy.htm" type="EX-10.(C)" size="4283" description="EX-10.(C)" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv10wxcy.htm" />
|
|
1895
|
+
<edgar:xbrlFile sequence="4" file="g20630exv10wxdy.htm" type="EX-10.(D)" size="4915" description="EX-10.(D)" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv10wxdy.htm" />
|
|
1896
|
+
<edgar:xbrlFile sequence="5" file="g20630exv12.htm" type="EX-12" size="8842" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv12.htm" />
|
|
1897
|
+
<edgar:xbrlFile sequence="6" file="g20630exv15.htm" type="EX-15" size="3220" description="EX-15" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv15.htm" />
|
|
1898
|
+
<edgar:xbrlFile sequence="7" file="g20630exv31w1.htm" type="EX-31.1" size="8020" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv31w1.htm" />
|
|
1899
|
+
<edgar:xbrlFile sequence="8" file="g20630exv31w2.htm" type="EX-31.2" size="8343" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv31w2.htm" />
|
|
1900
|
+
<edgar:xbrlFile sequence="9" file="g20630exv32w1.htm" type="EX-32.1" size="3128" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv32w1.htm" />
|
|
1901
|
+
<edgar:xbrlFile sequence="10" file="g20630exv32w2.htm" type="EX-32.2" size="3452" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630exv32w2.htm" />
|
|
1902
|
+
<edgar:xbrlFile sequence="11" file="hrs-20091002.xml" type="EX-101.INS" size="191084" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/hrs-20091002.xml" />
|
|
1903
|
+
<edgar:xbrlFile sequence="12" file="hrs-20091002.xsd" type="EX-101.SCH" size="12126" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/hrs-20091002.xsd" />
|
|
1904
|
+
<edgar:xbrlFile sequence="13" file="hrs-20091002_cal.xml" type="EX-101.CAL" size="40717" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/hrs-20091002_cal.xml" />
|
|
1905
|
+
<edgar:xbrlFile sequence="14" file="hrs-20091002_lab.xml" type="EX-101.LAB" size="147653" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/hrs-20091002_lab.xml" />
|
|
1906
|
+
<edgar:xbrlFile sequence="15" file="hrs-20091002_pre.xml" type="EX-101.PRE" size="83093" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/hrs-20091002_pre.xml" />
|
|
1907
|
+
<edgar:xbrlFile sequence="16" file="hrs-20091002_def.xml" type="EX-101.DEF" size="9510" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/hrs-20091002_def.xml" />
|
|
1908
|
+
<edgar:xbrlFile sequence="17" file="g20630g2063000.gif" type="GRAPHIC" size="2656" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/202058/000095012309054254/g20630g2063000.gif" />
|
|
1909
|
+
</edgar:xbrlFiles>
|
|
1910
|
+
</edgar:xbrlFiling>
|
|
1911
|
+
</item>
|
|
1912
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/0001193125-09-216185-index.htm">
|
|
1913
|
+
<title>OPEN TEXT CORP (0001002638) (Filer)</title>
|
|
1914
|
+
<link>http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/0001193125-09-216185-index.htm</link>
|
|
1915
|
+
<description>10-Q</description>
|
|
1916
|
+
<pubDate>Wed, 28 Oct 2009 16:31:02 EDT</pubDate>
|
|
1917
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1918
|
+
<edgar:companyName>OPEN TEXT CORP</edgar:companyName>
|
|
1919
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1920
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
1921
|
+
<edgar:cikNumber>0001002638</edgar:cikNumber>
|
|
1922
|
+
<edgar:accessionNumber>0001193125-09-216185</edgar:accessionNumber>
|
|
1923
|
+
<edgar:fileNumber>000-27544</edgar:fileNumber>
|
|
1924
|
+
<edgar:xbrlFiles>
|
|
1925
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="610022" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/d10q.htm" />
|
|
1926
|
+
<edgar:xbrlFile sequence="2" file="dex1030.htm" type="EX-10.30" size="133629" description="REVISED EMPLOYMENT AGREEMENT BETWEEN JOHN WILKERSON AND THE COMPANY" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/dex1030.htm" />
|
|
1927
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="9649" description="CERTIFICATION OF CEO PURSUANT TO SECTION 302" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/dex311.htm" />
|
|
1928
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="9647" description="CERTIFICATION OF CFO PURSUANT TO SECTION 302" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/dex312.htm" />
|
|
1929
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3107" description="CERTIFICATION OF CEO PURSUANT TO SECTION 906" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/dex321.htm" />
|
|
1930
|
+
<edgar:xbrlFile sequence="6" file="dex322.htm" type="EX-32.2" size="3091" description="CERTIFICATION OF CFO PURSUANT TO SECTION 906" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/dex322.htm" />
|
|
1931
|
+
<edgar:xbrlFile sequence="7" file="otex-20090930.xml" type="EX-101.INS" size="886328" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/otex-20090930.xml" />
|
|
1932
|
+
<edgar:xbrlFile sequence="8" file="otex-20090930.xsd" type="EX-101.SCH" size="19766" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/otex-20090930.xsd" />
|
|
1933
|
+
<edgar:xbrlFile sequence="9" file="otex-20090930_cal.xml" type="EX-101.CAL" size="71046" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/otex-20090930_cal.xml" />
|
|
1934
|
+
<edgar:xbrlFile sequence="10" file="otex-20090930_def.xml" type="EX-101.DEF" size="18290" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/otex-20090930_def.xml" />
|
|
1935
|
+
<edgar:xbrlFile sequence="11" file="otex-20090930_lab.xml" type="EX-101.LAB" size="269048" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/otex-20090930_lab.xml" />
|
|
1936
|
+
<edgar:xbrlFile sequence="12" file="otex-20090930_pre.xml" type="EX-101.PRE" size="145590" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/otex-20090930_pre.xml" />
|
|
1937
|
+
<edgar:xbrlFile sequence="13" file="g89644img001.jpg" type="GRAPHIC" size="3040" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/1002638/000119312509216185/g89644img001.jpg" />
|
|
1938
|
+
</edgar:xbrlFiles>
|
|
1939
|
+
</edgar:xbrlFiling>
|
|
1940
|
+
</item>
|
|
1941
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/0001336047-09-000053-index.htm">
|
|
1942
|
+
<title>Boardwalk Pipeline Partners, LP (0001336047) (Filer)</title>
|
|
1943
|
+
<link>http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/0001336047-09-000053-index.htm</link>
|
|
1944
|
+
<description>10-Q</description>
|
|
1945
|
+
<pubDate>Wed, 28 Oct 2009 16:29:36 EDT</pubDate>
|
|
1946
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1947
|
+
<edgar:companyName>Boardwalk Pipeline Partners, LP</edgar:companyName>
|
|
1948
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
1949
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
1950
|
+
<edgar:cikNumber>0001336047</edgar:cikNumber>
|
|
1951
|
+
<edgar:accessionNumber>0001336047-09-000053</edgar:accessionNumber>
|
|
1952
|
+
<edgar:fileNumber>001-32665</edgar:fileNumber>
|
|
1953
|
+
<edgar:xbrlFiles>
|
|
1954
|
+
<edgar:xbrlFile sequence="1" file="form10q09302009.htm" type="10-Q" size="1096325" description="FORM 10-Q 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/form10q09302009.htm" />
|
|
1955
|
+
<edgar:xbrlFile sequence="2" file="exhibit31_1.htm" type="EX-31.1" size="16470" description="EXHIBIT 31.1" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/exhibit31_1.htm" />
|
|
1956
|
+
<edgar:xbrlFile sequence="3" file="exhibit31_2.htm" type="EX-31.2" size="16434" description="EXHIBIT 31.2" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/exhibit31_2.htm" />
|
|
1957
|
+
<edgar:xbrlFile sequence="4" file="exhibit32_1.htm" type="EX-32.1" size="6359" description="EXHIBIT 32.1" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/exhibit32_1.htm" />
|
|
1958
|
+
<edgar:xbrlFile sequence="5" file="exhibit32_2.htm" type="EX-32.2" size="6209" description="EXHIBIT 32.2" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/exhibit32_2.htm" />
|
|
1959
|
+
<edgar:xbrlFile sequence="6" file="form10q09302009.pdf" type="10-Q" size="347093" description="FORM 10-Q 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/form10q09302009.pdf" />
|
|
1960
|
+
<edgar:xbrlFile sequence="7" file="bwp-20090930.xml" type="EX-101.INS" size="153504" description="XBRL INSTANCE DOCUMENT 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/bwp-20090930.xml" />
|
|
1961
|
+
<edgar:xbrlFile sequence="8" file="bwp-20090930.xsd" type="EX-101.SCH" size="20533" description="XBRL TAXONOMY 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/bwp-20090930.xsd" />
|
|
1962
|
+
<edgar:xbrlFile sequence="9" file="bwp-20090930_cal.xml" type="EX-101.CAL" size="66026" description="XBRL TAXONOMY CALCULATION 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/bwp-20090930_cal.xml" />
|
|
1963
|
+
<edgar:xbrlFile sequence="10" file="bwp-20090930_def.xml" type="EX-101.DEF" size="10863" description="XBRL TAXONOMY DEFINITION 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/bwp-20090930_def.xml" />
|
|
1964
|
+
<edgar:xbrlFile sequence="11" file="bwp-20090930_lab.xml" type="EX-101.LAB" size="272101" description="XBRL TAXONOMY LABEL 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/bwp-20090930_lab.xml" />
|
|
1965
|
+
<edgar:xbrlFile sequence="12" file="bwp-20090930_pre.xml" type="EX-101.PRE" size="137560" description="XBRL TAXONOMY PRESENTATION 09.30.2009" url="http://www.sec.gov/Archives/edgar/data/1336047/000133604709000053/bwp-20090930_pre.xml" />
|
|
1966
|
+
</edgar:xbrlFiles>
|
|
1967
|
+
</edgar:xbrlFiling>
|
|
1968
|
+
</item>
|
|
1969
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/0001167379-09-000137-index.htm">
|
|
1970
|
+
<title>ALCON INC (0001167379) (Filer)</title>
|
|
1971
|
+
<link>http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/0001167379-09-000137-index.htm</link>
|
|
1972
|
+
<description>6-K</description>
|
|
1973
|
+
<pubDate>Wed, 28 Oct 2009 16:25:50 EDT</pubDate>
|
|
1974
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1975
|
+
<edgar:companyName>ALCON INC</edgar:companyName>
|
|
1976
|
+
<edgar:formType>6-K</edgar:formType>
|
|
1977
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
1978
|
+
<edgar:cikNumber>0001167379</edgar:cikNumber>
|
|
1979
|
+
<edgar:accessionNumber>0001167379-09-000137</edgar:accessionNumber>
|
|
1980
|
+
<edgar:fileNumber>001-31269</edgar:fileNumber>
|
|
1981
|
+
<edgar:xbrlFiles>
|
|
1982
|
+
<edgar:xbrlFile sequence="1" file="acl6kq32009results.htm" type="6-K" size="1864095" description="Q3 RESULTS" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl6kq32009results.htm" />
|
|
1983
|
+
<edgar:xbrlFile sequence="2" file="acl6kq32009results.pdf" type="6-K" size="430211" description="PDF" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl6kq32009results.pdf" />
|
|
1984
|
+
<edgar:xbrlFile sequence="3" file="acl-20090930.xml" type="EX-101.INS" size="1275061" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl-20090930.xml" />
|
|
1985
|
+
<edgar:xbrlFile sequence="4" file="acl-20090930_cal.xml" type="EX-101.CAL" size="46964" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl-20090930_cal.xml" />
|
|
1986
|
+
<edgar:xbrlFile sequence="5" file="acl-20090930_lab.xml" type="EX-101.LAB" size="140237" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl-20090930_lab.xml" />
|
|
1987
|
+
<edgar:xbrlFile sequence="6" file="acl-20090930_pre.xml" type="EX-101.PRE" size="93379" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl-20090930_pre.xml" />
|
|
1988
|
+
<edgar:xbrlFile sequence="7" file="acl-20090930.xsd" type="EX-101.SCH" size="14231" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1167379/000116737909000137/acl-20090930.xsd" />
|
|
1989
|
+
</edgar:xbrlFiles>
|
|
1990
|
+
</edgar:xbrlFiling>
|
|
1991
|
+
</item>
|
|
1992
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/0000950123-09-054167-index.htm">
|
|
1993
|
+
<title>EXPRESS SCRIPTS INC (0000885721) (Filer)</title>
|
|
1994
|
+
<link>http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/0000950123-09-054167-index.htm</link>
|
|
1995
|
+
<description>10-Q</description>
|
|
1996
|
+
<pubDate>Wed, 28 Oct 2009 16:24:14 EDT</pubDate>
|
|
1997
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
1998
|
+
<edgar:companyName>EXPRESS SCRIPTS INC</edgar:companyName>
|
|
1999
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2000
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2001
|
+
<edgar:cikNumber>0000885721</edgar:cikNumber>
|
|
2002
|
+
<edgar:accessionNumber>0000950123-09-054167</edgar:accessionNumber>
|
|
2003
|
+
<edgar:fileNumber>000-20199</edgar:fileNumber>
|
|
2004
|
+
<edgar:xbrlFiles>
|
|
2005
|
+
<edgar:xbrlFile sequence="1" file="c53998e10vq.htm" type="10-Q" size="438829" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/c53998e10vq.htm" />
|
|
2006
|
+
<edgar:xbrlFile sequence="2" file="c53998exv31w1.htm" type="EX-31.1" size="7891" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/c53998exv31w1.htm" />
|
|
2007
|
+
<edgar:xbrlFile sequence="3" file="c53998exv31w2.htm" type="EX-31.2" size="7854" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/c53998exv31w2.htm" />
|
|
2008
|
+
<edgar:xbrlFile sequence="4" file="c53998exv32w1.htm" type="EX-32.1" size="3478" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/c53998exv32w1.htm" />
|
|
2009
|
+
<edgar:xbrlFile sequence="5" file="c53998exv32w2.htm" type="EX-32.2" size="3233" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/c53998exv32w2.htm" />
|
|
2010
|
+
<edgar:xbrlFile sequence="6" file="esrx-20090930.xml" type="EX-101.INS" size="380612" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/esrx-20090930.xml" />
|
|
2011
|
+
<edgar:xbrlFile sequence="7" file="esrx-20090930.xsd" type="EX-101.SCH" size="12170" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/esrx-20090930.xsd" />
|
|
2012
|
+
<edgar:xbrlFile sequence="8" file="esrx-20090930_cal.xml" type="EX-101.CAL" size="39316" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/esrx-20090930_cal.xml" />
|
|
2013
|
+
<edgar:xbrlFile sequence="9" file="esrx-20090930_lab.xml" type="EX-101.LAB" size="147587" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/esrx-20090930_lab.xml" />
|
|
2014
|
+
<edgar:xbrlFile sequence="10" file="esrx-20090930_pre.xml" type="EX-101.PRE" size="86380" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/esrx-20090930_pre.xml" />
|
|
2015
|
+
<edgar:xbrlFile sequence="11" file="esrx-20090930_def.xml" type="EX-101.DEF" size="12686" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/885721/000095012309054167/esrx-20090930_def.xml" />
|
|
2016
|
+
</edgar:xbrlFiles>
|
|
2017
|
+
</edgar:xbrlFiling>
|
|
2018
|
+
</item>
|
|
2019
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/0000950123-09-054160-index.htm">
|
|
2020
|
+
<title>FLOWSERVE CORP (0000030625) (Filer)</title>
|
|
2021
|
+
<link>http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/0000950123-09-054160-index.htm</link>
|
|
2022
|
+
<description>10-Q</description>
|
|
2023
|
+
<pubDate>Wed, 28 Oct 2009 16:18:07 EDT</pubDate>
|
|
2024
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2025
|
+
<edgar:companyName>FLOWSERVE CORP</edgar:companyName>
|
|
2026
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2027
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2028
|
+
<edgar:cikNumber>0000030625</edgar:cikNumber>
|
|
2029
|
+
<edgar:accessionNumber>0000950123-09-054160</edgar:accessionNumber>
|
|
2030
|
+
<edgar:fileNumber>001-13179</edgar:fileNumber>
|
|
2031
|
+
<edgar:xbrlFiles>
|
|
2032
|
+
<edgar:xbrlFile sequence="1" file="d68784e10vq.htm" type="10-Q" size="616220" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/d68784e10vq.htm" />
|
|
2033
|
+
<edgar:xbrlFile sequence="2" file="d68784exv31w1.htm" type="EX-31.1" size="5967" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/d68784exv31w1.htm" />
|
|
2034
|
+
<edgar:xbrlFile sequence="3" file="d68784exv31w2.htm" type="EX-31.2" size="6003" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/d68784exv31w2.htm" />
|
|
2035
|
+
<edgar:xbrlFile sequence="4" file="d68784exv32w1.htm" type="EX-32.1" size="2489" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/d68784exv32w1.htm" />
|
|
2036
|
+
<edgar:xbrlFile sequence="5" file="d68784exv32w2.htm" type="EX-32.2" size="2546" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/d68784exv32w2.htm" />
|
|
2037
|
+
<edgar:xbrlFile sequence="6" file="fls-20090930.xml" type="EX-101.INS" size="468565" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/fls-20090930.xml" />
|
|
2038
|
+
<edgar:xbrlFile sequence="7" file="fls-20090930.xsd" type="EX-101.SCH" size="15396" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/fls-20090930.xsd" />
|
|
2039
|
+
<edgar:xbrlFile sequence="8" file="fls-20090930_cal.xml" type="EX-101.CAL" size="42950" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/fls-20090930_cal.xml" />
|
|
2040
|
+
<edgar:xbrlFile sequence="9" file="fls-20090930_lab.xml" type="EX-101.LAB" size="146975" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/fls-20090930_lab.xml" />
|
|
2041
|
+
<edgar:xbrlFile sequence="10" file="fls-20090930_pre.xml" type="EX-101.PRE" size="81650" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/fls-20090930_pre.xml" />
|
|
2042
|
+
<edgar:xbrlFile sequence="11" file="fls-20090930_def.xml" type="EX-101.DEF" size="18923" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/30625/000095012309054160/fls-20090930_def.xml" />
|
|
2043
|
+
</edgar:xbrlFiles>
|
|
2044
|
+
</edgar:xbrlFiling>
|
|
2045
|
+
</item>
|
|
2046
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/0001193125-09-216157-index.htm">
|
|
2047
|
+
<title>WELLPOINT INC (0001156039) (Filer)</title>
|
|
2048
|
+
<link>http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/0001193125-09-216157-index.htm</link>
|
|
2049
|
+
<description>10-Q</description>
|
|
2050
|
+
<pubDate>Wed, 28 Oct 2009 16:14:27 EDT</pubDate>
|
|
2051
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2052
|
+
<edgar:companyName>WELLPOINT INC</edgar:companyName>
|
|
2053
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2054
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2055
|
+
<edgar:cikNumber>0001156039</edgar:cikNumber>
|
|
2056
|
+
<edgar:accessionNumber>0001193125-09-216157</edgar:accessionNumber>
|
|
2057
|
+
<edgar:fileNumber>001-16751</edgar:fileNumber>
|
|
2058
|
+
<edgar:xbrlFiles>
|
|
2059
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1228555" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/d10q.htm" />
|
|
2060
|
+
<edgar:xbrlFile sequence="2" file="dex106.htm" type="EX-10.6" size="15555" description="WELLPOINT DIRECTED EXECUTIVE COMPENSATION PLAN" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/dex106.htm" />
|
|
2061
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="8319" description="CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/dex311.htm" />
|
|
2062
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="8351" description="CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/dex312.htm" />
|
|
2063
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3624" description="CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/dex321.htm" />
|
|
2064
|
+
<edgar:xbrlFile sequence="6" file="dex322.htm" type="EX-32.2" size="3672" description="CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/dex322.htm" />
|
|
2065
|
+
<edgar:xbrlFile sequence="7" file="wlp-20090930.xml" type="EX-101.INS" size="654490" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/wlp-20090930.xml" />
|
|
2066
|
+
<edgar:xbrlFile sequence="8" file="wlp-20090930.xsd" type="EX-101.SCH" size="17902" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/wlp-20090930.xsd" />
|
|
2067
|
+
<edgar:xbrlFile sequence="9" file="wlp-20090930_cal.xml" type="EX-101.CAL" size="55927" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/wlp-20090930_cal.xml" />
|
|
2068
|
+
<edgar:xbrlFile sequence="10" file="wlp-20090930_def.xml" type="EX-101.DEF" size="22049" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/wlp-20090930_def.xml" />
|
|
2069
|
+
<edgar:xbrlFile sequence="11" file="wlp-20090930_lab.xml" type="EX-101.LAB" size="143799" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/wlp-20090930_lab.xml" />
|
|
2070
|
+
<edgar:xbrlFile sequence="12" file="wlp-20090930_pre.xml" type="EX-101.PRE" size="114772" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1156039/000119312509216157/wlp-20090930_pre.xml" />
|
|
2071
|
+
</edgar:xbrlFiles>
|
|
2072
|
+
</edgar:xbrlFiling>
|
|
2073
|
+
</item>
|
|
2074
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/0001104659-09-060877-index.htm">
|
|
2075
|
+
<title>SPX CORP (0000088205) (Filer)</title>
|
|
2076
|
+
<link>http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/0001104659-09-060877-index.htm</link>
|
|
2077
|
+
<description>10-Q</description>
|
|
2078
|
+
<pubDate>Wed, 28 Oct 2009 16:11:31 EDT</pubDate>
|
|
2079
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2080
|
+
<edgar:companyName>SPX CORP</edgar:companyName>
|
|
2081
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2082
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2083
|
+
<edgar:cikNumber>0000088205</edgar:cikNumber>
|
|
2084
|
+
<edgar:accessionNumber>0001104659-09-060877</edgar:accessionNumber>
|
|
2085
|
+
<edgar:fileNumber>001-06948</edgar:fileNumber>
|
|
2086
|
+
<edgar:xbrlFiles>
|
|
2087
|
+
<edgar:xbrlFile sequence="1" file="a09-26854_110q.htm" type="10-Q" size="1726548" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/a09-26854_110q.htm" />
|
|
2088
|
+
<edgar:xbrlFile sequence="2" file="a09-26854_1ex4d1.htm" type="EX-4.1" size="66907" description="EX-4.1" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/a09-26854_1ex4d1.htm" />
|
|
2089
|
+
<edgar:xbrlFile sequence="3" file="a09-26854_1ex31d1.htm" type="EX-31.1" size="12736" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/a09-26854_1ex31d1.htm" />
|
|
2090
|
+
<edgar:xbrlFile sequence="4" file="a09-26854_1ex31d2.htm" type="EX-31.2" size="12776" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/a09-26854_1ex31d2.htm" />
|
|
2091
|
+
<edgar:xbrlFile sequence="5" file="a09-26854_1ex32d1.htm" type="EX-32.1" size="8283" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/a09-26854_1ex32d1.htm" />
|
|
2092
|
+
<edgar:xbrlFile sequence="6" file="spx-20090926.xml" type="EX-101.INS" size="1314700" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/spx-20090926.xml" />
|
|
2093
|
+
<edgar:xbrlFile sequence="7" file="spx-20090926.xsd" type="EX-101.SCH" size="16150" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/spx-20090926.xsd" />
|
|
2094
|
+
<edgar:xbrlFile sequence="8" file="spx-20090926_cal.xml" type="EX-101.CAL" size="43160" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/spx-20090926_cal.xml" />
|
|
2095
|
+
<edgar:xbrlFile sequence="9" file="spx-20090926_lab.xml" type="EX-101.LAB" size="231981" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/spx-20090926_lab.xml" />
|
|
2096
|
+
<edgar:xbrlFile sequence="10" file="spx-20090926_pre.xml" type="EX-101.PRE" size="101970" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/88205/000110465909060877/spx-20090926_pre.xml" />
|
|
2097
|
+
</edgar:xbrlFiles>
|
|
2098
|
+
</edgar:xbrlFiling>
|
|
2099
|
+
</item>
|
|
2100
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/0001193125-09-215975-index.htm">
|
|
2101
|
+
<title>MATTEL INC /DE/ (0000063276) (Filer)</title>
|
|
2102
|
+
<link>http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/0001193125-09-215975-index.htm</link>
|
|
2103
|
+
<description>10-Q</description>
|
|
2104
|
+
<pubDate>Wed, 28 Oct 2009 14:13:31 EDT</pubDate>
|
|
2105
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2106
|
+
<edgar:companyName>MATTEL INC /DE/</edgar:companyName>
|
|
2107
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2108
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2109
|
+
<edgar:cikNumber>0000063276</edgar:cikNumber>
|
|
2110
|
+
<edgar:accessionNumber>0001193125-09-215975</edgar:accessionNumber>
|
|
2111
|
+
<edgar:fileNumber>001-05647</edgar:fileNumber>
|
|
2112
|
+
<edgar:xbrlFiles>
|
|
2113
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="804130" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/d10q.htm" />
|
|
2114
|
+
<edgar:xbrlFile sequence="2" file="dex101.htm" type="EX-10.1" size="22939" description="FORM OF GRANT AGREEMENT" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/dex101.htm" />
|
|
2115
|
+
<edgar:xbrlFile sequence="3" file="dex120.htm" type="EX-12.0" size="27786" description="COMPUTATION OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/dex120.htm" />
|
|
2116
|
+
<edgar:xbrlFile sequence="4" file="dex310.htm" type="EX-31.0" size="7096" description="SECTION 302 CERTIFICATION OF PRINCIPAL EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/dex310.htm" />
|
|
2117
|
+
<edgar:xbrlFile sequence="5" file="dex311.htm" type="EX-31.1" size="7077" description="SECTION 302 CERTIFICATION OF PRINCIPAL FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/dex311.htm" />
|
|
2118
|
+
<edgar:xbrlFile sequence="6" file="dex320.htm" type="EX-32.0" size="5021" description="CERTIFICATION OF PRINCIPAL EXECUTIVE OFFICER AND PRINCIPAL FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/dex320.htm" />
|
|
2119
|
+
<edgar:xbrlFile sequence="7" file="mat-20090930.xml" type="EX-101.INS" size="574373" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/mat-20090930.xml" />
|
|
2120
|
+
<edgar:xbrlFile sequence="8" file="mat-20090930.xsd" type="EX-101.SCH" size="17943" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/mat-20090930.xsd" />
|
|
2121
|
+
<edgar:xbrlFile sequence="9" file="mat-20090930_cal.xml" type="EX-101.CAL" size="32803" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/mat-20090930_cal.xml" />
|
|
2122
|
+
<edgar:xbrlFile sequence="10" file="mat-20090930_lab.xml" type="EX-101.LAB" size="88847" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/mat-20090930_lab.xml" />
|
|
2123
|
+
<edgar:xbrlFile sequence="11" file="mat-20090930_pre.xml" type="EX-101.PRE" size="82709" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/mat-20090930_pre.xml" />
|
|
2124
|
+
<edgar:xbrlFile sequence="12" file="g26911g15w33.jpg" type="GRAPHIC" size="6942" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/g26911g15w33.jpg" />
|
|
2125
|
+
<edgar:xbrlFile sequence="13" file="g26911g53z55.jpg" type="GRAPHIC" size="6229" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/g26911g53z55.jpg" />
|
|
2126
|
+
<edgar:xbrlFile sequence="14" file="g26911g62y50.jpg" type="GRAPHIC" size="6693" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/63276/000119312509215975/g26911g62y50.jpg" />
|
|
2127
|
+
</edgar:xbrlFiles>
|
|
2128
|
+
</edgar:xbrlFiling>
|
|
2129
|
+
</item>
|
|
2130
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/0001193125-09-215959-index.htm">
|
|
2131
|
+
<title>PRAXAIR INC (0000884905) (Filer)</title>
|
|
2132
|
+
<link>http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/0001193125-09-215959-index.htm</link>
|
|
2133
|
+
<description>10-Q</description>
|
|
2134
|
+
<pubDate>Wed, 28 Oct 2009 14:02:48 EDT</pubDate>
|
|
2135
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2136
|
+
<edgar:companyName>PRAXAIR INC</edgar:companyName>
|
|
2137
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2138
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2139
|
+
<edgar:cikNumber>0000884905</edgar:cikNumber>
|
|
2140
|
+
<edgar:accessionNumber>0001193125-09-215959</edgar:accessionNumber>
|
|
2141
|
+
<edgar:fileNumber>001-11037</edgar:fileNumber>
|
|
2142
|
+
<edgar:xbrlFiles>
|
|
2143
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="823245" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/d10q.htm" />
|
|
2144
|
+
<edgar:xbrlFile sequence="2" file="dex1201.htm" type="EX-12.01" size="52425" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/dex1201.htm" />
|
|
2145
|
+
<edgar:xbrlFile sequence="3" file="dex3101.htm" type="EX-31.01" size="10580" description="RULE 13A-14(A) CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/dex3101.htm" />
|
|
2146
|
+
<edgar:xbrlFile sequence="4" file="dex3102.htm" type="EX-31.02" size="10587" description="RULE 13A-14(A) CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/dex3102.htm" />
|
|
2147
|
+
<edgar:xbrlFile sequence="5" file="dex3201.htm" type="EX-32.01" size="4353" description="SECTION 1350 CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/dex3201.htm" />
|
|
2148
|
+
<edgar:xbrlFile sequence="6" file="dex3202.htm" type="EX-32.02" size="4360" description="SECTION 1350 CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/dex3202.htm" />
|
|
2149
|
+
<edgar:xbrlFile sequence="7" file="px-20090930.xml" type="EX-101.INS" size="576645" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/px-20090930.xml" />
|
|
2150
|
+
<edgar:xbrlFile sequence="8" file="px-20090930.xsd" type="EX-101.SCH" size="12689" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/px-20090930.xsd" />
|
|
2151
|
+
<edgar:xbrlFile sequence="9" file="px-20090930_cal.xml" type="EX-101.CAL" size="34388" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/px-20090930_cal.xml" />
|
|
2152
|
+
<edgar:xbrlFile sequence="10" file="px-20090930_lab.xml" type="EX-101.LAB" size="82301" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/px-20090930_lab.xml" />
|
|
2153
|
+
<edgar:xbrlFile sequence="11" file="px-20090930_pre.xml" type="EX-101.PRE" size="71734" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/884905/000119312509215959/px-20090930_pre.xml" />
|
|
2154
|
+
</edgar:xbrlFiles>
|
|
2155
|
+
</edgar:xbrlFiling>
|
|
2156
|
+
</item>
|
|
2157
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/0001193125-09-215771-index.htm">
|
|
2158
|
+
<title>SCHLUMBERGER LTD /NV/ (0000087347) (Filer)</title>
|
|
2159
|
+
<link>http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/0001193125-09-215771-index.htm</link>
|
|
2160
|
+
<description>10-Q</description>
|
|
2161
|
+
<pubDate>Wed, 28 Oct 2009 11:26:11 EDT</pubDate>
|
|
2162
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2163
|
+
<edgar:companyName>SCHLUMBERGER LTD /NV/</edgar:companyName>
|
|
2164
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2165
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2166
|
+
<edgar:cikNumber>0000087347</edgar:cikNumber>
|
|
2167
|
+
<edgar:accessionNumber>0001193125-09-215771</edgar:accessionNumber>
|
|
2168
|
+
<edgar:fileNumber>001-04601</edgar:fileNumber>
|
|
2169
|
+
<edgar:xbrlFiles>
|
|
2170
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="705029" description="FORM 10-Q FOR THE QUARTERLY PERIOD ENDED SEPTEMBER 30, 2009" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/d10q.htm" />
|
|
2171
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="6739" description="CERTIFICTION OF CEO PURSUANT TO SECTION 302" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/dex311.htm" />
|
|
2172
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="6867" description="CERTIFICTION OF CFO PURSUANT TO SECTION 302" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/dex312.htm" />
|
|
2173
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="4462" description="CERTIFICTION OF CEO PURSUANT TO SECTION 906" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/dex321.htm" />
|
|
2174
|
+
<edgar:xbrlFile sequence="5" file="dex322.htm" type="EX-32.2" size="4625" description="CERTIFICTION OF CFO PURSUANT TO SECTION 906" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/dex322.htm" />
|
|
2175
|
+
<edgar:xbrlFile sequence="6" file="slb-20090930.xml" type="EX-101.INS" size="519832" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/slb-20090930.xml" />
|
|
2176
|
+
<edgar:xbrlFile sequence="7" file="slb-20090930.xsd" type="EX-101.SCH" size="17638" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/slb-20090930.xsd" />
|
|
2177
|
+
<edgar:xbrlFile sequence="8" file="slb-20090930_cal.xml" type="EX-101.CAL" size="43398" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/slb-20090930_cal.xml" />
|
|
2178
|
+
<edgar:xbrlFile sequence="9" file="slb-20090930_def.xml" type="EX-101.DEF" size="30786" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/slb-20090930_def.xml" />
|
|
2179
|
+
<edgar:xbrlFile sequence="10" file="slb-20090930_lab.xml" type="EX-101.LAB" size="127513" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/slb-20090930_lab.xml" />
|
|
2180
|
+
<edgar:xbrlFile sequence="11" file="slb-20090930_pre.xml" type="EX-101.PRE" size="107090" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/87347/000119312509215771/slb-20090930_pre.xml" />
|
|
2181
|
+
</edgar:xbrlFiles>
|
|
2182
|
+
</edgar:xbrlFiling>
|
|
2183
|
+
</item>
|
|
2184
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/0000950123-09-053981-index.htm">
|
|
2185
|
+
<title>BORGWARNER INC (0000908255) (Filer)</title>
|
|
2186
|
+
<link>http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/0000950123-09-053981-index.htm</link>
|
|
2187
|
+
<description>10-Q</description>
|
|
2188
|
+
<pubDate>Wed, 28 Oct 2009 11:07:47 EDT</pubDate>
|
|
2189
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2190
|
+
<edgar:companyName>BORGWARNER INC</edgar:companyName>
|
|
2191
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2192
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2193
|
+
<edgar:cikNumber>0000908255</edgar:cikNumber>
|
|
2194
|
+
<edgar:accessionNumber>0000950123-09-053981</edgar:accessionNumber>
|
|
2195
|
+
<edgar:fileNumber>001-12162</edgar:fileNumber>
|
|
2196
|
+
<edgar:xbrlFiles>
|
|
2197
|
+
<edgar:xbrlFile sequence="1" file="c52993e10vq.htm" type="10-Q" size="511696" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/c52993e10vq.htm" />
|
|
2198
|
+
<edgar:xbrlFile sequence="2" file="c52993exv31w1.htm" type="EX-31.1" size="7151" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/c52993exv31w1.htm" />
|
|
2199
|
+
<edgar:xbrlFile sequence="3" file="c52993exv31w2.htm" type="EX-31.2" size="6936" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/c52993exv31w2.htm" />
|
|
2200
|
+
<edgar:xbrlFile sequence="4" file="c52993exv32w1.htm" type="EX-32.1" size="3830" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/c52993exv32w1.htm" />
|
|
2201
|
+
<edgar:xbrlFile sequence="5" file="bwa-20090930.xml" type="EX-101.INS" size="481906" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/bwa-20090930.xml" />
|
|
2202
|
+
<edgar:xbrlFile sequence="6" file="bwa-20090930.xsd" type="EX-101.SCH" size="17120" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/bwa-20090930.xsd" />
|
|
2203
|
+
<edgar:xbrlFile sequence="7" file="bwa-20090930_cal.xml" type="EX-101.CAL" size="44249" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/bwa-20090930_cal.xml" />
|
|
2204
|
+
<edgar:xbrlFile sequence="8" file="bwa-20090930_lab.xml" type="EX-101.LAB" size="153564" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/bwa-20090930_lab.xml" />
|
|
2205
|
+
<edgar:xbrlFile sequence="9" file="bwa-20090930_pre.xml" type="EX-101.PRE" size="83298" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/bwa-20090930_pre.xml" />
|
|
2206
|
+
<edgar:xbrlFile sequence="10" file="bwa-20090930_def.xml" type="EX-101.DEF" size="10673" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/908255/000095012309053981/bwa-20090930_def.xml" />
|
|
2207
|
+
</edgar:xbrlFiles>
|
|
2208
|
+
</edgar:xbrlFiling>
|
|
2209
|
+
</item>
|
|
2210
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/0001354488-09-001957-index.htm">
|
|
2211
|
+
<title>ISSUER DIRECT CORP (0000843006) (Filer)</title>
|
|
2212
|
+
<link>http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/0001354488-09-001957-index.htm</link>
|
|
2213
|
+
<description>8-K</description>
|
|
2214
|
+
<pubDate>Wed, 28 Oct 2009 09:08:26 EDT</pubDate>
|
|
2215
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2216
|
+
<edgar:companyName>ISSUER DIRECT CORP</edgar:companyName>
|
|
2217
|
+
<edgar:formType>8-K</edgar:formType>
|
|
2218
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2219
|
+
<edgar:cikNumber>0000843006</edgar:cikNumber>
|
|
2220
|
+
<edgar:accessionNumber>0001354488-09-001957</edgar:accessionNumber>
|
|
2221
|
+
<edgar:fileNumber>001-10185</edgar:fileNumber>
|
|
2222
|
+
<edgar:xbrlFiles>
|
|
2223
|
+
<edgar:xbrlFile sequence="1" file="isdr8k.htm" type="8-K" size="15192" description="8K - XBRL" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr8k.htm" />
|
|
2224
|
+
<edgar:xbrlFile sequence="2" file="isdr-20090630.xml" type="EX-101.INS" size="564847" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr-20090630.xml" />
|
|
2225
|
+
<edgar:xbrlFile sequence="3" file="isdr-20090630.xsd" type="EX-101.SCH" size="6929" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr-20090630.xsd" />
|
|
2226
|
+
<edgar:xbrlFile sequence="4" file="isdr-20090630_cal.xml" type="EX-101.CAL" size="575269" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr-20090630_cal.xml" />
|
|
2227
|
+
<edgar:xbrlFile sequence="5" file="isdr-20090630_pre.xml" type="EX-101.PRE" size="1038609" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr-20090630_pre.xml" />
|
|
2228
|
+
<edgar:xbrlFile sequence="6" file="isdr-20090630_lab.xml" type="EX-101.LAB" size="9949853" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr-20090630_lab.xml" />
|
|
2229
|
+
<edgar:xbrlFile sequence="7" file="isdr-20090630_def.xml" type="EX-101.DEF" size="822761" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/843006/000135448809001957/isdr-20090630_def.xml" />
|
|
2230
|
+
</edgar:xbrlFiles>
|
|
2231
|
+
</edgar:xbrlFiling>
|
|
2232
|
+
</item>
|
|
2233
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/0000037748-09-000051-index.htm">
|
|
2234
|
+
<title>MASSEY ENERGY CO (0000037748) (Filer)</title>
|
|
2235
|
+
<link>http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/0000037748-09-000051-index.htm</link>
|
|
2236
|
+
<description>10-Q</description>
|
|
2237
|
+
<pubDate>Wed, 28 Oct 2009 08:31:45 EDT</pubDate>
|
|
2238
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2239
|
+
<edgar:companyName>MASSEY ENERGY CO</edgar:companyName>
|
|
2240
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2241
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2242
|
+
<edgar:cikNumber>0000037748</edgar:cikNumber>
|
|
2243
|
+
<edgar:accessionNumber>0000037748-09-000051</edgar:accessionNumber>
|
|
2244
|
+
<edgar:fileNumber>001-07775</edgar:fileNumber>
|
|
2245
|
+
<edgar:xbrlFiles>
|
|
2246
|
+
<edgar:xbrlFile sequence="1" file="form09300910q.htm" type="10-Q" size="1281745" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/form09300910q.htm" />
|
|
2247
|
+
<edgar:xbrlFile sequence="2" file="exhibit311.htm" type="EX-31.1" size="13913" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit311.htm" />
|
|
2248
|
+
<edgar:xbrlFile sequence="3" file="exhibit312.htm" type="EX-31.2" size="14446" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit312.htm" />
|
|
2249
|
+
<edgar:xbrlFile sequence="4" file="exhibit321.htm" type="EX-32.1" size="5025" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit321.htm" />
|
|
2250
|
+
<edgar:xbrlFile sequence="5" file="exhibit322.htm" type="EX-32.2" size="5156" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit322.htm" />
|
|
2251
|
+
<edgar:xbrlFile sequence="6" file="exhibit41.htm" type="EX-4.1" size="60113" description="SUPPLEMENTAL INDENTURE (2.25% NOTES)" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit41.htm" />
|
|
2252
|
+
<edgar:xbrlFile sequence="7" file="exhibit42.htm" type="EX-4.2" size="61551" description="SUPPLEMENTAL INDENTURE (6.625% NOTES)" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit42.htm" />
|
|
2253
|
+
<edgar:xbrlFile sequence="8" file="exhibit43.htm" type="EX-4.3" size="58714" description="SUPPLEMENTAL INDENTURE (6.875% NOTES)" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit43.htm" />
|
|
2254
|
+
<edgar:xbrlFile sequence="9" file="exhibit44.htm" type="EX-4.4" size="59937" description="SUPPLEMENTAL INDENTURE (3.25% NOTES)" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/exhibit44.htm" />
|
|
2255
|
+
<edgar:xbrlFile sequence="10" file="mee-20090930.xml" type="EX-101.INS" size="534649" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/mee-20090930.xml" />
|
|
2256
|
+
<edgar:xbrlFile sequence="11" file="mee-20090930.xsd" type="EX-101.SCH" size="13276" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/mee-20090930.xsd" />
|
|
2257
|
+
<edgar:xbrlFile sequence="12" file="mee-20090930_cal.xml" type="EX-101.CAL" size="51814" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/mee-20090930_cal.xml" />
|
|
2258
|
+
<edgar:xbrlFile sequence="13" file="mee-20090930_lab.xml" type="EX-101.LAB" size="169755" description="EX-101 LABLES LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/mee-20090930_lab.xml" />
|
|
2259
|
+
<edgar:xbrlFile sequence="14" file="mee-20090930_pre.xml" type="EX-101.PRE" size="97964" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/37748/000003774809000051/mee-20090930_pre.xml" />
|
|
2260
|
+
</edgar:xbrlFiles>
|
|
2261
|
+
</edgar:xbrlFiling>
|
|
2262
|
+
</item>
|
|
2263
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/0001193125-09-215595-index.htm">
|
|
2264
|
+
<title>CONSOL Energy Inc (0001070412) (Filer)</title>
|
|
2265
|
+
<link>http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/0001193125-09-215595-index.htm</link>
|
|
2266
|
+
<description>10-Q</description>
|
|
2267
|
+
<pubDate>Wed, 28 Oct 2009 08:22:20 EDT</pubDate>
|
|
2268
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2269
|
+
<edgar:companyName>CONSOL Energy Inc</edgar:companyName>
|
|
2270
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2271
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2272
|
+
<edgar:cikNumber>0001070412</edgar:cikNumber>
|
|
2273
|
+
<edgar:accessionNumber>0001193125-09-215595</edgar:accessionNumber>
|
|
2274
|
+
<edgar:fileNumber>001-14901</edgar:fileNumber>
|
|
2275
|
+
<edgar:xbrlFiles>
|
|
2276
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1712661" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/d10q.htm" />
|
|
2277
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="9164" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/dex311.htm" />
|
|
2278
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="9267" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/dex312.htm" />
|
|
2279
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="3341" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/dex321.htm" />
|
|
2280
|
+
<edgar:xbrlFile sequence="5" file="dex322.htm" type="EX-32.2" size="3279" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/dex322.htm" />
|
|
2281
|
+
<edgar:xbrlFile sequence="6" file="cnx-20090930.xml" type="EX-101.INS" size="1273013" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/cnx-20090930.xml" />
|
|
2282
|
+
<edgar:xbrlFile sequence="7" file="cnx-20090930.xsd" type="EX-101.SCH" size="17498" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/cnx-20090930.xsd" />
|
|
2283
|
+
<edgar:xbrlFile sequence="8" file="cnx-20090930_cal.xml" type="EX-101.CAL" size="45193" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/cnx-20090930_cal.xml" />
|
|
2284
|
+
<edgar:xbrlFile sequence="9" file="cnx-20090930_def.xml" type="EX-101.DEF" size="29393" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/cnx-20090930_def.xml" />
|
|
2285
|
+
<edgar:xbrlFile sequence="10" file="cnx-20090930_lab.xml" type="EX-101.LAB" size="126422" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/cnx-20090930_lab.xml" />
|
|
2286
|
+
<edgar:xbrlFile sequence="11" file="cnx-20090930_pre.xml" type="EX-101.PRE" size="109765" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1070412/000119312509215595/cnx-20090930_pre.xml" />
|
|
2287
|
+
</edgar:xbrlFiles>
|
|
2288
|
+
</edgar:xbrlFiling>
|
|
2289
|
+
</item>
|
|
2290
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/0001193125-09-215590-index.htm">
|
|
2291
|
+
<title>CNX Gas Corp (0001335793) (Filer)</title>
|
|
2292
|
+
<link>http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/0001193125-09-215590-index.htm</link>
|
|
2293
|
+
<description>10-Q</description>
|
|
2294
|
+
<pubDate>Wed, 28 Oct 2009 08:19:10 EDT</pubDate>
|
|
2295
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2296
|
+
<edgar:companyName>CNX Gas Corp</edgar:companyName>
|
|
2297
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2298
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2299
|
+
<edgar:cikNumber>0001335793</edgar:cikNumber>
|
|
2300
|
+
<edgar:accessionNumber>0001193125-09-215590</edgar:accessionNumber>
|
|
2301
|
+
<edgar:fileNumber>001-32723</edgar:fileNumber>
|
|
2302
|
+
<edgar:xbrlFiles>
|
|
2303
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="877586" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/d10q.htm" />
|
|
2304
|
+
<edgar:xbrlFile sequence="2" file="dex311.htm" type="EX-31.1" size="9262" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/dex311.htm" />
|
|
2305
|
+
<edgar:xbrlFile sequence="3" file="dex312.htm" type="EX-31.2" size="9370" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/dex312.htm" />
|
|
2306
|
+
<edgar:xbrlFile sequence="4" file="dex321.htm" type="EX-32.1" size="3414" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/dex321.htm" />
|
|
2307
|
+
<edgar:xbrlFile sequence="5" file="dex322.htm" type="EX-32.2" size="3495" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/dex322.htm" />
|
|
2308
|
+
<edgar:xbrlFile sequence="6" file="cxg-20090930.xml" type="EX-101.INS" size="460399" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/cxg-20090930.xml" />
|
|
2309
|
+
<edgar:xbrlFile sequence="7" file="cxg-20090930.xsd" type="EX-101.SCH" size="15042" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/cxg-20090930.xsd" />
|
|
2310
|
+
<edgar:xbrlFile sequence="8" file="cxg-20090930_cal.xml" type="EX-101.CAL" size="45951" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/cxg-20090930_cal.xml" />
|
|
2311
|
+
<edgar:xbrlFile sequence="9" file="cxg-20090930_def.xml" type="EX-101.DEF" size="24642" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/cxg-20090930_def.xml" />
|
|
2312
|
+
<edgar:xbrlFile sequence="10" file="cxg-20090930_lab.xml" type="EX-101.LAB" size="123342" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/cxg-20090930_lab.xml" />
|
|
2313
|
+
<edgar:xbrlFile sequence="11" file="cxg-20090930_pre.xml" type="EX-101.PRE" size="104683" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1335793/000119312509215590/cxg-20090930_pre.xml" />
|
|
2314
|
+
</edgar:xbrlFiles>
|
|
2315
|
+
</edgar:xbrlFiling>
|
|
2316
|
+
</item>
|
|
2317
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/0001130310-09-000049-index.htm">
|
|
2318
|
+
<title>CENTERPOINT ENERGY INC (0001130310) (Filer)</title>
|
|
2319
|
+
<link>http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/0001130310-09-000049-index.htm</link>
|
|
2320
|
+
<description>10-Q</description>
|
|
2321
|
+
<pubDate>Wed, 28 Oct 2009 08:00:56 EDT</pubDate>
|
|
2322
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2323
|
+
<edgar:companyName>CENTERPOINT ENERGY INC</edgar:companyName>
|
|
2324
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2325
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2326
|
+
<edgar:cikNumber>0001130310</edgar:cikNumber>
|
|
2327
|
+
<edgar:accessionNumber>0001130310-09-000049</edgar:accessionNumber>
|
|
2328
|
+
<edgar:fileNumber>001-31447</edgar:fileNumber>
|
|
2329
|
+
<edgar:xbrlFiles>
|
|
2330
|
+
<edgar:xbrlFile sequence="1" file="form10-q.htm" type="10-Q" size="1877586" description="FORM 10-Q SEPTEMBER 30, 2009" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/form10-q.htm" />
|
|
2331
|
+
<edgar:xbrlFile sequence="2" file="ex12.htm" type="EX-12" size="36500" description="COMPUTATION OF RATIOS OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/ex12.htm" />
|
|
2332
|
+
<edgar:xbrlFile sequence="3" file="ex31-1.htm" type="EX-31.1" size="15545" description="RULE 13A-14(A)/15D-14(A) CERTIFICATION OF DAVID M. MCCLANAHAN" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/ex31-1.htm" />
|
|
2333
|
+
<edgar:xbrlFile sequence="4" file="ex31-2.htm" type="EX-31.2" size="15516" description="RULE 13A-14(A)/15D-14(A) CERTIFICATION OF GARY L. WHITLOCK" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/ex31-2.htm" />
|
|
2334
|
+
<edgar:xbrlFile sequence="5" file="ex32-1.htm" type="EX-32.1" size="6860" description="SECTION 1350 CERTIFICATION OF DAVID M. MCCLANAHAN" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/ex32-1.htm" />
|
|
2335
|
+
<edgar:xbrlFile sequence="6" file="ex32-2.htm" type="EX-32.2" size="6929" description="SECTION 1350 CERTIFICATION OF GARY L. WHITLOCK" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/ex32-2.htm" />
|
|
2336
|
+
<edgar:xbrlFile sequence="7" file="cnp-20090930.xml" type="EX-101.INS" size="813688" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/cnp-20090930.xml" />
|
|
2337
|
+
<edgar:xbrlFile sequence="8" file="cnp-20090930.xsd" type="EX-101.SCH" size="19741" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/cnp-20090930.xsd" />
|
|
2338
|
+
<edgar:xbrlFile sequence="9" file="cnp-20090930_cal.xml" type="EX-101.CAL" size="81782" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/cnp-20090930_cal.xml" />
|
|
2339
|
+
<edgar:xbrlFile sequence="10" file="cnp-20090930_lab.xml" type="EX-101.LAB" size="254220" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/cnp-20090930_lab.xml" />
|
|
2340
|
+
<edgar:xbrlFile sequence="11" file="cnp-20090930_pre.xml" type="EX-101.PRE" size="126621" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1130310/000113031009000049/cnp-20090930_pre.xml" />
|
|
2341
|
+
</edgar:xbrlFiles>
|
|
2342
|
+
</edgar:xbrlFiling>
|
|
2343
|
+
</item>
|
|
2344
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/0000950123-09-053840-index.htm">
|
|
2345
|
+
<title>MCGRAW-HILL COMPANIES INC (0000064040) (Filer)</title>
|
|
2346
|
+
<link>http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/0000950123-09-053840-index.htm</link>
|
|
2347
|
+
<description>10-Q</description>
|
|
2348
|
+
<pubDate>Tue, 27 Oct 2009 21:28:38 EDT</pubDate>
|
|
2349
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2350
|
+
<edgar:companyName>MCGRAW-HILL COMPANIES INC</edgar:companyName>
|
|
2351
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2352
|
+
<edgar:filingDate>10/28/2009</edgar:filingDate>
|
|
2353
|
+
<edgar:cikNumber>0000064040</edgar:cikNumber>
|
|
2354
|
+
<edgar:accessionNumber>0000950123-09-053840</edgar:accessionNumber>
|
|
2355
|
+
<edgar:fileNumber>001-01023</edgar:fileNumber>
|
|
2356
|
+
<edgar:xbrlFiles>
|
|
2357
|
+
<edgar:xbrlFile sequence="1" file="y79656e10vq.htm" type="10-Q" size="460171" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/y79656e10vq.htm" />
|
|
2358
|
+
<edgar:xbrlFile sequence="2" file="y79656exv15.htm" type="EX-15" size="6032" description="EX-15" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/y79656exv15.htm" />
|
|
2359
|
+
<edgar:xbrlFile sequence="3" file="y79656exv31w1.htm" type="EX-31.1" size="8818" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/y79656exv31w1.htm" />
|
|
2360
|
+
<edgar:xbrlFile sequence="4" file="y79656exv31w2.htm" type="EX-31.2" size="8811" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/y79656exv31w2.htm" />
|
|
2361
|
+
<edgar:xbrlFile sequence="5" file="y79656exv32.htm" type="EX-32" size="4330" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/y79656exv32.htm" />
|
|
2362
|
+
<edgar:xbrlFile sequence="6" file="mhp-20090930.xml" type="EX-101.INS" size="244686" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/mhp-20090930.xml" />
|
|
2363
|
+
<edgar:xbrlFile sequence="7" file="mhp-20090930.xsd" type="EX-101.SCH" size="15067" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/mhp-20090930.xsd" />
|
|
2364
|
+
<edgar:xbrlFile sequence="8" file="mhp-20090930_cal.xml" type="EX-101.CAL" size="48510" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/mhp-20090930_cal.xml" />
|
|
2365
|
+
<edgar:xbrlFile sequence="9" file="mhp-20090930_lab.xml" type="EX-101.LAB" size="154752" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/mhp-20090930_lab.xml" />
|
|
2366
|
+
<edgar:xbrlFile sequence="10" file="mhp-20090930_pre.xml" type="EX-101.PRE" size="87574" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/mhp-20090930_pre.xml" />
|
|
2367
|
+
<edgar:xbrlFile sequence="11" file="mhp-20090930_def.xml" type="EX-101.DEF" size="17637" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/64040/000095012309053840/mhp-20090930_def.xml" />
|
|
2368
|
+
</edgar:xbrlFiles>
|
|
2369
|
+
</edgar:xbrlFiling>
|
|
2370
|
+
</item>
|
|
2371
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/0000950123-09-053754-index.htm">
|
|
2372
|
+
<title>Celanese CORP (0001306830) (Filer)</title>
|
|
2373
|
+
<link>http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/0000950123-09-053754-index.htm</link>
|
|
2374
|
+
<description>10-Q</description>
|
|
2375
|
+
<pubDate>Tue, 27 Oct 2009 17:30:57 EDT</pubDate>
|
|
2376
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2377
|
+
<edgar:companyName>Celanese CORP</edgar:companyName>
|
|
2378
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2379
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2380
|
+
<edgar:cikNumber>0001306830</edgar:cikNumber>
|
|
2381
|
+
<edgar:accessionNumber>0000950123-09-053754</edgar:accessionNumber>
|
|
2382
|
+
<edgar:fileNumber>001-32410</edgar:fileNumber>
|
|
2383
|
+
<edgar:xbrlFiles>
|
|
2384
|
+
<edgar:xbrlFile sequence="1" file="d69595e10vq.htm" type="10-Q" size="1090319" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595e10vq.htm" />
|
|
2385
|
+
<edgar:xbrlFile sequence="2" file="d69595exv10w1.htm" type="EX-10.1" size="36846" description="EX-10.1" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595exv10w1.htm" />
|
|
2386
|
+
<edgar:xbrlFile sequence="3" file="d69595exv31w1.htm" type="EX-31.1" size="8928" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595exv31w1.htm" />
|
|
2387
|
+
<edgar:xbrlFile sequence="4" file="d69595exv31w2.htm" type="EX-31.2" size="8911" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595exv31w2.htm" />
|
|
2388
|
+
<edgar:xbrlFile sequence="5" file="d69595exv32w1.htm" type="EX-32.1" size="3935" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595exv32w1.htm" />
|
|
2389
|
+
<edgar:xbrlFile sequence="6" file="d69595exv32w2.htm" type="EX-32.2" size="3905" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595exv32w2.htm" />
|
|
2390
|
+
<edgar:xbrlFile sequence="7" file="ce-20090930.xml" type="EX-101.INS" size="1087205" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/ce-20090930.xml" />
|
|
2391
|
+
<edgar:xbrlFile sequence="8" file="ce-20090930.xsd" type="EX-101.SCH" size="20390" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/ce-20090930.xsd" />
|
|
2392
|
+
<edgar:xbrlFile sequence="9" file="ce-20090930_cal.xml" type="EX-101.CAL" size="82012" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/ce-20090930_cal.xml" />
|
|
2393
|
+
<edgar:xbrlFile sequence="10" file="ce-20090930_lab.xml" type="EX-101.LAB" size="245197" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/ce-20090930_lab.xml" />
|
|
2394
|
+
<edgar:xbrlFile sequence="11" file="ce-20090930_pre.xml" type="EX-101.PRE" size="177671" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/ce-20090930_pre.xml" />
|
|
2395
|
+
<edgar:xbrlFile sequence="12" file="ce-20090930_def.xml" type="EX-101.DEF" size="1297805" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/ce-20090930_def.xml" />
|
|
2396
|
+
<edgar:xbrlFile sequence="13" file="d69595d6959501.gif" type="GRAPHIC" size="3270" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/1306830/000095012309053754/d69595d6959501.gif" />
|
|
2397
|
+
</edgar:xbrlFiles>
|
|
2398
|
+
</edgar:xbrlFiling>
|
|
2399
|
+
</item>
|
|
2400
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/0000950123-09-053715-index.htm">
|
|
2401
|
+
<title>MCKESSON CORP (0000927653) (Filer)</title>
|
|
2402
|
+
<link>http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/0000950123-09-053715-index.htm</link>
|
|
2403
|
+
<description>10-Q</description>
|
|
2404
|
+
<pubDate>Tue, 27 Oct 2009 17:07:26 EDT</pubDate>
|
|
2405
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2406
|
+
<edgar:companyName>MCKESSON CORP</edgar:companyName>
|
|
2407
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2408
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2409
|
+
<edgar:cikNumber>0000927653</edgar:cikNumber>
|
|
2410
|
+
<edgar:accessionNumber>0000950123-09-053715</edgar:accessionNumber>
|
|
2411
|
+
<edgar:fileNumber>001-13252</edgar:fileNumber>
|
|
2412
|
+
<edgar:xbrlFiles>
|
|
2413
|
+
<edgar:xbrlFile sequence="1" file="f53314e10vq.htm" type="10-Q" size="353070" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/f53314e10vq.htm" />
|
|
2414
|
+
<edgar:xbrlFile sequence="2" file="f53314exv10w1.htm" type="EX-10.1" size="101986" description="EX-10.1" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/f53314exv10w1.htm" />
|
|
2415
|
+
<edgar:xbrlFile sequence="3" file="f53314exv31w1.htm" type="EX-31.1" size="8409" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/f53314exv31w1.htm" />
|
|
2416
|
+
<edgar:xbrlFile sequence="4" file="f53314exv31w2.htm" type="EX-31.2" size="8936" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/f53314exv31w2.htm" />
|
|
2417
|
+
<edgar:xbrlFile sequence="5" file="f53314exv32.htm" type="EX-32" size="3957" description="EX-32" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/f53314exv32.htm" />
|
|
2418
|
+
<edgar:xbrlFile sequence="6" file="mck-20090930.xml" type="EX-101.INS" size="209473" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/mck-20090930.xml" />
|
|
2419
|
+
<edgar:xbrlFile sequence="7" file="mck-20090930.xsd" type="EX-101.SCH" size="15613" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/mck-20090930.xsd" />
|
|
2420
|
+
<edgar:xbrlFile sequence="8" file="mck-20090930_cal.xml" type="EX-101.CAL" size="36853" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/mck-20090930_cal.xml" />
|
|
2421
|
+
<edgar:xbrlFile sequence="9" file="mck-20090930_lab.xml" type="EX-101.LAB" size="131926" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/mck-20090930_lab.xml" />
|
|
2422
|
+
<edgar:xbrlFile sequence="10" file="mck-20090930_pre.xml" type="EX-101.PRE" size="75881" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/mck-20090930_pre.xml" />
|
|
2423
|
+
<edgar:xbrlFile sequence="11" file="mck-20090930_def.xml" type="EX-101.DEF" size="10084" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/927653/000095012309053715/mck-20090930_def.xml" />
|
|
2424
|
+
</edgar:xbrlFiles>
|
|
2425
|
+
</edgar:xbrlFiling>
|
|
2426
|
+
</item>
|
|
2427
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/0000950123-09-053699-index.htm">
|
|
2428
|
+
<title>SHERWIN WILLIAMS CO (0000089800) (Filer)</title>
|
|
2429
|
+
<link>http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/0000950123-09-053699-index.htm</link>
|
|
2430
|
+
<description>10-Q</description>
|
|
2431
|
+
<pubDate>Tue, 27 Oct 2009 17:00:34 EDT</pubDate>
|
|
2432
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2433
|
+
<edgar:companyName>SHERWIN WILLIAMS CO</edgar:companyName>
|
|
2434
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2435
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2436
|
+
<edgar:cikNumber>0000089800</edgar:cikNumber>
|
|
2437
|
+
<edgar:accessionNumber>0000950123-09-053699</edgar:accessionNumber>
|
|
2438
|
+
<edgar:fileNumber>001-04851</edgar:fileNumber>
|
|
2439
|
+
<edgar:xbrlFiles>
|
|
2440
|
+
<edgar:xbrlFile sequence="1" file="l37678e10vq.htm" type="10-Q" size="438224" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/l37678e10vq.htm" />
|
|
2441
|
+
<edgar:xbrlFile sequence="2" file="l37678exv31wa.htm" type="EX-31.A" size="8783" description="EX-31(A)" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/l37678exv31wa.htm" />
|
|
2442
|
+
<edgar:xbrlFile sequence="3" file="l37678exv31wb.htm" type="EX-31.B" size="8925" description="EX-31(B)" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/l37678exv31wb.htm" />
|
|
2443
|
+
<edgar:xbrlFile sequence="4" file="l37678exv32wa.htm" type="EX-32.A" size="3371" description="EX-32(A)" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/l37678exv32wa.htm" />
|
|
2444
|
+
<edgar:xbrlFile sequence="5" file="l37678exv32wb.htm" type="EX-32.B" size="3283" description="EX-32(B)" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/l37678exv32wb.htm" />
|
|
2445
|
+
<edgar:xbrlFile sequence="7" file="shw-20090930.xml" type="EX-101.INS" size="1077881" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/shw-20090930.xml" />
|
|
2446
|
+
<edgar:xbrlFile sequence="8" file="shw-20090930.xsd" type="EX-101.SCH" size="16867" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/shw-20090930.xsd" />
|
|
2447
|
+
<edgar:xbrlFile sequence="9" file="shw-20090930_cal.xml" type="EX-101.CAL" size="632723" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/shw-20090930_cal.xml" />
|
|
2448
|
+
<edgar:xbrlFile sequence="10" file="shw-20090930_lab.xml" type="EX-101.LAB" size="1413670" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/shw-20090930_lab.xml" />
|
|
2449
|
+
<edgar:xbrlFile sequence="11" file="shw-20090930_pre.xml" type="EX-101.PRE" size="977170" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/shw-20090930_pre.xml" />
|
|
2450
|
+
<edgar:xbrlFile sequence="12" file="shw-20090930_def.xml" type="EX-101.DEF" size="982055" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/shw-20090930_def.xml" />
|
|
2451
|
+
<edgar:xbrlFile sequence="13" file="l37678l3767801.gif" type="GRAPHIC" size="7014" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/89800/000095012309053699/l37678l3767801.gif" />
|
|
2452
|
+
</edgar:xbrlFiles>
|
|
2453
|
+
</edgar:xbrlFiling>
|
|
2454
|
+
</item>
|
|
2455
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/0001193125-09-214947-index.htm">
|
|
2456
|
+
<title>EBAY INC (0001065088) (Filer)</title>
|
|
2457
|
+
<link>http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/0001193125-09-214947-index.htm</link>
|
|
2458
|
+
<description>10-Q</description>
|
|
2459
|
+
<pubDate>Tue, 27 Oct 2009 17:00:24 EDT</pubDate>
|
|
2460
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2461
|
+
<edgar:companyName>EBAY INC</edgar:companyName>
|
|
2462
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2463
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2464
|
+
<edgar:cikNumber>0001065088</edgar:cikNumber>
|
|
2465
|
+
<edgar:accessionNumber>0001193125-09-214947</edgar:accessionNumber>
|
|
2466
|
+
<edgar:fileNumber>000-24821</edgar:fileNumber>
|
|
2467
|
+
<edgar:xbrlFiles>
|
|
2468
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="916255" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/d10q.htm" />
|
|
2469
|
+
<edgar:xbrlFile sequence="2" file="dex201.htm" type="EX-2.01" size="660669" description="AGREEMENT FOR THE SALE AND PURCHASE" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/dex201.htm" />
|
|
2470
|
+
<edgar:xbrlFile sequence="3" file="dex1201.htm" type="EX-12.01" size="8083" description="STATEMENT REGARDING COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/dex1201.htm" />
|
|
2471
|
+
<edgar:xbrlFile sequence="4" file="dex3101.htm" type="EX-31.01" size="6564" description="CERTIFICATION OF EBAY'S CHIEF EXECUTIVE OFFICER, AS REQUIRED BY SECTION 302" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/dex3101.htm" />
|
|
2472
|
+
<edgar:xbrlFile sequence="5" file="dex3102.htm" type="EX-31.02" size="6582" description="CERTIFICATION OF EBAY'S CHIEF FINANCIAL OFFICER, AS REQUIRED BY SECTION 302" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/dex3102.htm" />
|
|
2473
|
+
<edgar:xbrlFile sequence="6" file="dex3201.htm" type="EX-32.01" size="2971" description="CERTIFICATION OF EBAY'S CHIEF EXECUTIVE OFFICER, AS REQUIRED BY SECTION 906" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/dex3201.htm" />
|
|
2474
|
+
<edgar:xbrlFile sequence="7" file="dex3202.htm" type="EX-32.02" size="2989" description="CERTIFICATION OF EBAY'S CHIEF FINANCIAL OFFICER, AS REQUIRED BY SECTION 906" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/dex3202.htm" />
|
|
2475
|
+
<edgar:xbrlFile sequence="8" file="ebay-20090930.xml" type="EX-101.INS" size="372927" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/ebay-20090930.xml" />
|
|
2476
|
+
<edgar:xbrlFile sequence="9" file="ebay-20090930.xsd" type="EX-101.SCH" size="13290" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/ebay-20090930.xsd" />
|
|
2477
|
+
<edgar:xbrlFile sequence="10" file="ebay-20090930_cal.xml" type="EX-101.CAL" size="35666" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/ebay-20090930_cal.xml" />
|
|
2478
|
+
<edgar:xbrlFile sequence="11" file="ebay-20090930_lab.xml" type="EX-101.LAB" size="87896" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/ebay-20090930_lab.xml" />
|
|
2479
|
+
<edgar:xbrlFile sequence="12" file="ebay-20090930_pre.xml" type="EX-101.PRE" size="74306" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1065088/000119312509214947/ebay-20090930_pre.xml" />
|
|
2480
|
+
</edgar:xbrlFiles>
|
|
2481
|
+
</edgar:xbrlFiling>
|
|
2482
|
+
</item>
|
|
2483
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/0001193125-09-214859-index.htm">
|
|
2484
|
+
<title>APPLE INC (0000320193) (Filer)</title>
|
|
2485
|
+
<link>http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/0001193125-09-214859-index.htm</link>
|
|
2486
|
+
<description>10-K</description>
|
|
2487
|
+
<pubDate>Tue, 27 Oct 2009 16:18:29 EDT</pubDate>
|
|
2488
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2489
|
+
<edgar:companyName>APPLE INC</edgar:companyName>
|
|
2490
|
+
<edgar:formType>10-K</edgar:formType>
|
|
2491
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2492
|
+
<edgar:cikNumber>0000320193</edgar:cikNumber>
|
|
2493
|
+
<edgar:accessionNumber>0001193125-09-214859</edgar:accessionNumber>
|
|
2494
|
+
<edgar:fileNumber>000-10030</edgar:fileNumber>
|
|
2495
|
+
<edgar:xbrlFiles>
|
|
2496
|
+
<edgar:xbrlFile sequence="1" file="d10k.htm" type="10-K" size="1231750" description="FOR THE FISCAL YEAR ENDED SEPTEMBER 26, 2009" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/d10k.htm" />
|
|
2497
|
+
<edgar:xbrlFile sequence="2" file="dex211.htm" type="EX-21.1" size="2792" description="SUBSIDIARIES OF THE REGISTRANT" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/dex211.htm" />
|
|
2498
|
+
<edgar:xbrlFile sequence="3" file="dex231.htm" type="EX-23.1" size="1634" description="CONSENT OF ERNST & YOUNG LLP" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/dex231.htm" />
|
|
2499
|
+
<edgar:xbrlFile sequence="4" file="dex232.htm" type="EX-23.2" size="2390" description="CONSENT OF KPMG LLP" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/dex232.htm" />
|
|
2500
|
+
<edgar:xbrlFile sequence="5" file="dex311.htm" type="EX-31.1" size="9851" description="RULE 13A-14(A) / 15D-14(A) CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/dex311.htm" />
|
|
2501
|
+
<edgar:xbrlFile sequence="6" file="dex312.htm" type="EX-31.2" size="10112" description="RULE 13A-14(A) / 15D-14(A) CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/dex312.htm" />
|
|
2502
|
+
<edgar:xbrlFile sequence="7" file="dex321.htm" type="EX-32.1" size="5354" description="SECTION 1350 CERTIFICATIONS OF CEO AND CFO" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/dex321.htm" />
|
|
2503
|
+
<edgar:xbrlFile sequence="8" file="aapl-20090926.xml" type="EX-101.INS" size="760344" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/aapl-20090926.xml" />
|
|
2504
|
+
<edgar:xbrlFile sequence="9" file="aapl-20090926.xsd" type="EX-101.SCH" size="13066" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/aapl-20090926.xsd" />
|
|
2505
|
+
<edgar:xbrlFile sequence="10" file="aapl-20090926_cal.xml" type="EX-101.CAL" size="30955" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/aapl-20090926_cal.xml" />
|
|
2506
|
+
<edgar:xbrlFile sequence="11" file="aapl-20090926_def.xml" type="EX-101.DEF" size="19450" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/aapl-20090926_def.xml" />
|
|
2507
|
+
<edgar:xbrlFile sequence="12" file="aapl-20090926_lab.xml" type="EX-101.LAB" size="100641" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/aapl-20090926_lab.xml" />
|
|
2508
|
+
<edgar:xbrlFile sequence="13" file="aapl-20090926_pre.xml" type="EX-101.PRE" size="80647" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/aapl-20090926_pre.xml" />
|
|
2509
|
+
<edgar:xbrlFile sequence="14" file="g91485g21p46.jpg" type="GRAPHIC" size="53857" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/320193/000119312509214859/g91485g21p46.jpg" />
|
|
2510
|
+
</edgar:xbrlFiles>
|
|
2511
|
+
</edgar:xbrlFiling>
|
|
2512
|
+
</item>
|
|
2513
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/0001193125-09-214821-index.htm">
|
|
2514
|
+
<title>AMEDISYS INC (0000896262) (Filer)</title>
|
|
2515
|
+
<link>http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/0001193125-09-214821-index.htm</link>
|
|
2516
|
+
<description>10-Q</description>
|
|
2517
|
+
<pubDate>Tue, 27 Oct 2009 16:04:17 EDT</pubDate>
|
|
2518
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2519
|
+
<edgar:companyName>AMEDISYS INC</edgar:companyName>
|
|
2520
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2521
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2522
|
+
<edgar:cikNumber>0000896262</edgar:cikNumber>
|
|
2523
|
+
<edgar:accessionNumber>0001193125-09-214821</edgar:accessionNumber>
|
|
2524
|
+
<edgar:fileNumber>000-24260</edgar:fileNumber>
|
|
2525
|
+
<edgar:xbrlFiles>
|
|
2526
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="660087" description="FORM 10-Q FOR QUARTERLY PERIOD ENDED SEPTEMBER 30, 2009" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/d10q.htm" />
|
|
2527
|
+
<edgar:xbrlFile sequence="2" file="dex32.htm" type="EX-3.2" size="124160" description="COMPOSITE OF BY-LAWS" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex32.htm" />
|
|
2528
|
+
<edgar:xbrlFile sequence="3" file="dex101.htm" type="EX-10.1" size="99737" description="EMPLOYMENT AGREEMENT - MICHAEL FLEMING" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex101.htm" />
|
|
2529
|
+
<edgar:xbrlFile sequence="4" file="dex102.htm" type="EX-10.2" size="265937" description="EMPLOYMENT AGREEMENT - DAVID R. BUCEY" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex102.htm" />
|
|
2530
|
+
<edgar:xbrlFile sequence="5" file="dex311.htm" type="EX-31.1" size="9243" description="SECTION 302 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex311.htm" />
|
|
2531
|
+
<edgar:xbrlFile sequence="6" file="dex312.htm" type="EX-31.2" size="9224" description="SECTION 302 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex312.htm" />
|
|
2532
|
+
<edgar:xbrlFile sequence="7" file="dex321.htm" type="EX-32.1" size="3119" description="SECTION 906 CERTIFICATION OF CEO" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex321.htm" />
|
|
2533
|
+
<edgar:xbrlFile sequence="8" file="dex322.htm" type="EX-32.2" size="3086" description="SECTION 906 CERTIFICATION OF CFO" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/dex322.htm" />
|
|
2534
|
+
<edgar:xbrlFile sequence="9" file="amed-20090930.xml" type="EX-101.INS" size="192821" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/amed-20090930.xml" />
|
|
2535
|
+
<edgar:xbrlFile sequence="10" file="amed-20090930.xsd" type="EX-101.SCH" size="8743" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/amed-20090930.xsd" />
|
|
2536
|
+
<edgar:xbrlFile sequence="11" file="amed-20090930_cal.xml" type="EX-101.CAL" size="40449" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/amed-20090930_cal.xml" />
|
|
2537
|
+
<edgar:xbrlFile sequence="12" file="amed-20090930_lab.xml" type="EX-101.LAB" size="97498" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/amed-20090930_lab.xml" />
|
|
2538
|
+
<edgar:xbrlFile sequence="13" file="amed-20090930_pre.xml" type="EX-101.PRE" size="77802" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/amed-20090930_pre.xml" />
|
|
2539
|
+
<edgar:xbrlFile sequence="14" file="g40499g04r42.jpg" type="GRAPHIC" size="2977" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/g40499g04r42.jpg" />
|
|
2540
|
+
<edgar:xbrlFile sequence="15" file="g40499g58i56.jpg" type="GRAPHIC" size="4732" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/896262/000119312509214821/g40499g58i56.jpg" />
|
|
2541
|
+
</edgar:xbrlFiles>
|
|
2542
|
+
</edgar:xbrlFiling>
|
|
2543
|
+
</item>
|
|
2544
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/0000950123-09-053579-index.htm">
|
|
2545
|
+
<title>DIAMOND OFFSHORE DRILLING INC (0000949039) (Filer)</title>
|
|
2546
|
+
<link>http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/0000950123-09-053579-index.htm</link>
|
|
2547
|
+
<description>10-Q</description>
|
|
2548
|
+
<pubDate>Tue, 27 Oct 2009 14:38:55 EDT</pubDate>
|
|
2549
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2550
|
+
<edgar:companyName>DIAMOND OFFSHORE DRILLING INC</edgar:companyName>
|
|
2551
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2552
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2553
|
+
<edgar:cikNumber>0000949039</edgar:cikNumber>
|
|
2554
|
+
<edgar:accessionNumber>0000950123-09-053579</edgar:accessionNumber>
|
|
2555
|
+
<edgar:fileNumber>001-13926</edgar:fileNumber>
|
|
2556
|
+
<edgar:xbrlFiles>
|
|
2557
|
+
<edgar:xbrlFile sequence="1" file="h67774e10vq.htm" type="10-Q" size="579522" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/h67774e10vq.htm" />
|
|
2558
|
+
<edgar:xbrlFile sequence="2" file="h67774exv31w1.htm" type="EX-31.1" size="8367" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/h67774exv31w1.htm" />
|
|
2559
|
+
<edgar:xbrlFile sequence="3" file="h67774exv31w2.htm" type="EX-31.2" size="8346" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/h67774exv31w2.htm" />
|
|
2560
|
+
<edgar:xbrlFile sequence="4" file="h67774exv32w1.htm" type="EX-32.1" size="2640" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/h67774exv32w1.htm" />
|
|
2561
|
+
<edgar:xbrlFile sequence="5" file="do-20090930.xml" type="EX-101.INS" size="322262" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/do-20090930.xml" />
|
|
2562
|
+
<edgar:xbrlFile sequence="6" file="do-20090930.xsd" type="EX-101.SCH" size="12542" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/do-20090930.xsd" />
|
|
2563
|
+
<edgar:xbrlFile sequence="7" file="do-20090930_cal.xml" type="EX-101.CAL" size="42227" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/do-20090930_cal.xml" />
|
|
2564
|
+
<edgar:xbrlFile sequence="8" file="do-20090930_lab.xml" type="EX-101.LAB" size="137447" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/do-20090930_lab.xml" />
|
|
2565
|
+
<edgar:xbrlFile sequence="9" file="do-20090930_pre.xml" type="EX-101.PRE" size="79537" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/do-20090930_pre.xml" />
|
|
2566
|
+
<edgar:xbrlFile sequence="10" file="do-20090930_def.xml" type="EX-101.DEF" size="9534" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/949039/000095012309053579/do-20090930_def.xml" />
|
|
2567
|
+
</edgar:xbrlFiles>
|
|
2568
|
+
</edgar:xbrlFiling>
|
|
2569
|
+
</item>
|
|
2570
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/0001104659-09-060554-index.htm">
|
|
2571
|
+
<title>INTERNATIONAL BUSINESS MACHINES CORP (0000051143) (Filer)</title>
|
|
2572
|
+
<link>http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/0001104659-09-060554-index.htm</link>
|
|
2573
|
+
<description>10-Q</description>
|
|
2574
|
+
<pubDate>Tue, 27 Oct 2009 14:02:36 EDT</pubDate>
|
|
2575
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2576
|
+
<edgar:companyName>INTERNATIONAL BUSINESS MACHINES CORP</edgar:companyName>
|
|
2577
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2578
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2579
|
+
<edgar:cikNumber>0000051143</edgar:cikNumber>
|
|
2580
|
+
<edgar:accessionNumber>0001104659-09-060554</edgar:accessionNumber>
|
|
2581
|
+
<edgar:fileNumber>001-02360</edgar:fileNumber>
|
|
2582
|
+
<edgar:xbrlFiles>
|
|
2583
|
+
<edgar:xbrlFile sequence="1" file="a09-26663_110q.htm" type="10-Q" size="3051486" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_110q.htm" />
|
|
2584
|
+
<edgar:xbrlFile sequence="2" file="a09-26663_1ex3.htm" type="EX-3" size="209336" description="EX-3" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex3.htm" />
|
|
2585
|
+
<edgar:xbrlFile sequence="3" file="a09-26663_1ex11.htm" type="EX-11" size="69546" description="EX-11" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex11.htm" />
|
|
2586
|
+
<edgar:xbrlFile sequence="4" file="a09-26663_1ex12.htm" type="EX-12" size="27671" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex12.htm" />
|
|
2587
|
+
<edgar:xbrlFile sequence="5" file="a09-26663_1ex31d1.htm" type="EX-31.1" size="13325" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex31d1.htm" />
|
|
2588
|
+
<edgar:xbrlFile sequence="6" file="a09-26663_1ex31d2.htm" type="EX-31.2" size="13413" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex31d2.htm" />
|
|
2589
|
+
<edgar:xbrlFile sequence="7" file="a09-26663_1ex32d1.htm" type="EX-32.1" size="7394" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex32d1.htm" />
|
|
2590
|
+
<edgar:xbrlFile sequence="8" file="a09-26663_1ex32d2.htm" type="EX-32.2" size="7390" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/a09-26663_1ex32d2.htm" />
|
|
2591
|
+
<edgar:xbrlFile sequence="9" file="ibm-20090930.xml" type="EX-101.INS" size="1619587" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/ibm-20090930.xml" />
|
|
2592
|
+
<edgar:xbrlFile sequence="10" file="ibm-20090930.xsd" type="EX-101.SCH" size="22159" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/ibm-20090930.xsd" />
|
|
2593
|
+
<edgar:xbrlFile sequence="11" file="ibm-20090930_cal.xml" type="EX-101.CAL" size="55989" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/ibm-20090930_cal.xml" />
|
|
2594
|
+
<edgar:xbrlFile sequence="12" file="ibm-20090930_def.xml" type="EX-101.DEF" size="85835" description="EX-101.DEF" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/ibm-20090930_def.xml" />
|
|
2595
|
+
<edgar:xbrlFile sequence="13" file="ibm-20090930_lab.xml" type="EX-101.LAB" size="380470" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/ibm-20090930_lab.xml" />
|
|
2596
|
+
<edgar:xbrlFile sequence="14" file="ibm-20090930_pre.xml" type="EX-101.PRE" size="122381" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/51143/000110465909060554/ibm-20090930_pre.xml" />
|
|
2597
|
+
</edgar:xbrlFiles>
|
|
2598
|
+
</edgar:xbrlFiling>
|
|
2599
|
+
</item>
|
|
2600
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/0001193125-09-214606-index.htm">
|
|
2601
|
+
<title>UNITED STATES STEEL CORP (0001163302) (Filer)</title>
|
|
2602
|
+
<link>http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/0001193125-09-214606-index.htm</link>
|
|
2603
|
+
<description>10-Q</description>
|
|
2604
|
+
<pubDate>Tue, 27 Oct 2009 13:13:12 EDT</pubDate>
|
|
2605
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2606
|
+
<edgar:companyName>UNITED STATES STEEL CORP</edgar:companyName>
|
|
2607
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2608
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2609
|
+
<edgar:cikNumber>0001163302</edgar:cikNumber>
|
|
2610
|
+
<edgar:accessionNumber>0001193125-09-214606</edgar:accessionNumber>
|
|
2611
|
+
<edgar:fileNumber>001-16811</edgar:fileNumber>
|
|
2612
|
+
<edgar:xbrlFiles>
|
|
2613
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="1001132" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/d10q.htm" />
|
|
2614
|
+
<edgar:xbrlFile sequence="2" file="dex121.htm" type="EX-12.1" size="24685" description="COMPUTATION OF RATIO OF EARNINGS TO COMB. FIXED CHARGES & PREF. STOCK DIVIDENDS" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/dex121.htm" />
|
|
2615
|
+
<edgar:xbrlFile sequence="3" file="dex122.htm" type="EX-12.2" size="21027" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/dex122.htm" />
|
|
2616
|
+
<edgar:xbrlFile sequence="4" file="dex311.htm" type="EX-31.1" size="9488" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/dex311.htm" />
|
|
2617
|
+
<edgar:xbrlFile sequence="5" file="dex312.htm" type="EX-31.2" size="9499" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/dex312.htm" />
|
|
2618
|
+
<edgar:xbrlFile sequence="6" file="dex321.htm" type="EX-32.1" size="3428" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/dex321.htm" />
|
|
2619
|
+
<edgar:xbrlFile sequence="7" file="dex322.htm" type="EX-32.2" size="3429" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/dex322.htm" />
|
|
2620
|
+
<edgar:xbrlFile sequence="8" file="x-20090930.xml" type="EX-101.INS" size="634837" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/x-20090930.xml" />
|
|
2621
|
+
<edgar:xbrlFile sequence="9" file="x-20090930.xsd" type="EX-101.SCH" size="21598" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/x-20090930.xsd" />
|
|
2622
|
+
<edgar:xbrlFile sequence="10" file="x-20090930_cal.xml" type="EX-101.CAL" size="43408" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/x-20090930_cal.xml" />
|
|
2623
|
+
<edgar:xbrlFile sequence="11" file="x-20090930_lab.xml" type="EX-101.LAB" size="111567" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/x-20090930_lab.xml" />
|
|
2624
|
+
<edgar:xbrlFile sequence="12" file="x-20090930_pre.xml" type="EX-101.PRE" size="95882" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/x-20090930_pre.xml" />
|
|
2625
|
+
<edgar:xbrlFile sequence="13" file="g74000g78v71.jpg" type="GRAPHIC" size="30171" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/1163302/000119312509214606/g74000g78v71.jpg" />
|
|
2626
|
+
</edgar:xbrlFiles>
|
|
2627
|
+
</edgar:xbrlFiling>
|
|
2628
|
+
</item>
|
|
2629
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/0000950123-09-053491-index.htm">
|
|
2630
|
+
<title>REYNOLDS AMERICAN INC (0001275283) (Filer)</title>
|
|
2631
|
+
<link>http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/0000950123-09-053491-index.htm</link>
|
|
2632
|
+
<description>10-Q</description>
|
|
2633
|
+
<pubDate>Tue, 27 Oct 2009 11:24:13 EDT</pubDate>
|
|
2634
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2635
|
+
<edgar:companyName>REYNOLDS AMERICAN INC</edgar:companyName>
|
|
2636
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2637
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2638
|
+
<edgar:cikNumber>0001275283</edgar:cikNumber>
|
|
2639
|
+
<edgar:accessionNumber>0000950123-09-053491</edgar:accessionNumber>
|
|
2640
|
+
<edgar:fileNumber>001-32258</edgar:fileNumber>
|
|
2641
|
+
<edgar:xbrlFiles>
|
|
2642
|
+
<edgar:xbrlFile sequence="1" file="g20281e10vq.htm" type="10-Q" size="1164844" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/g20281e10vq.htm" />
|
|
2643
|
+
<edgar:xbrlFile sequence="2" file="g20281exv31w1.htm" type="EX-31.1" size="7975" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/g20281exv31w1.htm" />
|
|
2644
|
+
<edgar:xbrlFile sequence="3" file="g20281exv31w2.htm" type="EX-31.2" size="8486" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/g20281exv31w2.htm" />
|
|
2645
|
+
<edgar:xbrlFile sequence="4" file="g20281exv32w1.htm" type="EX-32.1" size="3995" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/g20281exv32w1.htm" />
|
|
2646
|
+
<edgar:xbrlFile sequence="5" file="rai-20090930.xml" type="EX-101.INS" size="1277335" description="EX-101 INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/rai-20090930.xml" />
|
|
2647
|
+
<edgar:xbrlFile sequence="6" file="rai-20090930.xsd" type="EX-101.SCH" size="14234" description="EX-101 SCHEMA DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/rai-20090930.xsd" />
|
|
2648
|
+
<edgar:xbrlFile sequence="7" file="rai-20090930_cal.xml" type="EX-101.CAL" size="39377" description="EX-101 CALCULATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/rai-20090930_cal.xml" />
|
|
2649
|
+
<edgar:xbrlFile sequence="8" file="rai-20090930_lab.xml" type="EX-101.LAB" size="141551" description="EX-101 LABELS LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/rai-20090930_lab.xml" />
|
|
2650
|
+
<edgar:xbrlFile sequence="9" file="rai-20090930_pre.xml" type="EX-101.PRE" size="80253" description="EX-101 PRESENTATION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/rai-20090930_pre.xml" />
|
|
2651
|
+
<edgar:xbrlFile sequence="10" file="rai-20090930_def.xml" type="EX-101.DEF" size="11362" description="EX-101 DEFINITION LINKBASE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/1275283/000095012309053491/rai-20090930_def.xml" />
|
|
2652
|
+
</edgar:xbrlFiles>
|
|
2653
|
+
</edgar:xbrlFiling>
|
|
2654
|
+
</item>
|
|
2655
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/0001104659-09-060460-index.htm">
|
|
2656
|
+
<title>HOSPIRA INC (0001274057) (Filer)</title>
|
|
2657
|
+
<link>http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/0001104659-09-060460-index.htm</link>
|
|
2658
|
+
<description>10-Q</description>
|
|
2659
|
+
<pubDate>Tue, 27 Oct 2009 08:07:17 EDT</pubDate>
|
|
2660
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2661
|
+
<edgar:companyName>HOSPIRA INC</edgar:companyName>
|
|
2662
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2663
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2664
|
+
<edgar:cikNumber>0001274057</edgar:cikNumber>
|
|
2665
|
+
<edgar:accessionNumber>0001104659-09-060460</edgar:accessionNumber>
|
|
2666
|
+
<edgar:fileNumber>001-31946</edgar:fileNumber>
|
|
2667
|
+
<edgar:xbrlFiles>
|
|
2668
|
+
<edgar:xbrlFile sequence="1" file="a09-24335_110q.htm" type="10-Q" size="1279115" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_110q.htm" />
|
|
2669
|
+
<edgar:xbrlFile sequence="2" file="a09-24335_1ex10d1.htm" type="EX-10.1" size="1091530" description="EX-10.1" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex10d1.htm" />
|
|
2670
|
+
<edgar:xbrlFile sequence="3" file="a09-24335_1ex10d2.htm" type="EX-10.2" size="88545" description="EX-10.2" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex10d2.htm" />
|
|
2671
|
+
<edgar:xbrlFile sequence="4" file="a09-24335_1ex12d1.htm" type="EX-12.1" size="23793" description="EX-12.1" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex12d1.htm" />
|
|
2672
|
+
<edgar:xbrlFile sequence="5" file="a09-24335_1ex31d1.htm" type="EX-31.1" size="10957" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex31d1.htm" />
|
|
2673
|
+
<edgar:xbrlFile sequence="6" file="a09-24335_1ex31d2.htm" type="EX-31.2" size="10966" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex31d2.htm" />
|
|
2674
|
+
<edgar:xbrlFile sequence="7" file="a09-24335_1ex32d1.htm" type="EX-32.1" size="5302" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex32d1.htm" />
|
|
2675
|
+
<edgar:xbrlFile sequence="8" file="a09-24335_1ex32d2.htm" type="EX-32.2" size="5876" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/a09-24335_1ex32d2.htm" />
|
|
2676
|
+
<edgar:xbrlFile sequence="9" file="hsp-20090930.xml" type="EX-101.INS" size="807025" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/hsp-20090930.xml" />
|
|
2677
|
+
<edgar:xbrlFile sequence="10" file="hsp-20090930.xsd" type="EX-101.SCH" size="15764" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/hsp-20090930.xsd" />
|
|
2678
|
+
<edgar:xbrlFile sequence="11" file="hsp-20090930_cal.xml" type="EX-101.CAL" size="41952" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/hsp-20090930_cal.xml" />
|
|
2679
|
+
<edgar:xbrlFile sequence="12" file="hsp-20090930_def.xml" type="EX-101.DEF" size="12230" description="EX-101.DEF" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/hsp-20090930_def.xml" />
|
|
2680
|
+
<edgar:xbrlFile sequence="13" file="hsp-20090930_lab.xml" type="EX-101.LAB" size="187599" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/hsp-20090930_lab.xml" />
|
|
2681
|
+
<edgar:xbrlFile sequence="14" file="hsp-20090930_pre.xml" type="EX-101.PRE" size="102475" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/1274057/000110465909060460/hsp-20090930_pre.xml" />
|
|
2682
|
+
</edgar:xbrlFiles>
|
|
2683
|
+
</edgar:xbrlFiling>
|
|
2684
|
+
</item>
|
|
2685
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/0000930413-09-005367-index.htm">
|
|
2686
|
+
<title>QUEST DIAGNOSTICS INC (0001022079) (Filer)</title>
|
|
2687
|
+
<link>http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/0000930413-09-005367-index.htm</link>
|
|
2688
|
+
<description>10-Q</description>
|
|
2689
|
+
<pubDate>Tue, 27 Oct 2009 07:33:19 EDT</pubDate>
|
|
2690
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2691
|
+
<edgar:companyName>QUEST DIAGNOSTICS INC</edgar:companyName>
|
|
2692
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2693
|
+
<edgar:filingDate>10/27/2009</edgar:filingDate>
|
|
2694
|
+
<edgar:cikNumber>0001022079</edgar:cikNumber>
|
|
2695
|
+
<edgar:accessionNumber>0000930413-09-005367</edgar:accessionNumber>
|
|
2696
|
+
<edgar:fileNumber>001-12215</edgar:fileNumber>
|
|
2697
|
+
<edgar:xbrlFiles>
|
|
2698
|
+
<edgar:xbrlFile sequence="1" file="c59138_10-q.htm" type="10-Q" size="893074" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/c59138_10-q.htm" />
|
|
2699
|
+
<edgar:xbrlFile sequence="2" file="c59138_ex31-1.htm" type="EX-31.1" size="10375" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/c59138_ex31-1.htm" />
|
|
2700
|
+
<edgar:xbrlFile sequence="3" file="c59138_ex31-2.htm" type="EX-31.2" size="10193" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/c59138_ex31-2.htm" />
|
|
2701
|
+
<edgar:xbrlFile sequence="4" file="c59138_ex32-1.htm" type="EX-32.1" size="2099" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/c59138_ex32-1.htm" />
|
|
2702
|
+
<edgar:xbrlFile sequence="5" file="c59138_ex32-2.htm" type="EX-32.2" size="2081" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/c59138_ex32-2.htm" />
|
|
2703
|
+
<edgar:xbrlFile sequence="6" file="dgx-20090930.xml" type="EX-101.INS" size="1316292" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/dgx-20090930.xml" />
|
|
2704
|
+
<edgar:xbrlFile sequence="7" file="dgx-20090930.xsd" type="EX-101.SCH" size="14476" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/dgx-20090930.xsd" />
|
|
2705
|
+
<edgar:xbrlFile sequence="8" file="dgx-20090930_cal.xml" type="EX-101.CAL" size="654174" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/dgx-20090930_cal.xml" />
|
|
2706
|
+
<edgar:xbrlFile sequence="9" file="dgx-20090930_def.xml" type="EX-101.DEF" size="981661" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/dgx-20090930_def.xml" />
|
|
2707
|
+
<edgar:xbrlFile sequence="10" file="dgx-20090930_lab.xml" type="EX-101.LAB" size="1404111" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/dgx-20090930_lab.xml" />
|
|
2708
|
+
<edgar:xbrlFile sequence="11" file="dgx-20090930_pre.xml" type="EX-101.PRE" size="970741" description="" url="http://www.sec.gov/Archives/edgar/data/1022079/000093041309005367/dgx-20090930_pre.xml" />
|
|
2709
|
+
</edgar:xbrlFiles>
|
|
2710
|
+
</edgar:xbrlFiling>
|
|
2711
|
+
</item>
|
|
2712
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/0001193125-09-213906-index.htm">
|
|
2713
|
+
<title>BARD C R INC /NJ/ (0000009892) (Filer)</title>
|
|
2714
|
+
<link>http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/0001193125-09-213906-index.htm</link>
|
|
2715
|
+
<description>10-Q</description>
|
|
2716
|
+
<pubDate>Mon, 26 Oct 2009 17:29:08 EDT</pubDate>
|
|
2717
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2718
|
+
<edgar:companyName>BARD C R INC /NJ/</edgar:companyName>
|
|
2719
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2720
|
+
<edgar:filingDate>10/26/2009</edgar:filingDate>
|
|
2721
|
+
<edgar:cikNumber>0000009892</edgar:cikNumber>
|
|
2722
|
+
<edgar:accessionNumber>0001193125-09-213906</edgar:accessionNumber>
|
|
2723
|
+
<edgar:fileNumber>001-06926</edgar:fileNumber>
|
|
2724
|
+
<edgar:xbrlFiles>
|
|
2725
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="503899" description="QUARTERLY REPORT FOR THE PERIOD ENDED SEPTEMBER 30, 2009" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/d10q.htm" />
|
|
2726
|
+
<edgar:xbrlFile sequence="2" file="dex121.htm" type="EX-12.1" size="31637" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/dex121.htm" />
|
|
2727
|
+
<edgar:xbrlFile sequence="3" file="dex311.htm" type="EX-31.1" size="7276" description="RULE 13A-14(A)/15D-14(A) CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/dex311.htm" />
|
|
2728
|
+
<edgar:xbrlFile sequence="4" file="dex312.htm" type="EX-31.2" size="7260" description="RULE 13A-14(A)/15D-14(A) CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/dex312.htm" />
|
|
2729
|
+
<edgar:xbrlFile sequence="5" file="dex321.htm" type="EX-32.1" size="3280" description="SECTION 1350 CERTIFICATION OF CHIEF EXECUTIVE OFFICER" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/dex321.htm" />
|
|
2730
|
+
<edgar:xbrlFile sequence="6" file="dex322.htm" type="EX-32.2" size="3339" description="SECTION 1350 CERTIFICATION OF CHIEF FINANCIAL OFFICER" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/dex322.htm" />
|
|
2731
|
+
<edgar:xbrlFile sequence="7" file="bcr-20090930.xml" type="EX-101.INS" size="249868" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/bcr-20090930.xml" />
|
|
2732
|
+
<edgar:xbrlFile sequence="8" file="bcr-20090930.xsd" type="EX-101.SCH" size="13374" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/bcr-20090930.xsd" />
|
|
2733
|
+
<edgar:xbrlFile sequence="9" file="bcr-20090930_cal.xml" type="EX-101.CAL" size="35023" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/bcr-20090930_cal.xml" />
|
|
2734
|
+
<edgar:xbrlFile sequence="10" file="bcr-20090930_def.xml" type="EX-101.DEF" size="27092" description="XBRL TAXONOMY EXTENSION DEFINITION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/bcr-20090930_def.xml" />
|
|
2735
|
+
<edgar:xbrlFile sequence="11" file="bcr-20090930_lab.xml" type="EX-101.LAB" size="106177" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/bcr-20090930_lab.xml" />
|
|
2736
|
+
<edgar:xbrlFile sequence="12" file="bcr-20090930_pre.xml" type="EX-101.PRE" size="92300" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/bcr-20090930_pre.xml" />
|
|
2737
|
+
<edgar:xbrlFile sequence="13" file="d10q1.pdf" type="10-Q" size="141602" description="PDF ATTACHMENT OF THE 10-Q" url="http://www.sec.gov/Archives/edgar/data/9892/000119312509213906/d10q1.pdf" />
|
|
2738
|
+
</edgar:xbrlFiles>
|
|
2739
|
+
</edgar:xbrlFiling>
|
|
2740
|
+
</item>
|
|
2741
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/0000891092-09-003997-index.htm">
|
|
2742
|
+
<title>OMNICOM GROUP INC (0000029989) (Filer)</title>
|
|
2743
|
+
<link>http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/0000891092-09-003997-index.htm</link>
|
|
2744
|
+
<description>10-Q</description>
|
|
2745
|
+
<pubDate>Mon, 26 Oct 2009 17:17:26 EDT</pubDate>
|
|
2746
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2747
|
+
<edgar:companyName>OMNICOM GROUP INC</edgar:companyName>
|
|
2748
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2749
|
+
<edgar:filingDate>10/26/2009</edgar:filingDate>
|
|
2750
|
+
<edgar:cikNumber>0000029989</edgar:cikNumber>
|
|
2751
|
+
<edgar:accessionNumber>0000891092-09-003997</edgar:accessionNumber>
|
|
2752
|
+
<edgar:fileNumber>001-10551</edgar:fileNumber>
|
|
2753
|
+
<edgar:xbrlFiles>
|
|
2754
|
+
<edgar:xbrlFile sequence="1" file="e36832_10q.htm" type="10-Q" size="339112" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/e36832_10q.htm" />
|
|
2755
|
+
<edgar:xbrlFile sequence="2" file="e36832ex31_1.htm" type="EX-31.1" size="6054" description="CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/e36832ex31_1.htm" />
|
|
2756
|
+
<edgar:xbrlFile sequence="3" file="e36832ex31_2.htm" type="EX-31.2" size="6084" description="CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/e36832ex31_2.htm" />
|
|
2757
|
+
<edgar:xbrlFile sequence="4" file="e36832ex32_1.htm" type="EX-32.1" size="2878" description="CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/e36832ex32_1.htm" />
|
|
2758
|
+
<edgar:xbrlFile sequence="5" file="e36832ex32_2.htm" type="EX-32.2" size="2923" description="CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/e36832ex32_2.htm" />
|
|
2759
|
+
<edgar:xbrlFile sequence="6" file="omc-20090930.xml" type="EX-101.INS" size="326089" description="" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/omc-20090930.xml" />
|
|
2760
|
+
<edgar:xbrlFile sequence="7" file="omc-20090930.xsd" type="EX-101.SCH" size="13241" description="" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/omc-20090930.xsd" />
|
|
2761
|
+
<edgar:xbrlFile sequence="8" file="omc-20090930_cal.xml" type="EX-101.CAL" size="44350" description="" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/omc-20090930_cal.xml" />
|
|
2762
|
+
<edgar:xbrlFile sequence="9" file="omc-20090930_lab.xml" type="EX-101.LAB" size="140088" description="" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/omc-20090930_lab.xml" />
|
|
2763
|
+
<edgar:xbrlFile sequence="10" file="omc-20090930_pre.xml" type="EX-101.PRE" size="95763" description="" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/omc-20090930_pre.xml" />
|
|
2764
|
+
<edgar:xbrlFile sequence="11" file="e36832_10q.pdf" type="10-Q" size="496833" description="PDF OF 10-Q" url="http://www.sec.gov/Archives/edgar/data/29989/000089109209003997/e36832_10q.pdf" />
|
|
2765
|
+
</edgar:xbrlFiles>
|
|
2766
|
+
</edgar:xbrlFiling>
|
|
2767
|
+
</item>
|
|
2768
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/0001104659-09-060362-index.htm">
|
|
2769
|
+
<title>DUPONT E I DE NEMOURS & CO (0000030554) (Filer)</title>
|
|
2770
|
+
<link>http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/0001104659-09-060362-index.htm</link>
|
|
2771
|
+
<description>10-Q</description>
|
|
2772
|
+
<pubDate>Mon, 26 Oct 2009 16:33:11 EDT</pubDate>
|
|
2773
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2774
|
+
<edgar:companyName>DUPONT E I DE NEMOURS & CO</edgar:companyName>
|
|
2775
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2776
|
+
<edgar:filingDate>10/26/2009</edgar:filingDate>
|
|
2777
|
+
<edgar:cikNumber>0000030554</edgar:cikNumber>
|
|
2778
|
+
<edgar:accessionNumber>0001104659-09-060362</edgar:accessionNumber>
|
|
2779
|
+
<edgar:fileNumber>001-00815</edgar:fileNumber>
|
|
2780
|
+
<edgar:xbrlFiles>
|
|
2781
|
+
<edgar:xbrlFile sequence="1" file="a09-32134_110q.htm" type="10-Q" size="1641644" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/a09-32134_110q.htm" />
|
|
2782
|
+
<edgar:xbrlFile sequence="2" file="a09-32134_1ex12.htm" type="EX-12" size="90003" description="EX-12" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/a09-32134_1ex12.htm" />
|
|
2783
|
+
<edgar:xbrlFile sequence="3" file="a09-32134_1ex31d1.htm" type="EX-31.1" size="16241" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/a09-32134_1ex31d1.htm" />
|
|
2784
|
+
<edgar:xbrlFile sequence="4" file="a09-32134_1ex31d2.htm" type="EX-31.2" size="16150" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/a09-32134_1ex31d2.htm" />
|
|
2785
|
+
<edgar:xbrlFile sequence="5" file="a09-32134_1ex32d1.htm" type="EX-32.1" size="6167" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/a09-32134_1ex32d1.htm" />
|
|
2786
|
+
<edgar:xbrlFile sequence="6" file="a09-32134_1ex32d2.htm" type="EX-32.2" size="6115" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/a09-32134_1ex32d2.htm" />
|
|
2787
|
+
<edgar:xbrlFile sequence="7" file="dd-20090930.xml" type="EX-101.INS" size="1853100" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/dd-20090930.xml" />
|
|
2788
|
+
<edgar:xbrlFile sequence="8" file="dd-20090930.xsd" type="EX-101.SCH" size="15108" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/dd-20090930.xsd" />
|
|
2789
|
+
<edgar:xbrlFile sequence="9" file="dd-20090930_cal.xml" type="EX-101.CAL" size="41386" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/dd-20090930_cal.xml" />
|
|
2790
|
+
<edgar:xbrlFile sequence="10" file="dd-20090930_lab.xml" type="EX-101.LAB" size="140304" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/dd-20090930_lab.xml" />
|
|
2791
|
+
<edgar:xbrlFile sequence="11" file="dd-20090930_pre.xml" type="EX-101.PRE" size="92440" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/30554/000110465909060362/dd-20090930_pre.xml" />
|
|
2792
|
+
</edgar:xbrlFiles>
|
|
2793
|
+
</edgar:xbrlFiling>
|
|
2794
|
+
</item>
|
|
2795
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/0001193125-09-213623-index.htm">
|
|
2796
|
+
<title>PPG INDUSTRIES INC (0000079879) (Filer)</title>
|
|
2797
|
+
<link>http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/0001193125-09-213623-index.htm</link>
|
|
2798
|
+
<description>10-Q</description>
|
|
2799
|
+
<pubDate>Mon, 26 Oct 2009 14:12:27 EDT</pubDate>
|
|
2800
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2801
|
+
<edgar:companyName>PPG INDUSTRIES INC</edgar:companyName>
|
|
2802
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2803
|
+
<edgar:filingDate>10/26/2009</edgar:filingDate>
|
|
2804
|
+
<edgar:cikNumber>0000079879</edgar:cikNumber>
|
|
2805
|
+
<edgar:accessionNumber>0001193125-09-213623</edgar:accessionNumber>
|
|
2806
|
+
<edgar:fileNumber>001-01687</edgar:fileNumber>
|
|
2807
|
+
<edgar:xbrlFiles>
|
|
2808
|
+
<edgar:xbrlFile sequence="1" file="d10q.htm" type="10-Q" size="704763" description="FORM 10-Q" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/d10q.htm" />
|
|
2809
|
+
<edgar:xbrlFile sequence="2" file="dex101.htm" type="EX-10.1" size="12040" description="LETTER AGREEMENT WITH ROBERT J. DELLINGER" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex101.htm" />
|
|
2810
|
+
<edgar:xbrlFile sequence="3" file="dex102.htm" type="EX-10.2" size="50982" description="EMPLOYMENT AGREEMENT - PIERRE-MARIE DELEENER" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex102.htm" />
|
|
2811
|
+
<edgar:xbrlFile sequence="4" file="dex103.htm" type="EX-10.3" size="31066" description="NONQUALIFIED STOCK OPTION AWARD AGREEMENT" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex103.htm" />
|
|
2812
|
+
<edgar:xbrlFile sequence="5" file="dex104.htm" type="EX-10.4" size="41328" description="PERFORMANCE-BASED RESTRICTED STOCK UNIT AWARD AGREEMENT FOR KEY EMPLOYEES" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex104.htm" />
|
|
2813
|
+
<edgar:xbrlFile sequence="6" file="dex105.htm" type="EX-10.5" size="42154" description="PERFORMANCE-BASED RESTRICTED STOCK UNIT AWARD AGREEMENT" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex105.htm" />
|
|
2814
|
+
<edgar:xbrlFile sequence="7" file="dex106.htm" type="EX-10.6" size="40201" description="TIME-VESTED RESTRICTED STOCK UNIT AWARD AGREEMENT" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex106.htm" />
|
|
2815
|
+
<edgar:xbrlFile sequence="8" file="dex107.htm" type="EX-10.7" size="43020" description="TSR SHARE AWARD AGREEMENT" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex107.htm" />
|
|
2816
|
+
<edgar:xbrlFile sequence="9" file="dex12.htm" type="EX-12" size="31174" description="COMPUTATION OF RATIO OF EARNINGS TO FIXED CHARGES" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex12.htm" />
|
|
2817
|
+
<edgar:xbrlFile sequence="10" file="dex311.htm" type="EX-31.1" size="9621" description="SECTION 302 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex311.htm" />
|
|
2818
|
+
<edgar:xbrlFile sequence="11" file="dex312.htm" type="EX-31.2" size="9576" description="SECTION 302 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex312.htm" />
|
|
2819
|
+
<edgar:xbrlFile sequence="12" file="dex321.htm" type="EX-32.1" size="3340" description="SECTION 906 CEO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex321.htm" />
|
|
2820
|
+
<edgar:xbrlFile sequence="13" file="dex322.htm" type="EX-32.2" size="3680" description="SECTION 906 CFO CERTIFICATION" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/dex322.htm" />
|
|
2821
|
+
<edgar:xbrlFile sequence="14" file="ppg-20090930.xml" type="EX-101.INS" size="613358" description="XBRL INSTANCE DOCUMENT" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/ppg-20090930.xml" />
|
|
2822
|
+
<edgar:xbrlFile sequence="15" file="ppg-20090930.xsd" type="EX-101.SCH" size="18844" description="XBRL TAXONOMY EXTENSION SCHEMA" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/ppg-20090930.xsd" />
|
|
2823
|
+
<edgar:xbrlFile sequence="16" file="ppg-20090930_cal.xml" type="EX-101.CAL" size="36326" description="XBRL TAXONOMY EXTENSION CALCULATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/ppg-20090930_cal.xml" />
|
|
2824
|
+
<edgar:xbrlFile sequence="17" file="ppg-20090930_lab.xml" type="EX-101.LAB" size="90728" description="XBRL TAXONOMY EXTENSION LABEL LINKBASE" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/ppg-20090930_lab.xml" />
|
|
2825
|
+
<edgar:xbrlFile sequence="18" file="ppg-20090930_pre.xml" type="EX-101.PRE" size="79925" description="XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/ppg-20090930_pre.xml" />
|
|
2826
|
+
<edgar:xbrlFile sequence="19" file="g61783logo.jpg" type="GRAPHIC" size="4321" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/g61783logo.jpg" />
|
|
2827
|
+
<edgar:xbrlFile sequence="20" file="g61783sig.jpg" type="GRAPHIC" size="2413" description="GRAPHIC" url="http://www.sec.gov/Archives/edgar/data/79879/000119312509213623/g61783sig.jpg" />
|
|
2828
|
+
</edgar:xbrlFiles>
|
|
2829
|
+
</edgar:xbrlFiling>
|
|
2830
|
+
</item>
|
|
2831
|
+
<item rdf:about="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/0001104659-09-060317-index.htm">
|
|
2832
|
+
<title>AMPHENOL CORP /DE/ (0000820313) (Filer)</title>
|
|
2833
|
+
<link>http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/0001104659-09-060317-index.htm</link>
|
|
2834
|
+
<description>10-Q</description>
|
|
2835
|
+
<pubDate>Mon, 26 Oct 2009 14:07:11 EDT</pubDate>
|
|
2836
|
+
<edgar:xbrlFiling xmlns:edgar="http://www.sec.gov/Archives/edgar">
|
|
2837
|
+
<edgar:companyName>AMPHENOL CORP /DE/</edgar:companyName>
|
|
2838
|
+
<edgar:formType>10-Q</edgar:formType>
|
|
2839
|
+
<edgar:filingDate>10/26/2009</edgar:filingDate>
|
|
2840
|
+
<edgar:cikNumber>0000820313</edgar:cikNumber>
|
|
2841
|
+
<edgar:accessionNumber>0001104659-09-060317</edgar:accessionNumber>
|
|
2842
|
+
<edgar:fileNumber>001-10879</edgar:fileNumber>
|
|
2843
|
+
<edgar:xbrlFiles>
|
|
2844
|
+
<edgar:xbrlFile sequence="1" file="a09-30760_110q.htm" type="10-Q" size="825450" description="10-Q" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_110q.htm" />
|
|
2845
|
+
<edgar:xbrlFile sequence="2" file="a09-30760_1ex10d20.htm" type="EX-10.20" size="13849" description="EX-10.20" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex10d20.htm" />
|
|
2846
|
+
<edgar:xbrlFile sequence="3" file="a09-30760_1ex10d45.htm" type="EX-10.45" size="42517" description="EX-10.45" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex10d45.htm" />
|
|
2847
|
+
<edgar:xbrlFile sequence="4" file="a09-30760_1ex10d46.htm" type="EX-10.46" size="13024" description="EX-10.46" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex10d46.htm" />
|
|
2848
|
+
<edgar:xbrlFile sequence="5" file="a09-30760_1ex31d1.htm" type="EX-31.1" size="12203" description="EX-31.1" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex31d1.htm" />
|
|
2849
|
+
<edgar:xbrlFile sequence="6" file="a09-30760_1ex31d2.htm" type="EX-31.2" size="12070" description="EX-31.2" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex31d2.htm" />
|
|
2850
|
+
<edgar:xbrlFile sequence="7" file="a09-30760_1ex32d1.htm" type="EX-32.1" size="7064" description="EX-32.1" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex32d1.htm" />
|
|
2851
|
+
<edgar:xbrlFile sequence="8" file="a09-30760_1ex32d2.htm" type="EX-32.2" size="6963" description="EX-32.2" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/a09-30760_1ex32d2.htm" />
|
|
2852
|
+
<edgar:xbrlFile sequence="9" file="aph-20090930.xml" type="EX-101.INS" size="644048" description="EX-101.INS" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/aph-20090930.xml" />
|
|
2853
|
+
<edgar:xbrlFile sequence="10" file="aph-20090930.xsd" type="EX-101.SCH" size="12937" description="EX-101.SCH" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/aph-20090930.xsd" />
|
|
2854
|
+
<edgar:xbrlFile sequence="11" file="aph-20090930_cal.xml" type="EX-101.CAL" size="33125" description="EX-101.CAL" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/aph-20090930_cal.xml" />
|
|
2855
|
+
<edgar:xbrlFile sequence="12" file="aph-20090930_lab.xml" type="EX-101.LAB" size="161603" description="EX-101.LAB" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/aph-20090930_lab.xml" />
|
|
2856
|
+
<edgar:xbrlFile sequence="13" file="aph-20090930_pre.xml" type="EX-101.PRE" size="80613" description="EX-101.PRE" url="http://www.sec.gov/Archives/edgar/data/820313/000110465909060317/aph-20090930_pre.xml" />
|
|
2857
|
+
</edgar:xbrlFiles>
|
|
2858
|
+
</edgar:xbrlFiling>
|
|
2859
|
+
</item>
|
|
2860
|
+
</channel>
|
|
2861
|
+
</rss>
|