├── .github ├── issue_template.md ├── pull_request_template.md ├── stale.yaml └── workflows │ └── general.yaml ├── .gitignore ├── CHANGELOG.md ├── LEAD.md ├── LICENSE ├── Makefile ├── README.md ├── cov ├── coverage.css ├── coverage.txt ├── coveralls.json ├── datapackage_clj │ └── core.clj.html └── index.html ├── doc └── intro.md ├── project.clj ├── resources └── data │ ├── packages │ ├── country-codes │ │ ├── data │ │ │ └── country-codes.csv │ │ └── datapackage.json │ ├── country-list │ │ ├── data.csv │ │ └── datapackage.json │ ├── currency-codes │ │ ├── data │ │ │ └── codes-all.csv │ │ └── datapackage.json │ ├── s-and-p-500-companies │ │ ├── data │ │ │ ├── constituents-financials.csv │ │ │ └── constituents.csv │ │ └── datapackage.json │ └── s-and-p-500 │ │ ├── data │ │ └── data.csv │ │ └── datapackage.json │ └── resources │ ├── table.csv │ ├── table.json │ ├── table.ndjson │ ├── table.ods │ ├── table.tsv │ ├── table.xls │ └── table.xlsx ├── src └── datapackage_clj │ └── core.clj └── test ├── coveralls.sh └── datapackage_clj └── core_test.clj /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | 3 | Please replace this line with full information about your idea or problem. If it's a bug share as much as possible to reproduce it 4 | 5 | --- 6 | 7 | Please preserve this line to notify @cblop (lead of this repository) 8 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | 3 | Please replace this line with full information about your pull request. Make sure that tests pass before publishing it 4 | 5 | --- 6 | 7 | Please preserve this line to notify @cblop (lead of this repository) 8 | -------------------------------------------------------------------------------- /.github/stale.yaml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 90 3 | 4 | # Number of days of inactivity before a stale issue is closed 5 | daysUntilClose: 30 6 | 7 | # Issues with these labels will never be considered stale 8 | exemptLabels: 9 | - feature 10 | - enhancement 11 | - bug 12 | 13 | # Label to use when marking an issue as stale 14 | staleLabel: wontfix 15 | 16 | # Comment to post when marking an issue as stale. Set to `false` to disable 17 | markComment: > 18 | This issue has been automatically marked as stale because it has not had 19 | recent activity. It will be closed if no further activity occurs. Thank you 20 | for your contributions. 21 | 22 | # Comment to post when closing a stale issue. Set to `false` to disable 23 | closeComment: false 24 | -------------------------------------------------------------------------------- /.github/workflows/general.yaml: -------------------------------------------------------------------------------- 1 | name: general 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | tags: 8 | - v*.*.* 9 | pull_request: 10 | branches: 11 | - main 12 | 13 | jobs: 14 | 15 | # Release 16 | 17 | release: 18 | if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') 19 | runs-on: ubuntu-latest 20 | # needs: [test] 21 | steps: 22 | - name: Release to GitHub 23 | uses: softprops/action-gh-release@v1 24 | env: 25 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | pom.xml.asc 3 | *.jar 4 | *.class 5 | /lib/ 6 | /classes/ 7 | /target/ 8 | /checkouts/ 9 | .lein-deps-sum 10 | .lein-repl-history 11 | .lein-plugins/ 12 | .lein-failures 13 | .nrepl-port 14 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). 3 | 4 | ## [Unreleased] 5 | ### Changed 6 | - Add a new arity to `make-widget-async` to provide a different widget shape. 7 | 8 | ## [0.1.1] - 2017-10-09 9 | ### Changed 10 | - Documentation on how to make the widgets. 11 | 12 | ### Removed 13 | - `make-widget-sync` - we're all async, all the time. 14 | 15 | ### Fixed 16 | - Fixed widget maker to keep working when daylight savings switches over. 17 | 18 | ## 0.1.0 - 2017-10-09 19 | ### Added 20 | - Files from the new template. 21 | - Widget maker public API - `make-widget-sync`. 22 | 23 | [Unreleased]: https://github.com/your-name/datapackage-clj/compare/0.1.1...HEAD 24 | [0.1.1]: https://github.com/your-name/datapackage-clj/compare/0.1.0...0.1.1 25 | -------------------------------------------------------------------------------- /LEAD.md: -------------------------------------------------------------------------------- 1 | cblop 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Paul Walsh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: all list templates 2 | 3 | 4 | LEAD := $(shell head -n 1 LEAD.md) 5 | 6 | 7 | all: list 8 | 9 | list: 10 | @grep '^\.PHONY' Makefile | cut -d' ' -f2- | tr ' ' '\n' 11 | 12 | templates: 13 | sed -i -E "s/@(\w*)/@$(LEAD)/" .github/issue_template.md 14 | sed -i -E "s/@(\w*)/@$(LEAD)/" .github/pull_request_template.md 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # datapackage-clj 2 | 3 | [![Build](https://img.shields.io/github/workflow/status/frictionlessdata/datapackage-clj/general/main)](https://github.com/frictionlessdata/-clj/actionegakcapatads) 4 | [![Coverage](https://img.shields.io/codecov/c/github/frictionlessdata/datapackage-clj/main)](https://codecov.io/gh/frictionlessdata/datapackage-clj) 5 | [![Codebase](https://img.shields.io/badge/codebase-github-brightgreen)](https://github.com/frictionlessdata/datapackage-clj) 6 | [![Support](https://img.shields.io/badge/support-discord-brightgreen)](https://discordapp.com/invite/Sewv6av) 7 | 8 | A Clojure library for working with Data Package. 9 | -------------------------------------------------------------------------------- /cov/coverage.css: -------------------------------------------------------------------------------- 1 | .covered { 2 | font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace; 3 | background-color: #558B55; 4 | } 5 | 6 | .not-covered { 7 | font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace; 8 | background-color: red; 9 | } 10 | 11 | .partial { 12 | font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace; 13 | background-color: orange; 14 | } 15 | 16 | .not-tracked { 17 | font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace; 18 | } 19 | 20 | .blank { 21 | font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace; 22 | } 23 | 24 | td { 25 | padding-right: 10px; 26 | } 27 | 28 | td.with-bar { 29 | width: 250px; 30 | text-align: center; 31 | } 32 | 33 | td.with-number { 34 | text-align: right; 35 | } 36 | 37 | td.ns-name { 38 | min-width: 150px; 39 | padding-right: 25px; 40 | } 41 | -------------------------------------------------------------------------------- /cov/coverage.txt: -------------------------------------------------------------------------------- 1 | Lines Non-Blank Instrumented Covered Partial 2 | 6 5 3 2 0 datapackage_clj/core.clj 3 | -------------------------------------------------------------------------------- /cov/coveralls.json: -------------------------------------------------------------------------------- 1 | {"service_job_id":null,"service_name":null,"source_files":[{"name":"datapackage_clj/core.clj","source_digest":"e7cb4ba569282865cc3fd46deeeb407a","coverage":[1,null,1,null,null,0]}]} -------------------------------------------------------------------------------- /cov/datapackage_clj/core.clj.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | datapackage_clj/core.clj 5 | 6 | 7 | 8 | 001  (ns datapackage-clj.core) 9 |
10 | 11 | 002   12 |
13 | 14 | 003  (defn foo 15 |
16 | 17 | 004    "I don't do a whole lot." 18 |
19 | 20 | 005    [x] 21 |
22 | 23 | 006    (println x "Hello, World!")) 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /cov/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Coverage Summary 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
Namespace Forms Forms % Lines Lines %TotalBlankInstrumented
datapackage-clj.core
2
4
33.33 %
2
1
66.67 %613
Totals:33.33 %66.67 %
39 | 40 | 41 | -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- 1 | # Introduction to datapackage-clj 2 | 3 | TODO: write [great documentation](http://jacobian.org/writing/what-to-write/) 4 | -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- 1 | (defproject datapackage-clj "0.1.0-SNAPSHOT" 2 | :description "FIXME: write description" 3 | :url "http://example.com/FIXME" 4 | :license {:name "Eclipse Public License" 5 | :url "http://www.eclipse.org/legal/epl-v10.html"} 6 | :dependencies [[org.clojure/clojure "1.9.0-alpha16"]] 7 | :plugins [[lein-cloverage "1.0.9"]]) 8 | -------------------------------------------------------------------------------- /resources/data/packages/country-codes/data/country-codes.csv: -------------------------------------------------------------------------------- 1 | name,official_name_en,official_name_fr,ISO3166-1-Alpha-2,ISO3166-1-Alpha-3,M49,ITU,MARC,WMO,DS,Dial,FIFA,FIPS,GAUL,IOC,ISO4217-currency_alphabetic_code,ISO4217-currency_country_name,ISO4217-currency_minor_unit,ISO4217-currency_name,ISO4217-currency_numeric_code,is_independent,Capital,Continent,TLD,Languages,Geoname ID,EDGAR 2 | ,Channel Islands,Îles Anglo-Normandes,,,830,,,,,,,,,,,,,,,,,,,,, 3 | ,Sark,Sercq,,,680,,,,,,,,,,,,,,,,,,,,, 4 | Afghanistan,Afghanistan,Afghanistan,AF,AFG,004,AFG,af,AF,AFG,93,AFG,AF,1,AFG,AFN,AFGHANISTAN,2,Afghani,971,Yes,Kabul,AS,.af,"fa-AF,ps,uz-AF,tk",1149361,B2 5 | Albania,Albania,Albanie,AL,ALB,008,ALB,aa,AB,AL,355,ALB,AL,3,ALB,ALL,ALBANIA,2,Lek,008,Yes,Tirana,EU,.al,"sq,el",783754,B3 6 | Algeria,Algeria,Algérie,DZ,DZA,012,ALG,ae,AL,DZ,213,ALG,AG,4,ALG,DZD,ALGERIA,2,Algerian Dinar,012,Yes,Algiers,AF,.dz,ar-DZ,2589581,B4 7 | American Samoa,American Samoa,Samoa américaines,AS,ASM,016,SMA,as,,USA,1-684,ASA,AQ,5,ASA,USD,AMERICAN SAMOA,2,US Dollar,840,Territory of US,Pago Pago,OC,.as,"en-AS,sm,to",5880801,B5 8 | Andorra,Andorra,Andorre,AD,AND,020,AND,an,,AND,376,AND,AN,7,AND,EUR,ANDORRA,2,Euro,978,Yes,Andorra la Vella,EU,.ad,ca,3041565,B6 9 | Angola,Angola,Angola,AO,AGO,024,AGL,ao,AN,AO,244,ANG,AO,8,ANG,AOA,ANGOLA,2,Kwanza,973,Yes,Luanda,AF,.ao,pt-AO,3351879,B7 10 | Anguilla,Anguilla,Anguilla,AI,AIA,660,AIA,am,,,1-264,AIA,AV,9,AIA,XCD,ANGUILLA,2,East Caribbean Dollar,951,Territory of GB,The Valley,NA,.ai,en-AI,3573511,1A 11 | Antarctica,,,AQ,ATA,010,,ay,AA,,672,ROS,AY,10,,,,,,,International,,AN,.aq,,6697173, 12 | Antigua & Barbuda,Antigua and Barbuda,Antigua-et-Barbuda,AG,ATG,028,ATG,aq,AT,,1-268,ATG,AC,11,ANT,XCD,ANTIGUA AND BARBUDA,2,East Caribbean Dollar,951,Yes,St. John's,NA,.ag,en-AG,3576396,B9 13 | Argentina,Argentina,Argentine,AR,ARG,032,ARG,ag,AG,RA,54,ARG,AR,12,ARG,ARS,ARGENTINA,2,Argentine Peso,032,Yes,Buenos Aires,SA,.ar,"es-AR,en,it,de,fr,gn",3865483,C1 14 | Armenia,Armenia,Arménie,AM,ARM,051,ARM,ai,AY,AM,374,ARM,AM,13,ARM,AMD,ARMENIA,2,Armenian Dram,051,Yes,Yerevan,AS,.am,hy,174982,1B 15 | Aruba,Aruba,Aruba,AW,ABW,533,ABW,aw,NU,AW,297,ARU,AA,14,ARU,AWG,ARUBA,2,Aruban Florin,533,Part of NL,Oranjestad,NA,.aw,"nl-AW,es,en",3577279,1C 16 | Australia,Australia,Australie,AU,AUS,036,AUS,at,AU,AUS,61,AUS,AS,17,AUS,AUD,AUSTRALIA,2,Australian Dollar,036,Yes,Canberra,OC,.au,en-AU,2077456,C3 17 | Austria,Austria,Autriche,AT,AUT,040,AUT,au,OS,A,43,AUT,AU,18,AUT,EUR,AUSTRIA,2,Euro,978,Yes,Vienna,EU,.at,"de-AT,hr,hu,sl",2782113,C4 18 | Azerbaijan,Azerbaijan,Azerbaïdjan,AZ,AZE,031,AZE,aj,AJ,AZ,994,AZE,AJ,19,AZE,AZN,AZERBAIJAN,2,Azerbaijanian Manat,944,Yes,Baku,AS,.az,"az,ru,hy",587116,1D 19 | Bahamas,Bahamas,Bahamas,BS,BHS,044,BAH,bf,BA,BS,1-242,BAH,BF,20,BAH,BSD,BAHAMAS,2,Bahamian Dollar,044,Yes,Nassau,NA,.bs,en-BS,3572887,C5 20 | Bahrain,Bahrain,Bahreïn,BH,BHR,048,BHR,ba,BN,BRN,973,BHR,BA,21,BRN,BHD,BAHRAIN,3,Bahraini Dinar,048,Yes,Manama,AS,.bh,"ar-BH,en,fa,ur",290291,C6 21 | Bangladesh,Bangladesh,Bangladesh,BD,BGD,050,BGD,bg,BW,BD,880,BAN,BG,23,BAN,BDT,BANGLADESH,2,Taka,050,Yes,Dhaka,AS,.bd,"bn-BD,en",1210997,C7 22 | Barbados,Barbados,Barbade,BB,BRB,052,BRB,bb,BR,BDS,1-246,BRB,BB,24,BAR,BBD,BARBADOS,2,Barbados Dollar,052,Yes,Bridgetown,NA,.bb,en-BB,3374084,C8 23 | Belarus,Belarus,Bélarus,BY,BLR,112,BLR,bw,BY,BY,375,BLR,BO,26,BLR,BYR,BELARUS,0,Belarussian Ruble,974,Yes,Minsk,EU,.by,"be,ru",630336,1F 24 | Belgium,Belgium,Belgique,BE,BEL,056,BEL,be,BX,B,32,BEL,BE,27,BEL,EUR,BELGIUM,2,Euro,978,Yes,Brussels,EU,.be,"nl-BE,fr-BE,de-BE",2802361,C9 25 | Belize,Belize,Belize,BZ,BLZ,084,BLZ,bh,BH,BH,501,BLZ,BH,28,BIZ,BZD,BELIZE,2,Belize Dollar,084,Yes,Belmopan,NA,.bz,"en-BZ,es",3582678,D1 26 | Benin,Benin,Bénin,BJ,BEN,204,BEN,dm,BJ,DY,229,BEN,BN,29,BEN,XOF,BENIN,0,CFA Franc BCEAO,952,Yes,Porto-Novo,AF,.bj,fr-BJ,2395170,G6 27 | Bermuda,Bermuda,Bermudes,BM,BMU,060,BER,bm,BE,BM,1-441,BER,BD,30,BER,BMD,BERMUDA,2,Bermudian Dollar,060,Territory of GB,Hamilton,NA,.bm,"en-BM,pt",3573345,D0 28 | Bhutan,Bhutan,Bhoutan,BT,BTN,064,BTN,bt,,BT,975,BHU,BT,31,BHU,INR,BHUTAN,2,Indian Rupee,356,Yes,Thimphu,AS,.bt,dz,1252634,D2 29 | Bolivia,Bolivia (Plurinational State of),Bolivie (État plurinational de),BO,BOL,068,BOL,bo,BO,BOL,591,BOL,BL,33,BOL,BOB,"BOLIVIA, PLURINATIONAL STATE OF",2,Boliviano,068,Yes,Sucre,SA,.bo,"es-BO,qu,ay",3923057, 30 | Bosnia,Bosnia and Herzegovina,Bosnie-Herzégovine,BA,BIH,070,BIH,bn,BG,BIH,387,BIH,BK,34,BIH,BAM,BOSNIA AND HERZEGOVINA,2,Convertible Mark,977,Yes,Sarajevo,EU,.ba,"bs,hr-BA,sr-BA",3277605,1E 31 | Botswana,Botswana,Botswana,BW,BWA,072,BOT,bs,BC,BW,267,BOT,BC,35,BOT,BWP,BOTSWANA,2,Pula,072,Yes,Gaborone,AF,.bw,"en-BW,tn-BW",933860,B1 32 | Bouvet Island,,,BV,BVT,074,,bv,BV,BV,47,,BV,36,,,,,,,Territory of NO,,AN,.bv,,3371123, 33 | Brazil,Brazil,Brésil,BR,BRA,076,B,bl,BZ,BR,55,BRA,BR,37,BRA,BRL,BRAZIL,2,Brazilian Real,986,Yes,Brasilia,SA,.br,"pt-BR,es,en,fr",3469034,D5 34 | British Indian Ocean Territory,,,IO,IOT,086,BIO,bi,,,246,,IO,38,,,,,,,Territory of GB,Diego Garcia,AS,.io,en-IO,1282588, 35 | British Virgin Islands,British Virgin Islands,Îles Vierges britanniques,VG,VGB,092,VRG,vb,VI,BVI,1-284,VGB,VI,39,IVB,USD,VIRGIN ISLANDS (BRITISH),2,US Dollar,840,Territory of GB,Road Town,NA,.vg,en-VG,3577718, 36 | Brunei,Brunei Darussalam,Brunéi Darussalam,BN,BRN,096,BRU,bx,BD,BRU,673,BRU,BX,40,BRU,BND,BRUNEI DARUSSALAM,2,Brunei Dollar,096,Yes,Bandar Seri Begawan,AS,.bn,"ms-BN,en-BN",1820814,D9 37 | Bulgaria,Bulgaria,Bulgarie,BG,BGR,100,BUL,bu,BU,BG,359,BUL,BU,41,BUL,BGN,BULGARIA,2,Bulgarian Lev,975,Yes,Sofia,EU,.bg,"bg,tr-BG,rom",732800,E0 38 | Burkina Faso,Burkina Faso,Burkina Faso,BF,BFA,854,BFA,uv,HV,BF,226,BFA,UV,42,BUR,XOF,BURKINA FASO,0,CFA Franc BCEAO,952,Yes,Ouagadougou,AF,.bf,fr-BF,2361809,X2 39 | Burundi,Burundi,Burundi,BI,BDI,108,BDI,bd,BI,RU,257,BDI,BY,43,BDI,BIF,BURUNDI,0,Burundi Franc,108,Yes,Bujumbura,AF,.bi,"fr-BI,rn",433561,E2 40 | Cambodia,Cambodia,Cambodge,KH,KHM,116,CBG,cb,KP,K,855,CAM,CB,44,CAM,KHR,CAMBODIA,2,Riel,116,Yes,Phnom Penh,AS,.kh,"km,fr,en",1831722,E3 41 | Cameroon,Cameroon,Cameroun,CM,CMR,120,CME,cm,CM,CAM,237,CMR,CM,45,CMR,XAF,CAMEROON,0,CFA Franc BEAC,950,Yes,Yaounde,AF,.cm,"en-CM,fr-CM",2233387,E4 42 | Canada,Canada,Canada,CA,CAN,124,CAN,xxc,CN,CDN,1,CAN,CA,46,CAN,CAD,CANADA,2,Canadian Dollar,124,Yes,Ottawa,NA,.ca,"en-CA,fr-CA,iu",6251999, 43 | Cape Verde,Cabo Verde,Cabo Verde,CV,CPV,132,CPV,cv,CV,CV,238,CPV,CV,47,CPV,CVE,CABO VERDE,2,Cabo Verde Escudo,132,Yes,Praia,AF,.cv,pt-CV,3374766, 44 | Caribbean Netherlands,"Bonaire, Sint Eustatius and Saba","Bonaire, Saint-Eustache et Saba",BQ,BES,535,ATN,ca,NU,NA,599,ANT,NL,176,AHO,USD,"BONAIRE, SINT EUSTATIUS AND SABA",2,US Dollar,840,Part of NL,,NA,.bq,"nl,pap,en",7626844, 45 | Cayman Islands,Cayman Islands,Îles Caïmanes,KY,CYM,136,CYM,cj,GC,KY,1-345,CAY,CJ,48,CAY,KYD,CAYMAN ISLANDS,2,Cayman Islands Dollar,136,Territory of GB,George Town,NA,.ky,en-KY,3580718,E9 46 | Central African Republic,Central African Republic,République centrafricaine,CF,CAF,140,CAF,cx,CE,RCA,236,CTA,CT,49,CAF,XAF,CENTRAL AFRICAN REPUBLIC,0,CFA Franc BEAC,950,Yes,Bangui,AF,.cf,"fr-CF,sg,ln,kg",239880,F0 47 | Chad,Chad,Tchad,TD,TCD,148,TCD,cd,CD,TCH,235,CHA,CD,50,CHA,XAF,CHAD,0,CFA Franc BEAC,950,Yes,N'Djamena,AF,.td,"fr-TD,ar-TD,sre",2434508,F2 48 | Chile,Chile,Chili,CL,CHL,152,CHL,cl,CH,RCH,56,CHI,CI,51,CHI,CLP,CHILE,0,Chilean Peso,152,Yes,Santiago,SA,.cl,es-CL,3895114,F3 49 | China,China,Chine,CN,CHN,156,CHN,cc,CI,CN,86,CHN,CH,53,CHN,CNY,CHINA,2,Yuan Renminbi,156,Yes,Beijing,AS,.cn,"zh-CN,yue,wuu,dta,ug,za",1814991,F4 50 | Christmas Island,,,CX,CXR,162,CHR,xa,KI,AUS,61,CXR,KT,54,,,,,,,Territory of AU,Flying Fish Cove,AS,.cx,"en,zh,ms-CC",2078138, 51 | Cocos (Keeling) Islands,,,CC,CCK,166,ICO,xb,KK,AUS,61,CCK,CK,56,,,,,,,Territory of AU,West Island,AS,.cc,"ms-CC,en",1547376, 52 | Colombia,Colombia,Colombie,CO,COL,170,CLM,ck,CO,CO,57,COL,CO,57,COL,COP,COLOMBIA,2,Colombian Peso,170,Yes,Bogota,SA,.co,es-CO,3686110,F8 53 | Comoros,Comoros,Comores,KM,COM,174,COM,cq,IC,KM,269,COM,CN,58,COM,KMF,COMOROS,0,Comoro Franc,174,Yes,Moroni,AF,.km,"ar,fr-KM",921929,F9 54 | Congo - Brazzaville,Congo,Congo,CG,COG,178,COG,cf,CG,RCB,242,CGO,CF,59,CGO,XAF,CONGO,0,CFA Franc BEAC,950,Yes,Brazzaville,AF,.cg,"fr-CG,kg,ln-CG",2260494,G0 55 | Congo - Kinshasa,Democratic Republic of the Congo,République démocratique du Congo,CD,COD,180,COD,cg,ZR,ZRE,243,COD,CG,68,COD,,,,,,Yes,Kinshasa,AF,.cd,"fr-CD,ln,kg",203312, 56 | Cook Islands,Cook Islands,Îles Cook,CK,COK,184,CKH,cw,KU,NZ,682,COK,CW,60,COK,NZD,COOK ISLANDS,2,New Zealand Dollar,554,Associated with NZ,Avarua,OC,.ck,"en-CK,mi",1899402,G1 57 | Costa Rica,Costa Rica,Costa Rica,CR,CRI,188,CTR,cr,CS,CR,506,CRC,CS,61,CRC,CRC,COSTA RICA,2,Costa Rican Colon,188,Yes,San Jose,NA,.cr,"es-CR,en",3624060,G2 58 | Croatia,Croatia,Croatie,HR,HRV,191,HRV,ci,RH,HR,385,CRO,HR,62,CRO,HRK,CROATIA,2,Croatian Kuna,191,Yes,Zagreb,EU,.hr,"hr-HR,sr",3202326,1M 59 | Cuba,Cuba,Cuba,CU,CUB,192,CUB,cu,CU,C,53,CUB,CU,63,CUB,CUP,CUBA,2,Cuban Peso,192,Yes,Havana,NA,.cu,es-CU,3562981,G3 60 | Curaçao,Curaçao,Curaçao,CW,CUW,531,,co,,,599,,UC,,,ANG,CURAÇAO,2,Netherlands Antillean Guilder,532,Part of NL,Willemstad,NA,.cw,"nl,pap",7626836, 61 | Cyprus,Cyprus,Chypre,CY,CYP,196,CYP,cy,CY,CY,357,CYP,CY,64,CYP,EUR,CYPRUS,2,Euro,978,Yes,Nicosia,EU,.cy,"el-CY,tr-CY,en",146669,G4 62 | Czech Republic,Czechia,Tchéquie,CZ,CZE,203,CZE,xr,CZ,CZ,420,CZE,EZ,65,CZE,,,,,,Yes,Prague,EU,.cz,"cs,sk",3077311, 63 | Côte d’Ivoire,Côte d'Ivoire,Côte d'Ivoire,CI,CIV,384,CTI,iv,IV,CI,225,CIV,IV,66,CIV,XOF,CÔTE D'IVOIRE,0,CFA Franc BCEAO,952,Yes,Yamoussoukro,AF,.ci,fr-CI,2287781, 64 | Denmark,Denmark,Danemark,DK,DNK,208,DNK,dk,DN,DK,45,DEN,DA,69,DEN,DKK,DENMARK,2,Danish Krone,208,Yes,Copenhagen,EU,.dk,"da-DK,en,fo,de-DK",2623032,G7 65 | Djibouti,Djibouti,Djibouti,DJ,DJI,262,DJI,ft,DJ,F,253,DJI,DJ,70,DJI,DJF,DJIBOUTI,0,Djibouti Franc,262,Yes,Djibouti,AF,.dj,"fr-DJ,ar,so-DJ,aa",223816,1G 66 | Dominica,Dominica,Dominique,DM,DMA,212,DMA,dq,DO,WD,1-767,DMA,DO,71,DMA,XCD,DOMINICA,2,East Caribbean Dollar,951,Yes,Roseau,NA,.dm,en-DM,3575830,G9 67 | Dominican Republic,Dominican Republic,République dominicaine,DO,DOM,214,DOM,dr,DR,DOM,"1-809,1-829,1-849",DOM,DR,72,DOM,DOP,DOMINICAN REPUBLIC,2,Dominican Peso,214,Yes,Santo Domingo,NA,.do,es-DO,3508796,G8 68 | Ecuador,Ecuador,Équateur,EC,ECU,218,EQA,ec,EQ,EC,593,ECU,EC,73,ECU,USD,ECUADOR,2,US Dollar,840,Yes,Quito,SA,.ec,es-EC,3658394,H1 69 | Egypt,Egypt,Égypte,EG,EGY,818,EGY,ua,EG,ET,20,EGY,EG,40765,EGY,EGP,EGYPT,2,Egyptian Pound,818,Yes,Cairo,AF,.eg,"ar-EG,en,fr",357994,H2 70 | El Salvador,El Salvador,El Salvador,SV,SLV,222,SLV,es,ES,ES,503,SLV,ES,75,ESA,USD,EL SALVADOR,2,US Dollar,840,Yes,San Salvador,NA,.sv,es-SV,3585968,H3 71 | Equatorial Guinea,Equatorial Guinea,Guinée équatoriale,GQ,GNQ,226,GNE,eg,GQ,EQ,240,EQG,EK,76,GEQ,XAF,EQUATORIAL GUINEA,0,CFA Franc BEAC,950,Yes,Malabo,AF,.gq,"es-GQ,fr",2309096,H4 72 | Eritrea,Eritrea,Érythrée,ER,ERI,232,ERI,ea,,ER,291,ERI,ER,77,ERI,ERN,ERITREA,2,Nakfa,232,Yes,Asmara,AF,.er,"aa-ER,ar,tig,kun,ti-ER",338010,1J 73 | Estonia,Estonia,Estonie,EE,EST,233,EST,er,EO,EST,372,EST,EN,78,EST,EUR,ESTONIA,2,Euro,978,Yes,Tallinn,EU,.ee,"et,ru",453733,1H 74 | Ethiopia,Ethiopia,Éthiopie,ET,ETH,231,ETH,et,ET,ETH,251,ETH,ET,79,ETH,ETB,ETHIOPIA,2,Ethiopian Birr,230,Yes,Addis Ababa,AF,.et,"am,en-ET,om-ET,ti-ET,so-ET,sid",337996,H5 75 | Falkland Islands,Falkland Islands (Malvinas),Îles Falkland (Malvinas),FK,FLK,238,FLK,fk,FK,,500,FLK,FK,81,FLK,FKP,FALKLAND ISLANDS (MALVINAS),2,Falkland Islands Pound,238,Territory of GB,Stanley,SA,.fk,en-FK,3474414,H7 76 | Faroe Islands,Faeroe Islands,Îles Féroé,FO,FRO,234,FRO,fa,FA,FO,298,FRO,FO,82,FAR,,,,,,Part of DK,Torshavn,EU,.fo,"fo,da-FO",2622320, 77 | Fiji,Fiji,Fidji,FJ,FJI,242,FJI,fj,FJ,FJI,679,FIJ,FJ,83,FIJ,FJD,FIJI,2,Fiji Dollar,242,Yes,Suva,OC,.fj,"en-FJ,fj",2205218,H8 78 | Finland,Finland,Finlande,FI,FIN,246,FIN,fi,FI,FIN,358,FIN,FI,84,FIN,EUR,FINLAND,2,Euro,978,Yes,Helsinki,EU,.fi,"fi-FI,sv-FI,smn",660013,H9 79 | France,France,France,FR,FRA,250,F,fr,FR,F,33,FRA,FR,85,FRA,EUR,FRANCE,2,Euro,978,Yes,Paris,EU,.fr,"fr-FR,frp,br,co,ca,eu,oc",3017382,I0 80 | French Guiana,French Guiana,Guyane française,GF,GUF,254,GUF,fg,FG,F,594,GUF,FG,86,FGU,EUR,FRENCH GUIANA,2,Euro,978,Part of FR,Cayenne,SA,.gf,fr-GF,3381670,I3 81 | French Polynesia,French Polynesia,Polynésie française,PF,PYF,258,OCE,fp,PF,F,689,TAH,FP,87,FPO,XPF,FRENCH POLYNESIA,0,CFP Franc,953,Territory of FR,Papeete,OC,.pf,"fr-PF,ty",4030656,I4 82 | French Southern Territories,,,TF,ATF,260,,fs,,F,262,,FS,88,,,,,,,Territory of FR,Port-aux-Francais,AN,.tf,fr,1546748, 83 | Gabon,Gabon,Gabon,GA,GAB,266,GAB,go,GO,G,241,GAB,GB,89,GAB,XAF,GABON,0,CFA Franc BEAC,950,Yes,Libreville,AF,.ga,fr-GA,2400553,I5 84 | Gambia,Gambia,Gambie,GM,GMB,270,GMB,gm,GB,WAG,220,GAM,GA,90,GAM,GMD,GAMBIA,2,Dalasi,270,Yes,Banjul,AF,.gm,"en-GM,mnk,wof,wo,ff",2413451,I6 85 | Georgia,Georgia,Géorgie,GE,GEO,268,GEO,gs,GG,GE,995,GEO,GG,92,GEO,GEL,GEORGIA,2,Lari,981,Yes,Tbilisi,AS,.ge,"ka,ru,hy,az",614540,2Q 86 | Germany,Germany,Allemagne,DE,DEU,276,D,gw,DL,D,49,GER,GM,93,GER,EUR,GERMANY,2,Euro,978,Yes,Berlin,EU,.de,de,2921044,2M 87 | Ghana,Ghana,Ghana,GH,GHA,288,GHA,gh,GH,GH,233,GHA,GH,94,GHA,GHS,GHANA,2,Ghana Cedi,936,Yes,Accra,AF,.gh,"en-GH,ak,ee,tw",2300660,J0 88 | Gibraltar,Gibraltar,Gibraltar,GI,GIB,292,GIB,gi,GI,GBZ,350,GBZ,GI,95,GIB,GIP,GIBRALTAR,2,Gibraltar Pound,292,Territory of GB,Gibraltar,EU,.gi,"en-GI,es,it,pt",2411586,J1 89 | Greece,Greece,Grèce,GR,GRC,300,GRC,gr,GR,GR,30,GRE,GR,97,GRE,EUR,GREECE,2,Euro,978,Yes,Athens,EU,.gr,"el-GR,en,fr",390903,J3 90 | Greenland,Greenland,Groenland,GL,GRL,304,GRL,gl,GL,DK,299,GRL,GL,98,GRL,DKK,GREENLAND,2,Danish Krone,208,Part of DK,Nuuk,NA,.gl,"kl,da-GL,en",3425505,J4 91 | Grenada,Grenada,Grenade,GD,GRD,308,GRD,gd,GD,WG,1-473,GRN,GJ,99,GRN,XCD,GRENADA,2,East Caribbean Dollar,951,Yes,St. George's,NA,.gd,en-GD,3580239,J5 92 | Guadeloupe,Guadeloupe,Guadeloupe,GP,GLP,312,GDL,gp,MF,F,590,GLP,GP,100,GUD,EUR,GUADELOUPE,2,Euro,978,Part of FR,Basse-Terre,NA,.gp,fr-GP,3579143,J6 93 | Guam,Guam,Guam,GU,GUM,316,GUM,gu,GM,USA,1-671,GUM,GQ,101,GUM,USD,GUAM,2,US Dollar,840,Territory of US,Hagatna,OC,.gu,"en-GU,ch-GU",4043988,GU 94 | Guatemala,Guatemala,Guatemala,GT,GTM,320,GTM,gt,GU,GCA,502,GUA,GT,103,GUA,GTQ,GUATEMALA,2,Quetzal,320,Yes,Guatemala City,NA,.gt,es-GT,3595528,J8 95 | Guernsey,Guernsey,Guernesey,GG,GGY,831,,uik,,GBG,44,GBG,GK,104,,GBP,GUERNSEY,2,Pound Sterling,826,Crown dependency of GB,St Peter Port,EU,.gg,"en,fr",3042362,Y7 96 | Guinea,Guinea,Guinée,GN,GIN,324,GUI,gv,GN,RG,224,GUI,GV,106,GUI,GNF,GUINEA,0,Guinea Franc,324,Yes,Conakry,AF,.gn,fr-GN,2420477,J9 97 | Guinea-Bissau,Guinea-Bissau,Guinée-Bissau,GW,GNB,624,GNB,pg,GW,GW,245,GNB,PU,105,GBS,XOF,GUINEA-BISSAU,0,CFA Franc BCEAO,952,Yes,Bissau,AF,.gw,"pt-GW,pov",2372248,S0 98 | Guyana,Guyana,Guyana,GY,GUY,328,GUY,gy,GY,GUY,592,GUY,GY,107,GUY,GYD,GUYANA,2,Guyana Dollar,328,Yes,Georgetown,SA,.gy,en-GY,3378535,K0 99 | Haiti,Haiti,Haïti,HT,HTI,332,HTI,ht,HA,RH,509,HAI,HA,108,HAI,USD,HAITI,2,US Dollar,840,Yes,Port-au-Prince,NA,.ht,"ht,fr-HT",3723988,K1 100 | Heard & McDonald Islands,,,HM,HMD,334,,hm,,AUS,672,,HM,109,,,,,,,Territory of AU,,AN,.hm,,1547314, 101 | Honduras,Honduras,Honduras,HN,HND,340,HND,ho,HO,,504,HON,HO,111,HON,HNL,HONDURAS,2,Lempira,340,Yes,Tegucigalpa,NA,.hn,es-HN,3608932,K2 102 | Hong Kong,"China, Hong Kong Special Administrative Region","Chine, région administrative spéciale de Hong Kong",HK,HKG,344,HKG,,HK,HK,852,HKG,HK,33364,HKG,,,,,,Part of CN,Hong Kong,AS,.hk,"zh-HK,yue,zh,en",1819730, 103 | Hungary,Hungary,Hongrie,HU,HUN,348,HNG,hu,HU,H,36,HUN,HU,113,HUN,HUF,HUNGARY,2,Forint,348,Yes,Budapest,EU,.hu,hu-HU,719819,K5 104 | Iceland,Iceland,Islande,IS,ISL,352,ISL,ic,IL,IS,354,ISL,IC,114,ISL,ISK,ICELAND,0,Iceland Krona,352,Yes,Reykjavik,EU,.is,"is,en,de,da,sv,no",2629691,K6 105 | India,India,Inde,IN,IND,356,IND,ii,IN,IND,91,IND,IN,115,IND,INR,INDIA,2,Indian Rupee,356,Yes,New Delhi,AS,.in,"en-IN,hi,bn,te,mr,ta,ur,gu,kn,ml,or,pa,as,bh,sat,ks,ne,sd,kok,doi,mni,sit,sa,fr,lus,inc",1269750,K7 106 | Indonesia,Indonesia,Indonésie,ID,IDN,360,INS,io,ID,RI,62,IDN,ID,116,INA,IDR,INDONESIA,2,Rupiah,360,Yes,Jakarta,AS,.id,"id,en,nl,jv",1643084,K8 107 | Iran,Iran (Islamic Republic of),Iran (République islamique d'),IR,IRN,364,IRN,ir,IR,IR,98,IRN,IR,117,IRI,IRR,"IRAN, ISLAMIC REPUBLIC OF",2,Iranian Rial,364,Yes,Tehran,AS,.ir,"fa-IR,ku",130758,K9 108 | Iraq,Iraq,Iraq,IQ,IRQ,368,IRQ,iq,IQ,IRQ,964,IRQ,IZ,118,IRQ,IQD,IRAQ,3,Iraqi Dinar,368,Yes,Baghdad,AS,.iq,"ar-IQ,ku,hy",99237,L0 109 | Ireland,Ireland,Irlande,IE,IRL,372,IRL,ie,IE,IRL,353,IRL,EI,119,IRL,EUR,IRELAND,2,Euro,978,Yes,Dublin,EU,.ie,"en-IE,ga-IE",2963597,L2 110 | Isle of Man,Isle of Man,Île de Man,IM,IMN,833,,uik,,GBM,44,GBM,IM,120,,GBP,ISLE OF MAN,2,Pound Sterling,826,Crown dependency of GB,Douglas,EU,.im,"en,gv",3042225,Y8 111 | Israel,Israel,Israël,IL,ISR,376,ISR,is,IS,IL,972,ISR,IS,121,ISR,ILS,ISRAEL,2,New Israeli Sheqel,376,Yes,Jerusalem,AS,.il,"he,ar-IL,en-IL,",294640,L3 112 | Italy,Italy,Italie,IT,ITA,380,I,it,IY,I,39,ITA,IT,122,ITA,EUR,ITALY,2,Euro,978,Yes,Rome,EU,.it,"it-IT,de-IT,fr-IT,sc,ca,co,sl",3175395,L6 113 | Jamaica,Jamaica,Jamaïque,JM,JAM,388,JMC,jm,JM,JA,1-876,JAM,JM,123,JAM,JMD,JAMAICA,2,Jamaican Dollar,388,Yes,Kingston,NA,.jm,en-JM,3489940,L8 114 | Japan,Japan,Japon,JP,JPN,392,J,ja,JP,J,81,JPN,JA,126,JPN,JPY,JAPAN,0,Yen,392,Yes,Tokyo,AS,.jp,ja,1861060,M0 115 | Jersey,Jersey,Jersey,JE,JEY,832,,uik,,GBJ,44,GBJ,JE,128,,GBP,JERSEY,2,Pound Sterling,826,Crown dependency of GB,Saint Helier,EU,.je,"en,pt",3042142,Y9 116 | Jordan,Jordan,Jordanie,JO,JOR,400,JOR,jo,JD,HKJ,962,JOR,JO,130,JOR,JOD,JORDAN,3,Jordanian Dinar,400,Yes,Amman,AS,.jo,"ar-JO,en",248816,M2 117 | Kazakhstan,Kazakhstan,Kazakhstan,KZ,KAZ,398,KAZ,kz,KZ,KZ,7,KAZ,KZ,132,KAZ,KZT,KAZAKHSTAN,2,Tenge,398,Yes,Astana,AS,.kz,"kk,ru",1522867, 118 | Kenya,Kenya,Kenya,KE,KEN,404,KEN,ke,KN,EAK,254,KEN,KE,133,KEN,KES,KENYA,2,Kenyan Shilling,404,Yes,Nairobi,AF,.ke,"en-KE,sw-KE",192950,M3 119 | Kiribati,Kiribati,Kiribati,KI,KIR,296,KIR,gb,KB,,686,KIR,KR,135,KIR,AUD,KIRIBATI,2,Australian Dollar,036,Yes,Tarawa,OC,.ki,"en-KI,gil",4030945,J2 120 | Kuwait,Kuwait,Koweït,KW,KWT,414,KWT,ku,KW,KWT,965,KUW,KU,137,KUW,KWD,KUWAIT,3,Kuwaiti Dinar,414,Yes,Kuwait City,AS,.kw,"ar-KW,en",285570,M6 121 | Kyrgyzstan,Kyrgyzstan,Kirghizistan,KG,KGZ,417,KGZ,kg,KG,KS,996,KGZ,KG,138,KGZ,KGS,KYRGYZSTAN,2,Som,417,Yes,Bishkek,AS,.kg,"ky,uz,ru",1527747,1N 122 | Laos,Lao People's Democratic Republic,République démocratique populaire lao,LA,LAO,418,LAO,ls,LA,LAO,856,LAO,LA,139,LAO,LAK,LAO PEOPLE’S DEMOCRATIC REPUBLIC,2,Kip,418,Yes,Vientiane,AS,.la,"lo,fr,en",1655842, 123 | Latvia,Latvia,Lettonie,LV,LVA,428,LVA,lv,LV,LV,371,LVA,LG,140,LAT,EUR,LATVIA,2,Euro,978,Yes,Riga,EU,.lv,"lv,ru,lt",458258,1R 124 | Lebanon,Lebanon,Liban,LB,LBN,422,LBN,le,LB,RL,961,LIB,LE,141,LIB,LBP,LEBANON,2,Lebanese Pound,422,Yes,Beirut,AS,.lb,"ar-LB,fr-LB,en,hy",272103,M8 125 | Lesotho,Lesotho,Lesotho,LS,LSO,426,LSO,lo,LS,LS,266,LES,LT,142,LES,ZAR,LESOTHO,2,Rand,710,Yes,Maseru,AF,.ls,"en-LS,st,zu,xh",932692,M9 126 | Liberia,Liberia,Libéria,LR,LBR,430,LBR,lb,LI,LB,231,LBR,LI,144,LBR,LRD,LIBERIA,2,Liberian Dollar,430,Yes,Monrovia,AF,.lr,en-LR,2275384,N0 127 | Libya,Libya,Libye,LY,LBY,434,LBY,ly,LY,LAR,218,LBY,LY,145,LBA,LYD,LIBYA,3,Libyan Dinar,434,Yes,Tripoli,AF,.ly,"ar-LY,it,en",2215636, 128 | Liechtenstein,Liechtenstein,Liechtenstein,LI,LIE,438,LIE,lh,,FL,423,LIE,LS,146,LIE,CHF,LIECHTENSTEIN,2,Swiss Franc,756,Yes,Vaduz,EU,.li,de-LI,3042058,N2 129 | Lithuania,Lithuania,Lituanie,LT,LTU,440,LTU,li,LT,LT,370,LTU,LH,147,LTU,EUR,LITHUANIA,2,Euro,978,Yes,Vilnius,EU,.lt,"lt,ru,pl",597427,1Q 130 | Luxembourg,Luxembourg,Luxembourg,LU,LUX,442,LUX,lu,BX,L,352,LUX,LU,148,LUX,EUR,LUXEMBOURG,2,Euro,978,Yes,Luxembourg,EU,.lu,"lb,de-LU,fr-LU",2960313,N4 131 | Macau,"China, Macao Special Administrative Region","Chine, région administrative spéciale de Macao",MO,MAC,446,MAC,,MU,MO,853,MAC,MC,149,MAC,MOP,MACAO,2,Pataca,446,Part of CN,Macao,AS,.mo,"zh,zh-MO,pt",1821275, 132 | Macedonia,The former Yugoslav Republic of Macedonia,Ex-République yougoslave de Macédoine,MK,MKD,807,MKD,xn,MJ,MK,389,MKD,MK,241,MKD,MKD,"MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF",2,Denar,807,Yes,Skopje,EU,.mk,"mk,sq,tr,rmm,sr",718075,1U 133 | Madagascar,Madagascar,Madagascar,MG,MDG,450,MDG,mg,MG,RM,261,MAD,MA,150,MAD,MGA,MADAGASCAR,2,Malagasy Ariary,969,Yes,Antananarivo,AF,.mg,"fr-MG,mg",1062947,N6 134 | Malawi,Malawi,Malawi,MW,MWI,454,MWI,mw,MW,MW,265,MWI,MI,152,MAW,MWK,MALAWI,2,Kwacha,454,Yes,Lilongwe,AF,.mw,"ny,yao,tum,swk",927384,N7 135 | Malaysia,Malaysia,Malaisie,MY,MYS,458,MLA,my,MS,MAL,60,MAS,MY,153,MAS,MYR,MALAYSIA,2,Malaysian Ringgit,458,Yes,Kuala Lumpur,AS,.my,"ms-MY,en,zh,ta,te,ml,pa,th",1733045,N8 136 | Maldives,Maldives,Maldives,MV,MDV,462,MLD,xc,MV,MV,960,MDV,MV,154,MDV,MVR,MALDIVES,2,Rufiyaa,462,Yes,Male,AS,.mv,"dv,en",1282028,N9 137 | Mali,Mali,Mali,ML,MLI,466,MLI,ml,MI,RMM,223,MLI,ML,155,MLI,XOF,MALI,0,CFA Franc BCEAO,952,Yes,Bamako,AF,.ml,"fr-ML,bm",2453866,O0 138 | Malta,Malta,Malte,MT,MLT,470,MLT,mm,ML,M,356,MLT,MT,156,MLT,EUR,MALTA,2,Euro,978,Yes,Valletta,EU,.mt,"mt,en-MT",2562770,O1 139 | Marshall Islands,Marshall Islands,Îles Marshall,MH,MHL,584,MHL,xe,MH,,692,MHL,RM,157,MSH,USD,MARSHALL ISLANDS,2,US Dollar,840,Yes,Majuro,OC,.mh,"mh,en-MH",2080185,1T 140 | Martinique,Martinique,Martinique,MQ,MTQ,474,MRT,mq,MR,F,596,MTQ,MB,158,MRT,EUR,MARTINIQUE,2,Euro,978,Part of FR,Fort-de-France,NA,.mq,fr-MQ,3570311,O2 141 | Mauritania,Mauritania,Mauritanie,MR,MRT,478,MTN,mu,MT,RIM,222,MTN,MR,159,MTN,MRO,MAURITANIA,2,Ouguiya,478,Yes,Nouakchott,AF,.mr,"ar-MR,fuc,snk,fr,mey,wo",2378080,O3 142 | Mauritius,Mauritius,Maurice,MU,MUS,480,MAU,mf,MA,MS,230,MRI,MP,160,MRI,MUR,MAURITIUS,2,Mauritius Rupee,480,Yes,Port Louis,AF,.mu,"en-MU,bho,fr",934292,O4 143 | Mayotte,Mayotte,Mayotte,YT,MYT,175,MYT,ot,,,262,MYT,MF,161,MAY,EUR,MAYOTTE,2,Euro,978,Part of FR,Mamoudzou,AF,.yt,fr-YT,1024031,2P 144 | Mexico,Mexico,Mexique,MX,MEX,484,MEX,mx,MX,MEX,52,MEX,MX,162,MEX,MXN,MEXICO,2,Mexican Peso,484,Yes,Mexico City,NA,.mx,es-MX,3996063,O5 145 | Micronesia,Micronesia (Federated States of),Micronésie (États fédérés de),FM,FSM,583,FSM,fm,,,691,FSM,FM,163,FSM,USD,"MICRONESIA, FEDERATED STATES OF",2,US Dollar,840,Yes,Palikir,OC,.fm,"en-FM,chk,pon,yap,kos,uli,woe,nkr,kpg",2081918,1K 146 | Moldova,Republic of Moldova,République de Moldova,MD,MDA,498,MDA,mv,RM,MD,373,MDA,MD,165,MDA,MDL,"MOLDOVA, REPUBLIC OF",2,Moldovan Leu,498,Yes,Chisinau,EU,.md,"ro,ru,gag,tr",617790,1S 147 | Monaco,Monaco,Monaco,MC,MCO,492,MCO,mc,,MC,377,MON,MN,166,MON,EUR,MONACO,2,Euro,978,Yes,Monaco,EU,.mc,"fr-MC,en,it",2993457,O9 148 | Mongolia,Mongolia,Mongolie,MN,MNG,496,MNG,mp,MO,MGL,976,MNG,MG,167,MGL,MNT,MONGOLIA,2,Tugrik,496,Yes,Ulan Bator,AS,.mn,"mn,ru",2029969,P0 149 | Montenegro,Montenegro,Monténégro,ME,MNE,499,MNE,mo,,MNE,382,MNE,MJ,2647,MGO,EUR,MONTENEGRO,2,Euro,978,Yes,Podgorica,EU,.me,"sr,hu,bs,sq,hr,rom",3194884,Z5 150 | Montserrat,Montserrat,Montserrat,MS,MSR,500,MSR,mj,,,1-664,MSR,MH,168,MNT,XCD,MONTSERRAT,2,East Caribbean Dollar,951,Territory of GB,Plymouth,NA,.ms,en-MS,3578097,P1 151 | Morocco,Morocco,Maroc,MA,MAR,504,MRC,mr,MC,MA,212,MAR,MO,169,MAR,MAD,MOROCCO,2,Moroccan Dirham,504,Yes,Rabat,AF,.ma,"ar-MA,ber,fr",2542007,P2 152 | Mozambique,Mozambique,Mozambique,MZ,MOZ,508,MOZ,mz,MZ,MOC,258,MOZ,MZ,170,MOZ,MZN,MOZAMBIQUE,2,Mozambique Metical,943,Yes,Maputo,AF,.mz,"pt-MZ,vmw",1036973,P3 153 | Myanmar,Myanmar,Myanmar,MM,MMR,104,MYA,br,BM,BUR,95,MYA,BM,171,MYA,MMK,MYANMAR,2,Kyat,104,Yes,Nay Pyi Taw,AS,.mm,my,1327865,E1 154 | Namibia,Namibia,Namibie,NA,NAM,516,NMB,sx,NM,NAM,264,NAM,WA,172,NAM,ZAR,NAMIBIA,2,Rand,710,Yes,Windhoek,AF,.na,"en-NA,af,de,hz,naq",3355338,T6 155 | Nauru,Nauru,Nauru,NR,NRU,520,NRU,nu,NW,NAU,674,NRU,NR,173,NRU,AUD,NAURU,2,Australian Dollar,036,Yes,Yaren,OC,.nr,"na,en-NR",2110425,P5 156 | Nepal,Nepal,Népal,NP,NPL,524,NPL,np,NP,NEP,977,NEP,NP,175,NEP,NPR,NEPAL,2,Nepalese Rupee,524,Yes,Kathmandu,AS,.np,"ne,en",1282988,P6 157 | Netherlands,Netherlands,Pays-Bas,NL,NLD,528,HOL,ne,NL,NL,31,NED,NL,177,NED,EUR,NETHERLANDS,2,Euro,978,Yes,Amsterdam,EU,.nl,"nl-NL,fy-NL",2750405,P7 158 | New Caledonia,New Caledonia,Nouvelle-Calédonie,NC,NCL,540,NCL,nl,NC,F,687,NCL,NC,178,NCD,XPF,NEW CALEDONIA,0,CFP Franc,953,Territory of FR,Noumea,OC,.nc,fr-NC,2139685,1W 159 | New Zealand,New Zealand,Nouvelle-Zélande,NZ,NZL,554,NZL,nz,NZ,NZ,64,NZL,NZ,179,NZL,NZD,NEW ZEALAND,2,New Zealand Dollar,554,Yes,Wellington,OC,.nz,"en-NZ,mi",2186224,Q2 160 | Nicaragua,Nicaragua,Nicaragua,NI,NIC,558,NCG,nq,NK,NIC,505,NCA,NU,180,NCA,NIO,NICARAGUA,2,Cordoba Oro,558,Yes,Managua,NA,.ni,"es-NI,en",3617476,Q3 161 | Niger,Niger,Niger,NE,NER,562,NGR,ng,NR,RN,227,NIG,NG,181,NIG,XOF,NIGER,0,CFA Franc BCEAO,952,Yes,Niamey,AF,.ne,"fr-NE,ha,kr,dje",2440476,Q4 162 | Nigeria,Nigeria,Nigéria,NG,NGA,566,NIG,nr,NI,WAN,234,NGA,NI,182,NGR,NGN,NIGERIA,2,Naira,566,Yes,Abuja,AF,.ng,"en-NG,ha,yo,ig,ff",2328926,Q5 163 | Niue,Niue,Nioué,NU,NIU,570,NIU,xh,,NZ,683,NIU,NE,183,NIU,NZD,NIUE,2,New Zealand Dollar,554,Associated with NZ,Alofi,OC,.nu,"niu,en-NU",4036232,Q6 164 | Norfolk Island,Norfolk Island,Île Norfolk,NF,NFK,574,NFK,nx,NF,AUS,672,NFK,NF,184,NFI,AUD,NORFOLK ISLAND,2,Australian Dollar,036,Territory of AU,Kingston,OC,.nf,en-NF,2155115,Q7 165 | North Korea,Democratic People's Republic of Korea,République populaire démocratique de Corée,KP,PRK,408,KRE,kn,KR,,850,PRK,KN,67,PRK,KPW,"KOREA, DEMOCRATIC PEOPLE’S REPUBLIC OF",2,North Korean Won,408,Yes,Pyongyang,AS,.kp,ko-KP,1873107, 166 | Northern Mariana Islands,Northern Mariana Islands,Îles Mariannes septentrionales,MP,MNP,580,MRA,nw,MY,USA,1-670,NMI,CQ,185,NMA,USD,NORTHERN MARIANA ISLANDS,2,US Dollar,840,Commonwealth of US,Saipan,OC,.mp,"fil,tl,zh,ch-MP,en-MP",4041468,1V 167 | Norway,Norway,Norvège,NO,NOR,578,NOR,no,NO,N,47,NOR,NO,186,NOR,NOK,NORWAY,2,Norwegian Krone,578,Yes,Oslo,EU,.no,"no,nb,nn,se,fi",3144096,Q8 168 | Oman,Oman,Oman,OM,OMN,512,OMA,mk,OM,,968,OMA,MU,187,OMA,OMR,OMAN,3,Rial Omani,512,Yes,Muscat,AS,.om,"ar-OM,en,bal,ur",286963,P4 169 | Pakistan,Pakistan,Pakistan,PK,PAK,586,PAK,pk,PK,PK,92,PAK,PK,188,PAK,PKR,PAKISTAN,2,Pakistan Rupee,586,Yes,Islamabad,AS,.pk,"ur-PK,en-PK,pa,sd,ps,brh",1168579,R0 170 | Palau,Palau,Palaos,PW,PLW,585,PLW,pw,,,680,PLW,PS,189,PLW,USD,PALAU,2,US Dollar,840,Yes,Melekeok,OC,.pw,"pau,sov,en-PW,tox,ja,fil,zh",1559582,1Y 171 | Palestine,State of Palestine,État de Palestine,PS,PSE,275,,"gz,wj",,,970,PLE,"GZ,WE","91,267",PLE,,"PALESTINE, STATE OF",,No universal currency,,In contention,East Jerusalem,AS,.ps,ar-PS,6254930, 172 | Panama,Panama,Panama,PA,PAN,591,PNR,pn,PM,PA,507,PAN,PM,191,PAN,USD,PANAMA,2,US Dollar,840,Yes,Panama City,NA,.pa,"es-PA,en",3703430,R1 173 | Papua New Guinea,Papua New Guinea,Papouasie-Nouvelle-Guinée,PG,PNG,598,PNG,pp,NG,PNG,675,PNG,PP,192,PNG,PGK,PAPUA NEW GUINEA,2,Kina,598,Yes,Port Moresby,OC,.pg,"en-PG,ho,meu,tpi",2088628,R2 174 | Paraguay,Paraguay,Paraguay,PY,PRY,600,PRG,py,PY,PY,595,PAR,PA,194,PAR,PYG,PARAGUAY,0,Guarani,600,Yes,Asuncion,SA,.py,"es-PY,gn",3437598,R4 175 | Peru,Peru,Pérou,PE,PER,604,PRU,pe,PR,PE,51,PER,PE,195,PER,PEN,PERU,2,Nuevo Sol,604,Yes,Lima,SA,.pe,"es-PE,qu,ay",3932488,R5 176 | Philippines,Philippines,Philippines,PH,PHL,608,PHL,ph,PH,RP,63,PHI,RP,196,PHI,PHP,PHILIPPINES,2,Philippine Peso,608,Yes,Manila,AS,.ph,"tl,en-PH,fil",1694008,R6 177 | Pitcairn Islands,Pitcairn,Pitcairn,PN,PCN,612,PTC,pc,PT,,870,PCN,PC,197,,NZD,PITCAIRN,2,New Zealand Dollar,554,Territory of GB,Adamstown,OC,.pn,en-PN,4030699,R8 178 | Poland,Poland,Pologne,PL,POL,616,POL,pl,PL,PL,48,POL,PL,198,POL,PLN,POLAND,2,Zloty,985,Yes,Warsaw,EU,.pl,pl,798544,R9 179 | Portugal,Portugal,Portugal,PT,PRT,620,POR,po,PO,P,351,POR,PO,199,POR,EUR,PORTUGAL,2,Euro,978,Yes,Lisbon,EU,.pt,"pt-PT,mwl",2264397,S1 180 | Puerto Rico,Puerto Rico,Porto Rico,PR,PRI,630,PTR,pr,PU,USA,1,PUR,RQ,200,PUR,USD,PUERTO RICO,2,US Dollar,840,Commonwealth of US,San Juan,NA,.pr,"en-PR,es-PR",4566966,PR 181 | Qatar,Qatar,Qatar,QA,QAT,634,QAT,qa,QT,Q,974,QAT,QA,201,QAT,QAR,QATAR,2,Qatari Rial,634,Yes,Doha,AS,.qa,"ar-QA,es",289688,S3 182 | Romania,Romania,Roumanie,RO,ROU,642,ROU,rm,RO,RO,40,ROU,RO,203,ROU,RON,ROMANIA,2,New Romanian Leu,946,Yes,Bucharest,EU,.ro,"ro,hu,rom",798549,S5 183 | Russia,Russian Federation,Fédération de Russie,RU,RUS,643,RUS,ru,RS,RUS,7,RUS,RS,204,RUS,RUB,RUSSIAN FEDERATION,2,Russian Ruble,643,Yes,Moscow,EU,.ru,"ru,tt,xal,cau,ady,kv,ce,tyv,cv,udm,tut,mns,bua,myv,mdf,chm,ba,inh,tut,kbd,krc,ava,sah,nog",2017370,1Z 184 | Rwanda,Rwanda,Rwanda,RW,RWA,646,RRW,rw,RW,RWA,250,RWA,RW,205,RWA,RWF,RWANDA,0,Rwanda Franc,646,Yes,Kigali,AF,.rw,"rw,en-RW,fr-RW,sw",49518,S6 185 | Réunion,Réunion,Réunion,RE,REU,638,REU,re,RE,F,262,REU,RE,206,REU,EUR,RÉUNION,2,Euro,978,Part of FR,Saint-Denis,AF,.re,fr-RE,935317, 186 | Samoa,Samoa,Samoa,WS,WSM,882,SMO,ws,ZM,WS,685,SAM,WS,212,SAM,WST,SAMOA,2,Tala,882,Yes,Apia,OC,.ws,"sm,en-WS",4034894,Y0 187 | San Marino,San Marino,Saint-Marin,SM,SMR,674,SMR,sm,,RSM,378,SMR,SM,213,SMR,EUR,SAN MARINO,2,Euro,978,Yes,San Marino,EU,.sm,it-SM,3168068,S8 188 | Saudi Arabia,Saudi Arabia,Arabie saoudite,SA,SAU,682,ARS,su,SD,SA,966,KSA,SA,215,KSA,SAR,SAUDI ARABIA,2,Saudi Riyal,682,Yes,Riyadh,AS,.sa,ar-SA,102358,T0 189 | Senegal,Senegal,Sénégal,SN,SEN,686,SEN,sg,SG,SN,221,SEN,SG,217,SEN,XOF,SENEGAL,0,CFA Franc BCEAO,952,Yes,Dakar,AF,.sn,"fr-SN,wo,fuc,mnk",2245662,T1 190 | Serbia,Serbia,Serbie,RS,SRB,688,SRB,rb,YG,SRB,381 p,SRB,"RI,KV",2648,SRB,RSD,SERBIA,2,Serbian Dinar,941,Yes,Belgrade,EU,.rs,"sr,hu,bs,rom",6290252,Z2 191 | Seychelles,Seychelles,Seychelles,SC,SYC,690,SEY,se,SC,SY,248,SEY,SE,220,SEY,SCR,SEYCHELLES,2,Seychelles Rupee,690,Yes,Victoria,AF,.sc,"en-SC,fr-SC",241170,T2 192 | Sierra Leone,Sierra Leone,Sierra Leone,SL,SLE,694,SRL,sl,SL,WAL,232,SLE,SL,221,SLE,SLL,SIERRA LEONE,2,Leone,694,Yes,Freetown,AF,.sl,"en-SL,men,tem",2403846,T8 193 | Singapore,Singapore,Singapour,SG,SGP,702,SNG,si,SR,SGP,65,SIN,SN,222,SIN,SGD,SINGAPORE,2,Singapore Dollar,702,Yes,Singapore,AS,.sg,"cmn,en-SG,ms-SG,ta-SG,zh-SG",1880251,U0 194 | Sint Maarten,Sint Maarten (Dutch part),Saint-Martin (partie néerlandaise),SX,SXM,534,,sn,,,1-721,,NN,,,ANG,SINT MAARTEN (DUTCH PART),2,Netherlands Antillean Guilder,532,Part of NL,Philipsburg,NA,.sx,"nl,en",7609695, 195 | Slovakia,Slovakia,Slovaquie,SK,SVK,703,SVK,xo,SQ,SK,421,SVK,LO,223,SVK,EUR,SLOVAKIA,2,Euro,978,Yes,Bratislava,EU,.sk,"sk,hu",3057568,2B 196 | Slovenia,Slovenia,Slovénie,SI,SVN,705,SVN,xv,LJ,SLO,386,SVN,SI,224,SLO,EUR,SLOVENIA,2,Euro,978,Yes,Ljubljana,EU,.si,"sl,sh",3190538,2A 197 | Solomon Islands,Solomon Islands,Îles Salomon,SB,SLB,090,SLM,bp,SO,SB,677,SOL,BP,225,SOL,SBD,SOLOMON ISLANDS,2,Solomon Islands Dollar,090,Yes,Honiara,OC,.sb,"en-SB,tpi",2103350,D7 198 | Somalia,Somalia,Somalie,SO,SOM,706,SOM,so,SI,SO,252,SOM,SO,226,SOM,SOS,SOMALIA,2,Somali Shilling,706,Yes,Mogadishu,AF,.so,"so-SO,ar-SO,it,en-SO",51537,U1 199 | South Africa,South Africa,Afrique du Sud,ZA,ZAF,710,AFS,sa,ZA,ZA,27,RSA,SF,227,RSA,ZAR,SOUTH AFRICA,2,Rand,710,Yes,Pretoria,AF,.za,"zu,xh,af,nso,en-ZA,tn,st,ts,ss,ve,nr",953987,T3 200 | South Georgia & South Sandwich Islands,,,GS,SGS,239,,xs,,,500,,SX,228,,,,,,,Territory of GB,Grytviken,AN,.gs,en,3474415, 201 | South Korea,Republic of Korea,République de Corée,KR,KOR,410,KOR,ko,KO,ROK,82,KOR,KS,202,KOR,KRW,"KOREA, REPUBLIC OF",0,Won,410,Yes,Seoul,AS,.kr,"ko-KR,en",1835841,M5 202 | South Sudan,South Sudan,Soudan du Sud,SS,SSD,728,SSD,sd,,,211,,OD,,,SSP,SOUTH SUDAN,2,South Sudanese Pound,728,Yes,Juba,AF,,en,7909807, 203 | Spain,Spain,Espagne,ES,ESP,724,E,sp,SP,E,34,ESP,SP,229,ESP,EUR,SPAIN,2,Euro,978,Yes,Madrid,EU,.es,"es-ES,ca,gl,eu,oc",2510769,U3 204 | Sri Lanka,Sri Lanka,Sri Lanka,LK,LKA,144,CLN,ce,SB,CL,94,SRI,CE,231,SRI,LKR,SRI LANKA,2,Sri Lanka Rupee,144,Yes,Colombo,AS,.lk,"si,ta,en",1227603,F1 205 | St. Barthélemy,Saint Barthélemy,Saint-Barthélemy,BL,BLM,652,,sc,,,590,,TB,,,EUR,SAINT BARTHÉLEMY,2,Euro,978,Part of FR,Gustavia,NA,.gp,fr,3578476, 206 | St. Helena,Saint Helena,Sainte-Hélène,SH,SHN,654,SHN,xj,HE,SH,290 n,SHN,SH,207,HEL,SHP,"SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA",2,Saint Helena Pound,654,Territory of GB,Jamestown,AF,.sh,en-SH,3370751, 207 | St. Kitts & Nevis,Saint Kitts and Nevis,Saint-Kitts-et-Nevis,KN,KNA,659,KNA,xd,AT,KN,1-869,SKN,SC,208,SKN,XCD,SAINT KITTS AND NEVIS,2,East Caribbean Dollar,951,Yes,Basseterre,NA,.kn,en-KN,3575174,U7 208 | St. Lucia,Saint Lucia,Sainte-Lucie,LC,LCA,662,LCA,xk,LC,WL,1-758,LCA,ST,209,LCA,XCD,SAINT LUCIA,2,East Caribbean Dollar,951,Yes,Castries,NA,.lc,en-LC,3576468,U9 209 | St. Martin,Saint Martin (French part),Saint-Martin (partie française),MF,MAF,663,,st,,,590,,RN,,,EUR,SAINT MARTIN (FRENCH PART),2,Euro,978,Part of FR,Marigot,NA,.gp,fr,3578421, 210 | St. Pierre & Miquelon,Saint Pierre and Miquelon,Saint-Pierre-et-Miquelon,PM,SPM,666,SPM,xl,FP,F,508,SPM,SB,210,SPM,EUR,SAINT PIERRE AND MIQUELON,2,Euro,978,Part of FR,Saint-Pierre,NA,.pm,fr-PM,3424932,V0 211 | St. Vincent & Grenadines,Saint Vincent and the Grenadines,Saint-Vincent-et-les Grenadines,VC,VCT,670,VCT,xm,VG,WV,1-784,VIN,VC,211,VIN,XCD,SAINT VINCENT AND THE GRENADINES,2,East Caribbean Dollar,951,Yes,Kingstown,NA,.vc,"en-VC,fr",3577815,V1 212 | Sudan,Sudan,Soudan,SD,SDN,729,SDN,sj,SU,SUD,249,SUD,SU,40764,SUD,SDG,SUDAN,2,Sudanese Pound,938,Yes,Khartoum,AF,.sd,"ar-SD,en,fia",366755,V2 213 | Suriname,Suriname,Suriname,SR,SUR,740,SUR,sr,SM,SME,597,SUR,NS,233,SUR,SRD,SURINAME,2,Surinam Dollar,968,Yes,Paramaribo,SA,.sr,"nl-SR,en,srn,hns,jv",3382998,V3 214 | Svalbard & Jan Mayen,Svalbard and Jan Mayen Islands,Îles Svalbard-et-Jan Mayen,SJ,SJM,744,NOR,,SZ,,47,,"SV,JN",234,,NOK,SVALBARD AND JAN MAYEN,2,Norwegian Krone,578,Territory of NO,Longyearbyen,EU,.sj,"no,ru",607072,L9 215 | Swaziland,Swaziland,Swaziland,SZ,SWZ,748,SWZ,sq,SV,SD,268,SWZ,WZ,235,SWZ,SZL,SWAZILAND,2,Lilangeni,748,Yes,Mbabane,AF,.sz,"en-SZ,ss-SZ",934841,V6 216 | Sweden,Sweden,Suède,SE,SWE,752,S,sw,SN,S,46,SWE,SW,236,SWE,SEK,SWEDEN,2,Swedish Krona,752,Yes,Stockholm,EU,.se,"sv-SE,se,sma,fi-SE",2661886,V7 217 | Switzerland,Switzerland,Suisse,CH,CHE,756,SUI,sz,SW,CH,41,SUI,SZ,237,SUI,CHF,SWITZERLAND,2,Swiss Franc,756,Yes,Bern,EU,.ch,"de-CH,fr-CH,it-CH,rm",2658434,V8 218 | Syria,Syrian Arab Republic,République arabe syrienne,SY,SYR,760,SYR,sy,SY,SYR,963,SYR,SY,238,SYR,SYP,SYRIAN ARAB REPUBLIC,2,Syrian Pound,760,Yes,Damascus,AS,.sy,"ar-SY,ku,hy,arc,fr,en",163843,V9 219 | São Tomé & Príncipe,Sao Tome and Principe,Sao Tomé-et-Principe,ST,STP,678,STP,sf,TP,ST,239,STP,TP,214,STP,STD,SAO TOME AND PRINCIPE,2,Dobra,678,Yes,Sao Tome,AF,.st,pt-ST,2410758,S9 220 | Taiwan,,,TW,TWN,158,,ch,,RC,886,TPE,TW,925,TPE,,,,,,Yes,Taipei,AS,.tw,"zh-TW,zh,nan,hak",1668284, 221 | Tajikistan,Tajikistan,Tadjikistan,TJ,TJK,762,TJK,ta,TA,TJ,992,TJK,TI,239,TJK,TJS,TAJIKISTAN,2,Somoni,972,Yes,Dushanbe,AS,.tj,"tg,ru",1220409,2D 222 | Tanzania,United Republic of Tanzania,République-Unie de Tanzanie,TZ,TZA,834,TZA,tz,TN,EAT,255,TAN,TZ,257,TAN,TZS,"TANZANIA, UNITED REPUBLIC OF",2,Tanzanian Shilling,834,Yes,Dodoma,AF,.tz,"sw-TZ,en,ar",149590,W0 223 | Thailand,Thailand,Thaïlande,TH,THA,764,THA,th,TH,T,66,THA,TH,240,THA,THB,THAILAND,2,Baht,764,Yes,Bangkok,AS,.th,"th,en",1605651,W1 224 | Timor-Leste,Timor-Leste,Timor-Leste,TL,TLS,626,TLS,em,TM,RI,670,TLS,TT,242,TLS,USD,TIMOR-LESTE,2,US Dollar,840,Yes,Dili,OC,.tl,"tet,pt-TL,id,en",1966436,Z3 225 | Togo,Togo,Togo,TG,TGO,768,TGO,tg,TG,TG,228,TOG,TO,243,TOG,XOF,TOGO,0,CFA Franc BCEAO,952,Yes,Lome,AF,.tg,"fr-TG,ee,hna,kbp,dag,ha",2363686,W2 226 | Tokelau,Tokelau,Tokelau,TK,TKL,772,TKL,tl,TK,NZ,690,TKL,TL,244,,NZD,TOKELAU,2,New Zealand Dollar,554,Territory of NZ,,OC,.tk,"tkl,en-TK",4031074,W3 227 | Tonga,Tonga,Tonga,TO,TON,776,TON,to,TO,TO,676,TGA,TN,245,TGA,TOP,TONGA,2,Pa’anga,776,Yes,Nuku'alofa,OC,.to,"to,en-TO",4032283,W4 228 | Trinidad & Tobago,Trinidad and Tobago,Trinité-et-Tobago,TT,TTO,780,TRD,tr,TD,TT,1-868,TRI,TD,246,TTO,TTD,TRINIDAD AND TOBAGO,2,Trinidad and Tobago Dollar,780,Yes,Port of Spain,NA,.tt,"en-TT,hns,fr,es,zh",3573591,W5 229 | Tunisia,Tunisia,Tunisie,TN,TUN,788,TUN,ti,TS,TN,216,TUN,TS,248,TUN,TND,TUNISIA,3,Tunisian Dinar,788,Yes,Tunis,AF,.tn,"ar-TN,fr",2464461,W6 230 | Turkey,Turkey,Turquie,TR,TUR,792,TUR,tu,TU,TR,90,TUR,TU,249,TUR,TRY,TURKEY,2,Turkish Lira,949,Yes,Ankara,AS,.tr,"tr-TR,ku,diq,az,av",298795,W8 231 | Turkmenistan,Turkmenistan,Turkménistan,TM,TKM,795,TKM,tk,TR,TM,993,TKM,TX,250,TKM,TMT,TURKMENISTAN,2,Turkmenistan New Manat,934,Yes,Ashgabat,AS,.tm,"tk,ru,uz",1218197,2E 232 | Turks & Caicos Islands,Turks and Caicos Islands,Îles Turques-et-Caïques,TC,TCA,796,TCA,tc,TI,,1-649,TCA,TK,251,TKS,USD,TURKS AND CAICOS ISLANDS,2,US Dollar,840,Territory of GB,Cockburn Town,NA,.tc,en-TC,3576916,W7 233 | Tuvalu,Tuvalu,Tuvalu,TV,TUV,798,TUV,tv,TV,TV,688,TUV,TV,252,TUV,AUD,TUVALU,2,Australian Dollar,036,Yes,Funafuti,OC,.tv,"tvl,en,sm,gil",2110297,2G 234 | U.S. Outlying Islands,,,UM,UMI,581,,"ji,xf,wk,uc,up",,USA,,,"FQ,HQ,DQ,JQ,KQ,MQ,BQ,LQ,WQ",,,,,,,,Territories of US,,OC,.um,en-UM,5854968, 235 | U.S. Virgin Islands,United States Virgin Islands,Îles Vierges américaines,VI,VIR,850,VIR,vi,VI,USA,1-340,VIR,VQ,258,ISV,USD,VIRGIN ISLANDS (U.S.),2,US Dollar,840,Territory of US,Charlotte Amalie,NA,.vi,en-VI,4796775, 236 | UK,United Kingdom of Great Britain and Northern Ireland,Royaume-Uni de Grande-Bretagne et d'Irlande du Nord,GB,GBR,826,G,xxk,UK,GB,44,"ENG,NIR,SCO,WAL",UK,256,GBR,GBP,UNITED KINGDOM,2,Pound Sterling,826,Yes,London,EU,.uk,"en-GB,cy-GB,gd",2635167,X0 237 | US,United States of America,États-Unis d'Amérique,US,USA,840,USA,xxu,US,USA,1,USA,US,259,USA,USD,UNITED STATES,2,US Dollar,840,Yes,Washington,NA,.us,"en-US,es-US,haw,fr",6252001, 238 | Uganda,Uganda,Ouganda,UG,UGA,800,UGA,ug,UG,EAU,256,UGA,UG,253,UGA,UGX,UGANDA,0,Uganda Shilling,800,Yes,Kampala,AF,.ug,"en-UG,lg,sw,ar",226074,W9 239 | Ukraine,Ukraine,Ukraine,UA,UKR,804,UKR,un,UR,UA,380,UKR,UP,254,UKR,UAH,UKRAINE,2,Hryvnia,980,Yes,Kiev,EU,.ua,"uk,ru-UA,rom,pl,hu",690791,2H 240 | United Arab Emirates,United Arab Emirates,Émirats arabes unis,AE,ARE,784,UAE,ts,ER,,971,UAE,AE,255,UAE,AED,UNITED ARAB EMIRATES,2,UAE Dirham,784,Yes,Abu Dhabi,AS,.ae,"ar-AE,fa,en,hi,ur",290557,C0 241 | Uruguay,Uruguay,Uruguay,UY,URY,858,URG,uy,UY,ROU,598,URU,UY,260,URU,UYU,URUGUAY,2,Peso Uruguayo,858,Yes,Montevideo,SA,.uy,es-UY,3439705,X3 242 | Uzbekistan,Uzbekistan,Ouzbékistan,UZ,UZB,860,UZB,uz,UZ,UZ,998,UZB,UZ,261,UZB,UZS,UZBEKISTAN,2,Uzbekistan Sum,860,Yes,Tashkent,AS,.uz,"uz,ru,tg",1512440,2K 243 | Vanuatu,Vanuatu,Vanuatu,VU,VUT,548,VUT,nn,NV,VU,678,VAN,NH,262,VAN,VUV,VANUATU,0,Vatu,548,Yes,Port Vila,OC,.vu,"bi,en-VU,fr-VU",2134431,2L 244 | Vatican City,Holy See,Saint-Siège,VA,VAT,336,CVA,vc,,V,39-06,VAT,VT,110,,EUR,HOLY SEE (VATICAN CITY STATE),2,Euro,978,Yes,Vatican City,EU,.va,"la,it,fr",3164670,X4 245 | Venezuela,Venezuela (Bolivarian Republic of),Venezuela (République bolivarienne du),VE,VEN,862,VEN,ve,VN,YV,58,VEN,VE,263,VEN,VEF,"VENEZUELA, BOLIVARIAN REPUBLIC OF",2,Bolivar,937,Yes,Caracas,SA,.ve,es-VE,3625428, 246 | Vietnam,Viet Nam,Viet Nam,VN,VNM,704,VTN,vm,VS,VN,84,VIE,VM,264,VIE,VND,VIET NAM,0,Dong,704,Yes,Hanoi,AS,.vn,"vi,en,fr,zh,km",1562822,Q1 247 | Wallis & Futuna,Wallis and Futuna Islands,Îles Wallis-et-Futuna,WF,WLF,876,WAL,wf,FW,F,681,WLF,WF,266,WAF,XPF,WALLIS AND FUTUNA,0,CFP Franc,953,Territory of FR,Mata Utu,OC,.wf,"wls,fud,fr-WF",4034749,X8 248 | Western Sahara,Western Sahara,Sahara occidental,EH,ESH,732,AOE,ss,,,212,SAH,WI,268,,MAD,WESTERN SAHARA,2,Moroccan Dirham,504,In contention,El-Aaiun,AF,.eh,"ar,mey",2461445,U5 249 | Yemen,Yemen,Yémen,YE,YEM,887,YEM,ye,YE,YAR,967,YEM,YM,269,YEM,YER,YEMEN,2,Yemeni Rial,886,Yes,Sanaa,AS,.ye,ar-YE,69543,T7 250 | Zambia,Zambia,Zambie,ZM,ZMB,894,ZMB,za,ZB,Z,260,ZAM,ZA,270,ZAM,ZMW,ZAMBIA,2,Zambian Kwacha,967,Yes,Lusaka,AF,.zm,"en-ZM,bem,loz,lun,lue,ny,toi",895949,Y4 251 | Zimbabwe,Zimbabwe,Zimbabwe,ZW,ZWE,716,ZWE,rh,ZW,ZW,263,ZIM,ZI,271,ZIM,ZWL,ZIMBABWE,2,Zimbabwe Dollar,932,Yes,Harare,AF,.zw,"en-ZW,sn,nr,nd",878675,Y5 252 | Åland Islands,Åland Islands,Îles d'Åland,AX,ALA,248,,,,FIN,358,ALD,,1242,,EUR,ÅLAND ISLANDS,2,Euro,978,Part of FI,Mariehamn,EU,.ax,sv-AX,661882, 253 | -------------------------------------------------------------------------------- /resources/data/packages/country-codes/datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "country-codes", 3 | "title": "Comprehensive country codes: ISO 3166, ITU, ISO 4217 currency codes and many more", 4 | "format": "csv", 5 | "datapackage_version": "1.0.0-beta.13", 6 | "last_modified": "2017-01-16", 7 | "licenses": [ 8 | { 9 | "type": "ODC-PDDL-1.0", 10 | "url": "http://opendatacommons.org/licenses/pddl/1.0/" 11 | } 12 | ], 13 | "sources": [ 14 | { 15 | "name": "Unicode Common Locale Data Repository (CLDR) Project", 16 | "web": "https://github.com/unicode-cldr/cldr-localenames-full/blob/master/main/en/territories.json" 17 | }, 18 | { 19 | "name": "United Nations Statistics Division", 20 | "web": "http://unstats.un.org/unsd/methods/m49/m49.htm" 21 | }, 22 | { 23 | "name": "SIX Interbank Clearing Ltd (on behalf of ISO)", 24 | "web": "http://www.currency-iso.org/dam/downloads/dl_iso_table_a1.xls" 25 | }, 26 | { 27 | "name": "Statoids", 28 | "web": "http://www.statoids.com/wab.html" 29 | }, 30 | { 31 | "name": "Geonames", 32 | "web": "http://download.geonames.org/export/dump/countryInfo.txt" 33 | }, 34 | { 35 | "name": "US Securities and Exchange Commission", 36 | "web": "https://www.sec.gov/edgar/searchedgar/edgarstatecodes.htm" 37 | } 38 | ], 39 | "resources": [ 40 | { 41 | "name": "country-codes", 42 | "format": "csv", 43 | "path": "data/country-codes.csv", 44 | "schema": { 45 | "fields": [ 46 | { 47 | "name": "name", 48 | "description": "Country's customary English short name (CLDR)", 49 | "type": "string" 50 | }, 51 | { 52 | "name": "official_name_en", 53 | "description": "Country's official English short name", 54 | "type": "string" 55 | }, 56 | { 57 | "name": "official_name_fr", 58 | "description": "Country's offical French short name", 59 | "type": "string" 60 | }, 61 | { 62 | "name": "ISO3166-1-Alpha-2", 63 | "description": "Alpha-2 codes from ISO 3166-1", 64 | "type": "string" 65 | }, 66 | { 67 | "name": "ISO3166-1-Alpha-3", 68 | "description": "Alpha-3 codes from ISO 3166-1 (synonymous with World Bank Codes)", 69 | "type": "string" 70 | }, 71 | { 72 | "name": "M49", 73 | "description": "UN Statistics M49 numeric codes (nearly synonymous with ISO 3166-1 numeric codes, which are based on UN M49. ISO 3166-1 does not include Channel Islands or Sark, for example)", 74 | "type": "number" 75 | }, 76 | { 77 | "name": "ITU", 78 | "description": "Codes assigned by the International Telecommunications Union", 79 | "type": "string" 80 | }, 81 | { 82 | "name": "MARC", 83 | "description": "MAchine-Readable Cataloging codes from the Library of Congress", 84 | "type": "string" 85 | }, 86 | { 87 | "name": "WMO", 88 | "description": "Country abbreviations by the World Meteorological Organization", 89 | "type": "string" 90 | }, 91 | { 92 | "name": "DS", 93 | "description": "Distinguishing signs of vehicles in international traffic", 94 | "type": "string" 95 | }, 96 | { 97 | "name": "Dial", 98 | "description": "Country code from ITU-T recommendation E.164, sometimes followed by area code", 99 | "type": "string" 100 | }, 101 | { 102 | "name": "FIFA", 103 | "description": "Codes assigned by the Fédération Internationale de Football Association", 104 | "type": "string" 105 | }, 106 | { 107 | "name": "FIPS", 108 | "description": "Codes from the U.S. standard FIPS PUB 10-4", 109 | "type": "string" 110 | }, 111 | { 112 | "name": "GAUL", 113 | "description": "Global Administrative Unit Layers from the Food and Agriculture Organization", 114 | "type": "string" 115 | }, 116 | { 117 | "name": "IOC", 118 | "description": "Codes assigned by the International Olympics Committee", 119 | "type": "string" 120 | }, 121 | { 122 | "name": "ISO4217-currency_alphabetic_code", 123 | "description": "ISO 4217 currency alphabetic code", 124 | "type": "string" 125 | }, 126 | { 127 | "name": "ISO4217-currency_country_name", 128 | "description": "ISO 4217 country name", 129 | "type": "string" 130 | }, 131 | { 132 | "name": "ISO4217-currency_minor_unit", 133 | "description": "ISO 4217 currency number of minor units", 134 | "type": "number" 135 | }, 136 | { 137 | "name": "ISO4217-currency_name", 138 | "description": "ISO 4217 currency name", 139 | "type": "string" 140 | }, 141 | { 142 | "name": "ISO4217-currency_numeric_code", 143 | "description": "ISO 4217 currency numeric code", 144 | "type": "number" 145 | }, 146 | { 147 | "name": "is_independent", 148 | "description": "Country status, based on the CIA World Factbook", 149 | "type": "string" 150 | }, 151 | { 152 | "name": "Capital", 153 | "description": "Capital city from Geonames", 154 | "type": "string" 155 | }, 156 | { 157 | "name": "Continent", 158 | "description": "Continent from Geonames", 159 | "type": "string" 160 | }, 161 | { 162 | "name": "TLD", 163 | "description": "Top level domain from Geonames", 164 | "type": "string" 165 | }, 166 | { 167 | "name": "Languages", 168 | "description": "Languages from Geonames", 169 | "type": "string" 170 | }, 171 | { 172 | "name": "Geoname ID", 173 | "description": "Geoname ID", 174 | "type": "number" 175 | }, 176 | { 177 | "name": "EDGAR", 178 | "description": "EDGAR country code from SEC", 179 | "type": "string" 180 | } 181 | ] 182 | } 183 | } 184 | ], 185 | "maintainers":[{ 186 | "name": "Evan Wheeler", 187 | "web": "https://github.com/datasets/country-codes" 188 | }] 189 | } 190 | -------------------------------------------------------------------------------- /resources/data/packages/country-list/data.csv: -------------------------------------------------------------------------------- 1 | Name,Code 2 | Afghanistan,AF 3 | Åland Islands,AX 4 | Albania,AL 5 | Algeria,DZ 6 | American Samoa,AS 7 | Andorra,AD 8 | Angola,AO 9 | Anguilla,AI 10 | Antarctica,AQ 11 | Antigua and Barbuda,AG 12 | Argentina,AR 13 | Armenia,AM 14 | Aruba,AW 15 | Australia,AU 16 | Austria,AT 17 | Azerbaijan,AZ 18 | Bahamas,BS 19 | Bahrain,BH 20 | Bangladesh,BD 21 | Barbados,BB 22 | Belarus,BY 23 | Belgium,BE 24 | Belize,BZ 25 | Benin,BJ 26 | Bermuda,BM 27 | Bhutan,BT 28 | "Bolivia, Plurinational State of",BO 29 | "Bonaire, Sint Eustatius and Saba",BQ 30 | Bosnia and Herzegovina,BA 31 | Botswana,BW 32 | Bouvet Island,BV 33 | Brazil,BR 34 | British Indian Ocean Territory,IO 35 | Brunei Darussalam,BN 36 | Bulgaria,BG 37 | Burkina Faso,BF 38 | Burundi,BI 39 | Cambodia,KH 40 | Cameroon,CM 41 | Canada,CA 42 | Cape Verde,CV 43 | Cayman Islands,KY 44 | Central African Republic,CF 45 | Chad,TD 46 | Chile,CL 47 | China,CN 48 | Christmas Island,CX 49 | Cocos (Keeling) Islands,CC 50 | Colombia,CO 51 | Comoros,KM 52 | Congo,CG 53 | "Congo, the Democratic Republic of the",CD 54 | Cook Islands,CK 55 | Costa Rica,CR 56 | Côte d'Ivoire,CI 57 | Croatia,HR 58 | Cuba,CU 59 | Curaçao,CW 60 | Cyprus,CY 61 | Czech Republic,CZ 62 | Denmark,DK 63 | Djibouti,DJ 64 | Dominica,DM 65 | Dominican Republic,DO 66 | Ecuador,EC 67 | Egypt,EG 68 | El Salvador,SV 69 | Equatorial Guinea,GQ 70 | Eritrea,ER 71 | Estonia,EE 72 | Ethiopia,ET 73 | Falkland Islands (Malvinas),FK 74 | Faroe Islands,FO 75 | Fiji,FJ 76 | Finland,FI 77 | France,FR 78 | French Guiana,GF 79 | French Polynesia,PF 80 | French Southern Territories,TF 81 | Gabon,GA 82 | Gambia,GM 83 | Georgia,GE 84 | Germany,DE 85 | Ghana,GH 86 | Gibraltar,GI 87 | Greece,GR 88 | Greenland,GL 89 | Grenada,GD 90 | Guadeloupe,GP 91 | Guam,GU 92 | Guatemala,GT 93 | Guernsey,GG 94 | Guinea,GN 95 | Guinea-Bissau,GW 96 | Guyana,GY 97 | Haiti,HT 98 | Heard Island and McDonald Islands,HM 99 | Holy See (Vatican City State),VA 100 | Honduras,HN 101 | Hong Kong,HK 102 | Hungary,HU 103 | Iceland,IS 104 | India,IN 105 | Indonesia,ID 106 | "Iran, Islamic Republic of",IR 107 | Iraq,IQ 108 | Ireland,IE 109 | Isle of Man,IM 110 | Israel,IL 111 | Italy,IT 112 | Jamaica,JM 113 | Japan,JP 114 | Jersey,JE 115 | Jordan,JO 116 | Kazakhstan,KZ 117 | Kenya,KE 118 | Kiribati,KI 119 | "Korea, Democratic People's Republic of",KP 120 | "Korea, Republic of",KR 121 | Kuwait,KW 122 | Kyrgyzstan,KG 123 | Lao People's Democratic Republic,LA 124 | Latvia,LV 125 | Lebanon,LB 126 | Lesotho,LS 127 | Liberia,LR 128 | Libya,LY 129 | Liechtenstein,LI 130 | Lithuania,LT 131 | Luxembourg,LU 132 | Macao,MO 133 | "Macedonia, the Former Yugoslav Republic of",MK 134 | Madagascar,MG 135 | Malawi,MW 136 | Malaysia,MY 137 | Maldives,MV 138 | Mali,ML 139 | Malta,MT 140 | Marshall Islands,MH 141 | Martinique,MQ 142 | Mauritania,MR 143 | Mauritius,MU 144 | Mayotte,YT 145 | Mexico,MX 146 | "Micronesia, Federated States of",FM 147 | "Moldova, Republic of",MD 148 | Monaco,MC 149 | Mongolia,MN 150 | Montenegro,ME 151 | Montserrat,MS 152 | Morocco,MA 153 | Mozambique,MZ 154 | Myanmar,MM 155 | Namibia,NA 156 | Nauru,NR 157 | Nepal,NP 158 | Netherlands,NL 159 | New Caledonia,NC 160 | New Zealand,NZ 161 | Nicaragua,NI 162 | Niger,NE 163 | Nigeria,NG 164 | Niue,NU 165 | Norfolk Island,NF 166 | Northern Mariana Islands,MP 167 | Norway,NO 168 | Oman,OM 169 | Pakistan,PK 170 | Palau,PW 171 | "Palestine, State of",PS 172 | Panama,PA 173 | Papua New Guinea,PG 174 | Paraguay,PY 175 | Peru,PE 176 | Philippines,PH 177 | Pitcairn,PN 178 | Poland,PL 179 | Portugal,PT 180 | Puerto Rico,PR 181 | Qatar,QA 182 | Réunion,RE 183 | Romania,RO 184 | Russian Federation,RU 185 | Rwanda,RW 186 | Saint Barthélemy,BL 187 | "Saint Helena, Ascension and Tristan da Cunha",SH 188 | Saint Kitts and Nevis,KN 189 | Saint Lucia,LC 190 | Saint Martin (French part),MF 191 | Saint Pierre and Miquelon,PM 192 | Saint Vincent and the Grenadines,VC 193 | Samoa,WS 194 | San Marino,SM 195 | Sao Tome and Principe,ST 196 | Saudi Arabia,SA 197 | Senegal,SN 198 | Serbia,RS 199 | Seychelles,SC 200 | Sierra Leone,SL 201 | Singapore,SG 202 | Sint Maarten (Dutch part),SX 203 | Slovakia,SK 204 | Slovenia,SI 205 | Solomon Islands,SB 206 | Somalia,SO 207 | South Africa,ZA 208 | South Georgia and the South Sandwich Islands,GS 209 | South Sudan,SS 210 | Spain,ES 211 | Sri Lanka,LK 212 | Sudan,SD 213 | Suriname,SR 214 | Svalbard and Jan Mayen,SJ 215 | Swaziland,SZ 216 | Sweden,SE 217 | Switzerland,CH 218 | Syrian Arab Republic,SY 219 | "Taiwan, Province of China",TW 220 | Tajikistan,TJ 221 | "Tanzania, United Republic of",TZ 222 | Thailand,TH 223 | Timor-Leste,TL 224 | Togo,TG 225 | Tokelau,TK 226 | Tonga,TO 227 | Trinidad and Tobago,TT 228 | Tunisia,TN 229 | Turkey,TR 230 | Turkmenistan,TM 231 | Turks and Caicos Islands,TC 232 | Tuvalu,TV 233 | Uganda,UG 234 | Ukraine,UA 235 | United Arab Emirates,AE 236 | United Kingdom,GB 237 | United States,US 238 | United States Minor Outlying Islands,UM 239 | Uruguay,UY 240 | Uzbekistan,UZ 241 | Vanuatu,VU 242 | "Venezuela, Bolivarian Republic of",VE 243 | Viet Nam,VN 244 | "Virgin Islands, British",VG 245 | "Virgin Islands, U.S.",VI 246 | Wallis and Futuna,WF 247 | Western Sahara,EH 248 | Yemen,YE 249 | Zambia,ZM 250 | Zimbabwe,ZW 251 | -------------------------------------------------------------------------------- /resources/data/packages/country-list/datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "country-list", 3 | "title": "List of all countries with their 2 digit codes (ISO 3166-2)", 4 | "sources": [{ 5 | "name": "ISO", 6 | "web": "http://www.iso.org/iso/home/standards/country_codes.htm" 7 | }], 8 | "license": "ODC-PDDL", 9 | "resources": [ 10 | { 11 | "path": "data.csv", 12 | "schema": { 13 | "fields": [ 14 | { 15 | "name": "Name", 16 | "description": "Country Name", 17 | "type": "string" 18 | }, 19 | { 20 | "name": "Code", 21 | "description": "ISO 2-digit code from ISO 3166-alpha-2", 22 | "type": "string" 23 | } 24 | ] 25 | }, 26 | "primaryKey": "Code" 27 | } 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /resources/data/packages/currency-codes/data/codes-all.csv: -------------------------------------------------------------------------------- 1 | Entity,Currency,AlphabeticCode,NumericCode,MinorUnit,WithdrawalDate 2 | AFGHANISTAN,Afghani,AFN,971,2, 3 | ÅLAND ISLANDS,Euro,EUR,978,2, 4 | ALBANIA,Lek,ALL,008,2, 5 | ALGERIA,Algerian Dinar,DZD,012,2, 6 | AMERICAN SAMOA,US Dollar,USD,840,2, 7 | ANDORRA,Euro,EUR,978,2, 8 | ANGOLA,Kwanza,AOA,973,2, 9 | ANGUILLA,East Caribbean Dollar,XCD,951,2, 10 | ANTARCTICA,No universal currency,,,, 11 | ANTIGUA AND BARBUDA,East Caribbean Dollar,XCD,951,2, 12 | ARGENTINA,Argentine Peso,ARS,032,2, 13 | ARMENIA,Armenian Dram,AMD,051,2, 14 | ARUBA,Aruban Florin,AWG,533,2, 15 | AUSTRALIA,Australian Dollar,AUD,036,2, 16 | AUSTRIA,Euro,EUR,978,2, 17 | AZERBAIJAN,Azerbaijanian Manat,AZN,944,2, 18 | BAHAMAS (THE),Bahamian Dollar,BSD,044,2, 19 | BAHRAIN,Bahraini Dinar,BHD,048,3, 20 | BANGLADESH,Taka,BDT,050,2, 21 | BARBADOS,Barbados Dollar,BBD,052,2, 22 | BELARUS,Belarusian Ruble,BYN,933,2, 23 | BELGIUM,Euro,EUR,978,2, 24 | BELIZE,Belize Dollar,BZD,084,2, 25 | BENIN,CFA Franc BCEAO,XOF,952,0, 26 | BERMUDA,Bermudian Dollar,BMD,060,2, 27 | BHUTAN,Indian Rupee,INR,356,2, 28 | BHUTAN,Ngultrum,BTN,064,2, 29 | BOLIVIA (PLURINATIONAL STATE OF),Boliviano,BOB,068,2, 30 | BOLIVIA (PLURINATIONAL STATE OF),Mvdol,BOV,984,2, 31 | "BONAIRE, SINT EUSTATIUS AND SABA",US Dollar,USD,840,2, 32 | BOSNIA AND HERZEGOVINA,Convertible Mark,BAM,977,2, 33 | BOTSWANA,Pula,BWP,072,2, 34 | BOUVET ISLAND,Norwegian Krone,NOK,578,2, 35 | BRAZIL,Brazilian Real,BRL,986,2, 36 | BRITISH INDIAN OCEAN TERRITORY (THE),US Dollar,USD,840,2, 37 | BRUNEI DARUSSALAM,Brunei Dollar,BND,096,2, 38 | BULGARIA,Bulgarian Lev,BGN,975,2, 39 | BURKINA FASO,CFA Franc BCEAO,XOF,952,0, 40 | BURUNDI,Burundi Franc,BIF,108,0, 41 | CABO VERDE,Cabo Verde Escudo,CVE,132,2, 42 | CAMBODIA,Riel,KHR,116,2, 43 | CAMEROON,CFA Franc BEAC,XAF,950,0, 44 | CANADA,Canadian Dollar,CAD,124,2, 45 | CAYMAN ISLANDS (THE),Cayman Islands Dollar,KYD,136,2, 46 | CENTRAL AFRICAN REPUBLIC (THE),CFA Franc BEAC,XAF,950,0, 47 | CHAD,CFA Franc BEAC,XAF,950,0, 48 | CHILE,Chilean Peso,CLP,152,0, 49 | CHILE,Unidad de Fomento,CLF,990,4, 50 | CHINA,Yuan Renminbi,CNY,156,2, 51 | CHRISTMAS ISLAND,Australian Dollar,AUD,036,2, 52 | COCOS (KEELING) ISLANDS (THE),Australian Dollar,AUD,036,2, 53 | COLOMBIA,Colombian Peso,COP,170,2, 54 | COLOMBIA,Unidad de Valor Real,COU,970,2, 55 | COMOROS (THE),Comoro Franc,KMF,174,0, 56 | CONGO (THE DEMOCRATIC REPUBLIC OF THE),Congolese Franc,CDF,976,2, 57 | CONGO (THE),CFA Franc BEAC,XAF,950,0, 58 | COOK ISLANDS (THE),New Zealand Dollar,NZD,554,2, 59 | COSTA RICA,Costa Rican Colon,CRC,188,2, 60 | CÔTE D'IVOIRE,CFA Franc BCEAO,XOF,952,0, 61 | CROATIA,Kuna,HRK,191,2, 62 | CUBA,Cuban Peso,CUP,192,2, 63 | CUBA,Peso Convertible,CUC,931,2, 64 | CURAÇAO,Netherlands Antillean Guilder,ANG,532,2, 65 | CYPRUS,Euro,EUR,978,2, 66 | CZECH REPUBLIC (THE),Czech Koruna,CZK,203,2, 67 | DENMARK,Danish Krone,DKK,208,2, 68 | DJIBOUTI,Djibouti Franc,DJF,262,0, 69 | DOMINICA,East Caribbean Dollar,XCD,951,2, 70 | DOMINICAN REPUBLIC (THE),Dominican Peso,DOP,214,2, 71 | ECUADOR,US Dollar,USD,840,2, 72 | EGYPT,Egyptian Pound,EGP,818,2, 73 | EL SALVADOR,El Salvador Colon,SVC,222,2, 74 | EL SALVADOR,US Dollar,USD,840,2, 75 | EQUATORIAL GUINEA,CFA Franc BEAC,XAF,950,0, 76 | ERITREA,Nakfa,ERN,232,2, 77 | ESTONIA,Euro,EUR,978,2, 78 | ETHIOPIA,Ethiopian Birr,ETB,230,2, 79 | EUROPEAN UNION,Euro,EUR,978,2, 80 | "FALKLAND ISLANDS (THE) [MALVINAS]",Falkland Islands Pound,FKP,238,2, 81 | FAROE ISLANDS (THE),Danish Krone,DKK,208,2, 82 | FIJI,Fiji Dollar,FJD,242,2, 83 | FINLAND,Euro,EUR,978,2, 84 | FRANCE,Euro,EUR,978,2, 85 | FRENCH GUIANA,Euro,EUR,978,2, 86 | FRENCH POLYNESIA,CFP Franc,XPF,953,0, 87 | FRENCH SOUTHERN TERRITORIES (THE),Euro,EUR,978,2, 88 | GABON,CFA Franc BEAC,XAF,950,0, 89 | GAMBIA (THE),Dalasi,GMD,270,2, 90 | GEORGIA,Lari,GEL,981,2, 91 | GERMANY,Euro,EUR,978,2, 92 | GHANA,Ghana Cedi,GHS,936,2, 93 | GIBRALTAR,Gibraltar Pound,GIP,292,2, 94 | GREECE,Euro,EUR,978,2, 95 | GREENLAND,Danish Krone,DKK,208,2, 96 | GRENADA,East Caribbean Dollar,XCD,951,2, 97 | GUADELOUPE,Euro,EUR,978,2, 98 | GUAM,US Dollar,USD,840,2, 99 | GUATEMALA,Quetzal,GTQ,320,2, 100 | GUERNSEY,Pound Sterling,GBP,826,2, 101 | GUINEA,Guinea Franc,GNF,324,0, 102 | GUINEA-BISSAU,CFA Franc BCEAO,XOF,952,0, 103 | GUYANA,Guyana Dollar,GYD,328,2, 104 | HAITI,Gourde,HTG,332,2, 105 | HAITI,US Dollar,USD,840,2, 106 | HEARD ISLAND AND McDONALD ISLANDS,Australian Dollar,AUD,036,2, 107 | HOLY SEE (THE),Euro,EUR,978,2, 108 | HONDURAS,Lempira,HNL,340,2, 109 | HONG KONG,Hong Kong Dollar,HKD,344,2, 110 | HUNGARY,Forint,HUF,348,2, 111 | ICELAND,Iceland Krona,ISK,352,0, 112 | INDIA,Indian Rupee,INR,356,2, 113 | INDONESIA,Rupiah,IDR,360,2, 114 | INTERNATIONAL MONETARY FUND (IMF) ,SDR (Special Drawing Right),XDR,960,-, 115 | IRAN (ISLAMIC REPUBLIC OF),Iranian Rial,IRR,364,2, 116 | IRAQ,Iraqi Dinar,IQD,368,3, 117 | IRELAND,Euro,EUR,978,2, 118 | ISLE OF MAN,Pound Sterling,GBP,826,2, 119 | ISRAEL,New Israeli Sheqel,ILS,376,2, 120 | ITALY,Euro,EUR,978,2, 121 | JAMAICA,Jamaican Dollar,JMD,388,2, 122 | JAPAN,Yen,JPY,392,0, 123 | JERSEY,Pound Sterling,GBP,826,2, 124 | JORDAN,Jordanian Dinar,JOD,400,3, 125 | KAZAKHSTAN,Tenge,KZT,398,2, 126 | KENYA,Kenyan Shilling,KES,404,2, 127 | KIRIBATI,Australian Dollar,AUD,036,2, 128 | KOREA (THE DEMOCRATIC PEOPLE’S REPUBLIC OF),North Korean Won,KPW,408,2, 129 | KOREA (THE REPUBLIC OF),Won,KRW,410,0, 130 | KUWAIT,Kuwaiti Dinar,KWD,414,3, 131 | KYRGYZSTAN,Som,KGS,417,2, 132 | LAO PEOPLE’S DEMOCRATIC REPUBLIC (THE),Kip,LAK,418,2, 133 | LATVIA,Euro,EUR,978,2, 134 | LEBANON,Lebanese Pound,LBP,422,2, 135 | LESOTHO,Loti,LSL,426,2, 136 | LESOTHO,Rand,ZAR,710,2, 137 | LIBERIA,Liberian Dollar,LRD,430,2, 138 | LIBYA,Libyan Dinar,LYD,434,3, 139 | LIECHTENSTEIN,Swiss Franc,CHF,756,2, 140 | LITHUANIA,Euro,EUR,978,2, 141 | LUXEMBOURG,Euro,EUR,978,2, 142 | MACAO,Pataca,MOP,446,2, 143 | MACEDONIA (THE FORMER YUGOSLAV REPUBLIC OF),Denar,MKD,807,2, 144 | MADAGASCAR,Malagasy Ariary,MGA,969,2, 145 | MALAWI,Malawi Kwacha,MWK,454,2, 146 | MALAYSIA,Malaysian Ringgit,MYR,458,2, 147 | MALDIVES,Rufiyaa,MVR,462,2, 148 | MALI,CFA Franc BCEAO,XOF,952,0, 149 | MALTA,Euro,EUR,978,2, 150 | MARSHALL ISLANDS (THE),US Dollar,USD,840,2, 151 | MARTINIQUE,Euro,EUR,978,2, 152 | MAURITANIA,Ouguiya,MRO,478,2, 153 | MAURITIUS,Mauritius Rupee,MUR,480,2, 154 | MAYOTTE,Euro,EUR,978,2, 155 | MEMBER COUNTRIES OF THE AFRICAN DEVELOPMENT BANK GROUP,ADB Unit of Account,XUA,965,-, 156 | MEXICO,Mexican Peso,MXN,484,2, 157 | MEXICO,Mexican Unidad de Inversion (UDI),MXV,979,2, 158 | MICRONESIA (FEDERATED STATES OF),US Dollar,USD,840,2, 159 | MOLDOVA (THE REPUBLIC OF),Moldovan Leu,MDL,498,2, 160 | MONACO,Euro,EUR,978,2, 161 | MONGOLIA,Tugrik,MNT,496,2, 162 | MONTENEGRO,Euro,EUR,978,2, 163 | MONTSERRAT,East Caribbean Dollar,XCD,951,2, 164 | MOROCCO,Moroccan Dirham,MAD,504,2, 165 | MOZAMBIQUE,Mozambique Metical,MZN,943,2, 166 | MYANMAR,Kyat,MMK,104,2, 167 | NAMIBIA,Namibia Dollar,NAD,516,2, 168 | NAMIBIA,Rand,ZAR,710,2, 169 | NAURU,Australian Dollar,AUD,036,2, 170 | NEPAL,Nepalese Rupee,NPR,524,2, 171 | NETHERLANDS (THE),Euro,EUR,978,2, 172 | NEW CALEDONIA,CFP Franc,XPF,953,0, 173 | NEW ZEALAND,New Zealand Dollar,NZD,554,2, 174 | NICARAGUA,Cordoba Oro,NIO,558,2, 175 | NIGER (THE),CFA Franc BCEAO,XOF,952,0, 176 | NIGERIA,Naira,NGN,566,2, 177 | NIUE,New Zealand Dollar,NZD,554,2, 178 | NORFOLK ISLAND,Australian Dollar,AUD,036,2, 179 | NORTHERN MARIANA ISLANDS (THE),US Dollar,USD,840,2, 180 | NORWAY,Norwegian Krone,NOK,578,2, 181 | OMAN,Rial Omani,OMR,512,3, 182 | PAKISTAN,Pakistan Rupee,PKR,586,2, 183 | PALAU,US Dollar,USD,840,2, 184 | "PALESTINE, STATE OF",No universal currency,,,, 185 | PANAMA,Balboa,PAB,590,2, 186 | PANAMA,US Dollar,USD,840,2, 187 | PAPUA NEW GUINEA,Kina,PGK,598,2, 188 | PARAGUAY,Guarani,PYG,600,0, 189 | PERU,Sol,PEN,604,2, 190 | PHILIPPINES (THE),Philippine Peso,PHP,608,2, 191 | PITCAIRN,New Zealand Dollar,NZD,554,2, 192 | POLAND,Zloty,PLN,985,2, 193 | PORTUGAL,Euro,EUR,978,2, 194 | PUERTO RICO,US Dollar,USD,840,2, 195 | QATAR,Qatari Rial,QAR,634,2, 196 | RÉUNION,Euro,EUR,978,2, 197 | ROMANIA,Romanian Leu,RON,946,2, 198 | RUSSIAN FEDERATION (THE),Russian Ruble,RUB,643,2, 199 | RWANDA,Rwanda Franc,RWF,646,0, 200 | SAINT BARTHÉLEMY,Euro,EUR,978,2, 201 | "SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA",Saint Helena Pound,SHP,654,2, 202 | SAINT KITTS AND NEVIS,East Caribbean Dollar,XCD,951,2, 203 | SAINT LUCIA,East Caribbean Dollar,XCD,951,2, 204 | SAINT MARTIN (FRENCH PART),Euro,EUR,978,2, 205 | SAINT PIERRE AND MIQUELON,Euro,EUR,978,2, 206 | SAINT VINCENT AND THE GRENADINES,East Caribbean Dollar,XCD,951,2, 207 | SAMOA,Tala,WST,882,2, 208 | SAN MARINO,Euro,EUR,978,2, 209 | SAO TOME AND PRINCIPE,Dobra,STD,678,2, 210 | SAUDI ARABIA,Saudi Riyal,SAR,682,2, 211 | SENEGAL,CFA Franc BCEAO,XOF,952,0, 212 | SERBIA,Serbian Dinar,RSD,941,2, 213 | SEYCHELLES,Seychelles Rupee,SCR,690,2, 214 | SIERRA LEONE,Leone,SLL,694,2, 215 | SINGAPORE,Singapore Dollar,SGD,702,2, 216 | SINT MAARTEN (DUTCH PART),Netherlands Antillean Guilder,ANG,532,2, 217 | "SISTEMA UNITARIO DE COMPENSACION REGIONAL DE PAGOS ""SUCRE""",Sucre,XSU,994,-, 218 | SLOVAKIA,Euro,EUR,978,2, 219 | SLOVENIA,Euro,EUR,978,2, 220 | SOLOMON ISLANDS,Solomon Islands Dollar,SBD,090,2, 221 | SOMALIA,Somali Shilling,SOS,706,2, 222 | SOUTH AFRICA,Rand,ZAR,710,2, 223 | SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS,No universal currency,,,, 224 | SOUTH SUDAN,South Sudanese Pound,SSP,728,2, 225 | SPAIN,Euro,EUR,978,2, 226 | SRI LANKA,Sri Lanka Rupee,LKR,144,2, 227 | SUDAN (THE),Sudanese Pound,SDG,938,2, 228 | SURINAME,Surinam Dollar,SRD,968,2, 229 | SVALBARD AND JAN MAYEN,Norwegian Krone,NOK,578,2, 230 | SWAZILAND,Lilangeni,SZL,748,2, 231 | SWEDEN,Swedish Krona,SEK,752,2, 232 | SWITZERLAND,Swiss Franc,CHF,756,2, 233 | SWITZERLAND,WIR Euro,CHE,947,2, 234 | SWITZERLAND,WIR Franc,CHW,948,2, 235 | SYRIAN ARAB REPUBLIC,Syrian Pound,SYP,760,2, 236 | TAIWAN (PROVINCE OF CHINA),New Taiwan Dollar,TWD,901,2, 237 | TAJIKISTAN,Somoni,TJS,972,2, 238 | "TANZANIA, UNITED REPUBLIC OF",Tanzanian Shilling,TZS,834,2, 239 | THAILAND,Baht,THB,764,2, 240 | TIMOR-LESTE,US Dollar,USD,840,2, 241 | TOGO,CFA Franc BCEAO,XOF,952,0, 242 | TOKELAU,New Zealand Dollar,NZD,554,2, 243 | TONGA,Pa’anga,TOP,776,2, 244 | TRINIDAD AND TOBAGO,Trinidad and Tobago Dollar,TTD,780,2, 245 | TUNISIA,Tunisian Dinar,TND,788,3, 246 | TURKEY,Turkish Lira,TRY,949,2, 247 | TURKMENISTAN,Turkmenistan New Manat,TMT,934,2, 248 | TURKS AND CAICOS ISLANDS (THE),US Dollar,USD,840,2, 249 | TUVALU,Australian Dollar,AUD,036,2, 250 | UGANDA,Uganda Shilling,UGX,800,0, 251 | UKRAINE,Hryvnia,UAH,980,2, 252 | UNITED ARAB EMIRATES (THE),UAE Dirham,AED,784,2, 253 | UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (THE),Pound Sterling,GBP,826,2, 254 | UNITED STATES MINOR OUTLYING ISLANDS (THE),US Dollar,USD,840,2, 255 | UNITED STATES OF AMERICA (THE),US Dollar,USD,840,2, 256 | UNITED STATES OF AMERICA (THE),US Dollar (Next day),USN,997,2, 257 | URUGUAY,Peso Uruguayo,UYU,858,2, 258 | URUGUAY,Uruguay Peso en Unidades Indexadas (URUIURUI),UYI,940,0, 259 | UZBEKISTAN,Uzbekistan Sum,UZS,860,2, 260 | VANUATU,Vatu,VUV,548,0, 261 | VENEZUELA (BOLIVARIAN REPUBLIC OF),Bolívar,VEF,937,2, 262 | VIET NAM,Dong,VND,704,0, 263 | VIRGIN ISLANDS (BRITISH),US Dollar,USD,840,2, 264 | VIRGIN ISLANDS (U.S.),US Dollar,USD,840,2, 265 | WALLIS AND FUTUNA,CFP Franc,XPF,953,0, 266 | WESTERN SAHARA,Moroccan Dirham,MAD,504,2, 267 | YEMEN,Yemeni Rial,YER,886,2, 268 | ZAMBIA,Zambian Kwacha,ZMW,967,2, 269 | ZIMBABWE,Zimbabwe Dollar,ZWL,932,2, 270 | ZZ01_Bond Markets Unit European_EURCO,Bond Markets Unit European Composite Unit (EURCO),XBA,955,-, 271 | ZZ02_Bond Markets Unit European_EMU-6,Bond Markets Unit European Monetary Unit (E.M.U.-6),XBB,956,-, 272 | ZZ03_Bond Markets Unit European_EUA-9,Bond Markets Unit European Unit of Account 9 (E.U.A.-9),XBC,957,-, 273 | ZZ04_Bond Markets Unit European_EUA-17,Bond Markets Unit European Unit of Account 17 (E.U.A.-17),XBD,958,-, 274 | ZZ06_Testing_Code,Codes specifically reserved for testing purposes,XTS,963,-, 275 | ZZ07_No_Currency,The codes assigned for transactions where no currency is involved,XXX,999,-, 276 | ZZ08_Gold,Gold,XAU,959,-, 277 | ZZ09_Palladium,Palladium,XPD,964,-, 278 | ZZ10_Platinum,Platinum,XPT,962,-, 279 | ZZ11_Silver,Silver,XAG,961,-, 280 | AFGHANISTAN,Afghani,AFA,004,,2003-01 281 | ÅLAND ISLANDS,Markka,FIM,246,,2002-03 282 | ALBANIA,Old Lek,ALK,,,1989-12 283 | ANDORRA,Andorran Peseta,ADP,020,,2003-07 284 | ANDORRA,Spanish Peseta,ESP,724,,2002-03 285 | ANDORRA,French Franc,FRF,250,,2002-03 286 | ANGOLA,Kwanza,AOK,,,1991-03 287 | ANGOLA,New Kwanza,AON,024,,2000-02 288 | ANGOLA,Kwanza Reajustado,AOR,982,,2000-02 289 | ARGENTINA,Austral,ARA,032,,1992-01 290 | ARGENTINA,Peso Argentino,ARP,032,,1985-07 291 | ARGENTINA,Peso,ARY,,,1989 to 1990 292 | ARMENIA,Russian Ruble,RUR,810,,1994-08 293 | AUSTRIA,Schilling,ATS,040,,2002-03 294 | AZERBAIJAN,Azerbaijan Manat,AYM,945,,2005-10 295 | AZERBAIJAN,Azerbaijanian Manat,AZM,031,,2005-12 296 | AZERBAIJAN,Russian Ruble,RUR,810,,1994-08 297 | BELARUS,Belarusian Ruble,BYR,974,,2017-01 298 | BELARUS,Belarusian Ruble,BYB,112,,2001-01 299 | BELARUS,Russian Ruble,RUR,810,,1994-06 300 | BELGIUM,Convertible Franc,BEC,993,,1990-03 301 | BELGIUM,Belgian Franc,BEF,056,,2002-03 302 | BELGIUM,Financial Franc,BEL,992,,1990-03 303 | BOLIVIA,Peso boliviano,BOP,,,1987-02 304 | BOSNIA AND HERZEGOVINA,Dinar,BAD,070,,1998-07 305 | BRAZIL,Cruzeiro,BRB,,,1986-03 306 | BRAZIL,Cruzado,BRC,076,,1989-02 307 | BRAZIL,Cruzeiro,BRE,076,,1993-03 308 | BRAZIL,New Cruzado,BRN,076,,1990-03 309 | BRAZIL,Cruzeiro Real,BRR,987,,1994-07 310 | BULGARIA,Lev A/52,BGJ,,,1989 to 1990 311 | BULGARIA,Lev A/62,BGK,,,1989 to 1990 312 | BULGARIA,Lev,BGL,100,,2003-11 313 | BURMA ,-,BUK,,,1990-02 314 | CHINA,Peoples Bank Dollar,CNX,,,1989-12 315 | CROATIA,Croatian Dinar,HRD,191,,1995-01 316 | CROATIA,Croatian Kuna,HRK,191,,2015-06 317 | CYPRUS,Cyprus Pound,CYP,196,,2008-01 318 | CZECHOSLOVAKIA,Krona A/53,CSJ,,,1989 to 1990 319 | CZECHOSLOVAKIA,Koruna,CSK,200,,1993-03 320 | ECUADOR,Sucre,ECS,218,,2000-09 321 | ECUADOR,Unidad de Valor Constante (UVC),ECV,983,,2000-09 322 | EQUATORIAL GUINEA,Ekwele,GQE,226,,1986-06 323 | ESTONIA,Kroon,EEK,233,,2011-01 324 | EUROPEAN MONETARY CO-OPERATION FUND (EMCF),European Currency Unit (E.C.U),XEU,954,,1999-01 325 | FINLAND,Markka,FIM,246,,2002-03 326 | FRANCE,French Franc,FRF,250,,2002-03 327 | FRENCH GUIANA,French Franc,FRF,250,,2002-03 328 | FRENCH SOUTHERN TERRITORIES,French Franc,FRF,250,,2002-03 329 | GEORGIA,Georgian Coupon,GEK,268,,1995-10 330 | GEORGIA,Russian Ruble,RUR,810,,1994-04 331 | GERMAN DEMOCRATIC REPUBLIC,Mark der DDR,DDM,278,,1990-07 to 1990-09 332 | GERMANY,Deutsche Mark,DEM,276,,2002-03 333 | GHANA,Cedi,GHC,288,,2008-01 334 | GHANA,Ghana Cedi,GHP,939,,2007-06 335 | GREECE,Drachma,GRD,300,,2002-03 336 | GUADELOUPE,French Franc,FRF,250,,2002-03 337 | GUINEA,Syli,GNE,,,1989-12 338 | GUINEA,Syli,GNS,,,1986-02 339 | GUINEA-BISSAU,Guinea Escudo,GWE,,,1978 to 1981 340 | GUINEA-BISSAU,Guinea-Bissau Peso,GWP,624,,1997-05 341 | HOLY SEE (VATICAN CITY STATE),Italian Lira,ITL,380,,2002-03 342 | ICELAND,Old Krona,ISJ,,,1989 to 1990 343 | IRELAND,Irish Pound,IEP,372,,2002-03 344 | ISRAEL,Pound,ILP,,,1978 to 1981 345 | ISRAEL,Old Shekel,ILR,,,1989 to 1990 346 | ITALY,Italian Lira,ITL,380,,2002-03 347 | KAZAKHSTAN,Russian Ruble,RUR,810,,1994-05 348 | KYRGYZSTAN,Russian Ruble,RUR,810,,1993-01 349 | LAO,Kip Pot Pol,LAJ,,,1989-12 350 | LATVIA,Latvian Lats,LVL,428,,2014-01 351 | LATVIA,Latvian Ruble,LVR,428,,1994-12 352 | LESOTHO,Maloti,LSM,,,1985-05 353 | LESOTHO,Financial Rand,ZAL,991,,1995-03 354 | LITHUANIA,Lithuanian Litas,LTL,440,,2014-12 355 | LITHUANIA,Talonas,LTT,440,,1993-07 356 | LUXEMBOURG,Luxembourg Convertible Franc,LUC,989,,1990-03 357 | LUXEMBOURG,Luxembourg Franc,LUF,442,,2002-03 358 | LUXEMBOURG,Luxembourg Financial Franc,LUL,988,,1990-03 359 | MADAGASCAR,Malagasy Franc,MGF,450,,2004-12 360 | MALAWI,Kwacha,MWK,454,,2016-02 361 | MALDIVES,Maldive Rupee,MVQ,,,1989-12 362 | MALI,Mali Franc,MLF,466,,1984-11 363 | MALTA,Maltese Lira,MTL,470,,2008-01 364 | MALTA,Maltese Pound,MTP,,,1983-06 365 | MARTINIQUE,French Franc,FRF,250,,2002-03 366 | MAYOTTE,French Franc,FRF,250,,2002-03 367 | MEXICO,Mexican Peso,MXP,,,1993-01 368 | "MOLDOVA, REPUBLIC OF",Russian Ruble,RUR,810,,1993-12 369 | MONACO,French Franc,FRF,250,,2002-03 370 | MOZAMBIQUE,Mozambique Escudo,MZE,,,1978 to 1981 371 | MOZAMBIQUE,Mozambique Metical,MZM,508,,2006-06 372 | NETHERLANDS,Netherlands Guilder,NLG,528,,2002-03 373 | NETHERLANDS ANTILLES,Netherlands Antillean Guilder,ANG,532,,2010-10 374 | NICARAGUA,Cordoba,NIC,,,1990-10 375 | PERU,Nuevo Sol ,PEN,604,,2015-12 376 | PERU,Sol,PEH,,,1989 to 1990 377 | PERU,Inti,PEI,604,,1991-07 378 | PERU,Sol,PES,604,,1986-02 379 | POLAND,Zloty,PLZ,616,,1997-01 380 | PORTUGAL,Portuguese Escudo,PTE,620,,2002-03 381 | RÉUNION,French Franc,FRF,250,,2002-03 382 | ROMANIA,Leu A/52,ROK,,,1989 to 1990 383 | ROMANIA,New Romanian Leu ,RON,946,,2015-06 384 | ROMANIA,Old Leu,ROL,642,,2005-06 385 | RUSSIAN FEDERATION,Russian Ruble,RUR,810,,2004-01 386 | SAINT MARTIN,French Franc,FRF,250,,1999-01 387 | SAINT PIERRE AND MIQUELON,French Franc,FRF,250,,2002-03 388 | SAINT-BARTHÉLEMY,French Franc,FRF,250,,1999-01 389 | SAN MARINO,Italian Lira,ITL,380,,2002-03 390 | SERBIA AND MONTENEGRO,Serbian Dinar,CSD,891,,2006-10 391 | SERBIA AND MONTENEGRO,Euro,EUR,978,,2006-10 392 | SLOVAKIA,Slovak Koruna,SKK,703,,2009-01 393 | SLOVENIA,Tolar,SIT,705,,2007-01 394 | SOUTH AFRICA,Financial Rand,ZAL,991,,1995-03 395 | SOUTH SUDAN,Sudanese Pound,SDG,938,,2012-09 396 | SOUTHERN RHODESIA ,Rhodesian Dollar,RHD,,,1978 to 1981 397 | SPAIN,Spanish Peseta,ESA,996,,1978 to 1981 398 | SPAIN,"""A"" Account (convertible Peseta Account)",ESB,995,,1994-12 399 | SPAIN,Spanish Peseta,ESP,724,,2002-03 400 | SUDAN,Sudanese Dinar,SDD,736,,2007-07 401 | SUDAN,Sudanese Pound,SDP,,,1998-06 402 | SURINAME,Surinam Guilder,SRG,740,,2003-12 403 | SWITZERLAND,WIR Franc (for electronic),CHC,948,,2004-11 404 | TAJIKISTAN,Russian Ruble,RUR,810,,1995-05 405 | TAJIKISTAN,Tajik Ruble,TJR,762,,2001-04 406 | TIMOR-LESTE,Rupiah,IDR,360,,2002-07 407 | TIMOR-LESTE,Timor Escudo,TPE,626,,2002-11 408 | TURKEY,Old Turkish Lira,TRL,792,,2005-12 409 | TURKEY,New Turkish Lira,TRY,949,,2009-01 410 | TURKMENISTAN,Russian Ruble,RUR,810,,1993-10 411 | TURKMENISTAN,Turkmenistan Manat,TMM,795,,2009-01 412 | UGANDA,Uganda Shilling,UGS,,,1987-05 413 | UGANDA,Old Shilling,UGW,,,1989 to 1990 414 | UKRAINE,Karbovanet,UAK,804,,1996-09 415 | UNION OF SOVIET SOCIALIST REPUBLICS,Rouble,SUR,,,1990-12 416 | UNITED STATES,US Dollar (Same day),USS,998,,2014-03 417 | URUGUAY,Old Uruguay Peso,UYN,,,1989-12 418 | URUGUAY,Uruguayan Peso,UYP,,,1993-03 419 | UZBEKISTAN,Russian Ruble,RUR,810,,1994-07 420 | VENEZUELA,Bolivar,VEB,862,,2008-01 421 | VENEZUELA,Bolivar Fuerte,VEF,937,,2011-12 422 | VENEZUELA (BOLIVARIAN REPUBLIC OF),Bolivar,VEF,937,,2016-02 423 | VIETNAM,Old Dong,VNC,,,1989-1990 424 | "YEMEN, DEMOCRATIC",Yemeni Dinar,YDD,720,,1991-09 425 | YUGOSLAVIA,New Yugoslavian Dinar,YUD,,,1990-01 426 | YUGOSLAVIA,New Dinar,YUM,891,,2003-07 427 | YUGOSLAVIA,Yugoslavian Dinar,YUN,890,,1995-11 428 | ZAIRE,New Zaire,ZRN,180,,1999-06 429 | ZAIRE,Zaire,ZRZ,180,,1994-02 430 | ZAMBIA,Zambian Kwacha,ZMK,894,,2012-12 431 | ZIMBABWE,Rhodesian Dollar,ZWC,,,1989-12 432 | ZIMBABWE,Zimbabwe Dollar (old),ZWD,716,,2006-08 433 | ZIMBABWE,Zimbabwe Dollar,ZWD,716,,2008-08 434 | ZIMBABWE,Zimbabwe Dollar (new),ZWN,942,,2006-09 435 | ZIMBABWE,Zimbabwe Dollar,ZWR,935,,2009-06 436 | ZZ01_Gold-Franc,Gold-Franc,XFO,,,2006-10 437 | ZZ02_RINET Funds Code,RINET Funds Code,XRE,,,1999-11 438 | ZZ05_UIC-Franc,UIC-Franc,XFU,,,2013-11 439 | -------------------------------------------------------------------------------- /resources/data/packages/currency-codes/datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "currency-codes", 3 | "title": "ISO 4217 Currency Codes", 4 | "licenses": [ 5 | { 6 | "id": "odc-pddl", 7 | "label": "Open Data Commons Public Domain Dedication and Licence (PDDL)", 8 | "url": "http://opendatacommons.org/licenses/pddl/" 9 | } 10 | ], 11 | "keywords": [ "iso", "iso-4217", "currency", "codes" ], 12 | "homepage": "http://www.iso.org/iso/currency_codes", 13 | "sources": [{ 14 | "name": "SIX Interbank Clearing Ltd (on behalf of ISO)", 15 | "email": "office@currency-iso.org" 16 | }], 17 | "maintainer": [{ 18 | "name": "Rufus Pollock", 19 | "email": "rufus.pollock@okfn.org" 20 | }], 21 | "contributors": [ 22 | { 23 | "name": "Rufus Pollock", 24 | "email": "rufus.pollock@okfn.org" 25 | }, 26 | { 27 | "name": "Kristofer D. Kusano", 28 | "email": "kdkusano@gmail.com" 29 | } 30 | ], 31 | "resources": [ 32 | { 33 | "path": "data/codes-all.csv", 34 | "mimetype": "text/csv", 35 | "size": "16863", 36 | "schema": { 37 | "fields": [ 38 | { 39 | "name": "Entity", 40 | "type": "string", 41 | "description": "Country or region name" 42 | }, 43 | { 44 | "name": "Currency", 45 | "type": "string", 46 | "description": "Name of the currency" 47 | }, 48 | { 49 | "name": "AlphabeticCode", 50 | "title": "Alphabetic Code", 51 | "type": "string", 52 | "description": "3 digit alphabetic code for the currency" 53 | }, 54 | { 55 | "name": "NumericCode", 56 | "title": "Numeric Code", 57 | "type": "number", 58 | "description": "3 digit numeric code" 59 | }, 60 | { 61 | "name": "MinorUnit", 62 | "title": "Minor Unit", 63 | "type": "string", 64 | "description": "" 65 | }, 66 | { 67 | "name": "WithdrawalDate", 68 | "title": "Withdrawal Date", 69 | "type": "string", 70 | "description": "Date currency withdrawn (values can be ranges or months" 71 | } 72 | ] 73 | } 74 | } 75 | ] 76 | } 77 | -------------------------------------------------------------------------------- /resources/data/packages/s-and-p-500-companies/data/constituents-financials.csv: -------------------------------------------------------------------------------- 1 | Symbol,Name,Sector,Price,Dividend Yield,Price/Earnings,Earnings/Share,Book Value,52 week low,52 week high,Market Cap,EBITDA,Price/Sales,Price/Book,SEC Filings 2 | MMM,3M Company,Industrials,189.09,2.48,23.17,8.16,17.26,158.28,190.54,112.74,8.70,3.74,10.95,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MMM 3 | ABT,Abbott Laboratories,Health Care,45.00,2.34,48.03,0.94,13.94,36.76,45.83,77.76,4.59,3.74,3.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ABT 4 | ABBV,AbbVie,Health Care,63.69,4.04,17.55,3.63,2.91,54.41,68.12,101.52,10.95,3.95,21.83,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ABBV 5 | ACN,Accenture plc,Information Technology,124.14,1.96,18.37,6.76,11.95,102.10,125.72,77.29,5.66,2.30,10.32,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ACN 6 | ATVI,Activision Blizzard,Information Technology,48.06,0.64,37.55,1.28,12.23,30.37,48.36,36.13,2.14,5.44,3.91,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ATVI 7 | AYI,Acuity Brands Inc,Industrials,205.41,0.25,29.68,6.92,39.50,193.06,280.89,9.00,0.5862,2.64,5.19,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AYI 8 | ADBE,Adobe Systems Inc,Information Technology,119.98,0.00,51.72,2.32,15.02,83.25,120.69,59.28,1.82,10.14,8.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ADBE 9 | AAP,Advance Auto Parts,Consumer Discretionary,151.99,0.15,24.51,6.20,39.66,132.98,177.83,11.18,1.12,1.19,3.89,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AAP 10 | AES,AES Corp,Utilities,11.33,4.16,,-1.71,4.24,10.27,13.32,7.47,3.42,0.56,2.72,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AES 11 | AET,Aetna Inc,Health Care,130.59,1.53,20.37,6.41,50.84,104.59,136.50,45.93,6.20,0.73,2.58,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AET 12 | AMG,Affiliated Managers Group Inc,Financials,166.56,0.47,19.44,8.57,63.84,130.48,179.85,9.44,0.835,4.32,2.62,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AMG 13 | AFL,AFLAC Inc,Financials,71.95,2.38,11.21,6.42,50.47,59.66,74.50,28.88,4.78,1.27,1.43,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AFL 14 | A,Agilent Technologies Inc,Health Care,51.21,1.02,32.85,1.56,13.35,37.62,52.26,16.49,0.942,3.89,3.84,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=A 15 | APD,Air Products & Chemicals Inc,Materials,139.64,2.72,53.77,2.60,32.91,123.05,150.45,30.38,3.13,3.18,4.23,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=APD 16 | AKAM,Akamai Technologies Inc,Information Technology,63.30,,35.36,1.79,18.61,47.80,71.64,10.96,0.70798,4.67,3.39,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AKAM 17 | ALK,Alaska Air Group Inc,Industrials,95.12,1.21,14.54,6.54,23.77,54.51,101.43,11.74,1.82,2.01,4.07,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ALK 18 | ALB,Albemarle Corp,Materials,103.79,1.22,18.26,5.68,33.73,58.60,105.20,11.68,0.70201,4.29,3.03,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ALB 19 | ALXN,Alexion Pharmaceuticals,Health Care,129.18,,73.40,1.76,38.81,109.12,162.00,29.02,1.17,9.71,3.44,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ALXN 20 | ALLE,Allegion,Industrials,72.86,0.87,30.87,2.36,1.19,61.47,75.00,6.96,0.4789,3.12,61.57,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ALLE 21 | AGN,"Allergan, Plc",Health Care,239.60,1.14,6.28,38.18,212.79,184.50,299.11,80.32,6.10,5.58,1.14,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AGN 22 | ADS,Alliance Data Systems,Information Technology,245.05,0.85,33.39,7.34,28.89,185.02,249.22,13.70,1.46,1.92,8.50,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ADS 23 | LNT,Alliant Energy Corp,Utilities,39.28,3.22,24.01,1.64,16.96,34.04,40.99,8.94,1.03,2.69,2.31,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LNT 24 | ALL,Allstate Corp,Financials,81.46,1.66,17.44,4.67,51.44,63.73,83.05,29.74,3.46,0.81,1.58,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ALL 25 | GOOGL,Alphabet Inc Class A,Information Technology,851.15,,30.53,27.88,201.12,672.66,867.00,588.50,29.86,6.49,4.21,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GOOGL 26 | GOOG,Alphabet Inc Class C,Information Technology,831.91,,29.84,27.88,201.12,663.28,841.95,575.20,29.86,6.34,4.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GOOG 27 | MO,Altria Group Inc,Consumer Staples,76.10,3.23,10.45,7.28,6.58,59.48,76.30,147.64,9.50,7.58,11.48,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MO 28 | AMZN,Amazon.com Inc,Consumer Discretionary,846.02,,172.66,4.90,40.43,538.58,860.86,403.70,11.67,2.97,20.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AMZN 29 | AEE,Ameren Corp,Utilities,54.82,3.21,20.46,2.68,29.28,46.29,55.51,13.30,2.30,2.27,1.87,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AEE 30 | AAL,American Airlines Group,Industrials,44.84,0.85,9.32,4.81,7.46,24.85,50.64,22.61,7.83,0.57,6.07,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AAL 31 | AEP,American Electric Power,Utilities,66.24,3.55,53.29,1.24,35.38,57.89,71.32,32.57,5.29,1.99,1.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AEP 32 | AXP,American Express Co,Financials,79.58,1.60,14.08,5.65,22.68,57.15,82.00,71.72,0.00,2.40,3.51,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AXP 33 | AIG,"American International Group, Inc.",Financials,63.45,1.99,,-0.78,76.66,48.41,67.47,62.15,4.34,1.22,0.83,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AIG 34 | AMT,American Tower Corp A,Real Estate,114.70,2.01,57.93,1.98,15.84,93.69,118.26,49.00,3.46,8.47,7.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AMT 35 | AWK,American Water Works Company Inc,Utilities,76.89,1.94,29.35,2.62,29.30,66.63,85.24,13.70,1.62,4.17,2.64,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AWK 36 | AMP,Ameriprise Financial,Financials,132.18,2.25,16.92,7.81,40.66,84.92,135.20,20.36,2.77,1.74,3.26,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AMP 37 | ABC,AmerisourceBergen Corp,Health Care,88.48,1.58,14.78,5.99,9.75,68.38,94.50,19.22,2.16,0.13,9.23,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ABC 38 | AME,AMETEK Inc,Industrials,54.51,0.66,24.89,2.19,14.20,43.28,55.48,12.51,1.01,3.26,3.85,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AME 39 | AMGN,Amgen Inc,Health Care,177.38,2.55,17.32,10.24,40.47,133.64,180.53,130.63,12.00,5.75,4.43,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AMGN 40 | APH,Amphenol Corp,Information Technology,70.27,0.91,26.92,2.61,11.92,54.87,71.00,21.62,1.46,3.43,5.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=APH 41 | APC,Anadarko Petroleum Corp,Energy,63.16,0.32,,-5.90,22.16,40.02,73.33,35.31,2.97,4.19,2.85,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=APC 42 | ADI,"Analog Devices, Inc.",Information Technology,83.41,2.16,28.45,2.93,17.16,52.17,84.24,25.79,1.37,7.13,4.89,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ADI 43 | ANTM,Anthem Inc.,Health Care,166.01,1.57,18.02,9.21,95.17,114.85,169.20,43.89,5.78,0.52,1.74,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ANTM 44 | AON,Aon plc,Financials,115.54,1.13,22.39,5.16,20.90,97.62,117.89,30.34,2.39,2.62,5.54,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AON 45 | APA,Apache Corporation,Energy,51.28,1.92,,-3.71,16.44,44.75,69.00,19.47,2.40,3.78,3.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=APA 46 | AIV,Apartment Investment & Mgmt,Real Estate,45.43,3.17,17.01,2.67,10.64,38.05,47.91,7.13,0.57096,7.29,4.25,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AIV 47 | AAPL,Apple Inc.,Information Technology,139.52,1.63,16.75,8.33,25.19,89.47,140.28,732.00,69.75,3.35,5.53,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AAPL 48 | AMAT,Applied Materials Inc,Information Technology,36.97,1.08,19.02,1.94,7.12,18.94,37.26,39.92,2.99,3.36,5.18,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AMAT 49 | ADM,Archer-Daniels-Midland Co,Consumer Staples,44.46,2.83,20.58,2.16,29.97,34.55,47.88,25.39,2.54,0.41,1.49,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ADM 50 | ARNC,Arconic Inc,Industrials,26.98,0.85,,-2.31,11.53,16.75,30.69,11.89,2.29,0.98,2.40,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ARNC 51 | AJG,Arthur J. Gallagher & Co.,Financials,56.32,2.74,24.28,2.32,20.17,40.76,57.82,10.06,0.8687999999999999,1.82,2.80,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AJG 52 | AIZ,Assurant Inc,Financials,99.60,2.12,10.91,9.13,73.26,75.20,101.32,5.54,1.04,0.74,1.36,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AIZ 53 | T,AT&T Inc,Telecommunications Services,41.88,4.67,19.95,2.10,20.06,36.10,43.89,257.21,49.74,1.57,2.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=T 54 | ADSK,Autodesk Inc,Information Technology,82.07,0.00,,-2.60,3.33,49.82,89.18,18.15,-0.2799,9.03,24.90,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ADSK 55 | ADP,Automatic Data Processing,Information Technology,104.27,2.18,28.01,3.72,8.50,84.36,105.00,46.81,2.73,3.91,12.35,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ADP 56 | AN,AutoNation Inc,Consumer Discretionary,45.26,,10.91,4.15,22.95,39.28,54.15,4.57,0.9707,0.21,1.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AN 57 | AZO,AutoZone Inc,Consumer Discretionary,712.72,,16.72,42.64,-64.18,711.00,819.54,20.29,2.39,1.92,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AZO 58 | AVB,"AvalonBay Communities, Inc.",Real Estate,183.05,3.14,24.34,7.52,74.07,158.32,192.29,25.14,1.32,12.24,2.47,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AVB 59 | AVY,Avery Dennison Corp,Materials,80.40,2.01,22.71,3.54,10.48,68.06,82.11,7.09,0.7403,1.17,7.74,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AVY 60 | BHI,Baker Hughes Inc,Energy,59.41,1.14,,-6.31,29.76,38.16,68.59,25.27,-0.121,2.59,2.02,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BHI 61 | BLL,Ball Corp,Materials,72.28,0.70,52.00,1.39,20.04,66.41,82.24,12.63,1.28,1.39,3.63,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BLL 62 | BAC,Bank of America Corp,Financials,25.21,1.18,16.84,1.50,24.04,12.05,25.80,265.12,0.00,3.31,1.05,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BAC 63 | BCR,Bard (C.R.) Inc.,Health Care,245.69,0.42,34.95,7.03,22.98,191.79,248.19,17.70,1.15,4.79,10.75,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BCR 64 | BAX,Baxter International Inc.,Health Care,51.04,1.02,5.67,9.01,15.36,38.99,51.40,27.57,1.97,2.69,3.30,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BAX 65 | BBT,BB&T Corporation,Financials,47.93,2.47,17.30,2.77,33.14,32.22,49.88,38.75,0.00,3.81,1.46,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BBT 66 | BDX,Becton Dickinson,Health Care,183.94,1.58,30.62,6.01,35.63,145.78,186.11,39.15,3.26,3.16,5.18,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BDX 67 | BBBY,Bed Bath & Beyond,Consumer Discretionary,39.01,1.24,8.28,4.71,17.82,38.58,52.33,5.73,1.50,0.48,2.23,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BBBY 68 | BRK.B,Berkshire Hathaway,Financials,,,,,,,,,,,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BRK.B 69 | BBY,Best Buy Co. Inc.,Consumer Discretionary,44.55,2.64,11.71,3.81,15.03,28.76,49.40,13.96,2.60,0.35,2.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BBY 70 | BIIB,BIOGEN IDEC Inc.,Health Care,291.10,,17.19,16.93,56.23,223.02,333.65,62.86,6.37,5.58,5.26,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BIIB 71 | BLK,BlackRock,Financials,385.35,2.56,20.24,19.04,178.38,317.60,399.46,62.86,4.88,5.67,2.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BLK 72 | HRB,Block H&R,Financials,20.84,4.19,13.38,1.56,-2.64,19.18,29.81,4.32,0.82645,1.43,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HRB 73 | BA,Boeing Company,Industrials,182.02,3.12,23.92,7.61,1.32,121.43,185.71,111.48,8.68,1.17,136.65,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BA 74 | BWA,BorgWarner,Consumer Discretionary,41.69,1.30,75.80,0.55,15.16,27.52,43.43,8.87,0.8076,0.98,2.76,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BWA 75 | BXP,Boston Properties,Real Estate,135.66,2.21,41.61,3.26,36.32,113.69,144.02,20.87,1.53,8.14,3.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BXP 76 | BSX,Boston Scientific,Health Care,24.48,,97.92,0.25,4.94,17.13,25.65,33.38,2.20,4.03,5.01,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BSX 77 | BMY,Bristol-Myers Squibb,Health Care,56.33,2.72,21.26,2.65,9.68,46.01,77.12,94.22,6.70,4.91,5.89,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BMY 78 | AVGO,Broadcom,Information Technology,219.25,1.87,,-4.73,47.70,139.18,224.98,87.48,5.95,5.57,4.57,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=AVGO 79 | BF.B,Brown-Forman Corp.,Consumer Staples,,,,2.96,,,,,,,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BF.B 80 | CHRW,C. H. Robinson Worldwide,Industrials,78.94,2.26,21.99,3.59,8.90,65.57,81.16,11.15,0.9007999999999999,0.85,8.90,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CHRW 81 | CA,"CA, Inc.",Information Technology,31.97,3.14,16.95,1.89,13.49,29.12,34.99,13.36,1.28,3.40,2.43,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CA 82 | COG,Cabot Oil & Gas,Energy,22.93,0.36,,-0.91,5.52,19.77,26.74,10.67,0.46353,9.01,4.19,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COG 83 | CPB,Campbell Soup,Consumer Staples,59.09,2.35,36.82,1.61,4.83,52.58,67.89,18.08,1.57,2.29,12.27,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CPB 84 | COF,Capital One Financial,Financials,92.82,1.70,13.47,6.89,98.96,58.03,96.92,44.57,0.00,2.35,0.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COF 85 | CAH,Cardinal Health Inc.,Health Care,81.21,2.17,19.55,4.15,17.91,62.70,87.85,25.62,3.07,0.20,4.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CAH 86 | KMX,Carmax Inc,Consumer Discretionary,63.81,,20.22,3.16,16.09,45.06,69.11,11.94,1.21,0.73,3.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KMX 87 | CCL,Carnival Corp.,Consumer Discretionary,55.53,2.51,14.93,3.72,31.12,42.94,57.79,40.31,4.76,2.47,1.79,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CCL 88 | CAT,Caterpillar Inc.,Industrials,95.93,3.24,,-0.12,22.40,69.04,99.46,56.26,4.92,1.46,4.27,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CAT 89 | CBOE,CBOE Holdings,Financials,77.97,1.28,34.35,2.27,3.91,61.22,81.36,6.34,0.35725999999999997,9.65,19.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CBOE 90 | CBG,CBRE Group,Real Estate,36.16,,21.40,1.69,9.07,24.11,36.59,12.02,1.20,0.91,3.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CBG 91 | CBS,CBS Corp.,Consumer Discretionary,67.94,1.06,24.18,2.81,8.95,48.88,68.59,27.82,3.10,2.11,7.59,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CBS 92 | CELG,Celgene Corp.,Health Care,122.08,,49.03,2.49,8.48,94.39,127.00,94.97,4.01,8.56,14.57,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CELG 93 | CNC,Centene Corporation,Health Care,70.56,,20.58,3.43,34.29,50.00,75.57,12.14,1.97,0.32,2.07,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CNC 94 | CNP,CenterPoint Energy,Utilities,28.00,3.84,28.00,1.00,8.03,19.83,28.08,12.06,2.09,1.60,3.48,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CNP 95 | CTL,CenturyLink Inc,Telecommunications Services,22.50,9.20,19.40,1.16,24.52,22.37,33.45,12.30,6.49,0.72,0.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CTL 96 | CERN,Cerner,Health Care,54.97,,29.71,1.85,11.92,47.01,67.50,18.12,1.32,3.86,4.62,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CERN 97 | CF,CF Industries Holdings Inc,Materials,30.20,3.88,,-1.19,14.36,20.77,37.17,7.04,1.24,1.95,2.15,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CF 98 | SCHW,Charles Schwab Corporation,Financials,41.66,0.75,31.80,1.31,10.23,23.83,43.36,55.61,0.00,7.53,4.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SCHW 99 | CHTR,Charter Communications,Consumer Discretionary,323.24,,20.27,15.95,149.27,182.75,341.50,86.92,10.73,3.00,2.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CHTR 100 | CHK,Chesapeake Energy,Energy,5.26,0.00,,-33.88,-3.59,3.53,8.20,4.67,0.215,0.61,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CHK 101 | CVX,Chevron Corp.,Energy,111.81,3.80,,-0.27,76.95,89.47,119.00,211.67,13.36,2.07,1.47,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CVX 102 | CMG,Chipotle Mexican Grill,Consumer Discretionary,404.90,,525.84,0.77,48.67,352.96,521.51,11.65,0.20481,3.03,8.46,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CMG 103 | CB,Chubb Limited,Financials,137.41,1.99,15.49,8.87,103.60,115.50,140.55,64.00,5.69,2.04,1.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CB 104 | CHD,Church & Dwight,Consumer Staples,49.55,1.45,28.31,1.75,7.79,42.56,53.68,12.62,0.8367,3.62,6.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CHD 105 | CI,CIGNA Corp.,Health Care,151.84,0.03,21.12,7.19,53.42,115.03,154.24,39.03,3.85,0.99,2.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CI 106 | XEC,Cimarex Energy,Energy,124.25,0.25,,-4.62,25.27,86.08,146.96,11.60,0.58573,9.31,4.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XEC 107 | CINF,Cincinnati Financial,Financials,73.17,2.70,20.61,3.55,42.95,63.57,79.60,12.05,0.913,2.21,1.70,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CINF 108 | CTAS,Cintas Corporation,Industrials,118.27,0.89,24.65,4.80,19.29,85.86,122.21,12.42,0.9832799999999999,2.45,6.15,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CTAS 109 | CSCO,Cisco Systems,Information Technology,34.20,3.38,17.63,1.94,12.74,25.81,34.53,171.27,14.67,3.53,2.68,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CSCO 110 | C,Citigroup Inc.,Financials,60.50,1.05,12.82,4.72,74.26,38.31,61.94,167.63,0.00,2.65,0.81,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=C 111 | CFG,Citizens Financial Group,Financials,37.97,1.46,19.27,1.97,38.09,18.34,39.75,19.33,0.00,3.99,1.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CFG 112 | CTXS,Citrix Systems,Information Technology,79.90,,23.43,3.41,16.69,59.05,81.10,12.49,1.03,3.64,4.77,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CTXS 113 | CME,CME Group Inc.,Financials,123.56,2.13,27.28,4.53,60.14,89.00,127.60,41.97,2.45,11.72,2.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CME 114 | CMS,CMS Energy,Utilities,44.44,3.00,22.44,1.98,15.23,38.78,46.25,12.42,2.00,1.94,2.91,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CMS 115 | COH,Coach Inc.,Consumer Discretionary,37.82,3.55,20.76,1.82,10.02,34.07,43.71,10.61,0.8989,2.35,3.80,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COH 116 | KO,Coca Cola Company,Consumer Staples,41.99,3.48,28.18,1.49,5.38,39.88,47.13,180.28,11.53,4.33,7.84,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KO 117 | CTSH,Cognizant Technology Solutions,Information Technology,57.84,,22.68,2.55,17.65,45.44,63.23,35.20,2.67,2.65,3.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CTSH 118 | CL,Colgate-Palmolive,Consumer Staples,73.72,2.12,27.10,2.72,-0.28,63.43,75.38,65.08,4.42,4.29,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CL 119 | CMCSA,Comcast Corp.,Consumer Discretionary,37.42,1.69,20.96,1.78,11.38,29.03,38.44,177.45,26.48,2.21,3.29,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CMCSA 120 | CMA,Comerica Inc.,Financials,72.63,1.25,27.10,2.68,44.47,35.58,75.00,12.77,0.00,4.95,1.65,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CMA 121 | CAG,ConAgra Foods Inc.,Consumer Staples,40.75,1.94,28.74,1.42,10.22,33.61,48.86,17.73,1.83,1.60,4.04,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CAG 122 | CXO,Concho Resources,Energy,133.54,,,-10.85,52.61,94.26,147.55,19.35,0.5718099999999999,11.88,2.55,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CXO 123 | COP,ConocoPhillips,Energy,47.72,2.22,,-2.91,28.27,38.19,53.17,58.97,4.86,2.50,1.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COP 124 | ED,Consolidated Edison,Utilities,76.64,3.60,18.60,4.12,46.88,68.76,81.88,23.38,3.69,1.94,1.63,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ED 125 | STZ,Constellation Brands,Consumer Staples,157.21,1.01,24.33,6.46,35.26,139.11,173.55,30.82,2.40,4.27,4.48,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=STZ 126 | GLW,Corning Inc.,Information Technology,27.72,2.22,8.58,3.23,16.84,18.21,28.36,25.73,2.56,2.74,1.65,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GLW 127 | COST,Costco Co.,Consumer Staples,167.00,1.06,30.81,5.42,28.34,138.57,178.71,73.30,5.03,0.60,5.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COST 128 | COTY,"Coty, Inc",Consumer Staples,18.80,2.67,,-0.03,13.11,17.94,31.60,14.05,0.8432999999999999,2.62,1.44,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COTY 129 | CCI,Crown Castle International Corp.,Real Estate,91.50,4.14,96.32,0.95,20.96,79.38,102.82,32.99,2.07,8.46,4.39,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CCI 130 | CSRA,CSRA Inc.,Information Technology,28.50,1.34,24.05,1.18,1.87,21.95,33.54,4.65,0.7455700000000001,0.93,15.37,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CSRA 131 | CSX,CSX Corp.,Industrials,48.44,1.46,26.78,1.81,12.58,24.36,50.31,44.88,4.69,4.17,3.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CSX 132 | CMI,Cummins Inc.,Industrials,152.10,2.70,18.48,8.23,41.04,100.43,154.67,25.48,2.31,1.46,3.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CMI 133 | CVS,CVS Health,Consumer Staples,80.81,2.47,16.46,4.91,34.71,69.30,106.67,85.74,13.05,0.48,2.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CVS 134 | DHI,D. R. Horton,Consumer Discretionary,32.85,1.23,13.20,2.49,18.70,26.69,34.56,12.27,1.52,0.96,1.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DHI 135 | DHR,Danaher Corp.,Health Care,86.07,0.64,23.57,3.65,33.23,75.71,102.79,59.67,4.12,3.54,2.59,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DHR 136 | DRI,Darden Restaurants,Consumer Discretionary,74.51,2.98,21.82,3.41,14.93,59.50,79.43,9.25,0.9302,1.33,5.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DRI 137 | DVA,DaVita Inc.,Health Care,68.13,,15.88,4.29,23.89,54.50,78.77,13.26,2.50,0.92,2.91,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DVA 138 | DE,Deere & Co.,Industrials,110.24,2.17,23.88,4.62,21.44,74.91,112.18,35.09,3.89,1.33,5.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DE 139 | DLPH,Delphi Automotive,Consumer Discretionary,75.97,1.50,16.55,4.59,8.90,58.04,78.12,20.48,2.98,1.23,8.53,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DLPH 140 | DAL,Delta Air Lines,Industrials,47.64,1.62,8.23,5.79,16.88,32.60,52.76,34.68,8.24,0.90,2.89,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DAL 141 | XRAY,Dentsply Sirona,Health Care,62.55,0.55,32.24,1.94,35.26,55.00,65.83,14.37,0.7795,3.85,1.78,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XRAY 142 | DVN,Devon Energy Corp.,Energy,43.56,0.55,,-6.52,11.33,21.15,50.69,22.85,2.32,2.22,3.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DVN 143 | DLR,Digital Realty Trust,Real Estate,107.48,3.43,48.85,2.20,25.68,83.40,113.21,17.12,1.17,7.94,4.19,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DLR 144 | DFS,Discover Financial Services,Financials,70.98,1.68,12.30,5.77,27.68,47.50,74.33,27.37,0.00,3.77,2.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DFS 145 | DISCA,Discovery Communications-A,Consumer Discretionary,27.75,,14.18,1.96,8.83,23.66,29.91,16.24,2.44,2.50,3.15,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DISCA 146 | DISCK,Discovery Communications-C,Consumer Discretionary,27.20,,13.90,1.96,8.83,22.43,29.07,15.92,2.44,2.45,3.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DISCK 147 | DG,Dollar General,Consumer Discretionary,71.36,1.37,16.74,4.26,19.41,66.50,96.88,19.71,2.37,0.94,3.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DG 148 | DLTR,Dollar Tree,Consumer Discretionary,75.22,,19.90,3.78,22.83,72.55,99.93,17.76,2.34,0.87,3.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DLTR 149 | D,Dominion Resources,Utilities,76.12,3.94,22.13,3.44,23.26,68.71,78.97,47.81,5.80,4.08,3.28,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=D 150 | DOV,Dover Corp.,Industrials,79.39,2.19,24.43,3.25,24.45,58.91,82.56,12.35,1.12,1.84,3.29,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DOV 151 | DOW,Dow Chemical,Materials,63.15,2.91,17.94,3.52,21.46,47.51,64.36,76.62,8.69,1.60,2.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DOW 152 | DPS,Dr Pepper Snapple Group,Consumer Staples,94.23,2.44,20.76,4.54,11.65,81.05,98.80,17.25,1.65,2.68,8.10,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DPS 153 | DTE,DTE Energy Co.,Utilities,101.55,3.26,21.02,4.83,50.22,84.77,102.10,18.22,2.24,1.72,2.02,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DTE 154 | DD,Du Pont (E.I.),Materials,79.39,1.91,27.81,2.86,11.31,61.12,80.66,68.64,5.07,2.81,7.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DD 155 | DUK,Duke Energy,Utilities,81.69,4.18,26.18,3.12,58.62,72.34,87.75,57.15,10.03,2.56,1.40,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DUK 156 | DNB,Dun & Bradstreet,Industrials,107.14,1.87,40.45,2.65,-27.23,96.46,141.57,3.94,0.45,2.32,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DNB 157 | ETFC,E*Trade,Financials,35.07,0.00,17.71,1.98,21.41,21.52,38.61,9.63,0.00,4.63,1.64,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ETFC 158 | EMN,Eastman Chemical,Materials,78.92,2.54,13.73,5.75,30.94,62.70,82.10,11.56,2.11,1.29,2.57,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EMN 159 | ETN,Eaton Corporation,Industrials,71.54,3.34,16.99,4.21,33.15,54.30,73.86,32.17,3.19,1.64,2.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ETN 160 | EBAY,eBay Inc.,Information Technology,33.47,,5.27,6.35,9.69,22.30,34.43,36.38,3.01,4.07,3.47,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EBAY 161 | ECL,Ecolab Inc.,Materials,124.72,1.18,30.13,4.14,23.65,102.38,126.17,36.38,2.87,2.77,5.29,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ECL 162 | EIX,Edison Int'l,Utilities,79.25,2.73,19.93,3.98,36.82,67.44,80.61,25.82,3.96,2.18,2.16,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EIX 163 | EW,Edwards Lifesciences,Health Care,90.54,,34.69,2.61,12.38,81.12,121.75,19.24,0.8947,6.45,7.27,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EW 164 | EA,Electronic Arts,Information Technology,88.30,,21.44,4.12,11.56,61.10,88.85,27.22,1.24,5.81,7.54,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EA 165 | EMR,Emerson Electric Company,Industrials,60.22,3.18,24.43,2.46,12.00,48.45,64.36,38.85,3.11,2.70,5.03,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EMR 166 | ETR,Entergy Corp.,Utilities,75.00,4.62,,-3.26,45.12,66.71,82.08,13.45,3.74,1.24,1.66,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ETR 167 | EVHC,Envision Healthcare,Health Care,66.14,,,-0.47,57.91,57.32,83.27,7.69,0.7955,2.13,1.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EVHC 168 | EOG,EOG Resources,Energy,99.53,0.68,,-1.98,24.24,68.74,109.37,57.41,2.68,7.65,4.13,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EOG 169 | EQT,EQT Corporation,Energy,58.79,0.20,,-2.71,33.91,56.78,80.61,10.16,0.71958,5.59,1.77,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EQT 170 | EFX,Equifax Inc.,Industrials,131.37,1.17,32.52,4.04,22.21,105.52,136.97,15.75,1.12,5.03,5.95,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EFX 171 | EQIX,Equinix,Real Estate,375.24,1.93,209.05,1.79,61.14,299.29,391.07,26.88,1.50,7.49,6.18,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EQIX 172 | EQR,Equity Residential,Real Estate,62.55,3.23,5.36,11.68,27.86,58.28,75.49,22.96,1.57,9.45,2.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EQR 173 | ESS,"Essex Property Trust, Inc.",Real Estate,233.70,3.04,37.27,6.27,94.50,200.01,237.50,15.32,0.89818,11.41,2.45,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ESS 174 | EL,Estee Lauder Cos.,Consumer Staples,82.77,1.64,28.60,2.89,10.36,75.29,97.48,30.33,2.20,2.66,7.98,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EL 175 | ES,Eversource Energy,Utilities,58.56,3.26,19.78,2.96,33.80,50.56,60.44,18.56,2.55,2.42,1.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ES 176 | EXC,Exelon Corp.,Utilities,36.13,3.61,29.61,1.22,27.96,29.82,37.70,33.48,9.13,1.07,1.29,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EXC 177 | EXPE,Expedia Inc.,Consumer Discretionary,122.39,0.93,67.25,1.82,27.54,96.58,133.55,18.34,1.07,2.07,4.41,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EXPE 178 | EXPD,Expeditors Int'l,Industrials,56.05,1.42,23.75,2.36,10.26,46.42,57.35,10.10,0.71696,1.67,5.50,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EXPD 179 | ESRX,Express Scripts,Health Care,67.39,0.00,12.50,5.39,26.81,64.46,80.02,40.82,7.10,0.42,2.61,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ESRX 180 | EXR,Extra Space Storage,Real Estate,78.99,3.95,27.17,2.91,17.88,68.09,94.81,9.92,0.6492899999999999,9.93,4.45,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=EXR 181 | XOM,Exxon Mobil Corp.,Energy,82.52,3.64,43.96,1.88,40.34,80.76,95.55,342.17,23.24,1.74,2.05,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XOM 182 | FFIV,F5 Networks,Information Technology,143.60,,25.92,5.54,18.44,93.64,148.34,9.30,0.61023,4.53,7.66,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FFIV 183 | FB,"Facebook, Inc.",Information Technology,137.30,,39.31,3.49,20.51,105.49,138.37,396.79,14.84,14.37,6.70,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FB 184 | FAST,Fastenal Co,Industrials,51.37,2.47,29.71,1.73,6.68,37.70,52.64,14.86,0.89936,3.81,7.81,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FAST 185 | FRT,Federal Realty Investment Trust,Real Estate,133.39,2.90,38.11,3.50,27.32,132.91,171.08,9.62,0.51283,12.08,4.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FRT 186 | FDX,FedEx Corporation,Industrials,192.91,0.82,28.35,6.80,54.52,139.58,201.57,51.41,7.86,0.94,3.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FDX 187 | FIS,Fidelity National Information Services,Information Technology,82.64,1.40,47.96,1.72,29.70,59.11,83.86,27.17,2.27,2.94,2.78,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FIS 188 | FITB,Fifth Third Bancorp,Financials,27.37,2.01,14.18,1.93,19.82,16.02,28.97,20.55,0.00,3.56,1.39,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FITB 189 | FSLR,First Solar Inc,Information Technology,32.63,,,-3.48,50.10,28.60,74.29,3.39,0.57174,1.17,0.67,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FSLR 190 | FE,FirstEnergy Corp,Utilities,31.18,4.54,,-14.50,14.11,29.33,36.60,13.80,4.12,0.98,2.22,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FE 191 | FISV,Fiserv Inc,Information Technology,116.95,,28.18,4.15,11.79,92.81,117.54,25.09,1.72,4.56,9.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FISV 192 | FLIR,FLIR Systems,Information Technology,36.50,1.65,30.42,1.20,12.31,28.26,37.44,4.98,0.35466000000000003,2.99,2.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FLIR 193 | FLS,Flowserve Corporation,Industrials,46.00,1.63,41.44,1.11,12.70,39.13,52.50,6.00,0.47792,1.51,3.63,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FLS 194 | FLR,Fluor Corp.,Industrials,55.08,1.51,27.54,2.00,22.44,44.05,58.37,7.68,0.88816,0.40,2.45,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FLR 195 | FMC,FMC Corporation,Materials,59.09,1.11,37.95,1.56,14.64,36.72,62.84,7.90,0.7143999999999999,2.41,4.04,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FMC 196 | FTI,FMC Technologies Inc.,Energy,31.90,3.43,12.92,2.47,43.01,30.61,36.14,3.76,1.16,0.43,0.75,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FTI 197 | FL,Foot Locker Inc,Consumer Discretionary,75.72,1.62,15.42,4.91,20.33,50.90,79.43,10.09,1.16,1.31,3.74,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FL 198 | F,Ford Motor,Consumer Discretionary,12.46,4.74,10.83,1.15,7.34,11.07,14.22,49.52,13.30,0.33,1.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=F 199 | FTV,Fortive Corp,Industrials,58.20,0.48,23.19,2.51,7.77,43.00,59.24,20.13,1.44,3.24,7.51,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FTV 200 | FBHS,Fortune Brands Home & Security,Industrials,57.92,1.23,22.15,2.62,15.39,50.39,64.47,8.87,0.7747,1.78,3.76,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FBHS 201 | BEN,Franklin Resources,Financials,42.38,1.87,14.28,2.97,21.15,30.56,44.10,23.96,2.32,3.73,2.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BEN 202 | FCX,Freeport-McMoRan Inc.,Materials,12.69,0.00,,-3.15,4.19,8.47,17.06,18.34,3.85,1.26,3.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FCX 203 | FTR,Frontier Communications,Telecommunications Services,2.62,14.63,,-0.51,3.85,2.57,5.75,3.07,3.47,0.36,0.72,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FTR 204 | GPS,Gap (The),Consumer Discretionary,24.18,3.73,14.31,1.69,7.28,17.00,30.74,9.65,1.92,0.63,3.35,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GPS 205 | GRMN,Garmin Ltd.,Consumer Discretionary,51.51,3.96,19.08,2.70,18.13,38.40,56.19,9.71,0.71025,3.23,2.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GRMN 206 | GD,General Dynamics,Industrials,191.47,1.77,20.10,9.52,36.43,127.74,193.17,57.69,4.76,1.83,5.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GD 207 | GE,General Electric,Industrials,29.86,3.19,33.44,0.89,8.67,28.19,33.00,260.52,17.14,2.18,3.46,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GE 208 | GGP,General Growth Properties Inc.,Real Estate,23.92,3.61,17.85,1.34,9.50,23.70,32.10,21.14,1.86,8.25,2.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GGP 209 | GIS,General Mills,Consumer Staples,60.25,3.16,22.50,2.68,7.20,58.70,72.95,34.95,3.38,2.20,8.39,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GIS 210 | GM,General Motors,Consumer Discretionary,37.52,3.98,6.25,6.00,29.22,27.34,38.55,56.20,19.68,0.34,1.30,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GM 211 | GPC,Genuine Parts,Consumer Discretionary,93.52,2.85,20.37,4.59,21.52,86.61,105.97,13.88,1.22,0.91,4.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GPC 212 | GILD,Gilead Sciences,Health Care,69.02,2.94,6.94,9.94,14.42,65.38,103.10,90.21,19.22,3.02,4.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GILD 213 | GPN,Global Payments Inc,Information Technology,80.89,0.05,58.24,1.39,17.29,58.11,81.56,12.31,0.9893500000000001,3.23,4.64,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GPN 214 | GS,Goldman Sachs Group,Financials,250.90,1.03,15.40,16.29,182.46,138.20,255.15,104.08,0.00,3.42,1.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GS 215 | GT,Goodyear Tire & Rubber,Consumer Discretionary,35.27,0.95,7.44,4.74,17.91,24.31,36.61,8.88,2.51,0.59,1.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GT 216 | GWW,Grainger (W.W.) Inc.,Industrials,250.59,1.95,25.39,9.87,30.58,201.94,262.71,14.74,1.46,1.46,8.25,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=GWW 217 | HAL,Halliburton Co.,Energy,52.97,1.34,,-6.69,10.86,33.26,58.78,45.92,2.16,2.94,4.95,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HAL 218 | HBI,Hanesbrands Inc,Consumer Discretionary,19.98,2.92,14.21,1.41,3.23,18.91,30.42,7.57,1.01,1.28,6.32,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HBI 219 | HOG,Harley-Davidson,Consumer Discretionary,57.78,2.48,15.09,3.83,11.00,41.63,62.35,10.09,1.28,1.68,5.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HOG 220 | HAR,Harman Int'l Industries,Consumer Discretionary,111.43,1.25,22.04,5.06,36.87,64.93,111.85,7.79,0.8603500000000001,1.08,3.02,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HAR 221 | HRS,Harris Corporation,Information Technology,109.73,1.92,20.77,5.28,25.40,73.32,111.67,13.66,1.58,1.85,4.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HRS 222 | HIG,Hartford Financial Svc.Gp.,Financials,48.66,1.87,21.44,2.27,45.20,38.92,50.13,18.01,1.48,0.99,1.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HIG 223 | HAS,Hasbro Inc.,Consumer Discretionary,97.20,2.33,22.40,4.34,14.96,76.14,99.33,12.08,0.97538,2.40,6.49,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HAS 224 | HCA,HCA Holdings,Health Care,86.63,0.00,11.87,7.30,-19.71,67.00,88.62,32.07,8.16,0.78,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HCA 225 | HCP,HCP Inc.,Real Estate,31.30,4.60,23.38,1.34,11.85,27.61,40.43,14.65,1.28,6.93,2.66,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HCP 226 | HP,Helmerich & Payne,Energy,68.37,4.04,,-1.02,41.23,55.75,85.78,7.42,0.49541,5.03,1.69,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HP 227 | HSIC,Henry Schein,Health Care,171.06,,27.63,6.19,35.18,146.23,183.00,13.55,0.98724,1.17,4.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HSIC 228 | HES,Hess Corporation,Energy,49.51,1.96,,-19.92,45.92,45.37,65.56,15.67,0.936,3.44,1.11,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HES 229 | HPE,Hewlett Packard Enterprise,Information Technology,22.82,1.04,12.38,1.84,18.94,15.30,24.88,37.95,7.80,0.79,1.22,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HPE 230 | HOLX,Hologic,Health Care,40.96,,35.01,1.17,8.02,32.64,42.17,11.44,1.04,4.00,5.13,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HOLX 231 | HD,Home Depot,Consumer Discretionary,146.02,2.41,22.64,6.45,3.59,119.20,148.26,176.10,15.40,1.86,40.70,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HD 232 | HON,Honeywell Int'l Inc.,Industrials,126.26,2.11,20.36,6.20,25.46,105.25,127.41,96.11,7.71,2.44,4.95,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HON 233 | HRL,Hormel Foods Corp.,Consumer Staples,34.85,1.92,21.12,1.65,8.66,33.18,44.73,18.42,1.41,1.95,4.04,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HRL 234 | HST,Host Hotels & Resorts,Real Estate,18.18,4.35,17.82,1.02,9.48,14.30,20.21,13.44,1.42,2.51,1.95,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HST 235 | HPQ,HP Inc.,Information Technology,17.27,3.06,11.78,1.47,-2.54,11.09,17.81,29.43,4.26,0.61,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HPQ 236 | HUM,Humana Inc.,Health Care,217.95,0.75,53.55,4.07,71.57,150.00,218.93,32.55,2.06,0.58,2.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HUM 237 | HBAN,Huntington Bancshares,Financials,14.24,2.22,20.34,0.70,8.51,8.05,14.74,15.46,0.00,4.67,1.68,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HBAN 238 | IDXX,IDEXX Laboratories,Health Care,147.03,,60.26,2.44,-1.23,72.29,148.22,12.94,0.43068,7.29,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IDXX 239 | ITW,Illinois Tool Works,Industrials,133.90,1.94,23.49,5.70,12.26,96.13,135.24,46.40,3.53,3.42,10.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ITW 240 | ILMN,Illumina Inc,Health Care,165.58,,53.93,3.07,15.03,119.37,186.88,24.22,0.71878,10.17,11.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ILMN 241 | INCY,Incyte,Health Care,133.39,,247.02,0.54,2.22,60.30,137.76,25.27,0.19085,23.02,60.50,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=INCY 242 | IR,Ingersoll-Rand PLC,Industrials,79.59,2.00,14.10,5.65,25.65,56.73,82.17,20.65,1.92,1.52,3.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IR 243 | INTC,Intel Corp.,Information Technology,35.80,2.90,16.89,2.12,14.00,29.50,38.45,169.26,22.87,2.83,2.54,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=INTC 244 | ICE,Intercontinental Exchange,Financials,58.63,1.36,24.74,2.37,26.42,45.44,60.54,6.75,2.75,1.51,2.23,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ICE 245 | IBM,International Business Machines,Information Technology,180.38,3.11,14.57,12.38,19.29,138.09,182.79,170.14,18.55,2.13,9.36,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IBM 246 | IP,International Paper,Materials,51.48,3.43,23.64,2.18,10.56,37.88,58.86,21.17,2.87,1.02,4.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IP 247 | IPG,Interpublic Group,Consumer Discretionary,24.20,2.97,16.24,1.49,5.15,20.82,25.33,9.50,1.10,1.21,4.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IPG 248 | IFF,Intl Flavors & Fragrances,Materials,123.89,2.05,24.53,5.05,20.53,106.11,143.64,9.79,0.67298,3.15,6.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IFF 249 | INTU,Intuit Inc.,Information Technology,125.40,1.08,33.67,3.72,3.07,96.85,128.45,32.08,1.41,6.65,41.13,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=INTU 250 | ISRG,Intuitive Surgical Inc.,Health Care,730.15,,38.98,18.73,148.91,561.02,746.28,28.32,1.05,10.55,4.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ISRG 251 | IVZ,Invesco Ltd.,Financials,31.96,3.46,15.51,2.06,18.58,23.01,33.46,12.91,1.33,2.75,1.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IVZ 252 | IRM,Iron Mountain Incorporated,Real Estate,35.79,6.05,84.41,0.42,7.34,30.32,41.50,9.44,1.11,2.71,4.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=IRM 253 | JBHT,J. B. Hunt Transport Services,Industrials,96.60,0.94,25.35,3.81,12.70,75.71,102.38,10.75,1.08,1.67,7.76,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JBHT 254 | JEC,Jacobs Engineering Group,Industrials,56.51,1.06,30.55,1.85,33.59,39.88,63.42,6.84,0.64212,0.64,1.68,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JEC 255 | SJM,JM Smucker,Consumer Staples,139.17,2.14,24.23,5.74,62.19,122.05,157.31,16.21,1.66,2.20,2.25,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SJM 256 | JNJ,Johnson & Johnson,Health Care,123.83,2.59,20.88,5.93,26.02,106.07,126.07,335.99,24.96,4.67,4.75,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JNJ 257 | JCI,Johnson Controls International,Industrials,41.47,2.66,,-1.34,20.86,36.29,48.97,38.93,3.76,0.98,2.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JCI 258 | JPM,JPMorgan Chase & Co.,Financials,91.41,2.07,14.77,6.19,64.07,57.05,93.98,325.49,0.00,3.62,1.43,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JPM 259 | JNPR,Juniper Networks,Information Technology,28.15,1.41,18.40,1.53,13.02,21.17,29.21,10.75,1.11,2.16,2.16,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JNPR 260 | KSU,Kansas City Southern,Industrials,89.00,1.47,20.09,4.43,38.31,79.05,100.69,9.49,1.12,4.08,2.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KSU 261 | K,Kellogg Co.,Consumer Staples,74.14,2.79,37.83,1.96,5.44,70.74,87.16,26.03,2.25,2.00,13.64,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=K 262 | KEY,KeyCorp,Financials,18.79,1.78,23.46,0.80,12.58,10.21,19.53,20.15,0.00,4.31,1.51,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KEY 263 | KMB,Kimberly-Clark,Consumer Staples,133.38,2.90,22.27,5.99,-0.29,111.30,138.87,47.52,4.08,2.61,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KMB 264 | KIM,Kimco Realty,Real Estate,22.75,4.62,28.80,0.79,12.37,22.73,32.24,9.68,0.7661399999999999,8.41,1.87,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KIM 265 | KMI,Kinder Morgan,Energy,21.63,2.30,87.93,0.25,15.44,16.63,23.36,48.29,6.16,3.72,1.41,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KMI 266 | KLAC,KLA-Tencor Corp.,Information Technology,91.04,2.39,16.55,5.50,6.16,66.88,91.65,14.27,1.25,4.37,14.75,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KLAC 267 | KSS,Kohl's Corp.,Consumer Discretionary,39.51,4.96,12.70,3.11,29.75,33.87,59.67,6.87,2.31,0.37,1.32,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KSS 268 | KHC,Kraft Heinz Co,Consumer Staples,90.80,2.62,32.31,2.81,47.15,75.55,97.77,110.52,8.57,4.19,1.93,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KHC 269 | KR,Kroger Co.,Consumer Staples,28.81,1.62,14.05,2.05,7.26,28.71,39.22,26.62,5.78,0.24,4.04,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KR 270 | LB,L Brands Inc.,Consumer Discretionary,50.17,4.59,12.61,3.98,-4.16,47.93,88.77,14.35,2.51,1.17,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LB 271 | LLL,L-3 Communications Holdings,Industrials,169.07,1.79,18.77,9.01,58.95,115.75,171.24,13.15,1.23,1.25,2.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LLL 272 | LH,Laboratory Corp. of America Holding,Health Care,142.09,0.00,20.24,7.02,53.61,109.87,143.70,14.54,1.83,1.54,2.66,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LH 273 | LRCX,Lam Research,Information Technology,117.43,1.52,21.05,5.58,39.39,72.00,119.91,19.12,1.62,3.02,3.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LRCX 274 | LEG,Leggett & Platt,Consumer Discretionary,48.83,2.75,17.72,2.76,8.18,44.02,54.62,6.63,0.5892000000000001,1.77,6.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LEG 275 | LEN,Lennar Corp.,Consumer Discretionary,50.71,0.32,12.89,3.93,29.97,39.68,50.81,11.89,1.34,1.07,1.67,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LEN 276 | LUK,Leucadia National Corp.,Financials,26.66,0.94,79.11,0.34,28.18,14.31,27.33,9.59,1.25,0.88,0.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LUK 277 | LVLT,Level 3 Communications,Telecommunications Services,55.46,,29.66,1.87,30.32,44.01,60.12,20.00,2.67,2.48,1.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LVLT 278 | LLY,Lilly (Eli) & Co.,Health Care,82.74,2.48,32.07,2.58,13.33,64.18,84.28,86.95,5.37,4.15,6.29,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LLY 279 | LNC,Lincoln National,Financials,69.25,1.63,13.77,5.03,63.97,35.27,73.31,15.60,1.80,1.18,1.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LNC 280 | LLTC,Linear Technology Corp.,Information Technology,65.33,2.04,32.02,2.04,7.81,42.65,65.76,15.73,0.7259800000000001,10.61,8.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LLTC 281 | LKQ,LKQ Corporation,Consumer Discretionary,30.89,,20.66,1.50,11.19,29.37,36.35,9.51,1.00,1.12,2.80,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LKQ 282 | LMT,Lockheed Martin Corp.,Industrials,269.04,2.72,15.38,17.49,5.23,214.81,270.00,77.75,6.11,1.64,51.21,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LMT 283 | L,Loews Corp.,Financials,47.45,0.52,24.59,1.93,53.96,36.05,48.05,15.97,2.94,1.22,0.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=L 284 | LOW,Lowe's Cos.,Consumer Discretionary,80.84,1.71,23.30,3.47,7.43,64.87,83.65,70.01,7.44,1.08,10.90,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LOW 285 | LYB,LyondellBasell,Materials,91.23,3.69,10.00,9.13,14.97,69.82,97.64,36.72,6.07,1.26,6.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LYB 286 | MTB,M&T Bank Corp.,Financials,166.73,1.70,21.44,7.78,97.66,106.05,173.72,25.71,0.00,5.04,1.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MTB 287 | MAC,Macerich,Real Estate,65.27,4.27,18.54,3.52,28.52,64.55,94.51,9.39,0.64491,8.73,2.31,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MAC 288 | M,Macy's Inc.,Consumer Discretionary,30.81,4.75,15.48,1.99,14.22,28.55,45.50,9.37,2.90,0.36,2.16,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=M 289 | MNK,Mallinckrodt Plc,Health Care,49.71,,19.29,2.58,47.62,42.67,85.83,5.20,1.48,1.58,1.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MNK 290 | MRO,Marathon Oil Corp.,Energy,16.28,1.24,,-2.61,20.71,9.65,19.28,13.79,1.20,3.41,0.80,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MRO 291 | MPC,Marathon Petroleum,Energy,50.15,2.81,22.69,2.21,25.68,32.02,54.59,26.47,4.66,0.48,1.99,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MPC 292 | MAR,Marriott Int'l.,Consumer Discretionary,86.15,1.38,32.63,2.64,13.88,60.87,91.07,33.04,2.00,9.43,6.25,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MAR 293 | MMC,Marsh & McLennan,Financials,73.62,1.83,21.78,3.38,12.03,57.11,74.76,37.91,3.10,2.88,6.13,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MMC 294 | MLM,Martin Marietta Materials,Materials,209.93,0.77,31.66,6.63,65.53,150.75,243.98,13.24,0.9546699999999999,3.79,3.28,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MLM 295 | MAS,Masco Corp.,Industrials,33.25,1.17,22.62,1.47,-0.94,28.66,37.38,10.57,1.19,1.45,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MAS 296 | MA,Mastercard Inc.,Information Technology,110.96,0.79,30.07,3.69,5.23,85.93,112.92,119.61,6.25,11.14,21.28,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MA 297 | MAT,Mattel Inc.,Consumer Discretionary,25.02,5.97,27.20,0.92,7.03,25.00,34.76,8.57,0.82347,1.60,3.62,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MAT 298 | MKC,McCormick & Co.,Consumer Staples,99.00,1.89,26.83,3.69,12.98,88.64,107.84,12.39,0.7541,2.82,7.64,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MKC 299 | MCD,McDonald's Corp.,Consumer Discretionary,128.07,2.94,23.54,5.44,-2.69,110.33,131.96,104.89,9.34,4.26,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MCD 300 | MCK,McKesson Corp.,Health Care,147.24,0.73,17.47,8.43,36.27,114.53,199.43,31.22,4.62,0.16,4.14,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MCK 301 | MJN,Mead Johnson,Consumer Staples,88.33,1.87,30.25,2.92,-2.80,69.25,94.40,16.20,1.01,4.33,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MJN 302 | MDT,Medtronic plc,Health Care,81.40,2.10,28.73,2.83,35.99,69.35,89.27,111.70,8.89,3.81,2.27,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MDT 303 | MRK,Merck & Co.,Health Care,65.96,2.82,46.78,1.41,14.58,51.33,66.80,181.10,12.00,4.58,4.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MRK 304 | MET,MetLife Inc.,Financials,53.35,2.92,84.68,0.63,61.44,36.17,58.09,58.01,1.57,0.93,0.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MET 305 | MTD,Mettler Toledo,Health Care,481.30,,33.85,14.22,16.72,325.70,488.50,12.48,0.58824,4.96,28.69,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MTD 306 | KORS,Michael Kors Holdings,Consumer Discretionary,36.02,,8.23,4.38,11.42,34.92,59.49,5.84,1.22,1.28,3.20,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=KORS 307 | MCHP,Microchip Technology,Information Technology,73.84,1.97,179.66,0.41,11.86,45.90,76.50,15.98,0.9251,5.22,6.23,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MCHP 308 | MU,Micron Technology,Information Technology,25.64,0.00,,-0.30,11.80,9.35,25.92,28.27,3.39,2.18,2.18,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MU 309 | MSFT,Microsoft Corp.,Information Technology,64.40,2.43,30.31,2.12,8.90,48.03,65.91,497.65,27.74,5.80,7.22,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MSFT 310 | MAA,Mid-America Apartments,Real Estate,100.78,3.44,37.48,2.69,56.41,85.04,110.01,11.44,0.6362599999999999,10.16,1.79,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MAA 311 | MHK,Mohawk Industries,Consumer Discretionary,227.30,,,49.90,77.88,175.52,233.70,16.86,1.70,1.89,2.93,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MHK 312 | TAP,Molson Coors Brewing Company,Consumer Staples,96.99,1.64,10.48,9.26,53.13,88.24,112.19,20.85,0.851,4.32,1.85,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TAP 313 | MDLZ,Mondelez International,Consumer Staples,43.23,1.74,41.17,1.05,16.46,39.21,46.40,66.00,4.24,2.57,2.65,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MDLZ 314 | MON,Monsanto Co.,Materials,115.06,1.88,31.55,3.65,10.04,83.73,116.04,50.46,4.01,3.61,11.42,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MON 315 | MNST,Monster Beverage,Consumer Staples,46.70,,39.24,1.19,5.88,40.30,55.50,26.46,1.21,8.73,7.99,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MNST 316 | MCO,Moody's Corp,Financials,112.66,1.35,82.84,1.36,-6.42,87.30,114.03,21.50,1.64,5.94,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MCO 317 | MS,Morgan Stanley,Financials,46.33,1.71,15.86,2.92,36.99,23.11,47.17,86.46,0.00,2.51,1.26,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MS 318 | MSI,Motorola Solutions Inc.,Information Technology,79.66,2.33,24.59,3.24,-5.85,62.76,87.55,13.12,1.54,2.18,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MSI 319 | MUR,Murphy Oil,Energy,27.74,3.57,,-1.60,28.55,21.35,37.48,4.78,0.88273,2.69,0.99,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MUR 320 | MYL,Mylan N.V.,Health Care,43.33,0.00,47.10,0.92,20.76,33.60,50.40,23.20,3.53,2.13,2.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MYL 321 | NDAQ,NASDAQ OMX Group,Financials,70.93,1.80,110.83,0.64,32.60,61.19,72.52,11.83,1.16,3.21,2.19,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NDAQ 322 | NOV,National Oilwell Varco Inc.,Energy,39.30,0.50,,-6.41,36.82,26.86,43.63,14.88,-0.736,2.08,1.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NOV 323 | NAVI,Navient,Financials,14.54,4.29,6.86,2.12,12.72,11.01,17.95,4.23,0.00,2.03,1.15,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NAVI 324 | NTAP,NetApp,Information Technology,42.66,1.78,38.96,1.10,9.94,22.50,43.14,11.56,0.768,2.13,4.28,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NTAP 325 | NFLX,Netflix Inc.,Information Technology,141.43,,328.91,0.43,6.23,84.50,145.95,60.87,0.43732,6.92,22.78,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NFLX 326 | NWL,Newell Brands,Consumer Discretionary,48.53,1.54,38.89,1.25,23.52,38.82,55.45,23.41,2.39,1.78,2.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NWL 327 | NFX,Newfield Exploration Co,Energy,35.86,,,-6.37,4.75,29.22,50.00,7.08,0.536,4.85,7.62,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NFX 328 | NEM,Newmont Mining Corp. (Hldg. Co.),Materials,32.98,0.59,,-1.18,20.17,24.59,46.07,17.52,2.59,2.61,1.63,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NEM 329 | NWSA,News Corp. Class A,Consumer Discretionary,12.66,1.55,,-0.63,18.84,10.54,14.68,7.36,0.669,0.92,0.69,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NWSA 330 | NWS,News Corp. Class B,Consumer Discretionary,13.00,1.51,,-0.63,18.84,10.90,15.22,7.56,0.669,0.94,0.70,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NWS 331 | NEE,NextEra Energy,Utilities,130.65,3.00,20.90,6.25,52.01,110.49,131.98,61.09,7.67,3.78,2.51,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NEE 332 | NLSN,Nielsen Holdings,Industrials,44.50,2.77,32.01,1.39,11.48,40.28,55.94,15.91,1.62,2.52,3.87,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NLSN 333 | NKE,Nike,Consumer Discretionary,56.55,1.27,24.93,2.27,7.44,49.01,65.44,93.56,5.18,2.80,7.63,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NKE 334 | NI,NiSource Inc.,Utilities,23.50,2.95,23.02,1.02,12.60,21.17,26.94,7.60,1.36,1.70,1.87,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NI 335 | NBL,Noble Energy Inc,Energy,35.88,1.09,,-2.32,21.50,28.82,42.03,15.50,0.852,4.69,1.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NBL 336 | JWN,Nordstrom,Consumer Discretionary,44.03,3.19,21.80,2.02,5.12,35.01,62.82,7.49,1.65,0.52,8.89,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=JWN 337 | NSC,Norfolk Southern Corp.,Industrials,122.00,1.99,21.70,5.62,42.73,74.70,125.00,35.45,4.10,3.61,2.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NSC 338 | NTRS,Northern Trust Corp.,Financials,88.39,1.71,20.46,4.32,38.88,61.32,91.14,20.22,0.00,4.02,2.26,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NTRS 339 | NOC,Northrop Grumman Corp.,Industrials,243.78,1.48,20.00,12.19,30.04,186.41,253.80,42.56,3.65,1.73,8.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NOC 340 | NRG,NRG Energy,Utilities,17.10,0.69,,-2.22,6.47,9.84,18.32,5.40,2.75,0.44,2.68,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NRG 341 | NUE,Nucor Corp.,Materials,60.93,2.41,24.55,2.48,24.72,43.28,68.00,19.43,2.15,1.24,2.54,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NUE 342 | NVDA,Nvidia Corporation,Information Technology,98.74,0.57,38.42,2.57,9.85,31.04,120.92,58.16,2.13,8.33,9.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=NVDA 343 | ORLY,O'Reilly Automotive,Consumer Discretionary,269.82,,25.15,10.73,17.52,248.02,292.84,24.73,1.92,2.87,15.34,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ORLY 344 | OXY,Occidental Petroleum,Energy,64.70,4.69,,-0.75,28.13,64.19,78.48,49.45,2.69,4.90,2.30,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=OXY 345 | OMC,Omnicom Group,Consumer Discretionary,84.09,2.58,17.59,4.78,9.21,75.61,89.66,19.72,2.30,1.28,9.11,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=OMC 346 | OKE,ONEOK,Energy,56.58,4.36,34.08,1.66,0.90,25.61,59.47,11.92,1.67,1.34,63.18,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=OKE 347 | ORCL,Oracle Corp.,Information Technology,42.60,1.41,20.33,2.10,11.81,37.51,43.26,174.76,14.60,4.69,3.60,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ORCL 348 | PCAR,PACCAR Inc.,Industrials,67.57,1.40,45.66,1.48,19.33,48.17,70.12,23.71,2.43,1.41,3.53,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PCAR 349 | PH,Parker-Hannifin,Industrials,157.49,1.68,24.30,6.48,33.97,99.10,159.05,20.99,1.60,1.88,4.65,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PH 350 | PDCO,Patterson Companies,Health Care,44.15,2.13,24.23,1.82,14.63,36.46,50.40,4.18,0.39844,0.74,3.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PDCO 351 | PAYX,Paychex Inc.,Information Technology,62.16,2.94,28.91,2.15,5.06,51.06,63.01,22.31,1.31,7.31,12.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PAYX 352 | PYPL,PayPal,Information Technology,42.89,,37.30,1.15,12.19,34.00,44.52,51.79,2.10,4.77,3.52,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PYPL 353 | PNR,Pentair Ltd.,Industrials,58.90,2.33,20.62,2.86,23.41,48.87,66.99,10.71,0.9195,2.19,2.51,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PNR 354 | PBCT,People's United Financial,Financials,19.09,3.51,20.80,0.92,15.85,13.80,20.13,5.90,0.00,4.65,1.21,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PBCT 355 | PEP,PepsiCo Inc.,Consumer Staples,109.32,2.72,25.08,4.36,7.88,98.50,110.94,156.02,12.11,2.49,13.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PEP 356 | PKI,PerkinElmer,Health Care,54.08,0.51,25.40,2.13,19.65,45.35,57.28,5.94,0.40594,2.82,2.76,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PKI 357 | PRGO,Perrigo,Health Care,70.30,0.88,,-10.08,60.47,69.00,140.65,10.08,1.34,1.76,1.18,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PRGO 358 | PFE,Pfizer Inc.,Health Care,33.99,3.71,28.98,1.17,9.81,28.74,37.39,202.30,19.81,3.87,3.50,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PFE 359 | PCG,PG&E Corp.,Utilities,66.26,2.97,23.83,2.78,35.39,56.39,66.93,33.65,5.16,1.89,1.86,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PCG 360 | PM,Philip Morris International,Consumer Staples,110.55,3.77,24.68,4.48,-8.18,86.78,110.64,171.51,11.56,6.38,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PM 361 | PSX,Phillips 66,Energy,77.48,3.22,26.50,2.92,43.16,73.67,90.87,40.12,2.24,0.57,1.82,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PSX 362 | PNW,Pinnacle West Capital,Utilities,82.54,3.16,20.90,3.95,43.15,69.80,83.77,9.19,1.42,2.64,1.92,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PNW 363 | PXD,Pioneer Natural Resources,Energy,193.94,0.04,,-3.35,61.30,124.30,199.83,32.93,0.776,8.34,3.16,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PXD 364 | PNC,PNC Financial Services,Financials,127.40,1.72,17.45,7.30,94.22,77.40,131.83,61.94,0.00,4.21,1.35,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PNC 365 | RL,Polo Ralph Lauren Corp.,Consumer Discretionary,79.14,2.51,45.25,1.75,43.92,75.62,114.00,6.51,1.01,0.94,1.82,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RL 366 | PPG,PPG Industries,Materials,100.78,1.57,30.72,3.28,18.75,89.64,117.00,25.91,2.56,1.76,5.40,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PPG 367 | PPL,PPL Corp.,Utilities,36.79,4.31,13.19,2.79,14.56,32.08,39.92,25.04,4.05,3.33,2.53,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PPL 368 | PX,Praxair Inc.,Materials,118.79,2.68,22.80,5.21,17.62,105.92,125.00,33.86,3.44,3.19,6.68,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PX 369 | PCLN,Priceline.com Inc,Consumer Discretionary,1736.46,,40.71,42.65,199.64,1148.06,1748.39,85.38,4.15,7.92,8.67,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PCLN 370 | PFG,Principal Financial Group,Financials,63.04,2.83,14.01,4.50,35.55,37.69,64.31,18.12,1.95,1.47,1.78,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PFG 371 | PG,Procter & Gamble,Consumer Staples,90.29,2.96,16.54,5.46,20.35,79.10,91.89,230.82,17.77,3.54,4.44,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PG 372 | PGR,Progressive Corp.,Financials,39.32,1.71,22.34,1.76,13.72,30.54,39.94,22.84,1.81,0.98,2.87,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PGR 373 | PLD,Prologis,Real Estate,50.55,3.44,22.28,2.27,28.21,40.88,54.87,26.76,1.81,9.78,1.79,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PLD 374 | PRU,Prudential Financial,Financials,111.24,2.67,11.46,9.71,106.76,66.51,114.55,47.83,7.50,0.80,1.05,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PRU 375 | PEG,Public Serv. Enterprise Inc.,Utilities,44.98,3.78,25.70,1.75,26.01,39.28,47.41,22.77,3.37,2.52,1.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PEG 376 | PSA,Public Storage,Real Estate,228.01,3.53,33.48,6.81,29.11,200.65,277.60,39.59,1.86,15.12,7.83,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PSA 377 | PHM,Pulte Homes Inc.,Consumer Discretionary,22.79,1.60,13.04,1.75,14.60,16.60,22.94,7.24,1.03,0.93,1.54,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PHM 378 | PVH,PVH Corp.,Consumer Discretionary,89.75,0.17,12.56,7.15,60.33,82.10,115.40,7.11,1.07,0.87,1.50,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PVH 379 | QRVO,Qorvo,Information Technology,66.89,,,-0.75,38.49,43.79,68.66,8.46,0.83108,2.80,1.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=QRVO 380 | QCOM,QUALCOMM Inc.,Information Technology,56.73,3.76,17.30,3.28,21.12,49.67,71.62,83.79,8.55,3.51,2.67,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=QCOM 381 | PWR,Quanta Services Inc.,Industrials,37.53,,29.83,1.26,22.08,21.52,38.82,5.68,0.5442,0.74,1.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=PWR 382 | DGX,Quest Diagnostics,Health Care,98.17,1.83,21.77,4.51,33.78,67.36,98.75,13.50,1.41,1.80,2.91,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DGX 383 | RRC,Range Resources Corp.,Energy,27.91,0.29,,-2.75,22.16,27.07,46.96,6.81,0.01157,5.10,1.28,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RRC 384 | RTN,Raytheon Co.,Industrials,154.48,1.91,20.76,7.44,34.38,120.24,156.40,45.24,3.69,1.87,4.46,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RTN 385 | O,Realty Income Corporation,Real Estate,59.84,4.19,52.96,1.13,24.49,52.72,72.29,15.57,0.99764,14.07,2.44,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=O 386 | RHT,Red Hat Inc.,Information Technology,81.97,,62.57,1.31,7.12,68.54,85.01,14.61,0.39837,6.29,11.53,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RHT 387 | REG,Regency Centers Corporation,Real Estate,65.72,2.95,46.28,1.42,21.76,65.16,85.35,6.84,0.40428,10.74,3.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=REG 388 | REGN,Regeneron,Health Care,372.52,,48.39,7.70,42.19,325.35,452.96,39.29,1.44,8.29,9.05,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=REGN 389 | RF,Regions Financial Corp.,Financials,15.25,1.69,17.45,0.87,13.05,7.53,16.03,18.38,0.00,3.44,1.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RF 390 | RSG,Republic Services Inc,Industrials,62.08,2.06,34.88,1.78,22.66,45.56,62.39,21.05,2.65,2.24,2.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RSG 391 | RAI,Reynolds American Inc.,Consumer Staples,61.18,3.32,14.40,4.25,15.23,43.38,61.96,87.24,6.03,6.99,4.03,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RAI 392 | RHI,Robert Half International,Industrials,47.53,2.02,17.80,2.67,8.50,34.34,50.98,6.07,0.61754,1.15,5.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RHI 393 | ROK,Rockwell Automation Inc.,Industrials,153.58,1.99,26.44,5.81,15.94,104.48,156.11,19.75,1.19,3.31,9.61,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ROK 394 | COL,Rockwell Collins,Industrials,97.47,1.36,17.42,5.59,16.85,78.54,98.12,12.75,1.22,2.41,5.77,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COL 395 | ROP,Roper Industries,Industrials,211.75,0.66,32.93,6.43,56.94,159.28,213.39,21.57,1.30,5.71,3.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ROP 396 | ROST,Ross Stores,Consumer Discretionary,66.87,0.95,23.63,2.83,7.08,52.00,69.81,25.96,2.11,2.03,9.52,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ROST 397 | RCL,Royal Caribbean Cruises Ltd,Consumer Discretionary,94.54,2.01,15.94,5.93,42.51,64.95,97.67,20.31,2.38,2.40,2.23,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RCL 398 | R,Ryder System,Industrials,76.07,2.29,15.51,4.90,38.39,56.98,85.42,4.07,1.81,0.61,2.00,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=R 399 | SPGI,"S&P Global, Inc.",Financials,130.69,1.27,16.46,7.94,2.52,92.03,131.26,33.77,2.47,5.95,51.84,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SPGI 400 | CRM,Salesforce.com,Information Technology,82.97,,319.12,0.26,10.70,66.43,84.48,58.16,0.69647,6.89,7.71,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CRM 401 | SCG,SCANA Corp,Utilities,69.81,3.48,16.78,4.16,40.06,64.50,76.41,9.98,1.60,2.38,1.76,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SCG 402 | SLB,Schlumberger Ltd.,Energy,79.95,2.38,,-1.24,29.52,71.34,87.84,111.25,6.38,4.04,2.73,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SLB 403 | SNI,Scripps Networks Interactive Inc.,Consumer Discretionary,78.34,1.53,15.12,5.18,14.69,58.73,83.42,10.14,1.52,2.97,5.32,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SNI 404 | STX,Seagate Technology,Information Technology,48.28,5.15,28.17,1.71,5.16,18.42,49.79,14.25,1.71,1.31,9.40,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=STX 405 | SEE,Sealed Air,Materials,44.41,1.38,18.05,2.46,3.15,42.01,52.83,8.59,1.04,1.29,14.37,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SEE 406 | SRE,Sempra Energy,Utilities,110.58,3.01,20.25,5.46,51.77,92.95,114.66,27.71,2.94,2.70,2.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SRE 407 | SHW,Sherwin-Williams,Materials,310.58,1.09,25.90,11.99,20.30,239.48,316.66,28.74,1.98,2.43,15.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SHW 408 | SIG,Signet Jewelers,Consumer Discretionary,63.25,1.61,9.47,6.68,32.06,62.10,125.45,4.40,0.9051,0.67,2.05,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SIG 409 | SPG,Simon Property Group Inc,Real Estate,177.29,3.90,30.20,5.87,13.63,173.11,229.10,55.50,4.00,10.30,13.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SPG 410 | SWKS,Skyworks Solutions,Information Technology,95.05,1.18,20.11,4.73,19.81,57.11,97.57,17.58,1.37,5.39,4.82,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SWKS 411 | SLG,SL Green Realty,Real Estate,112.12,2.76,47.98,2.34,70.63,91.03,120.63,11.28,0.9825900000000001,6.37,1.60,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SLG 412 | SNA,Snap-On Inc.,Consumer Discretionary,168.46,1.67,18.31,9.20,45.16,145.17,181.73,9.77,0.9267000000000001,2.64,3.74,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SNA 413 | SO,Southern Co.,Utilities,50.40,4.45,19.76,2.55,25.00,46.20,54.64,49.95,7.63,2.50,2.01,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SO 414 | LUV,Southwest Airlines,Industrials,56.83,0.68,16.02,3.55,13.72,35.42,59.68,34.96,5.27,1.73,4.19,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=LUV 415 | SWN,Southwestern Energy,Energy,7.61,0.00,,-6.32,1.86,6.62,15.59,3.74,0.301,1.60,4.26,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SWN 416 | SWK,Stanley Black & Decker,Consumer Discretionary,127.91,1.81,19.65,6.51,41.73,97.47,130.47,19.52,1.88,1.72,3.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SWK 417 | SPLS,Staples Inc.,Consumer Discretionary,8.78,5.34,,-0.71,7.14,7.24,11.37,5.71,1.36,0.28,1.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SPLS 418 | SBUX,Starbucks Corp.,Consumer Discretionary,56.20,1.58,28.82,1.95,3.98,50.84,61.64,81.91,4.95,3.81,14.25,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SBUX 419 | STT,State Street Corp.,Financials,79.60,1.89,16.02,4.97,47.19,50.60,83.49,30.40,0.00,2.98,1.69,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=STT 420 | SRCL,Stericycle Inc,Industrials,80.86,,38.93,2.08,32.83,71.52,128.94,6.91,0.8185399999999999,1.91,2.43,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SRCL 421 | SYK,Stryker Corp.,Health Care,129.14,1.31,29.69,4.35,25.47,102.31,131.36,48.15,3.11,4.27,5.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SYK 422 | STI,SunTrust Banks,Financials,59.72,1.73,16.59,3.60,45.38,34.79,61.69,29.33,0.00,3.59,1.31,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=STI 423 | SYMC,Symantec Corp.,Information Technology,29.29,1.03,8.82,3.32,6.38,16.14,29.47,18.13,0.875,4.77,4.56,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SYMC 424 | SYF,Synchrony Financial,Financials,35.60,1.44,13.14,2.71,17.37,23.25,38.06,28.86,0.00,4.13,2.05,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SYF 425 | SYY,Sysco Corp.,Consumer Staples,52.30,2.53,28.52,1.83,4.58,44.71,57.07,28.25,3.00,0.53,11.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=SYY 426 | TROW,T. Rowe Price Group,Financials,70.90,3.20,14.93,4.75,20.46,62.97,79.00,17.26,1.93,4.10,3.47,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TROW 427 | TGT,Target Corp.,Consumer Discretionary,55.14,4.18,11.74,4.70,19.69,55.05,84.14,30.67,7.27,0.45,2.85,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TGT 428 | TEL,TE Connectivity Ltd.,Information Technology,74.36,1.96,13.01,5.72,24.86,54.54,76.49,26.42,2.63,2.11,2.98,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TEL 429 | TGNA,"Tegna, Inc.",Consumer Discretionary,25.82,2.16,13.00,1.99,10.59,17.91,26.65,5.54,1.21,1.67,2.45,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TGNA 430 | TDC,Teradata Corp.,Information Technology,31.09,,32.73,0.95,7.43,24.21,33.32,4.06,0.38,1.76,4.20,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TDC 431 | TSO,Tesoro Petroleum Co.,Energy,83.46,2.64,13.63,6.12,46.79,69.49,93.50,9.75,2.09,0.41,1.80,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TSO 432 | TXN,Texas Instruments,Information Technology,79.12,2.57,22.75,3.48,10.52,54.54,80.37,79.09,5.70,5.86,7.45,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TXN 433 | TXT,Textron Inc.,Industrials,47.85,0.17,13.57,3.53,20.62,32.55,50.93,12.92,1.59,0.94,2.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TXT 434 | BK,The Bank of New York Mellon Corp.,Financials,47.67,1.58,15.13,3.15,33.67,35.44,49.54,49.46,0.00,3.26,1.42,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=BK 435 | CLX,The Clorox Company,Consumer Staples,136.91,2.34,27.46,4.99,2.11,111.24,140.47,17.56,1.22,2.99,64.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=CLX 436 | COO,The Cooper Companies,Health Care,193.46,0.03,31.88,6.07,57.07,141.67,201.83,9.56,0.6285700000000001,4.77,3.41,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=COO 437 | HSY,The Hershey Company,Consumer Staples,108.15,2.27,32.38,3.34,3.70,87.92,117.79,22.97,1.62,3.10,29.34,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HSY 438 | MOS,The Mosaic Company,Materials,29.18,1.99,34.33,0.85,27.37,22.77,34.36,10.22,1.20,1.45,1.08,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=MOS 439 | TRV,The Travelers Companies Inc.,Financials,122.14,2.16,11.88,10.28,83.05,103.45,125.49,34.16,5.12,1.24,1.47,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TRV 440 | DIS,The Walt Disney Company,Consumer Discretionary,110.86,1.40,20.01,5.54,27.01,90.32,111.99,175.30,16.78,3.17,4.10,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=DIS 441 | TMO,Thermo Fisher Scientific,Health Care,157.26,0.37,30.89,5.09,54.74,136.58,160.89,61.39,4.53,3.37,2.88,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TMO 442 | TIF,Tiffany & Co.,Consumer Discretionary,88.76,1.99,24.86,3.57,23.37,56.99,92.74,11.05,0.9348,2.81,3.85,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TIF 443 | TWX,Time Warner Inc.,Consumer Discretionary,98.24,1.63,19.83,4.95,31.52,67.85,99.29,76.07,8.57,2.59,3.11,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TWX 444 | TJX,TJX Companies Inc.,Consumer Discretionary,78.30,1.32,22.64,3.46,6.86,71.50,83.64,51.47,4.51,1.56,11.46,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TJX 445 | TMK,Torchmark Corp.,Financials,78.03,0.77,17.37,4.49,38.69,52.19,79.05,9.19,0.86538,2.33,2.01,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TMK 446 | TSS,Total System Services,Information Technology,54.26,0.73,31.31,1.73,11.45,43.67,56.54,9.95,0.85436,2.38,4.72,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TSS 447 | TSCO,Tractor Supply Company,Consumer Discretionary,71.43,1.33,21.84,3.27,11.11,61.50,97.25,9.34,0.83984,1.38,6.46,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TSCO 448 | TDG,TransDigm Group,Industrials,242.56,0.00,28.35,8.56,-35.10,214.65,294.38,12.82,1.51,3.98,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TDG 449 | RIG,Transocean,Energy,12.78,0.00,6.09,2.10,41.27,8.34,16.66,4.67,1.69,1.27,0.32,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=RIG 450 | TRIP,TripAdvisor,Consumer Discretionary,41.31,,50.38,0.82,10.42,40.45,71.69,5.96,0.215,4.05,3.99,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TRIP 451 | FOXA,Twenty-First Century Fox Class A,Consumer Discretionary,30.52,1.18,18.60,1.64,7.75,23.33,31.75,56.49,6.95,2.02,3.96,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FOXA 452 | FOX,Twenty-First Century Fox Class B,Consumer Discretionary,30.11,1.20,18.35,1.64,7.75,23.88,31.30,55.73,6.95,1.99,3.90,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=FOX 453 | TSN,Tyson Foods,Consumer Staples,61.89,1.42,12.49,4.96,26.01,55.72,77.05,22.72,3.78,0.62,2.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=TSN 454 | USB,U.S. Bancorp,Financials,55.03,2.02,16.98,3.24,24.63,38.47,56.61,93.22,0.00,4.84,2.24,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=USB 455 | UDR,UDR Inc,Real Estate,36.23,3.29,33.55,1.08,11.40,32.79,38.61,9.69,0.60553,10.02,3.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UDR 456 | ULTA,Ulta Salon Cosmetics & Fragrance Inc,Consumer Discretionary,269.92,0.00,45.24,5.97,23.30,158.21,281.17,16.80,0.7970900000000001,3.78,11.83,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ULTA 457 | UA,Under Armour,Consumer Discretionary,18.11,,40.70,0.44,4.63,17.77,46.20,7.94,0.56224,1.66,3.95,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UA 458 | UAA,Under Armour,Consumer Discretionary,19.69,,44.25,0.44,4.63,19.26,47.94,8.63,0.56224,1.82,4.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UAA 459 | UNP,Union Pacific,Industrials,108.36,2.22,21.37,5.07,24.43,77.29,111.38,88.18,9.31,4.47,4.48,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UNP 460 | UAL,United Continental Holdings,Industrials,72.64,0.00,10.60,6.85,27.52,37.41,76.80,22.85,6.85,0.63,2.66,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UAL 461 | UNH,United Health Group Inc.,Health Care,168.30,1.49,23.21,7.25,40.20,120.41,169.36,160.08,14.51,0.87,4.20,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UNH 462 | UPS,United Parcel Service,Industrials,105.64,3.13,27.30,3.87,0.47,98.85,120.44,91.91,7.70,1.52,227.68,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UPS 463 | URI,"United Rentals, Inc.",Industrials,128.15,,19.87,6.45,19.57,55.69,134.28,10.80,1.72,1.90,6.63,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=URI 464 | UTX,United Technologies,Industrials,112.28,2.35,18.35,6.12,34.10,95.05,114.44,90.48,10.04,1.57,3.27,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UTX 465 | UHS,"Universal Health Services, Inc.",Health Care,123.75,0.32,17.33,7.14,46.91,99.72,139.77,11.95,1.70,1.25,2.70,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UHS 466 | UNM,Unum Group,Financials,48.71,1.63,12.33,3.95,39.02,29.79,50.27,11.17,1.62,1.01,1.25,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=UNM 467 | URBN,Urban Outfitters,Consumer Discretionary,25.41,,13.21,1.92,10.73,24.29,40.80,2.95,0.49769,0.85,2.39,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=URBN 468 | VFC,V.F. Corp.,Consumer Discretionary,52.62,3.19,20.66,2.55,11.93,48.05,66.91,21.79,1.93,1.83,4.44,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VFC 469 | VLO,Valero Energy,Energy,65.62,4.24,13.30,4.93,44.35,46.88,71.40,29.60,5.52,0.43,1.50,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VLO 470 | VAR,Varian Medical Systems,Health Care,86.06,0.00,24.50,3.51,18.45,66.86,93.97,8.04,0.6334,2.50,4.67,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VAR 471 | VTR,Ventas Inc,Real Estate,62.67,4.87,33.75,1.86,29.54,55.91,76.80,22.22,1.83,6.45,2.12,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VTR 472 | VRSN,Verisign Inc.,Information Technology,83.66,0.00,24.46,3.42,-11.65,74.01,91.99,8.56,0.74474,7.54,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VRSN 473 | VRSK,Verisk Analytics,Industrials,81.84,,23.68,3.46,7.98,74.90,87.40,13.61,0.9372,6.91,10.38,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VRSK 474 | VZ,Verizon Communications,Telecommunications Services,49.44,4.61,15.40,3.21,5.53,46.01,56.95,201.55,43.39,1.62,9.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VZ 475 | VRTX,Vertex Pharmaceuticals Inc,Health Care,91.32,,,-0.46,4.66,71.46,103.73,22.69,0.0634,13.27,19.52,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VRTX 476 | VIAB,Viacom Inc.,Consumer Discretionary,42.93,1.89,12.32,3.48,11.23,33.94,46.69,17.04,2.86,1.32,3.76,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VIAB 477 | V,Visa Inc.,Information Technology,89.06,0.74,34.52,2.58,11.20,69.58,89.30,206.98,11.01,12.94,7.94,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=V 478 | VNO,Vornado Realty Trust,Real Estate,107.85,2.61,24.88,4.34,30.99,86.35,111.72,20.39,1.40,7.65,3.49,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VNO 479 | VMC,Vulcan Materials,Materials,118.37,0.82,38.32,3.09,34.55,101.58,138.18,15.67,0.94985,4.43,3.48,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=VMC 480 | WMT,Wal-Mart Stores,Consumer Staples,69.87,2.91,15.95,4.38,25.38,62.72,75.19,214.15,32.84,0.44,2.75,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WMT 481 | WBA,Walgreens Boots Alliance,Consumer Staples,85.99,1.75,22.75,3.78,27.17,75.74,88.00,92.82,7.89,0.79,3.16,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WBA 482 | WM,Waste Management Inc.,Industrials,72.70,2.33,27.43,2.65,12.06,56.05,73.65,31.97,3.71,2.36,6.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WM 483 | WAT,Waters Corporation,Health Care,153.36,0.00,23.93,6.41,28.77,126.61,162.53,12.28,0.7273099999999999,5.67,5.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WAT 484 | WEC,Wec Energy Group Inc,Utilities,59.29,3.51,20.03,2.96,28.29,53.66,66.10,18.71,2.44,2.50,2.09,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WEC 485 | WFC,Wells Fargo,Financials,58.30,2.58,14.61,3.99,35.21,43.55,59.99,291.70,0.00,3.47,1.66,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WFC 486 | HCN,Welltower Inc.,Real Estate,68.49,5.00,24.37,2.81,38.06,59.39,80.19,24.83,2.11,5.94,1.80,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=HCN 487 | WDC,Western Digital,Information Technology,76.80,2.58,,-1.59,37.26,34.99,81.67,22.12,2.89,1.39,2.06,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WDC 488 | WU,Western Union Co,Information Technology,19.90,3.51,39.02,0.51,1.87,18.07,22.70,9.57,1.37,1.76,10.62,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WU 489 | WRK,WestRock Company,Materials,50.90,2.96,94.61,0.54,38.02,31.05,56.12,12.79,2.16,0.93,1.37,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WRK 490 | WY,Weyerhaeuser Corp.,Real Estate,33.47,3.63,23.92,1.40,12.26,26.55,34.37,25.07,1.59,3.95,2.75,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WY 491 | WHR,Whirlpool Corp.,Consumer Discretionary,175.38,2.25,15.25,11.50,64.10,145.91,194.10,13.06,2.18,0.63,2.74,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WHR 492 | WFM,Whole Foods Market,Consumer Staples,29.47,1.89,21.28,1.38,10.34,27.67,35.58,9.39,1.37,0.60,2.87,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WFM 493 | WMB,Williams Cos.,Energy,29.42,4.05,,-0.57,6.19,14.60,32.69,24.30,3.43,3.29,4.82,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WMB 494 | WLTW,Willis Towers Watson,Financials,127.63,1.63,56.47,2.26,78.47,112.59,133.40,17.45,1.58,2.26,1.64,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WLTW 495 | WYN,Wyndham Worldwide,Consumer Discretionary,82.19,2.52,14.86,5.53,6.76,62.60,86.72,8.63,1.31,1.68,12.17,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WYN 496 | WYNN,Wynn Resorts Ltd,Consumer Discretionary,99.46,1.98,41.79,2.38,1.55,79.77,109.50,10.11,0.95059,2.28,64.59,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=WYNN 497 | XEL,Xcel Energy Inc,Utilities,43.82,3.29,19.85,2.21,21.73,38.00,45.42,22.23,3.65,1.99,2.01,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XEL 498 | XRX,Xerox Corp.,Information Technology,7.36,3.40,,-0.49,4.74,6.46,11.39,7.48,1.52,0.70,1.57,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XRX 499 | XLNX,Xilinx Inc,Information Technology,58.75,2.25,25.77,2.28,9.97,41.53,62.24,14.62,0.76713,6.33,5.90,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XLNX 500 | XL,XL Capital,Financials,40.13,2.18,25.72,1.56,40.99,30.33,41.39,10.63,1.10,1.00,0.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XL 501 | XYL,Xylem Inc.,Industrials,48.78,1.48,33.64,1.45,12.21,37.58,54.99,8.75,0.615,2.31,3.97,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=XYL 502 | YHOO,Yahoo Inc.,Information Technology,45.73,,,-0.23,32.50,32.09,46.72,43.74,0.2268,8.45,1.40,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=YHOO 503 | YUM,Yum! Brands Inc,Consumer Discretionary,64.02,2.66,15.83,4.04,-15.93,59.57,91.99,22.65,1.96,3.59,,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=YUM 504 | ZBH,Zimmer Biomet Holdings,Health Care,117.07,0.81,77.53,1.51,48.20,95.63,133.21,23.54,2.80,3.07,2.43,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ZBH 505 | ZION,Zions Bancorp,Financials,45.28,0.71,22.75,1.99,34.10,23.02,48.33,9.17,0.00,4.01,1.33,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ZION 506 | ZTS,Zoetis,Health Care,53.07,0.79,32.16,1.65,3.02,39.35,56.50,26.11,1.70,5.34,17.59,http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=ZTS 507 | -------------------------------------------------------------------------------- /resources/data/packages/s-and-p-500-companies/data/constituents.csv: -------------------------------------------------------------------------------- 1 | Symbol,Name,Sector 2 | MMM,3M Company,Industrials 3 | ABT,Abbott Laboratories,Health Care 4 | ABBV,AbbVie,Health Care 5 | ACN,Accenture plc,Information Technology 6 | ATVI,Activision Blizzard,Information Technology 7 | AYI,Acuity Brands Inc,Industrials 8 | ADBE,Adobe Systems Inc,Information Technology 9 | AAP,Advance Auto Parts,Consumer Discretionary 10 | AES,AES Corp,Utilities 11 | AET,Aetna Inc,Health Care 12 | AMG,Affiliated Managers Group Inc,Financials 13 | AFL,AFLAC Inc,Financials 14 | A,Agilent Technologies Inc,Health Care 15 | APD,Air Products & Chemicals Inc,Materials 16 | AKAM,Akamai Technologies Inc,Information Technology 17 | ALK,Alaska Air Group Inc,Industrials 18 | ALB,Albemarle Corp,Materials 19 | ALXN,Alexion Pharmaceuticals,Health Care 20 | ALLE,Allegion,Industrials 21 | AGN,"Allergan, Plc",Health Care 22 | ADS,Alliance Data Systems,Information Technology 23 | LNT,Alliant Energy Corp,Utilities 24 | ALL,Allstate Corp,Financials 25 | GOOGL,Alphabet Inc Class A,Information Technology 26 | GOOG,Alphabet Inc Class C,Information Technology 27 | MO,Altria Group Inc,Consumer Staples 28 | AMZN,Amazon.com Inc,Consumer Discretionary 29 | AEE,Ameren Corp,Utilities 30 | AAL,American Airlines Group,Industrials 31 | AEP,American Electric Power,Utilities 32 | AXP,American Express Co,Financials 33 | AIG,"American International Group, Inc.",Financials 34 | AMT,American Tower Corp A,Real Estate 35 | AWK,American Water Works Company Inc,Utilities 36 | AMP,Ameriprise Financial,Financials 37 | ABC,AmerisourceBergen Corp,Health Care 38 | AME,AMETEK Inc,Industrials 39 | AMGN,Amgen Inc,Health Care 40 | APH,Amphenol Corp,Information Technology 41 | APC,Anadarko Petroleum Corp,Energy 42 | ADI,"Analog Devices, Inc.",Information Technology 43 | ANTM,Anthem Inc.,Health Care 44 | AON,Aon plc,Financials 45 | APA,Apache Corporation,Energy 46 | AIV,Apartment Investment & Mgmt,Real Estate 47 | AAPL,Apple Inc.,Information Technology 48 | AMAT,Applied Materials Inc,Information Technology 49 | ADM,Archer-Daniels-Midland Co,Consumer Staples 50 | ARNC,Arconic Inc,Industrials 51 | AJG,Arthur J. Gallagher & Co.,Financials 52 | AIZ,Assurant Inc,Financials 53 | T,AT&T Inc,Telecommunications Services 54 | ADSK,Autodesk Inc,Information Technology 55 | ADP,Automatic Data Processing,Information Technology 56 | AN,AutoNation Inc,Consumer Discretionary 57 | AZO,AutoZone Inc,Consumer Discretionary 58 | AVB,"AvalonBay Communities, Inc.",Real Estate 59 | AVY,Avery Dennison Corp,Materials 60 | BHI,Baker Hughes Inc,Energy 61 | BLL,Ball Corp,Materials 62 | BAC,Bank of America Corp,Financials 63 | BCR,Bard (C.R.) Inc.,Health Care 64 | BAX,Baxter International Inc.,Health Care 65 | BBT,BB&T Corporation,Financials 66 | BDX,Becton Dickinson,Health Care 67 | BBBY,Bed Bath & Beyond,Consumer Discretionary 68 | BRK.B,Berkshire Hathaway,Financials 69 | BBY,Best Buy Co. Inc.,Consumer Discretionary 70 | BIIB,BIOGEN IDEC Inc.,Health Care 71 | BLK,BlackRock,Financials 72 | HRB,Block H&R,Financials 73 | BA,Boeing Company,Industrials 74 | BWA,BorgWarner,Consumer Discretionary 75 | BXP,Boston Properties,Real Estate 76 | BSX,Boston Scientific,Health Care 77 | BMY,Bristol-Myers Squibb,Health Care 78 | AVGO,Broadcom,Information Technology 79 | BF.B,Brown-Forman Corp.,Consumer Staples 80 | CHRW,C. H. Robinson Worldwide,Industrials 81 | CA,"CA, Inc.",Information Technology 82 | COG,Cabot Oil & Gas,Energy 83 | CPB,Campbell Soup,Consumer Staples 84 | COF,Capital One Financial,Financials 85 | CAH,Cardinal Health Inc.,Health Care 86 | KMX,Carmax Inc,Consumer Discretionary 87 | CCL,Carnival Corp.,Consumer Discretionary 88 | CAT,Caterpillar Inc.,Industrials 89 | CBOE,CBOE Holdings,Financials 90 | CBG,CBRE Group,Real Estate 91 | CBS,CBS Corp.,Consumer Discretionary 92 | CELG,Celgene Corp.,Health Care 93 | CNC,Centene Corporation,Health Care 94 | CNP,CenterPoint Energy,Utilities 95 | CTL,CenturyLink Inc,Telecommunications Services 96 | CERN,Cerner,Health Care 97 | CF,CF Industries Holdings Inc,Materials 98 | SCHW,Charles Schwab Corporation,Financials 99 | CHTR,Charter Communications,Consumer Discretionary 100 | CHK,Chesapeake Energy,Energy 101 | CVX,Chevron Corp.,Energy 102 | CMG,Chipotle Mexican Grill,Consumer Discretionary 103 | CB,Chubb Limited,Financials 104 | CHD,Church & Dwight,Consumer Staples 105 | CI,CIGNA Corp.,Health Care 106 | XEC,Cimarex Energy,Energy 107 | CINF,Cincinnati Financial,Financials 108 | CTAS,Cintas Corporation,Industrials 109 | CSCO,Cisco Systems,Information Technology 110 | C,Citigroup Inc.,Financials 111 | CFG,Citizens Financial Group,Financials 112 | CTXS,Citrix Systems,Information Technology 113 | CME,CME Group Inc.,Financials 114 | CMS,CMS Energy,Utilities 115 | COH,Coach Inc.,Consumer Discretionary 116 | KO,Coca Cola Company,Consumer Staples 117 | CTSH,Cognizant Technology Solutions,Information Technology 118 | CL,Colgate-Palmolive,Consumer Staples 119 | CMCSA,Comcast Corp.,Consumer Discretionary 120 | CMA,Comerica Inc.,Financials 121 | CAG,ConAgra Foods Inc.,Consumer Staples 122 | CXO,Concho Resources,Energy 123 | COP,ConocoPhillips,Energy 124 | ED,Consolidated Edison,Utilities 125 | STZ,Constellation Brands,Consumer Staples 126 | GLW,Corning Inc.,Information Technology 127 | COST,Costco Co.,Consumer Staples 128 | COTY,"Coty, Inc",Consumer Staples 129 | CCI,Crown Castle International Corp.,Real Estate 130 | CSRA,CSRA Inc.,Information Technology 131 | CSX,CSX Corp.,Industrials 132 | CMI,Cummins Inc.,Industrials 133 | CVS,CVS Health,Consumer Staples 134 | DHI,D. R. Horton,Consumer Discretionary 135 | DHR,Danaher Corp.,Health Care 136 | DRI,Darden Restaurants,Consumer Discretionary 137 | DVA,DaVita Inc.,Health Care 138 | DE,Deere & Co.,Industrials 139 | DLPH,Delphi Automotive,Consumer Discretionary 140 | DAL,Delta Air Lines,Industrials 141 | XRAY,Dentsply Sirona,Health Care 142 | DVN,Devon Energy Corp.,Energy 143 | DLR,Digital Realty Trust,Real Estate 144 | DFS,Discover Financial Services,Financials 145 | DISCA,Discovery Communications-A,Consumer Discretionary 146 | DISCK,Discovery Communications-C,Consumer Discretionary 147 | DG,Dollar General,Consumer Discretionary 148 | DLTR,Dollar Tree,Consumer Discretionary 149 | D,Dominion Resources,Utilities 150 | DOV,Dover Corp.,Industrials 151 | DOW,Dow Chemical,Materials 152 | DPS,Dr Pepper Snapple Group,Consumer Staples 153 | DTE,DTE Energy Co.,Utilities 154 | DD,Du Pont (E.I.),Materials 155 | DUK,Duke Energy,Utilities 156 | DNB,Dun & Bradstreet,Industrials 157 | ETFC,E*Trade,Financials 158 | EMN,Eastman Chemical,Materials 159 | ETN,Eaton Corporation,Industrials 160 | EBAY,eBay Inc.,Information Technology 161 | ECL,Ecolab Inc.,Materials 162 | EIX,Edison Int'l,Utilities 163 | EW,Edwards Lifesciences,Health Care 164 | EA,Electronic Arts,Information Technology 165 | EMR,Emerson Electric Company,Industrials 166 | ETR,Entergy Corp.,Utilities 167 | EVHC,Envision Healthcare,Health Care 168 | EOG,EOG Resources,Energy 169 | EQT,EQT Corporation,Energy 170 | EFX,Equifax Inc.,Industrials 171 | EQIX,Equinix,Real Estate 172 | EQR,Equity Residential,Real Estate 173 | ESS,"Essex Property Trust, Inc.",Real Estate 174 | EL,Estee Lauder Cos.,Consumer Staples 175 | ES,Eversource Energy,Utilities 176 | EXC,Exelon Corp.,Utilities 177 | EXPE,Expedia Inc.,Consumer Discretionary 178 | EXPD,Expeditors Int'l,Industrials 179 | ESRX,Express Scripts,Health Care 180 | EXR,Extra Space Storage,Real Estate 181 | XOM,Exxon Mobil Corp.,Energy 182 | FFIV,F5 Networks,Information Technology 183 | FB,"Facebook, Inc.",Information Technology 184 | FAST,Fastenal Co,Industrials 185 | FRT,Federal Realty Investment Trust,Real Estate 186 | FDX,FedEx Corporation,Industrials 187 | FIS,Fidelity National Information Services,Information Technology 188 | FITB,Fifth Third Bancorp,Financials 189 | FSLR,First Solar Inc,Information Technology 190 | FE,FirstEnergy Corp,Utilities 191 | FISV,Fiserv Inc,Information Technology 192 | FLIR,FLIR Systems,Information Technology 193 | FLS,Flowserve Corporation,Industrials 194 | FLR,Fluor Corp.,Industrials 195 | FMC,FMC Corporation,Materials 196 | FTI,FMC Technologies Inc.,Energy 197 | FL,Foot Locker Inc,Consumer Discretionary 198 | F,Ford Motor,Consumer Discretionary 199 | FTV,Fortive Corp,Industrials 200 | FBHS,Fortune Brands Home & Security,Industrials 201 | BEN,Franklin Resources,Financials 202 | FCX,Freeport-McMoRan Inc.,Materials 203 | FTR,Frontier Communications,Telecommunications Services 204 | GPS,Gap (The),Consumer Discretionary 205 | GRMN,Garmin Ltd.,Consumer Discretionary 206 | GD,General Dynamics,Industrials 207 | GE,General Electric,Industrials 208 | GGP,General Growth Properties Inc.,Real Estate 209 | GIS,General Mills,Consumer Staples 210 | GM,General Motors,Consumer Discretionary 211 | GPC,Genuine Parts,Consumer Discretionary 212 | GILD,Gilead Sciences,Health Care 213 | GPN,Global Payments Inc,Information Technology 214 | GS,Goldman Sachs Group,Financials 215 | GT,Goodyear Tire & Rubber,Consumer Discretionary 216 | GWW,Grainger (W.W.) Inc.,Industrials 217 | HAL,Halliburton Co.,Energy 218 | HBI,Hanesbrands Inc,Consumer Discretionary 219 | HOG,Harley-Davidson,Consumer Discretionary 220 | HAR,Harman Int'l Industries,Consumer Discretionary 221 | HRS,Harris Corporation,Information Technology 222 | HIG,Hartford Financial Svc.Gp.,Financials 223 | HAS,Hasbro Inc.,Consumer Discretionary 224 | HCA,HCA Holdings,Health Care 225 | HCP,HCP Inc.,Real Estate 226 | HP,Helmerich & Payne,Energy 227 | HSIC,Henry Schein,Health Care 228 | HES,Hess Corporation,Energy 229 | HPE,Hewlett Packard Enterprise,Information Technology 230 | HOLX,Hologic,Health Care 231 | HD,Home Depot,Consumer Discretionary 232 | HON,Honeywell Int'l Inc.,Industrials 233 | HRL,Hormel Foods Corp.,Consumer Staples 234 | HST,Host Hotels & Resorts,Real Estate 235 | HPQ,HP Inc.,Information Technology 236 | HUM,Humana Inc.,Health Care 237 | HBAN,Huntington Bancshares,Financials 238 | IDXX,IDEXX Laboratories,Health Care 239 | ITW,Illinois Tool Works,Industrials 240 | ILMN,Illumina Inc,Health Care 241 | INCY,Incyte,Health Care 242 | IR,Ingersoll-Rand PLC,Industrials 243 | INTC,Intel Corp.,Information Technology 244 | ICE,Intercontinental Exchange,Financials 245 | IBM,International Business Machines,Information Technology 246 | IP,International Paper,Materials 247 | IPG,Interpublic Group,Consumer Discretionary 248 | IFF,Intl Flavors & Fragrances,Materials 249 | INTU,Intuit Inc.,Information Technology 250 | ISRG,Intuitive Surgical Inc.,Health Care 251 | IVZ,Invesco Ltd.,Financials 252 | IRM,Iron Mountain Incorporated,Real Estate 253 | JBHT,J. B. Hunt Transport Services,Industrials 254 | JEC,Jacobs Engineering Group,Industrials 255 | SJM,JM Smucker,Consumer Staples 256 | JNJ,Johnson & Johnson,Health Care 257 | JCI,Johnson Controls International,Industrials 258 | JPM,JPMorgan Chase & Co.,Financials 259 | JNPR,Juniper Networks,Information Technology 260 | KSU,Kansas City Southern,Industrials 261 | K,Kellogg Co.,Consumer Staples 262 | KEY,KeyCorp,Financials 263 | KMB,Kimberly-Clark,Consumer Staples 264 | KIM,Kimco Realty,Real Estate 265 | KMI,Kinder Morgan,Energy 266 | KLAC,KLA-Tencor Corp.,Information Technology 267 | KSS,Kohl's Corp.,Consumer Discretionary 268 | KHC,Kraft Heinz Co,Consumer Staples 269 | KR,Kroger Co.,Consumer Staples 270 | LB,L Brands Inc.,Consumer Discretionary 271 | LLL,L-3 Communications Holdings,Industrials 272 | LH,Laboratory Corp. of America Holding,Health Care 273 | LRCX,Lam Research,Information Technology 274 | LEG,Leggett & Platt,Consumer Discretionary 275 | LEN,Lennar Corp.,Consumer Discretionary 276 | LUK,Leucadia National Corp.,Financials 277 | LVLT,Level 3 Communications,Telecommunications Services 278 | LLY,Lilly (Eli) & Co.,Health Care 279 | LNC,Lincoln National,Financials 280 | LLTC,Linear Technology Corp.,Information Technology 281 | LKQ,LKQ Corporation,Consumer Discretionary 282 | LMT,Lockheed Martin Corp.,Industrials 283 | L,Loews Corp.,Financials 284 | LOW,Lowe's Cos.,Consumer Discretionary 285 | LYB,LyondellBasell,Materials 286 | MTB,M&T Bank Corp.,Financials 287 | MAC,Macerich,Real Estate 288 | M,Macy's Inc.,Consumer Discretionary 289 | MNK,Mallinckrodt Plc,Health Care 290 | MRO,Marathon Oil Corp.,Energy 291 | MPC,Marathon Petroleum,Energy 292 | MAR,Marriott Int'l.,Consumer Discretionary 293 | MMC,Marsh & McLennan,Financials 294 | MLM,Martin Marietta Materials,Materials 295 | MAS,Masco Corp.,Industrials 296 | MA,Mastercard Inc.,Information Technology 297 | MAT,Mattel Inc.,Consumer Discretionary 298 | MKC,McCormick & Co.,Consumer Staples 299 | MCD,McDonald's Corp.,Consumer Discretionary 300 | MCK,McKesson Corp.,Health Care 301 | MJN,Mead Johnson,Consumer Staples 302 | MDT,Medtronic plc,Health Care 303 | MRK,Merck & Co.,Health Care 304 | MET,MetLife Inc.,Financials 305 | MTD,Mettler Toledo,Health Care 306 | KORS,Michael Kors Holdings,Consumer Discretionary 307 | MCHP,Microchip Technology,Information Technology 308 | MU,Micron Technology,Information Technology 309 | MSFT,Microsoft Corp.,Information Technology 310 | MAA,Mid-America Apartments,Real Estate 311 | MHK,Mohawk Industries,Consumer Discretionary 312 | TAP,Molson Coors Brewing Company,Consumer Staples 313 | MDLZ,Mondelez International,Consumer Staples 314 | MON,Monsanto Co.,Materials 315 | MNST,Monster Beverage,Consumer Staples 316 | MCO,Moody's Corp,Financials 317 | MS,Morgan Stanley,Financials 318 | MSI,Motorola Solutions Inc.,Information Technology 319 | MUR,Murphy Oil,Energy 320 | MYL,Mylan N.V.,Health Care 321 | NDAQ,NASDAQ OMX Group,Financials 322 | NOV,National Oilwell Varco Inc.,Energy 323 | NAVI,Navient,Financials 324 | NTAP,NetApp,Information Technology 325 | NFLX,Netflix Inc.,Information Technology 326 | NWL,Newell Brands,Consumer Discretionary 327 | NFX,Newfield Exploration Co,Energy 328 | NEM,Newmont Mining Corp. (Hldg. Co.),Materials 329 | NWSA,News Corp. Class A,Consumer Discretionary 330 | NWS,News Corp. Class B,Consumer Discretionary 331 | NEE,NextEra Energy,Utilities 332 | NLSN,Nielsen Holdings,Industrials 333 | NKE,Nike,Consumer Discretionary 334 | NI,NiSource Inc.,Utilities 335 | NBL,Noble Energy Inc,Energy 336 | JWN,Nordstrom,Consumer Discretionary 337 | NSC,Norfolk Southern Corp.,Industrials 338 | NTRS,Northern Trust Corp.,Financials 339 | NOC,Northrop Grumman Corp.,Industrials 340 | NRG,NRG Energy,Utilities 341 | NUE,Nucor Corp.,Materials 342 | NVDA,Nvidia Corporation,Information Technology 343 | ORLY,O'Reilly Automotive,Consumer Discretionary 344 | OXY,Occidental Petroleum,Energy 345 | OMC,Omnicom Group,Consumer Discretionary 346 | OKE,ONEOK,Energy 347 | ORCL,Oracle Corp.,Information Technology 348 | PCAR,PACCAR Inc.,Industrials 349 | PH,Parker-Hannifin,Industrials 350 | PDCO,Patterson Companies,Health Care 351 | PAYX,Paychex Inc.,Information Technology 352 | PYPL,PayPal,Information Technology 353 | PNR,Pentair Ltd.,Industrials 354 | PBCT,People's United Financial,Financials 355 | PEP,PepsiCo Inc.,Consumer Staples 356 | PKI,PerkinElmer,Health Care 357 | PRGO,Perrigo,Health Care 358 | PFE,Pfizer Inc.,Health Care 359 | PCG,PG&E Corp.,Utilities 360 | PM,Philip Morris International,Consumer Staples 361 | PSX,Phillips 66,Energy 362 | PNW,Pinnacle West Capital,Utilities 363 | PXD,Pioneer Natural Resources,Energy 364 | PNC,PNC Financial Services,Financials 365 | RL,Polo Ralph Lauren Corp.,Consumer Discretionary 366 | PPG,PPG Industries,Materials 367 | PPL,PPL Corp.,Utilities 368 | PX,Praxair Inc.,Materials 369 | PCLN,Priceline.com Inc,Consumer Discretionary 370 | PFG,Principal Financial Group,Financials 371 | PG,Procter & Gamble,Consumer Staples 372 | PGR,Progressive Corp.,Financials 373 | PLD,Prologis,Real Estate 374 | PRU,Prudential Financial,Financials 375 | PEG,Public Serv. Enterprise Inc.,Utilities 376 | PSA,Public Storage,Real Estate 377 | PHM,Pulte Homes Inc.,Consumer Discretionary 378 | PVH,PVH Corp.,Consumer Discretionary 379 | QRVO,Qorvo,Information Technology 380 | QCOM,QUALCOMM Inc.,Information Technology 381 | PWR,Quanta Services Inc.,Industrials 382 | DGX,Quest Diagnostics,Health Care 383 | RRC,Range Resources Corp.,Energy 384 | RTN,Raytheon Co.,Industrials 385 | O,Realty Income Corporation,Real Estate 386 | RHT,Red Hat Inc.,Information Technology 387 | REG,Regency Centers Corporation,Real Estate 388 | REGN,Regeneron,Health Care 389 | RF,Regions Financial Corp.,Financials 390 | RSG,Republic Services Inc,Industrials 391 | RAI,Reynolds American Inc.,Consumer Staples 392 | RHI,Robert Half International,Industrials 393 | ROK,Rockwell Automation Inc.,Industrials 394 | COL,Rockwell Collins,Industrials 395 | ROP,Roper Industries,Industrials 396 | ROST,Ross Stores,Consumer Discretionary 397 | RCL,Royal Caribbean Cruises Ltd,Consumer Discretionary 398 | R,Ryder System,Industrials 399 | SPGI,"S&P Global, Inc.",Financials 400 | CRM,Salesforce.com,Information Technology 401 | SCG,SCANA Corp,Utilities 402 | SLB,Schlumberger Ltd.,Energy 403 | SNI,Scripps Networks Interactive Inc.,Consumer Discretionary 404 | STX,Seagate Technology,Information Technology 405 | SEE,Sealed Air,Materials 406 | SRE,Sempra Energy,Utilities 407 | SHW,Sherwin-Williams,Materials 408 | SIG,Signet Jewelers,Consumer Discretionary 409 | SPG,Simon Property Group Inc,Real Estate 410 | SWKS,Skyworks Solutions,Information Technology 411 | SLG,SL Green Realty,Real Estate 412 | SNA,Snap-On Inc.,Consumer Discretionary 413 | SO,Southern Co.,Utilities 414 | LUV,Southwest Airlines,Industrials 415 | SWN,Southwestern Energy,Energy 416 | SWK,Stanley Black & Decker,Consumer Discretionary 417 | SPLS,Staples Inc.,Consumer Discretionary 418 | SBUX,Starbucks Corp.,Consumer Discretionary 419 | STT,State Street Corp.,Financials 420 | SRCL,Stericycle Inc,Industrials 421 | SYK,Stryker Corp.,Health Care 422 | STI,SunTrust Banks,Financials 423 | SYMC,Symantec Corp.,Information Technology 424 | SYF,Synchrony Financial,Financials 425 | SYY,Sysco Corp.,Consumer Staples 426 | TROW,T. Rowe Price Group,Financials 427 | TGT,Target Corp.,Consumer Discretionary 428 | TEL,TE Connectivity Ltd.,Information Technology 429 | TGNA,"Tegna, Inc.",Consumer Discretionary 430 | TDC,Teradata Corp.,Information Technology 431 | TSO,Tesoro Petroleum Co.,Energy 432 | TXN,Texas Instruments,Information Technology 433 | TXT,Textron Inc.,Industrials 434 | BK,The Bank of New York Mellon Corp.,Financials 435 | CLX,The Clorox Company,Consumer Staples 436 | COO,The Cooper Companies,Health Care 437 | HSY,The Hershey Company,Consumer Staples 438 | MOS,The Mosaic Company,Materials 439 | TRV,The Travelers Companies Inc.,Financials 440 | DIS,The Walt Disney Company,Consumer Discretionary 441 | TMO,Thermo Fisher Scientific,Health Care 442 | TIF,Tiffany & Co.,Consumer Discretionary 443 | TWX,Time Warner Inc.,Consumer Discretionary 444 | TJX,TJX Companies Inc.,Consumer Discretionary 445 | TMK,Torchmark Corp.,Financials 446 | TSS,Total System Services,Information Technology 447 | TSCO,Tractor Supply Company,Consumer Discretionary 448 | TDG,TransDigm Group,Industrials 449 | RIG,Transocean,Energy 450 | TRIP,TripAdvisor,Consumer Discretionary 451 | FOXA,Twenty-First Century Fox Class A,Consumer Discretionary 452 | FOX,Twenty-First Century Fox Class B,Consumer Discretionary 453 | TSN,Tyson Foods,Consumer Staples 454 | USB,U.S. Bancorp,Financials 455 | UDR,UDR Inc,Real Estate 456 | ULTA,Ulta Salon Cosmetics & Fragrance Inc,Consumer Discretionary 457 | UA,Under Armour,Consumer Discretionary 458 | UAA,Under Armour,Consumer Discretionary 459 | UNP,Union Pacific,Industrials 460 | UAL,United Continental Holdings,Industrials 461 | UNH,United Health Group Inc.,Health Care 462 | UPS,United Parcel Service,Industrials 463 | URI,"United Rentals, Inc.",Industrials 464 | UTX,United Technologies,Industrials 465 | UHS,"Universal Health Services, Inc.",Health Care 466 | UNM,Unum Group,Financials 467 | URBN,Urban Outfitters,Consumer Discretionary 468 | VFC,V.F. Corp.,Consumer Discretionary 469 | VLO,Valero Energy,Energy 470 | VAR,Varian Medical Systems,Health Care 471 | VTR,Ventas Inc,Real Estate 472 | VRSN,Verisign Inc.,Information Technology 473 | VRSK,Verisk Analytics,Industrials 474 | VZ,Verizon Communications,Telecommunications Services 475 | VRTX,Vertex Pharmaceuticals Inc,Health Care 476 | VIAB,Viacom Inc.,Consumer Discretionary 477 | V,Visa Inc.,Information Technology 478 | VNO,Vornado Realty Trust,Real Estate 479 | VMC,Vulcan Materials,Materials 480 | WMT,Wal-Mart Stores,Consumer Staples 481 | WBA,Walgreens Boots Alliance,Consumer Staples 482 | WM,Waste Management Inc.,Industrials 483 | WAT,Waters Corporation,Health Care 484 | WEC,Wec Energy Group Inc,Utilities 485 | WFC,Wells Fargo,Financials 486 | HCN,Welltower Inc.,Real Estate 487 | WDC,Western Digital,Information Technology 488 | WU,Western Union Co,Information Technology 489 | WRK,WestRock Company,Materials 490 | WY,Weyerhaeuser Corp.,Real Estate 491 | WHR,Whirlpool Corp.,Consumer Discretionary 492 | WFM,Whole Foods Market,Consumer Staples 493 | WMB,Williams Cos.,Energy 494 | WLTW,Willis Towers Watson,Financials 495 | WYN,Wyndham Worldwide,Consumer Discretionary 496 | WYNN,Wynn Resorts Ltd,Consumer Discretionary 497 | XEL,Xcel Energy Inc,Utilities 498 | XRX,Xerox Corp.,Information Technology 499 | XLNX,Xilinx Inc,Information Technology 500 | XL,XL Capital,Financials 501 | XYL,Xylem Inc.,Industrials 502 | YHOO,Yahoo Inc.,Information Technology 503 | YUM,Yum! Brands Inc,Consumer Discretionary 504 | ZBH,Zimmer Biomet Holdings,Health Care 505 | ZION,Zions Bancorp,Financials 506 | ZTS,Zoetis,Health Care 507 | -------------------------------------------------------------------------------- /resources/data/packages/s-and-p-500-companies/datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "s-and-p-500-companies", 3 | "title": "S&P 500 Companies with Financial Information", 4 | "license": "PDDL-1.0", 5 | "resources": [ 6 | { 7 | "name": "constituents", 8 | "path": "data/constituents.csv", 9 | "format": "csv", 10 | "mediatype": "text/csv", 11 | "schema": { 12 | "fields": [ 13 | { 14 | "name": "Symbol", 15 | "description": "", 16 | "type": "string" 17 | }, 18 | { 19 | "name": "Name", 20 | "description": "", 21 | "type": "string" 22 | }, 23 | { 24 | "name": "Sector", 25 | "description": "", 26 | "type": "string" 27 | } 28 | ] 29 | } 30 | }, 31 | { 32 | "name": "constituents-financials", 33 | "path": "data/constituents-financials.csv", 34 | "format": "csv", 35 | "mediatype": "text/csv", 36 | "schema": { 37 | "fields": [ 38 | { 39 | "name": "Symbol", 40 | "description": "", 41 | "type": "string" 42 | }, 43 | { 44 | "name": "Name", 45 | "description": "", 46 | "type": "string" 47 | }, 48 | { 49 | "name": "Sector", 50 | "description": "", 51 | "type": "string" 52 | }, 53 | { 54 | "name": "Price", 55 | "description": "", 56 | "type": "number" 57 | }, 58 | { 59 | "name": "Dividend Yield", 60 | "description": "", 61 | "type": "number" 62 | }, 63 | { 64 | "name": "Price/Earnings", 65 | "description": "", 66 | "type": "number" 67 | }, 68 | { 69 | "name": "Earnings/Share", 70 | "description": "", 71 | "type": "number" 72 | }, 73 | { 74 | "name": "Book Value", 75 | "description": "", 76 | "type": "number" 77 | }, 78 | { 79 | "name": "52 week low", 80 | "description": "", 81 | "type": "number" 82 | }, 83 | { 84 | "name": "52 week high", 85 | "description": "", 86 | "type": "number" 87 | }, 88 | { 89 | "name": "Market Cap", 90 | "description": "", 91 | "type": "number" 92 | }, 93 | { 94 | "name": "EBITDA", 95 | "description": "", 96 | "type": "number" 97 | }, 98 | { 99 | "name": "Price/Sales", 100 | "description": "", 101 | "type": "number" 102 | }, 103 | { 104 | "name": "Price/Book", 105 | "description": "", 106 | "type": "number" 107 | }, 108 | { 109 | "name": "SEC Filings", 110 | "description": "", 111 | "type": "string" 112 | } 113 | ] 114 | } 115 | } 116 | ] 117 | } 118 | -------------------------------------------------------------------------------- /resources/data/packages/s-and-p-500/datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "s-and-p-500", 3 | "title": "Standard and Poor's (S&P) 500 Index Data including Dividend, Earnings and P/E Ratio", 4 | "licenses": [ 5 | { 6 | "id": "odc-pddl", 7 | "name": "public_domain_dedication_and_license", 8 | "version": "1.0", 9 | "url": "http://opendatacommons.org/licenses/pddl/1.0/" 10 | } 11 | ], 12 | "sources": [ 13 | { 14 | "name": "Robert Shiller", 15 | "web": "http://www.econ.yale.edu/~shiller/data.htm", 16 | "title": "Robert Shiller" 17 | } 18 | ], 19 | "maintainers": [ 20 | { 21 | "name": "Rufus Pollock", 22 | "email": "rufus.pollock@okfn.org" 23 | } 24 | ], 25 | "keywords": [ 26 | "Indicator", 27 | "Economics", 28 | "Prices", 29 | "Stocks", 30 | "Stock Market", 31 | "US" 32 | ], 33 | "resources": [ 34 | { 35 | "path": "data/data.csv", 36 | "schema": { 37 | "fields": [ 38 | { 39 | "type": "date", 40 | "name": "Date", 41 | "format": "any" 42 | }, 43 | { 44 | "type": "number", 45 | "description": "Level ('price') of the S&P 500 index", 46 | "name": "SP500" 47 | }, 48 | { 49 | "type": "number", 50 | "name": "Dividend" 51 | }, 52 | { 53 | "type": "number", 54 | "name": "Earnings" 55 | }, 56 | { 57 | "type": "number", 58 | "name": "Consumer Price Index" 59 | }, 60 | { 61 | "type": "number", 62 | "description": "10 year interest rate (gov bonds)", 63 | "name": "Long Interest Rate" 64 | }, 65 | { 66 | "type": "number", 67 | "name": "Real Price" 68 | }, 69 | { 70 | "type": "number", 71 | "name": "Real Dividend" 72 | }, 73 | { 74 | "type": "number", 75 | "name": "Real Earnings" 76 | }, 77 | { 78 | "type": "number", 79 | "description": "Cyclically Adjusted Price Earnings Ratio P/E10 or CAPE", 80 | "name": "PE10" 81 | } 82 | ] 83 | }, 84 | "name": "data" 85 | } 86 | ], 87 | "views": [ 88 | { 89 | "name": "graph", 90 | "title": "Level ('price') of the S&P 500 index", 91 | "specType": "simple", 92 | "spec": { 93 | "type": "line", 94 | "group": "Date", 95 | "series": [ 96 | "SP500" 97 | ] 98 | } 99 | } 100 | ] 101 | } 102 | -------------------------------------------------------------------------------- /resources/data/resources/table.csv: -------------------------------------------------------------------------------- 1 | id,name 2 | en,english 3 | ch,中国人 4 | -------------------------------------------------------------------------------- /resources/data/resources/table.json: -------------------------------------------------------------------------------- 1 | [ 2 | ["id", "name"], 3 | ["en", "english"], 4 | ["ch", "中国人"] 5 | ] 6 | -------------------------------------------------------------------------------- /resources/data/resources/table.ndjson: -------------------------------------------------------------------------------- 1 | {"id":"en","name":"english"} 2 | {"id":"ch","name":"中国人"} 3 | -------------------------------------------------------------------------------- /resources/data/resources/table.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-clj/1d5a1de9b58bf2849d2d704a976c3183a96b8046/resources/data/resources/table.ods -------------------------------------------------------------------------------- /resources/data/resources/table.tsv: -------------------------------------------------------------------------------- 1 | id name 2 | en english 3 | ch 中国人 4 | -------------------------------------------------------------------------------- /resources/data/resources/table.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-clj/1d5a1de9b58bf2849d2d704a976c3183a96b8046/resources/data/resources/table.xls -------------------------------------------------------------------------------- /resources/data/resources/table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-clj/1d5a1de9b58bf2849d2d704a976c3183a96b8046/resources/data/resources/table.xlsx -------------------------------------------------------------------------------- /src/datapackage_clj/core.clj: -------------------------------------------------------------------------------- 1 | (ns datapackage-clj.core) 2 | 3 | (defn foo 4 | "I don't do a whole lot." 5 | [x] 6 | (println x "Hello, World!")) 7 | -------------------------------------------------------------------------------- /test/coveralls.sh: -------------------------------------------------------------------------------- 1 | COVERALLS_URL='https://coveralls.io/api/v1/jobs' 2 | CLOVERAGE_VERSION='1.0.9' lein cloverage -o cov --coveralls 3 | curl -F 'json_file=@cov/coveralls.json' "$COVERALLS_URL" 4 | -------------------------------------------------------------------------------- /test/datapackage_clj/core_test.clj: -------------------------------------------------------------------------------- 1 | (ns datapackage-clj.core-test 2 | (:require [clojure.test :refer :all] 3 | [datapackage-clj.core :refer :all])) 4 | 5 | (deftest a-test 6 | (testing "FIXME, I fail." 7 | (is (= 1 1)))) 8 | --------------------------------------------------------------------------------